diff --git a/Project/.ipynb_checkpoints/tableau-checkpoint.ipynb b/Project/.ipynb_checkpoints/tableau-checkpoint.ipynb new file mode 100644 index 0000000..1c8fb45 --- /dev/null +++ b/Project/.ipynb_checkpoints/tableau-checkpoint.ipynb @@ -0,0 +1,3421 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tableau Project - Week 5\n", + "## Preparing the dataset for analysis in Tableau" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Importing libraries:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Read our csv-file that we prepared in Excel" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXCASPOBOCCINDAGETIMEVALUEFLAGSFOOTNOTES
0BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY15-2920110NaNNaN
1BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY30-4920110NaNNaN
2BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY50-6420110NaNNaN
3BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY65-8420110NaNNaN
4BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY_GE8520110NaNNaN
\n", + "
" + ], + "text/plain": [ + " GEO SEX CAS POB OCC \\\n", + "0 Belgium F POP TOTAL Not applicable \n", + "1 Belgium F POP TOTAL Not applicable \n", + "2 Belgium F POP TOTAL Not applicable \n", + "3 Belgium F POP TOTAL Not applicable \n", + "4 Belgium F POP TOTAL Not applicable \n", + "\n", + " IND AGE TIME VALUE FLAGS FOOTNOTES \n", + "0 Agriculture, forestry and fishing    Y15-29 2011 0 NaN NaN \n", + "1 Agriculture, forestry and fishing    Y30-49 2011 0 NaN NaN \n", + "2 Agriculture, forestry and fishing    Y50-64 2011 0 NaN NaN \n", + "3 Agriculture, forestry and fishing    Y65-84 2011 0 NaN NaN \n", + "4 Agriculture, forestry and fishing    Y_GE85 2011 0 NaN NaN " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.read_csv(\"Age_Industry.csv\", sep=\";\", encoding = \"unicode_escape\")\n", + "data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['0', '553484', '314136', ..., '23560', '9960', '8190'],\n", + " dtype=object)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data[\"VALUE\"].unique()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Dropping unnecessary columns:" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXOCCINDAGEVALUE
0BelgiumFNot applicableAgriculture, forestry and fishingY15-290
1BelgiumFNot applicableAgriculture, forestry and fishingY30-490
2BelgiumFNot applicableAgriculture, forestry and fishingY50-640
\n", + "
" + ], + "text/plain": [ + " GEO SEX OCC IND AGE \\\n", + "0 Belgium F Not applicable Agriculture, forestry and fishing    Y15-29 \n", + "1 Belgium F Not applicable Agriculture, forestry and fishing    Y30-49 \n", + "2 Belgium F Not applicable Agriculture, forestry and fishing    Y50-64 \n", + "\n", + " VALUE \n", + "0 0 \n", + "1 0 \n", + "2 0 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds = data.drop(columns=[\"TIME\", \"POB\", \"CAS\", \"FLAGS\", \"FOOTNOTES\"])\n", + "ds.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Checking with describe() method:" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXOCCINDAGEVALUE
count960489604896048960489604896048
unique292122366718
topMaltaFManagersEducationY65-840
freq331248024800441761600856937
\n", + "
" + ], + "text/plain": [ + " GEO SEX OCC IND AGE VALUE\n", + "count 96048 96048 96048 96048 96048 96048\n", + "unique 29 2 12 23 6 6718\n", + "top Malta F Managers Education    Y65-84 0\n", + "freq 3312 48024 8004 4176 16008 56937" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"\\ncommands in linux:\\nhead \\n\\nfile \\n# type\\n\\nawk 'NR==3' \\n# prints file\\n\\nwc -l \\n# word count -line\\n\"" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\"\"\"\n", + "commands in linux:\n", + "head \n", + "\n", + "file \n", + "# type\n", + "\n", + "awk 'NR==3' \n", + "# prints file\n", + "\n", + "wc -l \n", + "# word count -line\n", + "\"\"\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Rename columns:" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "ds.columns = [\"Country\", \"Sex\", \"Occupation\", \"Industry\", \"Age\", \"Value\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 0\n", + "1 0\n", + "2 0\n", + "3 0\n", + "4 0\n", + " ..\n", + "96043 0\n", + "96044 0\n", + "96045 0\n", + "96046 0\n", + "96047 0\n", + "Name: Value, Length: 96048, dtype: object" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds.Value" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Taking out the all the rows without values." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" + ] + } + ], + "source": [ + "ds1 = ds[\":\"!=ds[\"Value\"]]\n", + "ds1[\"Value\"] = [int(i) for i in ds1[\"Value\"]]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Adding a count just to check for the amount of grouped rows when using groupby() later" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \"\"\"Entry point for launching an IPython kernel.\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecount
0BelgiumFNot applicableAgriculture, forestry and fishingY15-2901
1BelgiumFNot applicableAgriculture, forestry and fishingY30-4901
2BelgiumFNot applicableAgriculture, forestry and fishingY50-6401
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age \\\n", + "0 Belgium F Not applicable Agriculture, forestry and fishing    Y15-29 \n", + "1 Belgium F Not applicable Agriculture, forestry and fishing    Y30-49 \n", + "2 Belgium F Not applicable Agriculture, forestry and fishing    Y50-64 \n", + "\n", + " Value count \n", + "0 0 1 \n", + "1 0 1 \n", + "2 0 1 " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds1[\"count\"]=1\n", + "ds1.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Taking out countries that only have summed values and value 0 :" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountmark
0BelgiumFNot applicableAgriculture, forestry and fishingY15-29011
1BelgiumFNot applicableAgriculture, forestry and fishingY30-49011
2BelgiumFNot applicableAgriculture, forestry and fishingY50-64011
3BelgiumFNot applicableAgriculture, forestry and fishingY65-84011
4BelgiumFNot applicableAgriculture, forestry and fishingY_GE85011
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age \\\n", + "0 Belgium F Not applicable Agriculture, forestry and fishing    Y15-29 \n", + "1 Belgium F Not applicable Agriculture, forestry and fishing    Y30-49 \n", + "2 Belgium F Not applicable Agriculture, forestry and fishing    Y50-64 \n", + "3 Belgium F Not applicable Agriculture, forestry and fishing    Y65-84 \n", + "4 Belgium F Not applicable Agriculture, forestry and fishing    Y_GE85 \n", + "\n", + " Value count mark \n", + "0 0 1 1 \n", + "1 0 1 1 \n", + "2 0 1 1 \n", + "3 0 1 1 \n", + "4 0 1 1 " + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "out = [\"DK\", \"ES\", \"FI\", \"IS\", \"IT\", \"LT\", \"NL\", \"NO\", \"SE\"]\n", + "ds1[\"mark\"] = [1 if i not in out else 0 for i in ds1[\"Country\"]]\n", + "ds1.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecount
0BelgiumFNot applicableAgriculture, forestry and fishingY15-2901
1BelgiumFNot applicableAgriculture, forestry and fishingY30-4901
2BelgiumFNot applicableAgriculture, forestry and fishingY50-6401
3BelgiumFNot applicableAgriculture, forestry and fishingY65-8401
4BelgiumFNot applicableAgriculture, forestry and fishingY_GE8501
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age \\\n", + "0 Belgium F Not applicable Agriculture, forestry and fishing    Y15-29 \n", + "1 Belgium F Not applicable Agriculture, forestry and fishing    Y30-49 \n", + "2 Belgium F Not applicable Agriculture, forestry and fishing    Y50-64 \n", + "3 Belgium F Not applicable Agriculture, forestry and fishing    Y65-84 \n", + "4 Belgium F Not applicable Agriculture, forestry and fishing    Y_GE85 \n", + "\n", + " Value count \n", + "0 0 1 \n", + "1 0 1 \n", + "2 0 1 \n", + "3 0 1 \n", + "4 0 1 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds1 = ds1[1==ds1[\"mark\"]]\n", + "ds1.drop(columns=\"mark\", inplace=True)\n", + "ds1.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Testing for summed values and counts :" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryValuecount
0Belgium110006383312
1Bulgaria73643093119
2Croatia42848893312
3Cyprus8401063095
4Czechia104009333312
5Denmark01413
6Estonia12944553312
7Finland03312
8France649323393312
9Greece108162863312
10Hungary99376283312
11Iceland01976
12Ireland45748883312
13Italy01729
14Latvia20703713312
15Liechtenstein357212991
16Lithuania03312
17Luxembourg5123533312
18Malta4174323312
19Netherlands03312
20Norway01628
21Poland380187182841
22Portugal105621783312
23Romania201214943201
24Slovakia03312
25Slovenia20501893312
26Spain01424
27Sweden01670
28United Kingdom631821653312
\n", + "
" + ], + "text/plain": [ + " Country Value count\n", + "0 Belgium 11000638 3312\n", + "1 Bulgaria 7364309 3119\n", + "2 Croatia 4284889 3312\n", + "3 Cyprus 840106 3095\n", + "4 Czechia 10400933 3312\n", + "5 Denmark 0 1413\n", + "6 Estonia 1294455 3312\n", + "7 Finland 0 3312\n", + "8 France 64932339 3312\n", + "9 Greece 10816286 3312\n", + "10 Hungary 9937628 3312\n", + "11 Iceland 0 1976\n", + "12 Ireland 4574888 3312\n", + "13 Italy 0 1729\n", + "14 Latvia 2070371 3312\n", + "15 Liechtenstein 35721 2991\n", + "16 Lithuania 0 3312\n", + "17 Luxembourg 512353 3312\n", + "18 Malta 417432 3312\n", + "19 Netherlands 0 3312\n", + "20 Norway 0 1628\n", + "21 Poland 38018718 2841\n", + "22 Portugal 10562178 3312\n", + "23 Romania 20121494 3201\n", + "24 Slovakia 0 3312\n", + "25 Slovenia 2050189 3312\n", + "26 Spain 0 1424\n", + "27 Sweden 0 1670\n", + "28 United Kingdom 63182165 3312" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test = ds1.groupby([\"Country\"], as_index=False).agg({\"Value\":'sum', 'count':'sum'})\n", + "test" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OccupationIndustryAgeValuecount
0Armed forces occupationsAccommodation and food service activitiesY15-29195753
1Armed forces occupationsAccommodation and food service activitiesY30-49175754
2Armed forces occupationsAccommodation and food service activitiesY50-6433054
3Armed forces occupationsAccommodation and food service activitiesY65-84058
4Armed forces occupationsAccommodation and food service activitiesY_GE85057
..................
1651Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y30-4995756946
1652Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y50-6430607746
1653Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y65-841814545
1654Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y_GE8540250
1655Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y_LT15058
\n", + "

1656 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Occupation \\\n", + "0 Armed forces occupations \n", + "1 Armed forces occupations \n", + "2 Armed forces occupations \n", + "3 Armed forces occupations \n", + "4 Armed forces occupations \n", + "... ... \n", + "1651 Technicians and associate professionals \n", + "1652 Technicians and associate professionals \n", + "1653 Technicians and associate professionals \n", + "1654 Technicians and associate professionals \n", + "1655 Technicians and associate professionals \n", + "\n", + " Industry Age Value count \n", + "0 Accommodation and food service activities    Y15-29 1957 53 \n", + "1 Accommodation and food service activities    Y30-49 1757 54 \n", + "2 Accommodation and food service activities    Y50-64 330 54 \n", + "3 Accommodation and food service activities    Y65-84 0 58 \n", + "4 Accommodation and food service activities    Y_GE85 0 57 \n", + "... ... ... ... ... \n", + "1651 Wholesale and retail trade; repair of motor ve... Y30-49 957569 46 \n", + "1652 Wholesale and retail trade; repair of motor ve... Y50-64 306077 46 \n", + "1653 Wholesale and retail trade; repair of motor ve... Y65-84 18145 45 \n", + "1654 Wholesale and retail trade; repair of motor ve... Y_GE85 402 50 \n", + "1655 Wholesale and retail trade; repair of motor ve... Y_LT15 0 58 \n", + "\n", + "[1656 rows x 5 columns]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test1 = ds1.groupby([\"Occupation\", \"Industry\", \"Age\"], as_index=False).agg({\"Value\":'sum', 'count':'sum'})\n", + "test1" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OccupationIndustryAgeValuecountRelative
0Armed forces occupationsAccommodation and food service activitiesY15-291957530.000007
1Armed forces occupationsAccommodation and food service activitiesY30-491757540.000007
2Armed forces occupationsAccommodation and food service activitiesY50-64330540.000001
3Armed forces occupationsAccommodation and food service activitiesY65-840580.000000
4Armed forces occupationsAccommodation and food service activitiesY_GE850570.000000
\n", + "
" + ], + "text/plain": [ + " Occupation Industry \\\n", + "0 Armed forces occupations Accommodation and food service activities    \n", + "1 Armed forces occupations Accommodation and food service activities    \n", + "2 Armed forces occupations Accommodation and food service activities    \n", + "3 Armed forces occupations Accommodation and food service activities    \n", + "4 Armed forces occupations Accommodation and food service activities    \n", + "\n", + " Age Value count Relative \n", + "0 Y15-29 1957 53 0.000007 \n", + "1 Y30-49 1757 54 0.000007 \n", + "2 Y50-64 330 54 0.000001 \n", + "3 Y65-84 0 58 0.000000 \n", + "4 Y_GE85 0 57 0.000000 " + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test1[\"Relative\"]= test1['Value']/sum(test1[\"Value\"])\n", + "test1.head(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding Total value per country and relative values over respective country and over relative values over entirety:" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countries
84BelgiumFNot applicableNot applicableY15-2955348410.002109
85BelgiumFNot applicableNot applicableY30-4931413610.001197
86BelgiumFNot applicableNot applicableY50-6452995710.002020
87BelgiumFNot applicableNot applicableY65-8489959910.003428
88BelgiumFNot applicableNot applicableY_GE8517393310.000663
89BelgiumFNot applicableNot applicableY_LT1591281510.003478
1518BelgiumFNot statedAgriculture, forestry and fishingY15-29202710.000008
1519BelgiumFNot statedAgriculture, forestry and fishingY30-491026610.000039
1520BelgiumFNot statedAgriculture, forestry and fishingY50-64765110.000029
1521BelgiumFNot statedAgriculture, forestry and fishingY65-84118410.000005
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry \\\n", + "84 Belgium F Not applicable Not applicable   \n", + "85 Belgium F Not applicable Not applicable   \n", + "86 Belgium F Not applicable Not applicable   \n", + "87 Belgium F Not applicable Not applicable   \n", + "88 Belgium F Not applicable Not applicable   \n", + "89 Belgium F Not applicable Not applicable   \n", + "1518 Belgium F Not stated Agriculture, forestry and fishing    \n", + "1519 Belgium F Not stated Agriculture, forestry and fishing    \n", + "1520 Belgium F Not stated Agriculture, forestry and fishing    \n", + "1521 Belgium F Not stated Agriculture, forestry and fishing    \n", + "\n", + " Age Value count Relative / all countries \n", + "84 Y15-29 553484 1 0.002109 \n", + "85 Y30-49 314136 1 0.001197 \n", + "86 Y50-64 529957 1 0.002020 \n", + "87 Y65-84 899599 1 0.003428 \n", + "88 Y_GE85 173933 1 0.000663 \n", + "89 Y_LT15 912815 1 0.003478 \n", + "1518 Y15-29 2027 1 0.000008 \n", + "1519 Y30-49 10266 1 0.000039 \n", + "1520 Y50-64 7651 1 0.000029 \n", + "1521 Y65-84 1184 1 0.000005 " + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work = ds1[ds1['Value']!=0]\n", + "work[\"Relative / all countries\"]= work['Value']/sum(work[\"Value\"])\n", + "work.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_Population
0BelgiumFNot applicableNot applicableY15-2955348410.00210911000638
1BelgiumFNot applicableNot applicableY30-4931413610.00119711000638
2BelgiumFNot applicableNot applicableY50-6452995710.00202011000638
3BelgiumFNot applicableNot applicableY65-8489959910.00342811000638
4BelgiumFNot applicableNot applicableY_GE8517393310.00066311000638
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "4 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative / all countries Total_Population \n", + "0 0.002109 11000638 \n", + "1 0.001197 11000638 \n", + "2 0.002020 11000638 \n", + "3 0.003428 11000638 \n", + "4 0.000663 11000638 " + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "population = work.groupby(\"Country\", as_index = False).agg({\"Value\":\"sum\"})\n", + "new_work = work.merge(population, on = \"Country\")\n", + "new_work.columns = [\"Country\", \"Sex\", \"Occupation\", \"Industry\", \"Age\", \"Value\", \"count\", \"Relative / all countries\",\"Total_Population\"]\n", + "new_work.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_PopulationRelative per country
0BelgiumFNot applicableNot applicableY15-2955348410.002109110006380.050314
1BelgiumFNot applicableNot applicableY30-4931413610.001197110006380.028556
2BelgiumFNot applicableNot applicableY50-6452995710.002020110006380.048175
3BelgiumFNot applicableNot applicableY65-8489959910.003428110006380.081777
4BelgiumFNot applicableNot applicableY_GE8517393310.000663110006380.015811
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "4 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative / all countries Total_Population Relative per country \n", + "0 0.002109 11000638 0.050314 \n", + "1 0.001197 11000638 0.028556 \n", + "2 0.002020 11000638 0.048175 \n", + "3 0.003428 11000638 0.081777 \n", + "4 0.000663 11000638 0.015811 " + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_work[\"Relative per country\"]= new_work[\"Value\"]/new_work[\"Total_Population\"]\n", + "new_work.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Marking population that will exit the work force within the next years by splitting by age. Younger than 50 are marked as 'Young' otherwise 'Old':" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_PopulationRelative per countryYoung
0BelgiumFNot applicableNot applicableY15-2955348410.002109110006380.0503141
1BelgiumFNot applicableNot applicableY30-4931413610.001197110006380.0285561
2BelgiumFNot applicableNot applicableY50-6452995710.002020110006380.0481750
3BelgiumFNot applicableNot applicableY65-8489959910.003428110006380.0817770
4BelgiumFNot applicableNot applicableY_GE8517393310.000663110006380.0158110
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "4 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative / all countries Total_Population Relative per country Young \n", + "0 0.002109 11000638 0.050314 1 \n", + "1 0.001197 11000638 0.028556 1 \n", + "2 0.002020 11000638 0.048175 0 \n", + "3 0.003428 11000638 0.081777 0 \n", + "4 0.000663 11000638 0.015811 0 " + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import re\n", + "new_work[\"Young\"] = [1 if i.startswith(\"Y1\") or i.startswith(\"Y3\") else 0 for i in new_work[\"Age\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_PopulationRelative per countryYoungOld
0BelgiumFNot applicableNot applicableY15-2955348410.002109110006380.05031410
1BelgiumFNot applicableNot applicableY30-4931413610.001197110006380.02855610
2BelgiumFNot applicableNot applicableY50-6452995710.002020110006380.04817501
3BelgiumFNot applicableNot applicableY65-8489959910.003428110006380.08177701
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "\n", + " Relative / all countries Total_Population Relative per country Young \\\n", + "0 0.002109 11000638 0.050314 1 \n", + "1 0.001197 11000638 0.028556 1 \n", + "2 0.002020 11000638 0.048175 0 \n", + "3 0.003428 11000638 0.081777 0 \n", + "\n", + " Old \n", + "0 0 \n", + "1 0 \n", + "2 1 \n", + "3 1 " + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_work[\"Old\"] = [0 if i.startswith(\"Y1\") or i.startswith(\"Y3\") else 1 for i in new_work[\"Age\"]]\n", + "new_work.head(4)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_PopulationRelative per countryYoungOldYoung or Old
0BelgiumFNot applicableNot applicableY15-2955348410.002109110006380.05031410Young
1BelgiumFNot applicableNot applicableY30-4931413610.001197110006380.02855610Young
2BelgiumFNot applicableNot applicableY50-6452995710.002020110006380.04817501Old
3BelgiumFNot applicableNot applicableY65-8489959910.003428110006380.08177701Old
4BelgiumFNot applicableNot applicableY_GE8517393310.000663110006380.01581101Old
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "4 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative / all countries Total_Population Relative per country Young \\\n", + "0 0.002109 11000638 0.050314 1 \n", + "1 0.001197 11000638 0.028556 1 \n", + "2 0.002020 11000638 0.048175 0 \n", + "3 0.003428 11000638 0.081777 0 \n", + "4 0.000663 11000638 0.015811 0 \n", + "\n", + " Old Young or Old \n", + "0 0 Young \n", + "1 0 Young \n", + "2 1 Old \n", + "3 1 Old \n", + "4 1 Old " + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_work[\"Young or Old\"] = [\"Young\" if i.startswith(\"Y1\") or i.startswith(\"Y3\") else \"Old\" for i in new_work[\"Age\"]]\n", + "new_work.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"\\nwork.loc[work['Country'].str.startswith('BE'), 'Country'] = 'Belgium'\\nwork.loc[work['Country'].str.startswith('BG'), 'Country'] = 'Bulgaria'\\nwork.loc[work['Country'].str.startswith('CY'), 'Country'] = 'Cyprus'\\nwork.loc[work['Country'].str.startswith('CZ'), 'Country'] = 'Czechia'\\nwork.loc[work['Country'].str.startswith('EE'), 'Country'] = 'Estonia'\\nwork.loc[work['Country'].str.startswith('EL'), 'Country'] = 'Greece'\\nwork.loc[work['Country'].str.startswith('FR'), 'Country'] = 'France'\\nwork.loc[work['Country'].str.startswith('HR'), 'Country'] = 'Croatia'\\nwork.loc[work['Country'].str.startswith('HU'), 'Country'] = 'Hungary'\\nwork.loc[work['Country'].str.startswith('IE'), 'Country'] = 'Ireland'\\nwork.loc[work['Country'].str.startswith('LI'), 'Country'] = 'Lithuania'\\nwork.loc[work['Country'].str.startswith('LU'), 'Country'] = 'Luxembourg'\\nwork.loc[work['Country'].str.startswith('LV'), 'Country'] = 'Latvia'\\nwork.loc[work['Country'].str.startswith('MT'), 'Country'] = 'Malta'\\nwork.loc[work['Country'].str.startswith('PL'), 'Country'] = 'Poland'\\nwork.loc[work['Country'].str.startswith('PT'), 'Country'] = 'Portugal'\\nwork.loc[work['Country'].str.startswith('RO'), 'Country'] = 'Romania'\\nwork.loc[work['Country'].str.startswith('SI'), 'Country'] = 'Slovenia'\\nwork.loc[work['Country'].str.startswith('SK'), 'Country'] = 'Slovakia'\\nwork.loc[work['Country'].str.startswith('UK'), 'Country'] = 'United Kingdom'\\nwork.head()\\n\"" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\"\"\"\n", + "work.loc[work['Country'].str.startswith('BE'), 'Country'] = 'Belgium'\n", + "work.loc[work['Country'].str.startswith('BG'), 'Country'] = 'Bulgaria'\n", + "work.loc[work['Country'].str.startswith('CY'), 'Country'] = 'Cyprus'\n", + "work.loc[work['Country'].str.startswith('CZ'), 'Country'] = 'Czechia'\n", + "work.loc[work['Country'].str.startswith('EE'), 'Country'] = 'Estonia'\n", + "work.loc[work['Country'].str.startswith('EL'), 'Country'] = 'Greece'\n", + "work.loc[work['Country'].str.startswith('FR'), 'Country'] = 'France'\n", + "work.loc[work['Country'].str.startswith('HR'), 'Country'] = 'Croatia'\n", + "work.loc[work['Country'].str.startswith('HU'), 'Country'] = 'Hungary'\n", + "work.loc[work['Country'].str.startswith('IE'), 'Country'] = 'Ireland'\n", + "work.loc[work['Country'].str.startswith('LI'), 'Country'] = 'Lithuania'\n", + "work.loc[work['Country'].str.startswith('LU'), 'Country'] = 'Luxembourg'\n", + "work.loc[work['Country'].str.startswith('LV'), 'Country'] = 'Latvia'\n", + "work.loc[work['Country'].str.startswith('MT'), 'Country'] = 'Malta'\n", + "work.loc[work['Country'].str.startswith('PL'), 'Country'] = 'Poland'\n", + "work.loc[work['Country'].str.startswith('PT'), 'Country'] = 'Portugal'\n", + "work.loc[work['Country'].str.startswith('RO'), 'Country'] = 'Romania'\n", + "work.loc[work['Country'].str.startswith('SI'), 'Country'] = 'Slovenia'\n", + "work.loc[work['Country'].str.startswith('SK'), 'Country'] = 'Slovakia'\n", + "work.loc[work['Country'].str.startswith('UK'), 'Country'] = 'United Kingdom'\n", + "work.head()\n", + "\"\"\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Just checking the values and counts per industry" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OccupationIndustryAgeValuecountRelative
0Armed forces occupationsAccommodation and food service activitiesY15-29195747.457594e-06
1Armed forces occupationsAccommodation and food service activitiesY30-49175776.695448e-06
2Armed forces occupationsAccommodation and food service activitiesY50-6433061.257540e-06
3Armed forces occupationsActivities of extraterritorial organisations a...Y15-2921978.345493e-07
4Armed forces occupationsActivities of extraterritorial organisations a...Y30-49908133.460140e-06
5Armed forces occupationsActivities of extraterritorial organisations a...Y50-6478102.972367e-07
6Armed forces occupationsActivities of households as employers; undiffe...Y15-29113.810727e-09
7Armed forces occupationsActivities of households as employers; undiffe...Y30-492138.002528e-08
8Armed forces occupationsActivities of households as employers; undiffe...Y65-84311.143218e-08
9Armed forces occupationsAdministrative and support service activitiesY15-291417115.399801e-06
10Armed forces occupationsAdministrative and support service activitiesY30-494231101.612319e-05
11Armed forces occupationsAdministrative and support service activitiesY50-6459982.282626e-06
12Armed forces occupationsAdministrative and support service activitiesY65-842549.526818e-08
13Armed forces occupationsAgriculture, forestry and fishingY15-2912744.839624e-07
14Armed forces occupationsAgriculture, forestry and fishingY30-4928651.089868e-06
15Armed forces occupationsAgriculture, forestry and fishingY50-647252.743724e-07
16Armed forces occupationsArts, entertainment and recreationY15-2947891.821528e-06
17Armed forces occupationsArts, entertainment and recreationY30-49738122.812317e-06
18Armed forces occupationsArts, entertainment and recreationY50-6417756.744987e-07
19Armed forces occupationsConstructionY15-2939761.512859e-06
20Armed forces occupationsConstructionY30-4950261.912985e-06
21Armed forces occupationsConstructionY50-6414045.335018e-07
22Armed forces occupationsEducationY15-291668146.356293e-06
23Armed forces occupationsEducationY30-492026137.720534e-06
24Armed forces occupationsEducationY50-64344101.310890e-06
\n", + "
" + ], + "text/plain": [ + " Occupation \\\n", + "0 Armed forces occupations \n", + "1 Armed forces occupations \n", + "2 Armed forces occupations \n", + "3 Armed forces occupations \n", + "4 Armed forces occupations \n", + "5 Armed forces occupations \n", + "6 Armed forces occupations \n", + "7 Armed forces occupations \n", + "8 Armed forces occupations \n", + "9 Armed forces occupations \n", + "10 Armed forces occupations \n", + "11 Armed forces occupations \n", + "12 Armed forces occupations \n", + "13 Armed forces occupations \n", + "14 Armed forces occupations \n", + "15 Armed forces occupations \n", + "16 Armed forces occupations \n", + "17 Armed forces occupations \n", + "18 Armed forces occupations \n", + "19 Armed forces occupations \n", + "20 Armed forces occupations \n", + "21 Armed forces occupations \n", + "22 Armed forces occupations \n", + "23 Armed forces occupations \n", + "24 Armed forces occupations \n", + "\n", + " Industry Age Value count \\\n", + "0 Accommodation and food service activities    Y15-29 1957 4 \n", + "1 Accommodation and food service activities    Y30-49 1757 7 \n", + "2 Accommodation and food service activities    Y50-64 330 6 \n", + "3 Activities of extraterritorial organisations a... Y15-29 219 7 \n", + "4 Activities of extraterritorial organisations a... Y30-49 908 13 \n", + "5 Activities of extraterritorial organisations a... Y50-64 78 10 \n", + "6 Activities of households as employers; undiffe... Y15-29 1 1 \n", + "7 Activities of households as employers; undiffe... Y30-49 21 3 \n", + "8 Activities of households as employers; undiffe... Y65-84 3 1 \n", + "9 Administrative and support service activities    Y15-29 1417 11 \n", + "10 Administrative and support service activities    Y30-49 4231 10 \n", + "11 Administrative and support service activities    Y50-64 599 8 \n", + "12 Administrative and support service activities    Y65-84 25 4 \n", + "13 Agriculture, forestry and fishing    Y15-29 127 4 \n", + "14 Agriculture, forestry and fishing    Y30-49 286 5 \n", + "15 Agriculture, forestry and fishing    Y50-64 72 5 \n", + "16 Arts, entertainment and recreation    Y15-29 478 9 \n", + "17 Arts, entertainment and recreation    Y30-49 738 12 \n", + "18 Arts, entertainment and recreation    Y50-64 177 5 \n", + "19 Construction    Y15-29 397 6 \n", + "20 Construction    Y30-49 502 6 \n", + "21 Construction    Y50-64 140 4 \n", + "22 Education    Y15-29 1668 14 \n", + "23 Education    Y30-49 2026 13 \n", + "24 Education    Y50-64 344 10 \n", + "\n", + " Relative \n", + "0 7.457594e-06 \n", + "1 6.695448e-06 \n", + "2 1.257540e-06 \n", + "3 8.345493e-07 \n", + "4 3.460140e-06 \n", + "5 2.972367e-07 \n", + "6 3.810727e-09 \n", + "7 8.002528e-08 \n", + "8 1.143218e-08 \n", + "9 5.399801e-06 \n", + "10 1.612319e-05 \n", + "11 2.282626e-06 \n", + "12 9.526818e-08 \n", + "13 4.839624e-07 \n", + "14 1.089868e-06 \n", + "15 2.743724e-07 \n", + "16 1.821528e-06 \n", + "17 2.812317e-06 \n", + "18 6.744987e-07 \n", + "19 1.512859e-06 \n", + "20 1.912985e-06 \n", + "21 5.335018e-07 \n", + "22 6.356293e-06 \n", + "23 7.720534e-06 \n", + "24 1.310890e-06 " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work2 = work.groupby([\"Occupation\", \"Industry\", \"Age\"], as_index=False).agg({\"Value\":'sum', 'count':'sum'})\n", + "work2[\"Relative value over \"]= work2['Value']/sum(work2[\"Value\"])\n", + "work2.head(25)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1181, 6)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work2.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(27766, 8)" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative
84BelgiumFNot applicableNot applicableY15-2955348410.002109
85BelgiumFNot applicableNot applicableY30-4931413610.001197
86BelgiumFNot applicableNot applicableY50-6452995710.002020
87BelgiumFNot applicableNot applicableY65-8489959910.003428
88BelgiumFNot applicableNot applicableY_GE8517393310.000663
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "84 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "85 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "86 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "87 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "88 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative \n", + "84 0.002109 \n", + "85 0.001197 \n", + "86 0.002020 \n", + "87 0.003428 \n", + "88 0.000663 " + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating the csv file that we will analyse in tableau" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'new_work' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mnew_work\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mto_csv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"work.csv\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msep\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m\";\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'new_work' is not defined" + ] + } + ], + "source": [ + "new_work.to_csv(\"work.csv\", sep = \";\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using the dataset to create an age pyramid" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXAGETIMEVALUEFLAGSFOOTNOTES
0ATFY1201138858NaNNaN
1ATFY10201139520NaNNaN
2ATFY11201140698NaNNaN
3ATFY12201141040NaNNaN
4ATFY13201142310NaNNaN
\n", + "
" + ], + "text/plain": [ + " GEO SEX AGE TIME VALUE FLAGS FOOTNOTES\n", + "0 AT F Y1 2011 38858 NaN NaN\n", + "1 AT F Y10 2011 39520 NaN NaN\n", + "2 AT F Y11 2011 40698 NaN NaN\n", + "3 AT F Y12 2011 41040 NaN NaN\n", + "4 AT F Y13 2011 42310 NaN NaN" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "py = pd.read_csv(\"/home/jan/Downloads/singeleyears.csv\")\n", + "py.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXAGEVALUE
0ATFY138858
1ATFY1039520
2ATFY1140698
3ATFY1241040
4ATFY1342310
...............
96ATFY971682
97ATFY981185
98ATFY99737
100ATMY140705
101ATMY1041371
\n", + "

101 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " GEO SEX AGE VALUE\n", + "0 AT F Y1 38858\n", + "1 AT F Y10 39520\n", + "2 AT F Y11 40698\n", + "3 AT F Y12 41040\n", + "4 AT F Y13 42310\n", + ".. .. .. ... ...\n", + "96 AT F Y97 1682\n", + "97 AT F Y98 1185\n", + "98 AT F Y99 737\n", + "100 AT M Y1 40705\n", + "101 AT M Y10 41371\n", + "\n", + "[101 rows x 4 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import seaborn as sns\n", + "pyramid = py[[\"GEO\",\"SEX\",\"AGE\",\"VALUE\"]]\n", + "pyramid = pyramid[pyramid[\"AGE\"]!=\"Y_LT1\"]\n", + "pyramid.head(101)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXAGEVALUEAge
0ATFY1388581
1ATFY103952010
2ATFY114069811
\n", + "
" + ], + "text/plain": [ + " GEO SEX AGE VALUE Age\n", + "0 AT F Y1 38858 1\n", + "1 AT F Y10 39520 10\n", + "2 AT F Y11 40698 11" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pyramid[\"Age\"]= [int(i[1:]) for i in pyramid[\"AGE\"]]\n", + "pyramid.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SEXAgeVALUE
0F182351.93750
1F283187.84375
2F382936.34375
3F481560.71875
4F580817.31250
\n", + "
" + ], + "text/plain": [ + " SEX Age VALUE\n", + "0 F 1 82351.93750\n", + "1 F 2 83187.84375\n", + "2 F 3 82936.34375\n", + "3 F 4 81560.71875\n", + "4 F 5 80817.31250" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tot = pyramid.groupby([\"SEX\", \"Age\"], as_index=False).agg({\"VALUE\":'mean'})\n", + "tot.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "However, in the dataset the ages are more or less uniformly distributed" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWAAAAFgCAYAAACFYaNMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdZ3RUV5rv/++uIJVyTkggkJBAJGPAZIMBt+12Tu1saCfAocPt6Tszfe+Lueu/7sztXtPJM+2xG0ewjQMYu7HBGJPB5CQQCElIQkIo51SSKuz/C0k0YxMEnFOn6mh/1vICFaXaT7eqfnpq1z57CykliqIoiu9ZjC5AURRlsFIBrCiKYhAVwIqiKAZRAawoimIQFcCKoigGsRldgBbuuOMOuWHDBqPLUBRFuRRxsRtN0QHX19cbXYKiKMpVM0UAK4qiBCIVwIqiKAZRAawoimIQFcCKoigGUQGsKIpiEBXAiqIoBlEBrCiKYhAVwIqiKAZRAawoimIQFcCKoigGUQGsKIpiEBXAiqIoBjHFbmjK5RUVFfHpqlV4vV4AYmNiWbp0CVar1eDKlEDU3NzMm8uW0d3dDUBwcDAvLF5MdHS0wZUFHt07YCHEO0KIWiFE3gW3/bsQ4pQQ4pgQ4nMhRPQF//YbIcRpIUSBEOJ2vesbDE6cOEFLSytB0WnIoChKS0uoq6szuiwlQJ0+fZqa2lqGOFykBLuoqa2luLjY6LICki+mIN4D7vjebd8C46SUE4BC4DcAQogxwGPA2L7v+S8hhGrTrlNlVRWhUQlkTr2L9InzAaiurja4KiVQVVVVYbUI7h8bzwPj4rFaBFVVVUaXFZB0D2Ap5Q6g8Xu3bZRSuvu+3Auk9f39PuBjKWW3lLIUOA1M1btGM5NSUlXZG8AAIRGxCGGhsrLS4MqUQFVZWUlCWBAWi8BiESSEBann0zXyhw/hngW+7vt7KnD2gn+r6LvtB4QQi4UQB4UQB9Xb6Uurr6/H6ewkLDYFAIvVRmh0IuXl5QZXpgQir9fL2fJyhkTaz9+WEmnnbHn5+c8YlIEzNICFEP8bcAMfXu33SimXSSmnSCmnJCQkaF+cSZSVlQEQEf/332PhcUMoKy/H4/EYVZYSoGpra+nq7iY1Kvj8bWlRwTi7uqitrTWwssBkWAALIX4K3A08KaWUfTefA4ZecLe0vtuUa1RaWorNHkxIZPz52yLiU3H19Kh5O+WqlZaWAr2h26//7/3/pgycIQEshLgD+EfgXill5wX/tBZ4TAgRLIQYAWQB+42o0QyklJwqKCAiMR0h/n4mYGRiOgAFBQVGlaYEqIKCAiIdNmJD/76CNTbURqTDpp5P18AXy9A+AvYAo4QQFUKI54C/ABHAt0KIo0KINwCklCeAT4GTwAbgZSmlep98jerq6mhpbiY6ecR/uz3IEUZYdKJ6wShXxePxUFRUREas47/9QhdCkBHr4HRRkZrWukq6X4ghpXz8Ije/fZn7/yvwr/pVNHicOHECgKjvBXDvbRmcKdxPR0cHYWFhvi5NCUAlJSV0d3eTGRfxg3/LjHNwtLKd0tJSRo4caUB1gckfVkEoOsnNzSU8NhlHWNQP/i02bRRer5e8vLyLfKei/FBubi52q4WR8SE/+LfM+BDsVgu5ubkGVBa4VACbVH19PRUVFcSmjb7ov4fFJOEIj+bo0aM+rkwJRB6Ph+PHjpEV78Bu/WFsBFktZMU7OJabq6YhroIKYJM6ePAgAHFDcy7670II4oaNoajoNI2NjRe9j6L0y8/Pp6Ozk3HJl56uGpsURkdnJ/n5+T6sLLCpADYhj8fD3r37iE7JJDgs8pL3SxwxAZDs368WmiiXt3v3biIcNkbG/XD6oV9WfAgRwTb27Nnjw8oCmwpgE8rLy6O9vY2kzImXvV9wWBTRKZns3bsPt9t92fsqg1d9fT1FhYXcOCQMi0Vc8n4Wi2DikDAKCwpoaGjwYYWBSwWwyUgp2bp1K47waKKTM654/+SsybS3t3Ho0CEfVKcEom3btmGxCG5MDb/ifSelhWOxCLZt26Z/YSagAthkCgsLqaioIGXUNITlyj/eqKThhMUks3nzFvXhifIDLS0tHDhwgBtSwogIvvKq1YhgGxNSwti/fz8tLS0+qDCwqQA2ESkl3377LUEhESQMHzeg7xFCkJozg8bGBrUiQvmBrVu34vV6mDH80p8lfN/M9Ei8Xo/qggdABbCJ5OXlcebMGVJzZmCxDvwam5jULMJikli/fj0ul0vHCpVAUl9fz57du7khJZyYEPuVv6FPTKidG1LC2f3dd9TX1+tYYeBTAWwSbrebr776itDIeBIzbriq7xVCMOyG+bS0tLBjxw6dKlQCzVdffYVFwC2ZV3/U0NzMKCwC1q1bp0Nl5qEC2CR27txJQ0MDQ2+4ZUBzv98XlTiMmCFZbN68mebmZh0qVAJJUVEReXl5zEyPIDz46g+liQi2MTM9guPHj1NUVKRDheagAtgE6uvr+eabb4gZMnJAKx8uJX3ifNweL5+tWcPfdwhVBpuenh5WrfqU2FA709MHPvf7fdPTI4kNtbN61Sp6eno0rNA8VAAHOCklq1evBmFlxKTb/tsuVVfLER5N2ribyT95kmPHjmlYpRJINm7cSGNjE3eOjr3oZccDZbdauHN0LA2NjWzcuFHDCs1DBXCA2717N6dPn2bo+LkEhf5wl6qrlZI1hbCYZD77bA2tra0aVKgEktLSUrZv387EIeEMj3Vc9+MNj3UwcUg427dvVxu2X4QK4ABWVVXF2rVfEp2cQeIVrnobKGGxMHLaXXR1d/PRRx+pc74Gkc7OTj784AOiHTZ+lB2j2eP+KDuGaIeNDz/4AKfTqdnjmoEK4ADV09PD+x98gNUeTObUO69r6uH7QiLjSZ+4gKKiIrZv367Z4yr+q38qq7W1lfvHxRFs0y4agm0W7h8XR2trK6tXr1afL1xABXAAklKyatUqamtqyJh6F3aH9huqJ2bcQGzaKNav/5rTp09r/viKf9m5cyfHjh3jlsyo/3bgplZSo4KZmxlFbm4uO3fu1PzxA5UK4AC0c+dOjhw5Qtq4m39w3JBWhBBk3vRjHBExrFjxvtqy0sSKior46ssvGZUQwozrWPVwJTPTIxmVEMJXX36pfqn3UQEcYIqKivjyy6+ISc0iNWeGrmNZ7cFkz3qQHpeb95Yvp7u7W9fxFN9raGjg/fdXEBtq596x8ZpOZX2fEIJ7x8YTG2pnxYrlasc0VAAHlKqqKt5bvpyQyFhGTr1L1xdLv5CIWDKn3UNlZSUffvih+lDORDo7O3n7rbfwunr4yYR4Ted9LyXYZuEnE+Lxunp4+6236OzsvPI3mZgK4ADR0tLCW2+9hRQ2Rs3+CVa79vN0lxIzJJPhE2/l5MmTfPHFF+pDFBNwu9289+67NDTU85MJ8cSFDXyvh+sVF2bnJxPiaWio57333hvUe1GrAA4ATqeTt95+m/aOTkbNfviyp1zoJTlrEinZN7F79261y1WA83q9fPTRR5SUlnLPmDjSY65/ve/VSo9xcM+YOEpKSvj4448H7Tsr3Y+lV65PT08P77zzDtVV1Yya/RBhMUmG1TLshnn0ONtYt24dISEhTJ8+3bBalGsjpWTNmjXk5uYyf2T0Zc9409u45DBau9xsOXoUh8PBQw895JNpNX+iAtiPud1uli9fQemZM2RNv4folGvf50ELQggyp96Nx9XD6tWf4XA4mDhRmwtAFN9Yv349e/fuZebwSGYOjzK6HGYOj6LL5WX33r2EhoZy5513Gl2ST6kpCD/l8Xj48MMPKSg4Rcbk2y95urGvWaxWsmbeT2RCGitXriQvL8/okpQB+vbbb9m6dSuT08KZdw1bTOpl3shoJqWGs2XLFjZt2mR0OT6lAtgP9Yfv8ePHSZ+44Kr399Wb1WYne/ZDhEYnsWLF+5w4ccLokpQr2LRpE9988w3jU8K4Y1SsX73VF0Lw49GxjE8OY8OGDWzevNnoknxGBbCf8Xg8rFy5kmPHjpF+wzxSsqcYXdJF2ezBjJ7zCKHRiSxfvoKTJ08aXZJyCZs3b2bDhg2MSw7jnjFxfhW+/YQQ3DM2jnHJYXz99dds2bLF6JJ8QgWwH+kP39zcXIZNuIWUUVONLumybEGOvhBOYPny5aoT9kObNm3i66+/ZmxyKPeOjcPih+HbzyIE946NY2xyKOvXrx8U0xEqgP2E2+1mxYoV58N3yOhpRpc0IL0h/CghUYksX76c3Nxco0tS6F3tsGHDhvOd731j4v06fPtZhOC+MfGM65uO2LBhg6nXnasA9gMul4v33nuPEydOMPzGWwMmfPvZghyMnvsoYbEpfPDBhxw+fNjokgY1KSXr1q1j06ZNTBwS3tv5Wvw/fPtZLL2d8A1Dwti0aRPr1q0zbQjrHsBCiHeEELVCiLwLbosVQnwrhCjq+zOm73YhhPgPIcRpIcQxIcQkveszWnd3N2+99RanTp1ixOTbSc6abHRJ18RmD2b0zY8QkZDGypUfsW/fPqNLGpS8Xi9r1qxh27ZtTE4L566c2IDofL/PIgR358QxOS2cbdu28fnnn5vyYg1fdMDvAXd877Z/BjZLKbOAzX1fA/wYyOr7bzHwug/qM0xnZyd//etfKSkpIXPa3SRptKm6Uaz2IEbNfpjo5BGsWrVKnbDsYx6Ph08++YQ9e/YwIz3S71Y7XC0hBHeMimV6eiS7d+/mk08+wePxGF2WpnQPYCnlDuD7exneByzv+/ty4P4Lbl8he+0FooUQKXrXaIS2tjZef/11KirOkTXjfhLSxxpdkiasNjvZsx4kNm0Ua9euZePGjaZ9++hP3G43H3zwAYcOHWJuRhTzR0YHdPj2E0KwYGQ0czOiOHToEB988IGp9o4wag44SUpZ1ff3aqD/+tpU4OwF96vou+0HhBCLhRAHhRAH6+rq9KtUB83Nzbz22mvU1NaRPfshYtOyjS5JUxarlazp95IwfBwbN27kyy+/VCGso/7L1Y8fP86PsmO4OcMc4dtPCMHNGdH8KDuG48eP884775jmlGXDP4STva/Mq351SimXSSmnSCmnJCQk6FCZPurq6vjPv/yF5pY2Rs95VLcN1Y0mLBYybrqT5JGT2bFjB6tWrTLlHJ7RnE4nby5bRlFRIXfnxDFtmO83avKVacMiuSsnlsLCQt58c5kpzpczai+IGiFEipSyqm+Kobbv9nPA0Avul9Z3mylUVVXx6quv4vF4CY1O4Gze4JgjDQqNZP/+/XR3d/PEE09gtVqNLskUOjo6+O1v/x9OZxfxYTaOVbVzrKrd6LJ0Fx9qo7T0DP/2b//KP//zbwgLM25DoetlVACvBRYBv+37828X3P6KEOJjYBrQcsFURUArLy/nzTffwmJ3MPbWRwmJjDe6JJ+qPLWP3Nxt9PT0sHDhQux23+0/a0YtLS0s++tfcXV389jEREbGhxhdkk+drney+lgd//XaayxZupTIyMDs/IXec3NCiI+AW4B4oAb4F+AL4FNgGFAGPCKlbBS9E1d/oXfVRCfwjJTy4JXGmDJlijx48Ip3M0xxcTFvv/MOFpsDR2Q8Hrc55q+uRpAjjMiEYZQe3sjIkSN55plnCA723abyZtLY2Mgbb7xOe2sLKRF2Buv0uhBQ1eYiIjKaJUuXEhsba3RJl3PRSXndA9gX/DmACwsLeeedd7GHRpIz51GCQiOMLslQdWfyKD6wnmHDhvHC888TEjK4OrfrVVdXxxuvv063s4PHJybocoJxIDnX0s1HR+sIDglj6Ysv4sefB6kA9rX8/Hzee285WKyERMYjLIZ/5ukXpNdLR2MVqampLF78AqGhoUaXFBBqamp4443X8XQ7SQ634/YG/mtXCzaLoLrdhTU4hBdffInExESjS7oYFcC+lJeXx4oV7xMSlUDOnEewBatO70JNlacp2v0FyclJLFmyJKA/SPGFqqoq/vrGG0h3N0/dmEBCeJDRJfmVuvYePjhSh7AFs2TpUlJS/O7yARXAvnL8+HGWL1+OxRZEaFSC6nwvwd3ThbO1nuSkZF58cakK4UuoqqrqnXbocpIYbscWQPs6+JLbK6ltdxHsCGHpiy/6WwirAPaFEydOsHz5ckJjkhk95xFsPjy9OBA1V5dS+N1nJCUl8eLSpWo64nuqq6t5/fX/wuLp4elJicSGqtUjl9PY6eL9Q7V4bUG8+OJLJCcnG11SPxXAesvPz+ftt9/BYrOrzvcquHu6cLbUERISwm9+8xsVwn1qa2v54x//gNfjITkiSHW+A+T2SqrberBYrfzqV//gL3PCKoD1dPr0ad588y0ckfHkzH0UW5Dvj/oOZE1VxRR+t4ahaUNZsmTxoF+i1tjYyF/+8z/x9DhZOCmRuDDV+V6N+g4X7x+uxRYcwsuv/MwflqipANbL2bNnef2NN7A5IggOj8Hd02VYLQHN66WtsZLsrCyeffZZbLbBeWh3a2srr732FzpaWxgSacftCfzXqBFsVkFlq4uwyCheeeVnREQYugRUBbAeamtr+c+//AUp7IyZ/yRBIYN7ne/1qi05RsnBr5kwYQJPPfUUlkE2jeN0Ovmv116jvq6WJyclkjbI1/ler4qWbj48XEt8YhIvvfSSkevOVQBrrbW1lf/4j/+ktbWVkOhELNbB2bFpzePqprO5lptvvpn77rvP6HJ8xu128+abb1JcXExiuB2HbXD98tFLl9tLbbuLzMxMXnjhBaPeWV00gNVP+Bp1d3fz7//+7zQ3N+OIjFfhqyGrPRh7SDg7d+7kT3/6k9Hl+ISUkt/97ncUFxcTF2pT4ashh81CXKiN4uJifve73/nV1qgqNa6B1+tl5cqVOJ3O3s3HU7OMLsl0pNdL4e4vqKw8zYkTJxg71hwb1l/Kpk2baGpqYk5GFHMyoo0ux5R2lDSzo6SJzZs3c+uttxpdDqCmIK7Jxo0b2bhxI6HRiVjVOl/9SElnSz1Wi+SXv/iFvywn0tyJEyd49913iXJYiXKonkhPLV1uWro8PPvss4wZM8aXQ6s5YC2cPHmSd955h/j0cWROvdNUJw/4o+6OVvI2vUd0VAS/+PnPcTjMtbyvrq6OP//5z8QGw8LJiditaupBTy6Pl+WHamnuhl/88pe+3LxHBfD1amho4He/+x1YrIRFJ/Xuh6foztPTRWdLHRMmTODpp582zS+9np4eXn31z9TX1ZGkLjH2GbdXUtPuIj4hgV/84pcEBflkX42L/nDV+50B8ng8fLhyJRarnXG3PYMjLMrokgaVc/l7OXZsOwcOHGDq1KlGl6OJL7/8kpqaWh6/MZHMOLVZky8VNzj56EgtX375JQ899JBhdagAHqA//elPVFdX44iIo3j/OqPLGZSs9mBWrV7NiBEj/Hnf1wE5ceIEe/bsISLYynelLXxX2mJ0SYNORLCVPXv2kJOT4+v54PNUAA9AeXk5NTW1xKePZeS0u40uZ9Dq7mzl+MZ3WbnyI372s1cC9iKNjo4OPv30E5IignjmpmQ19WAQt1fy7oFqPvnkY/7xH//JkN34VABfgcfjYdWqVQiLha72Zk5sXWl0SYOaIzyWs2fL2b17N7Nnzza6nGuydu1anJ1OkmKDWXm4xuhyBrWwIAt1jU7Wrl3L448/7vPxVQBfwY4dO6iqqiJ75v3Epo0yupxBT0rJqR2fsn79esaNG0d0dGCtmS0qKuLQoUPMGh7JvJExRpejAFtON7H70CGmTJlCVpZv1/SrAL6MlpYWNm7ciN0RTlXRIaqKDhldkgJ4PW56XC6+/PJLnn76aaPLGTCPx8Oazz4jyCoob+5mxcFqo0tSAAnYrYI1n33Gr//n/8RqtfpsbBXAl7FhwwY8Hi8TfvQkjvDA6rTM7mzeLnJzv2POnDmkp6cbXc6A7N27l7r6eh65IYHsBLXnsT8prOvk09w69u3bx8yZM302rgrgS6iqquLAgQMEhURQfGC90eUo3ye9WCxWvvrqK1566SW/Xxvc1dXF2rVrCbYJ9pa1sres1eiSlO8JtgrW/u1vTJo0yWcX/KgAvoRvvvkGmz2YCbc9ow7U9FPVp49QengjhYWFjBrl3/Pzu3btwuPxsPCm5EF/lLy/OtfSzbsHqvnuu+9YsGCBT8ZUAXwRNTU15OXlERIZR8Huz40uR7kEe3AoQSERbN68xa8DuKenh507dxAeZGVzUZPR5SiXER5kZceO7cyZMwe7Xf9TSFQAX8TWrVuxWG2MueUJ7A41V+fPqgr2U5K7lbKyMr+dC96/fz8dHZ08PTmJ9Bhz7WVhNmVNXbx/qIb9+/cza9Ys3cdTAfw97e3tHDlyBHtIJIV7vjC6HOVKpERYLOzatcsvA1hKya6dOwmxW9he3Gx0OcoAhNgt7Ny5k5kzZ+r+2YIK4O85ePAgHo+HsbMeIDQqsC93HSxKD3/LsWO53H///YZczXQ5xcXF1Dc0cM+YOG4YEm50OcoA5Fa28+XJekpKSsjMzNR1LBXAF5BSsm/ffmxBIZQe/tbocpQB8rpdeDweDh06xJw5c4wu57/Zt28fFgFHK9vJrWw3uhxlACRgEYK9e/eqAPalc+fOUVdXS8aUO0jMuMHocpSrkLdpOYcPH/GrAO7u7iYvL4+JQ8K5MyfO6HKUq7A+v4HjeXn09PToul2lCuALHDt2DCEETVXF1JWdMLoc5Sp4PR4qKqppbGwkNjbW6HIAKCgowOVy0dBpUVe9BRghwOVyUVBQwPjx43Ubx9AAFkL8D+B5erv+48AzQArwMRAHHAKellL2+KKe3NxjRCamM2rWg74YTtFQV3szR9f/lWPHjnHLLbcYXQ7Q+ws9NMjKkzcmYVE7ngUUr1fy513nyM3NNWcACyFSgZ8DY6SUTiHEp8BjwJ3An6SUHwsh3gCeA17Xu56GhgYaGuoJjbaqHc8ClNUeTEFBgV8EsNfrpbCgALsFPlA7ngUkuwUKCwrwer26bX1q9BSEDQgRQriAUKAKmA880ffvy4H/gw8CuLCwEICs6fcQEqnm6wLRmaObKSk+isvl8ski+ss5d+4cnU4n94+LZ1yyf63MUAbmeFU7fzvRQGVlJWlpabqMYVgASynPCSF+D5QDTmAjvVMOzVJKd9/dKoDUi32/EGIxsBhg2LBh111PUVERFquNkkPfXPdjKQaREo/HTWlpKdnZ2YaWUlRUBMCBs60crmgztBbl2nj6zsssLCw0XwALIWKA+4ARQDOwCrhjoN8vpVwGLIPeQzmvt54zZ84Qk5pN1vR7rvehFIO4e7o5+MWfKSsrMzyAz5w5Q1xYEM/clGJoHcr1+a89lZSVlen2+EZOQdwKlEop6wCEEGuAWUC0EMLW1wWnAef0LqS5uZnW1lZCLQ1q/jfAWW1BlJeXG1qDlJLy8jKsHo9a/RDgPB4v5WVlSCl1uSrOyAAuB6YLIULpnYJYABwEtgIP07sSYhHwN70LOXv2LAAjJt9GRNwQvYdTdFS8fz1l5SWG1tDc3Ex7ewd3jIplytAIQ2tRrs/Bs21sKGikpaVFl9NXjJwD3ieEWA0cBtzAEXqnFNYBHwsh/m/fbW/rXUtVVVXvnwX7Ke/u1Hs4RUceVzedHR20tbUREWFM+PU/n07VdnCypsOQGhRt9K8erKqqMlcAA0gp/wX4l+/dXAJM9WUd1dXVOMKjyZ55vy+HVXTQUnOG/O2fUF1dbVgAV1f3Tjs8PCERhz0wT25WejldHv6wvYLq6mpycnI0f3yjl6H5heqaGjxut5r/NQHp9QC9ezr7+oDFfjU1Ndgsgk9zaw0ZX9GWzSKoqdFnLfegD2ApJY0NjcRn3MDwib7ZBV/Rj5SSg5//icbGRsNqaGxoYEhkEAunJBtWg6Kd5QeraWho0OWxB30At7W14Xa7aK09qzpgsxAW3V4wA9HQ0IBwudUKCJNo7XIjG+p1eexBH8BNTb1HxAwdN5uYISMNrkbRwqmdqw3rgN1uN61tbdw8Ioq5meokbTPYXtzMztIWPB6P5kfWD/oAbm3tPZ22uugQlQX7Da5G0UJPZxs9uAwZu62t96q30w1Oypq6DKlB0ZbL03udV1tbm+YrIQb9R7T9Aexx+2TDNcUHLFYbnR0duN3uK99ZY/3PJ7va/cw0bNben2VLS4v2j635IwaY9vbeUwrGznsSodOOR4pv1RQfpfTQN3R0dBAVFeXTsfufTz/KjiElUh0/bwaVrd28s7/6/M9WS4M+gDs6OhAWKye3f2x0KYpGpNcLYEgAd3T0Xnjx9alGbKoLNgW3t3cKov9nqyUVwB0dOMKiGDvviSvfWQkILbXl5G/7SJcXzJX0j/nUpCSCbOodlRl0u738+7azKoD14HQ6cXV3qiVoJmKx9j6tu7p8/yGY0+kE4OOj6iIMs9Hj+aQCuKuLsJhkcuY+anQpika6Olo4uu4NQwK4q6uLkCCrugjDZP6wveL8L1ctDfoA7urqwtnmVB2wifTPARsVwG6PV12EYTJur1d1wHro7u4mKimdzKl3GV2KohGvx8P+z35PT4/vlxb29PQQE2JXHbDJ/HVvlS7Pp0EfwK4eF931FaoDNiGjAritW12GbDZtXW5iVABrz+XqIWHYONJvmGd0KYqGDn7+Z8MCODHcztOTVQdsJu8fqsblUgGsKSklbreb5qpi2hurjC5H0ZDX4zbkSji3y0Vzh+qAzaax00V0mPaXtw/qAPZ4eveOjR82ltQxMwyuRtHSkXWv43L5fj8It9tFWlQwD9+Q4POxFf2syq2lRYdf6IM6gPs7pIaz+TTXlBpcjaIld7fz/C9YX3K53VS2d6sO2GSanW6CwlUHrKn+F2jCiAmkZE8xuBpFS8e+eduQAPZ6PKTHOrhvbLzPx1b087e8eiq6vJo/rgpgoL7sBI3nCg2uRtFSd2ebIQHs9ng426Q6YLNp7fLg1eF8v0EdwN6+BftJmRNJzLjB4GoULeVtWmHIh3Bej5esOAd35sT5fGxFP+vzGyho0v4X+qAO4P4OqbYkl7qyEwZXo2ipq70JGe/7U5G9Xi9nGntUB2wybd0epA5xOagD+HwHnDWZhPSxBlejaOnElg+NmQP2ehmZFMJto2J9Prain95YJmgAACAASURBVI0FjeTWdGv+uIM6gKXs3eez5vRhaktyDa5G0ZKzrREZ6fuLIbxSUtzgVB2wyXT0eJBS+/2dB3UA93fAKdlTiBuaY3A1ipZObvv4/M/Xl6TXS3ZCGAuyYnw+tqKfzUVNHDjXqfnjDuoA7u+AqwoPUX36iMHVKFrqam3A6/D9UjApJYV1nZxr0f7tqmKcjh7P+V32tKQCGBgyaiqxadkGV6NoKX/Hp0h8PwcspWR0YijzRqoO2Ey2nm5iT7k6E05Tf++A91NVdNDgahQtdbU1EhHv+w/CpJQU1Dk526w6YDPp7PGczwstqQAGUkZNIzY1y+BqFC2d2rkKKX2/G5oERieGcktmtM/HVvSzrbiZXaUmO5ZeCBENvAWMo/e5+yxQAHwCDAfOAI9IKZv0GP98B1ywn6rCA3oMoRikq62J0Djfnojc/3w6VdtJeZPvT+NQ9NPp0ucDXaM74FeBDVLKh4UQQUAo8L+AzVLK3woh/hn4Z+Cf9Bj8/Bzw6GnEDBmpxxCKQU7tXA1S+zO8Lqf/+TQmKZQ5GaoDNpPtxc3sLG1BSokQ2i1HMyyAhRBRwBzgpwCy9/1ijxDiPuCWvrstB7ahUwD3qzy1j8qC/XoOofhYV1sTITGRhoydX9PJmUbVAZuJs68DNk0AAyOAOuBdIcQNwCHgF0CSlLJ/d/RqIEmvAs53wDnTiUnJ1GsYxQAFuz4D2eHTMS/sgG9WHbCp7Chppq7EXHPANmAS8DMp5T4hxKv0TjecJ6WUQoiLfvQohFgMLAYYNmzYdRVSmb+XylP7rusxFP/S1daEI8b3e0EAnKzppFR1wKbiNOEccAVQIaXsT77V9AZwjRAiRUpZJYRIAWov9s1SymXAMoApU6Zc0/qQ/o4lNWcG0SkZ1/IQip8q2LUG6dV+3eZAqA7YfHaWNLO9pEXzpWiGBbCUsloIcVYIMUpKWQAsAE72/bcI+G3fn3/Tu5Zzp/Zy7tRevYdRfKirvYngqHCfjtn/4jxZqzpgszFjBwzwM+DDvhUQJcAzgAX4VAjxHFAGPKJ3Eak504lOVh2wmRR89zl4Wg0Ze2xSGLNH+HYJnKKvXaUtbCtu1vxxDQ1gKeVR4GJnAS3wZR3n8vdyLl91wGbS1d5MUGSYIWOfqOmgpMG3S+AUfTndf18FoSXtz9hQFD+g/caBgTG2EliMnoLwC6k5M4hOHmF0GYqGCr/7HNzGTUHMUlMQprKrtIVt7SabgvAX5/L3cC5/j9FlKBrqbm8mxsApiGI1BWEqXW5zfgjnF1QHbD6qA1a09F1pC7WqA9ZW/4S66oDNp7u9mejIUEPGVh2w+agOWEeqAzafwt2fg0v7S0cHQnXA5qM6YB2pDth8VAesaEl1wDpSHbD5GNEB909pqQ7YfAzrgIUQScC/AUOklD8WQowBZkgp39a8GoOoDth8VAesaMnIDvg94F3gf/d9XUjviRWmCWDVAZuPoXPAyWHMGq46YDMxcg44Xkr5qRDiNwBSSrcQwvfHzepIdcDmY2gHXN1Bcb3qgM2kS6dLkQcSwB1CiDh6z2xDCDEdMKa10InqgM1HdcCKlr4700LtaWM64F8Ba4FMIcR3QALwsOaVGEh1wOajOmBFS4bNAUspDwsh5gKj6N1npEBK6dKlGoOoDth8VAesaMmwDlgI8eD3bsoWQrQAx6WUFz2tItCoDth8VAesaMnIVRDPATOArX1f30LvAZojhBD/n5TyfV0q8yHVAZuP6oAVLRk5B2wDcqSUNXB+XfAKYBqwAwj4AFYdsPmoDljRkpEd8ND+8O1T23dboxDCFHPBqgM2H9UBK1oysgPeJoT4CljV9/VDfbeFAdpXZADVAZuP6oAVLRnZAb8MPAjM7vv6IJAkpewA5ulSlY+pDth8VAesaKn/SjghtD1waiDL0KQQogSYDvwEKAU+07QKg6kO2HxUB6xoyecdsBAiG3i87796evd/EFJKU3S9F1IdsPmo/YAVLRmxF8QpYCdwt5TyNIAQ4n9oXoEfUB2w+RjRAfe/PVW7oZmPEXPADwKPAVuFEBuAjzHpiduqAzYf1QErWvJ5Byyl/AL4om+1w33AL4FEIcTrwOdSyo2aV2MQ1QGbj9oPWNGSkXtBdAArgZVCiBh6P4j7JyDgA7j/LaPqgM2n8LvPEepUZEUjfnEmnJSyCVjW959pqA7YfLrbm4mJDDNkbNUBm486E05HqgM2n8LvPgfVASsa2eUPHbBZqQ7YfFQHrGjJqTpg/agO2HxUB6xoaVdpC9vM2AELIaz0Xt58Tkp5txBiBL1L3uLo3fbyaSllj541qA7YfLram4k1qAPOUx2w6Zi5A/4FkA9E9n39O+BPUsqPhRBv0Lsf8et6FpCaM53o5Aw9h1B8rOC7NQhPmyFjj00KY7bqgE1lZ0kz29tbfL8XhJ6EEGnAXcC/Ar8Svf/r5gNP9N1lOfB/0DmAz53cy7n8vXoOofhYV1sTwdERPh3z/JVw1R2UqA7YVJwuc3bAfwb+Eeh/pcQBzVJKd9/XFUCqXoP3v2CG5EwjJiVTr2EUAxTsWoOQ7YaMPSYplJszog0ZW9HHzpJmtpeYqAMWQtwN1EopDwkhbrmG718MLAYYNmzYddVSmb+XylP7rusxFP/S1daEI8a3HXC/kzWdlDZ2GTK2og+9OmCLLo86MLOAe4UQZ+j90G0+8CoQLYTo/8WQBpy72DdLKZdJKadIKackJCRcUwFa/zZT/I1vf77q+aRcLcM6YCnlb4DfAPR1wL+WUj4phFgFPExvKC8C/qZ3LUNGTyNmyEi9h1F86NTO1QhhzDxsTlIoc9QUhKlsL26mrtREUxCX8U/Ax0KI/wscAd7Wa6D+/zMrT+2jsmC/XsMoBuhqayI0zrcrEfqfTydrOjmjpiBMpbNvCsKUASyl3AZs6/t7CTDVF+P2/5+ZMmoqsalZvhhS8ZFTO1ch0HX5+A/0P59yEkOZm6k6YDPZVtzMrlLttzf1iwA2Sv8LpqpgP1WFBwyuRtFSV1sj4fGxPh9XAPm1nZQ1qQ7YTDpdXl3m+FUAAynZNxGblm1wNYqW8nd8irB4fD6uEIJRCSHMGxnj87EV/Ww93cSecu2XNaoABioL9lNVdNDgahQtdbU2EJUU7/NxhRCcqu3kbHO3z8dW9NPR49FlTY0KYCAlewpxQ0cbXI2ipZPbPsZi8f2ysN4OOJT5WaoDNpPNRU0cONep+eOqAAaqCg9QffqwwdUoWnK2NhAXluTzcYUQFNR1UtGiOmAz6ejxqDlgrVksvdehJI2cREL6WIOrUbR0YsuH53++viQsgsw4B7eN8v0HgIp+NhY0kluj/S9VFcBATdEhaktyDa5G0ZKztR5LzFCfj2u1WDhd76S6rdrnYyv6aev2YLFoH5cqgIHEjIkkZkwwuBpFS3mbVhjSAVssFkbE2vnx6Difj63o5+tTDZxq1H4/CBXAQE3xEerK8gyuRtGSs60RS5LvL4awWCwU13ex4qDqgM2ktcuDxe7Q/HEHdQDbbL3/8xOGjyM5a7LB1ShaOvbN2+d/vr5ktdoYFgH3jvX9EjhFP387UU+F06r54w7qAO7vgGtLj9FQUWBwNYqWujtasVrTfD6u1WrhTJPqgM2m2enGHq793iKDOoD7O6S4oaNJzZlhcDWKlo6ue8OQDthms5EQGczDE65ti1TFP63OraNJqA/hNNX/Aq0vO0lzdanB1Sha6ulqNyaA7XYq6rpVB2wyjZ1uohO0v7hmUAewEAKr1UZ0SibpN9xidDmKhg5+8apBHbCd+HA7T03y/UUgin4+OFyD1OH5NKgDGMBut9F4rpD2xkqjS1E05O7pwm63+3zcoKAgKtp6VAdsMnUdLtLigjR/XBXAQUE44tLIvOlOo0tRNOL1eti/+vcEBWn/grmSoKAgIh02Fk5J9vnYin6W7avS5fk06AM4KCiIluoznNi60uhSFI1Ib++CeaMCuLHTpTpgk2nqdJGqAlh7IQ4HHlsko+f8xOhSFI10d7Zy5KvXcTi0Xzh/JcHBwQTZrKoDNpk/7jiny/Np0Aeww+Gguvyc6oBNxGLtfVobEcAOh4PObrfqgE3G2eNWAayHkJAQghxhjJ33hNGlKBppraugpbrUkAAOCQlBAk/cmITNqo6pNwOXx8vvtp5VAayHsLAwutqbVAdsJlICvT9bX+sf8/1D1VgN2BBe0Z7Hq9/zSQVwWBhSSsbc8rguGy4rvldbkktbfYWhAXxnThxJEb7/EFDRXnVbD2/tq1IBrIfeAPZyYsuHCAO2L1S05+7pPZHYyAD+pqDR52Mr+goPD9f8MQd9AEdGRgKQMeV2QqPU9ftmUHr4W2R3myHL0PqfTzcMCeeGIdq/YBXfy61sp7y5+/zPVkuDPoCjonp3OCo9/K3BlSha6WpvJiZS+52rBqL/Rbq3vJXcSu2PMVd8z+nuXVeuAlgH0dG9m3bHDxtDUuZEg6tRtHD82/eIjjYmgIOCgggLDSEtyspdOepUDDNYl99Ap9emy6Xtgz6Ao6KisFisVBUepL78pNHlKBrobKkjPifTsPFj4+IprDlHQ4fLsBoU7dR3uohPStXlsQd9AFssFmJiYpAhcWTPvN/ocpTr5O7p4uAXrxIba9ypxHFxcbQ3VKur4UziL99VEhunz7uZQR/AAImJCRSeLlFrgU3A4+o9OjwxMdGwGhISEjh61MXyg9WohY2BTQLNTpduzycVwEBKSgqnThWQM+dRLFbtz31SfKem+Cilh74hOdm47jMlJQWA27JjSIkMNqwO5fpVtXbz9v7q8z9TrRkWwEKIocAKIIneXzTLpJSvCiFigU+A4cAZ4BEpZZOetSQnJyOll4LvPsPrces5lKKzHmc7QUFBxMRof3rBQPWH/9enGrGpq+ECmrvvKrikJH022DfyygM38A9SyjHAdOBlIcQY4J+BzVLKLGBz39e6SkvrPbzR3d2l91CKzjw9TtLShhp6VWN8fDzBwUE4XV7DalC04XR5CQ4OIj5en1OuDeuApZRVQFXf39uEEPlAKnAfcEvf3ZYD24B/0rOW+Ph4HCEhhMUkkjHlDj2HUnTk9bg58PmfSE8fZmgdFouFoUOH0V5brj6IC3Bv7asmPnnY+RPUteYXc8BCiOHAjcA+IKkvnAGq6Z2iuNj3LAYWAwwbdn0vOIvFQvqwYZwuzsfZpi4hDVRCWJBeL+np6UaXQnp6OptPn2b5gWrUFiOBSUqobutm3DT9nk+GB7AQIhz4DPillLL1wreOUkophJAX+z4p5TJgGcCUKVMuep+rMXLkSAoKCsiafg9BIRHX+3CKAc7m7aKtrpyMjAyjS2HkyJFs3ryZmcMjyUoINboc5RoU1nVyNreOkSNH6jaGoQEshLDTG74fSinX9N1cI4RIkVJWCSFSgFpf1JKdnc26deso/O5zhNXw30vKNXC21JOWlkZoqPGBN2LECOw2G98WNrGnrNXocpRr0N7twW63M3z4cN3GMHIVhADeBvKllH+84J/WAouA3/b9+Tdf1JOSkkJ4eDhBoZHqgowA5Orq5PCXf2HUqFFGlwKAzWYjc2QmNWUlPD05SW11GmCklLy2u4rMzAxsOhxH38/IVm8W8DRwXAhxtO+2/0Vv8H4qhHgOKAMe8UUxFouF8ePHs//AQQp3f4Gru9MXwyoa8bpdSCkZP3680aWcN378BE6dKuCjI7XnlzMpgcFqETQ7Xfxo/ARdxzFyFcQuuOSFQgt8WUu/CRMmsGfPHuKG5RCX5h+dlDIw+ds/IS4ujiFDhhhdynnjxo3js9WrSY4MYv5I49YlK1dvy+kmypq6GTdunK7jqMnOC2RkZBAeHs6Zw5uoLjpkdDnKAEmPh/bGShYsWOBXb/XDwsIYmZXF/tNFVDR3G12OchUqW3vIys7WfVN/FcAXsFqtTJ06lS1btzL+1oUEharVEIGg4sQu2hsrmTp1qtGl/MC0adMoLCxkxvBIsuKN/3BQubKiuk4+ya1j2rRpuo+lAvh7pk6dypYtW8jf8Sm24BCjy1GuREJHUxXZ2dnE6bRj1fUYO3Ys4WFhrDvZSGyoWg0RCBo73YSHhzF27Fjdx1IB/D3x8fGMGj2aktJyxt+6EItN+02YFe3Ul53k9L6zzJw50+hSLspmszF9xgw2b9rEU5OTiA9Tzyd/Vt/h4o09ldw6ZwZWH2zMpQL4IubPm0fBqdfJ2/ohVps62dZf2R1hdLU2kJiYxJgxY4wu55Jmz57N9m3b+PhIDZEO9ZLzZy1dbuw2G7Nnz/bJeOrZcBEZGRkMS0+npr6JcfOfwqIuzPBLjeeKKPxuDfc+9phu1+prITw8nKnTprFn926emhxPdIh6PvmjJqeL13dXMXPWLF1OQL4Y9Uy4CCEEd9x+O8uWLSN3w9vqwzh/JKGzuYa4uHhuvPFGo6u5onnz5rF7927e2V+lpiH8VH2HCwnccsstPhtTBfAlZGdnk52dTcmZckbNWoQtyGF0ScoFaoqPUlp/lrvvvssnc3XXKzo6mnnz5rFlyxZ+pDZq9zuVrd28s7+aBQsWnD+o1xdUAF/G3XffzR//+CfyNq3AHuKbtyTKlUmvl86matLT03VfKK+lefPmsW/vXlYeqSVBdcF+pa7DRVhoKPPmzfPpuCqAL2PIkCHMmDGdPXv2MHL6PYTH6nMsiXJ1Sg5uoKOxkgceeMCvLry4kpCQEO66+24+/fRTxqWEMSlVTW35g8MVbaw/1cgjD9yNw+Hbd7oqgK/gzjvvJC8vj/ztnxAalXjpi6cVnxDCQmttGXPmzDl/kkkguemmmzh48CBbTpdxus5Jl1udmmEkh81CeUsPmRkZ3HTTTT4fXwXwFYSEhPDggw+yfPlyopLSSRs7y+iSBi2Pq4e8Te8RHR3D7bffbnQ510QIwcMPP8wf//AHALVTmoGklHyaW4fbCw89/LAhPwcVwAMwfvx4YmJiqDixi8ZzhVjt6gMUI3S1NeLq6uCnL75IcHDg/gwSExO58667WLt2La/vriQ82P8/RDSj9m4PjU439913n27Hzl+JCuAB+tWvfsUf/vhHulw9jJn3BDYVwj7VWFFA4e4vmD9/PpmZmUaXc91mz57NqVP5lBQX88jERLU0zcfqO1y8tb+a7OxsZs0y7l2tkDLw9ymdMmWKPHjwoO7jlJaW8tprr2ELCiEkSp9TUpUf8nrcdDbVkJo6hFdeeUXXDbJ9qbW1lT/8/ve4urtICrers+N8REqoaXdhD3bwD7/+NZGRkb4Y9qI/XXM8k31kxIgR3Hvvvaxdu5bo5BGk5swwuiTT87h6OLH5fRwhDhYuXGia8AWIjIzkqaefZtmyZYQFW3lofLyaD9aZlJLPjtXj8vbw7MKFvgrfSzLPs9lHbr75ZsrLyzl6dAfNVSWotkVf3e3NuLraeeGFF4iNjTW6HM1lZWVx11138dVXX/HmviocNv+9pNoMutxeattd3H333boetjlQKoCvkhCCn/zkJ9TU1FBbX8uYeU8SFm3MBL7ZlR/bTlvdWe6++26ys7ONLkc3c+fOpaKigqNHj/LQ+HhykvTdBHywOlnTwZrj9UycOJG5c+caXQ6gAviaBAcH89xzz/Hb3/6WvE0rCItJQljUJ9lacjnb6WpvIjY21m9eLHoRQvDoo49SWFjIZ8frSTrTQrBVdcJa6nZ7qWl3ERoayqOPPuo3Uz3qQ7jrcO7cOV577TXsodHk3PIEtiC1MkILzVUlFOxaTVZWFs8991xA7PWghY6ODv7j1VdxtrewaHIScWplhCYaOlwsP1RDSEQUP//5L3Q/ZugSLpr4KoCv06lTp3jrrbew2oMJjUpQc8LXyePqprOljiEpKbz00ks+vzTUaHV1dfz+978H6SE5PAirRT2frofHK6lu7wFh5de//jUJCQlGlaICWC9Hjhzhww9XEp2SQfasB7Co6Yhr0tFUQ/62j4iOiuDll18mImJw7pVQUVHB66+/TrhNsmhyIqFB6vl0LTp6PKw4VEu7W/DSSy+RmppqZDkqgPW0e/du1qxZQ1BIJMFhUWrPiKvkdbvobKkjIiKcn73yCjExg/sY9+LiYt58801seIkPs2FR76yuildK6jvcuLGwePFiMjIyjC5JrQPW08yZM+nu7mbdunVEJg4l86Y7EX58SoM/cbY2kL/tI8JCQ1i6ZMmgD1+AzMxMFi1axHvvvYdXCh67MVEtURugLpeXD4/U4pKCn/50kT+E7yWpANbQvHnzOHz4MFVlJ2iuLiUkIk51wlfg9bjpbK5BACPSswy7Jt8f5eTkMGzYMEpLS/mPnRUkhQepjxiuoPcqtx56PJIRI0aQk5NjdEmXpaYgdLBx40Y2btyILThUhfBleN0unK31OIKDefHFpaSkqP2WLyYvL48VK1YQbIW4UDvqc7mL80po6HTR7YGFCxf622b9agrCV2677TagN4iDktIZOfVuNR3xPZ0t9Zza/jEORzAvLlXheznjxo1j4cKFvL9iBR4Jj05MIMSuPpi7kNPlYeWROnr8M3wvSXXAOtqyZQvr168nKCSi74M51boAWKw2OptqcARZWbp0KUlJSUaXFBBOnjzJiuXLiQu1EuWw0uVSm7kDOOwWWro8NHR6WPTTn/rrtIPqgH1t/vz52Gw21q5dS2h0Itkz7sNiG9yL69sbKjm1cxWhIb2dr4HrMgPOmDFjeObZZ3n33XfxeOHJSQlEBA/ul3Brl5uVR+po7vby7HPPBdwl66oD9oG9e/eyevVnRCYOxWZ34OpxGl2SzwU5wkjKvJGCXZ8RGRnO0iVLiIuLM7qsgFRcXMzbb79NmFUSH2aje5AeaxRkE9R3eHB6BM8+95y/7xMdWOuAhRB3AK8CVuAtKeVvL3Vffw9ggMOHD/PRRx8TFpvM6Jt/MuiOuW+uKqFw9+fExcWydMkSoqKijC4poJWXl/PmsmXYcPPkjYNvQ/f6DhcfHqnFjY0XFi9m2LBhRpd0JYETwEIIK1AI/AioAA4Aj0spT17s/oEQwADHjx9nxYoVCIuN0OiEQbOBj7u7E2drA0OGDGHx4sWEh4cbXZIpVFZW8h+vvorX6yExPIgg6+D4jKHHI6lt78FisfLzX/yCIUOGGF3SQARUAM8A/o+U8va+r38DIKX8fxe7f6AEMEBhYSHvvvsuNkcEo+c8SnCYsRtC66229BglBzcwPD2d5557jpCQEKNLMpW6ujr++sbrODs6eGxiPEOjzf3O6mxzFx8frSckLJwlgfUZwkUD2F/XRqUCZy/4uqLvtvOEEIuFEAeFEAfr6up8Wtz1yM7OZvHixXh7Oji59UOcbY1Gl6SbqsKDlBz4muysLF544QUVvjpISEjg5Vd+RkRUNCuP1FHSYN7PF0oanKw8UkdEVDQvv/JKIIXvJflrAF+RlHKZlHKKlHJKoP0gRowYwUsvvYQVD/lbV9LZHDi/QAZCSsm5k7spO7qZcePG8eyzzwb0Kcb+LiYmhpdfeYW4hEQ+ya2joLbT6JI0V1DbySe5dcQnJPKyifYK8dcAPgcMveDrtL7bTCM1NZWXX36JYLuVk9tW0t5QaXRJmpBSUn5sO2fzdjJp0iSefvppU53j5q8iIiJ46aWXGJKayurjdeRVdxhdkmaOV7Wz+ngdqalpvPjSS6baJc9fA/gAkCWEGCGECAIeA9YaXJPmkpKSeOWVl4kICyV/+ye01p298jf5MSklZ45soqpgHzNmzOCxxx4bNJup+4PQ0FCWLFlKxogM/pZXz5FzbUaXdN0On2tj7YkGMkZksHjJEkJDQ40uSVN+GcBSSjfwCvANkA98KqU8YWxV+oiLi+OVV14mJiaKgp2raKkpM7qkayK9XkoPbqDm9GHmzp3Lgw8+iEVdfu1zDoeD5194gexR2azLb+Tg2cAN4QNnW1mf30j2qFE8/8ILptyc3y9XQVytQFoFcSltbW288cZfqauvJ3vmA0Sn+O8Wet8nvV6KD6ynvuwEt956K7fffrvfnLk1WLndblasWMHJkye5NSuG6emBtdpmb1krm4qaGDt2rFmmsQJqFcSg0zuH9yJJSYkUfreGpqpio0saEOn1cnr/V9SXneCOO+7gjjvuUOHrB2w2G4sWLWLChAlsKmpi95kWo0sasN1nWthU1MSECRNYuHChGcL3klQA+5GwsLC+ncGSKdr9Oc1VJUaXdFm94buOhvJ87rzzTm699VajS1IuYLVaefLJJ5k4cSJbTjezt6zV6JKuaE9ZC1tONzNx4kSefPJJ03+GoALYz/R+kLKEpKQkCnevobm61OiSLqp/2qGh/CQ//vGPmT9/vtElKRdhtVp5/PHHz3fC+/w4hPeWtbK5qJkbbriBxx9/3PThCyqA/VJoaChLlywhKbF3OsLfVkdIKSk99M35aYcFCxYYXZJyGf2d8IQJE/i2qIlDFf73wdyhirbz0w5PPPHEoAhfUAHst8LCwliyZAlxsbEU7FpNe2O10SUBfet8c7dSW3qMBQsWqGmHANEfwjmjR7PhVKNfrRM+XtXOhlON5IwePSimHS6kAtiPhYeHs2TJYiLCwijY+SnO1nqjS6Iyfw9VhQeYOXMmd9xxh9HlKFfBarWycNEiRmRk8LcT9RTVGX/FXGFdJ2tPNpCRkcHCRYsGVfiCCmC/Fx0dzdKlSwi2Wzm1cxU9znbDaqktPX7+Crf7779frXYIQHa7nWeffZbU1FQ+y2vgXEu3YbWca+lmTV4DqampPPPss9jtg2tLTVABHBDi4+N5/vnn8fY4Kdi1Go+rx+c1tNScofTgBrKysnjkkUfURRYBzOFw8NxzzxMZGcUnuXU0dbp8XkNjp4tPcuuIjIziueeeN+VFFgOhXkUBIi0tjaeffprO5lqK9q5Fen13CkJnSx2Fuz8nKSnR9OsyB4uIiAief+EFpMXOR7l1OF0en43tdHn4OLcOrEE8u6h/tQAACxtJREFU/8ILptrb4WqpAA4gY8aM4f7776e5qpizeTt9Mqa720nhd2sIdQTz/PPPqy0lTSQxMZFnnn2WFqeHz/Pq8frgqlivlHyeV0+L08NPn3mGxMRE3cf0ZyqAA8ysWbOYNm0alaf20nD2lK5jSa+Xon1f0tPZxqJFi4iOjtZ1PMX3MjIyuP+BByhp6GJbcbPu420rbqakoYsHHnyQjIzAudxeLyqAA9ADDzzAsPR0Sg6sp7NFv5URFSd20VJdykMPPcjw4cN1G0cx1owZM5g2bRq7z7RySse9hE/VdrL7TCvTp09n+vTpuo0TSFQAByCbzcZPFy0iODiI03vX4vW4NR+jpaaMc/l7mDp1KtOmTdP88RX/8sADDzA0LY2v8htp6dLh+dTl5qv8RoampXH//fdr/viBSgVwgIqMjOTxxx6js6WO8txtmj62q7uT4v1fkZCQyH333afpYyv+yWaz8eRTT+EVVr7QeD7Y65V8kVePFFaefOop9SHuBVQAB7CcnBxuvvlmqk8forlau417Sg99g6fHyVNPPamOEhpE4uPjeeihhzjb3M2eM9rtGbGnrJWzzd08+NBDxMfHa/a4ZqACOMDdeeedJCQk9oamBuuDGysKaKwo5Pbbbyc1NfXK36CYyqRJkxg/fjw7Slto6Lj+9cENHS52lLYwYcIEJk+erEGF5qICOMDZ7XYeeeQndHe0cvbE9S1Nc/d0cebIJoYMGcLcuXM1qlAJJEIIHnjgAYKCgll3qpHrObBBSsm6/EaCgoLVvO8lqAA2gREjRjBjxgyqiw7R0VRzzY9zNm8nrq4OHnnkkUF3Tb7yd5GRkdxz772UN3VxrOraN+05VtVBeXMX99x7L5GRgXUih6+oADaJH//4x4Q4Qig/tvWauhZnawO1xUeYPn06aWlpOlSoBJKbbrqJoUPT2FbcQo/n6q+67PF42VrcwrChQ7npppt0qNAcVACbRGhoKLfd9iNaasqu6SSN8mPbsAcFcdttt+lQnRJohBDce+99tHW7r+kkjb1lrbR3u7n3vvvUpk2XoQLYRGbOnElcXDxn87ZfVRfc1nCOpsrTLJg/f1Bfl6/8dyNGjGD8+PHsLW+7qr0inC4Pe8vbGD9+vLqA5wpUAJuI1Wrl1lsX0NlcR/NVHOp57uQeQkJCmT17to7VKYHotttuo8ft5cBVHG+/v7yNHrdXvZsaABXAJjNp0iSiY2I4l79nQF1wR3MtzVXFzJ07R635VX4gJSWFsWPHsv9sO93uK88Fd7u9HKhoZ+zYsaSkpPigwsCmAthkrFYr8265hfaGStobq654/+rCg9iDgpg1a5YPqlMC0fz58+lyeTg+gBURx6s66HJ51DmBA6QC2IQmT55MUFAQtcVHLns/d08XDWfzmTxpktpmUrmk9PR00lJTOfz/t3d/v22ddRzH39/YSdpoSCNbaeOY/ki0uAvR6tFQlArE+CWKmDQJ7WITFyCEJiS4BMRUtH8AxMUYXOwCJMSPDQ1NmhBItBJDQrCiVNvadbRbu6VrsmW1mzmJm9Su4y8Xdhu3abrGaf30HH9eUiT3nOPoo8b55PHjc54zVbzuuyp35/BUkXS6n61bt7YwYXSpgGNow4YN7N69m3NnjlMpX1j1uNzEa1SXKoyNjbUwnUTR2N69nC2WmbzOLYwmZ0vkimXGxva2MFm0qYBjas+ePVSXKsxMnlj1mHPvHKO/v1+XHMuHymazdCaT172b8tH3ztPZ2Uk2m21hsmhTAcdUOp3mo729qy7afqFYoDgzrV8WuSHd3d3cOzzM/84uUq2unIaoVp3juUWGh4f1Ye4aqIBjysy4P5tl7uxpLpZWLrJ9qZh37drV6mgSUdlsloXyEqcLK6e1Jj64wEJ5SX/Q10gFHGMjIyO4O7PvT6zYV5h+i1QqRW9vb+uDSSRlMhkSiQQn84sr9p06t0gykSCTyQRIFl1BCtjMfmpmx83siJk9b2Z3Nux73MxOmtkJM/tKiHxxkU6n2bixh8L021dsr1wsUcxPsXPnzkDJJIq6u7vZsWMHb82s/CDu1EyJHQMDdHV1BUgWXaFGwAeAEXe/D3gDeBzAzIaBR4BPAPuAX5mZluVqUkdHB0ND9zD3/sQVpw/N587gXmVoaChgOomiTCZDrlhmvrR826L5UoV8sazRbxOCFLC7/93dL/0EXwIuLb/1EPCMu5fc/W3gJLAnRMa4GBgYoLxYpLSwvKDKfH6Sjo4E27ZtC5hMomhwcBCAycLyKPhM/bHucrx2t8Mc8LeBv9Uf9wNnGvZN1retYGaPmdm4mY3ncrlbHDG6Li2GUsxPXd42f+5d+vtTdHZ2BkolUZVKpUgmk1ecDzw1WyKZTJJKpQImi6ZbVsBmdtDMXrvG10MNx+wHKsDv1/r93f1pdx9199FNmzbdzOixsmXLFjo7OynOvAuAV6ssfDCt0a80JZlMkk6nmZpbvv3V1GyZdDqtm2024Zb9j7n7l66338y+BTwIfNGXJyingI83HJaub5MmJRIJtvT1MVuovUu4cL7AUuWiLr6QpqVSKQ5PvnP5c4Wz5y/yqRG9npoR5E+Wme0DfgR8zt0bT1J9AfiDmf0cSAH3AP8NEDFWUn19vPfyq0y/eZiFuTyAVqqSpvX19VGqVPl3/c7J5UpVr6cmhXrP8BTQDRyor5b/krt/192PmdmfgNepTU18z91vfCVouabBwUEOHTrExMsHgdrdMzZv3hw4lUTV9u3b6TDjH6cKAHSYaUqrSbaeu57eLkZHR318fDx0jNvawsLC5beMXV1d+gBO1qVUKlGp1E5kSiaTuvz4w13zvkyaNW8TPT09oSNIjHR3d6t0b4Lb4TQ0EZG2pAIWEQlEBSwiEogKWEQkEBWwiEggKmARkUBUwCIigaiARUQCUQGLiASiAhYRCUQFLCISSCwW4zGzHHA6dI4IuBvIhw4hsaLX1I3Ju/u+qzfGooDlxpjZuLuPhs4h8aHX1PpoCkJEJBAVsIhIICrg9vJ06AASO3pNrYPmgEVEAtEIWEQkEBWwiEggKuA2YGZLZvZKw9f20JkkmszMzex3Df9OmlnOzP4SMldU6aac7WHR3bOhQ0gsnAdGzGyjuy8CXwamAmeKLI2ARWSt/gp8rf74UeCPAbNEmgq4PWxsmH54PnQYibxngEfMbANwH3AocJ7I0hREe9AUhNw07n6k/jnCo9RGw9IkFbCINOMF4GfAA8BdYaNElwpYRJrxa6Dg7kfN7IHQYaJKBSwia+buk8CToXNEnS5FFhEJRGdBiIgEogIWEQlEBSwiEogKWEQkEBWwiEggKmBpO2a238yOmdmR+uXZnzazF83sRMMl28/Vj33SzJ646rm/DJde4kTnAUtbMbMx4EHgk+5eMrO7ga767m+4+/hVT/kJ8ErDEozfAe5vTVqJOxWwtJs+IO/uJQB3zwOY2TUPdvc5M9sPPFXf9IS7F1oRVOJPF2JIWzGzO4B/AT3AQeBZd/+nmb1IrZwX64cecPcfNjzvP8CSu3+mxZElxjQClrbi7kUz2w18Fvg88KyZ/bi++1pTEJhZmlo5V83sDncvti6xxJlGwNLWzOxh4JvAR4AfrFLAf6a2+te9QKJxZCyyHhoBS1sxswxQdfc365uywGlgZJXjvwp8DPgttWmLI2b2G3d/vRV5Jd40Apa2Up9++AVwJ1ABTgKPAc9x5RxwntrZEq8CD7v70frzvw58392/0OLoEkMqYBGRQHQhhohIICpgEZFAVMAiIoGogEVEAlEBi4gEogIWEQlEBSwiEsj/AavV+E49VHG3AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.catplot(x=\"SEX\", y=\"Age\", kind=\"violin\", inner=\"stick\", split=True, palette=\"pastel\", data=tot);" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAEGCAYAAABsLkJ6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3deXhc9X3v8fd3ZrTvqxdJlmRbtvCGwcLYLEnZik0SnCbmBtI29IaUpiVNmq7w9Jb2Jg/PU9repmmztBRoyHJDwJDGlxhIwCRAANsym3dblmRLsmTt+zqa7/1jjowiy9LYWs4s39fz6PHMmXNG3znWnM/M7/c7vyOqijHGmNjjcbsAY4wx7rAAMMaYGGUBYIwxMcoCwBhjYpQFgDHGxCif2wVcjNzcXC0pKXG7DGOMiRj79+9vVdW8yR6LqAAoKSmhsrLS7TKMMSZiiMipCz1mTUDGGBOjLACMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAGGNilAWAMcbEKAsAY4yJURYAxhgToyLqTGAztf+757Srv//TVy9x9fe7KZb3fSy/9khn3wCMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAGGNilAWAMcbEqJCGgYrIFuDrgBd4VFX/fsLjCcB3gQ1AG/ApVa0VkRxgB3AV8B1V/cK4bTYA3wGSgF3Al1RVZ/yKTEQb9gdo6BzgbPcgzT1DtPYM0TUwQvfgCN0DfgZHRukf9jMwMsrIqDIyGmDYH2A0oIyqMhpQAqoEAgT/VUUVxv6wgn9hv/5nNht/dYMjozN/EpEPbk74FwneFhFk3G2PCB6B7711iniv4PN6iPd6SIr3khTnJSneS3piHOlJPjKS4shNTSA/LYEF6YkUZCUR57XPgLFs2gAQES/wTeAWoB7YJyI7VfXwuNXuATpUdbmI3Ak8DHwKGAT+Bljj/Iz3beD3gT0EA2AL8PzMXo6JJF39I7xd18E7pzo40NBFTWsfdR0DjAbOPyKnJfhIS/SRnOAjKc5LYpyHxDgPaYk+fB4PcV7B63F+RJyDI3jGDpgCY4fTsQPoeDJxwUU6cbZ3RtvrJHd03IKxkAqGWfB+MOCC/y7KSMIfCDAyGmBoJEBPzwgDw6P0D4/SM+ind8h/3u/0eYQl2ckszUthTUEGVy7JYv2STNIT42b0WkzkCOUbwEagSlWrAUTkSWAbMD4AtgF/59zeAXxDRERV+4DXRWT5+CcUkUVAuqq+5dz/LvBxLACi3um2fp4/2MjzB5t4t64TAI9AWX4aqxdn8LHLF1Ock8LC9ETy0xPIS00gPSkOr2eGR+g5Fu4nQ/lHA3QP+mnpGaK5Z5CmrkFq2/qobumjqrmXl482oxoMwg1Lsti6dhFb1iykIDNpnl6BcUMoAVAA1I27Xw9cfaF1VNUvIl1ADtA6xXPWT3jOgslWFJF7gXsBliyxM/4iUSCg/OJ4M//xy2r21LQDsKYgnS/fvIKrSrJYV5RJaoKdlD6XfF4P2SnxZKfEs3Jh2nmPdw+O8F5dJ/tqO/jZoSa++txhvvrcYa4vy+UPPrSMa5fnIDP9mmTCTti/61T1EeARgIqKCusjiCCqygsHm/jaS8c5fraXxRmJ/NWWcj66bhFF2clul2fGSU+M4/qyPK4vy+NPb1lBTWsfz713hu++dYrfeWwPqxal8+e3ruDG8gVul2pmUSgB0AAUjbtf6CybbJ16EfEBGQQ7g6d6zsJpntNEmPHNIJ39w+x87wxHm3rIT0vgjg2FrCvMxOsRXjtxoS+G5lLNRRNUTmoCf3zDct6t6+TVEy189juVrCnI4GPrFpFm/QRRIZQA2AeUiUgpwYP0ncCnJ6yzE7gbeBPYDuyeakSPqjaKSLeIbCLYCfwZ4N8uoX4Thipr23nuQCOqytY1C7lmWW7Yt+Gbyfm8HipKslm/JJPXTrTyytFmqpp7uP3yAtYXZbpdnpmhaQPAadP/AvAiwWGgj6vqIRH5ClCpqjuBx4DviUgV0E4wJAAQkVogHYgXkY8Dv+mMIPojPhgG+jzWARzxAqo8f6CRX51sY1leCr91RSHZKfFul2Vmgc/j4YaV+axdnMEz79TzVGUdLT2D3HzZAusbiGAh9QGo6i6CQzXHL3tw3O1B4I4LbFtygeWVnD801ESoIf8oT+2r40hTD5uX5fCRtYvw2IEh6uSmJXDPdaX85N0zvHKshba+YT55ZaGdTxChwr4T2IS/YX+Ax1+vob5jgI+tW8TmZblul2TmkM/j4RNXFJCbmsCLh5roHfTze9eU4LMQiDj2P2ZmZDSg/HDvaeo7Brhr4xI7+McIEeHDK/LYvqGQ6tY+nt5fT8BO5I849g3AXDJV5b/fbeDY2R62rV/MmoIMt0sy8+zKJVn0Dvp54VATaYk+PrJ2kfUJRBALAHPJXj7azP5THdywMp+rS3PcLse45PqyXLoHR3jjZBsZScHzCUxksCYgc0mqmnvZfbSZK5dkcfNl+W6XY1wkIty2dhFrFqfz4qEm6tr73S7JhMgCwFy0geFRduyvIzc1gdsvX2xf+Q0eET5xZSHpiXE8VVnHkH8WZkc1c84CwFy0n7zXQO+Qn/9RUUi8z/6ETFBinJftFYW09w2z60CT2+WYENi711yU9+o6eb++ixvLF1CYZfP5mF+3NDeV68py2VfbztHGbrfLMdOwADAh6x/ys/O9MyzJTubDK6yjz0zulssWsCgjkR+/08DQbFwox8wZCwATspePNTM4MspvXVFgc/uYC/J5PXx8fQE9Q35ePdHidjlmChYAJiStPUPsqW7jqpJsFqQnul2OCXNF2cmsK8zgtROtdPYPu12OuQALABOS5w81Eef1cJMN+TQhunX1QgB+fvisy5WYC7EAMNOqbunlSGM3H16RZ/PAm5BlJcdz7fJc3qnrpL7Dzg0IRxYAZkoBVXYdbCQzKY5rl9s8P+bifHhFHinxXnYdaGKKS4QYl1gAmCkdb+rhTOcgN69aYFP+mouWGOflxvJ8atv6qG2zbwHhxt7RZkqvnmghMymOywvt6k/m0lSUZJMS7+XV4zYiKNxYAJgLOu18art2uV3S0Vy6OK+HzctyOHa2h6buQbfLMeNYAJgLevVEK0lxXipKstwuxUS4TaU5xHmF1+xbQFixADCTau4Z5EhjN5uWZpPg87pdjolwyQk+Kkqyea++084LCCMWAGZSr59oxesRu8KXmTXXOX9Lb5xsc7kSM8YCwJynd8jPO3WdbCjOIjXBrhlkZkdWSjzrCjPZW9vOoM0RFBYsAMx53jndwWhA2bTUrvJlZtfmpTkM+wO8X9/ldikGCwAzgaqyr7aDJdnJNuePmXWFWUksSE+g8lS726UYLADMBKfa+mntHeIqG/lj5oCIUFGcTX3HAI1dA26XE/MsAMyvqTzVToLPw5qCDLdLMVHqiqJMvB6hsrbD7VJingWAOWdwZJQDDV2sK8y0oZ9mziQn+Fi9OJ136joYGQ24XU5MswAw57xX38nIqFJRbM0/Zm5VFGczOBLg0Bm7bKSbLADMOZW1HSxMT6QwK8ntUkyUW5qXQlZyHJW11hnsJgsAA0BT9yANnQNsKM5CxOb9MXPLI0JFSTbVrX2099mZwW6xADAAvF/fiQDrCq3z18yPsRlmDzbYOQFuCSkARGSLiBwTkSoRuX+SxxNE5EfO43tEpGTcYw84y4+JyK3jln9ZRA6JyEER+aGI2KBzl6gqB+q7WJqXYlf8MvMmOyWewqwk3m/odLuUmDVtAIiIF/gmsBVYBdwlIqsmrHYP0KGqy4GvAQ87264C7gRWA1uAb4mIV0QKgC8CFaq6BvA66xkXNHYN0tY3zNoCm/PfzK+1BRmc6RykrXfI7VJiUijfADYCVapararDwJPAtgnrbAOecG7vAG6SYEPyNuBJVR1S1Rqgynk+AB+QJCI+IBk4M7OXYi7VgYYuPAKrF6e7XYqJMWud800OWDOQK0IJgAKgbtz9emfZpOuoqh/oAnIutK2qNgD/BJwGGoEuVf3ZZL9cRO4VkUoRqWxpsbnEZ5uq8n59J8vyUkmxid/MPMtMjmdJdrIFgEtc6QQWkSyC3w5KgcVAioj8zmTrquojqlqhqhV5eXnzWWZMaOgcoKN/5NwnMWPm29qCDBq7BmnpsWag+RZKADQARePuFzrLJl3HadLJANqm2PZmoEZVW1R1BHgWuOZSXoCZmQP1XXhFWL3YAsC4Y01BBgIcsM7geRdKAOwDykSkVETiCXbW7pywzk7gbuf2dmC3qqqz/E5nlFApUAbsJdj0s0lEkp2+gpuAIzN/OeZiqCoHGrpYnp9KUrxN/WDckZEUR3FOsk0R7YJpA8Bp0/8C8CLBg/RTqnpIRL4iIrc7qz0G5IhIFfCnwP3OtoeAp4DDwAvAfao6qqp7CHYWvw0ccOp4ZFZfmZlWfccAnQMjrLWx/8ZlawsyaO4ZotkuGj+vQur1U9VdwK4Jyx4cd3sQuOMC2z4EPDTJ8r8F/vZiijWz60hjNx6Byxba6B/jrlWLM/h/7zdypKmHfLsOxbyxM4Fj2NGmHopzUqz5x7guIymOxRmJHG20yeHmkwVAjOroH6ape5DyhWlul2IMAOWL0jnd3k/fkN/tUmKGBUCMGvukZc0/JlyUL0xDgWNne9wuJWZYAMSoo0095KbGk5uW4HYpxgCwODOJtESfNQPNIwuAGDQ0Mkp1ax/l9unfhBGPCOUL0zjR3Is/YFcKmw8WADHoRHMvowG19n8TdsoXpjPkD1DT2ud2KTHBAiAGHW3qJjHOQ3FOitulGPNrluWl4vMIRxutH2A+WADEmIAqR5t6WLEgDa/Hrvxlwku8z8Py/FSONnUTnEzAzCULgBhT395P//Cojf4xYat8YTod/SOctcnh5pwFQIw53tyLAGULUt0uxZhJrXT6pk7YcNA5ZwEQY06c7aEwK4nkeJv734SnjKQ48tMSqGrudbuUqGcBEEMGhkep7xhgeb6N/jHhrSw/lZrWPkZGbTjoXLIAiCFVLb0osMKaf0yYK1uQhj+g1Npw0DllARBDqpp7SPB5KMxKdrsUY6ZUkpOC1yOcsGagOWUBECNUlRPNvSzLS7Xhnybsxfs8lOQkWz/AHLMAiBFtvcN09o+wPN+af0xkKMtPo6l7kO7BEbdLiVoWADHiRHNwSF2ZBYCJEGMfVuxbwNyxAIgRJ5p7yU6JJyfVZv80kWFhRiIpCT47H2AOWQDEAH8gQHVLn336NxHFI0JZfipVzb0EbFqIOWEBEANOt/czPBqwADARpyw/lb7hURq77GLxc8ECIAacdKZ/WJpnAWAiyzLnQ8tJ6weYExYAMaC6pY+CrCQS4+zi7yaypCfGkZeWQHWrBcBcsACIckP+Ueo6+lmaa5/+TWRamptCbWs/owHrB5htFgBR7lRbPwGFZXl28RcTmZblpTI8GqC+o9/tUqKOBUCUq27pxStiV/8yEas0N/i3W23zAs06C4Aod7Klj6LsJOJ99l9tIlNKgo9FGYmcbLF+gNlmR4UoNjA8ypnOARv9YyLe0twUTrf12/TQs8wCIIrVtvWhwFJr/zcRbmleKv6AUtdu/QCzyQIgilW39OLzCEts+mcT4UpzUxCCTZpm9lgARLGTLX0U5yTj89p/s4lsiXFeCrKSqLZ+gFkV0pFBRLaIyDERqRKR+yd5PEFEfuQ8vkdESsY99oCz/JiI3DpueaaI7BCRoyJyREQ2z8YLMkG9Q36augdZZu3/JkoszU2lrqOfYb/1A8yWaQNARLzAN4GtwCrgLhFZNWG1e4AOVV0OfA142Nl2FXAnsBrYAnzLeT6ArwMvqGo5cDlwZOYvx4ypcYbMWQewiRbL8lIIaLBvy8yOUL4BbASqVLVaVYeBJ4FtE9bZBjzh3N4B3CQi4ix/UlWHVLUGqAI2ikgG8CHgMQBVHVbVzpm/HDOmuqWXeJ+Hgswkt0sxZlYU56TgkeDUJmZ2hBIABUDduPv1zrJJ11FVP9AF5EyxbSnQAvyXiLwjIo+KiA1VmUU1rX0UZyfb5R9N1Ih3rmddY/MCzRq3egd9wJXAt1X1CqAPOK9vAUBE7hWRShGpbGlpmc8aI1bfkJ/mnqFzZ1AaEy1Kc1No6BywfoBZEkoANABF4+4XOssmXUdEfEAG0DbFtvVAvarucZbvIBgI51HVR1S1QlUr8vLyQijXjLX/WwCYaFOaG+wHONVuzUCzIZQA2AeUiUipiMQT7NTdOWGdncDdzu3twG5VVWf5nc4ooVKgDNirqk1AnYisdLa5CTg8w9diHDVtfcR5hYIsa/830aU4OxmPfPAhx8yMb7oVVNUvIl8AXgS8wOOqekhEvgJUqupOgp253xORKqCdYEjgrPcUwYO7H7hPVUedp/5j4AdOqFQD/3OWX1vMqm3tY0l2Mj6Pjf830SUhzsvizCQLgFkybQAAqOouYNeEZQ+Ouz0I3HGBbR8CHppk+btAxcUUa6Y3MDxKU9cgN12W73YpxsyJ0pwU3qhuY2Q0QJyd5DgjtveizNj8P6V2ARgTpUpzUxgNKKdtXqAZswCIMjWtffg8QqG1/5soVZwTnBfImoFmzgIgytS09lGUnWxfjU3USor3sigj0QJgFthRIooMjgTn/7fhnybaleamUNfej9+uDzAjFgBR5NS59n8LABPdSnNT8AeU+o4Bt0uJaBYAUaSmtQ+vCEU2/7+JciXOh5wamxhuRiwAokhNax+FWXb9XxP9kuN9LExPpNb6AWbEjhRRon/YT0PnwLlPRsZEu5LcZE61WT/ATFgARIl3TncSUGv/N7GjJCeF4dEAh850u11KxLIAiBJ7atoRYEm2tf+b2DD2bXdvTbvLlUQuC4AosbemjcWZSSTGeadf2ZgokJ4YR05KPHssAC6ZBUAUGPKP8s7pTkpy7NO/iS2luSnsq20nEFC3S4lIFgBR4EB9F0P+gLX/m5hTkptC18AIx5t73C4lIlkARIGxr8DFORYAJraU5lg/wExYAESBvTXtrFiQSkpCSLN7GxM1MpPjWJyRaP0Al8gCIML5RwPsP9XBxtJst0sxZt6JCBtLs9lb007wIoTmYlgARLgjjT30DvnZWJrjdinGuGJjaQ4tPUPUttn1AS6WBUCE21PTBsDGEvsGYGLT2Lffvc57wYTOAiDC7alppzgnmYUZiW6XYowrluWlkJsaz55q6we4WBYAESwQUPbVtnO1tf+bGDbWD2AdwRfPAiCCHW/uobN/xNr/TczbWJJNQ+cA9R3WD3AxLAAi2NhXXvsGYGLd1UuDH4KsGejiWABEsD01bRRkJlFkE8CZGLdyQRoZSXHnBkWY0FgARChVZW9Nu43/NwbweISrSrLtjOCLZAEQoU629NHaO2zNP8Y4Ni3Npratn7Pdg26XEjEsACLUufH/FgDGAB+8F96qtmagUFkARKi9Ne3kpSXYDKDGOFYtSic1wWfNQBfBAiACqSp7qoPj/0XE7XKMCQs+r4eKkiw7H+AiWABEoNPt/TR1D1r7vzETbCzNpqq5l9beIbdLiQgWABFo7BPO2NhnY0zQ1c5JkfvsW0BILAAi0J7qdrJT4inLT3W7FGPCytqCDJLivNYMFKKQAkBEtojIMRGpEpH7J3k8QUR+5Dy+R0RKxj32gLP8mIjcOmE7r4i8IyLPzfSFxApV5a3qNjaWWPu/MRPF+zxsKM7izZM2EigU0waAiHiBbwJbgVXAXSKyasJq9wAdqroc+BrwsLPtKuBOYDWwBfiW83xjvgQcmemLiCV17QM0dA6weZk1/xgzmc3Lcjh2toc26weYVijfADYCVapararDwJPAtgnrbAOecG7vAG6S4MfTbcCTqjqkqjVAlfN8iEgh8BHg0Zm/jNgxNsbZAsCYyW0amxfImoGmFUoAFAB14+7XO8smXUdV/UAXkDPNtv8C/CUQmOqXi8i9IlIpIpUtLS0hlBvd3qxuIzfV2v+NuZB1hRkkx3utGSgErnQCi8hHgWZV3T/duqr6iKpWqGpFXl7ePFQXvlSVN0+2cfXSHGv/N+YC4rwerirJ5k07I3haoQRAA1A07n6hs2zSdUTEB2QAbVNsey1wu4jUEmxSulFEvn8J9ceU2rbg+P/NNvzTmCltXpZDVXMvzT02L9BUQgmAfUCZiJSKSDzBTt2dE9bZCdzt3N4O7FZVdZbf6YwSKgXKgL2q+oCqFqpqifN8u1X1d2bh9US1sa+01v5vzNTGPiS9ZdcHmNK0AeC06X8BeJHgiJ2nVPWQiHxFRG53VnsMyBGRKuBPgfudbQ8BTwGHgReA+1R1dPZfRmx4s7qN/LQEltr8P8ZMafXidNISfNYPMA1fKCup6i5g14RlD467PQjccYFtHwIemuK5fwH8IpQ6YtlY+/+1y63935jp+LweNpZm28yg07AzgSPEyZbg/CbW/m9MaDYvy6GmtY+mLusHuBALgAhh7f/GXJyx8wHerG51uZLwZQEQId6sbmNxRiJL7Pq/xoRk1aJ0MpLirB9gChYAESAQCLb/b16Wa+3/xoTI4xE2Lc3mV1VtBAclmoksACLAoTPddPSPcH1ZrtulGBNRrivLo6FzgNq2frdLCUsWABHgtargFBjXLrcAMOZiXO+8Z14/YdPITMYCIAK8dryV8oVp5KUluF2KMRGlOCeZwqwkXj1hHcGTsQAIcwPDo+w/1WHNP8ZcAhHh+rJc3jrZhn90ynknY5IFQJjbU9PG8GiA68tieyI8Yy7V9WV59Az5ea++0+1Swo4FQJh7/UQr8b7gWY3GmIt3zbIcROA1awY6jwVAmHu9qpWrSrJIjPNOv7Ix5jyZyfGsK8jgdQuA81gAhLHmnkGONvVw3XJr/jFmJq4ry+Wduk56BkfcLiWsWACEsV9VBT+xWAewMTNz3fI8RgNq00NPYAEQxl470Up2SjyrFqW7XYoxEe3K4kyS4rx2PsAEFgBhKhBQXjvRyjXLcvB4bPoHY2Yiwedl09JsOx9gAguAMHXoTDctPUPcsDLf7VKMiQq/sTKfmtY+alr73C4lbFgAhKndR5sRgd9YaR3AxsyGG8uDH6Z2H212uZLwYQEQpnYfa2Z9USY5qTb9gzGzoSg7mbL8VF6xADjHAiAMtfQM8V5dJzda848xs+rG8nz21LTRO+R3u5SwYAEQhn5xLPgJ5YZyCwBjZtMN5fmMjKqNBnJYAIShV441syA9gdWLbfinMbNpQ3EW6Yk+6wdwWACEmWF/gFePt3Jjeb5d/cuYWRbn9fChFXnsPtpCIGBXCbMACDOVte30Dvlt+Kcxc+TG8nxae4c4eKbL7VJcZwEQZnYfbSbe67GrfxkzRz68Ig8RGw4KFgBhRVXZfbSZTctySEnwuV2OMVEpJzWBK4oyefmIBYAFQBg5fraX6tY+brnMmn+MmUu3rFrIgYYu6jti+2LxFgBhZNeBRkTg1jUL3S7FmKh229rge+yFg00uV+IuC4Aw8vzBRq4qySY/LdHtUoyJasU5KaxenM6uA41ul+IqC4AwUdXcw/GzvXxk7SK3SzEmJty2dhFvn+6ksWvA7VJcYwEQJp4/EPwqusWaf4yZF1ud99rYey8WhRQAIrJFRI6JSJWI3D/J4wki8iPn8T0iUjLusQec5cdE5FZnWZGIvCIih0XkkIh8abZeUKTadbCJiuIsFqRb848x82FpXirlC9N4/mDsNgNNGwAi4gW+CWwFVgF3iciqCavdA3So6nLga8DDzrargDuB1cAW4FvO8/mBP1PVVcAm4L5JnjNm1LT2caSxm63W/GPMvLpt7SIqT3VwtnvQ7VJcEco3gI1AlapWq+ow8CSwbcI624AnnNs7gJskOI/BNuBJVR1S1RqgCtioqo2q+jaAqvYAR4CCmb+cyDTWEWXNP8bMr9vWLkQ1dkcDhRIABUDduPv1nH+wPreOqvqBLiAnlG2d5qIrgD2T/XIRuVdEKkWksqUlOmfwe/5gI+uLMinITHK7FGNiyvL8NMryU/lpjI4GcrUTWERSgWeAP1HV7snWUdVHVLVCVSvy8qLv6lhVzT0cbOjmo+us+ccYN3x03WL21bbT0Bl7o4FCCYAGoGjc/UJn2aTriIgPyADaptpWROIIHvx/oKrPXkrx0eDp/fV4PcK29THbAmaMqz5xZQGq8Oz+erdLmXehBMA+oExESkUknmCn7s4J6+wE7nZubwd2q6o6y+90RgmVAmXAXqd/4DHgiKr+82y8kEjkHw3w7NsN3LAyn7w0u/SjMW4oyk5m09JsdrxdT/CwFTumDQCnTf8LwIsEO2ufUtVDIvIVEbndWe0xIEdEqoA/Be53tj0EPAUcBl4A7lPVUeBa4HeBG0XkXefntll+bWHvtROttPQMsX1DodulGBPT7thQxKm2fvbVdrhdyrwKacpJVd0F7Jqw7MFxtweBOy6w7UPAQxOWvQ7E/NVOnt5fR3ZKPDfapR+NcdXWtQt58CcH2bG/jo2l2W6XM2/sTGCXdPQN89LhZj6+voB4n/03GOOm5HgfH1m3iJ++30j/cOxcMN6OPC7Z+d4ZhkcD3FFhzT/GhIM7KoroGx5lVwxNDWEB4JKn99expiCdyxbZhd+NCQcVxVmU5CSzY3/d9CtHCQsAF7xX18nBhm7u2FA0/crGmHkhItxRUcRb1e1UNfe4Xc68sABwwaOv15CW4OOTNvrHmLBy18YlJPg8PPZ6rdulzAsLgHnW0DnArgON3HX1ElLtur/GhJXslHg+cWUhz75dT1vvkNvlzDkLgHn2xBu1ANx9TYmrdRhjJnfPdSUM+QP8YM9pt0uZcxYA86h3yM8P95zmtrWLbOI3Y8LU8vw0bliZx3ffrGVwZNTtcuaUBcA8empfHT1Dfu65rtTtUowxU/jc9Utp7R1m53tn3C5lTlkAzJPRgPJfb9RQUZzF+qJMt8sxxkzhmmU5lC9M47HXaqJ6fiALgHny7Nv11LUP8Lnrl7pdijFmGiLC71+/lGNne3jxUPSeGGYBMA8GR0b52s+Pc3lhBreuXuB2OcaYEGxbv5iy/FT+4YVj+EcDbpczJywA5sH33jzFma5B/mprOcGZsI0x4c7n9fAXt66kurWPpyqj81oBFgBzrGtghG+8Uq25EA8AAAuTSURBVMWHVuRxzbJct8sxxlyEW1YtYENxFv/y0nEGhqNvRJAFwBz7j1+epGtghL/astLtUowxF0lEuH9rOc09Qzz+qxq3y5l1FgBz6EznAI//qoZt6xezenGG2+UYYy7BVSXZ3HxZPv/+i5O0RtnZwRYAc0RVeeDZAwjCn/+mffo3JpLdv7WcIX+Av/3JIbdLmVUWAHPk6cp6fnm8hfu3llOUnex2OcaYGVien8aXbi7jpwca+en7jW6XM2ssAOZAY9cAX33uMFeXZvO7m4rdLscYMwv+4ENLWVuQwYM/ORg1E8VZAMwyVeX+Zw7gDyj/uP1yPB4b9mlMNPB5PfzTHZfTM+jnwZ3R0RRkATDLHnu95lzTz5Ica/oxJpqsXOg0Bb3fyA/3Rv5soRYAs+ilw2d5aNcRblu70Jp+jIlSf/ChpXx4RR5/898HeaOq1e1yZsQCYJYcOtPFF598h3UFGfyfO9Zb048xUcrn9fBvn76CpXkpfP77+znZ0ut2SZfMAmAWNHYN8LknKslIiuM/P1NBUrzX7ZKMMXMoPTGOx+6+ijivh89+Z1/Enh9gATBDVc29bP/2m/QM+nn07gry0xPdLskYMw+KspN55DMVnO0eZPu336Cuvd/tki6aBcAMvH26g+3//gZD/gBP3rvJzvY1JsZsKM7iB5/bREf/CJ/49hscOtPldkkXxQLgEqgqP3m3gU//51tkJMXxzB9uZk2BHfyNiUUbirPY8fnN+DzCnf/xFi8cjJzrB1gAXKS23iH+6Adv86Un32XVonR2fP4ainNS3C7LGOOisgVpPPOH11Ccm8znv7+fL//oXbr6R9wua1o+twuIFCOjAZ59u55/eOEYPYN+7t9azu9fvxSvjfYxxgCLM5P48R9dyzd2V/HNV6p442Qr928t52PrFuPzhudnbQuAaQz5R3lmfwPf+kUV9R0DXF6UyT98ch0rF6a5XZoxJszEeT18+ZYV3LJqAX+x432+/KP3+NeXq7jvhuVsW7+YuDALAguASYwGlD01bex89wy7DjTSPejn8qJMvrJtNTeszLerehljprSmIIOf/vF1/OxwE19/uYo/f/o9HvrpYT6ybhG3X15ARXFWWJwrFFIAiMgW4OuAF3hUVf9+wuMJwHeBDUAb8ClVrXUeewC4BxgFvqiqL4bynPOprXeIE829vFvXyd6advbVttMz6Ccl3stvrl7IJ68s5NrlOXbgN8aEzOMRtqxZxK2rF/KLYy08+04DO/bX8/23TpORFMdVJdlcXZrN5UWZlOWnkpUSP+81ThsAIuIFvgncAtQD+0Rkp6oeHrfaPUCHqi4XkTuBh4FPicgq4E5gNbAYeElEVjjbTPecs0JVefNkG10DI3QOjNA1MEJz9xBN3QM0dQ1S29ZPe9/wufWX5aXw0XWLuW55LjeW59tJXcaYGRERbijP54byfPqG/Lx05CxvVLWxp6aNl46cPbdebmo8xTkpLMxIZGF6InlpCWQmxZGZHEdWcjxXL82Z9dpC+QawEahS1WrnxTwJbAPGH6y3AX/n3N4BfEOCH5e3AU+q6hBQIyJVzvMRwnPOChHhs0/sY3AkcG5ZcryXRRmJLMxI5NbVC1ien0ZZfiqXLUonLy1htkswxhgAUhJ8bFtfwLb1BQA0dw9yuLGbquZeTpztpa6jnyNnutl9pJmBkQ+uQZybmkDl/7p51usJJQAKgLpx9+uBqy+0jqr6RaQLyHGWvzVh2wLn9nTPCYCI3Avc69ztFZFjIdQ8rSOXtlkuEI6zP4VrXWC1XYpwrQvCsLbf/uBm2NXmmHFdpwD5m0ve/IIzU4Z9J7CqPgI84nYdACJSqaoVbtcxUbjWBVbbpQjXusBquxThWheEdiJYA1A07n6hs2zSdUTEB2QQ7Ay+0LahPKcxxpg5FEoA7APKRKRUROIJdurunLDOTuBu5/Z2YLeqqrP8ThFJEJFSoAzYG+JzGmOMmUPTNgE5bfpfAF4kOGTzcVU9JCJfASpVdSfwGPA9p5O3neABHWe9pwh27vqB+1R1FGCy55z9lzfrwqIpahLhWhdYbZciXOsCq+1ShGtdSPCDujHGmFgTXuclG2OMmTcWAMYYE6MsAKYhIv8oIkdF5H0R+bGIZI577AERqRKRYyJyq0v1bXF+f5WI3O9GDU4dRSLyiogcFpFDIvIlZ3m2iPxcRE44/2a5WKNXRN4Rkeec+6UissfZdz9yBiS4UVemiOxw/s6OiMjmcNhvIvJl5//yoIj8UEQS3dpnIvK4iDSLyMFxyybdRxL0r06N74vIlS7UFtbHjTEWANP7ObBGVdcBx4EHACZMc7EF+JYzbca8GTdNx1ZgFXCXU5cb/MCfqeoqYBNwn1PL/cDLqloGvOzcd8uX+PVzAB8Gvqaqy4EOglOauOHrwAuqWg5cTrBGV/ebiBQAXwQqVHUNwcEaY9O8uLHPvkPwfTbehfbRVoIjDssInkT6bRdqC9vjxngWANNQ1Z+pqt+5+xbBcxZg3DQXqloDjJ/mYr6cm6ZDVYeBsSk15p2qNqrq287tHoIHsQKnniec1Z4APu5GfSJSCHwEeNS5L8CNBKcuca02EckAPkRwJB2qOqyqnYTHfvMBSc65PclAIy7tM1V9leAIw/EutI+2Ad/VoLeATBFZNJ+1hflx4xwLgIvzWeB55/ZkU2QUnLfF3AqHGs4jIiXAFcAeYIGqNjoPNQELXCrrX4C/BMYmhcoBOse9Sd3ad6VAC/BfTvPUoyKSgsv7TVUbgH8CThM88HcB+wmPfTbmQvso3N4X4XbcOMcCABCRl5x2zok/28at89cEmzl+4F6l4U9EUoFngD9R1e7xjzknB877uGMR+SjQrKr75/t3h8AHXAl8W1WvAPqY0Nzjxn5z2tO3EQyoxUAK5zdzhA23/ramE+7HjbCfC2g+qOqU0+yJyO8BHwVu0g9OnAiH6SzCoYZzRCSO4MH/B6r6rLP4rIgsUtVG52t4swulXQvcLiK3AYlAOsF290wR8TmfaN3ad/VAvaruce7vIBgAbu+3m4EaVW0BEJFnCe7HcNhnYy60j8LifRHGx41z7BvANCR44Zq/BG5X1f5xD11omov5FDZTajht6o8BR1T1n8c9NH6akLuBn8x3bar6gKoWqmoJwX20W1V/G3iF4NQlbtbWBNSJyEpn0U0Ez5x3e7+dBjaJSLLzfztWl+v7bJwL7aOdwGec0UCbgK5xTUXzIsyPGx9QVfuZ4odgJ00d8K7z8+/jHvtr4CRwDNjqUn23ERxlcBL4axf303UEv4K/P25f3Uawrf1l4ATwEpDt8v/nbwDPObeXEnzzVQFPAwku1bQeqHT23X8DWeGw34D/DRwFDgLfAxLc2mfADwn2RYwQ/NZ0z4X2ESAER8edBA4QHMk037WF9XFj7MemgjDGmBhlTUDGGBOjLACMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAmBCIyMdFREWk3O1ajJktFgDGhOYu4HXnX2OiggWAMdNw5je6juAJPnc6yzwi8i1nzvefi8guEdnuPLZBRH4pIvtF5MW5nInSmJmwADBmetsIztd/HGgTkQ3AJ4ASgtdh+F1gM5ybD+nfgO2qugF4HHjIjaKNmY5NBmfM9O4iOHkcBK+5cBfB987TqhoAmkTkFefxlcAa4OfBKXTwEpwmwJiwYwFgzBREJJvgRVDWiogSPKAr8OMLbQIcUtXN81SiMZfMmoCMmdp24HuqWqyqJapaBNQQvALUJ52+gAUEJ5mD4ARfeSJyrklIRFa7Ubgx07EAMGZqd3H+p/1ngIUEZ348DHwfeJvgtMPDBEPjYRF5j+BMkNfMX7nGhM5mAzXmEolIqqr2ikgOwSmSr9Xg/P7GRATrAzDm0j0nIplAPPBVO/ibSGPfAIwxJkZZH4AxxsQoCwBjjIlRFgDGGBOjLACMMSZGWQAYY0yM+v8o85YVwHpvVAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Project/Age_Industry.csv b/Project/Age_Industry.csv new file mode 100644 index 0000000..61b7740 --- /dev/null +++ b/Project/Age_Industry.csv @@ -0,0 +1,96049 @@ +GEO;SEX;CAS;POB;OCC;IND;AGE;TIME;VALUE;FLAGS;FOOTNOTES +Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;553484;; +Belgium;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;314136;; +Belgium;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;529957;; +Belgium;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;899599;; +Belgium;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;173933;; +Belgium;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;912815;; +Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;2027;; +Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;10266;; +Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;7651;; +Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;1184;; +Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;53;; +Belgium;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;17;; +Belgium;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;161;; +Belgium;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;83;; +Belgium;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;2;; +Belgium;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;20851;; +Belgium;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;79267;; +Belgium;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;30248;; +Belgium;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;507;; +Belgium;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;6;; +Belgium;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1842;; +Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2993;; +Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;657;; +Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;805;; +Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3108;; +Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;891;; +Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;12;; +Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;4477;; +Belgium;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;16597;; +Belgium;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;6990;; +Belgium;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;379;; +Belgium;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;5;; +Belgium;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;73435;; +Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;165448;; +Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;65845;; +Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2640;; +Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;34;; +Belgium;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;8494;; +Belgium;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;28773;; +Belgium;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;11538;; +Belgium;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;167;; +Belgium;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;2;; +Belgium;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;24636;; +Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;42785;; +Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;19516;; +Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;1159;; +Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;17;; +Belgium;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;7163;; +Belgium;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;21105;; +Belgium;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;6337;; +Belgium;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;97;; +Belgium;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;1;; +Belgium;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;11276;; +Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;43839;; +Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;19116;; +Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;336;; +Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;6;; +Belgium;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;2232;; +Belgium;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;7608;; +Belgium;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;4605;; +Belgium;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;455;; +Belgium;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;6;; +Belgium;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;24210;; +Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;57650;; +Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;18902;; +Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;800;; +Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;10;; +Belgium;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;61357;; +Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;116622;; +Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;36974;; +Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;725;; +Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;2;; +Belgium;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;41804;; +Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;155845;; +Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;90451;; +Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;510;; +Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;4;; +Belgium;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;53163;; +Belgium;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;144267;; +Belgium;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;70161;; +Belgium;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;391;; +Belgium;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;81743;; +Belgium;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;226023;; +Belgium;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;101573;; +Belgium;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;1421;; +Belgium;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;7;; +Belgium;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;4958;; +Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;11332;; +Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;4950;; +Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;231;; +Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Belgium;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;21287;; +Belgium;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;42248;; +Belgium;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;18190;; +Belgium;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;1370;; +Belgium;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;19;; +Belgium;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;264;; +Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1188;; +Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1035;; +Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;128;; +Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;2;; +Belgium;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;160;; +Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;848;; +Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;469;; +Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;19;; +Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;6317;; +Belgium;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;29193;; +Belgium;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;26324;; +Belgium;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;95;; +Belgium;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;3;; +Belgium;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;526527;; +Belgium;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;187458;; +Belgium;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;369495;; +Belgium;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;690939;; +Belgium;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;73649;; +Belgium;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;954482;; +Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;5974;; +Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;20438;; +Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;13996;; +Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;2896;; +Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;111;; +Belgium;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;413;; +Belgium;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;1610;; +Belgium;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;843;; +Belgium;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;35;; +Belgium;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;67502;; +Belgium;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;236852;; +Belgium;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;104206;; +Belgium;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;2312;; +Belgium;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;16;; +Belgium;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2900;; +Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;8382;; +Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4541;; +Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;11;; +Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3201;; +Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;13277;; +Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;5442;; +Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;83;; +Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;73319;; +Belgium;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;152019;; +Belgium;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;64584;; +Belgium;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;2785;; +Belgium;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;19;; +Belgium;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;75979;; +Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;195625;; +Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;88228;; +Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;6352;; +Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;84;; +Belgium;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;26161;; +Belgium;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;98468;; +Belgium;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;66360;; +Belgium;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;1944;; +Belgium;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;6;; +Belgium;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;27880;; +Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;47789;; +Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;17727;; +Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;1020;; +Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;10;; +Belgium;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;16596;; +Belgium;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;49447;; +Belgium;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;17900;; +Belgium;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;328;; +Belgium;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;2;; +Belgium;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;9103;; +Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;39538;; +Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;25092;; +Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;765;; +Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;11;; +Belgium;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;2199;; +Belgium;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;8161;; +Belgium;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;5714;; +Belgium;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;747;; +Belgium;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;16;; +Belgium;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;24418;; +Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;68293;; +Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;30109;; +Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;2871;; +Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;38;; +Belgium;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;71320;; +Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;103077;; +Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;31218;; +Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;1281;; +Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;10;; +Belgium;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;32391;; +Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;133334;; +Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;90142;; +Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;1797;; +Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;38;; +Belgium;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;20165;; +Belgium;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;57601;; +Belgium;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;41633;; +Belgium;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;794;; +Belgium;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;3;; +Belgium;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;19031;; +Belgium;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;61864;; +Belgium;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;38667;; +Belgium;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;2629;; +Belgium;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;43;; +Belgium;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;7049;; +Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;15061;; +Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;7291;; +Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;681;; +Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;8;; +Belgium;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;7120;; +Belgium;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;21939;; +Belgium;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;12657;; +Belgium;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;1950;; +Belgium;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;40;; +Belgium;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;109;; +Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;561;; +Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;457;; +Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;124;; +Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;7;; +Belgium;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;86;; +Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;671;; +Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;510;; +Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;11;; +Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;1;; +Belgium;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Belgium;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;8039;; +Belgium;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;39435;; +Belgium;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;25200;; +Belgium;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;373;; +Belgium;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;2;; +Belgium;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;386073;; +Bulgaria;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;211765;; +Bulgaria;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;394630;; +Bulgaria;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;719844;; +Bulgaria;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;70955;; +Bulgaria;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;473554;; +Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;4;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;3;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;3;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;6;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;9;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;3;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;8;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;4;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;3;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;42;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;152;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;6;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;149;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;370;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;46;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1235;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;2553;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;227;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;15;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;18;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;3;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;4;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;21;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;7;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;5;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;4;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;74;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;238;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;10;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;20;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;39;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;5;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;9;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;:;c; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;147;; +Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;915;; +Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;477;; +Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;49;; +Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;9;; +Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;136;; +Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;88;; +Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;801;; +Bulgaria;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;6705;; +Bulgaria;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;3359;; +Bulgaria;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;146;; +Bulgaria;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;22;; +Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;313;; +Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;191;; +Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;27;; +Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;230;; +Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;154;; +Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;364;; +Bulgaria;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;1930;; +Bulgaria;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;1050;; +Bulgaria;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;57;; +Bulgaria;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3421;; +Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;18753;; +Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7701;; +Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;652;; +Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;343;; +Bulgaria;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;2268;; +Bulgaria;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;1026;; +Bulgaria;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;40;; +Bulgaria;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;1061;; +Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;4201;; +Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;1615;; +Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;79;; +Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;596;; +Bulgaria;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;2091;; +Bulgaria;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;521;; +Bulgaria;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;33;; +Bulgaria;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;571;; +Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;3468;; +Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;954;; +Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;34;; +Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;253;; +Bulgaria;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;1521;; +Bulgaria;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;715;; +Bulgaria;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;45;; +Bulgaria;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;631;; +Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;4516;; +Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;2226;; +Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;96;; +Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;303;; +Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;1348;; +Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;620;; +Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;42;; +Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;114;; +Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3487;; +Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2481;; +Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;55;; +Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;96;; +Bulgaria;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;1927;; +Bulgaria;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;2038;; +Bulgaria;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;68;; +Bulgaria;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;86;; +Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;1691;; +Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;1642;; +Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;96;; +Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;213;; +Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;715;; +Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;310;; +Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;28;; +Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;314;; +Bulgaria;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;1773;; +Bulgaria;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;974;; +Bulgaria;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;141;; +Bulgaria;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;19;; +Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;6;; +Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;3;; +Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;35;; +Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;13;; +Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;12;; +Bulgaria;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;80;; +Bulgaria;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;31;; +Bulgaria;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;272;; +Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1326;; +Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;882;; +Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;50;; +Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;69;; +Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;303;; +Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;220;; +Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;7;; +Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;2004;; +Bulgaria;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;7944;; +Bulgaria;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;4288;; +Bulgaria;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;102;; +Bulgaria;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;196;; +Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1092;; +Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;531;; +Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;111;; +Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;539;; +Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;296;; +Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;8;; +Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;899;; +Bulgaria;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;2657;; +Bulgaria;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;1644;; +Bulgaria;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;76;; +Bulgaria;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3094;; +Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8959;; +Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3979;; +Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;465;; +Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;401;; +Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1817;; +Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;1158;; +Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;28;; +Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;661;; +Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;1290;; +Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;653;; +Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;23;; +Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;3697;; +Bulgaria;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;5655;; +Bulgaria;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;1663;; +Bulgaria;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;77;; +Bulgaria;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;2135;; +Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;5764;; +Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;1895;; +Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;79;; +Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;308;; +Bulgaria;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;1066;; +Bulgaria;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;601;; +Bulgaria;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;20;; +Bulgaria;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;4654;; +Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;14298;; +Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;7869;; +Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;465;; +Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;4;; +Bulgaria;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;729;; +Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;1834;; +Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;894;; +Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;73;; +Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;3134;; +Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;21927;; +Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;13016;; +Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;234;; +Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;4310;; +Bulgaria;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;45965;; +Bulgaria;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;35099;; +Bulgaria;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;921;; +Bulgaria;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;5;; +Bulgaria;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;3585;; +Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;27493;; +Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;25565;; +Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;1915;; +Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;4;; +Bulgaria;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;954;; +Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;2856;; +Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;2007;; +Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;131;; +Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;3;; +Bulgaria;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;875;; +Bulgaria;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;2982;; +Bulgaria;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;2047;; +Bulgaria;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;171;; +Bulgaria;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4;; +Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;7;; +Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;9;; +Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;28;; +Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;132;; +Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;71;; +Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;10;; +Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;57;; +Bulgaria;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;275;; +Bulgaria;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;143;; +Bulgaria;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;6;; +Bulgaria;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;118;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;409;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;283;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;13;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;35;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;349;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;152;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;2508;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;8876;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;3467;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;72;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;144;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1255;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;603;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;100;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;380;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;293;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;695;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;1454;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;1096;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;40;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3321;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;6813;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2228;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;184;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;617;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;1860;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;826;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;5;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;418;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;763;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;356;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;8;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;1763;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;2347;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;726;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;18;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;3259;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;5917;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;1448;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;55;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;403;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;991;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;511;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;12;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;2283;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;3412;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;1563;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;57;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;761;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;928;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;359;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;13;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1977;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;8873;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;5417;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;65;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;233;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;783;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;641;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;19;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;705;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;3222;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;2640;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;152;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;518;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;1117;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;594;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;28;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;447;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;1153;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;623;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;39;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;7;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;20;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;58;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;28;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;20;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;47;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;22;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;510;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;1821;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;1699;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;64;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;97;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;496;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;375;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;11;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;3805;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;12595;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;6361;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;139;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;196;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1039;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;663;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;243;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1393;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1104;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;13;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;2473;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;4922;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;2216;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;77;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;8798;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;17365;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5011;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;156;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;2260;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;9860;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;6752;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;77;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;3000;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;3541;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;1312;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;29;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;2812;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;3356;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;1074;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;46;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;5025;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;7583;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;2420;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;77;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;979;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;1896;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;1011;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;31;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;4354;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;7591;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;3120;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;124;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;2713;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;4435;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;1926;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;111;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2167;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;13125;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;8470;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;102;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;824;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;4470;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;4398;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;85;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;837;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;3062;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;2345;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;85;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;2515;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;2220;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;1096;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;70;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;1290;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;2767;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;1780;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;123;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;3;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;10;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;34;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;16;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;31;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;160;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;103;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;9;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;107;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;271;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;144;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;281;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;975;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;691;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;28;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;38;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;183;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;153;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;4180;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;10119;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;4190;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;124;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;74;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;240;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;156;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;47;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;297;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;232;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;961;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;1722;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;766;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;24;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;51028;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;98626;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;33438;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2014;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;15;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1387;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;4300;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;2624;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;57;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;24414;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;28187;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;10661;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;262;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;1547;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;1542;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;407;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;26;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;905;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;1329;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;467;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;15;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;567;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;987;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;568;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;21;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;1099;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;2520;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;1500;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;41;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;1645;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;3709;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;1489;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;76;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1225;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;7760;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;6427;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;124;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;723;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;6928;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;7184;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;184;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;1120;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;11466;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;12553;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;306;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;5;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;1876;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;1967;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;1232;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;52;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;3899;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;8853;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;3399;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;274;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;89;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;455;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;377;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;41;; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;10;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;72;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;48;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;272;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;562;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;259;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;10;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;4259;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;16946;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;12169;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;625;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;21;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;5;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;7;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;8;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;137;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;552;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;285;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;11;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;3;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;5;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;43;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;23;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;9;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;21;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;17;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;64;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;225;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;118;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;4;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;14;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;3;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;22;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;66;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;44;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;4;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;7;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;4;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;14;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;7;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;22;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;104;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;125;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;30;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;149;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;118;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;3;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;27;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;128;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;122;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;4;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;44;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;18;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;13;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;9;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;23;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;18;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;6;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;31;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;19;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;19;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;98;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;86;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;19;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;11;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;18;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;35;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;38;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;56;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;319;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;204;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;20;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;240;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;122;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;12926;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;57235;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;23953;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;360;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;4;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;21;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;384;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;160;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;17;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;128;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;84;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;238;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;963;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;562;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;33;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;695;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2807;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1014;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;24;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;35;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;221;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;156;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;276;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;809;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;337;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;6;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;74;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;280;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;140;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;8;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;3;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;19;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;8;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;14;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;77;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;85;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;3;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;168;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;529;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;224;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;17;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;63;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;188;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;84;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;23;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;205;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;160;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;14;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;127;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;151;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;3;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;22;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;97;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;115;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;7;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;33;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;184;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;101;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;8;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;245;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;1393;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;567;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;52;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;20;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;54;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;41;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;7;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;5;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;29;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;130;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;78;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;34;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;135;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;61;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;23;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;611;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;382;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;11;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;12220;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;48168;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;18922;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;219;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;6;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;35;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;433;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;201;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;22;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;117;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;55;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;53;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;262;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;228;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;11;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;468;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1504;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;534;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;5;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;121;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;1213;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;716;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;16;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;81;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;179;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;82;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;31;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;90;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;47;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;3;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;6;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;12;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;4;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;9;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;52;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;53;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;61;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;171;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;62;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;6;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;71;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;199;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;73;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;12;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;67;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;78;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;6;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;46;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;80;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;10;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;125;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;94;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;19;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;44;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;22;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;84;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;387;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;226;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;15;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;13;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;10;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;3;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;21;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;93;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;54;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;1581;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;5912;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;3858;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;157;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;11;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;47;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;531;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;448;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;9;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;7772;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;27960;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;14878;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;318;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;38;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;483;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;443;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;639;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3711;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2137;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;21;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;452;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;1694;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;1209;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;69;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3057;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8151;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4681;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;289;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;334;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;1908;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;1685;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;58;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;2035;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;7165;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;5217;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;225;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;80;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;307;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;298;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;30;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;91;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;311;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;443;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;70;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;89;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;552;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;562;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;37;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;227;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;853;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;905;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;84;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1027;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;4108;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;2890;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;131;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1693;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;8503;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;7419;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;118;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;348;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;5388;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;7541;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;176;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;294;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;2629;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;3192;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;88;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;139;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;595;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;826;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;69;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;456;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;1741;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;1421;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;127;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;153;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;507;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;306;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;33;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;4;; +Bulgaria;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;13;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;67;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;65;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;66;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;275;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;176;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;350;; +Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;502;; +Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;239;; +Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;13;; +Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;6;; +Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;17;; +Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;7;; +Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;1257;; +Bulgaria;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;2482;; +Bulgaria;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;677;; +Bulgaria;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;17;; +Bulgaria;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;13;; +Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;23;; +Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;12;; +Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;52;; +Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;160;; +Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;60;; +Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;227;; +Bulgaria;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;291;; +Bulgaria;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;104;; +Bulgaria;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2017;; +Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2377;; +Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;705;; +Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;37;; +Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;134;; +Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;249;; +Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;122;; +Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;1661;; +Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;1164;; +Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;416;; +Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;20;; +Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;175;; +Bulgaria;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;180;; +Bulgaria;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;43;; +Bulgaria;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;c; +Bulgaria;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;160;; +Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;193;; +Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;44;; +Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;5;; +Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;85;; +Bulgaria;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;139;; +Bulgaria;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;71;; +Bulgaria;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;4;; +Bulgaria;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;267;; +Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;463;; +Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;164;; +Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;259;; +Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;284;; +Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;111;; +Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;8;; +Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;115;; +Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;455;; +Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;217;; +Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;17;; +Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;99;; +Bulgaria;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;373;; +Bulgaria;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;283;; +Bulgaria;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;16;; +Bulgaria;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;101;; +Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;549;; +Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;338;; +Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;14;; +Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;241;; +Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;186;; +Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;40;; +Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;7;; +Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;214;; +Bulgaria;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;365;; +Bulgaria;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;116;; +Bulgaria;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;11;; +Bulgaria;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;12;; +Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;10;; +Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;10;; +Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;2977;; +Bulgaria;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;5846;; +Bulgaria;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;3410;; +Bulgaria;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;179;; +Bulgaria;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;c; +Bulgaria;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;376698;; +Bulgaria;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;210168;; +Bulgaria;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;301567;; +Bulgaria;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;487572;; +Bulgaria;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;36240;; +Bulgaria;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;501718;; +Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;18;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;9;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;5;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;16;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;44;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;15;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;19;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;31;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;11;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;30;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;38;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;11;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;46;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;140;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;21;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;16;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;8;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;9;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;4;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;27;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;11;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;5;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;5;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;6;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;255;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;886;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;60;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;3;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;685;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;3236;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;369;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;10;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;7012;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;18532;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;1409;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;57;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;34;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;308;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;57;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;54;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;12;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;35;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;114;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;15;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;367;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;1440;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;109;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;8;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;133;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;482;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;34;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;31;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;134;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;32;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;337;; +Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;2903;; +Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;1952;; +Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;326;; +Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;27;; +Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;609;; +Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;439;; +Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;44;; +Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;1539;; +Bulgaria;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;14949;; +Bulgaria;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;9998;; +Bulgaria;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;898;; +Bulgaria;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;60;; +Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1086;; +Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;817;; +Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;36;; +Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;41;; +Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;605;; +Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;549;; +Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;24;; +Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;1160;; +Bulgaria;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;8263;; +Bulgaria;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;5472;; +Bulgaria;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;490;; +Bulgaria;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4411;; +Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;32052;; +Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;13282;; +Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1156;; +Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Bulgaria;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;618;; +Bulgaria;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;5627;; +Bulgaria;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;3138;; +Bulgaria;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;158;; +Bulgaria;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;1040;; +Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;6209;; +Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;2852;; +Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;202;; +Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;841;; +Bulgaria;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;3605;; +Bulgaria;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;960;; +Bulgaria;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;81;; +Bulgaria;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;405;; +Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;3167;; +Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;925;; +Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;64;; +Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;288;; +Bulgaria;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;2027;; +Bulgaria;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;1197;; +Bulgaria;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;131;; +Bulgaria;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;677;; +Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;4335;; +Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;2527;; +Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;341;; +Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;336;; +Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;1852;; +Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;1161;; +Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;134;; +Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;124;; +Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3518;; +Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3385;; +Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;325;; +Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;67;; +Bulgaria;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;814;; +Bulgaria;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;1496;; +Bulgaria;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;162;; +Bulgaria;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;36;; +Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;654;; +Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;869;; +Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;110;; +Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;261;; +Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1312;; +Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;727;; +Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;84;; +Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;300;; +Bulgaria;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;2107;; +Bulgaria;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;1410;; +Bulgaria;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;292;; +Bulgaria;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;7;; +Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;26;; +Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;19;; +Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;7;; +Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;29;; +Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;15;; +Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;34;; +Bulgaria;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;123;; +Bulgaria;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;67;; +Bulgaria;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;285;; +Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1104;; +Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;672;; +Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;89;; +Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;81;; +Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;369;; +Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;222;; +Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;22;; +Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;2020;; +Bulgaria;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;6294;; +Bulgaria;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;3287;; +Bulgaria;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;221;; +Bulgaria;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;317;; +Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1596;; +Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;851;; +Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;24;; +Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;60;; +Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;326;; +Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;255;; +Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;14;; +Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;978;; +Bulgaria;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;2501;; +Bulgaria;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;1655;; +Bulgaria;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;221;; +Bulgaria;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2116;; +Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5227;; +Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1588;; +Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;192;; +Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;389;; +Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1746;; +Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;1190;; +Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;64;; +Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;3;; +Bulgaria;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;364;; +Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;751;; +Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;288;; +Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;11;; +Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;6393;; +Bulgaria;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;7597;; +Bulgaria;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;1419;; +Bulgaria;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;91;; +Bulgaria;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;1306;; +Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;2606;; +Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;838;; +Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;73;; +Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;3;; +Bulgaria;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;167;; +Bulgaria;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;515;; +Bulgaria;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;258;; +Bulgaria;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;27;; +Bulgaria;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;3247;; +Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;8918;; +Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;5007;; +Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;791;; +Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;8;; +Bulgaria;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;566;; +Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;1434;; +Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;683;; +Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;81;; +Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1459;; +Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;8948;; +Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;5472;; +Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;277;; +Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;4;; +Bulgaria;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;1296;; +Bulgaria;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;8334;; +Bulgaria;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;10037;; +Bulgaria;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;1173;; +Bulgaria;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;3;; +Bulgaria;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;1065;; +Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;7489;; +Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;5946;; +Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;1324;; +Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;13;; +Bulgaria;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;931;; +Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;2459;; +Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1704;; +Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;223;; +Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;3;; +Bulgaria;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;615;; +Bulgaria;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;1945;; +Bulgaria;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;1304;; +Bulgaria;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;271;; +Bulgaria;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;6;; +Bulgaria;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5;; +Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;7;; +Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;11;; +Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;88;; +Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;53;; +Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;11;; +Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;60;; +Bulgaria;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;157;; +Bulgaria;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;91;; +Bulgaria;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;8;; +Bulgaria;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;242;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;858;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;663;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;45;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;95;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;722;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;387;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;22;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;3893;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;11196;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;5976;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;280;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;551;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3452;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1995;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;31;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;200;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1179;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1243;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;22;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;1817;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;4612;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;3466;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;261;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3936;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7939;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2017;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;113;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;1065;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;5543;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;3675;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;74;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;423;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;807;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;342;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;17;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;3372;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;4754;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;1270;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;61;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;1437;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;2089;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;521;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;40;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;323;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;746;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;413;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;29;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;1474;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;2270;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;1284;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;160;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;788;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;1375;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;653;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;41;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;860;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;3607;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;2719;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;147;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;187;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;389;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;444;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;44;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;220;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;680;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;615;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;64;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;1904;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;2167;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;1089;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;108;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;749;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;1867;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;1110;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;135;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;5;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;8;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;65;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;30;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;46;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;112;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;71;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;3;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;137;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;446;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;488;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;41;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;38;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;129;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;92;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;4;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;1671;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;4172;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;2004;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;124;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;101;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;329;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;249;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;11;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;104;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;591;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;583;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;20;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;875;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;1846;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;1111;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;106;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4889;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8591;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2416;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;167;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;1298;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;2708;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;1740;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;81;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;3;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;1262;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;1130;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;400;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;23;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;1941;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;1315;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;309;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;26;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;1442;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;1859;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;486;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;48;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;325;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;630;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;340;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;47;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;1381;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;1945;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;814;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;64;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;3;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;1216;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;1544;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;853;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;111;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;640;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3679;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2836;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;182;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;172;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;509;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;692;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;71;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;161;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;364;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;445;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;37;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;1388;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;1182;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;471;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;75;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;519;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;883;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;508;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;78;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;14;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;16;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;83;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;37;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;4;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;44;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;85;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;41;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;682;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;2895;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;3824;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;309;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;125;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;471;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;535;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;47;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;2878;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;7061;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;6532;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;775;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;142;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;354;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;235;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;32;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;102;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;542;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;775;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;81;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;1371;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;2756;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;3001;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;429;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;29050;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;43315;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;14900;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1619;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;11;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1466;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;5421;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;3461;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;219;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;16769;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;14873;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;3695;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;225;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;772;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;508;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;205;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;44;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;502;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;1263;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;974;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;48;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;560;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;842;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;901;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;182;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;729;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;1319;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;748;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;131;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;8825;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;22973;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;20657;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;3287;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2918;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;17773;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5230;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;318;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;299;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;1342;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;2134;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;254;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;332;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;1501;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;1770;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;149;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;1697;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;1783;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;751;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;91;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;1757;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;3428;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;1863;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;311;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;23;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;72;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;56;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;8;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;101;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;573;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;116;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;8;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;199;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;392;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;163;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;17;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;8320;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;27609;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;18434;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;977;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;12;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;16;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;46;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;21;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;272;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;854;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;427;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;11;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;12;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;13;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;33;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;18;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;102;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;220;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;87;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;179;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;501;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;244;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;10;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;22;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;79;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;43;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;46;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;97;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;77;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;3;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;9;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;4;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;3;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;9;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;7;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;7;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;32;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;25;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;20;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;62;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;85;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;97;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;270;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;228;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;20;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;34;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;197;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;161;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;4;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;9;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;28;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;66;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;7;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;9;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;15;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;19;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;60;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;35;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;24;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;67;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;77;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;7;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;56;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;200;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;158;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;24;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;4;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;13;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;11;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;87;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;35;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;282;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;1489;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;1587;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;66;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;578;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;2865;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;1450;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;21;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;18495;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;53384;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;30246;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;860;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;835;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5804;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3367;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;25;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;438;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2848;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2573;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;32;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;18427;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;52464;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;25145;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;495;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;5;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6700;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;15106;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4762;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;179;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;1059;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;5163;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;3830;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;70;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;569;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;1216;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;721;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;24;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;693;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;1151;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;344;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;11;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;17;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;59;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;34;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;3;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;82;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;375;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;451;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;31;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;503;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;1344;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;719;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;72;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;414;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;908;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;661;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;27;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;211;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;930;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1176;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;41;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;30;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;381;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;826;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;104;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;34;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;271;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;577;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;32;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;172;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;624;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;482;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;35;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;589;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;2117;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;1484;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;235;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;5;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;27;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;79;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;25;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;13;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;26;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;22;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;4;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;141;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;568;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;322;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;3;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;1691;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;8756;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;5647;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;126;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;966;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;6223;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;2774;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;51;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;16237;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;43639;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;21148;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;532;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;334;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2179;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1348;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;26;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;405;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2933;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2690;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;50;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;4238;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;15237;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;9786;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;260;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;7148;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;19033;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5639;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;124;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;6468;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;42743;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;20016;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;335;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;534;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;1029;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;558;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;18;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;442;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;798;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;288;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;14;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;66;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;250;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;160;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;4;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;133;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;405;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;289;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;13;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;367;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;1056;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;638;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;50;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;542;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;1662;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;1074;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;25;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;461;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2460;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2187;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;80;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;61;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;861;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;1776;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;154;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;139;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;1947;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;2300;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;100;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;163;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;473;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;294;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;24;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;461;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;1126;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;673;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;53;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;19;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;32;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;16;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;4;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;10;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;72;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;53;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;4;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;89;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;380;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;202;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;3;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;3957;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;9346;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;5910;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;241;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;4;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;544;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;2192;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;1027;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;33;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;12489;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;21016;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;9505;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;345;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;199;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;626;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;414;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;6;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1836;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;4292;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2319;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;56;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;11057;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;21618;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;9031;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;227;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;10930;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;13896;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4302;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;281;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;1804;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;5312;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;2890;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;102;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;1878;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;1938;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;853;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;52;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;287;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;334;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;111;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;19;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;51;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;84;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;43;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;3;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;191;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;450;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;487;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;74;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;419;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;581;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;335;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;29;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1688;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;2626;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;1793;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;97;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1911;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;6263;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;6221;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;100;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;109;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;619;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;1185;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;197;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;116;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;447;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;624;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;55;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;314;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;515;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;385;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;42;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;1001;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;1350;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;590;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;46;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;175;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;316;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;146;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;18;; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;19;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;45;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;33;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;146;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;378;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;174;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;3;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;337;; +Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;595;; +Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;257;; +Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;12;; +Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;29;; +Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;99;; +Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;34;; +Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;4;; +Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;1343;; +Bulgaria;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;2044;; +Bulgaria;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;640;; +Bulgaria;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;27;; +Bulgaria;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;23;; +Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;64;; +Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;31;; +Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;108;; +Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;201;; +Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;82;; +Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;1734;; +Bulgaria;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;2903;; +Bulgaria;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;881;; +Bulgaria;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;32;; +Bulgaria;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2062;; +Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2861;; +Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;544;; +Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;43;; +Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;277;; +Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;1172;; +Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;425;; +Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;10;; +Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;1099;; +Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;921;; +Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;199;; +Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;6;; +Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;249;; +Bulgaria;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;241;; +Bulgaria;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;27;; +Bulgaria;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;3;; +Bulgaria;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;96;; +Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;114;; +Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;30;; +Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;85;; +Bulgaria;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;153;; +Bulgaria;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;77;; +Bulgaria;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;7;; +Bulgaria;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;216;; +Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;347;; +Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;131;; +Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;12;; +Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;423;; +Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;565;; +Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;272;; +Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;45;; +Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;64;; +Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;233;; +Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;154;; +Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;6;; +Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;51;; +Bulgaria;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;93;; +Bulgaria;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;92;; +Bulgaria;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;13;; +Bulgaria;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;36;; +Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;148;; +Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;85;; +Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;9;; +Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;237;; +Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;215;; +Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;82;; +Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;8;; +Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;204;; +Bulgaria;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;286;; +Bulgaria;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;126;; +Bulgaria;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;15;; +Bulgaria;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;10;; +Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;6;; +Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Bulgaria;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;4853;; +Bulgaria;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;8552;; +Bulgaria;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;4067;; +Bulgaria;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;251;; +Bulgaria;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;c; +Bulgaria;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;50457;; +Cyprus;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;25882;; +Cyprus;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;37541;; +Cyprus;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;52638;; +Cyprus;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;6413;; +Cyprus;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;65787;; +Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;28;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;517;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;14;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;16;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;4;; +Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;11;; +Cyprus;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;61;; +Cyprus;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;53;; +Cyprus;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;4;; +Cyprus;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3;; +Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3;; +Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;13;; +Cyprus;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;60;; +Cyprus;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;31;; +Cyprus;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;46;; +Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;266;; +Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;125;; +Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;10;; +Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;9;; +Cyprus;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;99;; +Cyprus;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;33;; +Cyprus;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;31;; +Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;212;; +Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;101;; +Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;10;; +Cyprus;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;74;; +Cyprus;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;19;; +Cyprus;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;14;; +Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;306;; +Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;183;; +Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;4;; +Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;9;; +Cyprus;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;5;; +Cyprus;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;17;; +Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;114;; +Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;40;; +Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;59;; +Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;34;; +Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;34;; +Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;107;; +Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;8;; +Cyprus;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;123;; +Cyprus;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;202;; +Cyprus;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;18;; +Cyprus;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;41;; +Cyprus;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;47;; +Cyprus;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;23;; +Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;16;; +Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;12;; +Cyprus;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;11;; +Cyprus;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;11;; +Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;9;; +Cyprus;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;52;; +Cyprus;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;22;; +Cyprus;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;4;; +Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;7;; +Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;3;; +Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;188;; +Cyprus;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;229;; +Cyprus;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;51;; +Cyprus;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;7;; +Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;34;; +Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;8;; +Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;15;; +Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;22;; +Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;; +Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;164;; +Cyprus;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;254;; +Cyprus;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;52;; +Cyprus;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;342;; +Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;695;; +Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;185;; +Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;77;; +Cyprus;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;175;; +Cyprus;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;49;; +Cyprus;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;137;; +Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;176;; +Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;38;; +Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;473;; +Cyprus;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;817;; +Cyprus;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;153;; +Cyprus;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;5;; +Cyprus;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;192;; +Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;600;; +Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;74;; +Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;17;; +Cyprus;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;3;; +Cyprus;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;1907;; +Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;2635;; +Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;521;; +Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;22;; +Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;30;; +Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;40;; +Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;5;; +Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;345;; +Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1497;; +Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;465;; +Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;4389;; +Cyprus;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;9559;; +Cyprus;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;2364;; +Cyprus;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;52;; +Cyprus;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;1609;; +Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;2874;; +Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;1273;; +Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;20;; +Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;126;; +Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;232;; +Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;87;; +Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;18;; +Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;66;; +Cyprus;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;105;; +Cyprus;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;24;; +Cyprus;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;4;; +Cyprus;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;25;; +Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;114;; +Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;47;; +Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;95;; +Cyprus;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;171;; +Cyprus;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;26;; +Cyprus;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;11;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;22;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;19;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;14;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;168;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;463;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;344;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;9;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;82;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;25;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;26;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;49;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;23;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;177;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;454;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;314;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;8;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;608;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1569;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;763;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;18;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;222;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;579;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;273;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;4;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;94;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;238;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;92;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;141;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;360;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;105;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;596;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;2724;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;774;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;5;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;69;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;236;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;113;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;10;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;1715;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;1626;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;779;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;20;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;78;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;199;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;86;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;260;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1490;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1197;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;53;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;190;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;150;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;383;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;979;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;715;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;9;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;193;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;253;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;50;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;67;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;221;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;136;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;58;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;15;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;11;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;89;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;53;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;110;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;247;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;129;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;17;; +Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;79;; +Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;17;; +Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;7;; +Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;28;; +Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;401;; +Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;1039;; +Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;252;; +Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;13;; +Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;115;; +Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;9;; +Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;36;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;82;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;12;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;447;; +Cyprus;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;1042;; +Cyprus;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;155;; +Cyprus;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1343;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3016;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;699;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;9;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;622;; +Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;1462;; +Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;248;; +Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;7;; +Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;438;; +Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;997;; +Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;214;; +Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;4;; +Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;397;; +Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;663;; +Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;77;; +Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;:;c; +Cyprus;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;1148;; +Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;3269;; +Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;405;; +Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;4;; +Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;124;; +Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;201;; +Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;33;; +Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;1489;; +Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;2326;; +Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;267;; +Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;6;; +Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;330;; +Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;999;; +Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;322;; +Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;7;; +Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1063;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2485;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;499;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;412;; +Cyprus;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;728;; +Cyprus;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;126;; +Cyprus;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;342;; +Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;589;; +Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;163;; +Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;6;; +Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;343;; +Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;374;; +Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;83;; +Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;143;; +Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;279;; +Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;76;; +Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;26;; +Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;162;; +Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;42;; +Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;259;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;623;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;93;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;6;; +Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;13;; +Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;4;; +Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;81;; +Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;205;; +Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;86;; +Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;5;; +Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;6;; +Cyprus;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;22;; +Cyprus;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;5;; +Cyprus;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6037;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;11221;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4621;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;196;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;318;; +Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;563;; +Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;105;; +Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;3089;; +Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;4630;; +Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;1776;; +Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;49;; +Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;105;; +Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;80;; +Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;13;; +Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;18;; +Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;23;; +Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;13;; +Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;10;; +Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;9;; +Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;23;; +Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;42;; +Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;22;; +Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;44;; +Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;235;; +Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;129;; +Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;11;; +Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;457;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;766;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;118;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;240;; +Cyprus;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;1089;; +Cyprus;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;525;; +Cyprus;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;10;; +Cyprus;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;202;; +Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;982;; +Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;855;; +Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;16;; +Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;185;; +Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;136;; +Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;43;; +Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;2000;; +Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;2852;; +Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;564;; +Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;19;; +Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;47;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;145;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;63;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;5;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;16;; +Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;87;; +Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;28;; +Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;26;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;62;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;23;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;26;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;267;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;270;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;34;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;6;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;6;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;5;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;17;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;5;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;10;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;6;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;308;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;1153;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;1047;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;41;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;63;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;84;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;19;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;76;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;277;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;150;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;5;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;31;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;78;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;24;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;9;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;48;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;17;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;4;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;11;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;43;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;11;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;5;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;8;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;26;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;31;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;3;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;3;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;7;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;8;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;12;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;30;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;56;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;10;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;5;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;10;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;6;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;146;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;892;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;856;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;16;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;6;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;6;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;4;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;3;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;51;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;183;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;116;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;19;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;116;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;45;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;10;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;39;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;45;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;8;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;26;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;8;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;27;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;23;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;5;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;6;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;4;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;52;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;25;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;13;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;39;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;5;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;27;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;147;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;115;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;6;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;5;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;10;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;11;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;268;; +Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;515;; +Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;299;; +Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;22;; +Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;6;; +Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;6;; +Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;145;; +Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;487;; +Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;361;; +Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;10;; +Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;18;; +Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;22;; +Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;45;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;44;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;49;; +Cyprus;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;146;; +Cyprus;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;122;; +Cyprus;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;4;; +Cyprus;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;341;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1050;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;686;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;13;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;37;; +Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;150;; +Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;136;; +Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;972;; +Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;3268;; +Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;2590;; +Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;48;; +Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;13;; +Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;79;; +Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;84;; +Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;31;; +Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;215;; +Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;344;; +Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;6;; +Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;12;; +Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;15;; +Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;23;; +Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;142;; +Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;148;; +Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;97;; +Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;434;; +Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;310;; +Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;13;; +Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;14;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;460;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;672;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;31;; +Cyprus;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;627;; +Cyprus;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;695;; +Cyprus;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;12;; +Cyprus;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;28;; +Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;488;; +Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;664;; +Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;12;; +Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;31;; +Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;104;; +Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;85;; +Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;23;; +Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;103;; +Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;97;; +Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;5;; +Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4930;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;16561;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1802;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;57;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;4;; +Cyprus;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;104;; +Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;118;; +Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;15;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;48;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;63;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;7;; +Cyprus;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;39;; +Cyprus;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;12;; +Cyprus;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3;; +Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;7;; +Cyprus;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;4;; +Cyprus;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9;; +Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;45;; +Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;18;; +Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;14;; +Cyprus;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;49;; +Cyprus;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;13;; +Cyprus;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;22;; +Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;77;; +Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;38;; +Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;10;; +Cyprus;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;23;; +Cyprus;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;15;; +Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;6;; +Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;9;; +Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;20;; +Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;6;; +Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;8;; +Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;3;; +Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;10;; +Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;57;; +Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;9;; +Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;6;; +Cyprus;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;10;; +Cyprus;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;3;; +Cyprus;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;15;; +Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;9;; +Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;6;; +Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;3;; +Cyprus;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;5;; +Cyprus;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;5;; +Cyprus;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;5;; +Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;33;; +Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;233;; +Cyprus;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;522;; +Cyprus;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;124;; +Cyprus;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;17;; +Cyprus;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;c; +Cyprus;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;54109;; +Cyprus;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;7573;; +Cyprus;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;16397;; +Cyprus;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;43848;; +Cyprus;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;4247;; +Cyprus;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;69161;; +Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;5;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;550;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;2671;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;238;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;43;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;205;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;8;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;7;; +Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;38;; +Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;19;; +Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;7;; +Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;15;; +Cyprus;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;11;; +Cyprus;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;42;; +Cyprus;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;490;; +Cyprus;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;447;; +Cyprus;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;61;; +Cyprus;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;9;; +Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;30;; +Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;24;; +Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;25;; +Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;31;; +Cyprus;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;438;; +Cyprus;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;321;; +Cyprus;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;43;; +Cyprus;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;130;; +Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1160;; +Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;723;; +Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;99;; +Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Cyprus;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;16;; +Cyprus;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;332;; +Cyprus;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;231;; +Cyprus;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;25;; +Cyprus;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;103;; +Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;871;; +Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;586;; +Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;38;; +Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;9;; +Cyprus;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;270;; +Cyprus;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;112;; +Cyprus;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;16;; +Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;639;; +Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;564;; +Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;18;; +Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;22;; +Cyprus;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;22;; +Cyprus;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;19;; +Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;271;; +Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;108;; +Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;14;; +Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;6;; +Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;112;; +Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;67;; +Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;100;; +Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;346;; +Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;38;; +Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;3;; +Cyprus;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;82;; +Cyprus;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;141;; +Cyprus;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;13;; +Cyprus;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;6;; +Cyprus;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;35;; +Cyprus;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;43;; +Cyprus;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;14;; +Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;67;; +Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;43;; +Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;8;; +Cyprus;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;44;; +Cyprus;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;33;; +Cyprus;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;13;; +Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;13;; +Cyprus;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;109;; +Cyprus;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;66;; +Cyprus;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;8;; +Cyprus;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;21;; +Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;25;; +Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;20;; +Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;14;; +Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;11;; +Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;17;; +Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;210;; +Cyprus;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;385;; +Cyprus;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;185;; +Cyprus;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;21;; +Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;199;; +Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;94;; +Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;24;; +Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;49;; +Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;20;; +Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;492;; +Cyprus;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;952;; +Cyprus;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;590;; +Cyprus;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;29;; +Cyprus;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;409;; +Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;903;; +Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;384;; +Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;36;; +Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;84;; +Cyprus;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;368;; +Cyprus;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;248;; +Cyprus;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;116;; +Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;247;; +Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;124;; +Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;761;; +Cyprus;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;1702;; +Cyprus;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;397;; +Cyprus;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;22;; +Cyprus;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;202;; +Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;806;; +Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;162;; +Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;12;; +Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;6;; +Cyprus;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;29;; +Cyprus;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;11;; +Cyprus;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;1219;; +Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;3541;; +Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;1610;; +Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;264;; +Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;25;; +Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;65;; +Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;20;; +Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;168;; +Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1116;; +Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;634;; +Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;14;; +Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;735;; +Cyprus;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;3815;; +Cyprus;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;1454;; +Cyprus;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;69;; +Cyprus;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;601;; +Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;1522;; +Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;1074;; +Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;147;; +Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;90;; +Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;319;; +Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;151;; +Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;21;; +Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;101;; +Cyprus;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;403;; +Cyprus;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;227;; +Cyprus;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;112;; +Cyprus;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;11;; +Cyprus;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;17;; +Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;137;; +Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;71;; +Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;112;; +Cyprus;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;240;; +Cyprus;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;89;; +Cyprus;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;6;; +Cyprus;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;21;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;64;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;53;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;5;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;32;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;33;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;318;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;895;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;586;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;24;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;37;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;241;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;120;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;34;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;98;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;82;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;340;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;2108;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;1796;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;63;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;893;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2680;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1421;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;121;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;204;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;872;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;484;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;27;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;89;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;270;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;136;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;345;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;812;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;311;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;4;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;413;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;2191;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;979;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;55;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;116;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;475;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;292;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;30;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;918;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;658;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;456;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;53;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;56;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;150;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;80;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;13;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;159;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1233;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1281;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;35;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;116;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;50;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;131;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;155;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;115;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;634;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;641;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;124;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;7;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;111;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;306;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;159;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;21;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;5;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;92;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;55;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;62;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;166;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;87;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;10;; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;9;; +Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;7;; +Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;5;; +Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;3;; +Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;9;; +Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;4;; +Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;170;; +Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;285;; +Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;156;; +Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;8;; +Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;16;; +Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;127;; +Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;25;; +Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;9;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;44;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;14;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;73;; +Cyprus;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;107;; +Cyprus;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;105;; +Cyprus;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;8;; +Cyprus;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;778;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1004;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;466;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;31;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;375;; +Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;705;; +Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;236;; +Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;193;; +Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;354;; +Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;268;; +Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;29;; +Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;145;; +Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;196;; +Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;53;; +Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;4;; +Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;362;; +Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;1252;; +Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;340;; +Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;12;; +Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;18;; +Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;8;; +Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;200;; +Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;210;; +Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;34;; +Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;7;; +Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;125;; +Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;319;; +Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;198;; +Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;21;; +Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;300;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;593;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;281;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;29;; +Cyprus;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;51;; +Cyprus;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;12;; +Cyprus;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;31;; +Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;71;; +Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;61;; +Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;188;; +Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;403;; +Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;162;; +Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;10;; +Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;41;; +Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;78;; +Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;37;; +Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;4;; +Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;15;; +Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;93;; +Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;48;; +Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;56;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;89;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;30;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;129;; +Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;238;; +Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;167;; +Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;62;; +Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;132;; +Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;103;; +Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;4;; +Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;6;; +Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;13;; +Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;5;; +Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;4;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;11;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;9;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;22;; +Cyprus;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;62;; +Cyprus;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;40;; +Cyprus;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;4;; +Cyprus;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2634;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5392;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3087;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;393;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;10;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;184;; +Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;347;; +Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;136;; +Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;2873;; +Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;4399;; +Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;1987;; +Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;116;; +Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;52;; +Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;62;; +Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;23;; +Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;13;; +Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;43;; +Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;24;; +Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;8;; +Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;30;; +Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;29;; +Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;17;; +Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;30;; +Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;12;; +Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;193;; +Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;404;; +Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;291;; +Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;25;; +Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;834;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3292;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;726;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;68;; +Cyprus;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;128;; +Cyprus;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;127;; +Cyprus;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;11;; +Cyprus;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;31;; +Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;97;; +Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;100;; +Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;91;; +Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;166;; +Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;91;; +Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;410;; +Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;473;; +Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;231;; +Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;56;; +Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;21;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;5;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;39;; +Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;316;; +Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;100;; +Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;31;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;74;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;31;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;272;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;1301;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;1753;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;241;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;11;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;18;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;5;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;3;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;3;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;21;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;46;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;32;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;30;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;78;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;114;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;8;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;3;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;4;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;129;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;272;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;201;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;9;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;5;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;3;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;23;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;40;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;16;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;9;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;4;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;22;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;34;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;7;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;4;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;8;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;19;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;46;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;40;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;15;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;32;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;40;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;2485;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;5900;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;3791;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;193;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;3;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;81;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;360;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;71;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;33;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;172;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;98;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;6224;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;14094;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;7054;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;129;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2097;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3583;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1976;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;125;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;61;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;120;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;88;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;118;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;228;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;163;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;109;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;326;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;166;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;12;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;29;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;17;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;6;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;7;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;71;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;120;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;50;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;39;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;62;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;18;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;46;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;486;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;370;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;11;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;26;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;27;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;11;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;44;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;36;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;37;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;108;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;68;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;170;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;411;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;182;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;27;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;60;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;108;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;99;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;83;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;145;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;84;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;34;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;63;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;39;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;59;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;114;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;87;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;888;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;1879;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;1142;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;25;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;26;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;14;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;55;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;188;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;135;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;496;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;1278;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;693;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;25;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1001;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1678;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;909;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;38;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;693;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;2512;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;1982;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;111;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;292;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;193;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;28;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;7;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;9;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;10;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;11;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;33;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;7;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;5;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;21;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;26;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;32;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;33;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;86;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;67;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;13;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;96;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;83;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;4;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;8;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;25;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;12;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;86;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;83;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;21;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;49;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;30;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;36;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;127;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;97;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;18;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;16;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;89;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;70;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;108;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;230;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;95;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;1247;; +Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;1023;; +Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;206;; +Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;9;; +Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;9;; +Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;20;; +Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;9;; +Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;385;; +Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;445;; +Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;181;; +Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;8;; +Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;17;; +Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;79;; +Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;27;; +Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;241;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;444;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;288;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;1968;; +Cyprus;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;2219;; +Cyprus;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;1022;; +Cyprus;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;22;; +Cyprus;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;742;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;711;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;336;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;40;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Cyprus;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;398;; +Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;494;; +Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;277;; +Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;8;; +Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;746;; +Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;654;; +Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;424;; +Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;28;; +Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;24;; +Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;24;; +Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;30;; +Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;40;; +Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;84;; +Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;32;; +Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;4;; +Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;7;; +Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;16;; +Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;8;; +Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;69;; +Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;131;; +Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;65;; +Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;232;; +Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;300;; +Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;175;; +Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;156;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;651;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;355;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;8;; +Cyprus;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;24;; +Cyprus;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;13;; +Cyprus;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;16;; +Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;119;; +Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;109;; +Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;104;; +Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;139;; +Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;84;; +Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;22;; +Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;70;; +Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;41;; +Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;174;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;429;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;48;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;15;; +Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;52;; +Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;32;; +Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;55;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;59;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;30;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;3;; +Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;5;; +Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;4;; +Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;27;; +Cyprus;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;53;; +Cyprus;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;31;; +Cyprus;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;9;; +Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3;; +Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3;; +Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;6;; +Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;9;; +Cyprus;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;34;; +Cyprus;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;8;; +Cyprus;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;29;; +Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;76;; +Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;28;; +Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;15;; +Cyprus;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;51;; +Cyprus;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;20;; +Cyprus;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;29;; +Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;66;; +Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;48;; +Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;7;; +Cyprus;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;29;; +Cyprus;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;12;; +Cyprus;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;10;; +Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;8;; +Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;15;; +Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;24;; +Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;7;; +Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;7;; +Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;4;; +Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;4;; +Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;13;; +Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;72;; +Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;39;; +Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;4;; +Cyprus;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;5;; +Cyprus;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;3;; +Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;7;; +Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;4;; +Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;8;; +Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;3;; +Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;4;; +Cyprus;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;5;; +Cyprus;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;6;; +Cyprus;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;:;c; +Cyprus;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;13;; +Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;62;; +Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;30;; +Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;275;; +Cyprus;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;839;; +Cyprus;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;303;; +Cyprus;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;31;; +Cyprus;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Cyprus;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;527814;; +Czechia;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;304312;; +Czechia;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;520960;; +Czechia;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;830883;; +Czechia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;111330;; +Czechia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;724979;; +Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;13;; +Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;3;; +Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;3;; +Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;3;; +Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;5;; +Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;7;; +Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;19;; +Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;12;; +Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;701;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1110;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;86;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;4;; +Czechia;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;24;; +Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;20;; +Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;47;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;57;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;11;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;81;; +Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;488;; +Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;353;; +Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;21;; +Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;12;; +Czechia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;106;; +Czechia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;67;; +Czechia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;1606;; +Czechia;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;8451;; +Czechia;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;2801;; +Czechia;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;71;; +Czechia;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;68;; +Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;321;; +Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;136;; +Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;46;; +Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;331;; +Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;152;; +Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;302;; +Czechia;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;1408;; +Czechia;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;540;; +Czechia;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;19;; +Czechia;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2632;; +Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;10726;; +Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3140;; +Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;83;; +Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;443;; +Czechia;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;3119;; +Czechia;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;1189;; +Czechia;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;12;; +Czechia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;1082;; +Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;3342;; +Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;1512;; +Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;71;; +Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;2;; +Czechia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;585;; +Czechia;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;1890;; +Czechia;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;394;; +Czechia;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;15;; +Czechia;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;643;; +Czechia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;2867;; +Czechia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;814;; +Czechia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;10;; +Czechia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;198;; +Czechia;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;960;; +Czechia;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;429;; +Czechia;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;44;; +Czechia;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;787;; +Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;2692;; +Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;727;; +Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;28;; +Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;610;; +Czechia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;2090;; +Czechia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;745;; +Czechia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;24;; +Czechia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;493;; +Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;4128;; +Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2893;; +Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;63;; +Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;454;; +Czechia;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;7155;; +Czechia;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;6403;; +Czechia;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;147;; +Czechia;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;415;; +Czechia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;3610;; +Czechia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;2458;; +Czechia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;74;; +Czechia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;314;; +Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1245;; +Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;638;; +Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;31;; +Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;284;; +Czechia;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;1166;; +Czechia;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;473;; +Czechia;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;31;; +Czechia;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;8;; +Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;20;; +Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;33;; +Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;9;; +Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;401;; +Czechia;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;1402;; +Czechia;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;684;; +Czechia;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;46;; +Czechia;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;141;; +Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;469;; +Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;261;; +Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;19;; +Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;55;; +Czechia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;169;; +Czechia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;97;; +Czechia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;5;; +Czechia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;3627;; +Czechia;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;8803;; +Czechia;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;2473;; +Czechia;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;68;; +Czechia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;236;; +Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;677;; +Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;268;; +Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;129;; +Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;377;; +Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;176;; +Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;7;; +Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;1068;; +Czechia;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;2351;; +Czechia;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;1036;; +Czechia;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;136;; +Czechia;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2346;; +Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4690;; +Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1100;; +Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;40;; +Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;483;; +Czechia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1428;; +Czechia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;606;; +Czechia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;9;; +Czechia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;220;; +Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;391;; +Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;122;; +Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;9;; +Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;4532;; +Czechia;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;7862;; +Czechia;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;2013;; +Czechia;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;146;; +Czechia;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;6517;; +Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;14124;; +Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;4467;; +Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;173;; +Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;215;; +Czechia;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;516;; +Czechia;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;185;; +Czechia;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;18;; +Czechia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;10888;; +Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;18474;; +Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;6467;; +Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;833;; +Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;8;; +Czechia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;1772;; +Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;2253;; +Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;500;; +Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;39;; +Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;3428;; +Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;11445;; +Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;5926;; +Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;241;; +Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;20496;; +Czechia;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;79099;; +Czechia;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;41450;; +Czechia;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;3141;; +Czechia;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;19;; +Czechia;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;21920;; +Czechia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;69729;; +Czechia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;35323;; +Czechia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;3451;; +Czechia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;5;; +Czechia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;2397;; +Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;6028;; +Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;3383;; +Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;460;; +Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;16;; +Czechia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;768;; +Czechia;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;1671;; +Czechia;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;552;; +Czechia;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;62;; +Czechia;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;44;; +Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;54;; +Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;23;; +Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;60;; +Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;106;; +Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;2602;; +Czechia;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;7951;; +Czechia;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;4896;; +Czechia;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;893;; +Czechia;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;10;; +Czechia;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;870;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;5020;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;4073;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;139;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;135;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;937;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;593;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;8;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;16682;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;53479;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;20622;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;352;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;4;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;639;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2618;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1428;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;18;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;464;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2378;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1248;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;33;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;2788;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;9951;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;4579;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;190;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9118;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;27084;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9544;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;465;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;2403;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;7761;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;3310;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;58;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;717;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;2049;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;952;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;46;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;3498;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;6841;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;2130;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;90;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;6762;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;16412;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;7214;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;295;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;1923;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;6325;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;2647;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;156;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;7941;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;22921;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;11154;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;1177;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;7;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;3914;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;6906;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;2966;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;156;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;9303;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;42983;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;24242;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;425;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;1238;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;6877;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;5002;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;349;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;10921;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;27681;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;14959;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;761;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;4;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;1424;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;3481;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;1636;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;182;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;945;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;3055;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;1572;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;132;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;23;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;83;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;43;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;5;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;45;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;108;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;30;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;3436;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;8886;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;4793;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;435;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;9;; +Czechia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;237;; +Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;933;; +Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;553;; +Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;25;; +Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;75;; +Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;415;; +Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;267;; +Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;5592;; +Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;15620;; +Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;5011;; +Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;91;; +Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;351;; +Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;695;; +Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;305;; +Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;; +Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;236;; +Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;928;; +Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;394;; +Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;13;; +Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;1122;; +Czechia;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;3345;; +Czechia;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;1140;; +Czechia;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;45;; +Czechia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4363;; +Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;10243;; +Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2651;; +Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;85;; +Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;5407;; +Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;21235;; +Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;7841;; +Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;204;; +Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;2724;; +Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;3059;; +Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;1050;; +Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;60;; +Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;3827;; +Czechia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;4101;; +Czechia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;1086;; +Czechia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;81;; +Czechia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;3203;; +Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;4406;; +Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;1431;; +Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;57;; +Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;467;; +Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;1076;; +Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;471;; +Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;56;; +Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;2295;; +Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;3529;; +Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;1327;; +Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;149;; +Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;7180;; +Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;8589;; +Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;2852;; +Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;206;; +Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;2;; +Czechia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;3199;; +Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;8165;; +Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3932;; +Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;127;; +Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;731;; +Czechia;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;2514;; +Czechia;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;1756;; +Czechia;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;187;; +Czechia;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;1056;; +Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;3636;; +Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;2079;; +Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;119;; +Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;1787;; +Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;2764;; +Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;856;; +Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;111;; +Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;668;; +Czechia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;1447;; +Czechia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;603;; +Czechia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;40;; +Czechia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;7;; +Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;17;; +Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;11;; +Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;17;; +Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;36;; +Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;7;; +Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;1900;; +Czechia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;3990;; +Czechia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;2088;; +Czechia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;192;; +Czechia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;4;; +Czechia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;322;; +Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;1260;; +Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;889;; +Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;44;; +Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;16;; +Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;58;; +Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;60;; +Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;3548;; +Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;10350;; +Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;4548;; +Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;129;; +Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;29;; +Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;84;; +Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;52;; +Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;27;; +Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;111;; +Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;66;; +Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;161;; +Czechia;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;525;; +Czechia;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;272;; +Czechia;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;8;; +Czechia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;32523;; +Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;93054;; +Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;36976;; +Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1230;; +Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Czechia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1181;; +Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;3723;; +Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;1449;; +Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;38;; +Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;20412;; +Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;31072;; +Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;11070;; +Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;351;; +Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;3;; +Czechia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;539;; +Czechia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;581;; +Czechia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;146;; +Czechia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;15;; +Czechia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;520;; +Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;794;; +Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;313;; +Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;4;; +Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;130;; +Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;640;; +Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;381;; +Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;58;; +Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;431;; +Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;660;; +Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;276;; +Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;25;; +Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;1411;; +Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;4122;; +Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;3527;; +Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;312;; +Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;3;; +Czechia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1954;; +Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;5877;; +Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1996;; +Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;64;; +Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;933;; +Czechia;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;12228;; +Czechia;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;8098;; +Czechia;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;329;; +Czechia;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;3076;; +Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;17192;; +Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;9857;; +Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;231;; +Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;2480;; +Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;3112;; +Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;1170;; +Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;287;; +Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;8906;; +Czechia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;17398;; +Czechia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;5844;; +Czechia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;381;; +Czechia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;458;; +Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;957;; +Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;622;; +Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;27;; +Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;7;; +Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;10;; +Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;9574;; +Czechia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;24521;; +Czechia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;11868;; +Czechia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;676;; +Czechia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;10;; +Czechia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;1712;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;9745;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;6581;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;336;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;9;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;2;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;47;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;226;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;137;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;3;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;15;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;5;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;300;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;590;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;102;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;14;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;52;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;16;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;2;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;17;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;6;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;2;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;4;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;4;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;4;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;5;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;22;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;62;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;24;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;212;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;802;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;352;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;13;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;21;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;80;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;52;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;16;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;62;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;33;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;3;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;324;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;1432;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;783;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;8;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;74;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;122;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;50;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;43;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;120;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;45;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;13;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;10;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;283;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;1293;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;802;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;39;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;4;; +Czechia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;28;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;122;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;55;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;12;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;125;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;112;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;11529;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;46989;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;20536;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;269;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;2;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;27;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;138;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;106;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;80;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;56;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;545;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;1653;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;793;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;39;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;355;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1147;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;451;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;10;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;93;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;428;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;208;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;9;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;243;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;370;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;118;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;5;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;134;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;247;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;146;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;8;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;34;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;12;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;8;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;102;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;53;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;148;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;409;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;183;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;15;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;131;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;425;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;217;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;8;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;14;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;142;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;97;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;17;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;130;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;101;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;9;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;55;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;254;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;165;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;6;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;88;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;432;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;281;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;19;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;162;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;842;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;450;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;24;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;4;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;1463;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;4588;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;2265;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;58;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;4;; +Czechia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;43;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;341;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;287;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;6;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;46;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;578;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;616;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;3;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;19330;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;73074;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;32055;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;239;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;10;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;64;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;270;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;254;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;10;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;47;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;357;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;335;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;10;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;127;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;493;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;325;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;9;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;807;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3301;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1388;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;20;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;866;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;4586;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;2609;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;25;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;46;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;216;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;145;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;3;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;60;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;146;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;78;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;20;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;36;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;16;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;3;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;20;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;17;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;5;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;101;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;306;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;144;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;11;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;206;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;661;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;384;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;10;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;43;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;271;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;222;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;7;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;13;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;154;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;140;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;6;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;243;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;1383;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;944;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;17;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;40;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;89;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;41;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;177;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;881;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;564;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;16;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;10;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;7;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;2008;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;6876;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;3554;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;54;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;3;; +Czechia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;131;; +Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;1308;; +Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;1165;; +Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;117;; +Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;10;; +Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;103;; +Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;141;; +Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;2;; +Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;2117;; +Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;9276;; +Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;5547;; +Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;235;; +Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;19;; +Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;125;; +Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;109;; +Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;; +Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;90;; +Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;659;; +Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;481;; +Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;28;; +Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;108;; +Czechia;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;570;; +Czechia;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;383;; +Czechia;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;52;; +Czechia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;294;; +Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1200;; +Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;872;; +Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;126;; +Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;230;; +Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;938;; +Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;752;; +Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;57;; +Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;2;; +Czechia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;707;; +Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;3982;; +Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;2274;; +Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;123;; +Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;40;; +Czechia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;91;; +Czechia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;74;; +Czechia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;19;; +Czechia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;9;; +Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;48;; +Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;52;; +Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;27;; +Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;28;; +Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;200;; +Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;184;; +Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;42;; +Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;71;; +Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;289;; +Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;244;; +Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;40;; +Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1717;; +Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;14556;; +Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;10631;; +Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;1267;; +Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;5;; +Czechia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;145;; +Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1649;; +Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;1551;; +Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;145;; +Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;296;; +Czechia;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;6911;; +Czechia;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;5473;; +Czechia;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;429;; +Czechia;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;446;; +Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;4146;; +Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;3648;; +Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;259;; +Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;3;; +Czechia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;197;; +Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;608;; +Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;635;; +Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;248;; +Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;224;; +Czechia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;1592;; +Czechia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;1221;; +Czechia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;117;; +Czechia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;104;; +Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;293;; +Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;165;; +Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;12;; +Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;2376;; +Czechia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;11577;; +Czechia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;9029;; +Czechia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;825;; +Czechia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;7;; +Czechia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;178;; +Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;762;; +Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;621;; +Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;111;; +Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;4;; +Czechia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;19;; +Czechia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;61;; +Czechia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;48;; +Czechia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;1;; +Czechia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;2075;; +Czechia;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;6137;; +Czechia;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;2741;; +Czechia;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;189;; +Czechia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;3;; +Czechia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;29;; +Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;104;; +Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;76;; +Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;7;; +Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;33;; +Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;134;; +Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;84;; +Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;171;; +Czechia;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;693;; +Czechia;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;407;; +Czechia;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;41;; +Czechia;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1551;; +Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5616;; +Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3007;; +Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;375;; +Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;; +Czechia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;243;; +Czechia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;798;; +Czechia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;410;; +Czechia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;26;; +Czechia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;830;; +Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;1990;; +Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;1030;; +Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;115;; +Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;312;; +Czechia;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;599;; +Czechia;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;202;; +Czechia;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;49;; +Czechia;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;418;; +Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;1119;; +Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;659;; +Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;96;; +Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;137;; +Czechia;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;550;; +Czechia;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;261;; +Czechia;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;47;; +Czechia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;602;; +Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;1956;; +Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;1462;; +Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;433;; +Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;3;; +Czechia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;777;; +Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;1979;; +Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;1166;; +Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;278;; +Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;363;; +Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;1321;; +Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;695;; +Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;52;; +Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Czechia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;416;; +Czechia;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;1807;; +Czechia;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;1161;; +Czechia;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;180;; +Czechia;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;577;; +Czechia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;2031;; +Czechia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;1507;; +Czechia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;206;; +Czechia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;1;; +Czechia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;272;; +Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;602;; +Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;326;; +Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;92;; +Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;554;; +Czechia;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;1724;; +Czechia;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;793;; +Czechia;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;105;; +Czechia;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;62;; +Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;178;; +Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;74;; +Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;11;; +Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;7;; +Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;19;; +Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;56167;; +Czechia;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;85111;; +Czechia;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;44216;; +Czechia;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;8016;; +Czechia;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;214;; +Czechia;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;478849;; +Czechia;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;203944;; +Czechia;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;336583;; +Czechia;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;561783;; +Czechia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;42312;; +Czechia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;763949;; +Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;2;; +Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;3;; +Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;3;; +Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;8;; +Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;25;; +Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;6;; +Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;2;; +Czechia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;4;; +Czechia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;52;; +Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;132;; +Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;51;; +Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;3;; +Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;11;; +Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;18;; +Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;2;; +Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;4;; +Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;2;; +Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;5;; +Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;10;; +Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;4;; +Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;32;; +Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;53;; +Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;18;; +Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;4177;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;9050;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;449;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;6;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;6;; +Czechia;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;12;; +Czechia;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;4;; +Czechia;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;19;; +Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;25;; +Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;2;; +Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;5;; +Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;16;; +Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;4;; +Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;2;; +Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;332;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;576;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;29;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;1;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;249;; +Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;2358;; +Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;2241;; +Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;199;; +Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;44;; +Czechia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;579;; +Czechia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;540;; +Czechia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;35;; +Czechia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;3312;; +Czechia;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;29894;; +Czechia;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;14189;; +Czechia;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;917;; +Czechia;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;7;; +Czechia;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;97;; +Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1809;; +Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1109;; +Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;48;; +Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;109;; +Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1505;; +Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;952;; +Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;54;; +Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;2372;; +Czechia;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;14521;; +Czechia;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;7143;; +Czechia;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;428;; +Czechia;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2778;; +Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;18401;; +Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;6273;; +Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;383;; +Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;522;; +Czechia;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;4553;; +Czechia;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;2316;; +Czechia;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;83;; +Czechia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;916;; +Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;3735;; +Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;1524;; +Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;117;; +Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;1258;; +Czechia;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;7397;; +Czechia;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;1692;; +Czechia;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;111;; +Czechia;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;607;; +Czechia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;4259;; +Czechia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;957;; +Czechia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;40;; +Czechia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;185;; +Czechia;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;1683;; +Czechia;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;954;; +Czechia;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;140;; +Czechia;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;707;; +Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;4839;; +Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;1970;; +Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;221;; +Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;484;; +Czechia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;2551;; +Czechia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;1164;; +Czechia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;112;; +Czechia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;369;; +Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;5249;; +Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4564;; +Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;237;; +Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;174;; +Czechia;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;2632;; +Czechia;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;2916;; +Czechia;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;209;; +Czechia;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;144;; +Czechia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;1772;; +Czechia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;1366;; +Czechia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;122;; +Czechia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;293;; +Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1810;; +Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;870;; +Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;95;; +Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;217;; +Czechia;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;1123;; +Czechia;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;725;; +Czechia;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;91;; +Czechia;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;3;; +Czechia;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;9;; +Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;6;; +Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;; +Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;4;; +Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;23;; +Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;16;; +Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;437;; +Czechia;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;2159;; +Czechia;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;998;; +Czechia;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;119;; +Czechia;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;424;; +Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1731;; +Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1158;; +Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;175;; +Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;96;; +Czechia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;479;; +Czechia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;278;; +Czechia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;33;; +Czechia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;8436;; +Czechia;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;21163;; +Czechia;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;6773;; +Czechia;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;677;; +Czechia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;6;; +Czechia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;510;; +Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1518;; +Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;764;; +Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;84;; +Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;156;; +Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;554;; +Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;274;; +Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;57;; +Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;2985;; +Czechia;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;6832;; +Czechia;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;3363;; +Czechia;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;704;; +Czechia;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;5;; +Czechia;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2062;; +Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5694;; +Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1064;; +Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;82;; +Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;650;; +Czechia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;2006;; +Czechia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;877;; +Czechia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;50;; +Czechia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;144;; +Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;242;; +Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;73;; +Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;7;; +Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;17672;; +Czechia;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;30782;; +Czechia;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;5340;; +Czechia;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;407;; +Czechia;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;3;; +Czechia;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;5208;; +Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;10662;; +Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;2636;; +Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;201;; +Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;148;; +Czechia;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;597;; +Czechia;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;310;; +Czechia;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;116;; +Czechia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;11617;; +Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;26825;; +Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;11460;; +Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;3160;; +Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;41;; +Czechia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;788;; +Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;1393;; +Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;381;; +Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;52;; +Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1592;; +Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;7290;; +Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;3868;; +Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;307;; +Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;5;; +Czechia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;5780;; +Czechia;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;21870;; +Czechia;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;15254;; +Czechia;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;3698;; +Czechia;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;19;; +Czechia;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;3114;; +Czechia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;11836;; +Czechia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;8532;; +Czechia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;1816;; +Czechia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;33;; +Czechia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1968;; +Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;5666;; +Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;2671;; +Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;573;; +Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;27;; +Czechia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;581;; +Czechia;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;2346;; +Czechia;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;1018;; +Czechia;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;298;; +Czechia;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;21;; +Czechia;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8;; +Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;6;; +Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;17;; +Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;57;; +Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;14;; +Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;1428;; +Czechia;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;3102;; +Czechia;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;1858;; +Czechia;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;685;; +Czechia;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;23;; +Czechia;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;1118;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;4864;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;4508;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;269;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;284;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;2368;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;1614;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;61;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;22768;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;63019;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;29424;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;1738;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;4;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1057;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5829;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3926;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;229;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;453;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2329;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1508;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;117;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;5265;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;16112;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;9017;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;852;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;4;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9545;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;30152;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;10537;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;863;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;2076;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;6569;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;3618;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;168;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;517;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;1737;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;582;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;37;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;5710;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;11775;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;3436;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;273;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;3446;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;7348;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;3588;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;365;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;1250;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;4516;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;2467;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;373;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;3;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;4172;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;10237;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;5998;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;1423;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;5;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;2011;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;4868;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;3305;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;366;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;3;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;3961;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;18971;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;10960;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;493;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;527;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;1199;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;1064;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;256;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;1844;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;4093;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;2158;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;224;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;2950;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;4513;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;1654;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;273;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;3;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;1059;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;2260;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;1206;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;186;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;7;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;29;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;23;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;3;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;16;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;61;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;18;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;3462;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;7296;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;4129;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;534;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;5;; +Czechia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;64;; +Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;264;; +Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;224;; +Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;21;; +Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;43;; +Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;182;; +Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;114;; +Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;3;; +Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;3448;; +Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;8180;; +Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;2863;; +Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;79;; +Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;122;; +Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;302;; +Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;240;; +Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;6;; +Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;53;; +Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;201;; +Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;135;; +Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;6;; +Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;366;; +Czechia;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;879;; +Czechia;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;424;; +Czechia;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;32;; +Czechia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1955;; +Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4423;; +Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1285;; +Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;67;; +Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;5216;; +Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;16063;; +Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;7158;; +Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;294;; +Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;757;; +Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;668;; +Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;278;; +Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;42;; +Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;2117;; +Czechia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;1758;; +Czechia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;389;; +Czechia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;53;; +Czechia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;744;; +Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;870;; +Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;278;; +Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;25;; +Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;57;; +Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;136;; +Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;90;; +Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;21;; +Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;506;; +Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;601;; +Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;208;; +Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;55;; +Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;1707;; +Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;1925;; +Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;820;; +Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;113;; +Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;513;; +Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1384;; +Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;892;; +Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;78;; +Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;120;; +Czechia;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;147;; +Czechia;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;131;; +Czechia;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;48;; +Czechia;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;206;; +Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;345;; +Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;222;; +Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;44;; +Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;812;; +Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;1075;; +Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;287;; +Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;72;; +Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;181;; +Czechia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;295;; +Czechia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;128;; +Czechia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;19;; +Czechia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8;; +Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;4;; +Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;7;; +Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;842;; +Czechia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;1572;; +Czechia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;854;; +Czechia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;81;; +Czechia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;224;; +Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;883;; +Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;922;; +Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;106;; +Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;39;; +Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;218;; +Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;173;; +Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;18;; +Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;2292;; +Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;5231;; +Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;3702;; +Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;355;; +Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;61;; +Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;305;; +Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;223;; +Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;15;; +Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;33;; +Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;193;; +Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;212;; +Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;50;; +Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;261;; +Czechia;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;909;; +Czechia;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;652;; +Czechia;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;76;; +Czechia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;14312;; +Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;30702;; +Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;11555;; +Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;859;; +Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;5;; +Czechia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;913;; +Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;3052;; +Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;1608;; +Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;137;; +Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;17494;; +Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;25144;; +Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;6758;; +Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;308;; +Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;514;; +Czechia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;669;; +Czechia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;202;; +Czechia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;31;; +Czechia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;214;; +Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;363;; +Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;121;; +Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;13;; +Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;215;; +Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;982;; +Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;969;; +Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;219;; +Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;205;; +Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;455;; +Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;284;; +Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;71;; +Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;2872;; +Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;7088;; +Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;9251;; +Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;1374;; +Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;11386;; +Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;31517;; +Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;6525;; +Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;247;; +Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;346;; +Czechia;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;2121;; +Czechia;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;3383;; +Czechia;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;611;; +Czechia;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;1799;; +Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;3868;; +Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;2347;; +Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;172;; +Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;1080;; +Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;1838;; +Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;1110;; +Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;255;; +Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;1269;; +Czechia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;2325;; +Czechia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;1216;; +Czechia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;141;; +Czechia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;69;; +Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;212;; +Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;235;; +Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;38;; +Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;6;; +Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;4868;; +Czechia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;8252;; +Czechia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;5124;; +Czechia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;790;; +Czechia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;4455;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;16362;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;11512;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;1103;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;11;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;7;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;20;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;14;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;123;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;304;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;226;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;11;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;25;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;17;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;26;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;54;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;20;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;2;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;36;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;132;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;61;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;5;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;26;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;50;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;40;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;1;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;2;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;15;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;15;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;5;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;2;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;1;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;1;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;2;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;5;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;3;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;9;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;7;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;23;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;39;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;19;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;558;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;1372;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;767;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;44;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;51;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;113;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;93;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;7;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;11;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;15;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;28;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;5;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;67;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;142;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;70;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;3;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;46;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;131;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;47;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;25;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;86;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;38;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;2;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;4;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;478;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;1501;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;1117;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;134;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;1157;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;3824;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;4497;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;101;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;592;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;4642;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;2653;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;18;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;54554;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;142246;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;75043;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;2292;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;15;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1898;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6716;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3909;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;114;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;546;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2734;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2021;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;51;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;27970;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;100625;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;46803;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;906;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;8;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;8610;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;17606;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7270;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;232;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;1755;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;6326;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;4363;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;77;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;257;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;604;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;387;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;29;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;773;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;1702;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;727;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;33;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;32;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;66;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;43;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;6;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;77;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;465;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;509;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;42;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;419;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;994;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;606;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;95;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;337;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;946;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;732;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;46;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;309;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1527;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1557;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;60;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;67;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;343;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;730;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;144;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;158;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;886;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;1340;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;70;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;401;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;1190;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;921;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;81;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;773;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;2454;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;1878;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;151;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;12;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;22;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;22;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;4;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;9700;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;26232;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;15131;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;614;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;5;; +Czechia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;2618;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;9196;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;7673;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;153;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;1557;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;8628;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;4615;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;42;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;44441;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;87560;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;40747;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;821;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;526;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2410;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2032;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;116;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;893;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;4559;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3408;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;136;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;4198;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;16157;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;9402;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;183;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5954;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;12565;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4985;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;201;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;17622;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;64312;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;34154;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;729;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;312;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;525;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;310;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;14;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;203;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;387;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;171;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;17;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;33;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;71;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;34;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;2;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;22;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;97;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;93;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;22;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;254;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;564;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;300;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;38;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;805;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;2005;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;1153;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;53;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;432;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1949;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1620;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;85;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;38;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;133;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;270;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;83;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;658;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;2662;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;2082;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;128;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;120;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;345;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;281;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;38;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;382;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;1206;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;780;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;41;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;22;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;52;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;34;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;9;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;9;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;6656;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;17549;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;10913;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;411;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;4;; +Czechia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;378;; +Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;1066;; +Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;1183;; +Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;122;; +Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;59;; +Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;173;; +Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;152;; +Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;11;; +Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;3177;; +Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;5040;; +Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;3023;; +Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;104;; +Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;86;; +Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;224;; +Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;158;; +Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;6;; +Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;909;; +Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2581;; +Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1725;; +Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;126;; +Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;1277;; +Czechia;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;2533;; +Czechia;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;1368;; +Czechia;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;42;; +Czechia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;366;; +Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;564;; +Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;307;; +Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;54;; +Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;792;; +Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;1550;; +Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;1129;; +Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;67;; +Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;142;; +Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;203;; +Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;136;; +Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;14;; +Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;41;; +Czechia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;60;; +Czechia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;26;; +Czechia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;5;; +Czechia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;16;; +Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;14;; +Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;10;; +Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;35;; +Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;73;; +Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;63;; +Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;12;; +Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;103;; +Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;163;; +Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;106;; +Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;21;; +Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1275;; +Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;3139;; +Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;3004;; +Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;290;; +Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;917;; +Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;2098;; +Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;1501;; +Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;63;; +Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;39;; +Czechia;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;76;; +Czechia;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;122;; +Czechia;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;45;; +Czechia;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;171;; +Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;387;; +Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;280;; +Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;32;; +Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;125;; +Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;132;; +Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;96;; +Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;43;; +Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;158;; +Czechia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;450;; +Czechia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;353;; +Czechia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;30;; +Czechia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;23;; +Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;46;; +Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;33;; +Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;4;; +Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;3398;; +Czechia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;6549;; +Czechia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;4742;; +Czechia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;209;; +Czechia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;580;; +Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;2163;; +Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;1770;; +Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;431;; +Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;5;; +Czechia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;67;; +Czechia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;298;; +Czechia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;207;; +Czechia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;19;; +Czechia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;4053;; +Czechia;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;10685;; +Czechia;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;6218;; +Czechia;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;962;; +Czechia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;10;; +Czechia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;148;; +Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;505;; +Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;384;; +Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;63;; +Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;110;; +Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;451;; +Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;331;; +Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;46;; +Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;2129;; +Czechia;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;9399;; +Czechia;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;4564;; +Czechia;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;492;; +Czechia;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;4;; +Czechia;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1921;; +Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7306;; +Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3819;; +Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;631;; +Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;6;; +Czechia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;787;; +Czechia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;3012;; +Czechia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;1926;; +Czechia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;163;; +Czechia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;697;; +Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;2174;; +Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;1106;; +Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;121;; +Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;825;; +Czechia;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;1610;; +Czechia;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;432;; +Czechia;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;109;; +Czechia;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;3;; +Czechia;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;398;; +Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;938;; +Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;528;; +Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;115;; +Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;138;; +Czechia;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;672;; +Czechia;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;475;; +Czechia;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;153;; +Czechia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;671;; +Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;1957;; +Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;1443;; +Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;747;; +Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;18;; +Czechia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;490;; +Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;1294;; +Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;1012;; +Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;245;; +Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;517;; +Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;1872;; +Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;883;; +Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;76;; +Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;271;; +Czechia;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;501;; +Czechia;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;481;; +Czechia;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;177;; +Czechia;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;3;; +Czechia;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;195;; +Czechia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;583;; +Czechia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;484;; +Czechia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;122;; +Czechia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;380;; +Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;845;; +Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;383;; +Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;148;; +Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;2;; +Czechia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;311;; +Czechia;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;964;; +Czechia;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;677;; +Czechia;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;131;; +Czechia;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;27;; +Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;61;; +Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;30;; +Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;10;; +Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;1;; +Czechia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;7;; +Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;16;; +Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Czechia;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;56441;; +Czechia;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;88598;; +Czechia;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;54470;; +Czechia;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;10235;; +Czechia;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;217;; +Czechia;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;c; +Denmark;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Denmark;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;c; +Denmark;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;65334;; +Estonia;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;30966;; +Estonia;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;44386;; +Estonia;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;122659;; +Estonia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;18361;; +Estonia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;97003;; +Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;1;; +Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;2;; +Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;1;; +Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;1;; +Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;64;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;215;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;71;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;6;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;5;; +Estonia;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;1;; +Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;1;; +Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;1;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;10;; +Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;86;; +Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;86;; +Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;1;; +Estonia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;16;; +Estonia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;16;; +Estonia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;131;; +Estonia;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;1172;; +Estonia;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;631;; +Estonia;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;50;; +Estonia;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;9;; +Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;52;; +Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;33;; +Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;31;; +Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;17;; +Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;38;; +Estonia;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;201;; +Estonia;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;102;; +Estonia;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;5;; +Estonia;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;592;; +Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3393;; +Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1344;; +Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;67;; +Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;86;; +Estonia;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;500;; +Estonia;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;197;; +Estonia;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;14;; +Estonia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;317;; +Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;810;; +Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;368;; +Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;26;; +Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;128;; +Estonia;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;418;; +Estonia;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;104;; +Estonia;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;5;; +Estonia;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;93;; +Estonia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;522;; +Estonia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;97;; +Estonia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;26;; +Estonia;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;183;; +Estonia;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;137;; +Estonia;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;12;; +Estonia;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;133;; +Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;698;; +Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;247;; +Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;34;; +Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;113;; +Estonia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;522;; +Estonia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;219;; +Estonia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;10;; +Estonia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;183;; +Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1233;; +Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;653;; +Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;47;; +Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;103;; +Estonia;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;1390;; +Estonia;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;1314;; +Estonia;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;106;; +Estonia;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;60;; +Estonia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;762;; +Estonia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;496;; +Estonia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;86;; +Estonia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;87;; +Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;596;; +Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;416;; +Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;65;; +Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;118;; +Estonia;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;457;; +Estonia;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;207;; +Estonia;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;39;; +Estonia;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;21;; +Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;6;; +Estonia;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;18;; +Estonia;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;6;; +Estonia;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;46;; +Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;252;; +Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;212;; +Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;39;; +Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;15;; +Estonia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;48;; +Estonia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;53;; +Estonia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;4;; +Estonia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;477;; +Estonia;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;1645;; +Estonia;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;1070;; +Estonia;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;92;; +Estonia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;57;; +Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;212;; +Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;137;; +Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;13;; +Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;28;; +Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;79;; +Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;69;; +Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;127;; +Estonia;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;455;; +Estonia;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;388;; +Estonia;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;34;; +Estonia;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;554;; +Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1906;; +Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1064;; +Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;140;; +Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;154;; +Estonia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;584;; +Estonia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;344;; +Estonia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;18;; +Estonia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;80;; +Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;180;; +Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;85;; +Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;17;; +Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;979;; +Estonia;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;1570;; +Estonia;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;572;; +Estonia;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;89;; +Estonia;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;472;; +Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;1046;; +Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;212;; +Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;15;; +Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;49;; +Estonia;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;266;; +Estonia;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;246;; +Estonia;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;97;; +Estonia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;1764;; +Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;3394;; +Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;1621;; +Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;269;; +Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;144;; +Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;393;; +Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;126;; +Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;14;; +Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1299;; +Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;3627;; +Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1986;; +Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;201;; +Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Estonia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;3283;; +Estonia;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;13206;; +Estonia;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;9452;; +Estonia;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;1469;; +Estonia;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;2;; +Estonia;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;1568;; +Estonia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;4211;; +Estonia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;2691;; +Estonia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;714;; +Estonia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;2;; +Estonia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;510;; +Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;1239;; +Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;916;; +Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;232;; +Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;3;; +Estonia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;206;; +Estonia;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;446;; +Estonia;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;210;; +Estonia;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;63;; +Estonia;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;12;; +Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;65;; +Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;14;; +Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;21;; +Estonia;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;57;; +Estonia;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;20;; +Estonia;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;64;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;347;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;282;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;33;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;18;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;60;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;81;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;6;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;1071;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;3581;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;1822;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;114;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;49;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;241;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;257;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;15;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;49;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;137;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;129;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;6;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;304;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;773;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;453;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;38;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1919;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4992;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1747;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;135;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;356;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;874;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;389;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;39;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;270;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;544;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;262;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;23;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;698;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;920;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;296;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;19;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;681;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;1206;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;429;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;34;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;183;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;787;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;723;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;249;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;941;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;1572;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;677;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;88;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;342;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;546;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;178;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;16;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1091;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;3077;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;2010;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;176;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;452;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;944;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;690;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;155;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;1057;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;4166;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;3755;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;593;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;387;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;638;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;305;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;56;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;259;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;602;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;404;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;54;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;22;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;45;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;14;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;27;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;33;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;25;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;6;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;32;; +Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;97;; +Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;76;; +Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;11;; +Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;6;; +Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;51;; +Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;60;; +Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;465;; +Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;1312;; +Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;831;; +Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;41;; +Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;41;; +Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;102;; +Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;105;; +Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;; +Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;25;; +Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;85;; +Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;61;; +Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;70;; +Estonia;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;178;; +Estonia;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;145;; +Estonia;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;9;; +Estonia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;616;; +Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1363;; +Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;717;; +Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;29;; +Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;1028;; +Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;2513;; +Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;1754;; +Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;145;; +Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;780;; +Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;465;; +Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;189;; +Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;26;; +Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;246;; +Estonia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;337;; +Estonia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;139;; +Estonia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;20;; +Estonia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;753;; +Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;1164;; +Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;262;; +Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;7;; +Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;62;; +Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;85;; +Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;101;; +Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;29;; +Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;214;; +Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;340;; +Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;213;; +Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;48;; +Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;805;; +Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;865;; +Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;206;; +Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;20;; +Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;295;; +Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;870;; +Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;815;; +Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;75;; +Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;119;; +Estonia;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;345;; +Estonia;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;402;; +Estonia;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;119;; +Estonia;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;134;; +Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;321;; +Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;284;; +Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;75;; +Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;510;; +Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;736;; +Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;492;; +Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;82;; +Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;324;; +Estonia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;269;; +Estonia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;123;; +Estonia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;35;; +Estonia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;11;; +Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;26;; +Estonia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;20;; +Estonia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;16;; +Estonia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;28;; +Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;67;; +Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;67;; +Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;6;; +Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;2;; +Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;6;; +Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;228;; +Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;611;; +Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;481;; +Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;36;; +Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3;; +Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;12;; +Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;8;; +Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;8;; +Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;15;; +Estonia;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;42;; +Estonia;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;29;; +Estonia;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;7887;; +Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;12541;; +Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7517;; +Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;464;; +Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;452;; +Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;629;; +Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;479;; +Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;14;; +Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;4801;; +Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;3156;; +Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;1641;; +Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;102;; +Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;193;; +Estonia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;130;; +Estonia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;65;; +Estonia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;13;; +Estonia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;27;; +Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;50;; +Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;32;; +Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;30;; +Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;99;; +Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;150;; +Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;52;; +Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;153;; +Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;85;; +Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;37;; +Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;543;; +Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;809;; +Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;655;; +Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;47;; +Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;298;; +Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;674;; +Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;577;; +Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;66;; +Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;522;; +Estonia;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;2351;; +Estonia;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;2498;; +Estonia;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;319;; +Estonia;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;840;; +Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;2722;; +Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;3274;; +Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;461;; +Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;283;; +Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;313;; +Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;259;; +Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;111;; +Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;1074;; +Estonia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;2799;; +Estonia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;887;; +Estonia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;158;; +Estonia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;52;; +Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;19;; +Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;9;; +Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;8;; +Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;49;; +Estonia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;101;; +Estonia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;64;; +Estonia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;275;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;1605;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;1509;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;155;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;1;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;4;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;11;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;7;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;2;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;23;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;10;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;5;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;2;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;3;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;1;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;12;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;2;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;12;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;52;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;30;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;4;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;13;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;7;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;30;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;28;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;1;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;3;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;8;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;37;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;13;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;4;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;3;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;5;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;7;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;14;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;56;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;48;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;5;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;17;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;1552;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;5901;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;3797;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;166;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;13;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;19;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;8;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;9;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;141;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;478;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;485;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;8;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;95;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;295;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;176;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;6;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;32;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;29;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;73;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;167;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;87;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;7;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;25;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;62;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;25;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;2;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;7;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;13;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;24;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;36;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;29;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;13;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;30;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;26;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;4;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;13;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;9;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;7;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;18;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;17;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;4;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;5;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;23;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;25;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;12;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;74;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;66;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;13;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;17;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;73;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;64;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;10;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;8;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;16;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;10;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;21;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;58;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;48;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;81;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;100;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;2669;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;9687;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;5904;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;160;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;38;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;56;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;10;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;12;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;8;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;40;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;41;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;56;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;161;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;96;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;5;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;47;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;339;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;276;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;24;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;9;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;9;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;4;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;7;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;6;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;8;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;4;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;17;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;22;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;9;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;18;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;54;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;36;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;7;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;8;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;3;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;29;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;53;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;11;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;5;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;45;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;62;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;12;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;4;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;58;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;173;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;178;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;9;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;10;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;20;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;20;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;234;; +Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;614;; +Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;570;; +Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;64;; +Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;10;; +Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;71;; +Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;72;; +Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;12;; +Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;712;; +Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;2162;; +Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;2289;; +Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;269;; +Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4;; +Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;34;; +Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;82;; +Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;24;; +Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;36;; +Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;110;; +Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;118;; +Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;13;; +Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;62;; +Estonia;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;175;; +Estonia;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;193;; +Estonia;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;44;; +Estonia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;585;; +Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1203;; +Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1323;; +Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;214;; +Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;; +Estonia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;114;; +Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;327;; +Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;443;; +Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;90;; +Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;1087;; +Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;1399;; +Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;1521;; +Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;144;; +Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;39;; +Estonia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;38;; +Estonia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;74;; +Estonia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;42;; +Estonia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;17;; +Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;26;; +Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;6;; +Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;121;; +Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;575;; +Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;1086;; +Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;485;; +Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;3;; +Estonia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;30;; +Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;65;; +Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;101;; +Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;56;; +Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;679;; +Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;1908;; +Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;2341;; +Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;328;; +Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;66;; +Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;240;; +Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;416;; +Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;111;; +Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;163;; +Estonia;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;1155;; +Estonia;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;2072;; +Estonia;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;609;; +Estonia;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;123;; +Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;605;; +Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;1103;; +Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;264;; +Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;188;; +Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;294;; +Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;505;; +Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;218;; +Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;50;; +Estonia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;157;; +Estonia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;187;; +Estonia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;58;; +Estonia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;2;; +Estonia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;13;; +Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;9;; +Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;21;; +Estonia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;54;; +Estonia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;57;; +Estonia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;15;; +Estonia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;6;; +Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;24;; +Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;18;; +Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Estonia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;7;; +Estonia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;9;; +Estonia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;98;; +Estonia;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;326;; +Estonia;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;174;; +Estonia;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;6;; +Estonia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;15;; +Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;15;; +Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;5;; +Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;8;; +Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;8;; +Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;12;; +Estonia;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;29;; +Estonia;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;15;; +Estonia;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;69;; +Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;118;; +Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;62;; +Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;34;; +Estonia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;99;; +Estonia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;46;; +Estonia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;3;; +Estonia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;71;; +Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;68;; +Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;26;; +Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;4;; +Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;33;; +Estonia;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;40;; +Estonia;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;16;; +Estonia;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;42;; +Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;74;; +Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;12;; +Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;5;; +Estonia;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;13;; +Estonia;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;19;; +Estonia;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;27;; +Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;56;; +Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;19;; +Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;31;; +Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;53;; +Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;21;; +Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;42;; +Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;127;; +Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;55;; +Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;9;; +Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;21;; +Estonia;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;65;; +Estonia;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;33;; +Estonia;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;5;; +Estonia;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;16;; +Estonia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;69;; +Estonia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;41;; +Estonia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;9;; +Estonia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;23;; +Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;23;; +Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;12;; +Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;16;; +Estonia;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;48;; +Estonia;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;13;; +Estonia;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;2;; +Estonia;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;381;; +Estonia;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;537;; +Estonia;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;277;; +Estonia;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;28;; +Estonia;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;2;; +Estonia;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;61190;; +Estonia;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;27648;; +Estonia;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;37465;; +Estonia;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;61599;; +Estonia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;4445;; +Estonia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;102888;; +Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;2;; +Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;3;; +Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;4;; +Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;4153;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1336;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;214;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;19;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;9;; +Estonia;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;39;; +Estonia;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;2;; +Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;3;; +Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;2;; +Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;5;; +Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;1;; +Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;; +Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;4;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;3;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;50;; +Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;396;; +Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;215;; +Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;22;; +Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;9;; +Estonia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;107;; +Estonia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;126;; +Estonia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;15;; +Estonia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;498;; +Estonia;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;3858;; +Estonia;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;1685;; +Estonia;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;185;; +Estonia;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;27;; +Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;270;; +Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;165;; +Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;33;; +Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;25;; +Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;202;; +Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;106;; +Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;16;; +Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;606;; +Estonia;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;3417;; +Estonia;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;1300;; +Estonia;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;114;; +Estonia;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;644;; +Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4963;; +Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1785;; +Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;138;; +Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;249;; +Estonia;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;1861;; +Estonia;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;798;; +Estonia;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;79;; +Estonia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;158;; +Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;638;; +Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;241;; +Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;14;; +Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;343;; +Estonia;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;1268;; +Estonia;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;227;; +Estonia;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;29;; +Estonia;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;91;; +Estonia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;610;; +Estonia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;108;; +Estonia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;10;; +Estonia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;52;; +Estonia;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;587;; +Estonia;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;397;; +Estonia;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;66;; +Estonia;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;245;; +Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1321;; +Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;521;; +Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;123;; +Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;222;; +Estonia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;982;; +Estonia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;292;; +Estonia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;25;; +Estonia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;163;; +Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1520;; +Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;673;; +Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;83;; +Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;61;; +Estonia;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;449;; +Estonia;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;499;; +Estonia;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;91;; +Estonia;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;25;; +Estonia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;211;; +Estonia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;194;; +Estonia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;33;; +Estonia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;100;; +Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;427;; +Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;242;; +Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;43;; +Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;81;; +Estonia;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;332;; +Estonia;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;179;; +Estonia;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;51;; +Estonia;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;9;; +Estonia;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;42;; +Estonia;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;22;; +Estonia;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;37;; +Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;134;; +Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;95;; +Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;27;; +Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;5;; +Estonia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;20;; +Estonia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;41;; +Estonia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;8;; +Estonia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;693;; +Estonia;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;1243;; +Estonia;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;695;; +Estonia;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;136;; +Estonia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;102;; +Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;238;; +Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;173;; +Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;37;; +Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;10;; +Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;48;; +Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;30;; +Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;213;; +Estonia;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;382;; +Estonia;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;279;; +Estonia;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;67;; +Estonia;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;285;; +Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;691;; +Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;211;; +Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;28;; +Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;115;; +Estonia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;288;; +Estonia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;163;; +Estonia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;27;; +Estonia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;30;; +Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;33;; +Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;11;; +Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;2179;; +Estonia;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;2808;; +Estonia;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;458;; +Estonia;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;85;; +Estonia;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;343;; +Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;692;; +Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;104;; +Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;8;; +Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;15;; +Estonia;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;72;; +Estonia;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;36;; +Estonia;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;21;; +Estonia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;1248;; +Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;2693;; +Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;1099;; +Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;328;; +Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;4;; +Estonia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;72;; +Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;173;; +Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;46;; +Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;551;; +Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1442;; +Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;716;; +Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;137;; +Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Estonia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;804;; +Estonia;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;2311;; +Estonia;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;1767;; +Estonia;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;763;; +Estonia;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;6;; +Estonia;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;223;; +Estonia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;647;; +Estonia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;457;; +Estonia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;165;; +Estonia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;3;; +Estonia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;321;; +Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;768;; +Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;361;; +Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;102;; +Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;90;; +Estonia;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;283;; +Estonia;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;176;; +Estonia;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;37;; +Estonia;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;4;; +Estonia;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;4;; +Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;24;; +Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;9;; +Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;18;; +Estonia;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;43;; +Estonia;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;14;; +Estonia;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;4;; +Estonia;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;80;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;378;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;261;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;22;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;33;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;170;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;165;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;21;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;1321;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;3518;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;1500;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;174;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;102;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;487;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;408;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;53;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;43;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;171;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;175;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;27;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;1202;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;2996;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;1212;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;101;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1589;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4402;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;931;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;68;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;545;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;1459;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;778;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;89;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;211;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;286;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;49;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;960;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;1029;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;243;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;25;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;185;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;363;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;67;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;13;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;152;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;676;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;450;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;222;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;513;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;876;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;383;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;76;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;287;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;460;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;145;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;12;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;531;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1721;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;616;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;81;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;222;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;273;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;164;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;65;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;174;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;356;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;230;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;34;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;519;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;651;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;271;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;87;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;139;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;213;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;94;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;16;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;10;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;5;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;31;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;65;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;22;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;23;; +Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;61;; +Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;21;; +Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;2;; +Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;12;; +Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;16;; +Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;631;; +Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;769;; +Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;299;; +Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;24;; +Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;6;; +Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;35;; +Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;9;; +Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;13;; +Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;38;; +Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;21;; +Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;20;; +Estonia;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;64;; +Estonia;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;38;; +Estonia;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;6;; +Estonia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;763;; +Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1061;; +Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;364;; +Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;31;; +Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;1080;; +Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;1437;; +Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;627;; +Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;78;; +Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;231;; +Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;99;; +Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;42;; +Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;178;; +Estonia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;81;; +Estonia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;30;; +Estonia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;6;; +Estonia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;96;; +Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;118;; +Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;28;; +Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;8;; +Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;22;; +Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;27;; +Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;11;; +Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;87;; +Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;97;; +Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;37;; +Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;263;; +Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;246;; +Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;69;; +Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;14;; +Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;66;; +Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;143;; +Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;103;; +Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;13;; +Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;14;; +Estonia;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;24;; +Estonia;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;34;; +Estonia;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;13;; +Estonia;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;14;; +Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;16;; +Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;15;; +Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;109;; +Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;174;; +Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;37;; +Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;15;; +Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;22;; +Estonia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;29;; +Estonia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;15;; +Estonia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;12;; +Estonia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;27;; +Estonia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;4;; +Estonia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;15;; +Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;28;; +Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;20;; +Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;3;; +Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;12;; +Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;12;; +Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;6;; +Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;68;; +Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;124;; +Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;94;; +Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;30;; +Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;11;; +Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;7;; +Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3;; +Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;8;; +Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4;; +Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;20;; +Estonia;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;38;; +Estonia;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;21;; +Estonia;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;11;; +Estonia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1510;; +Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2023;; +Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;729;; +Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;74;; +Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;225;; +Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;301;; +Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;155;; +Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;22;; +Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;1436;; +Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;758;; +Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;162;; +Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;15;; +Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;68;; +Estonia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;31;; +Estonia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;7;; +Estonia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;4;; +Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;16;; +Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;8;; +Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;35;; +Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;69;; +Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;110;; +Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;70;; +Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;35;; +Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;24;; +Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;11;; +Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;1167;; +Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;1399;; +Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;1321;; +Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;230;; +Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;906;; +Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2238;; +Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;791;; +Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;65;; +Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;61;; +Estonia;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;275;; +Estonia;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;321;; +Estonia;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;102;; +Estonia;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;128;; +Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;191;; +Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;166;; +Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;30;; +Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;68;; +Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;75;; +Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;80;; +Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;27;; +Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;62;; +Estonia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;121;; +Estonia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;86;; +Estonia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;19;; +Estonia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;7;; +Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;19;; +Estonia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;28;; +Estonia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;18;; +Estonia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;674;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;2867;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;1992;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;316;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;3;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;9;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;39;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;23;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;8;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;10;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;10;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;18;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;8;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;2;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;2;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;3;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;8;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;7;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;4;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;3;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;4;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;35;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;50;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;21;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;8;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;9;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;2;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;5;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;10;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;4;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;5;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;14;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;14;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;3;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;9;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;2;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;170;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;491;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;519;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;52;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;135;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;434;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;488;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;19;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;6990;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;13072;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;7943;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;697;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;175;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;611;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;654;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;50;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;76;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;197;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;240;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;25;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;9031;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;16800;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;6190;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;227;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2022;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3391;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1266;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;81;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;255;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;878;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;824;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;119;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;37;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;92;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;52;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;8;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;93;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;199;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;79;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;10;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;8;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;6;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;53;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;202;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;259;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;69;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;113;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;187;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;126;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;20;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;353;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;642;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;260;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;22;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;36;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;130;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;112;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;37;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;23;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;74;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;125;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;53;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;16;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;82;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;124;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;40;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;41;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;95;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;91;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;32;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;122;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;404;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;290;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;15;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;112;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;253;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;118;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;754;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;2338;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;1516;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;91;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;254;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;1019;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;819;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;30;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;3845;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;5913;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;3519;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;199;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;49;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;234;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;286;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;30;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;68;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;379;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;273;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;17;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;650;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;1973;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;1522;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;110;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;303;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;954;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;578;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;35;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;1565;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;9237;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;7942;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;478;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;2;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;32;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;44;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;36;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;12;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;27;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;31;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;10;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;5;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;11;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;43;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;65;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;12;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;26;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;61;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;55;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;110;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;409;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;374;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;22;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;27;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;140;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;220;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;39;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;4;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;41;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;95;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;17;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;27;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;107;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;168;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;36;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;8;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;16;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;40;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;16;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;51;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;133;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;70;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;9;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;16;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;42;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;110;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;80;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;6;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;490;; +Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;813;; +Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;627;; +Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;44;; +Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;55;; +Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;147;; +Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;117;; +Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;20;; +Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;1276;; +Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;1450;; +Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;1159;; +Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;156;; +Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;20;; +Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;37;; +Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;49;; +Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;14;; +Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;87;; +Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;166;; +Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;126;; +Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;16;; +Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;871;; +Estonia;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;977;; +Estonia;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;467;; +Estonia;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;53;; +Estonia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;938;; +Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;956;; +Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;610;; +Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;100;; +Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;393;; +Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;516;; +Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;421;; +Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;105;; +Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;328;; +Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;140;; +Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;103;; +Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;24;; +Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;11;; +Estonia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;10;; +Estonia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;10;; +Estonia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;4;; +Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;4;; +Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;116;; +Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;307;; +Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;572;; +Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;292;; +Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;3;; +Estonia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;33;; +Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;33;; +Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;33;; +Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;14;; +Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;516;; +Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;719;; +Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;703;; +Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;121;; +Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;151;; +Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;307;; +Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;267;; +Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;53;; +Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;66;; +Estonia;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;242;; +Estonia;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;517;; +Estonia;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;264;; +Estonia;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;52;; +Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;113;; +Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;156;; +Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;38;; +Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;86;; +Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;76;; +Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;142;; +Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;48;; +Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;52;; +Estonia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;72;; +Estonia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;62;; +Estonia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;17;; +Estonia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4;; +Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8;; +Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;9;; +Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;60;; +Estonia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;78;; +Estonia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;42;; +Estonia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;18;; +Estonia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;34;; +Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;84;; +Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;34;; +Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;5;; +Estonia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;25;; +Estonia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;13;; +Estonia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;273;; +Estonia;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;552;; +Estonia;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;202;; +Estonia;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;9;; +Estonia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;1;; +Estonia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;16;; +Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;42;; +Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;27;; +Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;; +Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;18;; +Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;8;; +Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;149;; +Estonia;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;262;; +Estonia;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;61;; +Estonia;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;6;; +Estonia;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;123;; +Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;249;; +Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;64;; +Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;75;; +Estonia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;240;; +Estonia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;94;; +Estonia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;4;; +Estonia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;33;; +Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;28;; +Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;9;; +Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;72;; +Estonia;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;95;; +Estonia;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;11;; +Estonia;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;3;; +Estonia;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;24;; +Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;37;; +Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;6;; +Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;15;; +Estonia;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;37;; +Estonia;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;20;; +Estonia;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;4;; +Estonia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;42;; +Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;105;; +Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;26;; +Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;50;; +Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;99;; +Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;37;; +Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;70;; +Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;179;; +Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;49;; +Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;8;; +Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;17;; +Estonia;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;45;; +Estonia;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;27;; +Estonia;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;5;; +Estonia;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;11;; +Estonia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;22;; +Estonia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;10;; +Estonia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;28;; +Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;37;; +Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;10;; +Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;15;; +Estonia;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;42;; +Estonia;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;18;; +Estonia;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;1;; +Estonia;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;2;; +Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;774;; +Estonia;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;1311;; +Estonia;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;406;; +Estonia;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;26;; +Estonia;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Estonia;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;597617;; +Greece;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;527073;; +Greece;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;697382;; +Greece;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;1020968;; +Greece;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;145655;; +Greece;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;766261;; +Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;9;; +Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;128;; +Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;79;; +Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;30;; +Greece;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;9;; +Greece;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;3;; +Greece;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;410;; +Greece;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;3861;; +Greece;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;1800;; +Greece;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;144;; +Greece;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;2;; +Greece;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;10;; +Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;144;; +Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;29;; +Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;6;; +Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;84;; +Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;37;; +Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;146;; +Greece;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;1125;; +Greece;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;441;; +Greece;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;30;; +Greece;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2252;; +Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;17973;; +Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7734;; +Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;537;; +Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;104;; +Greece;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;839;; +Greece;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;278;; +Greece;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;9;; +Greece;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;1884;; +Greece;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;11993;; +Greece;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;5524;; +Greece;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;330;; +Greece;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;168;; +Greece;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;1173;; +Greece;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;245;; +Greece;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;11;; +Greece;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;109;; +Greece;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;2207;; +Greece;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;710;; +Greece;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;14;; +Greece;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;7;; +Greece;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;49;; +Greece;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;14;; +Greece;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;153;; +Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;997;; +Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;292;; +Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;13;; +Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;143;; +Greece;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;857;; +Greece;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;305;; +Greece;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;20;; +Greece;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;101;; +Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1699;; +Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1282;; +Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;29;; +Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;57;; +Greece;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;806;; +Greece;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;760;; +Greece;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;26;; +Greece;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;139;; +Greece;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;1380;; +Greece;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;703;; +Greece;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;40;; +Greece;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;116;; +Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;636;; +Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;228;; +Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;11;; +Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;23;; +Greece;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;198;; +Greece;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;66;; +Greece;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;6;; +Greece;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;15;; +Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;11;; +Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;123;; +Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;470;; +Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;87;; +Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;25;; +Greece;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;53;; +Greece;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;9;; +Greece;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;2049;; +Greece;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;6873;; +Greece;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;1061;; +Greece;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;33;; +Greece;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;1;; +Greece;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;175;; +Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;644;; +Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;102;; +Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;; +Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;42;; +Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;235;; +Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;37;; +Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;703;; +Greece;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;1819;; +Greece;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;310;; +Greece;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;6;; +Greece;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2786;; +Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8577;; +Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3529;; +Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;138;; +Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;405;; +Greece;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1307;; +Greece;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;189;; +Greece;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;4;; +Greece;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;405;; +Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;1020;; +Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;195;; +Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;7;; +Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;3429;; +Greece;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;10375;; +Greece;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;1493;; +Greece;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;89;; +Greece;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;938;; +Greece;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;2935;; +Greece;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;394;; +Greece;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;7;; +Greece;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;25;; +Greece;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;56;; +Greece;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;12;; +Greece;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;14423;; +Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;39279;; +Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;9110;; +Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;576;; +Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;3;; +Greece;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;229;; +Greece;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;589;; +Greece;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;92;; +Greece;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;5;; +Greece;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1923;; +Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;13306;; +Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;4063;; +Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;88;; +Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;28403;; +Greece;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;118311;; +Greece;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;28058;; +Greece;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;627;; +Greece;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;1;; +Greece;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;14696;; +Greece;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;49582;; +Greece;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;11051;; +Greece;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;551;; +Greece;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1370;; +Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;5403;; +Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1485;; +Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;161;; +Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Greece;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;547;; +Greece;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;1450;; +Greece;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;283;; +Greece;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;26;; +Greece;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;11;; +Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;59;; +Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;149;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;526;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;71;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;28;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;77;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;19;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;1889;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;6534;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;1322;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;30;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;143;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1156;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;260;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;61;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;468;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;137;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;675;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;1754;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;292;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;8;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3098;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9526;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1783;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;69;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;1173;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;3714;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;924;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;23;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;496;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;1080;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;267;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;6;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;893;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;3258;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;535;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;8;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;5871;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;21759;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;4109;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;95;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;1;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;329;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;1683;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;564;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;18;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;5389;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;15091;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;2996;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;93;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;623;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;1904;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;431;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;10;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;2505;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;21766;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;9043;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;134;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;634;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;4198;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;743;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;15;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;6354;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;22941;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;4352;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;72;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;1269;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;2615;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;319;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;12;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;261;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;904;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;240;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;15;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;13;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;40;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;12;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;16;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;177;; +Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;410;; +Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;79;; +Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;39;; +Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;142;; +Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;30;; +Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;3106;; +Greece;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;10265;; +Greece;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;1774;; +Greece;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;41;; +Greece;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;500;; +Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2570;; +Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;461;; +Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;7;; +Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;189;; +Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;617;; +Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;136;; +Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;; +Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;1396;; +Greece;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;4103;; +Greece;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;706;; +Greece;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;17;; +Greece;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5685;; +Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;16154;; +Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2205;; +Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;57;; +Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;3175;; +Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;10485;; +Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;1783;; +Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;24;; +Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;3541;; +Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;8271;; +Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;2001;; +Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;79;; +Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;3655;; +Greece;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;7407;; +Greece;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;876;; +Greece;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;26;; +Greece;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;3910;; +Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;9980;; +Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;1480;; +Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;19;; +Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;299;; +Greece;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;517;; +Greece;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;70;; +Greece;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;3884;; +Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;9544;; +Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;1748;; +Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;42;; +Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;3500;; +Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;8070;; +Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;1337;; +Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;41;; +Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;4810;; +Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;28146;; +Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;9631;; +Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;152;; +Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;2587;; +Greece;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;7171;; +Greece;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;1693;; +Greece;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;31;; +Greece;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;2374;; +Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;7180;; +Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;1897;; +Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;42;; +Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;1051;; +Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;3915;; +Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;1189;; +Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;90;; +Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;850;; +Greece;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;2588;; +Greece;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;543;; +Greece;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;20;; +Greece;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;23;; +Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;85;; +Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;33;; +Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;35;; +Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;183;; +Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;35;; +Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;12;; +Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;5;; +Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;4151;; +Greece;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;9388;; +Greece;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;1787;; +Greece;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;47;; +Greece;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;47;; +Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;311;; +Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;57;; +Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;22;; +Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;85;; +Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;21;; +Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;124;; +Greece;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;284;; +Greece;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;54;; +Greece;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;3;; +Greece;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;54222;; +Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;142252;; +Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;34554;; +Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1521;; +Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Greece;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;2152;; +Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;3813;; +Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;537;; +Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;12;; +Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;29914;; +Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;48572;; +Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;12146;; +Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;388;; +Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;1879;; +Greece;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;2468;; +Greece;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;299;; +Greece;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;13;; +Greece;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;298;; +Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;766;; +Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;148;; +Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;3;; +Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;25;; +Greece;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;90;; +Greece;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;31;; +Greece;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;4;; +Greece;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;341;; +Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;387;; +Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;114;; +Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;1603;; +Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;3900;; +Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;1040;; +Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;38;; +Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;8187;; +Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;14696;; +Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2380;; +Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;63;; +Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;994;; +Greece;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;3251;; +Greece;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;1313;; +Greece;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;54;; +Greece;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;6710;; +Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;23833;; +Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;9445;; +Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;386;; +Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;1030;; +Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;2088;; +Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;396;; +Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;18;; +Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;16302;; +Greece;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;20606;; +Greece;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;4219;; +Greece;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;192;; +Greece;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;697;; +Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1992;; +Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1262;; +Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;67;; +Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;7;; +Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;5579;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;46949;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;42799;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;1884;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;2;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;32;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;180;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;93;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;4;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;2;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;59;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;302;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;175;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;6;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;23;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;123;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;49;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;1;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;3;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;16;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;6;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;2;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;5;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;3;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;60;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;261;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;108;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;3;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;24;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;348;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;109;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;1;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;6;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;6;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;13;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;6;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;3;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;8;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;45;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;19;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;16;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;62;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;32;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;3;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;4;; +Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;21;; +Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;6;; +Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;6;; +Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;21;; +Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;10;; +Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;3169;; +Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;18310;; +Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;8711;; +Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;275;; +Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;100;; +Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;425;; +Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;112;; +Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;20;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;156;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;60;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;827;; +Greece;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;4488;; +Greece;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;1609;; +Greece;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;26;; +Greece;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1673;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;6913;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2548;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;115;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;86;; +Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;235;; +Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;55;; +Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;449;; +Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;1432;; +Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;424;; +Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;11;; +Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;253;; +Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;1384;; +Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;250;; +Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;8;; +Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;9;; +Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;33;; +Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;14;; +Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;2;; +Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;1;; +Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;6;; +Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;167;; +Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;611;; +Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;157;; +Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;39;; +Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;146;; +Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;49;; +Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;5;; +Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;196;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;724;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;303;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;8;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;7;; +Greece;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;34;; +Greece;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;23;; +Greece;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;19;; +Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;179;; +Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;68;; +Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;15;; +Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;98;; +Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;55;; +Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;115;; +Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;978;; +Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;944;; +Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;49;; +Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;4;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;50;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;20;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;15;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;83;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;36;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;1564;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;11596;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;5586;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;91;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;20;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;100;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;37;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;23;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;116;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;24;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;73;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;558;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;202;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;8;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;173;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;848;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;322;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;685;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;4177;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;1378;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;34;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;55;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;362;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;164;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;7;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;14;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;91;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;20;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;3;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;27;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;8;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;1;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;2;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;1;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;100;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;268;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;78;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;178;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;852;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;272;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;4;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;72;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;596;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;294;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;6;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;20;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;140;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;55;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;6;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;59;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;562;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;263;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;7;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;11;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;32;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;20;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;11;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;103;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;65;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;2740;; +Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;8491;; +Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;3842;; +Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;143;; +Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;15;; +Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;63;; +Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;33;; +Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;1928;; +Greece;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;12123;; +Greece;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;4831;; +Greece;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;68;; +Greece;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;94;; +Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;448;; +Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;194;; +Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;257;; +Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1318;; +Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;392;; +Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;8;; +Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;306;; +Greece;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;1056;; +Greece;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;416;; +Greece;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;8;; +Greece;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1340;; +Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5138;; +Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1631;; +Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;27;; +Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;455;; +Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;1720;; +Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;592;; +Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;16;; +Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;5888;; +Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;25061;; +Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;9362;; +Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;171;; +Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;107;; +Greece;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;405;; +Greece;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;260;; +Greece;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;4;; +Greece;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;52;; +Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;577;; +Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;628;; +Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;19;; +Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;11;; +Greece;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;16;; +Greece;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;10;; +Greece;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;1;; +Greece;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;307;; +Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;583;; +Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;225;; +Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;7;; +Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;3450;; +Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;25176;; +Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;13734;; +Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;337;; +Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;1;; +Greece;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1173;; +Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;9419;; +Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;3805;; +Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;103;; +Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;173;; +Greece;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;3215;; +Greece;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;2294;; +Greece;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;77;; +Greece;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;493;; +Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;5207;; +Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;3293;; +Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;90;; +Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;111;; +Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;605;; +Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;278;; +Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;2;; +Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;106;; +Greece;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;567;; +Greece;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;315;; +Greece;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;13;; +Greece;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4453;; +Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;28249;; +Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;17785;; +Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1031;; +Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Greece;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;568798;; +Greece;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;121574;; +Greece;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;349452;; +Greece;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;812414;; +Greece;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;85217;; +Greece;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;803007;; +Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;35;; +Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;323;; +Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;210;; +Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;16;; +Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;4;; +Greece;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;133;; +Greece;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;102;; +Greece;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;12;; +Greece;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;815;; +Greece;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;10075;; +Greece;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;5949;; +Greece;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;598;; +Greece;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;2;; +Greece;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;39;; +Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;391;; +Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;243;; +Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;12;; +Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;51;; +Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;247;; +Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;164;; +Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;15;; +Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;1079;; +Greece;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;8947;; +Greece;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;4433;; +Greece;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;333;; +Greece;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4466;; +Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;34797;; +Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;17343;; +Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1350;; +Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;5;; +Greece;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;175;; +Greece;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;2242;; +Greece;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;1618;; +Greece;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;158;; +Greece;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;4120;; +Greece;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;24966;; +Greece;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;11785;; +Greece;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;851;; +Greece;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;237;; +Greece;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;2707;; +Greece;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;939;; +Greece;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;55;; +Greece;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;66;; +Greece;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;2755;; +Greece;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;2118;; +Greece;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;82;; +Greece;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;6;; +Greece;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;105;; +Greece;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;39;; +Greece;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;3;; +Greece;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;198;; +Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1925;; +Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;1095;; +Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;109;; +Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;241;; +Greece;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;1730;; +Greece;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;794;; +Greece;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;74;; +Greece;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;88;; +Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1595;; +Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2313;; +Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;109;; +Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;38;; +Greece;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;887;; +Greece;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;1608;; +Greece;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;77;; +Greece;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;61;; +Greece;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;691;; +Greece;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;757;; +Greece;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;80;; +Greece;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;226;; +Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1324;; +Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;561;; +Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;41;; +Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;14;; +Greece;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;223;; +Greece;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;134;; +Greece;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;15;; +Greece;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;14;; +Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;9;; +Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;134;; +Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;691;; +Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;284;; +Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;10;; +Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;22;; +Greece;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;147;; +Greece;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;58;; +Greece;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;1;; +Greece;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;1621;; +Greece;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;8756;; +Greece;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;2637;; +Greece;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;120;; +Greece;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;231;; +Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1242;; +Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;654;; +Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;24;; +Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;29;; +Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;292;; +Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;144;; +Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;682;; +Greece;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;3410;; +Greece;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;1309;; +Greece;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;119;; +Greece;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1593;; +Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9079;; +Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3778;; +Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;235;; +Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;410;; +Greece;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1954;; +Greece;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;712;; +Greece;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;54;; +Greece;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;521;; +Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;1342;; +Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;513;; +Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;19;; +Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;4374;; +Greece;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;17615;; +Greece;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;3430;; +Greece;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;243;; +Greece;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;2;; +Greece;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;646;; +Greece;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;3373;; +Greece;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;929;; +Greece;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;50;; +Greece;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;33;; +Greece;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;60;; +Greece;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;25;; +Greece;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;2;; +Greece;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;9087;; +Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;45335;; +Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;22464;; +Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;2988;; +Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;13;; +Greece;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;161;; +Greece;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;754;; +Greece;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;249;; +Greece;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;20;; +Greece;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1022;; +Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;9552;; +Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;5754;; +Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;348;; +Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;5851;; +Greece;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;51743;; +Greece;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;27645;; +Greece;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;1096;; +Greece;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;3167;; +Greece;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;28193;; +Greece;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;14930;; +Greece;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;2199;; +Greece;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;6;; +Greece;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1610;; +Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;6427;; +Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;2879;; +Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;282;; +Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;686;; +Greece;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;5232;; +Greece;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;3104;; +Greece;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;1577;; +Greece;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;9;; +Greece;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;42;; +Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;18;; +Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;125;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;503;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;203;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;8;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;52;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;263;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;108;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;1;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;2664;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;10509;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;3986;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;126;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;468;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2569;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1339;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;14;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;73;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;674;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;374;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;6;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;989;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;3716;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;1413;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;60;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2220;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8633;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2642;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;149;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;3551;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;11786;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;5859;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;259;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;861;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;1741;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;448;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;9;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;2432;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;7766;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;2230;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;31;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;3670;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;19534;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;6789;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;195;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;388;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;2283;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;844;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;52;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;3413;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;11294;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;4208;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;209;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;482;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;2004;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;851;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;56;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1561;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;14107;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;9419;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;207;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;534;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;4063;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;1002;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;21;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;1369;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;7460;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;2363;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;42;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;2473;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;3747;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;656;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;43;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;394;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;1220;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;310;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;30;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;9;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;115;; +Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;301;; +Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;91;; +Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;33;; +Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;132;; +Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;34;; +Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;1;; +Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;2099;; +Greece;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;7847;; +Greece;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;2114;; +Greece;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;31;; +Greece;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;251;; +Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1543;; +Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;836;; +Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;120;; +Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;608;; +Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;241;; +Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;452;; +Greece;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;1538;; +Greece;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;379;; +Greece;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;12;; +Greece;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5723;; +Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;14556;; +Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2776;; +Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;82;; +Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;2613;; +Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;10082;; +Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;4222;; +Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;42;; +Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;2259;; +Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;6222;; +Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;2160;; +Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;115;; +Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;1571;; +Greece;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;3331;; +Greece;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;810;; +Greece;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;18;; +Greece;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;1626;; +Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;5974;; +Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;2101;; +Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;37;; +Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;49;; +Greece;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;157;; +Greece;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;44;; +Greece;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;1;; +Greece;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;1138;; +Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;3125;; +Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;964;; +Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;35;; +Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;1373;; +Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;3245;; +Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;924;; +Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;38;; +Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1867;; +Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;14470;; +Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;8286;; +Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;187;; +Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;461;; +Greece;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;1783;; +Greece;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;735;; +Greece;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;18;; +Greece;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;353;; +Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;1778;; +Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;1018;; +Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;24;; +Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;784;; +Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;3714;; +Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;1439;; +Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;127;; +Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;231;; +Greece;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;938;; +Greece;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;295;; +Greece;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;10;; +Greece;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;53;; +Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;110;; +Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;781;; +Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;414;; +Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;17;; +Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;13;; +Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;63;; +Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;39;; +Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;3;; +Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;2361;; +Greece;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;8377;; +Greece;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;2538;; +Greece;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;98;; +Greece;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;77;; +Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;445;; +Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;257;; +Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;25;; +Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;192;; +Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;116;; +Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;123;; +Greece;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;481;; +Greece;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;224;; +Greece;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;10;; +Greece;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;37976;; +Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;117855;; +Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;40166;; +Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2359;; +Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Greece;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1366;; +Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;4738;; +Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;1783;; +Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;38;; +Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;32585;; +Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;48337;; +Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;14576;; +Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;556;; +Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;1497;; +Greece;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;3075;; +Greece;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;560;; +Greece;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;14;; +Greece;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;233;; +Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;841;; +Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;324;; +Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;5;; +Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;24;; +Greece;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;120;; +Greece;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;65;; +Greece;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;5;; +Greece;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;125;; +Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;248;; +Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;112;; +Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;4401;; +Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;10828;; +Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;3526;; +Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;136;; +Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;36839;; +Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;88336;; +Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;9006;; +Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;346;; +Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;566;; +Greece;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;2490;; +Greece;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;1422;; +Greece;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;137;; +Greece;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;1154;; +Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;5601;; +Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;3148;; +Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;87;; +Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;2;; +Greece;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;1133;; +Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;2260;; +Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;686;; +Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;33;; +Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;2612;; +Greece;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;6341;; +Greece;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;1897;; +Greece;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;187;; +Greece;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;46;; +Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;247;; +Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;215;; +Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;26;; +Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;7;; +Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;9;; +Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;23686;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;115499;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;82777;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;5453;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;11;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;108;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;360;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;174;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;13;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;6;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;20;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;14;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;2;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;159;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;660;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;287;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;18;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;2;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;2;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;1;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;159;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;662;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;436;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;21;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;1;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;1;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;1;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;1;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;7;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;42;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;26;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;2;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;1;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;18;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;7;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;735;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;2603;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;1396;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;78;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;123;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;844;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;659;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;23;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;5;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;27;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;25;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;2;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;8;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;48;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;49;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;3;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;4;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;23;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;15;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;17;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;83;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;42;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;2;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;122;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;385;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;179;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;14;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;179;; +Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;503;; +Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;162;; +Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;6;; +Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;275;; +Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;1058;; +Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;454;; +Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;5;; +Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;21140;; +Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;75420;; +Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;35930;; +Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;1079;; +Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1682;; +Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6715;; +Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2758;; +Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;28;; +Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;343;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1845;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1032;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;17;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;43977;; +Greece;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;143515;; +Greece;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;61758;; +Greece;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;1186;; +Greece;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;16259;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;43837;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;17150;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;533;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;711;; +Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;3370;; +Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;1740;; +Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;32;; +Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;1033;; +Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;2826;; +Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;1186;; +Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;43;; +Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;1241;; +Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;5813;; +Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;2235;; +Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;55;; +Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;39;; +Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;198;; +Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;65;; +Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;65;; +Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;61;; +Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;26;; +Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;882;; +Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;2740;; +Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;1114;; +Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;43;; +Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;264;; +Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;893;; +Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;263;; +Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;6;; +Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1659;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;6513;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3905;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;106;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;62;; +Greece;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;345;; +Greece;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;213;; +Greece;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;4;; +Greece;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;227;; +Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;1374;; +Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;977;; +Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;17;; +Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;155;; +Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;743;; +Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;415;; +Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;18;; +Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;598;; +Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;2471;; +Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;1174;; +Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;53;; +Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;10;; +Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;9;; +Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;188;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;926;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;418;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;12;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;582;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;2654;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;1076;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;29;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;8000;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;33826;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;12716;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;320;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;303;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1755;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;762;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;370;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2527;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1059;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;18;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;2410;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;11742;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;5281;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;146;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3684;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;13930;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3659;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;83;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;11051;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;68288;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;31565;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;1155;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;319;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;949;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;307;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;12;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;92;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;545;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;209;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;5;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;39;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;215;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;71;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;10;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;35;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;15;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;225;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;888;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;339;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;8;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;830;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;3797;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;1780;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;51;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;718;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;6251;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3459;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;66;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;349;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;1807;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;793;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;22;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;275;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;2133;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;1207;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;30;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;65;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;289;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;121;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;7;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;59;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;363;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;124;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;3;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;23;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;15;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;14410;; +Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;28549;; +Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;9470;; +Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;469;; +Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;204;; +Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;698;; +Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;288;; +Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;5;; +Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;7241;; +Greece;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;19562;; +Greece;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;6443;; +Greece;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;136;; +Greece;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;641;; +Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1748;; +Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;772;; +Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;6;; +Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1458;; +Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5248;; +Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2491;; +Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;89;; +Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;6539;; +Greece;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;14885;; +Greece;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;5471;; +Greece;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;123;; +Greece;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5455;; +Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9313;; +Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2370;; +Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;95;; +Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;2486;; +Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;6699;; +Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;2053;; +Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;59;; +Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;6981;; +Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;12171;; +Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;3325;; +Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;138;; +Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;197;; +Greece;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;562;; +Greece;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;220;; +Greece;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;6;; +Greece;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;52;; +Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;262;; +Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;169;; +Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;1;; +Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;27;; +Greece;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;32;; +Greece;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;14;; +Greece;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;436;; +Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;703;; +Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;195;; +Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1910;; +Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;7546;; +Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;3465;; +Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;116;; +Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;1;; +Greece;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1721;; +Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;11240;; +Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;6838;; +Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;161;; +Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;66;; +Greece;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;400;; +Greece;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;282;; +Greece;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;16;; +Greece;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;176;; +Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;999;; +Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;709;; +Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;23;; +Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;209;; +Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;733;; +Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;386;; +Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;15;; +Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;302;; +Greece;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;872;; +Greece;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;349;; +Greece;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;14;; +Greece;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;349;; +Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2107;; +Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;854;; +Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;49;; +Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Greece;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;c; +Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;c; +Spain;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;c; +Spain;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;c; +Spain;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;c; +Spain;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;c; +Spain;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;c; +Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Spain;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Spain;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;c; +Spain;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;c; +Spain;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;c; +Spain;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;c; +Spain;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;c; +Spain;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Finland;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Finland;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;2732088;; +France;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;1586306;; +France;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;3005177;; +France;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;5142625;; +France;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;1130338;; +France;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;5876234;; +France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;16;u; +France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;21;u; +France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;4;u; +France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;73;; +France;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;52;; +France;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;7;u; +France;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;u; +France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;u; +France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;11;u; +France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;11;u; +France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4;u; +France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;10;u; +France;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;22;u; +France;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;4;u; +France;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;76;; +France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;47;u; +France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;10;u; +France;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;28;u; +France;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;7;u; +France;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;305;; +France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;202;; +France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;16;u; +France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;11;u; +France;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;43;u; +France;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;7;u; +France;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;23;u; +France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;15;u; +France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;4;u; +France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;10;u; +France;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;5;u; +France;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;3;u; +France;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;46;u; +France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;47;u; +France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;8;u; +France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;81;; +France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;56;; +France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;16041;; +France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;13194;; +France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;1036;; +France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;10;u; +France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;8;u; +France;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;354;; +France;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;151;; +France;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;13;u; +France;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;4;u; +France;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;514;; +France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;496;; +France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;66;; +France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;66;; +France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;68;; +France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;1;u; +France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;164;; +France;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;134;; +France;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;17;u; +France;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;u; +France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;12;u; +France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;9;u; +France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;1092;; +France;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;1162;; +France;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;478;; +France;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;47;u; +France;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;245;u; +France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;1536;u; +France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;989;u; +France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;87;u; +France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;4;u; +France;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;67;u; +France;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;200;u; +France;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;74;u; +France;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;4;u; +France;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;8942;u; +France;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;36106;u; +France;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;10552;u; +France;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;156;u; +France;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;10;u; +France;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;771;u; +France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3231;u; +France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1005;u; +France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;470;u; +France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1872;u; +France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;548;u; +France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;11;u; +France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;4;u; +France;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;1890;u; +France;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;6576;u; +France;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;2895;u; +France;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;70;u; +France;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6613;u; +France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;28777;u; +France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9772;u; +France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;257;u; +France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;43;u; +France;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;2214;u; +France;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;13191;u; +France;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;5596;u; +France;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;59;u; +France;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;4607;u; +France;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;19290;u; +France;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;8007;u; +France;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;427;u; +France;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;27;u; +France;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;5880;u; +France;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;20563;u; +France;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;5483;u; +France;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;66;u; +France;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;6;u; +France;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;8317;u; +France;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;43613;u; +France;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;16088;u; +France;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;146;u; +France;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;17;u; +France;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;804;u; +France;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;4045;u; +France;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;1773;u; +France;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;34;u; +France;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;13;u; +France;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;11630;u; +France;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;35597;u; +France;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;10329;u; +France;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;170;u; +France;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;23;u; +France;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;3229;u; +France;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;14691;u; +France;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;4591;u; +France;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;125;u; +France;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;1;u; +France;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;8064;u; +France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;43400;u; +France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;29563;u; +France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;240;u; +France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;19;u; +France;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;3208;u; +France;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;19761;u; +France;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;13759;u; +France;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;119;u; +France;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;49;u; +France;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;5313;u; +France;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;42025;u; +France;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;30746;u; +France;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;694;u; +France;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;46;u; +France;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;1261;u; +France;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;5521;u; +France;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;2446;u; +France;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;67;u; +France;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;3074;u; +France;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;14235;u; +France;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;6262;u; +France;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;94;u; +France;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;7;u; +France;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;30;u; +France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;178;u; +France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;179;u; +France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;105;u; +France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;906;u; +France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;551;u; +France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;22;u; +France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;7442;u; +France;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;16335;u; +France;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;6577;u; +France;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;493;u; +France;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;441;; +France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;2058;; +France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1024;; +France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;66;; +France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;75;; +France;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;296;; +France;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;84;; +France;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;19081;; +France;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;63320;; +France;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;15979;; +France;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;180;; +France;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;25;u; +France;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1968;; +France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6544;; +France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2058;; +France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;u; +France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;743;; +France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2206;; +France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;658;; +France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;u; +France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;3758;; +France;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;8374;; +France;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;2627;; +France;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;58;; +France;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;15;u; +France;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;22803;; +France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;67880;; +France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;25486;; +France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;608;; +France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;53;; +France;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;2865;; +France;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;13607;; +France;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;5640;; +France;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;45;u; +France;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;2869;; +France;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;6657;; +France;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;2366;; +France;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;65;; +France;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;27;u; +France;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;21599;; +France;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;57494;; +France;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;13990;; +France;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;455;; +France;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;71;; +France;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;9601;; +France;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;31697;; +France;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;10351;; +France;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;87;; +France;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;18;u; +France;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;1462;; +France;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;4949;; +France;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;2130;; +France;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;65;; +France;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;5;u; +France;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;48973;; +France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;120441;; +France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;32734;; +France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;1120;; +France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;116;; +France;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;8005;; +France;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;19999;; +France;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;5802;; +France;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;155;; +France;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;9;u; +France;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;13483;; +France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;63319;; +France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;36891;; +France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;381;; +France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;57;; +France;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;103999;; +France;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;442211;; +France;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;180377;; +France;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;2154;; +France;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;531;; +France;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;48354;; +France;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;130475;; +France;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;73729;; +France;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;1791;; +France;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;152;; +France;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;8997;; +France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;25951;; +France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;10773;; +France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;719;; +France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;116;; +France;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;8741;; +France;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;30168;; +France;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;12719;; +France;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;430;; +France;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;85;; +France;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;146;; +France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;726;; +France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;497;; +France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;12;u; +France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;7;u; +France;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;214;; +France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1228;; +France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;662;; +France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;14;u; +France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;1;u; +France;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;35014;; +France;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;63638;; +France;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;29277;; +France;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;2721;; +France;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;2433;; +France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;5723;; +France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;2733;; +France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;77;; +France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;18;u; +France;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;152;; +France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;607;; +France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;324;; +France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;30796;; +France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;97936;; +France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;36702;; +France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;353;; +France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;89;; +France;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2801;; +France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;10461;; +France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4653;; +France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;21;u; +France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2300;; +France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;6576;; +France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2095;; +France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;25;u; +France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;3;u; +France;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;7834;; +France;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;22956;; +France;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;8088;; +France;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;101;; +France;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;31;u; +France;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;62320;; +France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;123815;; +France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;37682;; +France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;547;; +France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;77;; +France;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;11761;; +France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;50874;; +France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;19564;; +France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;103;; +France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;24;u; +France;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;8858;; +France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;15971;; +France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;5284;; +France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;69;; +France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;15;u; +France;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;11093;; +France;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;28493;; +France;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;13099;; +France;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;102;; +France;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;5;u; +France;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;36108;; +France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;98383;; +France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;48764;; +France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;320;; +France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;62;; +France;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;16142;; +France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;38758;; +France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;16606;; +France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;549;; +France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;31;u; +France;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;46829;; +France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;97457;; +France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;30988;; +France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;402;; +France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;37;u; +France;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;31269;; +France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;54021;; +France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;14071;; +France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;240;; +France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;30;u; +France;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;44162;; +France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;177939;; +France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;110157;; +France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;490;; +France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;94;; +France;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;41159;; +France;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;73038;; +France;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;33239;; +France;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;326;; +France;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;61;; +France;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;166566;; +France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;430456;; +France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;184629;; +France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;2112;; +France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;630;; +France;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;12689;; +France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;22935;; +France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;7997;; +France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;142;; +France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;6;u; +France;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;20614;; +France;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;46637;; +France;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;19059;; +France;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;761;; +France;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;522;; +France;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;220;; +France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1045;; +France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;755;; +France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;11;u; +France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;348;; +France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2004;; +France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;994;; +France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;16;u; +France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;73744;; +France;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;112171;; +France;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;50688;; +France;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;3235;; +France;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;1450;; +France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;7599;; +France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;3977;; +France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;72;; +France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;4;u; +France;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;258;; +France;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;998;; +France;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;475;; +France;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;12;u; +France;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;18953;; +France;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;68412;; +France;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;33528;; +France;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;466;; +France;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;92;; +France;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1348;; +France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3123;; +France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1440;; +France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;42;u; +France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;9;u; +France;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2346;; +France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;8058;; +France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2795;; +France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;45;u; +France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;8;u; +France;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;14259;; +France;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;48228;; +France;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;18849;; +France;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;399;; +France;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;57;; +France;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;39880;; +France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;114213;; +France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;46271;; +France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;825;; +France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;187;; +France;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;26540;; +France;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;87437;; +France;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;32257;; +France;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;440;; +France;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;105;; +France;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;19339;; +France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;30819;; +France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;11089;; +France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;252;; +France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;41;u; +France;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;8821;; +France;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;18060;; +France;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;8288;; +France;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;116;; +France;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;33;u; +France;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;42109;; +France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;78082;; +France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;39778;; +France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;332;; +France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;103;; +France;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;10693;; +France;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;23367;; +France;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;10187;; +France;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;173;; +France;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;29;u; +France;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;37205;; +France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;86270;; +France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;32260;; +France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;686;; +France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;155;; +France;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;34558;; +France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;54240;; +France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;15738;; +France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;324;; +France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;117;; +France;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;46966;; +France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;226952;; +France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;134383;; +France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;775;; +France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;149;; +France;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;16088;; +France;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;63223;; +France;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;34348;; +France;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;284;; +France;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;37;u; +France;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;26545;; +France;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;91796;; +France;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;48496;; +France;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;461;; +France;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;74;; +France;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;6491;; +France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;16812;; +France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;7226;; +France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;191;; +France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;74;; +France;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;13277;; +France;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;39739;; +France;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;20050;; +France;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;383;; +France;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;198;; +France;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;313;; +France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1626;; +France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1306;; +France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;19;u; +France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;305;; +France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1851;; +France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1075;; +France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;42;u; +France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;4;u; +France;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;76005;; +France;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;129251;; +France;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;74142;; +France;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;4984;; +France;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;1925;; +France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;4429;; +France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;2614;; +France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;167;; +France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;22;u; +France;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;139;; +France;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;210;; +France;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;60;; +France;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;31323;; +France;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;52266;; +France;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;18255;; +France;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;304;; +France;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;54;; +France;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;469;; +France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;782;; +France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;233;; +France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;19;u; +France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;460;; +France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;967;; +France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;353;; +France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;u; +France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;2480;; +France;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;5401;; +France;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;1923;; +France;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;106;; +France;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;252534;; +France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;397447;; +France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;134698;; +France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4954;; +France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;578;; +France;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;4535;; +France;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;15280;; +France;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;3097;; +France;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;117;; +France;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;30;u; +France;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;86475;; +France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;96106;; +France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;36764;; +France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;2411;; +France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;332;; +France;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;4855;; +France;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;7486;; +France;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;2767;; +France;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;208;; +France;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;40;u; +France;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;7345;; +France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;11167;; +France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;4223;; +France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;233;; +France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;45;u; +France;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;6965;; +France;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;16608;; +France;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;13226;; +France;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;962;; +France;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;100;; +France;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;6735;; +France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;11977;; +France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;5184;; +France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;463;; +France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;78;; +France;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;23190;; +France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;28619;; +France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;9528;; +France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;503;; +France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;57;; +France;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;17981;; +France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;46789;; +France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;19113;; +France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;358;; +France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;38;u; +France;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;12430;; +France;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;23428;; +France;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;10129;; +France;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;271;; +France;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;45;u; +France;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;112202;; +France;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;414239;; +France;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;183231;; +France;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;2459;; +France;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;321;; +France;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;5601;; +France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;7561;; +France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;2638;; +France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;160;; +France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;23;u; +France;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;82832;; +France;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;93856;; +France;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;26992;; +France;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;1025;; +France;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;168;; +France;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3166;; +France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;14305;; +France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;8456;; +France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;222;; +France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;39;u; +France;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;70;; +France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;162;; +France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;72;; +France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;14;u; +France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;153695;; +France;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;164550;; +France;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;72066;; +France;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;5666;; +France;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;12801;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;71923;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;59292;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;5542;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;779;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;4;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;57;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;8;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;319;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;1056;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;723;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;66;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;12;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;16;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;17;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;33;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;47;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;262;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;174;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;18;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;803;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1947;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;963;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;69;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;12;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;28;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;86;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;99;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;24;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;151;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;252;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;199;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;31;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;13;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;51;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;44;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;4;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;46;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;65;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;108;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;4;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;3;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;50;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;246;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;130;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;10;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;154;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;885;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;431;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;20;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;1551;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;2479;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;948;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;70;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;14;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;759;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1406;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;616;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;31;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;15;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;800;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;545;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;251;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;29;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;15;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;752;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;1481;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;845;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;38;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;11;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;1056;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;631;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;115;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;41;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;4;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;461;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;912;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;430;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;33;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;16;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;60;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;161;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;198;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;u; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;15501;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;11484;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;6432;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;1878;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;160;; +France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;337;; +France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;223;; +France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;16;u; +France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;14;u; +France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;46;u; +France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;11;u; +France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;3;u; +France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;16677;; +France;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;55207;; +France;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;25458;; +France;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;1206;; +France;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;334;; +France;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;100;; +France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;157;; +France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;63;; +France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;u; +France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;63;; +France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;205;; +France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;85;; +France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;u; +France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;5438;; +France;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;10827;; +France;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;4444;; +France;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;275;; +France;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;44;u; +France;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6270;; +France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;14536;; +France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7720;; +France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;457;; +France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;110;; +France;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;430;; +France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;1198;; +France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;447;; +France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;25;u; +France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;1284;; +France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;2487;; +France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;1358;; +France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;47;u; +France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;11;u; +France;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;721;; +France;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;2336;; +France;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;1100;; +France;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;46;u; +France;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;7;u; +France;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;205;; +France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;636;; +France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;488;; +France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;10;u; +France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;131;; +France;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;432;; +France;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;272;; +France;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;12;u; +France;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;5;u; +France;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;590;; +France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;1562;; +France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;687;; +France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;38;u; +France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;2974;; +France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;5384;; +France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;1713;; +France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;60;; +France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;20;u; +France;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1257;; +France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;5850;; +France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4475;; +France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;39;u; +France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;16;u; +France;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;1183;; +France;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;3163;; +France;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;1716;; +France;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;48;u; +France;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;5988;; +France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;18102;; +France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;8605;; +France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;109;; +France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;54;; +France;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;737;; +France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;2264;; +France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;1118;; +France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;82;; +France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;9;u; +France;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;3582;; +France;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;11793;; +France;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;6115;; +France;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;268;; +France;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;90;; +France;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;33;u; +France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;189;; +France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;238;; +France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;6;u; +France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;10;u; +France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;68;; +France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;32;u; +France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;18999;; +France;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;30140;; +France;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;17193;; +France;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;1265;; +France;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;734;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;2553;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;1032;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;34;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;30;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;141;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;49;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;29341;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;138280;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;72013;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;1069;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;263;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;159;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;363;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;174;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;7;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;12;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;360;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1512;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;511;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;45;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;7;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;593;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;1517;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;653;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;127;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;27;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;7981;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;23828;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9419;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;354;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;89;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;8244;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;29706;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;11368;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;314;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;59;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;1701;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;2754;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;1029;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;16;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;7;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;452;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;1519;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;887;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;37;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;330;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;1401;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;760;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;32;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;3;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;127;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;418;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;220;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;15;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;1;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;2121;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;6645;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;3253;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;93;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;13;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;15124;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;22988;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;6565;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;151;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;54;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;517;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1521;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1072;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;16;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;4;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;612;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;1953;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;957;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;3;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;15;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;2145;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;7786;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;3559;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;83;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;15;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;144;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;357;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;177;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;4;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;4;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;1132;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;4361;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;2573;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;121;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;49;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;33;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;170;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;171;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;4;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;11;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;11;u; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;21215;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;31866;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;22750;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;1548;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;575;; +France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;3011;; +France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;2642;; +France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;80;; +France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;19;u; +France;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;77;; +France;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;230;; +France;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;96;; +France;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;3956;; +France;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;18808;; +France;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;11104;; +France;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;132;; +France;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;32;u; +France;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;119;; +France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;410;; +France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;382;; +France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;841;; +France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3140;; +France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1616;; +France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;29;u; +France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;4;u; +France;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;794;; +France;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;2925;; +France;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;1920;; +France;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;73;; +France;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;19;u; +France;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;21458;; +France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;46838;; +France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;19218;; +France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;286;; +France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;53;; +France;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;2852;; +France;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;8545;; +France;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;4130;; +France;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;71;; +France;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;5;u; +France;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;20997;; +France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;48743;; +France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;21412;; +France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;333;; +France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;50;; +France;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;445;; +France;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;1844;; +France;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;1323;; +France;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;47;u; +France;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;7;u; +France;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;1027;; +France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;3592;; +France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;3408;; +France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;46;u; +France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;2248;; +France;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;9186;; +France;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;7546;; +France;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;159;; +France;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;13;u; +France;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;1805;; +France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;6681;; +France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;4668;; +France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;138;; +France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;6;u; +France;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;24418;; +France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;93221;; +France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;51816;; +France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;713;; +France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;93;; +France;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;19383;; +France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;104844;; +France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;69872;; +France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;869;; +France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;155;; +France;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;19932;; +France;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;85781;; +France;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;51979;; +France;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;491;; +France;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;61;; +France;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;88871;; +France;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;338328;; +France;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;217823;; +France;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;3951;; +France;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;949;; +France;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;1518;; +France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;4435;; +France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;2849;; +France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;37;u; +France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;8;u; +France;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;5703;; +France;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;19858;; +France;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;11743;; +France;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;432;; +France;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;279;; +France;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5722;; +France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;52081;; +France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;46528;; +France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1088;; +France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;300;; +France;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;28;u; +France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;231;; +France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;174;; +France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;u; +France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;72641;; +France;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;97891;; +France;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;49624;; +France;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;3318;; +France;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;408442;; +France;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;114490;; +France;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;79205;; +France;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;11759;; +France;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +France;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;79;; +France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;2217733;; +France;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;694330;; +France;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;2471558;; +France;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;3935517;; +France;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;480113;; +France;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;6154521;; +France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;108;; +France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;242;; +France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;54;; +France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;16;u; +France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;444;; +France;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;1089;; +France;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;224;; +France;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;10;u; +France;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;3;u; +France;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;10;u; +France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;27;u; +France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;24;u; +France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;u; +France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;17;u; +France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;47;u; +France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;26;u; +France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;u; +France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;364;; +France;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;443;; +France;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;124;; +France;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;332;; +France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;432;; +France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;89;; +France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;153;; +France;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;474;; +France;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;129;; +France;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;1635;; +France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;1538;; +France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;301;; +France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;94;; +France;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;205;; +France;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;33;u; +France;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;4;u; +France;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;43;u; +France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;162;; +France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;41;u; +France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;35;u; +France;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;111;; +France;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;20;u; +France;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;135;; +France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;377;; +France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;76;; +France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;3;u; +France;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;453;; +France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;491;; +France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;151;; +France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;13;u; +France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;77273;; +France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;118822;; +France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;19202;; +France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;457;; +France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;233;; +France;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;925;; +France;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;1218;; +France;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;233;; +France;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;4;u; +France;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;584;; +France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;1129;; +France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;229;; +France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;5;u; +France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;353;; +France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;511;; +France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;150;; +France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;576;; +France;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;958;; +France;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;257;; +France;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;6;u; +France;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8;u; +France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;3;u; +France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;87;; +France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;u; +France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;4197;; +France;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;5335;; +France;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;3213;; +France;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;223;; +France;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;924;u; +France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;5500;u; +France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;3690;u; +France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;135;u; +France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;164;u; +France;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;1023;u; +France;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;648;u; +France;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;35;u; +France;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;18599;u; +France;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;115981;u; +France;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;55837;u; +France;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;846;u; +France;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;110;u; +France;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1685;u; +France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;8195;u; +France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;5817;u; +France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;30;u; +France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;768;u; +France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5034;u; +France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2263;u; +France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;22;u; +France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;9;u; +France;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;10204;u; +France;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;45031;u; +France;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;23401;u; +France;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;341;u; +France;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;8723;u; +France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;68195;u; +France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;29722;u; +France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;649;u; +France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;35;u; +France;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;3496;u; +France;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;34466;u; +France;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;20268;u; +France;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;360;u; +France;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;6650;u; +France;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;37302;u; +France;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;14727;u; +France;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;426;u; +France;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;22;u; +France;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;17194;u; +France;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;53564;u; +France;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;14969;u; +France;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;194;u; +France;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;5;u; +France;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;9723;u; +France;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;64353;u; +France;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;35030;u; +France;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;435;u; +France;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;37;u; +France;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;851;u; +France;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;5476;u; +France;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;3224;u; +France;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;125;u; +France;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;7;u; +France;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;17154;u; +France;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;61601;u; +France;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;25999;u; +France;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;557;u; +France;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;64;u; +France;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;4377;u; +France;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;23255;u; +France;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;10342;u; +France;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;300;u; +France;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;35;u; +France;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;6154;u; +France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;44346;u; +France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;37889;u; +France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;467;u; +France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;38;u; +France;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;2711;u; +France;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;17311;u; +France;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;15253;u; +France;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;276;u; +France;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;1;u; +France;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;2964;u; +France;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;37195;u; +France;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;43202;u; +France;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;2372;u; +France;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;86;u; +France;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;1700;u; +France;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;9619;u; +France;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;4375;u; +France;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;213;u; +France;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;25;u; +France;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;2331;u; +France;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;15072;u; +France;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;9198;u; +France;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;214;u; +France;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;14;u; +France;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5;u; +France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;59;u; +France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;32;u; +France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;144;u; +France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1368;u; +France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;879;u; +France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;161;u; +France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;53;u; +France;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;8186;u; +France;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;17840;u; +France;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;12855;u; +France;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;1288;u; +France;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;524;; +France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;3142;; +France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;2272;; +France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;98;; +France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;187;; +France;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;846;; +France;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;578;; +France;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;32989;; +France;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;145592;; +France;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;60449;; +France;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;642;; +France;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;102;; +France;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3885;; +France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;15367;; +France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;10233;; +France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;15;u; +France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;7;u; +France;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1166;; +France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5029;; +France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2245;; +France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;30;u; +France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;8;u; +France;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;13495;; +France;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;36248;; +France;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;14621;; +France;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;323;; +France;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;31223;; +France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;111286;; +France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;42301;; +France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;886;; +France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;55;; +France;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;3742;; +France;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;24857;; +France;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;14924;; +France;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;209;; +France;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;6;u; +France;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;2316;; +France;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;5833;; +France;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;2454;; +France;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;108;; +France;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;22;u; +France;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;54266;; +France;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;143139;; +France;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;37439;; +France;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;947;; +France;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;106;; +France;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;9888;; +France;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;41463;; +France;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;18517;; +France;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;389;; +France;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;36;u; +France;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;1451;; +France;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;5293;; +France;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;2865;; +France;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;84;; +France;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;13;u; +France;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;55590;; +France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;177518;; +France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;88973;; +France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;5860;; +France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;290;; +France;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;7991;; +France;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;23854;; +France;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;9682;; +France;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;434;; +France;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;24;u; +France;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;9419;; +France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;53288;; +France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;38673;; +France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;551;; +France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;52;; +France;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;43289;; +France;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;226161;; +France;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;123992;; +France;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;2466;; +France;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;154;; +France;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;18957;; +France;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;66436;; +France;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;62203;; +France;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;3725;; +France;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;218;; +France;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;8078;; +France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;31645;; +France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;14632;; +France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;1258;; +France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;91;; +France;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;6488;; +France;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;29063;; +France;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;15486;; +France;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;3178;; +France;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;746;; +France;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;35;u; +France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;208;; +France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;104;; +France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;12;u; +France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;135;; +France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1439;; +France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;894;; +France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;36;u; +France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;3;u; +France;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;30219;; +France;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;48918;; +France;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;26693;; +France;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;3056;; +France;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;4834;; +France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;12655;; +France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;6302;; +France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;75;; +France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;372;; +France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;1884;; +France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;992;; +France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;4;u; +France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;70005;; +France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;250226;; +France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;108040;; +France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;568;; +France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;73;; +France;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;8805;; +France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;31587;; +France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;15883;; +France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;48;u; +France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;39;u; +France;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;5519;; +France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;18676;; +France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;7606;; +France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;55;; +France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;42698;; +France;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;103633;; +France;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;38917;; +France;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;394;; +France;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;42;u; +France;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;59348;; +France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;141332;; +France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;50730;; +France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;780;; +France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;84;; +France;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;16110;; +France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;66997;; +France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;33015;; +France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;208;; +France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;28;u; +France;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;9990;; +France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;25702;; +France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;7379;; +France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;151;; +France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;20;u; +France;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;23197;; +France;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;47064;; +France;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;24084;; +France;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;136;; +France;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;18;u; +France;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;22743;; +France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;64669;; +France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;38804;; +France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;505;; +France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;53;; +France;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;12257;; +France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;38007;; +France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;20014;; +France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;727;; +France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;57;; +France;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;46134;; +France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;88261;; +France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;31328;; +France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;678;; +France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;90;; +France;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;29222;; +France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;49510;; +France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;13955;; +France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;217;; +France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;40;u; +France;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;29454;; +France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;140283;; +France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;79742;; +France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;378;; +France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;83;; +France;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;25018;; +France;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;35034;; +France;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;13352;; +France;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;222;; +France;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;43;u; +France;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;34291;; +France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;109230;; +France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;47347;; +France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;374;; +France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;77;; +France;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;19083;; +France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;32033;; +France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;8940;; +France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;156;; +France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;21;u; +France;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;12541;; +France;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;31825;; +France;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;13213;; +France;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;381;; +France;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;194;; +France;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;58;; +France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;222;; +France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;154;; +France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;167;; +France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1202;; +France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;689;; +France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;15;u; +France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;72037;; +France;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;88627;; +France;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;46405;; +France;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;3518;; +France;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;428;; +France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;1229;; +France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;699;; +France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;22;u; +France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;77;; +France;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;176;; +France;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;112;; +France;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;7;u; +France;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;7080;; +France;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;21428;; +France;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;10014;; +France;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;79;; +France;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;675;; +France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1906;; +France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1069;; +France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;16;u; +France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;985;; +France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3596;; +France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1441;; +France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;13;u; +France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;4;u; +France;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;3180;; +France;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;5930;; +France;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;2174;; +France;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;27;u; +France;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;12221;; +France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;34653;; +France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;11274;; +France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;153;; +France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;26;u; +France;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;21681;; +France;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;73818;; +France;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;37736;; +France;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;310;; +France;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;61;; +France;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;8169;; +France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;15466;; +France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;4613;; +France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;122;; +France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;21;u; +France;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;5194;; +France;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;7394;; +France;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;4028;; +France;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;47;u; +France;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;5;u; +France;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;14917;; +France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;22874;; +France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;13574;; +France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;114;; +France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;21;u; +France;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;2511;; +France;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;4665;; +France;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;2233;; +France;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;30;u; +France;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;5;u; +France;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;11820;; +France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;15949;; +France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;4940;; +France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;100;; +France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;44;u; +France;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;9634;; +France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;13203;; +France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;3250;; +France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;53;; +France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;12;u; +France;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;16631;; +France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;77438;; +France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;40023;; +France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;233;; +France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;33;u; +France;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;3808;; +France;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;11669;; +France;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;5518;; +France;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;53;; +France;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;3605;; +France;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;11843;; +France;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;6729;; +France;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;90;; +France;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;34;u; +France;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;2789;; +France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;5794;; +France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;2344;; +France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;29;u; +France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;3074;; +France;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;8169;; +France;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;3763;; +France;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;80;; +France;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;12;u; +France;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;57;; +France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;118;; +France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;55;; +France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;3;u; +France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;107;; +France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;917;; +France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;528;; +France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;29;u; +France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;23956;; +France;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;23539;; +France;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;13728;; +France;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;1120;; +France;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;1471;; +France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;3693;; +France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;2020;; +France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;107;; +France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;56;; +France;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;152;; +France;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;58;; +France;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;7;u; +France;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;7064;; +France;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;14110;; +France;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;6491;; +France;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;150;; +France;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;300;; +France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;746;; +France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;420;; +France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;21;u; +France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;1;u; +France;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;441;; +France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1097;; +France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;449;; +France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;19;u; +France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;3799;; +France;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;5814;; +France;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;2522;; +France;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;74;; +France;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;119268;; +France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;246326;; +France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;94591;; +France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3282;; +France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;192;; +France;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;4173;; +France;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;16993;; +France;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;4873;; +France;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;83;; +France;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;86469;; +France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;116490;; +France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;40356;; +France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;1243;; +France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;107;; +France;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;3870;; +France;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;9896;; +France;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;3566;; +France;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;191;; +France;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;30;u; +France;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;3397;; +France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;7749;; +France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;4257;; +France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;157;; +France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;13;u; +France;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;4743;; +France;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;13991;; +France;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;9123;; +France;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;322;; +France;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;16;u; +France;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;4327;; +France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;16866;; +France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;8798;; +France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;533;; +France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;29;u; +France;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;29774;; +France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;63873;; +France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;19714;; +France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;469;; +France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;39;u; +France;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;37883;; +France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;101494;; +France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;22336;; +France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;228;; +France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;57;; +France;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;7690;; +France;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;16824;; +France;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;7764;; +France;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;270;; +France;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;6;u; +France;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;13203;; +France;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;44250;; +France;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;17073;; +France;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;279;; +France;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;47;u; +France;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;5615;; +France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;8897;; +France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;2843;; +France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;127;; +France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;15;u; +France;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;9707;; +France;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;24731;; +France;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;11557;; +France;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;592;; +France;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;52;; +France;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;134;; +France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;639;; +France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;433;; +France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;23;u; +France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;62;; +France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;315;; +France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;171;; +France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;19;u; +France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;83907;; +France;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;77030;; +France;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;37191;; +France;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;2471;; +France;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;62676;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;206599;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;126447;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;5786;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;627;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;36;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;249;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;86;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;1798;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;4519;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;2619;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;90;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;46;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;107;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;101;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;164;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;373;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;236;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;17;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;2257;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;2741;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;1260;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;53;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3015;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4981;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2590;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;82;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;10;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;303;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;887;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;628;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;19;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;637;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;1156;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;678;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;13;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;55;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;198;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;120;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;3;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;3;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;196;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;281;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;255;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;17;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;1;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;516;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;1284;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;674;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;25;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;542;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;2186;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;1393;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;106;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;28814;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;33466;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;10671;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;211;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;16;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;7004;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;13099;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;6402;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;72;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;12;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;2328;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;2171;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;1077;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;35;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;16;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;5100;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;9976;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;3374;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;48;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;13;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;1594;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;2690;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;1077;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;40;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;3;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;1532;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;2455;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;1265;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;30;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;389;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2151;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1156;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;19;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;13;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;43;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;42;u; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;32839;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;25569;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;15487;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;2043;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;3656;; +France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;5479;; +France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;2719;; +France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;51;; +France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;439;; +France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;1640;; +France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;799;; +France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;16;u; +France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;138114;; +France;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;325867;; +France;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;142168;; +France;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;2014;; +France;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;268;; +France;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3452;; +France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6922;; +France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3147;; +France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;20;u; +France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3070;; +France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;8108;; +France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3049;; +France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;39;u; +France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;3;u; +France;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;312696;; +France;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;544668;; +France;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;209055;; +France;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;3591;; +France;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;410;; +France;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;121711;; +France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;171966;; +France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;68729;; +France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1259;; +France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;143;; +France;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;12464;; +France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;34892;; +France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;15560;; +France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;95;; +France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;20;u; +France;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;6272;; +France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;9704;; +France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;5181;; +France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;143;; +France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;41;u; +France;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;5098;; +France;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;9611;; +France;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;4542;; +France;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;71;; +France;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;1906;; +France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;4434;; +France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;2220;; +France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;29;u; +France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;2225;; +France;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;5535;; +France;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;2823;; +France;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;54;; +France;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;6245;; +France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;14573;; +France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;6027;; +France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;68;; +France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;15;u; +France;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;47252;; +France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;59579;; +France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;17520;; +France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;244;; +France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;60;; +France;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;19590;; +France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;60248;; +France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;31763;; +France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;368;; +France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;54;; +France;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;11779;; +France;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;12321;; +France;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;6744;; +France;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;68;; +France;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;3;u; +France;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;13072;; +France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;36911;; +France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;18980;; +France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;230;; +France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;63;; +France;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;2956;; +France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;6928;; +France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;3661;; +France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;99;; +France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;15;u; +France;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;7652;; +France;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;21283;; +France;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;11342;; +France;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;357;; +France;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;32;u; +France;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;126;; +France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;672;; +France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;485;; +France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;4;u; +France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;42;u; +France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;171;; +France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;126;; +France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;6;u; +France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;119370;; +France;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;130718;; +France;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;65992;; +France;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;4110;; +France;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;6864;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;12782;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;5179;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;62;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;18;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;1166;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;4956;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;2302;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;35;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;120636;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;360852;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;142563;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;1268;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;246;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2769;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5361;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2411;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;43;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;6373;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;27303;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;9701;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;120;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;8;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;30212;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;57340;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;22677;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;351;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;42;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;42028;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;105989;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;37769;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;557;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;80;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;75802;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;290732;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;115699;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;2159;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;219;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;8350;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;8880;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;2735;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;81;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;11;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;1843;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;3960;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;2013;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;43;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;1627;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;4553;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;2211;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;61;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;1010;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;2796;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;1155;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;10;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;5703;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;13696;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;6511;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;208;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;24;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;57619;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;68142;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;16124;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;311;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;26;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;4162;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;13211;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;7677;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;113;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;7;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;2780;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;3122;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;1494;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;31;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;4210;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;13887;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;6641;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;111;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;21;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;654;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;1851;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;843;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;22;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;2646;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;9001;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;4698;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;202;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;19;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;80;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;197;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;151;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;22;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;316;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;242;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;13;u; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;94893;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;110576;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;56229;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;3269;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;1067;; +France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;2016;; +France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;837;; +France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;3;u; +France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;1432;; +France;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;3277;; +France;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;976;; +France;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;4;u; +France;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;11744;; +France;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;35191;; +France;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;16075;; +France;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;155;; +France;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;27;u; +France;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;277;; +France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;834;; +France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;435;; +France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;11;u; +France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;4884;; +France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;15422;; +France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;5395;; +France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;104;; +France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;1;u; +France;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;25017;; +France;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;33406;; +France;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;11455;; +France;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;223;; +France;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;49;u; +France;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;37962;; +France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;67936;; +France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;21249;; +France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;225;; +France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;50;; +France;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;13106;; +France;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;29477;; +France;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;9668;; +France;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;128;; +France;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;32;u; +France;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;21889;; +France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;27907;; +France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;10129;; +France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;250;; +France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;24;u; +France;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;648;; +France;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;1451;; +France;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;754;; +France;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;8;u; +France;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;772;; +France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;1973;; +France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;1122;; +France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;24;u; +France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;2369;; +France;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;7500;; +France;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;4450;; +France;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;55;; +France;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;5;u; +France;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;2384;; +France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;5043;; +France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;2317;; +France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;19;u; +France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;15;u; +France;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;30416;; +France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;50357;; +France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;17538;; +France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;330;; +France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;17;u; +France;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;15403;; +France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;62349;; +France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;31073;; +France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;248;; +France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;39;u; +France;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;5247;; +France;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;16794;; +France;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;10039;; +France;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;130;; +France;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;8;u; +France;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;14693;; +France;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;42224;; +France;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;22042;; +France;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;266;; +France;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;42;u; +France;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;1130;; +France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;2962;; +France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;1306;; +France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;36;u; +France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;1934;; +France;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;5284;; +France;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;2439;; +France;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;48;u; +France;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;303;; +France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1826;; +France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1106;; +France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;21;u; +France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;3;u; +France;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;21;u; +France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;143;; +France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;72;; +France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;71960;; +France;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;61992;; +France;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;25993;; +France;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;1333;; +France;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +France;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;421968;; +France;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;65744;; +France;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;59823;; +France;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;9821;; +France;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +France;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;95;; +Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;223491;; +Croatia;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;125326;; +Croatia;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;291649;; +Croatia;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;413178;; +Croatia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;45087;; +Croatia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;317703;; +Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;1;; +Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;272;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;803;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;77;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;16;; +Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;153;; +Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;57;; +Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;6;; +Croatia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;16;; +Croatia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;12;; +Croatia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;140;; +Croatia;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;1546;; +Croatia;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;720;; +Croatia;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;17;; +Croatia;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;14;; +Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;9;; +Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;6;; +Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;60;; +Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;42;; +Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;98;; +Croatia;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;610;; +Croatia;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;261;; +Croatia;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;344;; +Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3134;; +Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1399;; +Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;17;; +Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;25;; +Croatia;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;334;; +Croatia;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;147;; +Croatia;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;263;; +Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;1181;; +Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;463;; +Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;15;; +Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;55;; +Croatia;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;528;; +Croatia;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;124;; +Croatia;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;47;; +Croatia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;834;; +Croatia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;305;; +Croatia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;3;; +Croatia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;19;; +Croatia;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;163;; +Croatia;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;84;; +Croatia;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;122;; +Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1239;; +Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;601;; +Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;20;; +Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;78;; +Croatia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;516;; +Croatia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;140;; +Croatia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;26;; +Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;404;; +Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;280;; +Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;11;; +Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;36;; +Croatia;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;655;; +Croatia;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;583;; +Croatia;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;13;; +Croatia;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;48;; +Croatia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;421;; +Croatia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;377;; +Croatia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;11;; +Croatia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;36;; +Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;249;; +Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;140;; +Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;111;; +Croatia;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;659;; +Croatia;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;268;; +Croatia;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;11;; +Croatia;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;7;; +Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;2;; +Croatia;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;12;; +Croatia;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;2;; +Croatia;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;148;; +Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;583;; +Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;162;; +Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;39;; +Croatia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;217;; +Croatia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;81;; +Croatia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;1335;; +Croatia;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;4107;; +Croatia;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;1361;; +Croatia;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;10;; +Croatia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;84;; +Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;340;; +Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;238;; +Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;94;; +Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;384;; +Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;145;; +Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;325;; +Croatia;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;1025;; +Croatia;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;326;; +Croatia;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1649;; +Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4054;; +Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1329;; +Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;22;; +Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;149;; +Croatia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;891;; +Croatia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;409;; +Croatia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;272;; +Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;575;; +Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;212;; +Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;1560;; +Croatia;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;4696;; +Croatia;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;861;; +Croatia;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;30;; +Croatia;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;1559;; +Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;4246;; +Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;1075;; +Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;51;; +Croatia;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;194;; +Croatia;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;67;; +Croatia;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;3082;; +Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;7993;; +Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;2201;; +Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;92;; +Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;368;; +Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;883;; +Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;238;; +Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1553;; +Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;9345;; +Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;4530;; +Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;115;; +Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;11536;; +Croatia;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;34178;; +Croatia;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;15472;; +Croatia;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;339;; +Croatia;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;3739;; +Croatia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;11950;; +Croatia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;7114;; +Croatia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;208;; +Croatia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;603;; +Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;2261;; +Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;984;; +Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;41;; +Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;269;; +Croatia;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;817;; +Croatia;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;279;; +Croatia;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;24;; +Croatia;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;17;; +Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;111;; +Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;27;; +Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;29;; +Croatia;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;64;; +Croatia;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;23;; +Croatia;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;166;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;610;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;216;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;41;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;199;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;80;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;2231;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;8823;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;3655;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;8;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;34;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;370;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;335;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;99;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;442;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;275;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;603;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;1888;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;778;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3915;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;10145;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2621;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;22;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;411;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;2320;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;862;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;377;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;1029;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;462;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;936;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;2380;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;537;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;6;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;2247;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;6623;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;1882;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;11;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;167;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;690;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;189;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;3;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;1645;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;4417;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;1652;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;19;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;382;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;994;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;298;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1343;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;7475;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;3340;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;34;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;368;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;1673;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;1177;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;8288;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;18277;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;8624;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;31;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;528;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;1118;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;369;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;279;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;736;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;355;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;59;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;1;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;9;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;4;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;28;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;12;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;49;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;103;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;46;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;3;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;224;; +Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;1048;; +Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;585;; +Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;40;; +Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;248;; +Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;130;; +Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;1665;; +Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;6770;; +Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;3724;; +Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;78;; +Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;869;; +Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;820;; +Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;185;; +Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;915;; +Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;576;; +Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;1035;; +Croatia;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;3316;; +Croatia;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;1217;; +Croatia;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2812;; +Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8398;; +Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2666;; +Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7;; +Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;1048;; +Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;6066;; +Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;2302;; +Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;1587;; +Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;2551;; +Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;1030;; +Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;6;; +Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;1062;; +Croatia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;2198;; +Croatia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;669;; +Croatia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;2544;; +Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;7669;; +Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;3232;; +Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;133;; +Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;427;; +Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;161;; +Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;2613;; +Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;7202;; +Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;2698;; +Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;23;; +Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;1187;; +Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;2127;; +Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;603;; +Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;5181;; +Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;12749;; +Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5633;; +Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;33;; +Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;458;; +Croatia;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;1721;; +Croatia;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;1398;; +Croatia;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;464;; +Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;2559;; +Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;1919;; +Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;7;; +Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;3005;; +Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;2946;; +Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;678;; +Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;331;; +Croatia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;1041;; +Croatia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;466;; +Croatia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;13;; +Croatia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;11;; +Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;79;; +Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;103;; +Croatia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;219;; +Croatia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;98;; +Croatia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;81;; +Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;296;; +Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;150;; +Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;9;; +Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;39;; +Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;17;; +Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;2014;; +Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;3901;; +Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;903;; +Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;11;; +Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4;; +Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;65;; +Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;77;; +Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;14;; +Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;102;; +Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;59;; +Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;65;; +Croatia;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;328;; +Croatia;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;139;; +Croatia;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;33179;; +Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;64806;; +Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;13744;; +Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;51;; +Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;375;; +Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;778;; +Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;214;; +Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;18279;; +Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;26380;; +Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;8267;; +Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;218;; +Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;369;; +Croatia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;466;; +Croatia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;92;; +Croatia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;97;; +Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;216;; +Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;76;; +Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;26;; +Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;142;; +Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;86;; +Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;32;; +Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;223;; +Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;333;; +Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;132;; +Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;951;; +Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;2064;; +Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;612;; +Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;21;; +Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1312;; +Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2256;; +Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;702;; +Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;26;; +Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;375;; +Croatia;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;3140;; +Croatia;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;1862;; +Croatia;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;1097;; +Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;7459;; +Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;3322;; +Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;31;; +Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;1;; +Croatia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;441;; +Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;653;; +Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;213;; +Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;6392;; +Croatia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;6645;; +Croatia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;1414;; +Croatia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;60;; +Croatia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;123;; +Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;291;; +Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;128;; +Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;10;; +Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;23;; +Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;8;; +Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;38;; +Croatia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;71;; +Croatia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;30;; +Croatia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;1046;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;8234;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;6558;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;1949;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;25;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;12;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;51;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;25;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;3;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;17;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;30;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;11;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;3;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;4;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;40;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;19;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;6;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;4;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;26;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;241;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;91;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;17;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;6;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;6;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;2;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;2;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;12;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;3;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;2;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;30;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;147;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;50;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;3;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;3118;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;13241;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;4146;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;29;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;5;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;16;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;10;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;12;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;54;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;161;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;63;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;576;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1759;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;491;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;11;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;10;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;34;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;7;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;385;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;868;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;245;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;42;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;149;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;61;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;5;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;2;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;15;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;57;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;33;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;17;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;62;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;14;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;8;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;57;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;27;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;3;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;32;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;31;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;12;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;109;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;107;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;14;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;70;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;47;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;34;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;195;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;73;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;4;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;12;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;17;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;12;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;56;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;210;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;74;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;4;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;15;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;5;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;4346;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;19740;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;5566;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;12;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;14;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;36;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;20;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;11;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;52;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;11;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;109;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;373;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;95;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;68;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;367;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;96;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;49;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;209;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;116;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;7;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;13;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;9;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;2;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;3;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;21;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;38;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;10;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;16;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;45;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;14;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;7;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;60;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;20;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;2;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;46;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;38;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;27;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;333;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;286;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;8;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;15;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;7;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;91;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;429;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;174;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;4;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;12;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;5;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;648;; +Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;2953;; +Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;1192;; +Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;40;; +Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;2;; +Croatia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;5;; +Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;44;; +Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;22;; +Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;2;; +Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;2359;; +Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;10907;; +Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;3880;; +Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;9;; +Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;12;; +Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;132;; +Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;121;; +Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;116;; +Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;843;; +Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;394;; +Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;189;; +Croatia;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;855;; +Croatia;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;286;; +Croatia;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;689;; +Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2200;; +Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;875;; +Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3;; +Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;153;; +Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;831;; +Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;468;; +Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;1214;; +Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;3859;; +Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;1595;; +Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;9;; +Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;50;; +Croatia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;176;; +Croatia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;112;; +Croatia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;33;; +Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;293;; +Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;161;; +Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;12;; +Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;121;; +Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;70;; +Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;117;; +Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;456;; +Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;241;; +Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;803;; +Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;5292;; +Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;2171;; +Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;17;; +Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;181;; +Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1698;; +Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;1143;; +Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;11;; +Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;389;; +Croatia;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;5811;; +Croatia;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;3675;; +Croatia;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;9;; +Croatia;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;348;; +Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;4557;; +Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;2675;; +Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;7;; +Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;84;; +Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;698;; +Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;417;; +Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;7;; +Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;92;; +Croatia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;522;; +Croatia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;230;; +Croatia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;8;; +Croatia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;523;; +Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1125;; +Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;139;; +Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;9;; +Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;5;; +Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;45;; +Croatia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;130;; +Croatia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;83;; +Croatia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;7;; +Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;33;; +Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;21;; +Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;6;; +Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;1;; +Croatia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;5;; +Croatia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;4;; +Croatia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;66;; +Croatia;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;173;; +Croatia;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;78;; +Croatia;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7;; +Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;9;; +Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2;; +Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;9;; +Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;8;; +Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;6;; +Croatia;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;17;; +Croatia;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;18;; +Croatia;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;88;; +Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;191;; +Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;64;; +Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;10;; +Croatia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;27;; +Croatia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;13;; +Croatia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;32;; +Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;66;; +Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;24;; +Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;28;; +Croatia;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;50;; +Croatia;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;9;; +Croatia;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;22;; +Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;56;; +Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;31;; +Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;6;; +Croatia;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;7;; +Croatia;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;2;; +Croatia;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;47;; +Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;77;; +Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;25;; +Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;18;; +Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;36;; +Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;23;; +Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;35;; +Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;166;; +Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;91;; +Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;203;; +Croatia;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;299;; +Croatia;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;119;; +Croatia;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;4;; +Croatia;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;87;; +Croatia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;170;; +Croatia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;109;; +Croatia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;1;; +Croatia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;44;; +Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;39;; +Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;10;; +Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;33;; +Croatia;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;59;; +Croatia;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;15;; +Croatia;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;964;; +Croatia;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;1491;; +Croatia;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;632;; +Croatia;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;88;; +Croatia;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Croatia;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;202579;; +Croatia;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;102309;; +Croatia;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;196436;; +Croatia;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;272563;; +Croatia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;15412;; +Croatia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;334725;; +Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;2757;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;9261;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;595;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;7;; +Croatia;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;2;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;65;; +Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;646;; +Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;442;; +Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;12;; +Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;12;; +Croatia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;81;; +Croatia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;92;; +Croatia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;7;; +Croatia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;507;; +Croatia;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;4591;; +Croatia;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;3520;; +Croatia;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;117;; +Croatia;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4;; +Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;116;; +Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;106;; +Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;18;; +Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;278;; +Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;236;; +Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;410;; +Croatia;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;3797;; +Croatia;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;2516;; +Croatia;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;80;; +Croatia;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;649;; +Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;6661;; +Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3982;; +Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;101;; +Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;98;; +Croatia;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;1110;; +Croatia;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;908;; +Croatia;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;28;; +Croatia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;400;; +Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;2240;; +Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;1427;; +Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;44;; +Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;146;; +Croatia;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;1373;; +Croatia;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;510;; +Croatia;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;11;; +Croatia;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;51;; +Croatia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;1015;; +Croatia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;427;; +Croatia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;30;; +Croatia;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;305;; +Croatia;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;203;; +Croatia;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;7;; +Croatia;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;166;; +Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1887;; +Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;1402;; +Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;107;; +Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;95;; +Croatia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;807;; +Croatia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;440;; +Croatia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;19;; +Croatia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;53;; +Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;769;; +Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;718;; +Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;73;; +Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;20;; +Croatia;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;435;; +Croatia;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;635;; +Croatia;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;39;; +Croatia;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;34;; +Croatia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;237;; +Croatia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;282;; +Croatia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;26;; +Croatia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;40;; +Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;500;; +Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;358;; +Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;19;; +Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;60;; +Croatia;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;482;; +Croatia;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;386;; +Croatia;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;25;; +Croatia;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;4;; +Croatia;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;28;; +Croatia;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;16;; +Croatia;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;208;; +Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;990;; +Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;459;; +Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;82;; +Croatia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;328;; +Croatia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;251;; +Croatia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;1540;; +Croatia;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;4399;; +Croatia;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;2708;; +Croatia;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;40;; +Croatia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;223;; +Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;683;; +Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;648;; +Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;70;; +Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;308;; +Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;259;; +Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;7;; +Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;641;; +Croatia;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;1934;; +Croatia;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;1063;; +Croatia;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;51;; +Croatia;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;767;; +Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2152;; +Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;828;; +Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;23;; +Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;199;; +Croatia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1083;; +Croatia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;708;; +Croatia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;144;; +Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;286;; +Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;213;; +Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;2098;; +Croatia;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;6283;; +Croatia;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;1508;; +Croatia;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;55;; +Croatia;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;812;; +Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;2334;; +Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;543;; +Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;13;; +Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;36;; +Croatia;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;125;; +Croatia;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;77;; +Croatia;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;2254;; +Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;7605;; +Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;3874;; +Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;478;; +Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;2;; +Croatia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;157;; +Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;332;; +Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;154;; +Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;674;; +Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;5500;; +Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;3616;; +Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;163;; +Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;2647;; +Croatia;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;8116;; +Croatia;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;6241;; +Croatia;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;511;; +Croatia;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;1122;; +Croatia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;4126;; +Croatia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;3119;; +Croatia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;290;; +Croatia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;389;; +Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;1890;; +Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1094;; +Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;81;; +Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;261;; +Croatia;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;1130;; +Croatia;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;831;; +Croatia;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;352;; +Croatia;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;10;; +Croatia;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;12;; +Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;58;; +Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;16;; +Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;26;; +Croatia;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;53;; +Croatia;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;38;; +Croatia;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;10;; +Croatia;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;656;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;2005;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;929;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;146;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;888;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;760;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;4245;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;13989;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;9876;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;55;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;182;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1827;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1977;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;233;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1102;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1112;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;2415;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;6938;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;4551;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;47;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3874;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;12132;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3334;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;45;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;2403;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;9195;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;5121;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;38;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;396;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;973;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;593;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;2850;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;7061;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;1733;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;13;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;1373;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;3358;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;1276;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;19;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;146;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;635;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;324;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;7;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;2195;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;4617;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;2301;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;88;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;477;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;1144;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;406;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1071;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;6593;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;2653;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;54;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;252;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;646;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;383;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;8;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;2090;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;2486;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;1029;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;11;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;1465;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;2196;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;753;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;31;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;354;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;831;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;359;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;18;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;5;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;35;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;77;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;139;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;75;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;111;; +Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;282;; +Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;249;; +Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;24;; +Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;98;; +Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;117;; +Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;1723;; +Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;3432;; +Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;2166;; +Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;62;; +Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;329;; +Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;407;; +Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;124;; +Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;436;; +Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;363;; +Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;371;; +Croatia;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;801;; +Croatia;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;589;; +Croatia;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4001;; +Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5367;; +Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1613;; +Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;2056;; +Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;6224;; +Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;3258;; +Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;783;; +Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;1112;; +Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;690;; +Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;692;; +Croatia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;714;; +Croatia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;259;; +Croatia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;794;; +Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;1556;; +Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;930;; +Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;3;; +Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;36;; +Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;109;; +Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;76;; +Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;655;; +Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;985;; +Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;489;; +Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;481;; +Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;759;; +Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;289;; +Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;8;; +Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2619;; +Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2989;; +Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1729;; +Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;19;; +Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;111;; +Croatia;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;209;; +Croatia;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;191;; +Croatia;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;131;; +Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;353;; +Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;355;; +Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;3;; +Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;678;; +Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;966;; +Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;332;; +Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;10;; +Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;119;; +Croatia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;244;; +Croatia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;128;; +Croatia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;11;; +Croatia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;50;; +Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;62;; +Croatia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;55;; +Croatia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;26;; +Croatia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;105;; +Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;386;; +Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;335;; +Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;23;; +Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;116;; +Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;102;; +Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;648;; +Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;2028;; +Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;1320;; +Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;9;; +Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;22;; +Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;97;; +Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;137;; +Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;96;; +Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;487;; +Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;364;; +Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;185;; +Croatia;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;712;; +Croatia;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;537;; +Croatia;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;7;; +Croatia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;10887;; +Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;21220;; +Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7055;; +Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;77;; +Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;660;; +Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;1934;; +Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;1222;; +Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;3;; +Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;17364;; +Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;18636;; +Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;6024;; +Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;143;; +Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;3;; +Croatia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;343;; +Croatia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;391;; +Croatia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;115;; +Croatia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;149;; +Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;326;; +Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;178;; +Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;55;; +Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;206;; +Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;175;; +Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;30;; +Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;126;; +Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;309;; +Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;201;; +Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;3563;; +Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;7193;; +Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;3273;; +Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;34;; +Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;4078;; +Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;13201;; +Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1932;; +Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;17;; +Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;452;; +Croatia;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;1920;; +Croatia;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;1619;; +Croatia;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;12;; +Croatia;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;343;; +Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;1074;; +Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;714;; +Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;8;; +Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;336;; +Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;683;; +Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;427;; +Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;8;; +Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;520;; +Croatia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;908;; +Croatia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;441;; +Croatia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;20;; +Croatia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;9;; +Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;10;; +Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;43;; +Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;29;; +Croatia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;39;; +Croatia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;32;; +Croatia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;4004;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;15454;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;13430;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;3570;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;40;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;56;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;164;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;93;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;5;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;10;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;6;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;5;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;22;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;3;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;12;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;30;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;16;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;2;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;7;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;42;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;114;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;111;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;4;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;9;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;9;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;168;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;460;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;210;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;7;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;22;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;6;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;12;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;7;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;3;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;12;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;9;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;5;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;11;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;14;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;4;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;3;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;3;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;4;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;2;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;237;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;688;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;595;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;183;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;581;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;428;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;19585;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;42484;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;21225;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;141;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;478;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2676;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1998;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;681;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2141;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1214;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;18072;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;35443;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;16239;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;97;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6044;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9087;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3818;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;31;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;680;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;2615;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;2082;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;8;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;408;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;795;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;457;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;469;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;1123;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;499;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;17;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;54;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;45;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;18;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;40;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;43;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;339;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;786;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;345;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;374;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;679;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;291;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;183;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;811;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;481;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;33;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;71;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;102;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;67;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;282;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;356;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;140;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;446;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;214;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;786;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;1516;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;761;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;32;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;89;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;227;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;162;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;842;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;2439;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;1362;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;13;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;407;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;1333;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;809;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;9801;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;19607;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;8870;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;22;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;57;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;362;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;390;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;600;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2154;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1175;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;3353;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;8384;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;3490;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;14;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2984;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;6154;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1895;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;13;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;5367;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;20619;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;11506;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;142;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;239;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;341;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;238;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;61;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;213;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;120;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;13;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;74;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;54;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;6;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;25;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;25;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;98;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;283;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;145;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;257;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;461;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;227;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;231;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1063;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;457;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;13;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;124;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;137;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;194;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;1027;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;774;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;162;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;344;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;133;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;109;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;354;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;180;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;37;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;9;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;67;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;111;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;82;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;2191;; +Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;4141;; +Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;2030;; +Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;82;; +Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;54;; +Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;171;; +Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;113;; +Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;4896;; +Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;7639;; +Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;3571;; +Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;12;; +Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;48;; +Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;205;; +Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;234;; +Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1238;; +Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3289;; +Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1716;; +Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;8;; +Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;6424;; +Croatia;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;11584;; +Croatia;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;4379;; +Croatia;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;9;; +Croatia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2000;; +Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2034;; +Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;700;; +Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;809;; +Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;1274;; +Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;726;; +Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;768;; +Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;736;; +Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;410;; +Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;3;; +Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;111;; +Croatia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;154;; +Croatia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;64;; +Croatia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;19;; +Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;30;; +Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;24;; +Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;25;; +Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;83;; +Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;56;; +Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;190;; +Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;340;; +Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;131;; +Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;856;; +Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;1729;; +Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;851;; +Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;3;; +Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;293;; +Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;793;; +Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;484;; +Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;8;; +Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;39;; +Croatia;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;136;; +Croatia;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;153;; +Croatia;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;121;; +Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;402;; +Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;256;; +Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;166;; +Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;287;; +Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;161;; +Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;108;; +Croatia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;276;; +Croatia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;142;; +Croatia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;13;; +Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;43;; +Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;23;; +Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;; +Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;65;; +Croatia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;108;; +Croatia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;51;; +Croatia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;18;; +Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;58;; +Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;40;; +Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;4;; +Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;11;; +Croatia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;17;; +Croatia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;13;; +Croatia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;165;; +Croatia;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;323;; +Croatia;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;198;; +Croatia;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4;; +Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;19;; +Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;23;; +Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;11;; +Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;50;; +Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;49;; +Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;80;; +Croatia;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;209;; +Croatia;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;96;; +Croatia;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;80;; +Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;143;; +Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;61;; +Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;32;; +Croatia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;94;; +Croatia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;43;; +Croatia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;31;; +Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;58;; +Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;36;; +Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;45;; +Croatia;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;119;; +Croatia;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;19;; +Croatia;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;1;; +Croatia;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;19;; +Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;24;; +Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;10;; +Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;1;; +Croatia;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;12;; +Croatia;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;3;; +Croatia;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;48;; +Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;109;; +Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;47;; +Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;3;; +Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;29;; +Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;50;; +Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;28;; +Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;70;; +Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;229;; +Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;109;; +Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;13;; +Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;104;; +Croatia;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;129;; +Croatia;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;74;; +Croatia;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;33;; +Croatia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;59;; +Croatia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;51;; +Croatia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;6;; +Croatia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;15;; +Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;27;; +Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;11;; +Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;14;; +Croatia;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;27;; +Croatia;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;18;; +Croatia;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Croatia;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;1387;; +Croatia;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;1987;; +Croatia;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;1093;; +Croatia;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;69;; +Croatia;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;1;; +Croatia;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;535753;; +Hungary;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;300781;; +Hungary;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;566322;; +Hungary;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;912298;; +Hungary;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;121218;; +Hungary;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;704414;; +Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;531;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;2778;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;388;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;81;; +Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;610;; +Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;544;; +Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;40;; +Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;5;; +Hungary;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;22;; +Hungary;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;20;; +Hungary;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;609;; +Hungary;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;5179;; +Hungary;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;2941;; +Hungary;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;145;; +Hungary;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;20;; +Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;294;; +Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;177;; +Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;37;; +Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;437;; +Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;254;; +Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;7;; +Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;102;; +Hungary;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;870;; +Hungary;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;529;; +Hungary;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;25;; +Hungary;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1890;; +Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;11059;; +Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4684;; +Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;287;; +Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Hungary;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;152;; +Hungary;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;1713;; +Hungary;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;818;; +Hungary;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;14;; +Hungary;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;589;; +Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;2408;; +Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;1182;; +Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;67;; +Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;210;; +Hungary;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;1341;; +Hungary;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;419;; +Hungary;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;35;; +Hungary;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;328;; +Hungary;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;3002;; +Hungary;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;1262;; +Hungary;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;34;; +Hungary;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;46;; +Hungary;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;452;; +Hungary;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;279;; +Hungary;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;35;; +Hungary;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;230;; +Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1735;; +Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;999;; +Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;116;; +Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;183;; +Hungary;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;1184;; +Hungary;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;567;; +Hungary;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;36;; +Hungary;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;333;; +Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;4973;; +Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3377;; +Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;96;; +Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;128;; +Hungary;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;3764;; +Hungary;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;4204;; +Hungary;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;97;; +Hungary;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;228;; +Hungary;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;4451;; +Hungary;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;2949;; +Hungary;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;142;; +Hungary;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;90;; +Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;678;; +Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;514;; +Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;29;; +Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;2;; +Hungary;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;146;; +Hungary;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;912;; +Hungary;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;567;; +Hungary;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;71;; +Hungary;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;30;; +Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;7;; +Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;331;; +Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;750;; +Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;310;; +Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;32;; +Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;36;; +Hungary;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;62;; +Hungary;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;26;; +Hungary;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;4458;; +Hungary;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;10415;; +Hungary;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;2814;; +Hungary;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;182;; +Hungary;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;357;; +Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;962;; +Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;317;; +Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;236;; +Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;591;; +Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;207;; +Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;11;; +Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;603;; +Hungary;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;1535;; +Hungary;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;578;; +Hungary;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;32;; +Hungary;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3609;; +Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8673;; +Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2603;; +Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;500;; +Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;619;; +Hungary;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;2354;; +Hungary;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;774;; +Hungary;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;21;; +Hungary;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;644;; +Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;1318;; +Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;621;; +Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;23;; +Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;3821;; +Hungary;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;8678;; +Hungary;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;2152;; +Hungary;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;192;; +Hungary;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;4;; +Hungary;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;3395;; +Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;8184;; +Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;2248;; +Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;129;; +Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;289;; +Hungary;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;798;; +Hungary;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;272;; +Hungary;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;34;; +Hungary;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;7784;; +Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;17608;; +Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;7435;; +Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;1244;; +Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;7;; +Hungary;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;1290;; +Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;2159;; +Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;533;; +Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;45;; +Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;5617;; +Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;19577;; +Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;8062;; +Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;358;; +Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;15522;; +Hungary;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;89793;; +Hungary;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;49744;; +Hungary;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;1858;; +Hungary;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;14;; +Hungary;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;5736;; +Hungary;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;19918;; +Hungary;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;10961;; +Hungary;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;1971;; +Hungary;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;4;; +Hungary;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1774;; +Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;5389;; +Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;2649;; +Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;281;; +Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;5;; +Hungary;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;1025;; +Hungary;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;3036;; +Hungary;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;1075;; +Hungary;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;121;; +Hungary;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;34;; +Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;33;; +Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;10;; +Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;140;; +Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;277;; +Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;57;; +Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;6;; +Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;499;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1655;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1358;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;49;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;25;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;107;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;72;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;8525;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;22300;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;8939;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;255;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;575;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1763;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1030;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;9;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;415;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1615;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1030;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;25;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;1168;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;4037;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;1849;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;67;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;8167;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;25676;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9988;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;525;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;2202;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;6815;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;2877;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;43;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;1232;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;2114;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;855;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;40;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;2938;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;5896;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;1714;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;101;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;8062;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;22168;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;8255;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;320;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;2;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;996;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;4147;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;2076;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;191;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;5103;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;14412;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;7414;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;856;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;8;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;2644;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;4639;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;1536;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;84;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;9650;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;39244;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;20415;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;323;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;5;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;1419;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;5975;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;3791;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;161;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;10784;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;71341;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;30698;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;1003;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;2091;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;4340;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;1894;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;154;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;1623;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;5013;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;2148;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;177;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;12;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;26;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;74;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;47;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;4;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;91;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;195;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;63;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;565;; +Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;2288;; +Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;2122;; +Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;92;; +Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;33;; +Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;124;; +Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;112;; +Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;4;; +Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;4961;; +Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;14252;; +Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;7422;; +Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;216;; +Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;539;; +Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1348;; +Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;872;; +Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;16;; +Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;514;; +Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1782;; +Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1105;; +Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;17;; +Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;1206;; +Hungary;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;4634;; +Hungary;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;2220;; +Hungary;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;66;; +Hungary;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;2;; +Hungary;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5261;; +Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;14116;; +Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5253;; +Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;188;; +Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;4614;; +Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;20847;; +Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;9134;; +Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;124;; +Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;3282;; +Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;3074;; +Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;1132;; +Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;55;; +Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;3125;; +Hungary;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;4973;; +Hungary;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;1526;; +Hungary;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;70;; +Hungary;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;2434;; +Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;5268;; +Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;2246;; +Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;58;; +Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;701;; +Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;1802;; +Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;976;; +Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;99;; +Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;2;; +Hungary;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;4171;; +Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;11381;; +Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;5704;; +Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;530;; +Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;4243;; +Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;6968;; +Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;2647;; +Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;126;; +Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;5714;; +Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;15291;; +Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;8692;; +Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;405;; +Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;1666;; +Hungary;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;6768;; +Hungary;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;4320;; +Hungary;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;156;; +Hungary;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;2;; +Hungary;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;1490;; +Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;5115;; +Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;3275;; +Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;131;; +Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;1464;; +Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;2145;; +Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;1061;; +Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;72;; +Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;1206;; +Hungary;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;2436;; +Hungary;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;1230;; +Hungary;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;85;; +Hungary;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;18;; +Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;21;; +Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;7;; +Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;68;; +Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;157;; +Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;40;; +Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;5;; +Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;235;; +Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;806;; +Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;624;; +Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;39;; +Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;3;; +Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;30;; +Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;26;; +Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;2622;; +Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;6566;; +Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;2700;; +Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;133;; +Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;4;; +Hungary;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;22;; +Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;88;; +Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;77;; +Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;75;; +Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;238;; +Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;167;; +Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;11;; +Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;213;; +Hungary;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;746;; +Hungary;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;291;; +Hungary;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;14;; +Hungary;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;43501;; +Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;122165;; +Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;44075;; +Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2234;; +Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;18;; +Hungary;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1097;; +Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;3571;; +Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;1499;; +Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;32;; +Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;25953;; +Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;32515;; +Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;11047;; +Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;556;; +Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;898;; +Hungary;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;1118;; +Hungary;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;356;; +Hungary;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;34;; +Hungary;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;467;; +Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;747;; +Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;309;; +Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;30;; +Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;353;; +Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;1400;; +Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;1304;; +Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;280;; +Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;7;; +Hungary;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;788;; +Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;1402;; +Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;528;; +Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;63;; +Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;1672;; +Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;4228;; +Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;2254;; +Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;163;; +Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2971;; +Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;8179;; +Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3141;; +Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;108;; +Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;2868;; +Hungary;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;15643;; +Hungary;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;10371;; +Hungary;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;221;; +Hungary;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;2;; +Hungary;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;2280;; +Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;12025;; +Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;7376;; +Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;146;; +Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;1191;; +Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;2235;; +Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;1567;; +Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;297;; +Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;4;; +Hungary;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;9791;; +Hungary;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;21345;; +Hungary;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;6916;; +Hungary;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;809;; +Hungary;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;6;; +Hungary;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;561;; +Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1062;; +Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;754;; +Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;55;; +Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;154;; +Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;130;; +Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;38;; +Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;2212;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;13783;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;10855;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;833;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;17;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;1;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;87;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;493;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;385;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;19;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;8;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;12;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;43;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;197;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;79;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;19;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;48;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;38;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;79;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;333;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;188;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;14;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;12;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;24;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;17;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;20;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;52;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;28;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;8;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;52;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;43;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;4;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;3;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;39;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;41;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;5;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;12;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;48;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;23;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;5;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;33;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;147;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;97;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;10;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;131;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;472;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;249;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;4;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;662;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2337;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;929;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;7;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;37;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;121;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;94;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;40;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;138;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;80;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;3;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;54;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;137;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;51;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;4;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;35;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;63;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;26;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;4;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;32;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;15;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;108;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;498;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;265;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;10;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;1;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;11;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;11;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;9146;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;39995;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;18188;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;393;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;11;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;11;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;83;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;76;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;17;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;97;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;86;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;359;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;1386;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;738;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;34;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1413;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4998;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1944;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;116;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;81;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;420;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;231;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;6;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;887;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;1466;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;469;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;24;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;135;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;491;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;232;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;16;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;18;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;91;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;56;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;8;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;30;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;121;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;65;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;3;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;129;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;509;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;243;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;22;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;199;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;667;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;347;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;20;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;67;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;354;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;198;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;6;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;22;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;235;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;191;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;7;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;113;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;620;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;502;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;9;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;56;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;282;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;197;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;12;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;133;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;639;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;405;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;57;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;8;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;18;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;13;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;16;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;117;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;506;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;279;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;10;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;2;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;23;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;24;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;27172;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;82538;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;38566;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;293;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;8;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;9;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;100;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;91;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;42;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;182;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;177;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;70;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;260;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;128;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;779;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2326;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1128;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;29;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;323;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;1737;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;689;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;15;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;56;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;183;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;107;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;3;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;88;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;183;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;111;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;4;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;30;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;79;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;36;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;48;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;155;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;100;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;11;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;99;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;267;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;175;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;833;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;1846;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;1487;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;10;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;117;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;398;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;134;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;18;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;96;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;124;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;3;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;133;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;1039;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;962;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;17;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;28;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;71;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;54;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;5;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;223;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;1011;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;817;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;23;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;12;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;23;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;37;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;1438;; +Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;5193;; +Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;3253;; +Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;182;; +Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;7;; +Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;38;; +Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;50;; +Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;1;; +Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;3239;; +Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;12365;; +Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;8863;; +Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;289;; +Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;8;; +Hungary;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;46;; +Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;326;; +Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;309;; +Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;12;; +Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;380;; +Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1903;; +Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1227;; +Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;15;; +Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;274;; +Hungary;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;1209;; +Hungary;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;846;; +Hungary;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;38;; +Hungary;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3530;; +Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9205;; +Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5431;; +Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;321;; +Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;; +Hungary;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;553;; +Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;2266;; +Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;1614;; +Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;56;; +Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;5782;; +Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;15644;; +Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;9959;; +Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;269;; +Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;519;; +Hungary;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;1175;; +Hungary;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;756;; +Hungary;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;65;; +Hungary;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;5;; +Hungary;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;347;; +Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;1034;; +Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;889;; +Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;107;; +Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;341;; +Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;1350;; +Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;989;; +Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;105;; +Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;874;; +Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;1956;; +Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;1354;; +Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;111;; +Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;7;; +Hungary;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;3099;; +Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;12745;; +Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;10435;; +Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;560;; +Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;3;; +Hungary;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;8543;; +Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;30703;; +Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;14820;; +Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;219;; +Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;1425;; +Hungary;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;12516;; +Hungary;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;12815;; +Hungary;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;352;; +Hungary;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;4;; +Hungary;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;1262;; +Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;9819;; +Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;9411;; +Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;286;; +Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;451;; +Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;1748;; +Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;1541;; +Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;138;; +Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;375;; +Hungary;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;1401;; +Hungary;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;1166;; +Hungary;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;82;; +Hungary;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;227;; +Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;713;; +Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;343;; +Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;18;; +Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;1;; +Hungary;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;108;; +Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;189;; +Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;60;; +Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Hungary;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;476030;; +Hungary;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;129660;; +Hungary;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;408532;; +Hungary;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;537280;; +Hungary;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;42893;; +Hungary;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;743245;; +Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;4256;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;11181;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;814;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;47;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;393;; +Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;2584;; +Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;2550;; +Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;255;; +Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;9;; +Hungary;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;133;; +Hungary;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;123;; +Hungary;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;10;; +Hungary;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;1787;; +Hungary;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;17065;; +Hungary;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;8523;; +Hungary;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;742;; +Hungary;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;5;; +Hungary;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;41;; +Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;955;; +Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;648;; +Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;21;; +Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;174;; +Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1338;; +Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1032;; +Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;52;; +Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;813;; +Hungary;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;7190;; +Hungary;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;4220;; +Hungary;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;294;; +Hungary;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1909;; +Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;16213;; +Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5934;; +Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;483;; +Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;10;; +Hungary;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;378;; +Hungary;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;4355;; +Hungary;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;2258;; +Hungary;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;78;; +Hungary;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;634;; +Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;3839;; +Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;1678;; +Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;162;; +Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;2;; +Hungary;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;373;; +Hungary;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;4281;; +Hungary;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;1115;; +Hungary;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;86;; +Hungary;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;248;; +Hungary;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;3385;; +Hungary;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;840;; +Hungary;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;53;; +Hungary;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;63;; +Hungary;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;957;; +Hungary;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;620;; +Hungary;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;99;; +Hungary;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;266;; +Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;3233;; +Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;1663;; +Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;344;; +Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;2;; +Hungary;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;337;; +Hungary;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;2930;; +Hungary;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;1196;; +Hungary;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;114;; +Hungary;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;379;; +Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;6274;; +Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3647;; +Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;307;; +Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;9;; +Hungary;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;70;; +Hungary;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;1794;; +Hungary;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;1752;; +Hungary;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;185;; +Hungary;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;84;; +Hungary;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;1227;; +Hungary;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;1329;; +Hungary;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;203;; +Hungary;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;81;; +Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1043;; +Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;653;; +Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;76;; +Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;93;; +Hungary;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;1079;; +Hungary;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;756;; +Hungary;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;159;; +Hungary;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;14;; +Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;7;; +Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;11;; +Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;81;; +Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;24;; +Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;578;; +Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1696;; +Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1093;; +Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;191;; +Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;60;; +Hungary;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;186;; +Hungary;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;90;; +Hungary;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;14;; +Hungary;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;8065;; +Hungary;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;20177;; +Hungary;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;5826;; +Hungary;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;688;; +Hungary;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;9;; +Hungary;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;574;; +Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2182;; +Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;757;; +Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;56;; +Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;293;; +Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;794;; +Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;383;; +Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;41;; +Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;1282;; +Hungary;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;4324;; +Hungary;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;2078;; +Hungary;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;269;; +Hungary;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;2;; +Hungary;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3252;; +Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9839;; +Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2412;; +Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;475;; +Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;9;; +Hungary;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;747;; +Hungary;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;2803;; +Hungary;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;1195;; +Hungary;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;81;; +Hungary;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;346;; +Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;955;; +Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;479;; +Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;47;; +Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;9722;; +Hungary;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;25273;; +Hungary;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;4839;; +Hungary;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;460;; +Hungary;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;8;; +Hungary;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;3033;; +Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;7621;; +Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;1660;; +Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;187;; +Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;6;; +Hungary;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;250;; +Hungary;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;861;; +Hungary;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;338;; +Hungary;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;73;; +Hungary;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;7009;; +Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;23255;; +Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;10449;; +Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;3293;; +Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;63;; +Hungary;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;806;; +Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;2242;; +Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;788;; +Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;103;; +Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;3110;; +Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;12759;; +Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;5231;; +Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;481;; +Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;7;; +Hungary;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;5712;; +Hungary;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;25699;; +Hungary;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;15216;; +Hungary;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;2604;; +Hungary;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;34;; +Hungary;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;1777;; +Hungary;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;8657;; +Hungary;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;5971;; +Hungary;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;2494;; +Hungary;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;26;; +Hungary;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1495;; +Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;5090;; +Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;2220;; +Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;476;; +Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;17;; +Hungary;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;786;; +Hungary;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;3395;; +Hungary;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;1537;; +Hungary;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;474;; +Hungary;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;17;; +Hungary;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;19;; +Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;36;; +Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;7;; +Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;; +Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;120;; +Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;293;; +Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;89;; +Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;5;; +Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;726;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;2101;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1416;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;96;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;78;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;297;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;183;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;15;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;12049;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;27819;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;9859;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;518;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;526;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2541;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1277;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;22;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;447;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1365;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;937;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;35;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;2575;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;8466;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;3990;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;312;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;2;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;7095;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;23383;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5445;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;346;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;8;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;2218;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;6577;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;2738;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;88;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;710;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;2111;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;532;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;21;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;4115;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;8806;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;1635;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;102;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;4182;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;8896;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;2955;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;254;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;809;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;3506;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;1674;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;245;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;2;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;3381;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;8325;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;3555;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;707;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;6;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;1839;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;4347;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;1464;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;125;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;5156;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;16232;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;5616;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;285;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;663;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;1597;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;870;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;111;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;2369;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;7224;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;2470;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;127;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;2774;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;5210;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;1838;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;245;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;894;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;2445;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;936;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;105;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;22;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;41;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;18;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;89;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;242;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;64;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;188;; +Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;515;; +Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;435;; +Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;18;; +Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;19;; +Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;55;; +Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;42;; +Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;1;; +Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;4193;; +Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;9366;; +Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;3062;; +Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;75;; +Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;237;; +Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;593;; +Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;298;; +Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;190;; +Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;576;; +Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;421;; +Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;9;; +Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;450;; +Hungary;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;1401;; +Hungary;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;626;; +Hungary;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;22;; +Hungary;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3966;; +Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8226;; +Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1974;; +Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;69;; +Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;8;; +Hungary;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;3772;; +Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;13883;; +Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;5741;; +Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;97;; +Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;5;; +Hungary;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;1373;; +Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;1712;; +Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;417;; +Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;28;; +Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;1505;; +Hungary;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;2004;; +Hungary;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;334;; +Hungary;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;27;; +Hungary;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;699;; +Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;934;; +Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;197;; +Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;17;; +Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;225;; +Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;445;; +Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;182;; +Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;14;; +Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;1111;; +Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;2004;; +Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;660;; +Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;79;; +Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;1693;; +Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;2663;; +Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;788;; +Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;61;; +Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1809;; +Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3041;; +Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1327;; +Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;103;; +Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;330;; +Hungary;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;497;; +Hungary;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;236;; +Hungary;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;17;; +Hungary;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;309;; +Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;627;; +Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;417;; +Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;16;; +Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;545;; +Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;1014;; +Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;281;; +Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;34;; +Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;279;; +Hungary;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;536;; +Hungary;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;214;; +Hungary;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;22;; +Hungary;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;9;; +Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;22;; +Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;44;; +Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;81;; +Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;24;; +Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;355;; +Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;1485;; +Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;1731;; +Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;110;; +Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;14;; +Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;55;; +Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;73;; +Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;9;; +Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;1475;; +Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;4228;; +Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;2777;; +Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;224;; +Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;63;; +Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;222;; +Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;150;; +Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;; +Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;221;; +Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;839;; +Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;566;; +Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;33;; +Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;281;; +Hungary;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;984;; +Hungary;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;638;; +Hungary;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;57;; +Hungary;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;20712;; +Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;57800;; +Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;19804;; +Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1713;; +Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;32;; +Hungary;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1253;; +Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;3843;; +Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;1552;; +Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;58;; +Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;19618;; +Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;28641;; +Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;7326;; +Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;492;; +Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;7;; +Hungary;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;656;; +Hungary;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;970;; +Hungary;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;290;; +Hungary;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;32;; +Hungary;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;371;; +Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;734;; +Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;387;; +Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;34;; +Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;308;; +Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;1285;; +Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;1173;; +Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;258;; +Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;519;; +Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;1211;; +Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;627;; +Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;74;; +Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;7884;; +Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;24386;; +Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;15194;; +Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;860;; +Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;13733;; +Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;29119;; +Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4902;; +Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;211;; +Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;5;; +Hungary;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;1009;; +Hungary;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;3240;; +Hungary;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;3503;; +Hungary;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;358;; +Hungary;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;1741;; +Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;5451;; +Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;2346;; +Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;113;; +Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;964;; +Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;2227;; +Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;1331;; +Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;190;; +Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;1362;; +Hungary;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;3078;; +Hungary;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;1473;; +Hungary;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;255;; +Hungary;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;6;; +Hungary;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;114;; +Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;422;; +Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;292;; +Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;53;; +Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;91;; +Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;205;; +Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;26;; +Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;9801;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;36075;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;22573;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;2176;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;42;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;1;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;8;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;1;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;421;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;1272;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;813;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;53;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;9;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;34;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;17;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;140;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;340;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;174;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;103;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;258;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;119;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;2;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;221;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;675;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;335;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;35;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;42;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;126;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;59;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;3;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;97;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;267;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;122;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;7;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;40;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;141;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;74;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;7;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;40;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;91;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;78;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;8;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;63;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;131;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;85;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;12;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;105;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;327;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;171;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;15;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;2;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;797;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;1893;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;666;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;33;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1391;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3050;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1502;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;22;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;103;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;338;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;290;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;31;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;119;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;366;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;284;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;10;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;369;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;807;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;371;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;26;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;77;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;195;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;100;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;9;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;33;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;92;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;46;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;7;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;11;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;23;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;14;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;1608;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;6628;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;5286;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;97;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;78;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;577;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;466;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;12;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;41193;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;116754;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;53895;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;1744;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;43;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;718;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4812;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2426;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;19;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;811;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;4919;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3485;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;43;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;29912;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;104678;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;40508;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;1259;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;31;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9720;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;34396;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;12004;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;526;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;9;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;1783;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;9634;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;5879;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;42;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;877;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;2972;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;1410;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;65;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;1192;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;4468;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;1469;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;65;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;180;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;795;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;377;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;43;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;468;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;2191;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;1322;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;66;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;1082;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;3787;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;1794;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;151;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;1432;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;5597;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;2688;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;110;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2097;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;7827;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5574;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;76;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;549;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;3127;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;3629;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;160;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;433;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;2552;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;2376;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;78;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;410;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;1809;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;1092;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;58;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;1210;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;4563;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;2739;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;335;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;255;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;838;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;235;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;368;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1438;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;375;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;6;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;3527;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;12477;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;7742;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;173;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;263;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;1592;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;963;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;10;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;40805;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;77019;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;29548;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;521;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;17;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;231;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2096;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1311;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;23;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1053;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;6566;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4678;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;40;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;2057;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;9913;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;5242;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;80;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4375;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;14905;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4987;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;126;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;11026;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;70418;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;33880;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;851;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;10;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;276;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;919;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;433;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;26;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;234;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;624;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;291;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;16;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;90;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;384;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;197;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;5;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;2;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;146;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;616;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;442;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;24;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;374;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;1325;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;677;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;29;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;1226;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;2870;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;1550;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;39;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;974;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;4540;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2968;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;55;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;81;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;588;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;759;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;29;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;544;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;3513;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;2419;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;68;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;92;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;531;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;384;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;21;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;302;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;1081;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;604;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;33;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;28;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;90;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;34;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;60;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;214;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;78;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;4370;; +Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;9227;; +Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;4511;; +Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;162;; +Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;50;; +Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;120;; +Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;78;; +Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;2;; +Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;8833;; +Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;17171;; +Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;6520;; +Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;145;; +Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;5;; +Hungary;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;143;; +Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;482;; +Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;269;; +Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2559;; +Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;6346;; +Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2887;; +Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;27;; +Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;10450;; +Hungary;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;21498;; +Hungary;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;7047;; +Hungary;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;98;; +Hungary;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;8338;; +Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;12915;; +Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3872;; +Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;146;; +Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;3285;; +Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;8204;; +Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;3044;; +Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;66;; +Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;6;; +Hungary;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;4266;; +Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;4241;; +Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;1002;; +Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;48;; +Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;4;; +Hungary;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;781;; +Hungary;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;1286;; +Hungary;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;538;; +Hungary;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;39;; +Hungary;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;3;; +Hungary;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;428;; +Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;687;; +Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;278;; +Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;12;; +Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;584;; +Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;1148;; +Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;553;; +Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;45;; +Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;1470;; +Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;2422;; +Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;931;; +Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;72;; +Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;3217;; +Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;5754;; +Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;2944;; +Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;119;; +Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;16020;; +Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;32612;; +Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;13208;; +Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;85;; +Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;18;; +Hungary;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;503;; +Hungary;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;943;; +Hungary;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;715;; +Hungary;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;64;; +Hungary;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;1;; +Hungary;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;627;; +Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;1735;; +Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;1047;; +Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;42;; +Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;569;; +Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;993;; +Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;523;; +Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;56;; +Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;466;; +Hungary;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;917;; +Hungary;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;444;; +Hungary;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;13;; +Hungary;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;204;; +Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;423;; +Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;158;; +Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;; +Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;194;; +Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;320;; +Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;68;; +Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Hungary;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;226149;; +Ireland;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;174279;; +Ireland;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;158129;; +Ireland;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;234682;; +Ireland;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;39355;; +Ireland;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;476789;; +Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;1;d; +Ireland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;1;d; +Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;1;d; +Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;210;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;263;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;12;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;2;d; +Ireland;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;2;d; +Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;33;; +Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;207;; +Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;87;; +Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;13;; +Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;6;d; +Ireland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;42;; +Ireland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;9;d; +Ireland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;356;; +Ireland;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;2645;; +Ireland;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;686;; +Ireland;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;53;; +Ireland;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;16;; +Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;150;; +Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;31;; +Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;18;; +Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;110;; +Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;30;; +Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;60;; +Ireland;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;459;; +Ireland;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;236;; +Ireland;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;25;; +Ireland;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4586;; +Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9390;; +Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2640;; +Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;335;; +Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;6;d; +Ireland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;103;; +Ireland;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;731;; +Ireland;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;216;; +Ireland;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;13;; +Ireland;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;2167;; +Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;6484;; +Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;2497;; +Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;372;; +Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;9;d; +Ireland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;272;; +Ireland;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;1438;; +Ireland;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;212;; +Ireland;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;6;d; +Ireland;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;650;; +Ireland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;4342;; +Ireland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;933;; +Ireland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;16;; +Ireland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;24;; +Ireland;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;149;; +Ireland;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;57;; +Ireland;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;8;d; +Ireland;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;243;; +Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1494;; +Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;305;; +Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;32;; +Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;273;; +Ireland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;1194;; +Ireland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;318;; +Ireland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;27;; +Ireland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;66;; +Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1382;; +Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;809;; +Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;26;; +Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;323;; +Ireland;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;2323;; +Ireland;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;1389;; +Ireland;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;62;; +Ireland;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;282;; +Ireland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;2436;; +Ireland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;1334;; +Ireland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;63;; +Ireland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;588;; +Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1223;; +Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;352;; +Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;22;; +Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;93;; +Ireland;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;469;; +Ireland;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;220;; +Ireland;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;18;; +Ireland;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;d; +Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;10;; +Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;8;d; +Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;132;; +Ireland;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;460;; +Ireland;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;338;; +Ireland;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;58;; +Ireland;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;41;; +Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;173;; +Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;34;; +Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;5;d; +Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;24;; +Ireland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;71;; +Ireland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;12;; +Ireland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;2087;; +Ireland;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;7863;; +Ireland;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;849;; +Ireland;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;38;; +Ireland;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;3;d; +Ireland;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;173;; +Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;532;; +Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;52;; +Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;37;; +Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;150;; +Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;22;; +Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;220;; +Ireland;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;890;; +Ireland;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;139;; +Ireland;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;6;d; +Ireland;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2034;; +Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5480;; +Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1011;; +Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;99;; +Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;187;; +Ireland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;671;; +Ireland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;102;; +Ireland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;4;d; +Ireland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;359;; +Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;868;; +Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;171;; +Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;15;; +Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;2671;; +Ireland;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;7618;; +Ireland;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;867;; +Ireland;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;30;; +Ireland;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;4;d; +Ireland;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;2308;; +Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;6513;; +Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;554;; +Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;15;; +Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;103;; +Ireland;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;286;; +Ireland;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;36;; +Ireland;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;3;d; +Ireland;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;6473;; +Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;12066;; +Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;2058;; +Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;123;; +Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;4;d; +Ireland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;809;; +Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;1972;; +Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;310;; +Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;24;; +Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;864;; +Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;5165;; +Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1814;; +Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;75;; +Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;17308;; +Ireland;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;40863;; +Ireland;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;15621;; +Ireland;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;746;; +Ireland;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;17;; +Ireland;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;10485;; +Ireland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;39509;; +Ireland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;15578;; +Ireland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;811;; +Ireland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;7;d; +Ireland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;589;; +Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;2272;; +Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1011;; +Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;83;; +Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;219;; +Ireland;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;704;; +Ireland;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;390;; +Ireland;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;116;; +Ireland;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;4;d; +Ireland;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;d; +Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;11;; +Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;10;; +Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;31;; +Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;12;; +Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;471;; +Ireland;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;1473;; +Ireland;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;971;; +Ireland;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;216;; +Ireland;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;9;d; +Ireland;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;151;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;376;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;170;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;7;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;28;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;90;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;25;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;2268;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;7429;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;1472;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;63;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;95;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;299;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;78;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;84;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;228;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;72;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;298;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;1493;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;536;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;39;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3046;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7498;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2496;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;176;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;6;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;316;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;1126;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;285;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;12;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;2026;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;3919;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;824;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;32;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;1250;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;2576;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;453;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;11;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;2330;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;5070;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;846;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;28;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;278;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;1048;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;348;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;28;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;2888;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;8192;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;2681;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;165;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;688;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;1737;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;438;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;27;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;2125;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;12531;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;6566;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;80;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;754;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;4611;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;2534;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;135;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;3432;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;12649;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;5505;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;279;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;3;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;784;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;1406;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;426;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;25;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;301;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;1234;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;681;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;78;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;18;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;17;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;39;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;21;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;426;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;1227;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;807;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;90;; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;4;d; +Ireland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;102;; +Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;373;; +Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;159;; +Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;13;; +Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;39;; +Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;145;; +Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;61;; +Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;4;d; +Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;1861;; +Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;5898;; +Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;1804;; +Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;95;; +Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;219;; +Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;644;; +Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;315;; +Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;9;d; +Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;220;; +Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;421;; +Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;115;; +Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;6;d; +Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;553;; +Ireland;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;1940;; +Ireland;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;717;; +Ireland;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;33;; +Ireland;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3495;; +Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8152;; +Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3309;; +Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;217;; +Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;1575;; +Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;4493;; +Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;1778;; +Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;119;; +Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;1798;; +Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;2251;; +Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;655;; +Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;43;; +Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;1456;; +Ireland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;2452;; +Ireland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;849;; +Ireland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;28;; +Ireland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;8061;; +Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;14689;; +Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;4883;; +Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;93;; +Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;3;d; +Ireland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;252;; +Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;654;; +Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;251;; +Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;20;; +Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;1844;; +Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;4732;; +Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;1989;; +Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;162;; +Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;4;d; +Ireland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;2051;; +Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;3513;; +Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;985;; +Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;43;; +Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1307;; +Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;8197;; +Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3418;; +Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;58;; +Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;646;; +Ireland;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;3963;; +Ireland;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;2106;; +Ireland;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;102;; +Ireland;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;1879;; +Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;8932;; +Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;4837;; +Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;201;; +Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;1421;; +Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;2111;; +Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;975;; +Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;65;; +Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;404;; +Ireland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;1194;; +Ireland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;676;; +Ireland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;66;; +Ireland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;9;d; +Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;23;; +Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;114;; +Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;40;; +Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;586;; +Ireland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;1277;; +Ireland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;893;; +Ireland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;115;; +Ireland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;5;d; +Ireland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;111;; +Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;230;; +Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;135;; +Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;13;; +Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;5;d; +Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;11;; +Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;1;d; +Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;778;; +Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;1401;; +Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;571;; +Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;38;; +Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;32;; +Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;33;; +Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;9;d; +Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;18;; +Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;31;; +Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;9;d; +Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;96;; +Ireland;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;244;; +Ireland;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;83;; +Ireland;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;6;d; +Ireland;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;29766;; +Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;34496;; +Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;14524;; +Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;923;; +Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;15;; +Ireland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;808;; +Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;1453;; +Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;303;; +Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;24;; +Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;11083;; +Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;9001;; +Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;3169;; +Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;208;; +Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;10;; +Ireland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;496;; +Ireland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;560;; +Ireland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;104;; +Ireland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;6;d; +Ireland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;711;; +Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;1047;; +Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;156;; +Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;6;d; +Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;125;; +Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;336;; +Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;152;; +Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;18;; +Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;597;; +Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;786;; +Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;355;; +Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;33;; +Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;1008;; +Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;1767;; +Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;863;; +Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;82;; +Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1640;; +Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3909;; +Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1594;; +Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;101;; +Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;6715;; +Ireland;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;15379;; +Ireland;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;6275;; +Ireland;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;200;; +Ireland;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;4;d; +Ireland;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;8580;; +Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;23810;; +Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;13977;; +Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;799;; +Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;7;d; +Ireland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;761;; +Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;745;; +Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;301;; +Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;24;; +Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;10130;; +Ireland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;9701;; +Ireland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;2069;; +Ireland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;223;; +Ireland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;4;d; +Ireland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;535;; +Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;690;; +Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;377;; +Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;32;; +Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;17;; +Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;2114;; +Ireland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;3605;; +Ireland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;2652;; +Ireland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;257;; +Ireland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;11;; +Ireland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;181;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;1718;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;3066;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;1691;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;116;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;2;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;2;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;15;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;8;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;2;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;7;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;2;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;24;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;114;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;57;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;4;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;19;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;5;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;4;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;2;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;2;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;13;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;6;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;20;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;166;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;86;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;5;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;5;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;32;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;13;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;3;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;22;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;18;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;5;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;26;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;14;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;8;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;25;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;6;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;4;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;2;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;5;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;8;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;44;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;67;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;30;; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;15;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;25;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;15;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;3;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;7;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;2;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;980;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;3340;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;1201;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;67;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;12;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;31;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;9;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;15;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;120;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;266;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;68;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;10;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;495;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1336;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;510;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;35;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;25;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;61;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;11;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;33;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;94;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;34;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;5;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;125;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;216;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;30;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;37;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;96;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;24;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;3;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;5;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;1;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;54;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;169;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;46;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;51;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;93;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;27;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;3;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;14;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;65;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;20;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;17;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;56;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;33;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;26;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;89;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;27;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;5;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;16;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;47;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;17;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;4;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;30;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;178;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;70;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;6;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;72;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;269;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;200;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;38;; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;54;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;101;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;26;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;4;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;5;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;8;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;5;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;3446;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;9987;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;3623;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;98;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;6;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;5;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;20;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;7;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;13;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;51;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;21;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;604;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1190;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;468;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;27;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;83;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;777;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;459;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;47;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;85;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;107;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;44;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;60;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;110;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;32;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;6;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;19;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;6;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;3;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;7;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;4;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;32;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;89;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;40;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;3;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;57;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;121;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;46;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;23;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;32;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;25;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;8;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;45;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;39;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;4;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;85;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;184;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;111;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;3;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;6;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;19;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;4;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;50;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;106;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;92;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;8;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;168;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;475;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;417;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;47;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;640;; +Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;1108;; +Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;420;; +Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;46;; +Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;3;d; +Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;17;; +Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;7;d; +Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;961;; +Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;2162;; +Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;968;; +Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;40;; +Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;8;d; +Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;24;; +Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;28;; +Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;51;; +Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;109;; +Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;43;; +Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;77;; +Ireland;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;199;; +Ireland;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;95;; +Ireland;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;12;; +Ireland;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1169;; +Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1924;; +Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1016;; +Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;49;; +Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;205;; +Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;438;; +Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;198;; +Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;10;; +Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;5198;; +Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;6853;; +Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;3086;; +Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;152;; +Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;213;; +Ireland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;244;; +Ireland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;79;; +Ireland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;10;; +Ireland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;70;; +Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;201;; +Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;212;; +Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;9;d; +Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;14;; +Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;38;; +Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;19;; +Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;4;d; +Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;50;; +Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;177;; +Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;114;; +Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;13;; +Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;2536;; +Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;5525;; +Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;3046;; +Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;161;; +Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;5;d; +Ireland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;79;; +Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;653;; +Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;862;; +Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;72;; +Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;332;; +Ireland;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;1661;; +Ireland;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;1707;; +Ireland;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;164;; +Ireland;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;865;; +Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;3381;; +Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;2584;; +Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;124;; +Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;200;; +Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;396;; +Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;227;; +Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;14;; +Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;302;; +Ireland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;865;; +Ireland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;530;; +Ireland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;54;; +Ireland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;11;; +Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;11;; +Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;20;; +Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;4;d; +Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;9;d; +Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;7;d; +Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;532;; +Ireland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;1273;; +Ireland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;1147;; +Ireland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;117;; +Ireland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;11;; +Ireland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;29;; +Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;90;; +Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;48;; +Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;25;; +Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;1;d; +Ireland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;2;d; +Ireland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;5;d; +Ireland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;251;; +Ireland;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;478;; +Ireland;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;204;; +Ireland;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;19;; +Ireland;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;6;d; +Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;10;; +Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;6;d; +Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;11;; +Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;13;; +Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4;d; +Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;18;; +Ireland;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;44;; +Ireland;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;23;; +Ireland;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;631;; +Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;726;; +Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;372;; +Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;49;; +Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;d; +Ireland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;35;; +Ireland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;63;; +Ireland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;38;; +Ireland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;7;d; +Ireland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;456;; +Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;455;; +Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;197;; +Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;24;; +Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;88;; +Ireland;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;96;; +Ireland;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;34;; +Ireland;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;4;d; +Ireland;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;118;; +Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;143;; +Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;48;; +Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;8;d; +Ireland;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;18;; +Ireland;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;11;; +Ireland;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;1;d; +Ireland;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;95;; +Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;135;; +Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;59;; +Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;10;; +Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;147;; +Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;251;; +Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;188;; +Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;15;; +Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;73;; +Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;163;; +Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;138;; +Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;14;; +Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;1330;; +Ireland;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;870;; +Ireland;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;333;; +Ireland;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;29;; +Ireland;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;329;; +Ireland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;815;; +Ireland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;521;; +Ireland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;44;; +Ireland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;86;; +Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;97;; +Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;40;; +Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;7;d; +Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;208;; +Ireland;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;195;; +Ireland;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;88;; +Ireland;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;13;; +Ireland;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;1;d; +Ireland;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;10;; +Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;17;; +Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;15;; +Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;d; +Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;4;d; +Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;9;d; +Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;2;d; +Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;36799;; +Ireland;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;34783;; +Ireland;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;18398;; +Ireland;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;2666;; +Ireland;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;143;; +Ireland;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;207324;; +Ireland;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;54002;; +Ireland;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;83668;; +Ireland;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;189877;; +Ireland;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;17692;; +Ireland;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;499927;; +Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;3;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;23;; +Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;43;; +Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;15;; +Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;1;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;1;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;1;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;2269;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;3710;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;1392;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;42;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;1;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;2;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;1;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;4;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;3;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;4;d; +Ireland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;201;; +Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;903;; +Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;527;; +Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;65;; +Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;25;; +Ireland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;246;; +Ireland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;159;; +Ireland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;24;; +Ireland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;627;; +Ireland;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;8661;; +Ireland;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;3962;; +Ireland;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;416;; +Ireland;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;33;; +Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;432;; +Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;248;; +Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;d; +Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;99;; +Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;613;; +Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;238;; +Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;19;; +Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;404;; +Ireland;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;4101;; +Ireland;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;1726;; +Ireland;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;165;; +Ireland;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4327;; +Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;17079;; +Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;6538;; +Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1018;; +Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;11;; +Ireland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;256;; +Ireland;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;2731;; +Ireland;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;1256;; +Ireland;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;107;; +Ireland;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;2271;; +Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;8484;; +Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;3430;; +Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;525;; +Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;9;d; +Ireland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;330;; +Ireland;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;3114;; +Ireland;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;904;; +Ireland;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;59;; +Ireland;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;554;; +Ireland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;4923;; +Ireland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;2030;; +Ireland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;102;; +Ireland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;29;; +Ireland;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;303;; +Ireland;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;173;; +Ireland;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;26;; +Ireland;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;266;; +Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;2450;; +Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;1075;; +Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;127;; +Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;350;; +Ireland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;2293;; +Ireland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;921;; +Ireland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;111;; +Ireland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;78;; +Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1777;; +Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2060;; +Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;86;; +Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;125;; +Ireland;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;1321;; +Ireland;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;1248;; +Ireland;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;61;; +Ireland;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;75;; +Ireland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;1046;; +Ireland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;765;; +Ireland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;45;; +Ireland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;486;; +Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1545;; +Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;598;; +Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;71;; +Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;51;; +Ireland;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;434;; +Ireland;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;267;; +Ireland;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;38;; +Ireland;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;d; +Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;22;; +Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;26;; +Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;4;d; +Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;203;; +Ireland;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;1019;; +Ireland;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;796;; +Ireland;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;189;; +Ireland;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;4;d; +Ireland;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;60;; +Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;262;; +Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;126;; +Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;12;; +Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;62;; +Ireland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;218;; +Ireland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;139;; +Ireland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;10;; +Ireland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;2949;; +Ireland;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;14613;; +Ireland;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;3064;; +Ireland;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;162;; +Ireland;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;4;d; +Ireland;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;345;; +Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1313;; +Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;568;; +Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;15;; +Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;93;; +Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;384;; +Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;130;; +Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;12;; +Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;1771;; +Ireland;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;5071;; +Ireland;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;1347;; +Ireland;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;118;; +Ireland;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1664;; +Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7569;; +Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2252;; +Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;203;; +Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;264;; +Ireland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1287;; +Ireland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;451;; +Ireland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;25;; +Ireland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;232;; +Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;725;; +Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;181;; +Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;24;; +Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;4695;; +Ireland;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;18892;; +Ireland;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;5015;; +Ireland;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;205;; +Ireland;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;2490;; +Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;8776;; +Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;1645;; +Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;98;; +Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;106;; +Ireland;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;466;; +Ireland;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;148;; +Ireland;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;16;; +Ireland;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;5835;; +Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;17165;; +Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;7174;; +Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;1122;; +Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;14;; +Ireland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;629;; +Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;2028;; +Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;521;; +Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;46;; +Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;411;; +Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;3613;; +Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1963;; +Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;105;; +Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;4302;; +Ireland;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;14373;; +Ireland;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;7952;; +Ireland;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;462;; +Ireland;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;6;d; +Ireland;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;1511;; +Ireland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;9211;; +Ireland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;4256;; +Ireland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;522;; +Ireland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;10;; +Ireland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;657;; +Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;2592;; +Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1043;; +Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;135;; +Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;171;; +Ireland;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;1138;; +Ireland;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;1163;; +Ireland;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;742;; +Ireland;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;23;; +Ireland;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;d; +Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;d; +Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;d; +Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;9;d; +Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;28;; +Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;11;; +Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;653;; +Ireland;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;2104;; +Ireland;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;1313;; +Ireland;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;347;; +Ireland;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;5;d; +Ireland;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;324;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;386;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;154;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;14;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;45;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;173;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;111;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;7;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;2756;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;12137;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;2991;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;161;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;268;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1213;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;909;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;15;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;111;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;520;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;309;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;17;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;743;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;3220;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;1158;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;44;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2362;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7666;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2638;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;304;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;382;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;1934;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;693;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;35;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;3903;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;8057;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;1219;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;50;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;2126;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;4724;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;993;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;49;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;1831;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;4652;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;1087;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;112;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;188;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;897;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;500;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;107;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;1422;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;4211;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;1501;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;136;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;617;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;1478;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;396;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;31;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1196;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;7286;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;4970;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;103;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;470;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;1700;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;852;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;30;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;648;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;3344;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;1510;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;65;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;1201;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;1574;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;379;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;16;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;209;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;603;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;256;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;12;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;5;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;7;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;629;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;1658;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;863;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;111;; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;36;; +Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;79;; +Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;52;; +Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;5;d; +Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;17;; +Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;37;; +Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;47;; +Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;789;; +Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;2071;; +Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;612;; +Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;23;; +Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;127;; +Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;250;; +Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;190;; +Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;19;; +Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;55;; +Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;112;; +Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;52;; +Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;d; +Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;115;; +Ireland;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;289;; +Ireland;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;163;; +Ireland;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;10;; +Ireland;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1281;; +Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1990;; +Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;657;; +Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;49;; +Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;1456;; +Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;6164;; +Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;3326;; +Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;113;; +Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;348;; +Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;417;; +Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;94;; +Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;14;; +Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;1003;; +Ireland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;1255;; +Ireland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;323;; +Ireland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;10;; +Ireland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;4007;; +Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;5246;; +Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;1299;; +Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;43;; +Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;43;; +Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;59;; +Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;17;; +Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;6;d; +Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;652;; +Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;905;; +Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;392;; +Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;48;; +Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;759;; +Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;998;; +Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;281;; +Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;35;; +Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;435;; +Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2412;; +Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1705;; +Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;43;; +Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;163;; +Ireland;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;454;; +Ireland;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;283;; +Ireland;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;17;; +Ireland;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;250;; +Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;869;; +Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;438;; +Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;18;; +Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;720;; +Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;861;; +Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;318;; +Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;23;; +Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;84;; +Ireland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;254;; +Ireland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;213;; +Ireland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;29;; +Ireland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;12;; +Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;95;; +Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;44;; +Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;d; +Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;316;; +Ireland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;583;; +Ireland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;354;; +Ireland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;49;; +Ireland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;134;; +Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;459;; +Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;287;; +Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;49;; +Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;9;d; +Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;18;; +Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;17;; +Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;3;d; +Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;606;; +Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;1681;; +Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;777;; +Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;88;; +Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;44;; +Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;61;; +Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;49;; +Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;7;d; +Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;25;; +Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;111;; +Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;59;; +Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;d; +Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;183;; +Ireland;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;709;; +Ireland;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;347;; +Ireland;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;38;; +Ireland;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;16426;; +Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;16586;; +Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;6048;; +Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;751;; +Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;10;; +Ireland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;379;; +Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;1187;; +Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;492;; +Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;33;; +Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;6529;; +Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;5523;; +Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;1414;; +Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;114;; +Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;461;; +Ireland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;425;; +Ireland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;126;; +Ireland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;13;; +Ireland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;525;; +Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;1046;; +Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;419;; +Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;36;; +Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;133;; +Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;606;; +Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;405;; +Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;79;; +Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;326;; +Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;533;; +Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;238;; +Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;29;; +Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;2440;; +Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;5665;; +Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;2484;; +Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;239;; +Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2853;; +Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;9880;; +Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2761;; +Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;100;; +Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;499;; +Ireland;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;1886;; +Ireland;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;2010;; +Ireland;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;251;; +Ireland;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;1088;; +Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;4512;; +Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;1941;; +Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;81;; +Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;644;; +Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;672;; +Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;402;; +Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;42;; +Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;719;; +Ireland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;1588;; +Ireland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;690;; +Ireland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;157;; +Ireland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;4;d; +Ireland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;19;; +Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;58;; +Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;43;; +Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;3;d; +Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;d; +Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;19;; +Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;12;; +Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;d; +Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;789;; +Ireland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;1607;; +Ireland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;1094;; +Ireland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;196;; +Ireland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;4;d; +Ireland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;3393;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;26533;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;28655;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;11940;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;358;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;7;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;4;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;42;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;155;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;87;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;5;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;9;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;7;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;8;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;48;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;141;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;59;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;3;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;91;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;254;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;118;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;12;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;6;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;20;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;8;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;2;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;53;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;156;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;103;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;5;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;5;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;11;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;7;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;1;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;9;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;10;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;6;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;17;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;4;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;11;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;48;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;19;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;3;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;705;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;2258;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;931;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;68;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;16;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;133;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;105;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;41;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;165;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;149;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;12;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;22;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;125;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;125;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;7;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;405;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;859;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;499;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;35;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;4;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;42;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;54;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;3;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;11;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;8;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;189;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;936;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;852;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;232;; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;8;d; +Ireland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;269;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;503;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;240;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;18;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;173;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;380;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;324;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;9;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;8650;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;25580;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;9328;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;451;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;10;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;446;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;904;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;574;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;16;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;144;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;377;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;164;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;9;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;24542;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;46220;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;16777;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;835;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;16;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;7740;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;14120;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5630;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;494;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;8;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;711;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;1683;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;846;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;28;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;206;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;513;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;251;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;19;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;503;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;1482;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;351;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;15;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;91;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;299;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;89;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;2;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;45;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;90;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;49;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;1;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;1361;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;2640;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;936;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;48;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;633;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;1865;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;572;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;22;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;245;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;958;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;987;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;28;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;254;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;468;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;350;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;24;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;128;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;619;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;560;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;23;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;81;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;263;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;172;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;20;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;198;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;839;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;440;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;50;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;4117;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;9590;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;5719;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;402;; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;9;d; +Ireland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;554;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;770;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;324;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;21;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;349;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;1606;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;992;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;47;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;6428;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;19840;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;6827;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;218;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;30;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;192;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;131;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;320;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1489;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;542;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;20;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;1243;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;4086;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;1664;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;72;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2465;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7943;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3301;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;180;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;2450;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;20751;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;12821;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;1349;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;9;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;237;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;415;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;124;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;12;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;98;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;258;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;102;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;7;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;9;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;53;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;32;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;1;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;8;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;25;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;13;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;135;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;376;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;159;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;5;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;859;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;2376;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;1087;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;76;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;151;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;829;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;877;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;35;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;32;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;149;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;181;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;24;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;80;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;353;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;501;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;54;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;34;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;100;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;88;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;10;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;43;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;202;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;127;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;18;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;22;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;24;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;4;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;966;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;3240;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;2275;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;199;; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;5;d; +Ireland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;1907;; +Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;3130;; +Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;1660;; +Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;191;; +Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;5;d; +Ireland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;72;; +Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;194;; +Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;180;; +Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;3;d; +Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;2366;; +Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;6044;; +Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;2183;; +Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;77;; +Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;38;; +Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;203;; +Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;124;; +Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;d; +Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;616;; +Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1228;; +Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;503;; +Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;22;; +Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;5093;; +Ireland;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;13548;; +Ireland;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;5721;; +Ireland;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;172;; +Ireland;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4079;; +Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;6161;; +Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1843;; +Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;92;; +Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;d; +Ireland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;1356;; +Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;3239;; +Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;1177;; +Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;44;; +Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;3731;; +Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;4252;; +Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;1126;; +Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;54;; +Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;368;; +Ireland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;403;; +Ireland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;119;; +Ireland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;4;d; +Ireland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;66;; +Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;158;; +Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;182;; +Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;5;d; +Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;28;; +Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;83;; +Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;49;; +Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;7;d; +Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;231;; +Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;515;; +Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;259;; +Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;20;; +Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1676;; +Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;3411;; +Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;1282;; +Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;68;; +Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;5;d; +Ireland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;226;; +Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;2208;; +Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;2452;; +Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;83;; +Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;248;; +Ireland;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;607;; +Ireland;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;619;; +Ireland;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;34;; +Ireland;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;515;; +Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;1811;; +Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;1218;; +Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;29;; +Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;206;; +Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;386;; +Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;270;; +Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;18;; +Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;224;; +Ireland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;585;; +Ireland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;296;; +Ireland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;34;; +Ireland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5;d; +Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;d; +Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;d; +Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;8;d; +Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;d; +Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;1594;; +Ireland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;3832;; +Ireland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;2764;; +Ireland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;191;; +Ireland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;7;d; +Ireland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;107;; +Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;234;; +Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;205;; +Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;94;; +Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;15;; +Ireland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;36;; +Ireland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;35;; +Ireland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;5;d; +Ireland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;580;; +Ireland;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;1238;; +Ireland;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;437;; +Ireland;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;32;; +Ireland;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;4;d; +Ireland;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;20;; +Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;45;; +Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;37;; +Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;d; +Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;56;; +Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;87;; +Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;44;; +Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;6;d; +Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;416;; +Ireland;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;707;; +Ireland;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;273;; +Ireland;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;34;; +Ireland;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;749;; +Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;982;; +Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;377;; +Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;60;; +Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;106;; +Ireland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;356;; +Ireland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;220;; +Ireland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;31;; +Ireland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;332;; +Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;419;; +Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;111;; +Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;19;; +Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;110;; +Ireland;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;181;; +Ireland;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;65;; +Ireland;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;5;d; +Ireland;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;88;; +Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;131;; +Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;42;; +Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;7;d; +Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;6;d; +Ireland;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;16;; +Ireland;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;12;; +Ireland;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;120;; +Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;176;; +Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;103;; +Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;17;; +Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;153;; +Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;274;; +Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;129;; +Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;12;; +Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;71;; +Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;238;; +Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;224;; +Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;18;; +Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;1229;; +Ireland;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;551;; +Ireland;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;226;; +Ireland;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;15;; +Ireland;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;2;d; +Ireland;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;154;; +Ireland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;274;; +Ireland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;167;; +Ireland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;14;; +Ireland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;74;; +Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;96;; +Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;63;; +Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;9;d; +Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;44;; +Ireland;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;91;; +Ireland;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;57;; +Ireland;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;14;; +Ireland;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;d; +Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;d; +Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;6;d; +Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;d; +Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Ireland;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;48010;; +Ireland;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;48655;; +Ireland;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;21424;; +Ireland;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;2551;; +Ireland;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;74;; +Ireland;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;c; +Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;c; +Iceland;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;c; +Iceland;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;c; +Iceland;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;c; +Iceland;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Iceland;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;c; +Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;c; +Iceland;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;c; +Iceland;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;c; +Iceland;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;c; +Iceland;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Iceland;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Italy;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;du;Data included in the secondary cells are not provided, because they have not been validated by Istat. +Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Italy;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;1192;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;1271;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;1554;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;2290;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;376;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;2829;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;41;; +Liechtenstein;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;6;; +Liechtenstein;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;4;; +Liechtenstein;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;20;; +Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;16;; +Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;8;; +Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;28;; +Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;15;; +Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;4;; +Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;4;; +Liechtenstein;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;17;; +Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;5;; +Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;14;; +Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;17;; +Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;15;; +Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5;; +Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;8;; +Liechtenstein;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;8;; +Liechtenstein;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;23;; +Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;13;; +Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;9;; +Liechtenstein;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;11;; +Liechtenstein;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;21;; +Liechtenstein;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;8;; +Liechtenstein;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;17;; +Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;39;; +Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;9;; +Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6;; +Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;20;; +Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;22;; +Liechtenstein;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;7;; +Liechtenstein;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;9;; +Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;25;; +Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;50;; +Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;134;; +Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;51;; +Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;9;; +Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;12;; +Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;59;; +Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;18;; +Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;69;; +Liechtenstein;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;246;; +Liechtenstein;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;100;; +Liechtenstein;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;49;; +Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;113;; +Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;38;; +Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;19;; +Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;6;; +Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;19;; +Liechtenstein;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;12;; +Liechtenstein;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;47;; +Liechtenstein;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;98;; +Liechtenstein;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;30;; +Liechtenstein;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;4;; +Liechtenstein;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;69;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;75;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;22;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;6;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;5;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;39;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;38;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;21;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;6;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;4;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;3;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;122;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;124;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;48;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;76;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;111;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;34;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;6;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;33;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;45;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;34;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;17;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;75;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;148;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;79;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;10;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;16;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;8;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;35;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;57;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;9;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;61;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;132;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;85;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;8;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;44;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;26;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;19;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;64;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;47;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;5;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;13;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;58;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;20;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;11;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;9;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;25;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;6;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;55;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;111;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;83;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;71;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;171;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;122;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;11;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;43;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;16;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;42;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;122;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;60;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;18;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;3;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;6;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;32;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;25;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;9;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;6;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;13;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;12;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;16;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;22;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;13;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;20;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;27;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;17;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;73;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;98;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;64;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;3;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;32;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;73;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;28;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;6;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;6;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;6;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;5;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;3;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;14;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;10;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;9;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;10;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;95;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;101;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;54;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;7;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;8;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;39;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;67;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;28;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;11;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;48;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;52;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;38;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;29;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;69;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;16;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;12;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;7;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;7;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;17;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;31;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;17;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;47;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;119;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;51;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;3;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;29;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;10;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;8;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;6;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;21;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;4;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;6;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;3;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;12;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;11;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;30;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;16;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;21;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;54;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;14;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;4;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;46;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;35;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;9;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;22;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;19;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;10;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;8;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;5;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;9;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;13;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;8;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;3;; +Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;8;; +Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;5;; +Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;74;; +Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;151;; +Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;75;; +Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;10;; +Liechtenstein;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;20;; +Liechtenstein;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;25;; +Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;53;; +Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;56;; +Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7;; +Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;6;; +Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;27;; +Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;10;; +Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;37;; +Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;47;; +Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;28;; +Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;7;; +Liechtenstein;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;10;; +Liechtenstein;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;21;; +Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;24;; +Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;20;; +Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;6;; +Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;36;; +Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;73;; +Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;45;; +Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;22;; +Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;67;; +Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;20;; +Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;10;; +Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;29;; +Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;33;; +Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;15;; +Liechtenstein;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;30;; +Liechtenstein;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;9;; +Liechtenstein;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;47;; +Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;68;; +Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;48;; +Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;9;; +Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;5;; +Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;5;; +Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;3;; +Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;18;; +Liechtenstein;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;25;; +Liechtenstein;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;11;; +Liechtenstein;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;3;; +Liechtenstein;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;14;; +Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;10;; +Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;56;; +Liechtenstein;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;81;; +Liechtenstein;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;45;; +Liechtenstein;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;9;; +Liechtenstein;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;1003;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;263;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;838;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;1769;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;158;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;2946;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;5;; +Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;14;; +Liechtenstein;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;274;; +Liechtenstein;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;130;; +Liechtenstein;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;8;; +Liechtenstein;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;11;; +Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;6;; +Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;44;; +Liechtenstein;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;30;; +Liechtenstein;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9;; +Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;84;; +Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;51;; +Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;8;; +Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;21;; +Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;15;; +Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;30;; +Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;30;; +Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;3;; +Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;40;; +Liechtenstein;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;12;; +Liechtenstein;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;68;; +Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;31;; +Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;10;; +Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;66;; +Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;47;; +Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;8;; +Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;6;; +Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;15;; +Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;7;; +Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;43;; +Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;34;; +Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;16;; +Liechtenstein;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;8;; +Liechtenstein;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;14;; +Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;8;; +Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;11;; +Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;6;; +Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;12;; +Liechtenstein;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;12;; +Liechtenstein;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;44;; +Liechtenstein;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;21;; +Liechtenstein;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;4;; +Liechtenstein;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;:;c; +Liechtenstein;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;61;; +Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;173;; +Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;78;; +Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;3;; +Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;5;; +Liechtenstein;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;17;; +Liechtenstein;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;13;; +Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;34;; +Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;18;; +Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;7;; +Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;8;; +Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;31;; +Liechtenstein;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;81;; +Liechtenstein;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;22;; +Liechtenstein;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;4;; +Liechtenstein;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;30;; +Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;119;; +Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;32;; +Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;4;; +Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;48;; +Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;311;; +Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;209;; +Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;44;; +Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;12;; +Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;16;; +Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;62;; +Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;48;; +Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;13;; +Liechtenstein;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;98;; +Liechtenstein;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;94;; +Liechtenstein;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;5;; +Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;62;; +Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;55;; +Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;6;; +Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;16;; +Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;8;; +Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;19;; +Liechtenstein;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;8;; +Liechtenstein;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;44;; +Liechtenstein;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;59;; +Liechtenstein;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;31;; +Liechtenstein;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;9;; +Liechtenstein;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;:;c; +Liechtenstein;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;7;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;5;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;101;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;209;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;135;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;3;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;19;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;7;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;10;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;18;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;70;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;33;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;4;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;34;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;61;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;38;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;6;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;7;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;10;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;6;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;13;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;22;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;6;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;94;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;205;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;77;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;10;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;8;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;80;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;128;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;68;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;6;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;5;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;14;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;3;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;34;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;116;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;74;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;7;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;21;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;12;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;14;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;15;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;12;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;5;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;9;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;9;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;32;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;47;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;19;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;5;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;27;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;75;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;60;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;12;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;5;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;11;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;26;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;8;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;27;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;14;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;36;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;53;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;31;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;25;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;33;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;29;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;5;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;14;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;45;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;29;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;4;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;9;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;5;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;5;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;3;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;20;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;11;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;16;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;31;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;28;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;4;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;21;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;62;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;14;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;9;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;6;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;6;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;14;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;10;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;8;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;13;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;11;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;14;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;83;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;52;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;12;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;6;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;7;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;10;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;7;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;16;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;12;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;6;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;5;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;21;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;15;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;13;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;19;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;51;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;31;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;13;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;20;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;11;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;7;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;15;; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;:;c; +Liechtenstein;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;226;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;279;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;161;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;7;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;25;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;15;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;11;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;4;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;275;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;296;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;134;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;11;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;67;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;73;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;42;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;11;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;5;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;11;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;6;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;8;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;16;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;6;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;7;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;41;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;23;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;5;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;6;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;23;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;57;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;40;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;8;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;11;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;42;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;26;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;23;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;6;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;70;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;50;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;4;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;5;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;14;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;8;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;7;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;50;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;104;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;41;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;41;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;57;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;23;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;13;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;4;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;5;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;31;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;24;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;4;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;5;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;5;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;7;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;3;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;5;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;3;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;13;; +Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;13;; +Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;6;; +Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;120;; +Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;173;; +Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;86;; +Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;10;; +Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;94;; +Liechtenstein;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;99;; +Liechtenstein;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;60;; +Liechtenstein;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;9;; +Liechtenstein;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;30;; +Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;46;; +Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;26;; +Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;16;; +Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;11;; +Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;23;; +Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;12;; +Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;6;; +Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;20;; +Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;9;; +Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;9;; +Liechtenstein;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;5;; +Liechtenstein;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;22;; +Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;14;; +Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;11;; +Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;27;; +Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;19;; +Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;30;; +Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;13;; +Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;15;; +Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;14;; +Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;17;; +Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;14;; +Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;26;; +Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;4;; +Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;8;; +Liechtenstein;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;10;; +Liechtenstein;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;6;; +Liechtenstein;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;11;; +Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;12;; +Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;9;; +Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;4;; +Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;3;; +Liechtenstein;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;6;; +Liechtenstein;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;4;; +Liechtenstein;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Liechtenstein;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;36;; +Liechtenstein;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;16;; +Liechtenstein;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;11;; +Liechtenstein;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;10;; +Liechtenstein;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;c; +Liechtenstein;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Lithuania;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Lithuania;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;28312;; +Luxembourg;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;20922;; +Luxembourg;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;25978;; +Luxembourg;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;34635;; +Luxembourg;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;5991;; +Luxembourg;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;43170;; +Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;40;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;15;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;2;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;7;; +Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;8;; +Luxembourg;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;104;; +Luxembourg;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;19;; +Luxembourg;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2;; +Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;4;; +Luxembourg;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;56;; +Luxembourg;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;28;; +Luxembourg;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;29;; +Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;215;; +Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;123;; +Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;14;; +Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;5;; +Luxembourg;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;49;; +Luxembourg;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;10;; +Luxembourg;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;3;; +Luxembourg;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;48;; +Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;335;; +Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;168;; +Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;16;; +Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;16;; +Luxembourg;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;75;; +Luxembourg;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;20;; +Luxembourg;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;80;; +Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;651;; +Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;112;; +Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;39;; +Luxembourg;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;13;; +Luxembourg;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;82;; +Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;242;; +Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;49;; +Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;12;; +Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;47;; +Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;23;; +Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;22;; +Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;137;; +Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;45;; +Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;10;; +Luxembourg;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;47;; +Luxembourg;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;17;; +Luxembourg;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;17;; +Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;122;; +Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;39;; +Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;25;; +Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;14;; +Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;12;; +Luxembourg;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;75;; +Luxembourg;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;26;; +Luxembourg;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;20;; +Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;188;; +Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;78;; +Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;32;; +Luxembourg;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;280;; +Luxembourg;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;120;; +Luxembourg;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;8;; +Luxembourg;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;16;; +Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;55;; +Luxembourg;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;210;; +Luxembourg;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;37;; +Luxembourg;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;11;; +Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;14;; +Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4;; +Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;10;; +Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;12;; +Luxembourg;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;51;; +Luxembourg;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;14;; +Luxembourg;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;77;; +Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;273;; +Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;89;; +Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7;; +Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;15;; +Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;71;; +Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;13;; +Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;24;; +Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;28;; +Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;6;; +Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;100;; +Luxembourg;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;305;; +Luxembourg;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;44;; +Luxembourg;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;430;; +Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;1787;; +Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;196;; +Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;7;; +Luxembourg;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;18;; +Luxembourg;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;5;; +Luxembourg;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;739;; +Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;1203;; +Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;168;; +Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;33;; +Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;85;; +Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;10;; +Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;941;; +Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;2437;; +Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;907;; +Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;6;; +Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;759;; +Luxembourg;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;1945;; +Luxembourg;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;577;; +Luxembourg;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;8;; +Luxembourg;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;547;; +Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;1733;; +Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;479;; +Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;4;; +Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;24;; +Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;91;; +Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;21;; +Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;59;; +Luxembourg;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;247;; +Luxembourg;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;71;; +Luxembourg;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;200;; +Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2105;; +Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;641;; +Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;417;; +Luxembourg;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;1270;; +Luxembourg;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;427;; +Luxembourg;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;21;; +Luxembourg;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;6;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;8;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;6;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;45;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;174;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;60;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;6;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;19;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;6;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;10;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;6;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;38;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;131;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;62;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;175;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;407;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;130;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;32;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;142;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;38;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;26;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;50;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;10;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;34;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;144;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;34;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;241;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;1068;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;278;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;12;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;43;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;110;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;57;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;3;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;289;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;574;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;153;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;34;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;106;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;32;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;423;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1195;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;354;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;80;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;114;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;40;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;1320;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;2429;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;797;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;5;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;21;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;63;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;13;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;101;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;216;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;93;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;62;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;566;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;340;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;316;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;822;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;322;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;8;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;5;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;15;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;5;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;9;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;4;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;79;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;299;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;133;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;24;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;37;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;10;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;17;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;6;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;162;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;442;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;165;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;6;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;348;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;754;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;285;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;13;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;140;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;373;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;101;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;54;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;81;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;19;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;113;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;386;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;134;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;433;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;2451;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;631;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;39;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;89;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;41;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;286;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;602;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;200;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;175;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;251;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;75;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;314;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1155;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;438;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;35;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;111;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;32;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;210;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;664;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;250;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;27;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;83;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;28;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;47;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;178;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;77;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;3;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;42;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;446;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;344;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;247;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;712;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;269;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;9;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;2;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;100;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;291;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;73;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;20;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;57;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;28;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1180;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2140;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;760;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;25;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;92;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;196;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;32;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;664;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;1194;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;266;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;3;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;18;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;32;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;10;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;46;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;94;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;27;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;10;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;16;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;8;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;23;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;53;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;19;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;60;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;160;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;62;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;159;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;474;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;225;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;34;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;50;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;18;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;874;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;1778;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;624;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;3;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;30;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;33;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;21;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;562;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;766;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;155;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;5;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;6;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;59;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;21;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;7;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;13;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;599;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;1203;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;414;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;20;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;1;; +Luxembourg;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;43;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;314;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;295;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;41;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;6;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;7;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;3;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;60;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;68;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;21;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;3;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;6;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;14;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;7;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;5;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;27;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;27;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;22;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;9;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;2;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;2;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;30;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;84;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;59;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;10;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;65;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;176;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;47;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;41;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;84;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;26;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;39;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;97;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;45;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;11;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;5;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;7;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;9;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;12;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;2;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;17;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;16;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;6;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;21;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;9;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;25;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;14;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;2;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;6;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;44;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;21;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;37;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;82;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;37;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;23;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;94;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;35;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;14;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;35;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;49;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;111;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;26;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;5;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;4;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;3;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;9;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;8;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;18;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;5;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;31;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;9;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;3;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;7;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;49;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;13;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;3;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;19;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;6;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;10;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;39;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;7;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;5;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;36;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;20;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;4;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;53;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;303;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;78;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;5;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;13;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;32;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;250;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;80;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;140;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;610;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;189;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;18;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;82;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;18;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;238;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;919;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;223;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;14;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;144;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;89;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;9;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;70;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;33;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;7;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;68;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;26;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;43;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;226;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;90;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;723;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;2495;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;527;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;155;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1084;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;578;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;28;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;194;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;107;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;217;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;1375;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;519;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;9;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;45;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;12;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;37;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;189;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;74;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;53;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;563;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;230;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;4;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;11;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;11;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;366;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;2588;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;932;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;12;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;15;; +Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;26;; +Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;2;; +Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;26;; +Luxembourg;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;147;; +Luxembourg;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;49;; +Luxembourg;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7;; +Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4;; +Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;4;; +Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;11;; +Luxembourg;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;48;; +Luxembourg;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;27;; +Luxembourg;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;78;; +Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;200;; +Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;68;; +Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;17;; +Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;54;; +Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;23;; +Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;42;; +Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;111;; +Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;35;; +Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;6;; +Luxembourg;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;77;; +Luxembourg;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;24;; +Luxembourg;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;33;; +Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;131;; +Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;37;; +Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;4;; +Luxembourg;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;11;; +Luxembourg;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;5;; +Luxembourg;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;40;; +Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;71;; +Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;21;; +Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;35;; +Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;78;; +Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;21;; +Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;119;; +Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;408;; +Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;211;; +Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;15;; +Luxembourg;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;40;; +Luxembourg;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;21;; +Luxembourg;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;131;; +Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;345;; +Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;148;; +Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;10;; +Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;26;; +Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;11;; +Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;26;; +Luxembourg;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;61;; +Luxembourg;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;15;; +Luxembourg;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;20;; +Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;18;; +Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;122;; +Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;93;; +Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;635;; +Luxembourg;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;1505;; +Luxembourg;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;593;; +Luxembourg;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;29;; +Luxembourg;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;1;; +Luxembourg;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;27676;; +Luxembourg;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;12616;; +Luxembourg;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;19858;; +Luxembourg;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;27596;; +Luxembourg;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;2179;; +Luxembourg;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;45467;; +Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;2;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;3;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;809;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;182;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;41;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;6;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;6;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;1;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;10;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;3;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;25;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;16;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;6;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;14;; +Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;6;; +Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;4;; +Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;22;; +Luxembourg;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;348;; +Luxembourg;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;200;; +Luxembourg;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;5;; +Luxembourg;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;16;; +Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;7;; +Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;13;; +Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;; +Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;10;; +Luxembourg;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;290;; +Luxembourg;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;186;; +Luxembourg;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;16;; +Luxembourg;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;1;; +Luxembourg;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;48;; +Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;628;; +Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;353;; +Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;34;; +Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;; +Luxembourg;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;22;; +Luxembourg;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;153;; +Luxembourg;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;99;; +Luxembourg;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;15;; +Luxembourg;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;62;; +Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;454;; +Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;256;; +Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;8;; +Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;17;; +Luxembourg;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;267;; +Luxembourg;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;79;; +Luxembourg;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;109;; +Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;1438;; +Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;591;; +Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;17;; +Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;1;; +Luxembourg;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;8;; +Luxembourg;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;54;; +Luxembourg;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;33;; +Luxembourg;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;6;; +Luxembourg;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;93;; +Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;464;; +Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;197;; +Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;8;; +Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;12;; +Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;139;; +Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;55;; +Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;9;; +Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;21;; +Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;206;; +Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;159;; +Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;8;; +Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;6;; +Luxembourg;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;51;; +Luxembourg;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;38;; +Luxembourg;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;110;; +Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;70;; +Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;50;; +Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;30;; +Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;8;; +Luxembourg;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;67;; +Luxembourg;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;49;; +Luxembourg;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;14;; +Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;288;; +Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;230;; +Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;58;; +Luxembourg;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;652;; +Luxembourg;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;370;; +Luxembourg;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;37;; +Luxembourg;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;9;; +Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;10;; +Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;8;; +Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;3;; +Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;104;; +Luxembourg;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;648;; +Luxembourg;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;301;; +Luxembourg;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;23;; +Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;99;; +Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;37;; +Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;5;; +Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;26;; +Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;7;; +Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;43;; +Luxembourg;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;133;; +Luxembourg;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;77;; +Luxembourg;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;8;; +Luxembourg;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;88;; +Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;429;; +Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;154;; +Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;18;; +Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;39;; +Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;210;; +Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;94;; +Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;17;; +Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;44;; +Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;11;; +Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;230;; +Luxembourg;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;1018;; +Luxembourg;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;246;; +Luxembourg;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;4;; +Luxembourg;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;520;; +Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;2703;; +Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;609;; +Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;10;; +Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;7;; +Luxembourg;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;28;; +Luxembourg;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;14;; +Luxembourg;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;698;; +Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;1885;; +Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;556;; +Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;67;; +Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Luxembourg;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;24;; +Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;93;; +Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;20;; +Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;328;; +Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1717;; +Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;747;; +Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;8;; +Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;320;; +Luxembourg;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;1231;; +Luxembourg;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;539;; +Luxembourg;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;8;; +Luxembourg;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;171;; +Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;830;; +Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;539;; +Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;43;; +Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;22;; +Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;94;; +Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;49;; +Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;28;; +Luxembourg;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;201;; +Luxembourg;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;71;; +Luxembourg;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;30;; +Luxembourg;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;71;; +Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1599;; +Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;829;; +Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;10;; +Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;272;; +Luxembourg;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;1300;; +Luxembourg;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;720;; +Luxembourg;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;94;; +Luxembourg;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;3;; +Luxembourg;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;10;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;7;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;2;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;143;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;633;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;337;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;36;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;85;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;44;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;13;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;42;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;14;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;143;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;566;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;243;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;4;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;151;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;552;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;202;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;125;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;454;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;198;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;38;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;149;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;30;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;142;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;403;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;169;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;266;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;1248;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;457;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;19;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;34;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;170;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;84;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;7;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;192;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;442;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;180;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;29;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;114;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;35;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;445;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;1577;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;670;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;35;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;66;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;27;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;254;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;662;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;225;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;52;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;107;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;34;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;31;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;100;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;39;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;7;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;2;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;26;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;309;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;280;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;242;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;720;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;343;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;25;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;3;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;4;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;67;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;295;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;154;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;23;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;49;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;17;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;18;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;68;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;189;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;62;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;345;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;664;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;185;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;212;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;761;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;317;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;38;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;49;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;23;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;151;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;572;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;242;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;324;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;1391;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;615;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;8;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;22;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;4;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;122;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;161;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;76;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;60;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;119;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;32;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;288;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;978;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;466;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;16;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;33;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;13;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;77;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;138;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;69;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;14;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;48;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;17;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;19;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;55;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;24;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;19;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;201;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;211;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;155;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;347;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;118;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;3;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;6;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;28;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;81;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;65;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;30;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;97;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;22;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;618;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;991;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;365;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;24;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;79;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;232;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;103;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;546;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;1202;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;297;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;38;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;57;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;10;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;24;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;79;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;57;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;17;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;8;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;18;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;57;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;18;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;181;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;351;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;83;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;405;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;896;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;232;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;50;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;131;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;33;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;215;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;334;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;106;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;19;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;51;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;17;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;72;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;148;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;60;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;5;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;31;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;35;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;279;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;583;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;269;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;21;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;1;; +Luxembourg;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;228;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;739;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;597;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;113;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;2;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;5;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;18;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;22;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;5;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;9;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;15;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;10;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;16;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;74;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;32;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;7;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;5;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;3;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;5;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;3;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;8;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;9;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;51;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;105;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;18;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;110;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;262;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;83;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;9;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;53;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;88;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;33;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;5;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;6;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;10;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;3;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;88;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;147;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;89;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;20;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;12;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;7;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;10;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;19;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;9;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;524;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;1377;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;690;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;5;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;56;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;146;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;42;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;15;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;66;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;17;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;1811;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;5703;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;1681;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;11;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;719;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1095;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;388;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;14;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;203;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;400;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;193;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;9;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;35;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;11;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;18;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;69;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;67;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;20;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;114;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;49;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;16;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;63;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;25;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;36;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;129;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;47;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;79;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;302;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;77;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;135;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;590;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;241;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;9;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;51;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;13;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;56;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;152;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;72;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;18;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;12;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;52;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;16;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;5;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;13;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;22;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;581;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;1567;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;503;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;12;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;6;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;5;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;18;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;6;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;387;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;1329;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;570;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;6;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;48;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;14;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;87;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;615;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;201;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;108;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;443;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;115;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;452;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;1662;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;541;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;13;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;36;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;8;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;2;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;19;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;6;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;42;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;20;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;5;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;9;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;33;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;15;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;109;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;333;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;55;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;5;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;48;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;455;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;185;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;19;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;66;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;49;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;3;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;4;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;19;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;8;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;52;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;30;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;113;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;452;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;172;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;11;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;50;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;16;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;10;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;5;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;97;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;279;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;129;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;19;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;78;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;17;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;352;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;944;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;270;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;162;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;296;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;73;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;61;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;207;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;45;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;165;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;274;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;69;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;18;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;34;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;11;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;7;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;34;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;10;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;9;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;20;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;5;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;26;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;56;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;20;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;202;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;371;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;103;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;284;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1192;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;425;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;12;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;33;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;5;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;202;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;328;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;128;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;11;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;13;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;13;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;17;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;11;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;15;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;5;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;6;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;202;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;532;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;181;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;10;; +Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;29;; +Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;29;; +Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;8;; +Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;4;; +Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;2;; +Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;110;; +Luxembourg;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;394;; +Luxembourg;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;173;; +Luxembourg;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;13;; +Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;25;; +Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;15;; +Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;; +Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;24;; +Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;11;; +Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;137;; +Luxembourg;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;388;; +Luxembourg;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;109;; +Luxembourg;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;8;; +Luxembourg;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;128;; +Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;289;; +Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;113;; +Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;10;; +Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;101;; +Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;334;; +Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;137;; +Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;42;; +Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;114;; +Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;33;; +Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;33;; +Luxembourg;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;110;; +Luxembourg;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;50;; +Luxembourg;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;27;; +Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;165;; +Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;60;; +Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;6;; +Luxembourg;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;17;; +Luxembourg;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;6;; +Luxembourg;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;2;; +Luxembourg;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;42;; +Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;105;; +Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;39;; +Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;58;; +Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;155;; +Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;36;; +Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;1;; +Luxembourg;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;185;; +Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;796;; +Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;347;; +Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;21;; +Luxembourg;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;36;; +Luxembourg;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;14;; +Luxembourg;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;149;; +Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;279;; +Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;95;; +Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;9;; +Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;29;; +Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;11;; +Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;6;; +Luxembourg;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;26;; +Luxembourg;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;11;; +Luxembourg;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;3;; +Luxembourg;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;7;; +Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;103;; +Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;137;; +Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;993;; +Luxembourg;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;1971;; +Luxembourg;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;766;; +Luxembourg;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;37;; +Luxembourg;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Luxembourg;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;106865;; +Latvia;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;47278;; +Latvia;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;80989;; +Latvia;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;216518;; +Latvia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;27215;; +Latvia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;143644;; +Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;1;; +Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;1;; +Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;121;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;265;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;10;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;26;; +Latvia;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;45;; +Latvia;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;2;; +Latvia;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;1;; +Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;1;; +Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;103;; +Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;888;; +Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;799;; +Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;81;; +Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;13;; +Latvia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;34;; +Latvia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;20;; +Latvia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;481;; +Latvia;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;2284;; +Latvia;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;1343;; +Latvia;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;76;; +Latvia;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;13;; +Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;131;; +Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;106;; +Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;26;; +Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;129;; +Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;87;; +Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;177;; +Latvia;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;670;; +Latvia;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;335;; +Latvia;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;21;; +Latvia;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1775;; +Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7330;; +Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3312;; +Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;207;; +Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;365;; +Latvia;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;1568;; +Latvia;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;889;; +Latvia;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;54;; +Latvia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;643;; +Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;1254;; +Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;553;; +Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;41;; +Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;344;; +Latvia;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;727;; +Latvia;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;225;; +Latvia;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;14;; +Latvia;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;731;; +Latvia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;1720;; +Latvia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;443;; +Latvia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;17;; +Latvia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;135;; +Latvia;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;610;; +Latvia;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;427;; +Latvia;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;64;; +Latvia;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;517;; +Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1602;; +Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;564;; +Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;41;; +Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;306;; +Latvia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;736;; +Latvia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;275;; +Latvia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;20;; +Latvia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;466;; +Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2566;; +Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1309;; +Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;84;; +Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;281;; +Latvia;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;1987;; +Latvia;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;1650;; +Latvia;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;202;; +Latvia;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;163;; +Latvia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;889;; +Latvia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;624;; +Latvia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;93;; +Latvia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;345;; +Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1085;; +Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;672;; +Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;60;; +Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;442;; +Latvia;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;968;; +Latvia;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;410;; +Latvia;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;48;; +Latvia;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4;; +Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;6;; +Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;23;; +Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;8;; +Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;121;; +Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;602;; +Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;497;; +Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;54;; +Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;14;; +Latvia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;26;; +Latvia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;29;; +Latvia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;841;; +Latvia;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;2709;; +Latvia;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;2001;; +Latvia;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;130;; +Latvia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;74;; +Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;421;; +Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;323;; +Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;20;; +Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;55;; +Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;170;; +Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;115;; +Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;7;; +Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;383;; +Latvia;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;1016;; +Latvia;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;723;; +Latvia;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;47;; +Latvia;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1421;; +Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4063;; +Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2203;; +Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;246;; +Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;431;; +Latvia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1268;; +Latvia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;911;; +Latvia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;49;; +Latvia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;142;; +Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;331;; +Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;229;; +Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;13;; +Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;1275;; +Latvia;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;2059;; +Latvia;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;787;; +Latvia;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;64;; +Latvia;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;1074;; +Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;1626;; +Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;402;; +Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;17;; +Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;222;; +Latvia;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;737;; +Latvia;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;539;; +Latvia;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;86;; +Latvia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;2787;; +Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;4435;; +Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;1949;; +Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;306;; +Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;348;; +Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;604;; +Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;234;; +Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;14;; +Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;2775;; +Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;6706;; +Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;3084;; +Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;277;; +Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Latvia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;4264;; +Latvia;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;21986;; +Latvia;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;13151;; +Latvia;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;1487;; +Latvia;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;1447;; +Latvia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;6476;; +Latvia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;4744;; +Latvia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;1123;; +Latvia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;3;; +Latvia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;765;; +Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;1869;; +Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1236;; +Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;172;; +Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;2;; +Latvia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;327;; +Latvia;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;735;; +Latvia;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;341;; +Latvia;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;72;; +Latvia;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;13;; +Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;89;; +Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;160;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;522;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;341;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;41;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;11;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;47;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;28;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;2;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;1043;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;2560;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;1413;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;70;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;76;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;327;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;307;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;14;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;62;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;129;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;168;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;19;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;460;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;693;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;338;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;28;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2983;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5553;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1914;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;165;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;797;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;1367;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;600;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;36;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;335;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;572;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;281;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;23;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;752;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;730;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;296;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;12;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;2426;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;2777;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;766;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;55;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;352;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;666;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;386;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;55;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;1533;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;1952;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;751;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;52;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;492;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;544;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;171;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;17;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;2881;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;5918;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;2625;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;174;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;588;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;1223;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;942;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;189;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;1754;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;7785;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;5254;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;652;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;554;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;978;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;567;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;103;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;412;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;786;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;297;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;51;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;14;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;33;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;7;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;78;; +Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;232;; +Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;231;; +Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;22;; +Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;12;; +Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;27;; +Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;28;; +Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;617;; +Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;1525;; +Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;1189;; +Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;71;; +Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;102;; +Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;267;; +Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;223;; +Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;13;; +Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;48;; +Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;132;; +Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;104;; +Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;11;; +Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;279;; +Latvia;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;437;; +Latvia;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;316;; +Latvia;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;16;; +Latvia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2292;; +Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3723;; +Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1735;; +Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;86;; +Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;1292;; +Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;3859;; +Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;3010;; +Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;162;; +Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;666;; +Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;395;; +Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;170;; +Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;12;; +Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;643;; +Latvia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;507;; +Latvia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;200;; +Latvia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;11;; +Latvia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;1500;; +Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;1397;; +Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;453;; +Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;22;; +Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;178;; +Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;282;; +Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;269;; +Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;25;; +Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;505;; +Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;583;; +Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;257;; +Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;32;; +Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;1173;; +Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;869;; +Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;255;; +Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;17;; +Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;503;; +Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1217;; +Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;940;; +Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;125;; +Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;391;; +Latvia;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;513;; +Latvia;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;459;; +Latvia;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;77;; +Latvia;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;230;; +Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;481;; +Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;442;; +Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;64;; +Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;910;; +Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;793;; +Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;212;; +Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;42;; +Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;181;; +Latvia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;295;; +Latvia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;175;; +Latvia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;42;; +Latvia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;2;; +Latvia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;9;; +Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;73;; +Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;371;; +Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;290;; +Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;13;; +Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;6;; +Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;21;; +Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;25;; +Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;2;; +Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;387;; +Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;1041;; +Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;707;; +Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;67;; +Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;36;; +Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;36;; +Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;10;; +Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;21;; +Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;40;; +Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;6;; +Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;67;; +Latvia;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;144;; +Latvia;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;140;; +Latvia;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;21;; +Latvia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;16676;; +Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;28750;; +Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;13242;; +Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;720;; +Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;701;; +Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;1097;; +Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;967;; +Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;65;; +Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;6143;; +Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;6035;; +Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;2615;; +Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;99;; +Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;124;; +Latvia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;95;; +Latvia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;48;; +Latvia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;7;; +Latvia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;56;; +Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;89;; +Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;40;; +Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;4;; +Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;70;; +Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;302;; +Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;352;; +Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;75;; +Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;101;; +Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;140;; +Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;85;; +Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;16;; +Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;442;; +Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;875;; +Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;537;; +Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;46;; +Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;290;; +Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;764;; +Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;319;; +Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;63;; +Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;1055;; +Latvia;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;3795;; +Latvia;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;3429;; +Latvia;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;441;; +Latvia;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;842;; +Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;3697;; +Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;3826;; +Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;356;; +Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;718;; +Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;822;; +Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;309;; +Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;99;; +Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;1934;; +Latvia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;4947;; +Latvia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;1056;; +Latvia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;88;; +Latvia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;165;; +Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;116;; +Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;68;; +Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;6;; +Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;4;; +Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;8;; +Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;372;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;2210;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;1939;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;98;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;16;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;92;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;45;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;4;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;5;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;7;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;18;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;6;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;3;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;7;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;10;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;11;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;7;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;3;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;7;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;7;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;25;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;120;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;79;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;4;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;8;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;6;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;6;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;71;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;57;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;11;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;11;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;22;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;3;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;4;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;15;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;22;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;2;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;4;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;4;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;38;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;77;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;61;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;3;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;5;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;4;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;3221;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;12828;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;7196;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;260;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;7;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;50;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;79;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;7;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;6;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;28;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;41;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;8;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;130;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;605;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;530;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;23;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;459;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1188;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;468;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;12;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;44;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;216;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;254;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;15;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;210;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;521;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;256;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;8;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;43;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;89;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;62;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;5;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;2;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;8;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;3;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;16;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;78;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;64;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;7;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;87;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;89;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;63;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;13;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;31;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;77;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;68;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;5;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;4;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;28;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;39;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;108;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;412;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;476;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;64;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;15;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;135;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;169;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;31;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;21;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;114;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;82;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;11;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;63;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;305;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;206;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;13;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;6;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;5;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;37;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;126;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;74;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;16;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;30;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;30;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;1282;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;4526;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;2995;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;77;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;38;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;87;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;20;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;65;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;68;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;9;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;14;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;37;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;74;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;7;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;97;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;245;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;150;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;9;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;173;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;918;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;652;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;29;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;8;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;23;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;11;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;21;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;16;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;4;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;4;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;1;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;2;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;9;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;35;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;36;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;7;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;18;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;26;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;19;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;34;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;98;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;63;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;17;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;105;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;92;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;16;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;87;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;87;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;12;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;9;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;63;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;95;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;12;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;10;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;19;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;11;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;31;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;73;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;45;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;2;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;814;; +Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;2401;; +Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;1610;; +Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;46;; +Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;80;; +Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;196;; +Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;100;; +Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;4;; +Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;1269;; +Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;3250;; +Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;2787;; +Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;113;; +Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;32;; +Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;167;; +Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;241;; +Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;41;; +Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;231;; +Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;836;; +Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;861;; +Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;72;; +Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;109;; +Latvia;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;342;; +Latvia;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;399;; +Latvia;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;57;; +Latvia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1124;; +Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2081;; +Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2217;; +Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;185;; +Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;302;; +Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;930;; +Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;1038;; +Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;83;; +Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;1035;; +Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;2093;; +Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;1681;; +Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;80;; +Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;56;; +Latvia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;77;; +Latvia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;129;; +Latvia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;15;; +Latvia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;27;; +Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;93;; +Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;151;; +Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;15;; +Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;360;; +Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;1998;; +Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;3006;; +Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;527;; +Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;69;; +Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;178;; +Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;202;; +Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;33;; +Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;817;; +Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;2880;; +Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;2438;; +Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;137;; +Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;283;; +Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1190;; +Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;1295;; +Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;261;; +Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;675;; +Latvia;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;3300;; +Latvia;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;4067;; +Latvia;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;676;; +Latvia;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;1;; +Latvia;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;431;; +Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;1298;; +Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;1658;; +Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;246;; +Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;236;; +Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;634;; +Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;718;; +Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;154;; +Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;200;; +Latvia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;421;; +Latvia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;411;; +Latvia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;68;; +Latvia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;33;; +Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;71;; +Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;39;; +Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;13;; +Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;12;; +Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Latvia;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;101330;; +Latvia;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;44131;; +Latvia;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;61267;; +Latvia;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;104490;; +Latvia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;6088;; +Latvia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;150506;; +Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;2;; +Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;3;; +Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1257;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1605;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;56;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;213;; +Latvia;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;147;; +Latvia;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;5;; +Latvia;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;393;; +Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;2702;; +Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;1480;; +Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;129;; +Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;37;; +Latvia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;109;; +Latvia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;85;; +Latvia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;6;; +Latvia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;857;; +Latvia;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;4524;; +Latvia;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;2224;; +Latvia;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;201;; +Latvia;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;67;; +Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;449;; +Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;314;; +Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;36;; +Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;47;; +Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;264;; +Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;167;; +Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;21;; +Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;1305;; +Latvia;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;4289;; +Latvia;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;1940;; +Latvia;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;178;; +Latvia;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1984;; +Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9063;; +Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;3070;; +Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;150;; +Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;638;; +Latvia;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;2801;; +Latvia;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;1322;; +Latvia;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;119;; +Latvia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;2;; +Latvia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;271;; +Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;725;; +Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;299;; +Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;20;; +Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;516;; +Latvia;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;1243;; +Latvia;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;294;; +Latvia;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;22;; +Latvia;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;383;; +Latvia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;1084;; +Latvia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;225;; +Latvia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;10;; +Latvia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;190;; +Latvia;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;985;; +Latvia;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;495;; +Latvia;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;69;; +Latvia;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;505;; +Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1699;; +Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;559;; +Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;73;; +Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;331;; +Latvia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;1000;; +Latvia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;377;; +Latvia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;34;; +Latvia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;321;; +Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1647;; +Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;738;; +Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;134;; +Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;105;; +Latvia;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;511;; +Latvia;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;497;; +Latvia;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;105;; +Latvia;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;42;; +Latvia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;226;; +Latvia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;197;; +Latvia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;33;; +Latvia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;189;; +Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;499;; +Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;252;; +Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;38;; +Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;169;; +Latvia;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;605;; +Latvia;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;319;; +Latvia;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;79;; +Latvia;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;2;; +Latvia;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8;; +Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;11;; +Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;111;; +Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;492;; +Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;380;; +Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;32;; +Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;8;; +Latvia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;34;; +Latvia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;18;; +Latvia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;3;; +Latvia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;928;; +Latvia;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;1813;; +Latvia;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;1262;; +Latvia;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;177;; +Latvia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;194;; +Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;629;; +Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;443;; +Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;56;; +Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;44;; +Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;112;; +Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;90;; +Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;27;; +Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;730;; +Latvia;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;1518;; +Latvia;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;805;; +Latvia;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;109;; +Latvia;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;888;; +Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1882;; +Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;572;; +Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;73;; +Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;326;; +Latvia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;761;; +Latvia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;508;; +Latvia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;84;; +Latvia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;63;; +Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;95;; +Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;55;; +Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;7;; +Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;2710;; +Latvia;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;2693;; +Latvia;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;626;; +Latvia;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;72;; +Latvia;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;725;; +Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;928;; +Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;190;; +Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;13;; +Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;151;; +Latvia;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;459;; +Latvia;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;300;; +Latvia;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;74;; +Latvia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;1745;; +Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;2678;; +Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;1117;; +Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;418;; +Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;252;; +Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;369;; +Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;164;; +Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;22;; +Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;994;; +Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;2018;; +Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;873;; +Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;141;; +Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;1125;; +Latvia;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;2643;; +Latvia;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;2232;; +Latvia;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;924;; +Latvia;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;4;; +Latvia;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;301;; +Latvia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;1108;; +Latvia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;868;; +Latvia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;298;; +Latvia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;514;; +Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;953;; +Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;441;; +Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;81;; +Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;162;; +Latvia;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;495;; +Latvia;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;230;; +Latvia;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;41;; +Latvia;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;3;; +Latvia;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;10;; +Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;22;; +Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;199;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;663;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;306;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;24;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;16;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;38;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;24;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;4;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;1200;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;2433;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;1082;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;130;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;158;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;462;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;376;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;38;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;95;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;225;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;269;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;41;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;847;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;1439;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;650;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;64;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2855;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4973;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1159;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;99;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;1643;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;3392;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;1871;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;162;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;270;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;274;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;80;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;5;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;1143;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;970;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;294;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;28;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;896;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;884;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;198;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;16;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;296;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;475;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;220;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;66;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;1023;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;1192;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;398;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;67;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;355;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;370;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;146;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;18;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;2377;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;5286;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;792;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;75;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;304;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;295;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;189;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;76;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;200;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;344;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;238;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;63;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;904;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;807;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;305;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;61;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;279;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;389;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;154;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;15;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;5;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;5;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;8;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;47;; +Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;106;; +Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;60;; +Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;9;; +Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;8;; +Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;7;; +Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;7;; +Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;454;; +Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;606;; +Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;235;; +Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;26;; +Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;15;; +Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;30;; +Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;29;; +Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;13;; +Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;36;; +Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;30;; +Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;127;; +Latvia;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;173;; +Latvia;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;66;; +Latvia;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;10;; +Latvia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1509;; +Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1627;; +Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;504;; +Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;23;; +Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;934;; +Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;1104;; +Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;554;; +Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;48;; +Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;226;; +Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;72;; +Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;29;; +Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;2;; +Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;280;; +Latvia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;118;; +Latvia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;33;; +Latvia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;8;; +Latvia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;308;; +Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;236;; +Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;46;; +Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;2;; +Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;28;; +Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;52;; +Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;48;; +Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;18;; +Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;125;; +Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;99;; +Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;31;; +Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;306;; +Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;258;; +Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;58;; +Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;5;; +Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;70;; +Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;140;; +Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;84;; +Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;13;; +Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;33;; +Latvia;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;22;; +Latvia;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;31;; +Latvia;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;6;; +Latvia;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;35;; +Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;28;; +Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;28;; +Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;5;; +Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;281;; +Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;248;; +Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;45;; +Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;5;; +Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;41;; +Latvia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;45;; +Latvia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;18;; +Latvia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;3;; +Latvia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;2;; +Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;112;; +Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;358;; +Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;271;; +Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;44;; +Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;8;; +Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;37;; +Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;31;; +Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;3;; +Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;259;; +Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;564;; +Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;538;; +Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;116;; +Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;12;; +Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;53;; +Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;38;; +Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;6;; +Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;22;; +Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;72;; +Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;56;; +Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;7;; +Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;133;; +Latvia;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;269;; +Latvia;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;273;; +Latvia;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;68;; +Latvia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5055;; +Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4792;; +Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1631;; +Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;135;; +Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;553;; +Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;930;; +Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;617;; +Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;240;; +Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;3027;; +Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;1409;; +Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;255;; +Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;14;; +Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;73;; +Latvia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;73;; +Latvia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;37;; +Latvia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;12;; +Latvia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;105;; +Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;263;; +Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;71;; +Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;4;; +Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;186;; +Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;451;; +Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;493;; +Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;120;; +Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;59;; +Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;93;; +Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;75;; +Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;23;; +Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;2478;; +Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;4209;; +Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;2135;; +Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;228;; +Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1651;; +Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3872;; +Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;570;; +Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;170;; +Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;319;; +Latvia;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;773;; +Latvia;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;794;; +Latvia;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;222;; +Latvia;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;285;; +Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;506;; +Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;396;; +Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;70;; +Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;213;; +Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;250;; +Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;128;; +Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;43;; +Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;189;; +Latvia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;341;; +Latvia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;142;; +Latvia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;27;; +Latvia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;7;; +Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;10;; +Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;14;; +Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;984;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;3001;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;1836;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;120;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;30;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;79;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;39;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;5;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;7;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;7;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;20;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;11;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;22;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;4;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;5;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;6;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;7;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;7;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;3;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;34;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;56;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;16;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;4;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;4;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;8;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;5;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;4;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;8;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;4;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;8;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;14;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;3;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;3;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;327;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;934;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;749;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;49;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;59;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;119;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;93;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;2;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;10005;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;19361;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;10365;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;755;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;469;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1614;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1497;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;146;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;158;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;571;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;490;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;100;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;9929;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;19875;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;8073;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;305;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3588;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5619;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2046;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;133;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;1020;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;2742;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;2359;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;296;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;145;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;144;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;80;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;11;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;197;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;288;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;145;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;11;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;15;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;37;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;22;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;4;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;357;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;1069;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;1104;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;196;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;262;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;345;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;209;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;49;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;435;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;765;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;391;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;38;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;110;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;385;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;321;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;66;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;210;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;483;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;565;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;155;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;94;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;374;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;374;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;90;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;127;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;243;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;189;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;36;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;165;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;654;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;417;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;50;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;6;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;11;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;5;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;1381;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;4835;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;2713;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;87;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;224;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;699;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;367;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;19;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;4220;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;9245;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;4787;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;254;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;127;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;660;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;801;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;67;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;119;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;733;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;642;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;59;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;916;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;3444;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;2651;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;145;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;920;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3333;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1990;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;128;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;3498;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;17093;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;10734;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;540;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;86;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;140;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;102;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;6;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;82;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;168;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;108;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;8;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;12;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;50;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;44;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;2;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;94;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;434;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;427;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;58;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;93;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;234;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;152;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;12;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;286;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;1007;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;666;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;32;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;299;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1185;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1031;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;131;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;122;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;598;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;632;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;75;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;135;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;723;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;773;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;124;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;55;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;131;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;114;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;9;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;84;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;217;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;142;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;10;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;11;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;18;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;2992;; +Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;5173;; +Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;2160;; +Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;53;; +Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;265;; +Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;294;; +Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;123;; +Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;3;; +Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;3145;; +Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;3487;; +Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;1691;; +Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;94;; +Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;80;; +Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;147;; +Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;153;; +Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;; +Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;373;; +Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;776;; +Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;628;; +Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;35;; +Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;2390;; +Latvia;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;2633;; +Latvia;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;970;; +Latvia;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;52;; +Latvia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2791;; +Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2599;; +Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1152;; +Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;91;; +Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;1223;; +Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;1319;; +Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;664;; +Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;63;; +Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;621;; +Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;340;; +Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;145;; +Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;12;; +Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;44;; +Latvia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;48;; +Latvia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;25;; +Latvia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;5;; +Latvia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;30;; +Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;27;; +Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;20;; +Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;4;; +Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;449;; +Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;1107;; +Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;1091;; +Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;227;; +Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;147;; +Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;146;; +Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;90;; +Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;21;; +Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;975;; +Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;2150;; +Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;1694;; +Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;48;; +Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;166;; +Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;331;; +Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;266;; +Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;35;; +Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Latvia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;342;; +Latvia;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;725;; +Latvia;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;802;; +Latvia;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;191;; +Latvia;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;199;; +Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;353;; +Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;313;; +Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;52;; +Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;212;; +Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;220;; +Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;154;; +Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;44;; +Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;185;; +Latvia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;298;; +Latvia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;166;; +Latvia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;17;; +Latvia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;21;; +Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;25;; +Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;19;; +Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;7;; +Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Latvia;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;17951;; +Malta;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;22014;; +Malta;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;33958;; +Malta;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;33683;; +Malta;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;4278;; +Malta;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;30055;; +Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;3;; +Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;26;; +Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;35;; +Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;7;; +Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;1;; +Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;3;; +Malta;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;40;; +Malta;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;157;; +Malta;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;51;; +Malta;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2;; +Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;4;; +Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;7;; +Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2;; +Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;8;; +Malta;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;37;; +Malta;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;9;; +Malta;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;259;; +Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;655;; +Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;284;; +Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;15;; +Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;17;; +Malta;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;83;; +Malta;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;22;; +Malta;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;115;; +Malta;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;293;; +Malta;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;85;; +Malta;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;10;; +Malta;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;65;; +Malta;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;160;; +Malta;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;18;; +Malta;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;82;; +Malta;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;440;; +Malta;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;76;; +Malta;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;23;; +Malta;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;9;; +Malta;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;62;; +Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;218;; +Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;53;; +Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;44;; +Malta;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;178;; +Malta;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;53;; +Malta;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;76;; +Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;214;; +Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;55;; +Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;4;; +Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;25;; +Malta;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;308;; +Malta;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;196;; +Malta;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;14;; +Malta;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;19;; +Malta;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;99;; +Malta;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;56;; +Malta;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;5;; +Malta;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;46;; +Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;115;; +Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;12;; +Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;20;; +Malta;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;26;; +Malta;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;16;; +Malta;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;21;; +Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;4;; +Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;4;; +Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;2;; +Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;1;; +Malta;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;185;; +Malta;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;126;; +Malta;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;9;; +Malta;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;18;; +Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;13;; +Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;14;; +Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;10;; +Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;; +Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;24;; +Malta;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;21;; +Malta;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;204;; +Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;281;; +Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;61;; +Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7;; +Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;34;; +Malta;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;55;; +Malta;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;6;; +Malta;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;44;; +Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;38;; +Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;5;; +Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;290;; +Malta;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;205;; +Malta;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;21;; +Malta;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;9;; +Malta;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;188;; +Malta;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;201;; +Malta;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;16;; +Malta;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;8;; +Malta;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;11;; +Malta;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;822;; +Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;610;; +Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;65;; +Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;7;; +Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;87;; +Malta;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;94;; +Malta;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;19;; +Malta;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;314;; +Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;600;; +Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;111;; +Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;1756;; +Malta;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;3153;; +Malta;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;1166;; +Malta;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;79;; +Malta;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;1;; +Malta;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;1027;; +Malta;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;1181;; +Malta;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;252;; +Malta;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;8;; +Malta;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;108;; +Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;148;; +Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;28;; +Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;5;; +Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;35;; +Malta;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;57;; +Malta;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;20;; +Malta;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;19;; +Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;25;; +Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;5;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;2;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;215;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;248;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;57;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;45;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;8;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;26;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;21;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;36;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;9;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;167;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;260;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;56;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;54;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;162;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;30;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;250;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;202;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;76;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;122;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;122;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;24;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;305;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;609;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;88;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;47;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;78;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;35;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;3;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;298;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;242;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;80;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;103;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;155;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;31;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;125;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;658;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;144;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;65;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;175;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;59;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;347;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;906;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;585;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;12;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;80;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;95;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;25;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;25;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;53;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;34;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;11;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;4;; +Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;8;; +Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;1;; +Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;10;; +Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;4;; +Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;302;; +Malta;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;362;; +Malta;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;89;; +Malta;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;3;; +Malta;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;20;; +Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;33;; +Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;9;; +Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;43;; +Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;71;; +Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;12;; +Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;96;; +Malta;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;94;; +Malta;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;21;; +Malta;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;632;; +Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;643;; +Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;182;; +Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;9;; +Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;347;; +Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;435;; +Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;92;; +Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;358;; +Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;256;; +Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;71;; +Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;274;; +Malta;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;192;; +Malta;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;47;; +Malta;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;759;; +Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;986;; +Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;126;; +Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;50;; +Malta;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;38;; +Malta;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;8;; +Malta;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;3;; +Malta;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;434;; +Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;311;; +Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;128;; +Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;7;; +Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;440;; +Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;376;; +Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;122;; +Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;5;; +Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;368;; +Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;944;; +Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;235;; +Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;183;; +Malta;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;359;; +Malta;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;169;; +Malta;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;10;; +Malta;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;1;; +Malta;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;134;; +Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;219;; +Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;103;; +Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;4;; +Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;279;; +Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;198;; +Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;84;; +Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;31;; +Malta;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;58;; +Malta;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;46;; +Malta;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;6;; +Malta;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;6;; +Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;9;; +Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;3;; +Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;11;; +Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;5;; +Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;1;; +Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;118;; +Malta;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;205;; +Malta;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;93;; +Malta;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2;; +Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5;; +Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4;; +Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;3;; +Malta;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;11;; +Malta;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;4;; +Malta;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2851;; +Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2804;; +Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1121;; +Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;53;; +Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Malta;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;102;; +Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;209;; +Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;56;; +Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;1318;; +Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;850;; +Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;363;; +Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;11;; +Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;109;; +Malta;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;78;; +Malta;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;22;; +Malta;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;35;; +Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;26;; +Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;17;; +Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;4;; +Malta;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;9;; +Malta;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;6;; +Malta;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;39;; +Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;56;; +Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;17;; +Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;130;; +Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;239;; +Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;148;; +Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;14;; +Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;201;; +Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;251;; +Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;61;; +Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;796;; +Malta;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;939;; +Malta;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;395;; +Malta;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;6;; +Malta;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;571;; +Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;1399;; +Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;839;; +Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;18;; +Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;74;; +Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;66;; +Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;27;; +Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;881;; +Malta;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;670;; +Malta;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;174;; +Malta;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;10;; +Malta;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;14;; +Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;40;; +Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;13;; +Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;; +Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;15;; +Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;8;; +Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;15;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;73;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;65;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;9;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;2;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;6;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;5;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;4;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;2;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;1;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;1;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;2;; +Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;235;; +Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;372;; +Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;99;; +Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;7;; +Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;6;; +Malta;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;6;; +Malta;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;6;; +Malta;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;22;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;54;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;40;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;2;; +Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;40;; +Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;29;; +Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;18;; +Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;6;; +Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;2;; +Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;23;; +Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;21;; +Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;2;; +Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;4;; +Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;4;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;10;; +Malta;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;7;; +Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;11;; +Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;5;; +Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;6;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;3;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;1370;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;1272;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;212;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;12;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;8;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;11;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;45;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;19;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;24;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;75;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;31;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;4;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;11;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;10;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;2;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;33;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;16;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;6;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;6;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;9;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;7;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;7;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;15;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;8;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;26;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;23;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;8;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;6;; +Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;21;; +Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;7;; +Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;1;; +Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;1;; +Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;2;; +Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;165;; +Malta;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;231;; +Malta;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;100;; +Malta;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;2;; +Malta;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4;; +Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;6;; +Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;7;; +Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;14;; +Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;13;; +Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;13;; +Malta;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;23;; +Malta;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;12;; +Malta;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;131;; +Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;298;; +Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;172;; +Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3;; +Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;23;; +Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;84;; +Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;28;; +Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;570;; +Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;654;; +Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;400;; +Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;14;; +Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;1;; +Malta;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;19;; +Malta;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;23;; +Malta;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;22;; +Malta;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;14;; +Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;47;; +Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;44;; +Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;8;; +Malta;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;13;; +Malta;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;11;; +Malta;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;11;; +Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;32;; +Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;28;; +Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;286;; +Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;414;; +Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;261;; +Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;7;; +Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;14;; +Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;133;; +Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;105;; +Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;42;; +Malta;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;318;; +Malta;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;215;; +Malta;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;4;; +Malta;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;121;; +Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;283;; +Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;206;; +Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;20;; +Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;47;; +Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;30;; +Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;26;; +Malta;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;35;; +Malta;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;47;; +Malta;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;6;; +Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;20;; +Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;27;; +Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;6;; +Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Malta;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;15999;; +Malta;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;3994;; +Malta;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;15698;; +Malta;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;25570;; +Malta;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;2160;; +Malta;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;31673;; +Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;2;; +Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;; +Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3;; +Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;11;; +Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;11;; +Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;2;; +Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;2;; +Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;1;; +Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;477;; +Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;851;; +Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;205;; +Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;1;; +Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;1;; +Malta;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;7;; +Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;24;; +Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;17;; +Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;6;; +Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;4;; +Malta;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;29;; +Malta;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;32;; +Malta;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;129;; +Malta;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;730;; +Malta;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;550;; +Malta;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;47;; +Malta;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;19;; +Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;14;; +Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;9;; +Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;28;; +Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;37;; +Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;79;; +Malta;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;372;; +Malta;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;272;; +Malta;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;16;; +Malta;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;301;; +Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1719;; +Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1066;; +Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;148;; +Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Malta;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;50;; +Malta;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;328;; +Malta;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;243;; +Malta;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;19;; +Malta;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;208;; +Malta;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;826;; +Malta;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;474;; +Malta;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;55;; +Malta;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;104;; +Malta;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;461;; +Malta;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;99;; +Malta;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;17;; +Malta;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;92;; +Malta;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;760;; +Malta;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;452;; +Malta;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;35;; +Malta;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;11;; +Malta;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;80;; +Malta;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;76;; +Malta;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;10;; +Malta;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;62;; +Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;395;; +Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;191;; +Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;16;; +Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;56;; +Malta;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;323;; +Malta;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;211;; +Malta;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;27;; +Malta;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;50;; +Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;351;; +Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;249;; +Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;37;; +Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;30;; +Malta;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;273;; +Malta;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;171;; +Malta;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;13;; +Malta;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;10;; +Malta;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;105;; +Malta;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;62;; +Malta;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;12;; +Malta;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;82;; +Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;284;; +Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;67;; +Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;11;; +Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;11;; +Malta;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;78;; +Malta;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;40;; +Malta;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;6;; +Malta;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;21;; +Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;7;; +Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;4;; +Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;6;; +Malta;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;22;; +Malta;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;19;; +Malta;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;316;; +Malta;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;395;; +Malta;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;139;; +Malta;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;11;; +Malta;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;44;; +Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;97;; +Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;24;; +Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;16;; +Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;39;; +Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;13;; +Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;71;; +Malta;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;105;; +Malta;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;39;; +Malta;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;151;; +Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;293;; +Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;73;; +Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;18;; +Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;56;; +Malta;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;149;; +Malta;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;78;; +Malta;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;40;; +Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;63;; +Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;20;; +Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;836;; +Malta;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;759;; +Malta;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;111;; +Malta;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;21;; +Malta;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;211;; +Malta;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;253;; +Malta;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;53;; +Malta;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;8;; +Malta;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;3;; +Malta;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;17;; +Malta;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;5;; +Malta;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;696;; +Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;972;; +Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;395;; +Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;76;; +Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;4;; +Malta;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;84;; +Malta;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;102;; +Malta;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;59;; +Malta;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;10;; +Malta;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;213;; +Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;546;; +Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;267;; +Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;24;; +Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;584;; +Malta;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;1592;; +Malta;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;671;; +Malta;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;110;; +Malta;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;2;; +Malta;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;350;; +Malta;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;809;; +Malta;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;336;; +Malta;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;61;; +Malta;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;154;; +Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;223;; +Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;79;; +Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;8;; +Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;48;; +Malta;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;137;; +Malta;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;114;; +Malta;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;67;; +Malta;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;7;; +Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;10;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;16;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;9;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;9;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;35;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;32;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;2;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;830;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;1239;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;509;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;13;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;20;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;291;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;156;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;38;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;110;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;112;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;265;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;459;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;229;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;8;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;384;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;631;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;338;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;48;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;183;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;657;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;350;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;9;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;770;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;797;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;354;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;15;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;349;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;463;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;183;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;5;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;216;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;413;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;124;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;10;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;58;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;216;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;76;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;4;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;267;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;274;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;125;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;23;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;2;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;101;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;180;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;104;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;4;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;124;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;628;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;445;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;11;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;95;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;235;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;66;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;7;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;170;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;590;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;282;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;11;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;221;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;237;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;52;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;70;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;107;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;67;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;12;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;10;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;4;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;4;; +Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;12;; +Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;6;; +Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;4;; +Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;7;; +Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;3;; +Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;218;; +Malta;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;343;; +Malta;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;183;; +Malta;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;11;; +Malta;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;10;; +Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;51;; +Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;32;; +Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;19;; +Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;48;; +Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;29;; +Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;67;; +Malta;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;93;; +Malta;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;68;; +Malta;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;587;; +Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;562;; +Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;262;; +Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;24;; +Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;303;; +Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;657;; +Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;219;; +Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;9;; +Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;195;; +Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;210;; +Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;133;; +Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;18;; +Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;134;; +Malta;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;97;; +Malta;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;61;; +Malta;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;5;; +Malta;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;346;; +Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;342;; +Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;92;; +Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;7;; +Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;5;; +Malta;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;6;; +Malta;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;4;; +Malta;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;126;; +Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;70;; +Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;39;; +Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;11;; +Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;184;; +Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;152;; +Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;100;; +Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;10;; +Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;166;; +Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;462;; +Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;322;; +Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;15;; +Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;59;; +Malta;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;79;; +Malta;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;39;; +Malta;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;4;; +Malta;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;38;; +Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;95;; +Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;71;; +Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;7;; +Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;259;; +Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;198;; +Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;99;; +Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;14;; +Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;16;; +Malta;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;27;; +Malta;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;16;; +Malta;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;9;; +Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;8;; +Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;17;; +Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;25;; +Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;5;; +Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;7;; +Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;141;; +Malta;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;261;; +Malta;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;152;; +Malta;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;13;; +Malta;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;29;; +Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;35;; +Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3;; +Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;24;; +Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;57;; +Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;25;; +Malta;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;69;; +Malta;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;84;; +Malta;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1573;; +Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2513;; +Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1382;; +Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;170;; +Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;; +Malta;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;130;; +Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;355;; +Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;230;; +Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;1350;; +Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;1118;; +Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;675;; +Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;47;; +Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;96;; +Malta;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;58;; +Malta;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;35;; +Malta;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;5;; +Malta;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;29;; +Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;69;; +Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;33;; +Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;4;; +Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;6;; +Malta;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;21;; +Malta;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;11;; +Malta;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;29;; +Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;35;; +Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;21;; +Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;268;; +Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;450;; +Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;428;; +Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;29;; +Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;560;; +Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1186;; +Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;634;; +Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;; +Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;161;; +Malta;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;175;; +Malta;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;151;; +Malta;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;7;; +Malta;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;154;; +Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;802;; +Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;375;; +Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;5;; +Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;88;; +Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;114;; +Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;94;; +Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;133;; +Malta;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;190;; +Malta;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;105;; +Malta;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;16;; +Malta;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;29;; +Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;13;; +Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;200;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;600;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;605;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;114;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;9;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;29;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;10;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;6;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;3;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;18;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;25;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;23;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;6;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;4;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;7;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;17;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;21;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;2;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;49;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;144;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;86;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;26;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;18;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;13;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;6;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;17;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;7;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;12;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;8;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;2;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;4;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;4;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;14;; +Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;31;; +Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;15;; +Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;39;; +Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;106;; +Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;42;; +Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;1564;; +Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;2733;; +Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;1758;; +Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;81;; +Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;11;; +Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;274;; +Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;123;; +Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;26;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;171;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;177;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;1683;; +Malta;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;3158;; +Malta;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;1555;; +Malta;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;25;; +Malta;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;1;; +Malta;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;630;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1313;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;714;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;46;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;65;; +Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;204;; +Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;117;; +Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;5;; +Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;172;; +Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;315;; +Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;224;; +Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;10;; +Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;54;; +Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;157;; +Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;89;; +Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;12;; +Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;15;; +Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;16;; +Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;15;; +Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;18;; +Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;10;; +Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;65;; +Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;100;; +Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;67;; +Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;50;; +Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;158;; +Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;91;; +Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;3;; +Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;20;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;328;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;198;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;18;; +Malta;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;87;; +Malta;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;49;; +Malta;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;12;; +Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;115;; +Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;85;; +Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;30;; +Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;80;; +Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;51;; +Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;20;; +Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;65;; +Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;44;; +Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;5;; +Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;; +Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;2;; +Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;6;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;10;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;8;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;52;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;121;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;105;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;1301;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;1503;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;534;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;12;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;10;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;58;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;55;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;33;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;96;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;85;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;190;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;451;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;270;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;6;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;122;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;203;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;97;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;5;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;499;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;1381;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;822;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;50;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;19;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;29;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;43;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;20;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;17;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;11;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;13;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;11;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;3;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;4;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;9;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;15;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;17;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;40;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;93;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;107;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;8;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;4;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;70;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;171;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;8;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;7;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;5;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;61;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;91;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;6;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;7;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;8;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;29;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;28;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;16;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;12;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;19;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;24;; +Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;33;; +Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;20;; +Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;14;; +Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;33;; +Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;17;; +Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;607;; +Malta;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;616;; +Malta;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;331;; +Malta;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;7;; +Malta;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;33;; +Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;76;; +Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;132;; +Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;217;; +Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;191;; +Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;529;; +Malta;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;797;; +Malta;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;478;; +Malta;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;5;; +Malta;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;962;; +Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;860;; +Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;317;; +Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;14;; +Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;281;; +Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;614;; +Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;465;; +Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;8;; +Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;643;; +Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;435;; +Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;327;; +Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;9;; +Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;24;; +Malta;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;45;; +Malta;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;45;; +Malta;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;30;; +Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;67;; +Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;75;; +Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;2;; +Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;9;; +Malta;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;15;; +Malta;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;12;; +Malta;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;25;; +Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;40;; +Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;32;; +Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;301;; +Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;334;; +Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;214;; +Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;5;; +Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;29;; +Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;394;; +Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;546;; +Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;; +Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;33;; +Malta;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;160;; +Malta;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;199;; +Malta;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;81;; +Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;177;; +Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;167;; +Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;4;; +Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;20;; +Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;52;; +Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;49;; +Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;47;; +Malta;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;64;; +Malta;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;71;; +Malta;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;1;; +Malta;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;10;; +Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;7;; +Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2;; +Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Malta;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Netherlands;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Netherlands;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;c; +Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;:;c; +Norway;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;c; +Norway;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Norway;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;c; +Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;:;c; +Norway;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Norway;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;c; +Norway;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Norway;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;2331939;; +Poland;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;1176278;; +Poland;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;2477011;; +Poland;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;2754225;; +Poland;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;392079;; +Poland;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;2815656;; +Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;956;; +Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;1099;; +Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;594;; +Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;2792;; +Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;2496;; +Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;866;; +Poland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;544;; +Poland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;7850;; +Poland;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;34948;; +Poland;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;14234;; +Poland;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;597;; +Poland;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1762;; +Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;985;; +Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;352;u; +Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1971;; +Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1350;; +Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;2273;; +Poland;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;9612;; +Poland;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;5309;; +Poland;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;257;u; +Poland;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;16251;; +Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;49739;; +Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;15405;; +Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;792;; +Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;1810;; +Poland;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;9488;; +Poland;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;3838;; +Poland;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;5000;; +Poland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;10840;; +Poland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;4064;; +Poland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;282;u; +Poland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;2129;; +Poland;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;7138;; +Poland;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;1735;; +Poland;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;3434;; +Poland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;15424;; +Poland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;4997;; +Poland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;413;u; +Poland;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;3319;; +Poland;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;3540;; +Poland;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;273;u; +Poland;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;3278;; +Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;12297;; +Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;4681;; +Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;426;u; +Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;1837;; +Poland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;6054;; +Poland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;2623;; +Poland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;9602;; +Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;40810;; +Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;21927;; +Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;340;u; +Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;1755;; +Poland;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;16777;; +Poland;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;11691;; +Poland;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;304;u; +Poland;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;1358;; +Poland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;20005;; +Poland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;12505;; +Poland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;303;u; +Poland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;1041;; +Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;5043;; +Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;3625;; +Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;636;; +Poland;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;2303;; +Poland;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;1399;; +Poland;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;512;u; +Poland;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;1600;; +Poland;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;821;; +Poland;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;1926;; +Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;4646;; +Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;2348;; +Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;831;; +Poland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;2853;; +Poland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;1684;; +Poland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;26886;; +Poland;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;50271;; +Poland;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;14144;; +Poland;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;501;u; +Poland;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2124;; +Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6316;; +Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3151;; +Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1418;; +Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3900;; +Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1780;; +Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;7684;; +Poland;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;11175;; +Poland;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;5056;; +Poland;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;278;u; +Poland;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;22475;; +Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;39280;; +Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;12734;; +Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1554;; +Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;4778;; +Poland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;10044;; +Poland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;4071;; +Poland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;3643;; +Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;4970;; +Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;1604;; +Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;17754;; +Poland;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;24128;; +Poland;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;6016;; +Poland;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;561;; +Poland;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;37012;; +Poland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;66957;; +Poland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;15114;; +Poland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;2111;; +Poland;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;5228;; +Poland;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;3984;; +Poland;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;189;u; +Poland;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;36542;; +Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;54869;; +Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;20565;; +Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;2602;; +Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;6784;; +Poland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;6386;; +Poland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;1860;; +Poland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;26640;; +Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;69979;; +Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;27508;; +Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;1299;; +Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;97100;; +Poland;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;382361;; +Poland;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;120784;; +Poland;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;4374;; +Poland;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;44754;; +Poland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;156685;; +Poland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;73027;; +Poland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;8319;; +Poland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;7814;; +Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;16612;; +Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;8139;; +Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;685;; +Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;4092;; +Poland;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;4862;; +Poland;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;1711;; +Poland;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;265;u; +Poland;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;2321;; +Poland;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;3774;; +Poland;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;1403;; +Poland;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;4013;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;13439;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;7744;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;233;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;651;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;3118;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;2101;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;36140;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;79760;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;31351;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;699;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1158;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5002;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3823;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1934;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;4345;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2990;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;6487;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;12637;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;6647;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;251;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;36902;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;63460;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;22874;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1172;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;8739;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;19068;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;7062;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;3355;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;6215;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;3170;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;6383;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;8281;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;2696;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;19520;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;31820;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;13998;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;468;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;4902;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;13746;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;9322;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;419;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;25838;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;40251;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;17055;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;1112;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;3887;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;5127;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;2372;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;36142;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;91351;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;41739;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;447;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;8897;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;20035;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;13506;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;516;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;35882;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;89886;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;51678;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;1654;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;9111;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;16271;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;8922;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;411;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;3491;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;5233;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;2977;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;468;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;595;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;828;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;606;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;2786;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;4393;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;1895;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;2062;; +Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;3624;; +Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;2104;; +Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;801;; +Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;3256;; +Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;2271;; +Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;23594;; +Poland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;41092;; +Poland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;16217;; +Poland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;212;u; +Poland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1306;; +Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4336;; +Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3010;; +Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2126;; +Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3068;; +Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1762;; +Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;6832;; +Poland;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;8918;; +Poland;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;3851;; +Poland;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;24833;; +Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;34540;; +Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9762;; +Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;224;u; +Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;17289;; +Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;43099;; +Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;19057;; +Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;10129;; +Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;7851;; +Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;2624;; +Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;7140;; +Poland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;7310;; +Poland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;2837;; +Poland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;14768;; +Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;22523;; +Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;10565;; +Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;3918;; +Poland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;8019;; +Poland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;7066;; +Poland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;14590;; +Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;13010;; +Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;4970;; +Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;221;u; +Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;10662;; +Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;8157;; +Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;2800;; +Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;33816;; +Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;39752;; +Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;20599;; +Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;13419;; +Poland;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;19316;; +Poland;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;12530;; +Poland;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;306;u; +Poland;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;11041;; +Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;17609;; +Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;11595;; +Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;240;u; +Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;4747;; +Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;5248;; +Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;2845;; +Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;3174;; +Poland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;4031;; +Poland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;1753;; +Poland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;2164;; +Poland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;2156;; +Poland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;782;; +Poland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;2522;; +Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;6719;; +Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;3535;; +Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;304;u; +Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;604;; +Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;358;u; +Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;29148;; +Poland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;49230;; +Poland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;16121;; +Poland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;658;; +Poland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1006;; +Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1643;; +Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;863;; +Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;192;u; +Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;767;; +Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;605;; +Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;1156;; +Poland;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;2584;; +Poland;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;921;; +Poland;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;307795;; +Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;466043;; +Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;138872;; +Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;6199;; +Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;2611;; +Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;7714;; +Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;3574;; +Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;68867;; +Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;64026;; +Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;21637;; +Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;775;; +Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;9593;; +Poland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;4590;; +Poland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;1254;; +Poland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;3213;; +Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;2968;; +Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;765;; +Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;396;u; +Poland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;2556;; +Poland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;2712;; +Poland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;3370;; +Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;1965;; +Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;636;; +Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;9385;; +Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;10884;; +Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;7443;; +Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;268;u; +Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;5091;; +Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;11670;; +Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4164;; +Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;9256;; +Poland;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;34515;; +Poland;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;25600;; +Poland;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;393;u; +Poland;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;6708;; +Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;26304;; +Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;18523;; +Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;469;u; +Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;4770;; +Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;5060;; +Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;2703;; +Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;52812;; +Poland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;51998;; +Poland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;10074;; +Poland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;1173;; +Poland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;872;; +Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1638;; +Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;997;; +Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;5687;; +Poland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;6549;; +Poland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;2262;; +Poland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;102848;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;375318;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;239438;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;42658;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;265;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;266;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;1098;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;541;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;209;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;947;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2578;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1049;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;194;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;311;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;162;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;264;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;1080;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;563;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;480;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;278;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;201;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;375;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;231;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;194;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;474;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;194;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;719;; +Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;2299;; +Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;798;; +Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;561;; +Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;487;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;52479;; +Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;240310;; +Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;72329;; +Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;1401;; +Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;207;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;222;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;336;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;176;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;871;; +Poland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;2755;; +Poland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;1039;; +Poland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1747;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5511;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1993;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;1415;; +Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;794;; +Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;194;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;432;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;182;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;236;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;609;; +Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;201;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;260;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;627;; +Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;241;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;361;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;716;; +Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;325;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;300;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;257;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;287;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;272;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;649;; +Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;574;; +Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;308;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;834;; +Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;434;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;683;; +Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;3008;; +Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;1271;; +Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;816;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;2811;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;797;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;274;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;731;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;243;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;1020;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;514;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;29978;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;78856;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;21739;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;253;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;753;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;289;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;299;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;754;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;261;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;996;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2098;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;643;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;984;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;9180;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;3300;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;285;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;461;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;198;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;219;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;235;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;556;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;363;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;759;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;2913;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;1336;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;518;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;1110;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;379;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;3866;; +Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;8407;; +Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;4090;; +Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;200;u; +Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;1671;; +Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;1113;; +Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;24835;; +Poland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;67766;; +Poland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;29147;; +Poland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;376;u; +Poland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1127;; +Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1306;; +Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;578;; +Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3506;; +Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2489;; +Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;600;; +Poland;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;2702;; +Poland;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;2110;; +Poland;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5618;; +Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;12435;; +Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7786;; +Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;357;u; +Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;1726;; +Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;4651;; +Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;3576;; +Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;8575;; +Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;19615;; +Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;9994;; +Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;179;u; +Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;870;; +Poland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;990;; +Poland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;805;; +Poland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;545;; +Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;2547;; +Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;2849;; +Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;443;u; +Poland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;4340;; +Poland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;5322;; +Poland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;209;u; +Poland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;725;; +Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;1652;; +Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;1582;; +Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;8322;; +Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;34017;; +Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;27699;; +Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;639;; +Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1965;; +Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;13294;; +Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;11115;; +Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;4937;; +Poland;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;53230;; +Poland;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;47890;; +Poland;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;470;u; +Poland;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;4538;; +Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;97934;; +Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;57488;; +Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;416;u; +Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;1058;; +Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;4517;; +Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;4399;; +Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;195;u; +Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;826;; +Poland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;3733;; +Poland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;2801;; +Poland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;207;u; +Poland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;254;u; +Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;681;; +Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;549;; +Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;1912;; +Poland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;5096;; +Poland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;2693;; +Poland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;1410;; +Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;3731;; +Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;1994;; +Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;200;u; +Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;310;u; +Poland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;220;u; +Poland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;4242;; +Poland;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;10341;; +Poland;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;4339;; +Poland;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;207;u; +Poland;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;402;u; +Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;310;u; +Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;189;u; +Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;654;; +Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;387;u; +Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;604;; +Poland;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;1197;; +Poland;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;715;; +Poland;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2340;; +Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4684;; +Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2069;; +Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;771;; +Poland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;2042;; +Poland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;1120;; +Poland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;1003;; +Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;1447;; +Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;822;; +Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;844;; +Poland;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;736;; +Poland;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;303;u; +Poland;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;1220;; +Poland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;1381;; +Poland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;643;; +Poland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;428;u; +Poland;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;1705;; +Poland;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;1628;; +Poland;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;1389;; +Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;1707;; +Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;913;; +Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;864;; +Poland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;1612;; +Poland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;1151;; +Poland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Poland;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Poland;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Poland;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Poland;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;1948;; +Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;3353;; +Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;1964;; +Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;1949;; +Poland;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;6182;; +Poland;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;4946;; +Poland;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;901;; +Poland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;3179;; +Poland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;1978;; +Poland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;767;; +Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;1232;; +Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;699;; +Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;500;u; +Poland;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;1115;; +Poland;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;785;; +Poland;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;195;u; +Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;55485;; +Poland;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;134348;; +Poland;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;67936;; +Poland;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;1340;; +Poland;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;u; +Poland;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;2020345;; +Poland;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;782071;; +Poland;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;1607758;; +Poland;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;1682444;; +Poland;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;137866;; +Poland;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;2965914;; +Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;32180;; +Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;54927;; +Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;8018;; +Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;226;u; +Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;1112;; +Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;5358;; +Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;4567;; +Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;235;u; +Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;502;u; +Poland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;2682;; +Poland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;2569;; +Poland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;195;u; +Poland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;15738;; +Poland;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;77895;; +Poland;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;37674;; +Poland;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;2502;; +Poland;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;412;u; +Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4619;; +Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3568;; +Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;623;; +Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3954;; +Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3895;; +Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;12487;; +Poland;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;50243;; +Poland;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;30969;; +Poland;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;1885;; +Poland;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;15700;; +Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;63591;; +Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;23496;; +Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1511;; +Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;4185;; +Poland;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;18309;; +Poland;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;9529;; +Poland;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;324;u; +Poland;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;3061;; +Poland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;7158;; +Poland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;3381;; +Poland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;245;u; +Poland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;4169;; +Poland;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;16811;; +Poland;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;3433;; +Poland;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;190;u; +Poland;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;2234;; +Poland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;13757;; +Poland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;2970;; +Poland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;209;u; +Poland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;289;u; +Poland;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;2788;; +Poland;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;4107;; +Poland;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;400;u; +Poland;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;2617;; +Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;11683;; +Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;4574;; +Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;921;; +Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;2050;; +Poland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;7410;; +Poland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;4606;; +Poland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;305;u; +Poland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;3997;; +Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;24998;; +Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;15048;; +Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1050;; +Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;545;; +Poland;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;5489;; +Poland;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;4525;; +Poland;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;457;u; +Poland;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;538;u; +Poland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;3158;; +Poland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;3109;; +Poland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;214;u; +Poland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;732;; +Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;3607;; +Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;2582;; +Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;222;u; +Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;621;; +Poland;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;2394;; +Poland;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;1448;; +Poland;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;202;u; +Poland;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;626;; +Poland;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;2364;; +Poland;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;1198;; +Poland;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;2121;; +Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;6112;; +Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;3212;; +Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;283;u; +Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;2474;; +Poland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;8358;; +Poland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;3751;; +Poland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;30512;; +Poland;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;59055;; +Poland;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;20001;; +Poland;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;1911;; +Poland;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2892;; +Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;10033;; +Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4728;; +Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;364;u; +Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1109;; +Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2837;; +Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1905;; +Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;11980;; +Poland;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;19926;; +Poland;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;12264;; +Poland;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;1853;; +Poland;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;13495;; +Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;25492;; +Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;6259;; +Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;829;; +Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;3523;; +Poland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;7487;; +Poland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;4162;; +Poland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;1445;; +Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;2046;; +Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;744;; +Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;36460;; +Poland;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;49876;; +Poland;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;8142;; +Poland;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;902;; +Poland;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;19367;; +Poland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;32785;; +Poland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;5079;; +Poland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;280;u; +Poland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;901;; +Poland;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;2231;; +Poland;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;2024;; +Poland;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;372;u; +Poland;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;28765;; +Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;58142;; +Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;27366;; +Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;6464;; +Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;2913;; +Poland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;3683;; +Poland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;1168;; +Poland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;191;u; +Poland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;10057;; +Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;32453;; +Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;13953;; +Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;1793;; +Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;21700;; +Poland;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;92592;; +Poland;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;44067;; +Poland;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;8386;; +Poland;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;12215;; +Poland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;37003;; +Poland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;21041;; +Poland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;5648;; +Poland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;5326;; +Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;12499;; +Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;6953;; +Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;1011;; +Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;3081;; +Poland;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;11854;; +Poland;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;8088;; +Poland;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;1973;; +Poland;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;1457;; +Poland;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;2588;; +Poland;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;1241;; +Poland;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;204;u; +Poland;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;8747;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;21455;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;12850;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;340;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;3859;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;12589;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;5882;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;67910;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;137106;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;64611;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;2068;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4125;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;22143;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;15395;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2800;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;9781;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;8416;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;211;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;26726;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;50183;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;27849;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;1520;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;57236;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;100158;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;28630;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1405;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;13074;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;29113;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;17133;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;465;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;3228;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;4864;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;1926;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;16416;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;20493;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;4378;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;10236;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;16567;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;7079;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;778;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;3042;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;7855;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;7390;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;684;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;16693;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;23305;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;13727;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;2066;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;3981;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;4760;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;2063;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;18183;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;62370;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;16397;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;886;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;4000;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;5945;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;4956;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;465;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;10055;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;17588;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;8033;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;514;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;8941;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;9501;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;4945;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;581;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;5420;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;6551;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;3114;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;337;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;3340;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;5253;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;2279;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;1810;; +Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;2612;; +Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;1765;; +Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;479;u; +Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;1358;; +Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;996;; +Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;36369;; +Poland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;49728;; +Poland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;18128;; +Poland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;305;u; +Poland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;878;; +Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3290;; +Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2119;; +Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1144;; +Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2797;; +Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1616;; +Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;3283;; +Poland;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;4900;; +Poland;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;2654;; +Poland;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;48572;; +Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;46517;; +Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;13795;; +Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;407;u; +Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;27088;; +Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;37658;; +Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;14711;; +Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;179;u; +Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;2482;; +Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;1703;; +Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;730;; +Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;3365;; +Poland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;3089;; +Poland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;884;; +Poland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;3930;; +Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;4853;; +Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;1809;; +Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;995;; +Poland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;2694;; +Poland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;2658;; +Poland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;263;u; +Poland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;3973;; +Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;2925;; +Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;973;; +Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;3616;; +Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;3207;; +Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;1376;; +Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;7449;; +Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;8370;; +Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5427;; +Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;266;u; +Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;1102;; +Poland;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;1576;; +Poland;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;1622;; +Poland;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;1349;; +Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;1684;; +Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;1240;; +Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;1350;; +Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;1410;; +Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;877;; +Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;804;; +Poland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;1027;; +Poland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;541;; +Poland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;1893;; +Poland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;1740;; +Poland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;699;; +Poland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;2162;; +Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;4660;; +Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;3582;; +Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;275;u; +Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;619;; +Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;2948;; +Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;1269;; +Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;10401;; +Poland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;19494;; +Poland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;15858;; +Poland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;1708;; +Poland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1657;; +Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2579;; +Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1746;; +Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;504;u; +Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1320;; +Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1751;; +Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;2315;; +Poland;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;4475;; +Poland;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;3602;; +Poland;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;366;u; +Poland;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;102399;; +Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;138770;; +Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;59596;; +Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4126;; +Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;2542;; +Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;9745;; +Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;6049;; +Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;370;u; +Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;42748;; +Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;25747;; +Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;8433;; +Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;524;u; +Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;5306;; +Poland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;2837;; +Poland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;775;; +Poland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;1164;; +Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;1916;; +Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;996;; +Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;392;u; +Poland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;1676;; +Poland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;2402;; +Poland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;297;u; +Poland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;1189;; +Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;1323;; +Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;722;; +Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;192;u; +Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;23114;; +Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;46993;; +Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;59866;; +Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;6149;; +Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;28809;; +Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;79696;; +Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;11906;; +Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;365;u; +Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;3295;; +Poland;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;7898;; +Poland;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;8028;; +Poland;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;718;; +Poland;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;2529;; +Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;6170;; +Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;4044;; +Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;179;u; +Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;3479;; +Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;3480;; +Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;2493;; +Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;221;u; +Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;4731;; +Poland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;6701;; +Poland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;3172;; +Poland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;739;; +Poland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;316;u; +Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;225;u; +Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;1905;; +Poland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;2460;; +Poland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;1523;; +Poland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;168279;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;409168;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;323618;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;50467;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;343;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;1155;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;2247;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;1311;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;212;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;498;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;381;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;177;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;223;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;200;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;472;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1120;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;648;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;182;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;352;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;391;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;384;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;507;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;226;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;548;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;364;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;2202;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;3405;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;1856;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;211;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;708;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;774;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;425;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;777;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;219;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;272;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;188;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;454;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;441;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;166;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;182;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;459;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;268;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;418;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;950;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;526;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;5637;; +Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;13086;; +Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;8263;; +Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;7103;; +Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;33773;; +Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;11132;; +Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;257073;; +Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;496059;; +Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;218232;; +Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;4976;; +Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4013;; +Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;23593;; +Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;17097;; +Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;4435;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;15787;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;12685;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;213348;; +Poland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;419546;; +Poland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;172300;; +Poland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;1744;; +Poland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;62527;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;96692;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;34460;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1195;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;4637;; +Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;22744;; +Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;18805;; +Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;813;; +Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;2444;; +Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;2123;; +Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;2868;; +Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;6459;; +Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;2171;; +Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;317;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;232;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;702;; +Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;5409;; +Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;7378;; +Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;2079;; +Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;3978;; +Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;1963;; +Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;2132;; +Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;4664;; +Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;3260;; +Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;239;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1470;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;7569;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;8533;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;222;u; +Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;1120;; +Poland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;5686;; +Poland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;9606;; +Poland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;424;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;642;; +Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;4931;; +Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;5723;; +Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;171;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;1680;; +Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;4405;; +Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;3724;; +Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;5135;; +Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;11321;; +Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;6800;; +Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;876;; +Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;299;u; +Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;197;u; +Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;7605;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;14068;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;6579;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;5761;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;15753;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;12507;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;22967;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;71357;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;14701;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;100546;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;165299;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;66535;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;748;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1292;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7638;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;6487;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;5541;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;16812;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;10755;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;23596;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;46487;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;25992;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;329;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;27890;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;45207;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;15587;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;370;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;67710;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;216605;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;125405;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;4375;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;2288;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;2036;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;914;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;259;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;727;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;336;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;423;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;240;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;187;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;1290;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;1732;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;952;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;1662;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;1282;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;1624;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;3709;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;2138;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2455;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;8666;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;7049;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;195;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;380;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;2531;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;3314;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;1210;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;6271;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;5996;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;595;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;1412;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;903;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;1448;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;2807;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;1586;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;235;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;2838;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;5488;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;2808;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;7644;; +Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;9432;; +Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;5805;; +Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;290;u; +Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;1334;; +Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;3699;; +Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;1489;; +Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;25815;; +Poland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;26086;; +Poland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;13888;; +Poland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;585;; +Poland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;300;u; +Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;555;; +Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;675;; +Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3038;; +Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;7178;; +Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;5418;; +Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;44503;; +Poland;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;62908;; +Poland;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;21009;; +Poland;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;453;u; +Poland;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;11461;; +Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9708;; +Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5795;; +Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;582;; +Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;4398;; +Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;5460;; +Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;4174;; +Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;488;u; +Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;4230;; +Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;2401;; +Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;1567;; +Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;1133;; +Poland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;447;u; +Poland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;352;u; +Poland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;197;u; +Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;162;u; +Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;288;u; +Poland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;1455;; +Poland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;2183;; +Poland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;284;u; +Poland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;776;; +Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;640;; +Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;376;u; +Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;4006;; +Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;6415;; +Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;7099;; +Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;558;; +Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;2007;; +Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;5346;; +Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;6816;; +Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;966;; +Poland;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;5709;; +Poland;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;10399;; +Poland;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;856;; +Poland;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;916;; +Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;2687;; +Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;2514;; +Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;165;u; +Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;967;; +Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;1225;; +Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;1534;; +Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;1182;; +Poland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;2411;; +Poland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;1618;; +Poland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;202;u; +Poland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;197;u; +Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;202;u; +Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;206;u; +Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;3563;; +Poland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;4536;; +Poland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;2529;; +Poland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;1899;; +Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;3486;; +Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;1925;; +Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;208;u; +Poland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;699;; +Poland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;273;u; +Poland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;6783;; +Poland;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;10730;; +Poland;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;4702;; +Poland;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;185;u; +Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;651;; +Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;430;u; +Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;371;u; +Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;772;; +Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;613;; +Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;1894;; +Poland;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;4162;; +Poland;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;1836;; +Poland;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2861;; +Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;5134;; +Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2300;; +Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;926;; +Poland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;2330;; +Poland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;1396;; +Poland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;662;; +Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;807;; +Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;404;u; +Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;817;; +Poland;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;898;; +Poland;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;229;u; +Poland;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;745;; +Poland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;623;; +Poland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;237;u; +Poland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;249;u; +Poland;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;857;; +Poland;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;726;; +Poland;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;1153;; +Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;1682;; +Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;896;; +Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;948;; +Poland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;1318;; +Poland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;839;; +Poland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Poland;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Poland;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Poland;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;763;; +Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;1654;; +Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;1109;; +Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;528;u; +Poland;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;1542;; +Poland;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;755;; +Poland;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;268;u; +Poland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;803;; +Poland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;399;u; +Poland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;730;; +Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;818;; +Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;318;u; +Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;450;u; +Poland;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;774;; +Poland;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;503;u; +Poland;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Poland;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Poland;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;61685;; +Poland;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;130031;; +Poland;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;82948;; +Poland;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;1896;; +Poland;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;:;u; +Poland;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;448632;; +Portugal;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;265839;; +Portugal;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;534630;; +Portugal;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;985440;; +Portugal;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;158628;; +Portugal;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;768330;; +Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;3562;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;946;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;112;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;15;; +Portugal;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;3;; +Portugal;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;49;; +Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;13;; +Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;1;; +Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;3;; +Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;1;; +Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2;; +Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;; +Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;171;; +Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;2055;; +Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;2065;; +Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;297;; +Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;6;; +Portugal;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;10;; +Portugal;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;108;; +Portugal;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;57;; +Portugal;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;4;; +Portugal;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;1249;; +Portugal;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;10200;; +Portugal;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;4196;; +Portugal;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;357;; +Portugal;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;7;; +Portugal;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;52;; +Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;188;; +Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;70;; +Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;37;; +Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;366;; +Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;77;; +Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;302;; +Portugal;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;2474;; +Portugal;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;1246;; +Portugal;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;83;; +Portugal;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3996;; +Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;21713;; +Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;10522;; +Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1370;; +Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;15;; +Portugal;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;227;; +Portugal;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;1679;; +Portugal;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;682;; +Portugal;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;44;; +Portugal;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;1711;; +Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;9162;; +Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;5078;; +Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;513;; +Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;4;; +Portugal;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;635;; +Portugal;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;2430;; +Portugal;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;284;; +Portugal;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;8;; +Portugal;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;429;; +Portugal;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;2375;; +Portugal;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;399;; +Portugal;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;12;; +Portugal;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;179;; +Portugal;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;1295;; +Portugal;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;417;; +Portugal;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;46;; +Portugal;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;5;; +Portugal;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;630;; +Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;3106;; +Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;747;; +Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;49;; +Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;508;; +Portugal;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;2577;; +Portugal;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;640;; +Portugal;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;39;; +Portugal;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;135;; +Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1900;; +Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;775;; +Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;23;; +Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;198;; +Portugal;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;2129;; +Portugal;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;1027;; +Portugal;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;85;; +Portugal;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;4;; +Portugal;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;559;; +Portugal;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;3534;; +Portugal;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;1315;; +Portugal;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;123;; +Portugal;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;5;; +Portugal;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;171;; +Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;635;; +Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;129;; +Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;12;; +Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;209;; +Portugal;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;1551;; +Portugal;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;623;; +Portugal;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;48;; +Portugal;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;20;; +Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;278;; +Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;803;; +Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;99;; +Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;36;; +Portugal;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;83;; +Portugal;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;11;; +Portugal;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;3076;; +Portugal;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;7585;; +Portugal;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;815;; +Portugal;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;50;; +Portugal;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;3;; +Portugal;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;145;; +Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;370;; +Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;124;; +Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;238;; +Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;821;; +Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;79;; +Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;1246;; +Portugal;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;2912;; +Portugal;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;234;; +Portugal;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;10;; +Portugal;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4720;; +Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8186;; +Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1362;; +Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;187;; +Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;23;; +Portugal;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;221;; +Portugal;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1117;; +Portugal;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;317;; +Portugal;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;7;; +Portugal;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;454;; +Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;668;; +Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;99;; +Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;9;; +Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;3340;; +Portugal;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;7356;; +Portugal;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;814;; +Portugal;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;23;; +Portugal;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;806;; +Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;2657;; +Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;384;; +Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;5;; +Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;147;; +Portugal;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;452;; +Portugal;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;59;; +Portugal;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;12378;; +Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;26085;; +Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;2795;; +Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;186;; +Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;1145;; +Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;2023;; +Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;220;; +Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;12;; +Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;3332;; +Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;19341;; +Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;5022;; +Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;65;; +Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;23945;; +Portugal;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;119704;; +Portugal;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;40516;; +Portugal;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;776;; +Portugal;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;8;; +Portugal;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;29887;; +Portugal;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;49692;; +Portugal;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;13948;; +Portugal;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;667;; +Portugal;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;13;; +Portugal;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1591;; +Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;3012;; +Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;698;; +Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;65;; +Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;708;; +Portugal;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;1766;; +Portugal;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;319;; +Portugal;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;46;; +Portugal;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;12;; +Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;21;; +Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;111;; +Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;35;; +Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;207;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;681;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;218;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;53;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;143;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;50;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;4;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;5039;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;17393;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;4889;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;106;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;4;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;122;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;407;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;271;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;262;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1044;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;181;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;1252;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;3785;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;910;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;23;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6202;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;18806;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4349;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;183;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;823;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;3285;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;1031;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;19;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;798;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;2056;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;642;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;26;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;1645;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;4580;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;888;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;21;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;5599;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;22867;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;5619;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;72;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;882;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;3768;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;1211;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;59;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;3;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;6661;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;20506;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;4538;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;174;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;4;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;1816;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;3865;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;745;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;32;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1561;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;14136;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;7773;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;72;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;1258;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;4746;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;2007;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;75;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;8271;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;18364;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;6203;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;339;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;1346;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;2008;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;370;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;22;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;673;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;1784;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;627;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;99;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;3;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;4;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;24;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;6;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;16;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;92;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;46;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;345;; +Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;1238;; +Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;495;; +Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;10;; +Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;90;; +Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;379;; +Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;92;; +Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;3;; +Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;5654;; +Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;20664;; +Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;6523;; +Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;96;; +Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;292;; +Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;738;; +Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;488;; +Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;7;; +Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;406;; +Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1583;; +Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;455;; +Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;2194;; +Portugal;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;7688;; +Portugal;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;2218;; +Portugal;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;42;; +Portugal;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9725;; +Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;29869;; +Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;8103;; +Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;210;; +Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Portugal;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;2694;; +Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;8326;; +Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;2895;; +Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;48;; +Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;3183;; +Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;5371;; +Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;1232;; +Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;46;; +Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;4039;; +Portugal;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;5682;; +Portugal;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;1170;; +Portugal;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;21;; +Portugal;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;2436;; +Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;4494;; +Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;842;; +Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;19;; +Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;859;; +Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;2559;; +Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;573;; +Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;20;; +Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;4281;; +Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;12106;; +Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;3215;; +Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;91;; +Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;5762;; +Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;9595;; +Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;2104;; +Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;51;; +Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;4624;; +Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;26298;; +Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;15174;; +Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;275;; +Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;1791;; +Portugal;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;10766;; +Portugal;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;5133;; +Portugal;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;137;; +Portugal;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;4921;; +Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;19281;; +Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;8180;; +Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;218;; +Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;1193;; +Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;2936;; +Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;907;; +Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;38;; +Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;928;; +Portugal;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;2930;; +Portugal;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;1167;; +Portugal;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;44;; +Portugal;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;6;; +Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;29;; +Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;4;; +Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;15;; +Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;89;; +Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;59;; +Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;4;; +Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;153;; +Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;506;; +Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;263;; +Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;18;; +Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;8;; +Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;36;; +Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;23;; +Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;4203;; +Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;8178;; +Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;2868;; +Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;123;; +Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;98;; +Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;153;; +Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;92;; +Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;51;; +Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;132;; +Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;54;; +Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;141;; +Portugal;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;452;; +Portugal;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;171;; +Portugal;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;8;; +Portugal;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;71836;; +Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;103781;; +Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;33030;; +Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3120;; +Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;47;; +Portugal;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1826;; +Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;3933;; +Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;793;; +Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;29;; +Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;39849;; +Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;72503;; +Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;30593;; +Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;1429;; +Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;18;; +Portugal;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;2440;; +Portugal;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;2793;; +Portugal;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;250;; +Portugal;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;4;; +Portugal;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;501;; +Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;804;; +Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;160;; +Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;11;; +Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;188;; +Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;723;; +Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;549;; +Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;125;; +Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;3;; +Portugal;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;768;; +Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;1238;; +Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;273;; +Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;10;; +Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;2818;; +Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;7256;; +Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;1896;; +Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;114;; +Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;4;; +Portugal;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2145;; +Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;6012;; +Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2250;; +Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;79;; +Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;5309;; +Portugal;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;23892;; +Portugal;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;13193;; +Portugal;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;451;; +Portugal;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;4;; +Portugal;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;13218;; +Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;60824;; +Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;32545;; +Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;912;; +Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;9;; +Portugal;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;824;; +Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;1128;; +Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;418;; +Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;33;; +Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;12260;; +Portugal;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;29169;; +Portugal;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;6866;; +Portugal;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;472;; +Portugal;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;336;; +Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1100;; +Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;940;; +Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;190;; +Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;17;; +Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;1866;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;9356;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;9547;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;1119;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;20;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;6;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;2;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;96;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;390;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;262;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;10;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;8;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;12;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;2;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;26;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;17;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;240;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1099;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;644;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;36;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;3;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;2;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;9;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;67;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;60;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;2;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;4;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;7;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;7;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;2;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;12;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;10;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;10;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;34;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;11;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;261;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;1353;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;665;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;26;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;71;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;998;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;594;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;28;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;15;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;61;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;30;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;4;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;17;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;78;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;48;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;16;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;91;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;39;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;19;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;68;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;29;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;93;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;414;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;212;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;7;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;11;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;4;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;16856;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;75621;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;23563;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;461;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;8;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;26;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;68;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;25;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;9;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;27;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;9;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;238;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;628;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;236;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;7;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2828;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;9708;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4101;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;161;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;31;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;99;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;33;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;739;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;2141;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;933;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;47;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;125;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;217;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;63;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;4;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;2;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;17;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;4;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;8;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;11;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;79;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;262;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;97;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;81;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;160;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;78;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;34;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;192;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;167;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;3;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;33;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;312;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;178;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;10;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;52;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;303;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;481;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;37;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;30;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;90;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;68;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;4;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;108;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;810;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;721;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;51;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;59;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;255;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;150;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;20;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;56;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;23;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;7383;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;29147;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;10474;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;87;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;2;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;5;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;16;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;11;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;65;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;28;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;45;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;92;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;35;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;650;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2334;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;631;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;13;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;348;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;1596;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;550;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;21;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;25;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;83;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;45;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;3;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;8;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;7;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;2;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;5;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;9;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;3;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;7;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;31;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;14;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;39;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;112;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;28;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;60;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;268;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;75;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;33;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;144;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;48;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;3;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;63;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;491;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;198;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;3;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;13;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;27;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;120;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;553;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;170;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;9;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;1378;; +Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;5475;; +Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;4010;; +Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;175;; +Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;3;; +Portugal;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;13;; +Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;120;; +Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;88;; +Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;4;; +Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;14251;; +Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;43859;; +Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;16343;; +Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;213;; +Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;4;; +Portugal;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;50;; +Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;168;; +Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;122;; +Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;223;; +Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1026;; +Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;438;; +Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;11;; +Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;301;; +Portugal;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;1315;; +Portugal;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;1068;; +Portugal;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;40;; +Portugal;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;7231;; +Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;20020;; +Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9677;; +Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;491;; +Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Portugal;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;371;; +Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;1080;; +Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;801;; +Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;43;; +Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;4192;; +Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;15009;; +Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;9116;; +Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;257;; +Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;179;; +Portugal;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;333;; +Portugal;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;250;; +Portugal;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;12;; +Portugal;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;106;; +Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;601;; +Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;858;; +Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;37;; +Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;160;; +Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;825;; +Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;560;; +Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;28;; +Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;265;; +Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;1084;; +Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;929;; +Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;42;; +Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;9176;; +Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;48094;; +Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;32042;; +Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;1281;; +Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;8;; +Portugal;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1012;; +Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;7788;; +Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;6462;; +Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;376;; +Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;4384;; +Portugal;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;25996;; +Portugal;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;14912;; +Portugal;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;467;; +Portugal;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;3;; +Portugal;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;3846;; +Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;18501;; +Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;10400;; +Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;363;; +Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;1;; +Portugal;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;301;; +Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;1384;; +Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;1000;; +Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;43;; +Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;950;; +Portugal;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;4341;; +Portugal;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;2506;; +Portugal;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;103;; +Portugal;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5407;; +Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;44910;; +Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;36927;; +Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2120;; +Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;21;; +Portugal;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;30;; +Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;15;; +Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;2;; +Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Portugal;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;434496;; +Portugal;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;133461;; +Portugal;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;331784;; +Portugal;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;721132;; +Portugal;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;74750;; +Portugal;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;803999;; +Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;7;; +Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;20;; +Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;8;; +Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;14626;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;11905;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;2691;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;35;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;61;; +Portugal;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;69;; +Portugal;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;25;; +Portugal;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;61;; +Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;105;; +Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;47;; +Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;6;; +Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;13;; +Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;7;; +Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;1;; +Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;4;; +Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;43;; +Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;14;; +Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;688;; +Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;5842;; +Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;5889;; +Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;1217;; +Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;25;; +Portugal;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;30;; +Portugal;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;350;; +Portugal;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;232;; +Portugal;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;43;; +Portugal;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;1998;; +Portugal;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;21064;; +Portugal;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;12329;; +Portugal;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;1764;; +Portugal;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;28;; +Portugal;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;69;; +Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;543;; +Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;405;; +Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;24;; +Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;109;; +Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;776;; +Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;343;; +Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;40;; +Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;1214;; +Portugal;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;13200;; +Portugal;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;8214;; +Portugal;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;777;; +Portugal;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;12;; +Portugal;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4095;; +Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;35683;; +Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;21624;; +Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4238;; +Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;74;; +Portugal;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;380;; +Portugal;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;3501;; +Portugal;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;1822;; +Portugal;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;243;; +Portugal;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;2285;; +Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;13551;; +Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;9895;; +Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;1350;; +Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;8;; +Portugal;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;877;; +Portugal;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;4971;; +Portugal;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;995;; +Portugal;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;55;; +Portugal;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;427;; +Portugal;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;4123;; +Portugal;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;1470;; +Portugal;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;130;; +Portugal;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;4;; +Portugal;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;214;; +Portugal;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;1989;; +Portugal;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;865;; +Portugal;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;176;; +Portugal;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;6;; +Portugal;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;676;; +Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;4915;; +Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;1466;; +Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;179;; +Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;506;; +Portugal;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;3792;; +Portugal;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;1369;; +Portugal;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;140;; +Portugal;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;5;; +Portugal;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;268;; +Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;3233;; +Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2023;; +Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;176;; +Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;125;; +Portugal;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;1222;; +Portugal;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;666;; +Portugal;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;92;; +Portugal;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;224;; +Portugal;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;1674;; +Portugal;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;835;; +Portugal;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;134;; +Portugal;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;220;; +Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1132;; +Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;414;; +Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;40;; +Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;112;; +Portugal;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;1008;; +Portugal;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;607;; +Portugal;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;99;; +Portugal;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;3;; +Portugal;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;5;; +Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;31;; +Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;280;; +Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1092;; +Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;369;; +Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;42;; +Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;61;; +Portugal;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;204;; +Portugal;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;55;; +Portugal;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;6;; +Portugal;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;4213;; +Portugal;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;12370;; +Portugal;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;3045;; +Portugal;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;277;; +Portugal;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;6;; +Portugal;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;417;; +Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1165;; +Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;745;; +Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;30;; +Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;204;; +Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;786;; +Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;239;; +Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;23;; +Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;3033;; +Portugal;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;8396;; +Portugal;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;2186;; +Portugal;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;209;; +Portugal;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;4;; +Portugal;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2602;; +Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7307;; +Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1589;; +Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;180;; +Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;11;; +Portugal;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;340;; +Portugal;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;1545;; +Portugal;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;724;; +Portugal;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;58;; +Portugal;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;363;; +Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;758;; +Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;214;; +Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;28;; +Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;7520;; +Portugal;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;16534;; +Portugal;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;2386;; +Portugal;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;158;; +Portugal;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;8;; +Portugal;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;885;; +Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;2903;; +Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;831;; +Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;91;; +Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;108;; +Portugal;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;472;; +Portugal;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;154;; +Portugal;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;35;; +Portugal;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;11697;; +Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;28074;; +Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;8165;; +Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;1804;; +Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;32;; +Portugal;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;789;; +Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;1713;; +Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;333;; +Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;29;; +Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1633;; +Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;9650;; +Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;4982;; +Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;181;; +Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;3;; +Portugal;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;8265;; +Portugal;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;41101;; +Portugal;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;18222;; +Portugal;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;914;; +Portugal;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;5;; +Portugal;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;7305;; +Portugal;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;14549;; +Portugal;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;9805;; +Portugal;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;1742;; +Portugal;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;25;; +Portugal;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1873;; +Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;4436;; +Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1322;; +Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;194;; +Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;9;; +Portugal;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;562;; +Portugal;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;2211;; +Portugal;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;899;; +Portugal;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;627;; +Portugal;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;30;; +Portugal;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;15;; +Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;80;; +Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;30;; +Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;285;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;870;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;495;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;36;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;100;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;426;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;243;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;11;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;7217;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;26539;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;11974;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;586;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;293;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1086;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1093;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;16;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;620;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2506;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1033;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;35;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;3028;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;15633;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;7429;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;346;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;3;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6780;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;23816;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;8158;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;677;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;9;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;1238;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;6326;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;2812;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;178;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;730;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;1968;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;657;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;49;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;7464;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;14356;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;2930;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;59;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;4326;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;25594;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;10772;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;585;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;13;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;796;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;3632;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;1749;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;252;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;6;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;4292;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;14680;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;6303;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;1255;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;9;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;1606;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;4331;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;988;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;78;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1498;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;12690;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;7355;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;161;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;958;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;2336;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;714;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;56;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;2007;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;4296;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;1692;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;188;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;3;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;3754;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;4235;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;908;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;69;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;1081;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;2104;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;747;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;105;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;24;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;34;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;2;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;5;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;46;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;36;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;212;; +Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;564;; +Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;374;; +Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;14;; +Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;73;; +Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;215;; +Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;67;; +Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;3;; +Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;4739;; +Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;11330;; +Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;4951;; +Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;169;; +Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;230;; +Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;462;; +Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;558;; +Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;8;; +Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;246;; +Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;989;; +Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;481;; +Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;14;; +Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;1218;; +Portugal;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;3480;; +Portugal;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;1381;; +Portugal;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;53;; +Portugal;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9392;; +Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;17241;; +Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5690;; +Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;299;; +Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Portugal;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;3969;; +Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;11872;; +Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;4259;; +Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;79;; +Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;2148;; +Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;3131;; +Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;1089;; +Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;109;; +Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;2940;; +Portugal;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;2534;; +Portugal;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;518;; +Portugal;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;23;; +Portugal;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;1030;; +Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;1682;; +Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;568;; +Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;34;; +Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;196;; +Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;456;; +Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;207;; +Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;25;; +Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;1309;; +Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;2553;; +Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;891;; +Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;58;; +Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;3334;; +Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;4420;; +Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;1080;; +Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;65;; +Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2779;; +Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;11900;; +Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;7923;; +Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;213;; +Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;505;; +Portugal;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;2095;; +Portugal;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;1230;; +Portugal;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;41;; +Portugal;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;1142;; +Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;3548;; +Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;1815;; +Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;79;; +Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;581;; +Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;1483;; +Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;712;; +Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;30;; +Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;269;; +Portugal;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;812;; +Portugal;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;535;; +Portugal;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;37;; +Portugal;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2;; +Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;4;; +Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;12;; +Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;67;; +Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;37;; +Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;346;; +Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;1163;; +Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;818;; +Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;65;; +Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;21;; +Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;65;; +Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;45;; +Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;2129;; +Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;7359;; +Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;3774;; +Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;317;; +Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;3;; +Portugal;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;60;; +Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;161;; +Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;92;; +Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;80;; +Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;265;; +Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;170;; +Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;8;; +Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;223;; +Portugal;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;923;; +Portugal;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;455;; +Portugal;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;48;; +Portugal;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;29917;; +Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;61263;; +Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;27530;; +Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4051;; +Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;85;; +Portugal;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1442;; +Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;4561;; +Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;1587;; +Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;104;; +Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;26429;; +Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;39320;; +Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;17516;; +Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;1271;; +Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;10;; +Portugal;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;1878;; +Portugal;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;1959;; +Portugal;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;257;; +Portugal;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;7;; +Portugal;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;285;; +Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;639;; +Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;154;; +Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;8;; +Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;140;; +Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;588;; +Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;505;; +Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;109;; +Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;5;; +Portugal;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;350;; +Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;813;; +Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;219;; +Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;17;; +Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;8373;; +Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;19713;; +Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;6517;; +Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;336;; +Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;10217;; +Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;35610;; +Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;9518;; +Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;115;; +Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;723;; +Portugal;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;3894;; +Portugal;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;2885;; +Portugal;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;203;; +Portugal;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;2339;; +Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;5571;; +Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;2379;; +Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;118;; +Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;835;; +Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;1392;; +Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;555;; +Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;54;; +Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;1188;; +Portugal;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;3547;; +Portugal;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;1803;; +Portugal;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;638;; +Portugal;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;12;; +Portugal;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;34;; +Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;143;; +Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;130;; +Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;36;; +Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;4;; +Portugal;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;26;; +Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;11;; +Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;6467;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;25010;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;21472;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;2990;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;46;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;10;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;28;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;18;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;486;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;1461;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;930;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;65;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;5;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;30;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;11;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;25;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;150;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;104;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;4;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;52;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;177;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;97;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;5;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;777;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2393;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1529;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;125;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;20;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;59;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;41;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;3;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;148;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;384;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;309;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;21;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;3;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;1;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;7;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;16;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;11;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;3;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;14;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;70;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;36;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;3;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;14;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;41;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;18;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;2381;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;5556;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;2419;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;140;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;356;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2043;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1630;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;61;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;78;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;187;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;155;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;15;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;69;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;248;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;202;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;24;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;160;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;367;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;179;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;18;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;25;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;141;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;84;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;9;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;1;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;3;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;1;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;376;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;1114;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;688;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;31;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;224;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;810;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;445;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;16;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;42832;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;120570;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;56508;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;2141;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;23;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3498;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7947;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4169;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;85;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;389;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1711;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;938;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;16;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;38765;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;160657;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;67194;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;1348;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;11;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;19972;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;55564;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;25623;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1470;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;12;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;1097;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;3652;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;2617;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;63;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;1997;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;4652;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;1863;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;82;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;976;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;1912;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;588;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;8;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;43;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;120;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;85;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;2;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;89;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;488;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;241;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;15;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;522;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;1364;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;425;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;15;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;896;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;2555;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;1010;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;39;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;755;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;5979;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4993;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;120;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;137;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;469;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;445;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;41;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;216;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;1159;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;882;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;50;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;220;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;796;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;396;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;25;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;753;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;2581;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;1691;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;291;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;5;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;26;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;1067;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;4045;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;2468;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;165;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;1301;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;4785;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;2044;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;30;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;12158;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;34131;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;17340;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;348;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;3;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;108;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;415;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;216;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;505;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2848;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1358;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;31;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;4168;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;17449;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;7346;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;152;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;4182;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;16765;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7415;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;244;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;6782;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;47853;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;22903;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;1850;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;10;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;151;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;571;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;357;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;24;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;42;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;180;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;116;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;8;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;4;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;97;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;61;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;5;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;17;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;72;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;49;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;4;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;82;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;268;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;137;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;12;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;442;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;2029;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;801;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;34;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;505;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;5272;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4729;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;173;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;61;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;527;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;490;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;48;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;359;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;1967;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;1498;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;113;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;56;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;219;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;156;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;9;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;175;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;543;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;256;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;21;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;6;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;49;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;46;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;7;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;3;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;33;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;25;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;2947;; +Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;7217;; +Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;4679;; +Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;286;; +Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;181;; +Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;350;; +Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;186;; +Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;7;; +Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;18023;; +Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;28379;; +Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;12477;; +Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;244;; +Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;688;; +Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;816;; +Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;361;; +Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;14;; +Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1165;; +Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3271;; +Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1591;; +Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;35;; +Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;14577;; +Portugal;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;27521;; +Portugal;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;11523;; +Portugal;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;250;; +Portugal;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;13931;; +Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;20323;; +Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;8091;; +Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;472;; +Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Portugal;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;2115;; +Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;4201;; +Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;1737;; +Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;36;; +Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;2029;; +Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;2518;; +Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;1030;; +Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;56;; +Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;2;; +Portugal;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;345;; +Portugal;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;373;; +Portugal;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;137;; +Portugal;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;3;; +Portugal;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;40;; +Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;96;; +Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;56;; +Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;85;; +Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;206;; +Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;84;; +Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;9;; +Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;638;; +Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;779;; +Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;248;; +Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;16;; +Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1976;; +Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;3925;; +Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;1882;; +Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;87;; +Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1450;; +Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;8294;; +Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;7541;; +Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;246;; +Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;348;; +Portugal;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;1953;; +Portugal;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;1829;; +Portugal;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;74;; +Portugal;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;406;; +Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;1006;; +Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;589;; +Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;37;; +Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;480;; +Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;1029;; +Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;513;; +Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;46;; +Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;1;; +Portugal;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;346;; +Portugal;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;774;; +Portugal;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;449;; +Portugal;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;25;; +Portugal;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;196;; +Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;453;; +Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;256;; +Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;11;; +Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;4;; +Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;18;; +Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;11;; +Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;1;; +Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Portugal;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;1151915;; +Romania;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;724258;; +Romania;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;1251649;; +Romania;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;1512393;; +Romania;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;163570;; +Romania;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;1551335;; +Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;297;; +Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;1355;; +Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;468;; +Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;88;; +Romania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;362;; +Romania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;115;; +Romania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;2123;; +Romania;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;7827;; +Romania;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;1898;; +Romania;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;23;; +Romania;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;94;; +Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;674;; +Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;233;; +Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;133;; +Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;658;; +Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;215;; +Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;531;; +Romania;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;2309;; +Romania;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;595;; +Romania;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;7;; +Romania;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5714;; +Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;15293;; +Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2644;; +Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;65;; +Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;536;; +Romania;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;1835;; +Romania;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;282;; +Romania;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;813;; +Romania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;1766;; +Romania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;315;; +Romania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;981;; +Romania;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;2129;; +Romania;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;275;; +Romania;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;887;; +Romania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;3119;; +Romania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;477;; +Romania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;173;; +Romania;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;760;; +Romania;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;185;; +Romania;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;1184;; +Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;3224;; +Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;579;; +Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;13;; +Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;701;; +Romania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;1662;; +Romania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;272;; +Romania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;9;; +Romania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1231;; +Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;7155;; +Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;2343;; +Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;15;; +Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;310;; +Romania;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;2353;; +Romania;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;1067;; +Romania;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;11;; +Romania;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;460;; +Romania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;2828;; +Romania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;1198;; +Romania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;50;; +Romania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;349;; +Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;755;; +Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;225;; +Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;5;; +Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;746;; +Romania;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;1999;; +Romania;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;449;; +Romania;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;18;; +Romania;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;145;; +Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;375;; +Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;87;; +Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;5;; +Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;1199;; +Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;3486;; +Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1350;; +Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;9;; +Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;437;; +Romania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;2467;; +Romania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;904;; +Romania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;14175;; +Romania;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;33836;; +Romania;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;9854;; +Romania;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;74;; +Romania;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1037;; +Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5857;; +Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1985;; +Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;757;; +Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2723;; +Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;836;; +Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;3;; +Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;4257;; +Romania;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;12436;; +Romania;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;4002;; +Romania;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;39;; +Romania;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;16592;; +Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;29218;; +Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4734;; +Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;173;; +Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;2326;; +Romania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;8899;; +Romania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;2094;; +Romania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;11;; +Romania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;960;; +Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;1525;; +Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;258;; +Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;12939;; +Romania;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;13781;; +Romania;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;1911;; +Romania;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;42;; +Romania;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;15807;; +Romania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;27003;; +Romania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;4280;; +Romania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;13;; +Romania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;470;; +Romania;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;1166;; +Romania;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;226;; +Romania;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;19678;; +Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;35828;; +Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;7831;; +Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;300;; +Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;3133;; +Romania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;4440;; +Romania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;786;; +Romania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;11335;; +Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;61811;; +Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;16267;; +Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;74;; +Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;34284;; +Romania;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;119855;; +Romania;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;49364;; +Romania;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;371;; +Romania;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;22870;; +Romania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;93563;; +Romania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;27881;; +Romania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;735;; +Romania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1909;; +Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;5572;; +Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1547;; +Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;45;; +Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;3062;; +Romania;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;6688;; +Romania;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;1536;; +Romania;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;70;; +Romania;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;147;; +Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;330;; +Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;65;; +Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;583;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;2373;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1181;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;182;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;1118;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;438;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;7928;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;21582;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;7237;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;43;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;420;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3452;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1610;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;418;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2246;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1196;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;2192;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;5451;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;2272;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;19;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;25615;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;42394;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7392;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;90;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;1848;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;5642;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;1901;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;5;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;1041;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;1786;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;578;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;6704;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;6878;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;1304;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;10;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;5525;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;10453;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;3100;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;35;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;818;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;1557;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;445;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;6716;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;13075;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;4668;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;62;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;4296;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;4975;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;1246;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;15;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;4782;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;27890;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;11446;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;61;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;1039;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;4187;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;2140;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;19;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;6536;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;29499;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;8795;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;84;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;1978;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;2254;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;660;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;10;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;2189;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;5437;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;1573;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;242;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;50;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;56;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;99;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;28;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;391;; +Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;1434;; +Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;462;; +Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;113;; +Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;834;; +Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;271;; +Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;5079;; +Romania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;15314;; +Romania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;4335;; +Romania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;202;; +Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1803;; +Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;699;; +Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;288;; +Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1250;; +Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;505;; +Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;1523;; +Romania;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;4471;; +Romania;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;1207;; +Romania;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;7;; +Romania;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;12957;; +Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;29829;; +Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5766;; +Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;41;; +Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;4043;; +Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;22031;; +Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;6793;; +Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;3843;; +Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;4489;; +Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;1081;; +Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;9;; +Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;3200;; +Romania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;3437;; +Romania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;839;; +Romania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;3435;; +Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;5772;; +Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;1530;; +Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;338;; +Romania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;537;; +Romania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;152;; +Romania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;2669;; +Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;4590;; +Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;1278;; +Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;14;; +Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;4159;; +Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;4236;; +Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;732;; +Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;7;; +Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;3453;; +Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;15882;; +Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5805;; +Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;19;; +Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;852;; +Romania;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;4229;; +Romania;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;2460;; +Romania;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;11;; +Romania;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;1040;; +Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;2941;; +Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;1410;; +Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;9;; +Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;2850;; +Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;2663;; +Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;854;; +Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;5;; +Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;1055;; +Romania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;2097;; +Romania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;770;; +Romania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;14;; +Romania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;116;; +Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;160;; +Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;58;; +Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;290;; +Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;1189;; +Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;394;; +Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;7;; +Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;54;; +Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;262;; +Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;124;; +Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;5426;; +Romania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;14931;; +Romania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;3585;; +Romania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;23;; +Romania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;88;; +Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;852;; +Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;339;; +Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;190;; +Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1363;; +Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;510;; +Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;709;; +Romania;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;2386;; +Romania;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;698;; +Romania;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;96349;; +Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;246153;; +Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;48264;; +Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;298;; +Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;4;; +Romania;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1849;; +Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;7750;; +Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;2103;; +Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;27707;; +Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;39236;; +Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;8308;; +Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;36;; +Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;748;; +Romania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;1629;; +Romania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;409;; +Romania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;1072;; +Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;2663;; +Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;813;; +Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;178;; +Romania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;769;; +Romania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;469;; +Romania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;19;; +Romania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;585;; +Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;1447;; +Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;560;; +Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;15;; +Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;3775;; +Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;13417;; +Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;3362;; +Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;17;; +Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;3806;; +Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;16368;; +Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;6463;; +Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;71;; +Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;1006;; +Romania;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;14986;; +Romania;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;8101;; +Romania;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;24;; +Romania;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;5558;; +Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;58244;; +Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;24948;; +Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;443;; +Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;4;; +Romania;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;2574;; +Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;2786;; +Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;862;; +Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;11612;; +Romania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;24047;; +Romania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;6042;; +Romania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;117;; +Romania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;767;; +Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1884;; +Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;721;; +Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;18;; +Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;41;; +Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;108;; +Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;38;; +Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;42276;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;355624;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;345778;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;212934;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;9943;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;113;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;587;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;170;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;19;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;32;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;54;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;13;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;11;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;12;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;14;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;3;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;20;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;4;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;4;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;3;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;3;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;3;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;51;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;32;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;85;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;665;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;229;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;10;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;30;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;479;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;266;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;38;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;13;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;71;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;44;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;9;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;5;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;34;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;15;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;11;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;11;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;45;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;30;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;54;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;232;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;127;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;24;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1162;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2940;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1624;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;424;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;9;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;235;; +Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;843;; +Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;211;; +Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;7;; +Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;86;; +Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;961;; +Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;239;; +Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;48493;; +Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;180899;; +Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;36843;; +Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;97;; +Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;5;; +Romania;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;148;; +Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1767;; +Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;751;; +Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;66;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;593;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;324;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;1885;; +Romania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;6793;; +Romania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;2000;; +Romania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;29;; +Romania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1251;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4150;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1057;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;124;; +Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;1612;; +Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;595;; +Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;774;; +Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;2168;; +Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;560;; +Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;465;; +Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;1571;; +Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;444;; +Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;18;; +Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;56;; +Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;11;; +Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;5;; +Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;20;; +Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;13;; +Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;142;; +Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;546;; +Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;214;; +Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;234;; +Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;496;; +Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;139;; +Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;164;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;756;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;387;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;46;; +Romania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;390;; +Romania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;274;; +Romania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;5;; +Romania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;75;; +Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;533;; +Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;327;; +Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;90;; +Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;373;; +Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;178;; +Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;454;; +Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;1544;; +Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;530;; +Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;8;; +Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;c; +Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;8;; +Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;c; +Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;6;; +Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;89;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;336;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;90;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;128;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;1448;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;400;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;23751;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;82163;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;14995;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;36;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;19;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;610;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;296;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;41;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;190;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;69;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;163;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;587;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;150;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;565;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1493;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;309;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;1012;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;4219;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;1051;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;23;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;60;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;17;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;25;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;85;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;15;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;5;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;12;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;4;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;12;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;6;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;43;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;186;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;72;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;130;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;330;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;94;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;216;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;688;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;208;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;32;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;279;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;137;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;43;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;616;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;384;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;31;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;68;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;20;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;165;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;536;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;133;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;5;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;c; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;18796;; +Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;37788;; +Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;25144;; +Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;33457;; +Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;2577;; +Romania;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;246;; +Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;636;; +Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;189;; +Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;18449;; +Romania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;45544;; +Romania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;8803;; +Romania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;56;; +Romania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;108;; +Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;926;; +Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;332;; +Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1318;; +Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;4989;; +Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1319;; +Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;2150;; +Romania;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;6959;; +Romania;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;1950;; +Romania;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;22;; +Romania;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6531;; +Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;14768;; +Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4085;; +Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;41;; +Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;679;; +Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;2930;; +Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;1084;; +Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;3458;; +Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;6931;; +Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;2075;; +Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;11;; +Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;300;; +Romania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;1061;; +Romania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;387;; +Romania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;4;; +Romania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;102;; +Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;625;; +Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;349;; +Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;7;; +Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;111;; +Romania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;716;; +Romania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;398;; +Romania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;9;; +Romania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;411;; +Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;1413;; +Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;648;; +Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;6;; +Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;3;; +Romania;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;2329;; +Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;8767;; +Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;2945;; +Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;19;; +Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;1663;; +Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;7281;; +Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;3818;; +Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;46;; +Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;1065;; +Romania;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;12725;; +Romania;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;7870;; +Romania;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;31;; +Romania;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;460;; +Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;5302;; +Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;3020;; +Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;15;; +Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;369;; +Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;1635;; +Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;865;; +Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;10;; +Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;2226;; +Romania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;8434;; +Romania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;3847;; +Romania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;90;; +Romania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;:;c; +Romania;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;19329;; +Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;37713;; +Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;10433;; +Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;458;; +Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;9;; +Romania;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;11;; +Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;73;; +Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;25;; +Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Romania;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;1007398;; +Romania;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;464449;; +Romania;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;787231;; +Romania;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;852650;; +Romania;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;74415;; +Romania;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;1638311;; +Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;752;; +Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;4084;; +Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;2056;; +Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;81;; +Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;95;; +Romania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;854;; +Romania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;525;; +Romania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;13;; +Romania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;2378;; +Romania;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;11603;; +Romania;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;4994;; +Romania;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;153;; +Romania;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;143;; +Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1232;; +Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;812;; +Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;11;; +Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;226;; +Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1236;; +Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;881;; +Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;18;; +Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;1211;; +Romania;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;6304;; +Romania;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;3203;; +Romania;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;92;; +Romania;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5889;; +Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;23259;; +Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;6516;; +Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;172;; +Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;830;; +Romania;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;4010;; +Romania;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;1344;; +Romania;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;21;; +Romania;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;723;; +Romania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;2033;; +Romania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;671;; +Romania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;25;; +Romania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;1056;; +Romania;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;3510;; +Romania;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;705;; +Romania;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;26;; +Romania;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;444;; +Romania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;2078;; +Romania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;510;; +Romania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;16;; +Romania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;176;; +Romania;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;1052;; +Romania;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;378;; +Romania;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;19;; +Romania;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;840;; +Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;3572;; +Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;1104;; +Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;86;; +Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;544;; +Romania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;2172;; +Romania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;728;; +Romania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;21;; +Romania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;901;; +Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;8145;; +Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4514;; +Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;175;; +Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;171;; +Romania;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;1474;; +Romania;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;922;; +Romania;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;32;; +Romania;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;197;; +Romania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;1495;; +Romania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;851;; +Romania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;48;; +Romania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;375;; +Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;1350;; +Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;532;; +Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;37;; +Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;517;; +Romania;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;2270;; +Romania;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;921;; +Romania;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;54;; +Romania;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;118;; +Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;427;; +Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;193;; +Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;18;; +Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;2915;; +Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;10663;; +Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;5545;; +Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;86;; +Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;713;; +Romania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;4065;; +Romania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;2549;; +Romania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;19;; +Romania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;15514;; +Romania;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;40984;; +Romania;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;21118;; +Romania;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;333;; +Romania;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1640;; +Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7707;; +Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4727;; +Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;38;; +Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;689;; +Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2194;; +Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1617;; +Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;13;; +Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;8651;; +Romania;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;24928;; +Romania;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;12973;; +Romania;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;345;; +Romania;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;3;; +Romania;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;8700;; +Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;19408;; +Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4806;; +Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;143;; +Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Romania;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;2505;; +Romania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;12714;; +Romania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;5161;; +Romania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;56;; +Romania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;391;; +Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;877;; +Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;237;; +Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;10;; +Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;18350;; +Romania;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;24152;; +Romania;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;4104;; +Romania;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;95;; +Romania;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;3;; +Romania;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;6399;; +Romania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;11641;; +Romania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;2728;; +Romania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;54;; +Romania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;252;; +Romania;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;724;; +Romania;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;251;; +Romania;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;10;; +Romania;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;11972;; +Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;27870;; +Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;11284;; +Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;883;; +Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;1825;; +Romania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;3441;; +Romania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;1054;; +Romania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;27;; +Romania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;9750;; +Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;48477;; +Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;15967;; +Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;220;; +Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;7514;; +Romania;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;30689;; +Romania;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;26180;; +Romania;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;965;; +Romania;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;7;; +Romania;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;5882;; +Romania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;19433;; +Romania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;9269;; +Romania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;895;; +Romania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;4;; +Romania;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;1889;; +Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;4773;; +Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;1942;; +Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;87;; +Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;5313;; +Romania;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;18215;; +Romania;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;7634;; +Romania;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;536;; +Romania;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;8;; +Romania;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;56;; +Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;144;; +Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;39;; +Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;614;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;2504;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1393;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;15;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;265;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;2212;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;1271;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;7;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;8343;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;55756;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;11120;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;96;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;605;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5131;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3708;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;13;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;323;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1817;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1425;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;9;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;2443;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;6472;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;34442;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;103;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;28466;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;44655;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;6614;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;119;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;2887;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;8119;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;3896;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;18;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;728;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;973;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;256;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;3;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;10214;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;14283;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;2760;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;39;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;2855;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;6060;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;2055;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;50;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;784;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;1645;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;393;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;7;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;4532;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;8592;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;3610;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;109;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;2617;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;4717;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;1560;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;38;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;6882;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;27912;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;9001;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;175;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;637;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;1438;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;1353;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;17;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;1928;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;6649;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;2435;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;31;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;3644;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;3872;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;1394;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;36;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;1848;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;4054;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;1461;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;107;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;6;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;30;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;57;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;14;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;248;; +Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;810;; +Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;399;; +Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;5;; +Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;81;; +Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;405;; +Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;167;; +Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;4403;; +Romania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;8885;; +Romania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;2874;; +Romania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;13;; +Romania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;174;; +Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;773;; +Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;419;; +Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;3;; +Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;273;; +Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;782;; +Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;466;; +Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;844;; +Romania;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;2321;; +Romania;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;835;; +Romania;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;12;; +Romania;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;9410;; +Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;16708;; +Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4068;; +Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;27;; +Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;3669;; +Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;17735;; +Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;5385;; +Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;15;; +Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;1845;; +Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;3167;; +Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;1061;; +Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;26;; +Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;2375;; +Romania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;2248;; +Romania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;463;; +Romania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;1025;; +Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;1364;; +Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;354;; +Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;5;; +Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;104;; +Romania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;173;; +Romania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;69;; +Romania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;1054;; +Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;1292;; +Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;414;; +Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;9;; +Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;1907;; +Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;2311;; +Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;428;; +Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;7;; +Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;5510;; +Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;23862;; +Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;4314;; +Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;54;; +Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;150;; +Romania;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;554;; +Romania;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;371;; +Romania;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;7;; +Romania;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;248;; +Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;700;; +Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;418;; +Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;1265;; +Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;1263;; +Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;395;; +Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;6;; +Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;422;; +Romania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;775;; +Romania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;336;; +Romania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;16;; +Romania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;47;; +Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;89;; +Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;31;; +Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;571;; +Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;2801;; +Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;1395;; +Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;30;; +Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;111;; +Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;580;; +Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;262;; +Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;3546;; +Romania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;11327;; +Romania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;4744;; +Romania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;69;; +Romania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;91;; +Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;579;; +Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;227;; +Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;215;; +Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;713;; +Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;344;; +Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;1327;; +Romania;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;5953;; +Romania;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;2229;; +Romania;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;28;; +Romania;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;43678;; +Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;93509;; +Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;28231;; +Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;403;; +Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;3;; +Romania;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;1364;; +Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;5669;; +Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;1517;; +Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;12;; +Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;21198;; +Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;16742;; +Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;2945;; +Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;21;; +Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;664;; +Romania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;1237;; +Romania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;418;; +Romania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;385;; +Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;1068;; +Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;471;; +Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;9;; +Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;156;; +Romania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;629;; +Romania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;381;; +Romania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;32;; +Romania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;607;; +Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;1756;; +Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;750;; +Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;14;; +Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;28880;; +Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;73028;; +Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;25231;; +Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;123;; +Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;15010;; +Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;47332;; +Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5240;; +Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;23;; +Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;591;; +Romania;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;5608;; +Romania;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;4450;; +Romania;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;61;; +Romania;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;1283;; +Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;7443;; +Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;4024;; +Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;41;; +Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;1146;; +Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;1924;; +Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;872;; +Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;12;; +Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;2311;; +Romania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;5121;; +Romania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;2171;; +Romania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;146;; +Romania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;3;; +Romania;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;57;; +Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;154;; +Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;71;; +Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;5;; +Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;38;; +Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;71;; +Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;27;; +Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;3;; +Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;108487;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;298561;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;293483;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;334290;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;11394;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;527;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;1570;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;444;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;21;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;68;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;157;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;70;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;10;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;20;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;7;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;20;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;48;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;27;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;18;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;81;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;31;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;234;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;585;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;218;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;12;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;54;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;289;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;198;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;11;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;30;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;30;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;11;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;13;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;10;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;52;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;163;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;71;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;88;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;312;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;164;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3254;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8176;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3670;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;477;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;15;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;2933;; +Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;15580;; +Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;6527;; +Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;52;; +Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;1124;; +Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;14033;; +Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;4010;; +Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;3;; +Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;77897;; +Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;232867;; +Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;106910;; +Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;329;; +Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3715;; +Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;28630;; +Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;15464;; +Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;12;; +Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1078;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;9622;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;6892;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;16;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;77463;; +Romania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;206345;; +Romania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;61938;; +Romania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;387;; +Romania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;14896;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;34432;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;12314;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;52;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;3092;; +Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;20842;; +Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;10193;; +Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;21;; +Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;663;; +Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;1695;; +Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;730;; +Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;1882;; +Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;5138;; +Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;1662;; +Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;6;; +Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;35;; +Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;183;; +Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;99;; +Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;74;; +Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;393;; +Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;256;; +Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;3;; +Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;851;; +Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;2591;; +Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;1535;; +Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;13;; +Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;1354;; +Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;3656;; +Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;1692;; +Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;3;; +Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;829;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;4478;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;3000;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;131;; +Romania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;2263;; +Romania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;3090;; +Romania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;9;; +Romania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;242;; +Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;2248;; +Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;2677;; +Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;367;; +Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;1234;; +Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;822;; +Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;8;; +Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;2121;; +Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;7382;; +Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;3678;; +Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;54;; +Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;44;; +Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;121;; +Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;75;; +Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;3293;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;15702;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;5337;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;84;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;1329;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;19081;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;4177;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;44673;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;109665;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;31887;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;103;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;354;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4372;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2302;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;885;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;5051;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2496;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;5;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;5610;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;22174;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;9171;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;36;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;11112;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;30193;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;7022;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;36;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;33043;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;139812;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;38648;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;219;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;894;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;1511;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;490;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;526;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;1498;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;484;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;40;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;71;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;524;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;203;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;5;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;57;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;277;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;113;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;5;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;465;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;1986;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;790;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;7;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;1471;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;3904;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;1271;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;4;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;2300;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;11520;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;5057;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;17;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;223;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;2749;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;1900;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;16;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;431;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;4990;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;3054;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;9;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;179;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;666;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;325;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;847;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;2617;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;905;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;18;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;c; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;123;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;346;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;138;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;54929;; +Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;93013;; +Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;43792;; +Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;21889;; +Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;1150;; +Romania;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;588;; +Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;2117;; +Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;626;; +Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;23179;; +Romania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;38210;; +Romania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;11178;; +Romania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;81;; +Romania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;334;; +Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1366;; +Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;603;; +Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3671;; +Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;9588;; +Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3408;; +Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;17;; +Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;31969;; +Romania;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;55097;; +Romania;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;13436;; +Romania;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;148;; +Romania;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;17010;; +Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;22331;; +Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5984;; +Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;68;; +Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;3559;; +Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;6851;; +Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;2175;; +Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;28;; +Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;1942;; +Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;1959;; +Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;629;; +Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;13;; +Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;581;; +Romania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;729;; +Romania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;260;; +Romania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;8;; +Romania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;62;; +Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;209;; +Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;86;; +Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;3;; +Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;137;; +Romania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;320;; +Romania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;182;; +Romania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;5;; +Romania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;787;; +Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;1265;; +Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;521;; +Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;18;; +Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;5589;; +Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;12569;; +Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;5126;; +Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;32;; +Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;2156;; +Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;8923;; +Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;4959;; +Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;36;; +Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;:;c; +Romania;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;281;; +Romania;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;2731;; +Romania;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;2528;; +Romania;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;14;; +Romania;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;194;; +Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;1397;; +Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;887;; +Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;5;; +Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;561;; +Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;1110;; +Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;540;; +Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;7;; +Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;2953;; +Romania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;5436;; +Romania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;1967;; +Romania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;67;; +Romania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;2257;; +Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3979;; +Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1580;; +Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;202;; +Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;7;; +Romania;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;17;; +Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;51;; +Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;63;; +Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;c; +Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Romania;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;; +Sweden;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;; +Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;; +Sweden;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Sweden;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;:;; +Sweden;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;:;; +Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;:;; +Sweden;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Sweden;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;116445;; +Slovenia;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;31268;; +Slovenia;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;124752;; +Slovenia;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;178275;; +Slovenia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;26163;; +Slovenia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;141151;; +Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;2;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;1;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;307;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;608;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;46;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;9;; +Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;49;; +Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;18;; +Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;2;; +Slovenia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;15;; +Slovenia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;5;; +Slovenia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;129;; +Slovenia;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;1415;; +Slovenia;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;569;; +Slovenia;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;58;; +Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;18;; +Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3;; +Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;101;; +Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;29;; +Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;74;; +Slovenia;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;436;; +Slovenia;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;131;; +Slovenia;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;266;; +Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2051;; +Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;577;; +Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;42;; +Slovenia;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;415;; +Slovenia;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;134;; +Slovenia;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;85;; +Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;527;; +Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;145;; +Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;76;; +Slovenia;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;512;; +Slovenia;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;111;; +Slovenia;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;25;; +Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;635;; +Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;226;; +Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;17;; +Slovenia;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;193;; +Slovenia;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;78;; +Slovenia;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;282;; +Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;1795;; +Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;542;; +Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;99;; +Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;390;; +Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;73;; +Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;27;; +Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;660;; +Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;361;; +Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;48;; +Slovenia;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;603;; +Slovenia;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;340;; +Slovenia;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;24;; +Slovenia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;337;; +Slovenia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;199;; +Slovenia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;39;; +Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;261;; +Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;86;; +Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;58;; +Slovenia;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;324;; +Slovenia;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;106;; +Slovenia;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;15;; +Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;103;; +Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;19;; +Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;21;; +Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;47;; +Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;18;; +Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;550;; +Slovenia;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;3294;; +Slovenia;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;773;; +Slovenia;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;48;; +Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;232;; +Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;59;; +Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;38;; +Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;190;; +Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;33;; +Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;141;; +Slovenia;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;410;; +Slovenia;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;108;; +Slovenia;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;3;; +Slovenia;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;558;; +Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2115;; +Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;442;; +Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;69;; +Slovenia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;575;; +Slovenia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;145;; +Slovenia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;137;; +Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;383;; +Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;138;; +Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;488;; +Slovenia;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;2217;; +Slovenia;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;385;; +Slovenia;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;398;; +Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;2207;; +Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;467;; +Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;44;; +Slovenia;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;163;; +Slovenia;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;40;; +Slovenia;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;2129;; +Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;5787;; +Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;993;; +Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;8;; +Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;190;; +Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;387;; +Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;74;; +Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;1380;; +Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;7262;; +Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1996;; +Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;15;; +Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;6637;; +Slovenia;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;24595;; +Slovenia;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;8160;; +Slovenia;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;34;; +Slovenia;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;2437;; +Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;8545;; +Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;3171;; +Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;95;; +Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;448;; +Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;2257;; +Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;506;; +Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;5;; +Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;156;; +Slovenia;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;458;; +Slovenia;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;95;; +Slovenia;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;2;; +Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;29;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;215;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;60;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;13;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;93;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;47;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;1285;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;7367;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;2283;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;7;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;72;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;319;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;143;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;65;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;395;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;142;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;321;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;1452;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;443;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1914;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7814;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1887;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;365;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;1784;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;556;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;300;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;1134;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;365;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;456;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;1723;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;390;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;912;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;3983;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;1154;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;97;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;493;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;175;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;1246;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;4896;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;1270;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;3;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;425;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;961;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;196;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;483;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;4244;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1592;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;4;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;328;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;1508;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;569;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;3080;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;9272;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;3280;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;14;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;178;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;665;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;152;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;188;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;642;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;207;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;5;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;8;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;5;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;5;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;33;; +Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;155;; +Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;71;; +Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;14;; +Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;67;; +Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;35;; +Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;583;; +Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;3846;; +Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;1732;; +Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;4;; +Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;46;; +Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;314;; +Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;192;; +Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;52;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;367;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;155;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;431;; +Slovenia;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;1612;; +Slovenia;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;602;; +Slovenia;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1068;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4005;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1353;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;454;; +Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;2745;; +Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;906;; +Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;4;; +Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;307;; +Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;758;; +Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;217;; +Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;250;; +Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;1027;; +Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;325;; +Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;796;; +Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;3672;; +Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;1843;; +Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;3;; +Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;63;; +Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;266;; +Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;119;; +Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;600;; +Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;2301;; +Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;919;; +Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;437;; +Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;798;; +Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;224;; +Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;832;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;4973;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1521;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;169;; +Slovenia;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;1069;; +Slovenia;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;531;; +Slovenia;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;405;; +Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;1993;; +Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;912;; +Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;183;; +Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;894;; +Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;345;; +Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;3;; +Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;124;; +Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;502;; +Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;190;; +Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;3;; +Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;3;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;66;; +Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;236;; +Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;70;; +Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;17;; +Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;14;; +Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;7;; +Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;747;; +Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;2210;; +Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;635;; +Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;5;; +Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;29;; +Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;22;; +Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;17;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;48;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;12;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;192;; +Slovenia;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;398;; +Slovenia;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;78;; +Slovenia;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;8539;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;23667;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;5922;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;229;; +Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;571;; +Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;131;; +Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;3223;; +Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;7181;; +Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;1826;; +Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;68;; +Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;179;; +Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;64;; +Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;39;; +Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;150;; +Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;71;; +Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;42;; +Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;107;; +Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;22;; +Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;189;; +Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;464;; +Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;110;; +Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;344;; +Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;1036;; +Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;260;; +Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;475;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;719;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;109;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;313;; +Slovenia;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;1966;; +Slovenia;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;941;; +Slovenia;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;1064;; +Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;4421;; +Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;1645;; +Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;8;; +Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;195;; +Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;454;; +Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;99;; +Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;1794;; +Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;3708;; +Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;757;; +Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;24;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;23;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;11;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;398;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;4191;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;2765;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;18;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;21;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;107;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;41;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;12;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;11;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;59;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;12;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;3;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;16;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;2;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;41;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;267;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;66;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;6;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;5;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;1;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;2;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;24;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;9;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;1;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;5;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;25;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;10;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;10;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;63;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;28;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;14;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;8;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;3;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;9;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;1;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;19;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;6;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;4;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;15;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;5;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;3;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;23;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;5;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;20;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;5;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;8;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;46;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;12;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;2;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;1013;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;10146;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;2994;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;7;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;6;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;11;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;2;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;92;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;255;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;68;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;104;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;659;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;171;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;8;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;58;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;17;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;83;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;221;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;55;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;5;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;63;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;24;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;2;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;29;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;17;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;15;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;3;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;34;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;208;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;64;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;28;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;83;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;32;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;7;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;69;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;28;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;8;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;76;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;29;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;10;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;109;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;34;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;10;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;73;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;25;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;10;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;119;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;43;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;21;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;8;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;5;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;1630;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;13292;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;4491;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;16;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;8;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;14;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;63;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;30;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;38;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;266;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;129;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;77;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;318;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;80;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;5;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;36;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;30;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;2;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;9;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;4;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;6;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;9;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;4;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;7;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;43;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;165;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;44;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;164;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;329;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;77;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;13;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;6;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;8;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;63;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;52;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;18;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;268;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;189;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;7;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;29;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;4;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;6;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;109;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;55;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;44;; +Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;419;; +Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;181;; +Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;3;; +Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;7;; +Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;22;; +Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;12;; +Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;1806;; +Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;9989;; +Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;3591;; +Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;47;; +Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;38;; +Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;50;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;353;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;132;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;134;; +Slovenia;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;617;; +Slovenia;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;318;; +Slovenia;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;218;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1242;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;587;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;31;; +Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;198;; +Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;99;; +Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;708;; +Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;3474;; +Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;1484;; +Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;5;; +Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;5;; +Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;49;; +Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;40;; +Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;25;; +Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;134;; +Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;76;; +Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;12;; +Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;144;; +Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;130;; +Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;368;; +Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;937;; +Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;407;; +Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1352;; +Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;5435;; +Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;2511;; +Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;3;; +Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;29;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;593;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;339;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;230;; +Slovenia;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;4016;; +Slovenia;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;2134;; +Slovenia;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;5;; +Slovenia;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;472;; +Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;4133;; +Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;1552;; +Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;5;; +Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;32;; +Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;345;; +Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;187;; +Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;76;; +Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;480;; +Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;230;; +Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;197;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;212;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;71;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;151;; +Slovenia;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;702;; +Slovenia;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;170;; +Slovenia;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;2;; +Slovenia;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Slovenia;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;105151;; +Slovenia;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;24214;; +Slovenia;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;88227;; +Slovenia;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;125212;; +Slovenia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;7935;; +Slovenia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;149702;; +Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;2;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;1;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;1;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;2033;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;3897;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;533;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;1;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;9;; +Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;87;; +Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;82;; +Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;3;; +Slovenia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;32;; +Slovenia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;39;; +Slovenia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;284;; +Slovenia;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;4047;; +Slovenia;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;2347;; +Slovenia;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;24;; +Slovenia;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3;; +Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;153;; +Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;129;; +Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;4;; +Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;18;; +Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;224;; +Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;145;; +Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;433;; +Slovenia;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;2153;; +Slovenia;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;1055;; +Slovenia;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;7;; +Slovenia;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;412;; +Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4138;; +Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1918;; +Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;26;; +Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;90;; +Slovenia;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;864;; +Slovenia;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;422;; +Slovenia;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;7;; +Slovenia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;130;; +Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;852;; +Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;327;; +Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;4;; +Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;213;; +Slovenia;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;1496;; +Slovenia;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;446;; +Slovenia;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;3;; +Slovenia;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;35;; +Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;811;; +Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;329;; +Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;6;; +Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;30;; +Slovenia;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;290;; +Slovenia;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;174;; +Slovenia;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;342;; +Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;2860;; +Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;1449;; +Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;25;; +Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;93;; +Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;528;; +Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;226;; +Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;5;; +Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;10;; +Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;484;; +Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;539;; +Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;20;; +Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;47;; +Slovenia;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;344;; +Slovenia;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;281;; +Slovenia;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;7;; +Slovenia;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;7;; +Slovenia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;176;; +Slovenia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;171;; +Slovenia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;15;; +Slovenia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;31;; +Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;346;; +Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;183;; +Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;8;; +Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;34;; +Slovenia;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;306;; +Slovenia;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;179;; +Slovenia;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;1;; +Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;5;; +Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;21;; +Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;67;; +Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;32;; +Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;17;; +Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;126;; +Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;51;; +Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;1754;; +Slovenia;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;6309;; +Slovenia;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;2207;; +Slovenia;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;5;; +Slovenia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;149;; +Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;758;; +Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;250;; +Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;9;; +Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;26;; +Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;165;; +Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;61;; +Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;281;; +Slovenia;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;861;; +Slovenia;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;319;; +Slovenia;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;3;; +Slovenia;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;356;; +Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1444;; +Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;399;; +Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;6;; +Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;98;; +Slovenia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;645;; +Slovenia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;269;; +Slovenia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;31;; +Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;131;; +Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;86;; +Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;1642;; +Slovenia;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;4852;; +Slovenia;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;893;; +Slovenia;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;17;; +Slovenia;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;343;; +Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;1552;; +Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;327;; +Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;32;; +Slovenia;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;132;; +Slovenia;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;70;; +Slovenia;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;1980;; +Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;6029;; +Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;2234;; +Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;93;; +Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;138;; +Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;252;; +Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;125;; +Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;468;; +Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;4540;; +Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1894;; +Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;49;; +Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;1485;; +Slovenia;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;5749;; +Slovenia;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;2955;; +Slovenia;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;174;; +Slovenia;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;533;; +Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;2313;; +Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;1391;; +Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;198;; +Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;232;; +Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;1470;; +Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;676;; +Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;18;; +Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;129;; +Slovenia;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;593;; +Slovenia;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;348;; +Slovenia;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2;; +Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;33;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;171;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;92;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;41;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;239;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;76;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;2242;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;10021;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;5197;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;6;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;264;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1215;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;748;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;5;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;86;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;423;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;315;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;993;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;3428;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;2047;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;9;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1904;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;8004;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2603;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;481;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;1970;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;938;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;244;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;1003;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;438;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;697;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;3088;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;932;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;6;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;609;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;2542;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;900;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;4;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;77;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;411;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;238;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;1119;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;3605;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;1500;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;5;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;405;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;765;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;251;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;184;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;2175;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;1218;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;7;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;187;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;639;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;217;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;1236;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;1563;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;450;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;11;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;470;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;1105;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;372;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;8;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;97;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;412;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;176;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;4;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;10;; +Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;55;; +Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;39;; +Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;6;; +Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;14;; +Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;15;; +Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;673;; +Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;2675;; +Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;1584;; +Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;17;; +Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;64;; +Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;78;; +Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;42;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;149;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;106;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;108;; +Slovenia;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;371;; +Slovenia;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;307;; +Slovenia;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;1539;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;3487;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1175;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;970;; +Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;3991;; +Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;1470;; +Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;3;; +Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;170;; +Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;352;; +Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;177;; +Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;159;; +Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;307;; +Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;122;; +Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;329;; +Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;871;; +Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;451;; +Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;23;; +Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;57;; +Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;40;; +Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;203;; +Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;539;; +Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;274;; +Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;303;; +Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;459;; +Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;199;; +Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;157;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;567;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;310;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;31;; +Slovenia;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;109;; +Slovenia;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;134;; +Slovenia;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;79;; +Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;232;; +Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;149;; +Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;136;; +Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;823;; +Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;275;; +Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;42;; +Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;96;; +Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;46;; +Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;1;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;54;; +Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;136;; +Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;79;; +Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;10;; +Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;20;; +Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;7;; +Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;350;; +Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;1129;; +Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;635;; +Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;22;; +Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;73;; +Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;41;; +Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;18;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;120;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;90;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;104;; +Slovenia;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;275;; +Slovenia;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;170;; +Slovenia;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;3560;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7567;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2541;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;143;; +Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;682;; +Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;340;; +Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;2786;; +Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;4626;; +Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;1378;; +Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;8;; +Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;44;; +Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;136;; +Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;55;; +Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;39;; +Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;155;; +Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;76;; +Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;55;; +Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;206;; +Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;164;; +Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;82;; +Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;265;; +Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;95;; +Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;1274;; +Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;2940;; +Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;1864;; +Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;4;; +Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;1482;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;4629;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;473;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;297;; +Slovenia;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;1314;; +Slovenia;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;829;; +Slovenia;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;319;; +Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;840;; +Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;394;; +Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;3;; +Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;181;; +Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;523;; +Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;247;; +Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;324;; +Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;547;; +Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;189;; +Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;5;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;13;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;7;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;1026;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;6150;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;4832;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;57;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;45;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;139;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;99;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;13;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;18;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;56;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;15;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;4;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;40;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;18;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;31;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;116;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;53;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;4;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;20;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;9;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;3;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;28;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;17;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;1;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;1;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;1;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;3;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;6;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;22;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;16;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;64;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;166;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;56;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;21;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;109;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;81;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;1;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;13;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;5;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;16;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;13;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;9;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;27;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;11;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;2;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;13;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;6;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;13;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;20;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;5;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;55;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;230;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;134;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;93;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;465;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;91;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;10133;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;33380;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;14934;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;9;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;311;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;1385;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;644;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;181;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;988;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;595;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;7486;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;22759;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;9094;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;18;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2973;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;7207;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;2377;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;247;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;992;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;510;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;192;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;539;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;258;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;187;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;673;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;213;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;43;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;103;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;45;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;71;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;220;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;168;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;646;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;1679;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;827;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;3;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;485;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;1130;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;356;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;48;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;321;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;241;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;24;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;179;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;158;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;29;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;294;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;243;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;70;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;322;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;219;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;151;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;583;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;266;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;3;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;9;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;109;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;422;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;244;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;260;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;749;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;128;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;4076;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;13589;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;6193;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;5;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;17;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;148;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;122;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;175;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;878;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;455;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;1234;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;3883;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;1907;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;570;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2089;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;770;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;4;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;3821;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;14594;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;6277;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;30;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;55;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;174;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;89;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;12;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;67;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;34;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;14;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;41;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;29;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;18;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;63;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;59;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;179;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;373;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;167;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;365;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;521;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;270;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;7;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;90;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;69;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;12;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;87;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;87;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;129;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;259;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;208;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;3;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;22;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;65;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;44;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;29;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;161;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;79;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;7;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;113;; +Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;485;; +Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;432;; +Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;4;; +Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;51;; +Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;204;; +Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;53;; +Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;4033;; +Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;8962;; +Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;4327;; +Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;33;; +Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;114;; +Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;78;; +Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;427;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1736;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;903;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;3705;; +Slovenia;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;8434;; +Slovenia;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;2969;; +Slovenia;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;6;; +Slovenia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;932;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;2047;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;769;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;400;; +Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;999;; +Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;487;; +Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;2;; +Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;611;; +Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;683;; +Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;207;; +Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;29;; +Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;93;; +Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;39;; +Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;17;; +Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;66;; +Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;36;; +Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;20;; +Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;107;; +Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;88;; +Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;375;; +Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;625;; +Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;273;; +Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;1408;; +Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;1930;; +Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;693;; +Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;66;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;347;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;378;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;53;; +Slovenia;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;147;; +Slovenia;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;121;; +Slovenia;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;1;; +Slovenia;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;122;; +Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;360;; +Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;144;; +Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;45;; +Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;189;; +Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;149;; +Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;63;; +Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;173;; +Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;77;; +Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;29;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;69;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;58;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;353;; +Slovenia;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;2313;; +Slovenia;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;866;; +Slovenia;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;8;; +Slovenia;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Slovenia;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Slovakia;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +Slovakia;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;2441355;; +United Kingdom;F;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;1794240;; +United Kingdom;F;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;2203560;; +United Kingdom;F;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;4427120;; +United Kingdom;F;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;924955;; +United Kingdom;F;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;5418565;; +United Kingdom;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;700;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;505;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;60;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;5;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;545;; +United Kingdom;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;2740;; +United Kingdom;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;2645;; +United Kingdom;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;1340;; +United Kingdom;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;65;; +United Kingdom;F;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;85;; +United Kingdom;F;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;710;; +United Kingdom;F;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;200;; +United Kingdom;F;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;15;; +United Kingdom;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;5730;; +United Kingdom;F;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;37290;; +United Kingdom;F;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;15900;; +United Kingdom;F;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;2545;; +United Kingdom;F;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;105;; +United Kingdom;F;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;675;; +United Kingdom;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2710;; +United Kingdom;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;535;; +United Kingdom;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;40;; +United Kingdom;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;495;; +United Kingdom;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2610;; +United Kingdom;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;925;; +United Kingdom;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;115;; +United Kingdom;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Construction   ;Y15-29;2011;2525;; +United Kingdom;F;POP;TOTAL;Managers;Construction   ;Y30-49;2011;17170;; +United Kingdom;F;POP;TOTAL;Managers;Construction   ;Y50-64;2011;9370;; +United Kingdom;F;POP;TOTAL;Managers;Construction   ;Y65-84;2011;1655;; +United Kingdom;F;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;65;; +United Kingdom;F;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;57665;; +United Kingdom;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;156185;; +United Kingdom;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;74525;; +United Kingdom;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;11295;; +United Kingdom;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;450;; +United Kingdom;F;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;2585;; +United Kingdom;F;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;14620;; +United Kingdom;F;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;6335;; +United Kingdom;F;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;820;; +United Kingdom;F;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;30;; +United Kingdom;F;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;34950;; +United Kingdom;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;70360;; +United Kingdom;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;38635;; +United Kingdom;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;5945;; +United Kingdom;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;240;; +United Kingdom;F;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;3915;; +United Kingdom;F;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;24185;; +United Kingdom;F;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;6745;; +United Kingdom;F;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;645;; +United Kingdom;F;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;40;; +United Kingdom;F;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;13805;; +United Kingdom;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;54430;; +United Kingdom;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;12230;; +United Kingdom;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;660;; +United Kingdom;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;50;; +United Kingdom;F;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;5085;; +United Kingdom;F;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;23700;; +United Kingdom;F;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;15240;; +United Kingdom;F;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;2445;; +United Kingdom;F;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;140;; +United Kingdom;F;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;7955;; +United Kingdom;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;48400;; +United Kingdom;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;16855;; +United Kingdom;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;1710;; +United Kingdom;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;45;; +United Kingdom;F;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;8950;; +United Kingdom;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;37235;; +United Kingdom;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;15960;; +United Kingdom;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;1935;; +United Kingdom;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;40;; +United Kingdom;F;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;4595;; +United Kingdom;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;28265;; +United Kingdom;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;14760;; +United Kingdom;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1430;; +United Kingdom;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;70;; +United Kingdom;F;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Education   ;Y15-29;2011;3305;; +United Kingdom;F;POP;TOTAL;Managers;Education   ;Y30-49;2011;22935;; +United Kingdom;F;POP;TOTAL;Managers;Education   ;Y50-64;2011;14545;; +United Kingdom;F;POP;TOTAL;Managers;Education   ;Y65-84;2011;1280;; +United Kingdom;F;POP;TOTAL;Managers;Education   ;Y_GE85;2011;35;; +United Kingdom;F;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;11620;; +United Kingdom;F;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;85020;; +United Kingdom;F;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;60560;; +United Kingdom;F;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;5355;; +United Kingdom;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;570;; +United Kingdom;F;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;8715;; +United Kingdom;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;21110;; +United Kingdom;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;9595;; +United Kingdom;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;980;; +United Kingdom;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;30;; +United Kingdom;F;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;4915;; +United Kingdom;F;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;18020;; +United Kingdom;F;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;9085;; +United Kingdom;F;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;1405;; +United Kingdom;F;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;45;; +United Kingdom;F;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;55;; +United Kingdom;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;180;; +United Kingdom;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;135;; +United Kingdom;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;25;; +United Kingdom;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;155;; +United Kingdom;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;570;; +United Kingdom;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;265;; +United Kingdom;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;35;; +United Kingdom;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;375;; +United Kingdom;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;965;; +United Kingdom;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;455;; +United Kingdom;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;165;; +United Kingdom;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;720;; +United Kingdom;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;1750;; +United Kingdom;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;255;; +United Kingdom;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;20;; +United Kingdom;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;10270;; +United Kingdom;F;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;30425;; +United Kingdom;F;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;7650;; +United Kingdom;F;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;650;; +United Kingdom;F;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;65;; +United Kingdom;F;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1325;; +United Kingdom;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;3575;; +United Kingdom;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;650;; +United Kingdom;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;25;; +United Kingdom;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;900;; +United Kingdom;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2550;; +United Kingdom;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;530;; +United Kingdom;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;25;; +United Kingdom;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;4975;; +United Kingdom;F;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;12405;; +United Kingdom;F;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;3460;; +United Kingdom;F;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;360;; +United Kingdom;F;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;40;; +United Kingdom;F;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;17895;; +United Kingdom;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;37345;; +United Kingdom;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;11870;; +United Kingdom;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1225;; +United Kingdom;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;60;; +United Kingdom;F;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;1800;; +United Kingdom;F;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;6870;; +United Kingdom;F;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;1665;; +United Kingdom;F;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;130;; +United Kingdom;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;2135;; +United Kingdom;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;5015;; +United Kingdom;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;2425;; +United Kingdom;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;370;; +United Kingdom;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;24765;; +United Kingdom;F;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;68680;; +United Kingdom;F;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;14880;; +United Kingdom;F;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;1180;; +United Kingdom;F;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;70;; +United Kingdom;F;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;12225;; +United Kingdom;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;40125;; +United Kingdom;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;6465;; +United Kingdom;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;320;; +United Kingdom;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;2855;; +United Kingdom;F;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;8070;; +United Kingdom;F;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;2590;; +United Kingdom;F;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;225;; +United Kingdom;F;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;75670;; +United Kingdom;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;143095;; +United Kingdom;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;34960;; +United Kingdom;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;3235;; +United Kingdom;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;140;; +United Kingdom;F;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;5770;; +United Kingdom;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;14295;; +United Kingdom;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;5165;; +United Kingdom;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;615;; +United Kingdom;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;15475;; +United Kingdom;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;65020;; +United Kingdom;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;27295;; +United Kingdom;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;1785;; +United Kingdom;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;85;; +United Kingdom;F;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Education   ;Y15-29;2011;167550;; +United Kingdom;F;POP;TOTAL;Professionals;Education   ;Y30-49;2011;485675;; +United Kingdom;F;POP;TOTAL;Professionals;Education   ;Y50-64;2011;271785;; +United Kingdom;F;POP;TOTAL;Professionals;Education   ;Y65-84;2011;23295;; +United Kingdom;F;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;710;; +United Kingdom;F;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;150735;; +United Kingdom;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;522670;; +United Kingdom;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;240075;; +United Kingdom;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;18800;; +United Kingdom;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;690;; +United Kingdom;F;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;5755;; +United Kingdom;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;14960;; +United Kingdom;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;7250;; +United Kingdom;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;1010;; +United Kingdom;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;40;; +United Kingdom;F;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;4560;; +United Kingdom;F;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;12660;; +United Kingdom;F;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;7550;; +United Kingdom;F;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;1210;; +United Kingdom;F;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;75;; +United Kingdom;F;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;85;; +United Kingdom;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;160;; +United Kingdom;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;80;; +United Kingdom;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;20;; +United Kingdom;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;370;; +United Kingdom;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;765;; +United Kingdom;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;280;; +United Kingdom;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;50;; +United Kingdom;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;540;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1015;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;450;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;100;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;725;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;1805;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;365;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;15;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;20785;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;55150;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;16355;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;1380;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;75;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2310;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;4215;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;950;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;65;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1485;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;3410;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;900;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;50;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;6410;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;15340;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;6405;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;660;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;40665;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;75540;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;22845;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2230;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;85;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;5190;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;13235;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;3845;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;285;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;11595;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;11825;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;3675;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;460;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;28035;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;55055;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;11750;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;1160;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;65;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;43110;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;84020;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;17325;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;1010;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;40;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;15375;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;34775;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;15595;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;1340;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;35;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;60865;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;102305;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;30430;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;3275;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;85;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;31195;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;41255;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;10005;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;855;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;45;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;42050;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;121605;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;36700;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;1830;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;155;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;36160;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;85955;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;42755;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;4240;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;135;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;103045;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;235190;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;129070;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;10570;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;270;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;30070;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;43045;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;14990;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;2855;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;145;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;9795;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;19215;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;7990;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;1055;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;75;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;180;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;90;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;25;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;820;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;960;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;280;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;45;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;985;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;4790;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;4160;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;1490;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;55;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;1120;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;2340;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;1140;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;105;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;28490;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;80245;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;49120;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;7010;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;275;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;3310;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;5625;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2870;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;275;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;3780;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;7580;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4000;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;365;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;23635;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;68245;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;40480;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;5660;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;150;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;68355;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;134505;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;81650;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;11390;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;365;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;17910;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;43570;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;26245;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;3320;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;130;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;23660;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;23705;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;10940;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;1745;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;65;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;17155;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;36020;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;15915;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;1735;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;80;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;86030;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;136250;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;59810;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;4310;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;215;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;14840;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;30100;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;18435;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;2400;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;80;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;61780;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;135775;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;88375;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;12755;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;290;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;46040;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;69865;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;31465;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;3820;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;135;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;60160;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;215615;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;129950;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;8045;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;505;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;28995;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;104945;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;70905;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;5725;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;150;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;58160;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;177865;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;153490;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;15555;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;340;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;23355;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;32585;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;24250;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;2975;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;65;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;11505;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;23850;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;17305;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;2945;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;80;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;265;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;685;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;400;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;70;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;510;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1500;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;730;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;105;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;2345;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;2320;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;1650;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;455;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;100;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;240;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;85;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;10;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;13350;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;21290;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;10545;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;1525;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;50;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;6835;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7250;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;2195;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;95;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1780;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2385;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;920;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;70;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;5910;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;9145;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;5440;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;720;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;598930;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;457150;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;281995;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;36725;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;1115;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;20955;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;36535;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;15915;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;2245;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;90;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;42440;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;33225;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;14930;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;1795;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;80;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;16475;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;17495;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;5925;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;555;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;35;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;26040;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;26220;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;9170;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;785;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;5305;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;11390;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;7950;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;860;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;45;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;25255;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;25465;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;11985;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;2075;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;55;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;36690;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;35985;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;15955;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;2070;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;70;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;12580;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;33510;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;19775;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1710;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;65;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;97515;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;310695;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;140770;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;7980;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;220;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;273675;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;424460;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;240225;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;25030;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;1280;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;34430;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;18910;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;8780;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;1435;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;45;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;125950;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;116740;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;34930;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;4750;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;145;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;6195;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;8090;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;3890;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;515;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;185;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;225;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;100;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;15;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;1410;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;7900;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;10845;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;6165;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;305;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;90;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;385;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;440;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;235;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;10;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;25;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;95;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;295;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;275;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;90;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;310;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;1065;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;1175;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;515;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;30;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;15;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;50;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;75;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;30;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;85;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;365;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;400;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;210;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;25;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;90;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;90;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;20;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;30;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;105;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;80;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;35;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;35;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;185;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;150;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;50;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;125;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;985;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;735;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;110;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;1180;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;6105;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;3665;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;340;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;45;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;60;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;250;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;190;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;50;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;730;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;1395;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;765;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;185;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;2045;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;1575;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;975;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;240;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;40;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;255;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;485;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;270;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;60;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;75;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;305;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;290;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;105;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;30;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;160;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;105;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;25;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;230;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;440;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;495;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;235;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;90;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;125;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;40;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;10;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;8915;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;25295;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;16670;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;2630;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;275;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;290;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;380;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;135;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;15;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;120;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;215;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;85;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;10;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;8140;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;11320;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;4725;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;920;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;185;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;11620;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;23220;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;12365;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2045;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;140;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;530;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;1055;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;530;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;110;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;28210;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;60530;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;31505;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;3335;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;150;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;1455;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;3130;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;1050;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;145;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;305;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;735;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;360;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;60;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;350;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;815;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;510;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;95;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;1220;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;2665;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;1275;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;240;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;1090;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;2040;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;1115;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;210;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;30;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;995;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2550;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1625;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;215;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;1420;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;11030;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;7445;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;810;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;40;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;2940;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;13635;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;12360;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;1900;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;95;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;1860;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;3380;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;2025;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;300;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;1050;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;2655;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;2155;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;405;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;45;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;155;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;115;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;35;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;45;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;55;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;20;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;5;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;680;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;950;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;625;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;120;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;125;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;290;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;135;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;25;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;31095;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;70280;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;48645;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;4935;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;415;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;190;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;345;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;165;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;20;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;635;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1300;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;520;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;55;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;1595;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;2725;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;1510;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;270;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;30;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;6970;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;15405;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;9460;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;1365;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;115;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;4500;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;18900;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;9520;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;1160;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;100;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;2525;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;3620;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;1810;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;275;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;35;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;650;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;1085;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;470;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;75;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;450;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;890;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;355;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;50;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;250;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;575;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;280;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;45;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;1500;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;2665;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;1520;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;230;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;2330;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;4120;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;2165;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;245;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;760;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;1730;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1125;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;170;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;1145;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;6795;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;3150;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;420;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;925;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;3215;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;2600;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;555;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;65;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;460;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;690;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;410;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;90;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;10;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;810;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;1795;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;1310;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;250;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;10;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;40;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;25;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;5;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;15;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;25;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;10;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;4860;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;7045;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;6165;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;2650;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;135;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;65;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;165;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;110;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;35;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;20160;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;34555;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;24330;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;3380;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;295;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;375;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;660;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;400;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;45;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1390;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2050;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1070;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;145;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;15;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;4700;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;8520;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;5920;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;1210;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;60;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;62075;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;74760;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;47465;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;6745;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;330;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;15355;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;31445;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;15520;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;1520;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;130;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;296570;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;161850;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;73775;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;10840;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;515;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;6925;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;3915;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;2345;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;520;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;20;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;2935;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;4610;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;2810;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;595;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;25;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;2065;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;4300;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;4265;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;950;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;30;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;4515;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;6390;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;5150;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;1300;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;40;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;62685;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;121975;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;69480;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;9410;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;335;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;4640;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;16240;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;13510;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;2625;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;105;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;17730;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;99030;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;68365;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;11715;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;250;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;23690;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;54840;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;51900;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;8640;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;330;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;23640;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;13870;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;10120;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;2290;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;60;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;9620;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;16135;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;12020;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;2710;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;90;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;930;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;2700;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;1960;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;430;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;30;; +United Kingdom;F;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;115;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;170;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;75;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;20;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +United Kingdom;F;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Manufacturing   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Manufacturing   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Manufacturing   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Manufacturing   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Construction   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Construction   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Construction   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Construction   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Construction   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Information and communication   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Information and communication   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Information and communication   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Information and communication   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Information and communication   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Real estate activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Real estate activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Real estate activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Real estate activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Not applicable  ;Y15-29;2011;2219380;; +United Kingdom;M;POP;TOTAL;Not applicable;Not applicable  ;Y30-49;2011;819705;; +United Kingdom;M;POP;TOTAL;Not applicable;Not applicable  ;Y50-64;2011;1359335;; +United Kingdom;M;POP;TOTAL;Not applicable;Not applicable  ;Y65-84;2011;3539855;; +United Kingdom;M;POP;TOTAL;Not applicable;Not applicable  ;Y_GE85;2011;435620;; +United Kingdom;M;POP;TOTAL;Not applicable;Not applicable  ;Y_LT15;2011;5681330;; +United Kingdom;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Education   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Education   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Education   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Education   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Education   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Other service activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Other service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Other service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Other service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Other service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not applicable;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y30-49;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y30-49;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Construction   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Construction   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Construction   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Construction   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y15-29;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;6500;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;5170;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;560;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;70;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Education   ;Y15-29;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Education   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Education   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Education   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Education   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y30-49;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;10;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;5;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Armed forces occupations;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y15-29;2011;1910;; +United Kingdom;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y30-49;2011;8320;; +United Kingdom;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y50-64;2011;6100;; +United Kingdom;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y65-84;2011;2030;; +United Kingdom;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_GE85;2011;75;; +United Kingdom;M;POP;TOTAL;Managers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Mining and quarrying   ;Y15-29;2011;260;; +United Kingdom;M;POP;TOTAL;Managers;Mining and quarrying   ;Y30-49;2011;4050;; +United Kingdom;M;POP;TOTAL;Managers;Mining and quarrying   ;Y50-64;2011;3310;; +United Kingdom;M;POP;TOTAL;Managers;Mining and quarrying   ;Y65-84;2011;320;; +United Kingdom;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Managers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Manufacturing   ;Y15-29;2011;11920;; +United Kingdom;M;POP;TOTAL;Managers;Manufacturing   ;Y30-49;2011;138090;; +United Kingdom;M;POP;TOTAL;Managers;Manufacturing   ;Y50-64;2011;93050;; +United Kingdom;M;POP;TOTAL;Managers;Manufacturing   ;Y65-84;2011;14165;; +United Kingdom;M;POP;TOTAL;Managers;Manufacturing   ;Y_GE85;2011;325;; +United Kingdom;M;POP;TOTAL;Managers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;940;; +United Kingdom;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;7120;; +United Kingdom;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3840;; +United Kingdom;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;260;; +United Kingdom;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Managers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1580;; +United Kingdom;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;11185;; +United Kingdom;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;6365;; +United Kingdom;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;745;; +United Kingdom;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Construction   ;Y15-29;2011;13505;; +United Kingdom;M;POP;TOTAL;Managers;Construction   ;Y30-49;2011;105470;; +United Kingdom;M;POP;TOTAL;Managers;Construction   ;Y50-64;2011;66595;; +United Kingdom;M;POP;TOTAL;Managers;Construction   ;Y65-84;2011;9650;; +United Kingdom;M;POP;TOTAL;Managers;Construction   ;Y_GE85;2011;190;; +United Kingdom;M;POP;TOTAL;Managers;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;75555;; +United Kingdom;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;282080;; +United Kingdom;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;148745;; +United Kingdom;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;27680;; +United Kingdom;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;565;; +United Kingdom;M;POP;TOTAL;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Transportation and storage   ;Y15-29;2011;6745;; +United Kingdom;M;POP;TOTAL;Managers;Transportation and storage   ;Y30-49;2011;51530;; +United Kingdom;M;POP;TOTAL;Managers;Transportation and storage   ;Y50-64;2011;31880;; +United Kingdom;M;POP;TOTAL;Managers;Transportation and storage   ;Y65-84;2011;3990;; +United Kingdom;M;POP;TOTAL;Managers;Transportation and storage   ;Y_GE85;2011;75;; +United Kingdom;M;POP;TOTAL;Managers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y15-29;2011;34435;; +United Kingdom;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y30-49;2011;77850;; +United Kingdom;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y50-64;2011;40425;; +United Kingdom;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y65-84;2011;7515;; +United Kingdom;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_GE85;2011;140;; +United Kingdom;M;POP;TOTAL;Managers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Information and communication   ;Y15-29;2011;7415;; +United Kingdom;M;POP;TOTAL;Managers;Information and communication   ;Y30-49;2011;64335;; +United Kingdom;M;POP;TOTAL;Managers;Information and communication   ;Y50-64;2011;24930;; +United Kingdom;M;POP;TOTAL;Managers;Information and communication   ;Y65-84;2011;2940;; +United Kingdom;M;POP;TOTAL;Managers;Information and communication   ;Y_GE85;2011;45;; +United Kingdom;M;POP;TOTAL;Managers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y15-29;2011;18055;; +United Kingdom;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y30-49;2011;94150;; +United Kingdom;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y50-64;2011;30170;; +United Kingdom;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y65-84;2011;3520;; +United Kingdom;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_GE85;2011;100;; +United Kingdom;M;POP;TOTAL;Managers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Real estate activities   ;Y15-29;2011;5185;; +United Kingdom;M;POP;TOTAL;Managers;Real estate activities   ;Y30-49;2011;28715;; +United Kingdom;M;POP;TOTAL;Managers;Real estate activities   ;Y50-64;2011;21495;; +United Kingdom;M;POP;TOTAL;Managers;Real estate activities   ;Y65-84;2011;4865;; +United Kingdom;M;POP;TOTAL;Managers;Real estate activities   ;Y_GE85;2011;135;; +United Kingdom;M;POP;TOTAL;Managers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y15-29;2011;9175;; +United Kingdom;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y30-49;2011;81655;; +United Kingdom;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y50-64;2011;48280;; +United Kingdom;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y65-84;2011;6795;; +United Kingdom;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_GE85;2011;90;; +United Kingdom;M;POP;TOTAL;Managers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y15-29;2011;10965;; +United Kingdom;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y30-49;2011;58220;; +United Kingdom;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y50-64;2011;28065;; +United Kingdom;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y65-84;2011;4205;; +United Kingdom;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_GE85;2011;80;; +United Kingdom;M;POP;TOTAL;Managers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y15-29;2011;14215;; +United Kingdom;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2011;49180;; +United Kingdom;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2011;27770;; +United Kingdom;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2011;3565;; +United Kingdom;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;85;; +United Kingdom;M;POP;TOTAL;Managers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Education   ;Y15-29;2011;3100;; +United Kingdom;M;POP;TOTAL;Managers;Education   ;Y30-49;2011;17130;; +United Kingdom;M;POP;TOTAL;Managers;Education   ;Y50-64;2011;13890;; +United Kingdom;M;POP;TOTAL;Managers;Education   ;Y65-84;2011;1710;; +United Kingdom;M;POP;TOTAL;Managers;Education   ;Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Managers;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Human health and social work activities   ;Y15-29;2011;4545;; +United Kingdom;M;POP;TOTAL;Managers;Human health and social work activities   ;Y30-49;2011;33770;; +United Kingdom;M;POP;TOTAL;Managers;Human health and social work activities   ;Y50-64;2011;26635;; +United Kingdom;M;POP;TOTAL;Managers;Human health and social work activities   ;Y65-84;2011;3505;; +United Kingdom;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_GE85;2011;165;; +United Kingdom;M;POP;TOTAL;Managers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y15-29;2011;11980;; +United Kingdom;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y30-49;2011;28440;; +United Kingdom;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y50-64;2011;13345;; +United Kingdom;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y65-84;2011;2185;; +United Kingdom;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_GE85;2011;40;; +United Kingdom;M;POP;TOTAL;Managers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Other service activities   ;Y15-29;2011;2715;; +United Kingdom;M;POP;TOTAL;Managers;Other service activities   ;Y30-49;2011;14500;; +United Kingdom;M;POP;TOTAL;Managers;Other service activities   ;Y50-64;2011;10490;; +United Kingdom;M;POP;TOTAL;Managers;Other service activities   ;Y65-84;2011;2050;; +United Kingdom;M;POP;TOTAL;Managers;Other service activities   ;Y_GE85;2011;45;; +United Kingdom;M;POP;TOTAL;Managers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;50;; +United Kingdom;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;285;; +United Kingdom;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;235;; +United Kingdom;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;35;; +United Kingdom;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;325;; +United Kingdom;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1580;; +United Kingdom;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;820;; +United Kingdom;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;120;; +United Kingdom;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Managers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Managers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y15-29;2011;495;; +United Kingdom;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1320;; +United Kingdom;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y50-64;2011;1030;; +United Kingdom;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y65-84;2011;320;; +United Kingdom;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y15-29;2011;2010;; +United Kingdom;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y30-49;2011;6435;; +United Kingdom;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y50-64;2011;3735;; +United Kingdom;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y65-84;2011;365;; +United Kingdom;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Professionals;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Manufacturing   ;Y15-29;2011;31055;; +United Kingdom;M;POP;TOTAL;Professionals;Manufacturing   ;Y30-49;2011;115170;; +United Kingdom;M;POP;TOTAL;Professionals;Manufacturing   ;Y50-64;2011;62195;; +United Kingdom;M;POP;TOTAL;Professionals;Manufacturing   ;Y65-84;2011;6610;; +United Kingdom;M;POP;TOTAL;Professionals;Manufacturing   ;Y_GE85;2011;170;; +United Kingdom;M;POP;TOTAL;Professionals;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4080;; +United Kingdom;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;14325;; +United Kingdom;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;7390;; +United Kingdom;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;710;; +United Kingdom;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2000;; +United Kingdom;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;6995;; +United Kingdom;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;3935;; +United Kingdom;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;400;; +United Kingdom;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Construction   ;Y15-29;2011;28480;; +United Kingdom;M;POP;TOTAL;Professionals;Construction   ;Y30-49;2011;84565;; +United Kingdom;M;POP;TOTAL;Professionals;Construction   ;Y50-64;2011;45350;; +United Kingdom;M;POP;TOTAL;Professionals;Construction   ;Y65-84;2011;6000;; +United Kingdom;M;POP;TOTAL;Professionals;Construction   ;Y_GE85;2011;95;; +United Kingdom;M;POP;TOTAL;Professionals;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;18725;; +United Kingdom;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;52150;; +United Kingdom;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;22640;; +United Kingdom;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3500;; +United Kingdom;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;70;; +United Kingdom;M;POP;TOTAL;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Transportation and storage   ;Y15-29;2011;4790;; +United Kingdom;M;POP;TOTAL;Professionals;Transportation and storage   ;Y30-49;2011;19615;; +United Kingdom;M;POP;TOTAL;Professionals;Transportation and storage   ;Y50-64;2011;9705;; +United Kingdom;M;POP;TOTAL;Professionals;Transportation and storage   ;Y65-84;2011;905;; +United Kingdom;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Professionals;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y15-29;2011;1985;; +United Kingdom;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y30-49;2011;4660;; +United Kingdom;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y50-64;2011;2065;; +United Kingdom;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y65-84;2011;395;; +United Kingdom;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Information and communication   ;Y15-29;2011;65665;; +United Kingdom;M;POP;TOTAL;Professionals;Information and communication   ;Y30-49;2011;229865;; +United Kingdom;M;POP;TOTAL;Professionals;Information and communication   ;Y50-64;2011;67860;; +United Kingdom;M;POP;TOTAL;Professionals;Information and communication   ;Y65-84;2011;4565;; +United Kingdom;M;POP;TOTAL;Professionals;Information and communication   ;Y_GE85;2011;120;; +United Kingdom;M;POP;TOTAL;Professionals;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y15-29;2011;21065;; +United Kingdom;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y30-49;2011;85660;; +United Kingdom;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y50-64;2011;18825;; +United Kingdom;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y65-84;2011;1020;; +United Kingdom;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_GE85;2011;40;; +United Kingdom;M;POP;TOTAL;Professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Real estate activities   ;Y15-29;2011;4640;; +United Kingdom;M;POP;TOTAL;Professionals;Real estate activities   ;Y30-49;2011;16120;; +United Kingdom;M;POP;TOTAL;Professionals;Real estate activities   ;Y50-64;2011;9875;; +United Kingdom;M;POP;TOTAL;Professionals;Real estate activities   ;Y65-84;2011;1555;; +United Kingdom;M;POP;TOTAL;Professionals;Real estate activities   ;Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Professionals;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y15-29;2011;91590;; +United Kingdom;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y30-49;2011;242645;; +United Kingdom;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y50-64;2011;135350;; +United Kingdom;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y65-84;2011;27805;; +United Kingdom;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_GE85;2011;465;; +United Kingdom;M;POP;TOTAL;Professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y15-29;2011;7650;; +United Kingdom;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y30-49;2011;20705;; +United Kingdom;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y50-64;2011;8170;; +United Kingdom;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y65-84;2011;1005;; +United Kingdom;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;14250;; +United Kingdom;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;60635;; +United Kingdom;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;38380;; +United Kingdom;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;3755;; +United Kingdom;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;85;; +United Kingdom;M;POP;TOTAL;Professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Education   ;Y15-29;2011;74085;; +United Kingdom;M;POP;TOTAL;Professionals;Education   ;Y30-49;2011;228760;; +United Kingdom;M;POP;TOTAL;Professionals;Education   ;Y50-64;2011;145675;; +United Kingdom;M;POP;TOTAL;Professionals;Education   ;Y65-84;2011;20410;; +United Kingdom;M;POP;TOTAL;Professionals;Education   ;Y_GE85;2011;425;; +United Kingdom;M;POP;TOTAL;Professionals;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y15-29;2011;39350;; +United Kingdom;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y30-49;2011;165955;; +United Kingdom;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y50-64;2011;80240;; +United Kingdom;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y65-84;2011;10205;; +United Kingdom;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_GE85;2011;280;; +United Kingdom;M;POP;TOTAL;Professionals;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y15-29;2011;6240;; +United Kingdom;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y30-49;2011;15185;; +United Kingdom;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y50-64;2011;6990;; +United Kingdom;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y65-84;2011;1345;; +United Kingdom;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_GE85;2011;35;; +United Kingdom;M;POP;TOTAL;Professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Other service activities   ;Y15-29;2011;6070;; +United Kingdom;M;POP;TOTAL;Professionals;Other service activities   ;Y30-49;2011;22960;; +United Kingdom;M;POP;TOTAL;Professionals;Other service activities   ;Y50-64;2011;17635;; +United Kingdom;M;POP;TOTAL;Professionals;Other service activities   ;Y65-84;2011;4655;; +United Kingdom;M;POP;TOTAL;Professionals;Other service activities   ;Y_GE85;2011;125;; +United Kingdom;M;POP;TOTAL;Professionals;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;25;; +United Kingdom;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;60;; +United Kingdom;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;55;; +United Kingdom;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;15;; +United Kingdom;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;355;; +United Kingdom;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1055;; +United Kingdom;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;595;; +United Kingdom;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;100;; +United Kingdom;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Professionals;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2011;695;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2011;1445;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2011;955;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2011;215;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y15-29;2011;1635;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2011;5060;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2011;3125;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2011;230;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y15-29;2011;36255;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y30-49;2011;115015;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y50-64;2011;65300;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y65-84;2011;7010;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_GE85;2011;160;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;4065;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;9815;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;5220;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;350;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2675;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;7540;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4280;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;325;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y15-29;2011;15155;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y30-49;2011;35570;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y50-64;2011;21275;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y65-84;2011;2925;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_GE85;2011;50;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;47955;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;105010;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;48320;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;7000;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;115;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y15-29;2011;11330;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y30-49;2011;34810;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y50-64;2011;20405;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y65-84;2011;2085;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2011;55;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2011;9115;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2011;8735;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2011;2980;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2011;495;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y15-29;2011;48695;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y30-49;2011;101820;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y50-64;2011;28490;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y65-84;2011;3230;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_GE85;2011;95;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2011;56675;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2011;131630;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2011;44655;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2011;5605;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2011;100;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y15-29;2011;13335;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y30-49;2011;24965;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y50-64;2011;11395;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y65-84;2011;1770;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_GE85;2011;40;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2011;60355;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2011;113975;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2011;53645;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2011;8750;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2011;145;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;30125;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2011;46005;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2011;15670;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2011;1820;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2011;109825;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2011;231335;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2011;74985;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;2011;5170;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2011;195;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y15-29;2011;36930;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y30-49;2011;51850;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y50-64;2011;35560;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y65-84;2011;4940;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_GE85;2011;85;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2011;32905;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2011;75320;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2011;39955;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2011;3990;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2011;90;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2011;52070;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2011;54220;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;2011;23070;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2011;5185;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;2011;140;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y15-29;2011;10165;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y30-49;2011;14745;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y50-64;2011;6695;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y65-84;2011;1200;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_GE85;2011;35;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;25;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;65;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;50;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;15;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;2040;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;2405;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;675;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;105;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Technicians and associate professionals;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2011;330;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2011;450;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2011;415;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2011;125;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y15-29;2011;435;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y30-49;2011;1075;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y50-64;2011;680;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y65-84;2011;80;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y15-29;2011;11210;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y30-49;2011;23220;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y50-64;2011;14765;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y65-84;2011;1735;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_GE85;2011;100;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1925;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2435;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1325;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;125;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1470;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;2145;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;1265;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;145;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Construction   ;Y15-29;2011;7260;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Construction   ;Y30-49;2011;9925;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Construction   ;Y50-64;2011;6650;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Construction   ;Y65-84;2011;1185;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Construction   ;Y_GE85;2011;35;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;33440;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;37035;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;19140;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;3085;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;115;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y15-29;2011;12235;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y30-49;2011;26125;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y50-64;2011;16655;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y65-84;2011;2120;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_GE85;2011;70;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y15-29;2011;8600;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y30-49;2011;6520;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y50-64;2011;2560;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y65-84;2011;705;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y15-29;2011;8365;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y30-49;2011;10675;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y50-64;2011;4455;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y65-84;2011;570;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y15-29;2011;50635;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y30-49;2011;45260;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y50-64;2011;15145;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y65-84;2011;1575;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_GE85;2011;75;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y15-29;2011;4535;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y30-49;2011;5215;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y50-64;2011;3115;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y65-84;2011;540;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2011;21975;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2011;23170;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2011;15050;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;2011;3680;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;2011;90;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y15-29;2011;16115;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y30-49;2011;18755;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y50-64;2011;8370;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y65-84;2011;1320;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_GE85;2011;40;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;34705;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;97280;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;66610;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;5185;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;160;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Education   ;Y15-29;2011;10360;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Education   ;Y30-49;2011;10725;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Education   ;Y50-64;2011;7130;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Education   ;Y65-84;2011;1645;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Education   ;Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y15-29;2011;15475;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y30-49;2011;17120;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y50-64;2011;10475;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y65-84;2011;1600;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_GE85;2011;45;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2011;11325;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2011;7940;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2011;4820;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2011;1015;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y15-29;2011;3660;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y30-49;2011;4975;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y50-64;2011;4505;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y65-84;2011;1130;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;60;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;95;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;55;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;10;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;375;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;1015;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;545;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;75;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Clerical support workers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2011;1080;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2011;1110;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2011;815;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2011;195;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y15-29;2011;110;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y30-49;2011;305;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y50-64;2011;225;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y65-84;2011;35;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y15-29;2011;8830;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y30-49;2011;12125;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y50-64;2011;6885;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y65-84;2011;1140;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;6325;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6755;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;3000;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;250;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;1600;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;1925;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;995;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;75;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Construction   ;Y15-29;2011;6340;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Construction   ;Y30-49;2011;7525;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Construction   ;Y50-64;2011;4465;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Construction   ;Y65-84;2011;845;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Construction   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;430585;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;194740;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;85700;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;15345;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;345;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y15-29;2011;13505;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y30-49;2011;26820;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y50-64;2011;12880;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y65-84;2011;1530;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_GE85;2011;40;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y15-29;2011;25665;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y30-49;2011;11185;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y50-64;2011;3520;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y65-84;2011;580;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y15-29;2011;16465;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y30-49;2011;14150;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y50-64;2011;4095;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y65-84;2011;425;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y15-29;2011;19710;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y30-49;2011;12770;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y50-64;2011;3820;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y65-84;2011;645;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y15-29;2011;2305;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y30-49;2011;3385;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y50-64;2011;2040;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y65-84;2011;390;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;2011;10415;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2011;8100;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;2011;3925;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2011;950;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y15-29;2011;28670;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y30-49;2011;22010;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y50-64;2011;9575;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y65-84;2011;1435;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_GE85;2011;45;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;7870;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;12160;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;7875;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;830;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Education   ;Y15-29;2011;25845;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Education   ;Y30-49;2011;21360;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Education   ;Y50-64;2011;11775;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Education   ;Y65-84;2011;1450;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Education   ;Y_GE85;2011;50;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y15-29;2011;45520;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y30-49;2011;68665;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y50-64;2011;36580;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y65-84;2011;4080;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_GE85;2011;230;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2011;35490;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2011;13155;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2011;5755;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2011;1370;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y15-29;2011;19010;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y30-49;2011;24320;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y50-64;2011;12965;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y65-84;2011;3615;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_GE85;2011;60;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;595;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;575;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;315;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;40;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;140;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;130;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;70;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;10;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Service and sales workers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2011;13360;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2011;40820;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2011;41245;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2011;24825;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2011;975;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2011;20;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2011;115;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2011;115;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;2011;70;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2011;970;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2011;3525;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2011;3860;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2011;1985;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;2011;70;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;95;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;185;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;200;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;90;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;100;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;290;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;245;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;60;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2011;2840;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2011;6940;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2011;6190;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2011;2655;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;2011;70;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;2070;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;4735;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;4610;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;2450;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;75;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2011;245;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2011;830;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2011;890;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2011;425;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2011;1190;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2011;2055;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2011;1740;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2011;605;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2011;130;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2011;565;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2011;580;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;2011;245;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2011;130;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;2011;335;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;2011;325;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;2011;110;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2011;690;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2011;1485;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2011;1255;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2011;335;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2011;525;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2011;1505;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2011;1205;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2011;375;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2011;25605;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2011;48860;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2011;28535;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2011;4005;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;2011;70;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;740;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;2370;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;1760;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;410;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2011;1210;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2011;2420;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2011;2265;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2011;520;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2011;760;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;2011;1625;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2011;1980;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;2011;620;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2011;5820;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2011;7985;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2011;4555;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2011;855;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2011;560;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2011;1265;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2011;1360;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2011;630;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;180;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;575;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;580;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;140;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;10;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;30;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;40;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;5;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2011;2485;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2011;4815;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2011;4300;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2011;1345;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;2011;50;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y15-29;2011;2110;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y30-49;2011;5590;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y50-64;2011;4345;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y65-84;2011;335;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y15-29;2011;106615;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y30-49;2011;265515;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y50-64;2011;188585;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y65-84;2011;19955;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_GE85;2011;580;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;7235;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;14635;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;10990;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;775;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;2470;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;6115;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;4430;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;345;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y15-29;2011;325970;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y30-49;2011;604775;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y50-64;2011;326675;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y65-84;2011;33825;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_GE85;2011;630;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;109765;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;170055;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;93340;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;12595;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;300;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y15-29;2011;9440;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y30-49;2011;26085;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y50-64;2011;19125;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y65-84;2011;1960;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_GE85;2011;55;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;2011;91805;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2011;123250;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2011;36605;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;2011;3480;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;2011;140;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y15-29;2011;13345;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y30-49;2011;40790;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y50-64;2011;24845;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y65-84;2011;1720;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_GE85;2011;55;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2011;1945;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y30-49;2011;5275;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2011;2475;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2011;280;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y15-29;2011;3115;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y30-49;2011;7940;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y50-64;2011;5940;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y65-84;2011;575;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2011;9220;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2011;21155;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2011;14440;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2011;2065;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;2011;45;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2011;11725;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2011;24395;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2011;15415;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2011;1770;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;2011;60;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2011;9625;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2011;15770;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;2011;10935;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1195;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;65;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Education   ;Y15-29;2011;6265;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Education   ;Y30-49;2011;9810;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Education   ;Y50-64;2011;8465;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Education   ;Y65-84;2011;1110;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y15-29;2011;5190;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y30-49;2011;13625;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y50-64;2011;12265;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y65-84;2011;1550;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_GE85;2011;35;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2011;6145;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2011;10030;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2011;5895;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2011;1005;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y15-29;2011;7480;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y30-49;2011;17850;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y50-64;2011;12755;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y65-84;2011;2385;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_GE85;2011;55;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;125;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;510;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;425;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;60;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;325;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;405;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;185;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;30;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Craft and related trades workers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2011;3135;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2011;5360;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2011;4090;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2011;915;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2011;2975;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2011;11620;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2011;8675;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2011;1065;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;2011;65;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2011;111930;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;2011;266450;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2011;165925;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2011;15190;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2011;435;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;2000;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;6210;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;4680;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;425;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;8885;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;31915;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;19065;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;1495;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y15-29;2011;51065;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y30-49;2011;117855;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y50-64;2011;63720;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y65-84;2011;6805;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_GE85;2011;160;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;43995;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;120990;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;86010;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;13605;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;175;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2011;51775;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2011;304345;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2011;216135;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2011;28185;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2011;380;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2011;11155;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2011;15880;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2011;8455;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2011;1545;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2011;2995;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;2011;7935;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2011;4330;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;2011;615;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;2011;1005;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2011;3185;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2011;1775;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2011;315;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2011;900;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2011;2990;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2011;2625;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;2011;450;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2011;6035;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2011;15220;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;2011;11425;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2011;2040;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;2011;35;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2011;11395;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2011;33585;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2011;25150;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2011;3855;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;2011;45;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2011;5150;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2011;11010;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2011;10410;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2011;1345;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2011;40;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y15-29;2011;3540;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y30-49;2011;17895;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y50-64;2011;17450;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y65-84;2011;2785;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_GE85;2011;35;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2011;2570;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2011;9720;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2011;13790;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2011;3140;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;2011;50;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2011;2325;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;2011;3895;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;2011;3275;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2011;755;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;2011;15;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2011;2250;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2011;5815;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2011;4425;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2011;1000;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;2011;25;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;35;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;200;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;245;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;30;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;120;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;280;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;240;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;30;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Plant and machine operators, and assemblers;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2011;18420;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2011;19245;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2011;12110;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2011;2730;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2011;75;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y15-29;2011;555;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y30-49;2011;1260;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y50-64;2011;845;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y65-84;2011;95;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y15-29;2011;58245;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y30-49;2011;94575;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y50-64;2011;56810;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y65-84;2011;5745;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_GE85;2011;200;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;1385;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;2470;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;1890;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;235;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;5;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;16130;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;23855;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;12925;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;895;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;35;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Construction   ;Y15-29;2011;75845;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Construction   ;Y30-49;2011;85890;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Construction   ;Y50-64;2011;40970;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Construction   ;Y65-84;2011;4220;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Construction   ;Y_GE85;2011;95;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;156570;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;148065;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;74015;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;10310;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;245;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y15-29;2011;65960;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y30-49;2011;138480;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y50-64;2011;75745;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y65-84;2011;5845;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_GE85;2011;185;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y15-29;2011;228555;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y30-49;2011;79600;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y50-64;2011;27295;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y65-84;2011;4600;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2011;185;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y15-29;2011;11100;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y30-49;2011;7405;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y50-64;2011;3840;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y65-84;2011;725;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y15-29;2011;3510;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y30-49;2011;5330;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y50-64;2011;3400;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y65-84;2011;665;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_GE85;2011;10;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y15-29;2011;3045;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y30-49;2011;5930;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y50-64;2011;6070;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y65-84;2011;1215;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_GE85;2011;20;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2011;6575;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2011;9220;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2011;6110;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2011;1260;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;2011;30;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y15-29;2011;90695;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y30-49;2011;136265;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y50-64;2011;77645;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y65-84;2011;12280;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_GE85;2011;180;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2011;9575;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2011;22045;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2011;20700;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2011;3735;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2011;65;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Education   ;Y15-29;2011;11840;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Education   ;Y30-49;2011;21030;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Education   ;Y50-64;2011;27210;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Education   ;Y65-84;2011;4830;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Education   ;Y_GE85;2011;60;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y15-29;2011;15360;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y30-49;2011;22380;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y50-64;2011;19710;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y65-84;2011;3025;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_GE85;2011;70;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;2011;23560;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2011;10930;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2011;7720;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2011;2060;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;2011;45;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y15-29;2011;9960;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y30-49;2011;11920;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y50-64;2011;8190;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y65-84;2011;1925;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_GE85;2011;35;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;235;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;475;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;265;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;70;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;210;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;310;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;205;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;40;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Elementary occupations;Not stated   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Agriculture, forestry and fishing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Mining and quarrying   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Manufacturing   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Manufacturing   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Manufacturing   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Manufacturing   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Manufacturing   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Manufacturing   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Construction   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Construction   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Construction   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Construction   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Construction   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Construction   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Transportation and storage   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Transportation and storage   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Transportation and storage   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Transportation and storage   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Transportation and storage   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Accommodation and food service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Information and communication   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Information and communication   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Information and communication   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Information and communication   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Information and communication   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Information and communication   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Financial and insurance activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Real estate activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Real estate activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Real estate activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Real estate activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Real estate activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Real estate activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Professional, scientific and technical activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Administrative and support service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not applicable  ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not applicable  ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not applicable  ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not applicable  ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not applicable  ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not applicable  ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Public administration and defence; compulsory social security   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Education   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Education   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Education   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Education   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Education   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Education   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Human health and social work activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Arts, entertainment and recreation   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Other service activities   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Other service activities   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Other service activities   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Other service activities   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Other service activities   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Other service activities   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Activities of extraterritorial organisations and bodies   ;Y_LT15;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not stated   ;Y15-29;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not stated   ;Y30-49;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not stated   ;Y50-64;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not stated   ;Y65-84;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not stated   ;Y_GE85;2011;0;; +United Kingdom;M;POP;TOTAL;Not stated;Not stated   ;Y_LT15;2011;0;; diff --git a/Project/age_pyramid.png b/Project/age_pyramid.png new file mode 100644 index 0000000..1ee6790 Binary files /dev/null and b/Project/age_pyramid.png differ diff --git a/Project/csv_census.csv b/Project/csv_census.csv new file mode 100644 index 0000000..0b6b048 --- /dev/null +++ b/Project/csv_census.csv @@ -0,0 +1,96049 @@ +"GEO","SEX","CAS","POB","OCC","IND","AGE","TIME","VALUE","FLAGS","FOOTNOTES" +"BE","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","NAP","Y15-29","2011","553484","","" +"BE","F","POP","TOTAL","NAP","NAP","Y30-49","2011","314136","","" +"BE","F","POP","TOTAL","NAP","NAP","Y50-64","2011","529957","","" +"BE","F","POP","TOTAL","NAP","NAP","Y65-84","2011","899599","","" +"BE","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","173933","","" +"BE","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","912815","","" +"BE","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","A","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","A","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","A","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","C","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","C","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","C","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","F","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","F","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","F","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","G","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","G","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","G","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","H","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","H","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","H","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","I","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","I","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","J","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","J","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","K","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","K","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","M","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","N","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","N","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","N","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","O","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","O","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","O","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","P","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","P","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","P","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","Q","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","Q","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","Q","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","S","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","S","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","S","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","A","Y15-29","2011","2027","","" +"BE","F","POP","TOTAL","UNK","A","Y30-49","2011","10266","","" +"BE","F","POP","TOTAL","UNK","A","Y50-64","2011","7651","","" +"BE","F","POP","TOTAL","UNK","A","Y65-84","2011","1184","","" +"BE","F","POP","TOTAL","UNK","A","Y_GE85","2011","53","","" +"BE","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","B","Y15-29","2011","17","","" +"BE","F","POP","TOTAL","UNK","B","Y30-49","2011","161","","" +"BE","F","POP","TOTAL","UNK","B","Y50-64","2011","83","","" +"BE","F","POP","TOTAL","UNK","B","Y65-84","2011","2","","" +"BE","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","C","Y15-29","2011","20851","","" +"BE","F","POP","TOTAL","UNK","C","Y30-49","2011","79267","","" +"BE","F","POP","TOTAL","UNK","C","Y50-64","2011","30248","","" +"BE","F","POP","TOTAL","UNK","C","Y65-84","2011","507","","" +"BE","F","POP","TOTAL","UNK","C","Y_GE85","2011","6","","" +"BE","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","D","Y15-29","2011","1842","","" +"BE","F","POP","TOTAL","UNK","D","Y30-49","2011","2993","","" +"BE","F","POP","TOTAL","UNK","D","Y50-64","2011","657","","" +"BE","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","E","Y15-29","2011","805","","" +"BE","F","POP","TOTAL","UNK","E","Y30-49","2011","3108","","" +"BE","F","POP","TOTAL","UNK","E","Y50-64","2011","891","","" +"BE","F","POP","TOTAL","UNK","E","Y65-84","2011","12","","" +"BE","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","F","Y15-29","2011","4477","","" +"BE","F","POP","TOTAL","UNK","F","Y30-49","2011","16597","","" +"BE","F","POP","TOTAL","UNK","F","Y50-64","2011","6990","","" +"BE","F","POP","TOTAL","UNK","F","Y65-84","2011","379","","" +"BE","F","POP","TOTAL","UNK","F","Y_GE85","2011","5","","" +"BE","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","G","Y15-29","2011","73435","","" +"BE","F","POP","TOTAL","UNK","G","Y30-49","2011","165448","","" +"BE","F","POP","TOTAL","UNK","G","Y50-64","2011","65845","","" +"BE","F","POP","TOTAL","UNK","G","Y65-84","2011","2640","","" +"BE","F","POP","TOTAL","UNK","G","Y_GE85","2011","34","","" +"BE","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","H","Y15-29","2011","8494","","" +"BE","F","POP","TOTAL","UNK","H","Y30-49","2011","28773","","" +"BE","F","POP","TOTAL","UNK","H","Y50-64","2011","11538","","" +"BE","F","POP","TOTAL","UNK","H","Y65-84","2011","167","","" +"BE","F","POP","TOTAL","UNK","H","Y_GE85","2011","2","","" +"BE","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","I","Y15-29","2011","24636","","" +"BE","F","POP","TOTAL","UNK","I","Y30-49","2011","42785","","" +"BE","F","POP","TOTAL","UNK","I","Y50-64","2011","19516","","" +"BE","F","POP","TOTAL","UNK","I","Y65-84","2011","1159","","" +"BE","F","POP","TOTAL","UNK","I","Y_GE85","2011","17","","" +"BE","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","J","Y15-29","2011","7163","","" +"BE","F","POP","TOTAL","UNK","J","Y30-49","2011","21105","","" +"BE","F","POP","TOTAL","UNK","J","Y50-64","2011","6337","","" +"BE","F","POP","TOTAL","UNK","J","Y65-84","2011","97","","" +"BE","F","POP","TOTAL","UNK","J","Y_GE85","2011","1","","" +"BE","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","K","Y15-29","2011","11276","","" +"BE","F","POP","TOTAL","UNK","K","Y30-49","2011","43839","","" +"BE","F","POP","TOTAL","UNK","K","Y50-64","2011","19116","","" +"BE","F","POP","TOTAL","UNK","K","Y65-84","2011","336","","" +"BE","F","POP","TOTAL","UNK","K","Y_GE85","2011","6","","" +"BE","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","L","Y15-29","2011","2232","","" +"BE","F","POP","TOTAL","UNK","L","Y30-49","2011","7608","","" +"BE","F","POP","TOTAL","UNK","L","Y50-64","2011","4605","","" +"BE","F","POP","TOTAL","UNK","L","Y65-84","2011","455","","" +"BE","F","POP","TOTAL","UNK","L","Y_GE85","2011","6","","" +"BE","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","M","Y15-29","2011","24210","","" +"BE","F","POP","TOTAL","UNK","M","Y30-49","2011","57650","","" +"BE","F","POP","TOTAL","UNK","M","Y50-64","2011","18902","","" +"BE","F","POP","TOTAL","UNK","M","Y65-84","2011","800","","" +"BE","F","POP","TOTAL","UNK","M","Y_GE85","2011","10","","" +"BE","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","N","Y15-29","2011","61357","","" +"BE","F","POP","TOTAL","UNK","N","Y30-49","2011","116622","","" +"BE","F","POP","TOTAL","UNK","N","Y50-64","2011","36974","","" +"BE","F","POP","TOTAL","UNK","N","Y65-84","2011","725","","" +"BE","F","POP","TOTAL","UNK","N","Y_GE85","2011","2","","" +"BE","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"BE","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"BE","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"BE","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"BE","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","O","Y15-29","2011","41804","","" +"BE","F","POP","TOTAL","UNK","O","Y30-49","2011","155845","","" +"BE","F","POP","TOTAL","UNK","O","Y50-64","2011","90451","","" +"BE","F","POP","TOTAL","UNK","O","Y65-84","2011","510","","" +"BE","F","POP","TOTAL","UNK","O","Y_GE85","2011","4","","" +"BE","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","P","Y15-29","2011","53163","","" +"BE","F","POP","TOTAL","UNK","P","Y30-49","2011","144267","","" +"BE","F","POP","TOTAL","UNK","P","Y50-64","2011","70161","","" +"BE","F","POP","TOTAL","UNK","P","Y65-84","2011","391","","" +"BE","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","Q","Y15-29","2011","81743","","" +"BE","F","POP","TOTAL","UNK","Q","Y30-49","2011","226023","","" +"BE","F","POP","TOTAL","UNK","Q","Y50-64","2011","101573","","" +"BE","F","POP","TOTAL","UNK","Q","Y65-84","2011","1421","","" +"BE","F","POP","TOTAL","UNK","Q","Y_GE85","2011","7","","" +"BE","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","R","Y15-29","2011","4958","","" +"BE","F","POP","TOTAL","UNK","R","Y30-49","2011","11332","","" +"BE","F","POP","TOTAL","UNK","R","Y50-64","2011","4950","","" +"BE","F","POP","TOTAL","UNK","R","Y65-84","2011","231","","" +"BE","F","POP","TOTAL","UNK","R","Y_GE85","2011","1","","" +"BE","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","S","Y15-29","2011","21287","","" +"BE","F","POP","TOTAL","UNK","S","Y30-49","2011","42248","","" +"BE","F","POP","TOTAL","UNK","S","Y50-64","2011","18190","","" +"BE","F","POP","TOTAL","UNK","S","Y65-84","2011","1370","","" +"BE","F","POP","TOTAL","UNK","S","Y_GE85","2011","19","","" +"BE","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","T","Y15-29","2011","264","","" +"BE","F","POP","TOTAL","UNK","T","Y30-49","2011","1188","","" +"BE","F","POP","TOTAL","UNK","T","Y50-64","2011","1035","","" +"BE","F","POP","TOTAL","UNK","T","Y65-84","2011","128","","" +"BE","F","POP","TOTAL","UNK","T","Y_GE85","2011","2","","" +"BE","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","U","Y15-29","2011","160","","" +"BE","F","POP","TOTAL","UNK","U","Y30-49","2011","848","","" +"BE","F","POP","TOTAL","UNK","U","Y50-64","2011","469","","" +"BE","F","POP","TOTAL","UNK","U","Y65-84","2011","19","","" +"BE","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"BE","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"BE","F","POP","TOTAL","UNK","UNK","Y15-29","2011","6317","","" +"BE","F","POP","TOTAL","UNK","UNK","Y30-49","2011","29193","","" +"BE","F","POP","TOTAL","UNK","UNK","Y50-64","2011","26324","","" +"BE","F","POP","TOTAL","UNK","UNK","Y65-84","2011","95","","" +"BE","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","3","","" +"BE","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","NAP","Y15-29","2011","526527","","" +"BE","M","POP","TOTAL","NAP","NAP","Y30-49","2011","187458","","" +"BE","M","POP","TOTAL","NAP","NAP","Y50-64","2011","369495","","" +"BE","M","POP","TOTAL","NAP","NAP","Y65-84","2011","690939","","" +"BE","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","73649","","" +"BE","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","954482","","" +"BE","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","A","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","A","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","A","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","C","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","C","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","C","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","F","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","F","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","F","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","G","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","G","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","G","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","H","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","H","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","H","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","I","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","I","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","J","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","J","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","K","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","K","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","M","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","N","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","N","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","N","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","O","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","O","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","O","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","P","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","P","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","P","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","Q","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","Q","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","Q","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","S","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","S","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","S","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","A","Y15-29","2011","5974","","" +"BE","M","POP","TOTAL","UNK","A","Y30-49","2011","20438","","" +"BE","M","POP","TOTAL","UNK","A","Y50-64","2011","13996","","" +"BE","M","POP","TOTAL","UNK","A","Y65-84","2011","2896","","" +"BE","M","POP","TOTAL","UNK","A","Y_GE85","2011","111","","" +"BE","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","B","Y15-29","2011","413","","" +"BE","M","POP","TOTAL","UNK","B","Y30-49","2011","1610","","" +"BE","M","POP","TOTAL","UNK","B","Y50-64","2011","843","","" +"BE","M","POP","TOTAL","UNK","B","Y65-84","2011","35","","" +"BE","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","C","Y15-29","2011","67502","","" +"BE","M","POP","TOTAL","UNK","C","Y30-49","2011","236852","","" +"BE","M","POP","TOTAL","UNK","C","Y50-64","2011","104206","","" +"BE","M","POP","TOTAL","UNK","C","Y65-84","2011","2312","","" +"BE","M","POP","TOTAL","UNK","C","Y_GE85","2011","16","","" +"BE","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","D","Y15-29","2011","2900","","" +"BE","M","POP","TOTAL","UNK","D","Y30-49","2011","8382","","" +"BE","M","POP","TOTAL","UNK","D","Y50-64","2011","4541","","" +"BE","M","POP","TOTAL","UNK","D","Y65-84","2011","11","","" +"BE","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","E","Y15-29","2011","3201","","" +"BE","M","POP","TOTAL","UNK","E","Y30-49","2011","13277","","" +"BE","M","POP","TOTAL","UNK","E","Y50-64","2011","5442","","" +"BE","M","POP","TOTAL","UNK","E","Y65-84","2011","83","","" +"BE","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","F","Y15-29","2011","73319","","" +"BE","M","POP","TOTAL","UNK","F","Y30-49","2011","152019","","" +"BE","M","POP","TOTAL","UNK","F","Y50-64","2011","64584","","" +"BE","M","POP","TOTAL","UNK","F","Y65-84","2011","2785","","" +"BE","M","POP","TOTAL","UNK","F","Y_GE85","2011","19","","" +"BE","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","G","Y15-29","2011","75979","","" +"BE","M","POP","TOTAL","UNK","G","Y30-49","2011","195625","","" +"BE","M","POP","TOTAL","UNK","G","Y50-64","2011","88228","","" +"BE","M","POP","TOTAL","UNK","G","Y65-84","2011","6352","","" +"BE","M","POP","TOTAL","UNK","G","Y_GE85","2011","84","","" +"BE","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","H","Y15-29","2011","26161","","" +"BE","M","POP","TOTAL","UNK","H","Y30-49","2011","98468","","" +"BE","M","POP","TOTAL","UNK","H","Y50-64","2011","66360","","" +"BE","M","POP","TOTAL","UNK","H","Y65-84","2011","1944","","" +"BE","M","POP","TOTAL","UNK","H","Y_GE85","2011","6","","" +"BE","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","I","Y15-29","2011","27880","","" +"BE","M","POP","TOTAL","UNK","I","Y30-49","2011","47789","","" +"BE","M","POP","TOTAL","UNK","I","Y50-64","2011","17727","","" +"BE","M","POP","TOTAL","UNK","I","Y65-84","2011","1020","","" +"BE","M","POP","TOTAL","UNK","I","Y_GE85","2011","10","","" +"BE","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","J","Y15-29","2011","16596","","" +"BE","M","POP","TOTAL","UNK","J","Y30-49","2011","49447","","" +"BE","M","POP","TOTAL","UNK","J","Y50-64","2011","17900","","" +"BE","M","POP","TOTAL","UNK","J","Y65-84","2011","328","","" +"BE","M","POP","TOTAL","UNK","J","Y_GE85","2011","2","","" +"BE","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","K","Y15-29","2011","9103","","" +"BE","M","POP","TOTAL","UNK","K","Y30-49","2011","39538","","" +"BE","M","POP","TOTAL","UNK","K","Y50-64","2011","25092","","" +"BE","M","POP","TOTAL","UNK","K","Y65-84","2011","765","","" +"BE","M","POP","TOTAL","UNK","K","Y_GE85","2011","11","","" +"BE","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","L","Y15-29","2011","2199","","" +"BE","M","POP","TOTAL","UNK","L","Y30-49","2011","8161","","" +"BE","M","POP","TOTAL","UNK","L","Y50-64","2011","5714","","" +"BE","M","POP","TOTAL","UNK","L","Y65-84","2011","747","","" +"BE","M","POP","TOTAL","UNK","L","Y_GE85","2011","16","","" +"BE","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","M","Y15-29","2011","24418","","" +"BE","M","POP","TOTAL","UNK","M","Y30-49","2011","68293","","" +"BE","M","POP","TOTAL","UNK","M","Y50-64","2011","30109","","" +"BE","M","POP","TOTAL","UNK","M","Y65-84","2011","2871","","" +"BE","M","POP","TOTAL","UNK","M","Y_GE85","2011","38","","" +"BE","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","N","Y15-29","2011","71320","","" +"BE","M","POP","TOTAL","UNK","N","Y30-49","2011","103077","","" +"BE","M","POP","TOTAL","UNK","N","Y50-64","2011","31218","","" +"BE","M","POP","TOTAL","UNK","N","Y65-84","2011","1281","","" +"BE","M","POP","TOTAL","UNK","N","Y_GE85","2011","10","","" +"BE","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"BE","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"BE","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"BE","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"BE","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"BE","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","O","Y15-29","2011","32391","","" +"BE","M","POP","TOTAL","UNK","O","Y30-49","2011","133334","","" +"BE","M","POP","TOTAL","UNK","O","Y50-64","2011","90142","","" +"BE","M","POP","TOTAL","UNK","O","Y65-84","2011","1797","","" +"BE","M","POP","TOTAL","UNK","O","Y_GE85","2011","38","","" +"BE","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","P","Y15-29","2011","20165","","" +"BE","M","POP","TOTAL","UNK","P","Y30-49","2011","57601","","" +"BE","M","POP","TOTAL","UNK","P","Y50-64","2011","41633","","" +"BE","M","POP","TOTAL","UNK","P","Y65-84","2011","794","","" +"BE","M","POP","TOTAL","UNK","P","Y_GE85","2011","3","","" +"BE","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","Q","Y15-29","2011","19031","","" +"BE","M","POP","TOTAL","UNK","Q","Y30-49","2011","61864","","" +"BE","M","POP","TOTAL","UNK","Q","Y50-64","2011","38667","","" +"BE","M","POP","TOTAL","UNK","Q","Y65-84","2011","2629","","" +"BE","M","POP","TOTAL","UNK","Q","Y_GE85","2011","43","","" +"BE","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","R","Y15-29","2011","7049","","" +"BE","M","POP","TOTAL","UNK","R","Y30-49","2011","15061","","" +"BE","M","POP","TOTAL","UNK","R","Y50-64","2011","7291","","" +"BE","M","POP","TOTAL","UNK","R","Y65-84","2011","681","","" +"BE","M","POP","TOTAL","UNK","R","Y_GE85","2011","8","","" +"BE","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","S","Y15-29","2011","7120","","" +"BE","M","POP","TOTAL","UNK","S","Y30-49","2011","21939","","" +"BE","M","POP","TOTAL","UNK","S","Y50-64","2011","12657","","" +"BE","M","POP","TOTAL","UNK","S","Y65-84","2011","1950","","" +"BE","M","POP","TOTAL","UNK","S","Y_GE85","2011","40","","" +"BE","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","T","Y15-29","2011","109","","" +"BE","M","POP","TOTAL","UNK","T","Y30-49","2011","561","","" +"BE","M","POP","TOTAL","UNK","T","Y50-64","2011","457","","" +"BE","M","POP","TOTAL","UNK","T","Y65-84","2011","124","","" +"BE","M","POP","TOTAL","UNK","T","Y_GE85","2011","7","","" +"BE","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","U","Y15-29","2011","86","","" +"BE","M","POP","TOTAL","UNK","U","Y30-49","2011","671","","" +"BE","M","POP","TOTAL","UNK","U","Y50-64","2011","510","","" +"BE","M","POP","TOTAL","UNK","U","Y65-84","2011","11","","" +"BE","M","POP","TOTAL","UNK","U","Y_GE85","2011","1","","" +"BE","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"BE","M","POP","TOTAL","UNK","UNK","Y15-29","2011","8039","","" +"BE","M","POP","TOTAL","UNK","UNK","Y30-49","2011","39435","","" +"BE","M","POP","TOTAL","UNK","UNK","Y50-64","2011","25200","","" +"BE","M","POP","TOTAL","UNK","UNK","Y65-84","2011","373","","" +"BE","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","2","","" +"BE","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","NAP","Y15-29","2011","386073","","" +"BG","F","POP","TOTAL","NAP","NAP","Y30-49","2011","211765","","" +"BG","F","POP","TOTAL","NAP","NAP","Y50-64","2011","394630","","" +"BG","F","POP","TOTAL","NAP","NAP","Y65-84","2011","719844","","" +"BG","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","70955","","" +"BG","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","473554","","" +"BG","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","A","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC0","A","Y30-49","2011",":","c","" +"BG","F","POP","TOTAL","OC0","A","Y50-64","2011","4","","" +"BG","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","C","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC0","C","Y30-49","2011","3","","" +"BG","F","POP","TOTAL","OC0","C","Y50-64","2011","3","","" +"BG","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC0","D","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC0","F","Y50-64","2011",":","c","" +"BG","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","G","Y15-29","2011","5","","" +"BG","F","POP","TOTAL","OC0","G","Y30-49","2011","6","","" +"BG","F","POP","TOTAL","OC0","G","Y50-64","2011","3","","" +"BG","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","H","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC0","H","Y30-49","2011","9","","" +"BG","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","I","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","J","Y15-29","2011","3","","" +"BG","F","POP","TOTAL","OC0","J","Y30-49","2011","8","","" +"BG","F","POP","TOTAL","OC0","J","Y50-64","2011",":","c","" +"BG","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC0","K","Y30-49","2011","4","","" +"BG","F","POP","TOTAL","OC0","K","Y50-64","2011","3","","" +"BG","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","M","Y15-29","2011","42","","" +"BG","F","POP","TOTAL","OC0","M","Y30-49","2011","152","","" +"BG","F","POP","TOTAL","OC0","M","Y50-64","2011","6","","" +"BG","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","N","Y15-29","2011","149","","" +"BG","F","POP","TOTAL","OC0","N","Y30-49","2011","370","","" +"BG","F","POP","TOTAL","OC0","N","Y50-64","2011","46","","" +"BG","F","POP","TOTAL","OC0","N","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","O","Y15-29","2011","1235","","" +"BG","F","POP","TOTAL","OC0","O","Y30-49","2011","2553","","" +"BG","F","POP","TOTAL","OC0","O","Y50-64","2011","227","","" +"BG","F","POP","TOTAL","OC0","O","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","P","Y15-29","2011","15","","" +"BG","F","POP","TOTAL","OC0","P","Y30-49","2011","18","","" +"BG","F","POP","TOTAL","OC0","P","Y50-64","2011","3","","" +"BG","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","Q","Y15-29","2011","4","","" +"BG","F","POP","TOTAL","OC0","Q","Y30-49","2011","21","","" +"BG","F","POP","TOTAL","OC0","Q","Y50-64","2011",":","c","" +"BG","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","R","Y15-29","2011","7","","" +"BG","F","POP","TOTAL","OC0","R","Y30-49","2011","5","","" +"BG","F","POP","TOTAL","OC0","R","Y50-64","2011","4","","" +"BG","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","S","Y15-29","2011","74","","" +"BG","F","POP","TOTAL","OC0","S","Y30-49","2011","238","","" +"BG","F","POP","TOTAL","OC0","S","Y50-64","2011","10","","" +"BG","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","U","Y15-29","2011","20","","" +"BG","F","POP","TOTAL","OC0","U","Y30-49","2011","39","","" +"BG","F","POP","TOTAL","OC0","U","Y50-64","2011","5","","" +"BG","F","POP","TOTAL","OC0","U","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC0","UNK","Y15-29","2011","5","","" +"BG","F","POP","TOTAL","OC0","UNK","Y30-49","2011","9","","" +"BG","F","POP","TOTAL","OC0","UNK","Y50-64","2011",":","c","" +"BG","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","A","Y15-29","2011","147","","" +"BG","F","POP","TOTAL","OC1","A","Y30-49","2011","915","","" +"BG","F","POP","TOTAL","OC1","A","Y50-64","2011","477","","" +"BG","F","POP","TOTAL","OC1","A","Y65-84","2011","49","","" +"BG","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","B","Y15-29","2011","9","","" +"BG","F","POP","TOTAL","OC1","B","Y30-49","2011","136","","" +"BG","F","POP","TOTAL","OC1","B","Y50-64","2011","88","","" +"BG","F","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","C","Y15-29","2011","801","","" +"BG","F","POP","TOTAL","OC1","C","Y30-49","2011","6705","","" +"BG","F","POP","TOTAL","OC1","C","Y50-64","2011","3359","","" +"BG","F","POP","TOTAL","OC1","C","Y65-84","2011","146","","" +"BG","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","D","Y15-29","2011","22","","" +"BG","F","POP","TOTAL","OC1","D","Y30-49","2011","313","","" +"BG","F","POP","TOTAL","OC1","D","Y50-64","2011","191","","" +"BG","F","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","E","Y15-29","2011","27","","" +"BG","F","POP","TOTAL","OC1","E","Y30-49","2011","230","","" +"BG","F","POP","TOTAL","OC1","E","Y50-64","2011","154","","" +"BG","F","POP","TOTAL","OC1","E","Y65-84","2011","5","","" +"BG","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","F","Y15-29","2011","364","","" +"BG","F","POP","TOTAL","OC1","F","Y30-49","2011","1930","","" +"BG","F","POP","TOTAL","OC1","F","Y50-64","2011","1050","","" +"BG","F","POP","TOTAL","OC1","F","Y65-84","2011","57","","" +"BG","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","G","Y15-29","2011","3421","","" +"BG","F","POP","TOTAL","OC1","G","Y30-49","2011","18753","","" +"BG","F","POP","TOTAL","OC1","G","Y50-64","2011","7701","","" +"BG","F","POP","TOTAL","OC1","G","Y65-84","2011","652","","" +"BG","F","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","H","Y15-29","2011","343","","" +"BG","F","POP","TOTAL","OC1","H","Y30-49","2011","2268","","" +"BG","F","POP","TOTAL","OC1","H","Y50-64","2011","1026","","" +"BG","F","POP","TOTAL","OC1","H","Y65-84","2011","40","","" +"BG","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","I","Y15-29","2011","1061","","" +"BG","F","POP","TOTAL","OC1","I","Y30-49","2011","4201","","" +"BG","F","POP","TOTAL","OC1","I","Y50-64","2011","1615","","" +"BG","F","POP","TOTAL","OC1","I","Y65-84","2011","79","","" +"BG","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","J","Y15-29","2011","596","","" +"BG","F","POP","TOTAL","OC1","J","Y30-49","2011","2091","","" +"BG","F","POP","TOTAL","OC1","J","Y50-64","2011","521","","" +"BG","F","POP","TOTAL","OC1","J","Y65-84","2011","33","","" +"BG","F","POP","TOTAL","OC1","J","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","K","Y15-29","2011","571","","" +"BG","F","POP","TOTAL","OC1","K","Y30-49","2011","3468","","" +"BG","F","POP","TOTAL","OC1","K","Y50-64","2011","954","","" +"BG","F","POP","TOTAL","OC1","K","Y65-84","2011","34","","" +"BG","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","L","Y15-29","2011","253","","" +"BG","F","POP","TOTAL","OC1","L","Y30-49","2011","1521","","" +"BG","F","POP","TOTAL","OC1","L","Y50-64","2011","715","","" +"BG","F","POP","TOTAL","OC1","L","Y65-84","2011","45","","" +"BG","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","M","Y15-29","2011","631","","" +"BG","F","POP","TOTAL","OC1","M","Y30-49","2011","4516","","" +"BG","F","POP","TOTAL","OC1","M","Y50-64","2011","2226","","" +"BG","F","POP","TOTAL","OC1","M","Y65-84","2011","96","","" +"BG","F","POP","TOTAL","OC1","M","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","N","Y15-29","2011","303","","" +"BG","F","POP","TOTAL","OC1","N","Y30-49","2011","1348","","" +"BG","F","POP","TOTAL","OC1","N","Y50-64","2011","620","","" +"BG","F","POP","TOTAL","OC1","N","Y65-84","2011","42","","" +"BG","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","O","Y15-29","2011","114","","" +"BG","F","POP","TOTAL","OC1","O","Y30-49","2011","3487","","" +"BG","F","POP","TOTAL","OC1","O","Y50-64","2011","2481","","" +"BG","F","POP","TOTAL","OC1","O","Y65-84","2011","55","","" +"BG","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","P","Y15-29","2011","96","","" +"BG","F","POP","TOTAL","OC1","P","Y30-49","2011","1927","","" +"BG","F","POP","TOTAL","OC1","P","Y50-64","2011","2038","","" +"BG","F","POP","TOTAL","OC1","P","Y65-84","2011","68","","" +"BG","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","Q","Y15-29","2011","86","","" +"BG","F","POP","TOTAL","OC1","Q","Y30-49","2011","1691","","" +"BG","F","POP","TOTAL","OC1","Q","Y50-64","2011","1642","","" +"BG","F","POP","TOTAL","OC1","Q","Y65-84","2011","96","","" +"BG","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","R","Y15-29","2011","213","","" +"BG","F","POP","TOTAL","OC1","R","Y30-49","2011","715","","" +"BG","F","POP","TOTAL","OC1","R","Y50-64","2011","310","","" +"BG","F","POP","TOTAL","OC1","R","Y65-84","2011","28","","" +"BG","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","S","Y15-29","2011","314","","" +"BG","F","POP","TOTAL","OC1","S","Y30-49","2011","1773","","" +"BG","F","POP","TOTAL","OC1","S","Y50-64","2011","974","","" +"BG","F","POP","TOTAL","OC1","S","Y65-84","2011","141","","" +"BG","F","POP","TOTAL","OC1","S","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","T","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC1","T","Y30-49","2011","19","","" +"BG","F","POP","TOTAL","OC1","T","Y50-64","2011","6","","" +"BG","F","POP","TOTAL","OC1","T","Y65-84","2011","3","","" +"BG","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","U","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC1","U","Y30-49","2011","35","","" +"BG","F","POP","TOTAL","OC1","U","Y50-64","2011","13","","" +"BG","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC1","UNK","Y15-29","2011","12","","" +"BG","F","POP","TOTAL","OC1","UNK","Y30-49","2011","80","","" +"BG","F","POP","TOTAL","OC1","UNK","Y50-64","2011","31","","" +"BG","F","POP","TOTAL","OC1","UNK","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","A","Y15-29","2011","272","","" +"BG","F","POP","TOTAL","OC2","A","Y30-49","2011","1326","","" +"BG","F","POP","TOTAL","OC2","A","Y50-64","2011","882","","" +"BG","F","POP","TOTAL","OC2","A","Y65-84","2011","50","","" +"BG","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","B","Y15-29","2011","69","","" +"BG","F","POP","TOTAL","OC2","B","Y30-49","2011","303","","" +"BG","F","POP","TOTAL","OC2","B","Y50-64","2011","220","","" +"BG","F","POP","TOTAL","OC2","B","Y65-84","2011","7","","" +"BG","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","C","Y15-29","2011","2004","","" +"BG","F","POP","TOTAL","OC2","C","Y30-49","2011","7944","","" +"BG","F","POP","TOTAL","OC2","C","Y50-64","2011","4288","","" +"BG","F","POP","TOTAL","OC2","C","Y65-84","2011","102","","" +"BG","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","D","Y15-29","2011","196","","" +"BG","F","POP","TOTAL","OC2","D","Y30-49","2011","1092","","" +"BG","F","POP","TOTAL","OC2","D","Y50-64","2011","531","","" +"BG","F","POP","TOTAL","OC2","D","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","E","Y15-29","2011","111","","" +"BG","F","POP","TOTAL","OC2","E","Y30-49","2011","539","","" +"BG","F","POP","TOTAL","OC2","E","Y50-64","2011","296","","" +"BG","F","POP","TOTAL","OC2","E","Y65-84","2011","8","","" +"BG","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","F","Y15-29","2011","899","","" +"BG","F","POP","TOTAL","OC2","F","Y30-49","2011","2657","","" +"BG","F","POP","TOTAL","OC2","F","Y50-64","2011","1644","","" +"BG","F","POP","TOTAL","OC2","F","Y65-84","2011","76","","" +"BG","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","G","Y15-29","2011","3094","","" +"BG","F","POP","TOTAL","OC2","G","Y30-49","2011","8959","","" +"BG","F","POP","TOTAL","OC2","G","Y50-64","2011","3979","","" +"BG","F","POP","TOTAL","OC2","G","Y65-84","2011","465","","" +"BG","F","POP","TOTAL","OC2","G","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","H","Y15-29","2011","401","","" +"BG","F","POP","TOTAL","OC2","H","Y30-49","2011","1817","","" +"BG","F","POP","TOTAL","OC2","H","Y50-64","2011","1158","","" +"BG","F","POP","TOTAL","OC2","H","Y65-84","2011","28","","" +"BG","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","I","Y15-29","2011","661","","" +"BG","F","POP","TOTAL","OC2","I","Y30-49","2011","1290","","" +"BG","F","POP","TOTAL","OC2","I","Y50-64","2011","653","","" +"BG","F","POP","TOTAL","OC2","I","Y65-84","2011","23","","" +"BG","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","J","Y15-29","2011","3697","","" +"BG","F","POP","TOTAL","OC2","J","Y30-49","2011","5655","","" +"BG","F","POP","TOTAL","OC2","J","Y50-64","2011","1663","","" +"BG","F","POP","TOTAL","OC2","J","Y65-84","2011","77","","" +"BG","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","K","Y15-29","2011","2135","","" +"BG","F","POP","TOTAL","OC2","K","Y30-49","2011","5764","","" +"BG","F","POP","TOTAL","OC2","K","Y50-64","2011","1895","","" +"BG","F","POP","TOTAL","OC2","K","Y65-84","2011","79","","" +"BG","F","POP","TOTAL","OC2","K","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","L","Y15-29","2011","308","","" +"BG","F","POP","TOTAL","OC2","L","Y30-49","2011","1066","","" +"BG","F","POP","TOTAL","OC2","L","Y50-64","2011","601","","" +"BG","F","POP","TOTAL","OC2","L","Y65-84","2011","20","","" +"BG","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","M","Y15-29","2011","4654","","" +"BG","F","POP","TOTAL","OC2","M","Y30-49","2011","14298","","" +"BG","F","POP","TOTAL","OC2","M","Y50-64","2011","7869","","" +"BG","F","POP","TOTAL","OC2","M","Y65-84","2011","465","","" +"BG","F","POP","TOTAL","OC2","M","Y_GE85","2011","4","","" +"BG","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","N","Y15-29","2011","729","","" +"BG","F","POP","TOTAL","OC2","N","Y30-49","2011","1834","","" +"BG","F","POP","TOTAL","OC2","N","Y50-64","2011","894","","" +"BG","F","POP","TOTAL","OC2","N","Y65-84","2011","73","","" +"BG","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","O","Y15-29","2011","3134","","" +"BG","F","POP","TOTAL","OC2","O","Y30-49","2011","21927","","" +"BG","F","POP","TOTAL","OC2","O","Y50-64","2011","13016","","" +"BG","F","POP","TOTAL","OC2","O","Y65-84","2011","234","","" +"BG","F","POP","TOTAL","OC2","O","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","P","Y15-29","2011","4310","","" +"BG","F","POP","TOTAL","OC2","P","Y30-49","2011","45965","","" +"BG","F","POP","TOTAL","OC2","P","Y50-64","2011","35099","","" +"BG","F","POP","TOTAL","OC2","P","Y65-84","2011","921","","" +"BG","F","POP","TOTAL","OC2","P","Y_GE85","2011","5","","" +"BG","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","Q","Y15-29","2011","3585","","" +"BG","F","POP","TOTAL","OC2","Q","Y30-49","2011","27493","","" +"BG","F","POP","TOTAL","OC2","Q","Y50-64","2011","25565","","" +"BG","F","POP","TOTAL","OC2","Q","Y65-84","2011","1915","","" +"BG","F","POP","TOTAL","OC2","Q","Y_GE85","2011","4","","" +"BG","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","R","Y15-29","2011","954","","" +"BG","F","POP","TOTAL","OC2","R","Y30-49","2011","2856","","" +"BG","F","POP","TOTAL","OC2","R","Y50-64","2011","2007","","" +"BG","F","POP","TOTAL","OC2","R","Y65-84","2011","131","","" +"BG","F","POP","TOTAL","OC2","R","Y_GE85","2011","3","","" +"BG","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","S","Y15-29","2011","875","","" +"BG","F","POP","TOTAL","OC2","S","Y30-49","2011","2982","","" +"BG","F","POP","TOTAL","OC2","S","Y50-64","2011","2047","","" +"BG","F","POP","TOTAL","OC2","S","Y65-84","2011","171","","" +"BG","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","T","Y15-29","2011","4","","" +"BG","F","POP","TOTAL","OC2","T","Y30-49","2011","7","","" +"BG","F","POP","TOTAL","OC2","T","Y50-64","2011","9","","" +"BG","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","U","Y15-29","2011","28","","" +"BG","F","POP","TOTAL","OC2","U","Y30-49","2011","132","","" +"BG","F","POP","TOTAL","OC2","U","Y50-64","2011","71","","" +"BG","F","POP","TOTAL","OC2","U","Y65-84","2011","10","","" +"BG","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC2","UNK","Y15-29","2011","57","","" +"BG","F","POP","TOTAL","OC2","UNK","Y30-49","2011","275","","" +"BG","F","POP","TOTAL","OC2","UNK","Y50-64","2011","143","","" +"BG","F","POP","TOTAL","OC2","UNK","Y65-84","2011","6","","" +"BG","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","A","Y15-29","2011","118","","" +"BG","F","POP","TOTAL","OC3","A","Y30-49","2011","409","","" +"BG","F","POP","TOTAL","OC3","A","Y50-64","2011","283","","" +"BG","F","POP","TOTAL","OC3","A","Y65-84","2011","13","","" +"BG","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","B","Y15-29","2011","35","","" +"BG","F","POP","TOTAL","OC3","B","Y30-49","2011","349","","" +"BG","F","POP","TOTAL","OC3","B","Y50-64","2011","152","","" +"BG","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","C","Y15-29","2011","2508","","" +"BG","F","POP","TOTAL","OC3","C","Y30-49","2011","8876","","" +"BG","F","POP","TOTAL","OC3","C","Y50-64","2011","3467","","" +"BG","F","POP","TOTAL","OC3","C","Y65-84","2011","72","","" +"BG","F","POP","TOTAL","OC3","C","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","D","Y15-29","2011","144","","" +"BG","F","POP","TOTAL","OC3","D","Y30-49","2011","1255","","" +"BG","F","POP","TOTAL","OC3","D","Y50-64","2011","603","","" +"BG","F","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","E","Y15-29","2011","100","","" +"BG","F","POP","TOTAL","OC3","E","Y30-49","2011","380","","" +"BG","F","POP","TOTAL","OC3","E","Y50-64","2011","293","","" +"BG","F","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","F","Y15-29","2011","695","","" +"BG","F","POP","TOTAL","OC3","F","Y30-49","2011","1454","","" +"BG","F","POP","TOTAL","OC3","F","Y50-64","2011","1096","","" +"BG","F","POP","TOTAL","OC3","F","Y65-84","2011","40","","" +"BG","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","G","Y15-29","2011","3321","","" +"BG","F","POP","TOTAL","OC3","G","Y30-49","2011","6813","","" +"BG","F","POP","TOTAL","OC3","G","Y50-64","2011","2228","","" +"BG","F","POP","TOTAL","OC3","G","Y65-84","2011","184","","" +"BG","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","H","Y15-29","2011","617","","" +"BG","F","POP","TOTAL","OC3","H","Y30-49","2011","1860","","" +"BG","F","POP","TOTAL","OC3","H","Y50-64","2011","826","","" +"BG","F","POP","TOTAL","OC3","H","Y65-84","2011","5","","" +"BG","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","I","Y15-29","2011","418","","" +"BG","F","POP","TOTAL","OC3","I","Y30-49","2011","763","","" +"BG","F","POP","TOTAL","OC3","I","Y50-64","2011","356","","" +"BG","F","POP","TOTAL","OC3","I","Y65-84","2011","8","","" +"BG","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","J","Y15-29","2011","1763","","" +"BG","F","POP","TOTAL","OC3","J","Y30-49","2011","2347","","" +"BG","F","POP","TOTAL","OC3","J","Y50-64","2011","726","","" +"BG","F","POP","TOTAL","OC3","J","Y65-84","2011","18","","" +"BG","F","POP","TOTAL","OC3","J","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","K","Y15-29","2011","3259","","" +"BG","F","POP","TOTAL","OC3","K","Y30-49","2011","5917","","" +"BG","F","POP","TOTAL","OC3","K","Y50-64","2011","1448","","" +"BG","F","POP","TOTAL","OC3","K","Y65-84","2011","55","","" +"BG","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","L","Y15-29","2011","403","","" +"BG","F","POP","TOTAL","OC3","L","Y30-49","2011","991","","" +"BG","F","POP","TOTAL","OC3","L","Y50-64","2011","511","","" +"BG","F","POP","TOTAL","OC3","L","Y65-84","2011","12","","" +"BG","F","POP","TOTAL","OC3","L","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","M","Y15-29","2011","2283","","" +"BG","F","POP","TOTAL","OC3","M","Y30-49","2011","3412","","" +"BG","F","POP","TOTAL","OC3","M","Y50-64","2011","1563","","" +"BG","F","POP","TOTAL","OC3","M","Y65-84","2011","57","","" +"BG","F","POP","TOTAL","OC3","M","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","N","Y15-29","2011","761","","" +"BG","F","POP","TOTAL","OC3","N","Y30-49","2011","928","","" +"BG","F","POP","TOTAL","OC3","N","Y50-64","2011","359","","" +"BG","F","POP","TOTAL","OC3","N","Y65-84","2011","13","","" +"BG","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","O","Y15-29","2011","1977","","" +"BG","F","POP","TOTAL","OC3","O","Y30-49","2011","8873","","" +"BG","F","POP","TOTAL","OC3","O","Y50-64","2011","5417","","" +"BG","F","POP","TOTAL","OC3","O","Y65-84","2011","65","","" +"BG","F","POP","TOTAL","OC3","O","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","P","Y15-29","2011","233","","" +"BG","F","POP","TOTAL","OC3","P","Y30-49","2011","783","","" +"BG","F","POP","TOTAL","OC3","P","Y50-64","2011","641","","" +"BG","F","POP","TOTAL","OC3","P","Y65-84","2011","19","","" +"BG","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","Q","Y15-29","2011","705","","" +"BG","F","POP","TOTAL","OC3","Q","Y30-49","2011","3222","","" +"BG","F","POP","TOTAL","OC3","Q","Y50-64","2011","2640","","" +"BG","F","POP","TOTAL","OC3","Q","Y65-84","2011","152","","" +"BG","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","R","Y15-29","2011","518","","" +"BG","F","POP","TOTAL","OC3","R","Y30-49","2011","1117","","" +"BG","F","POP","TOTAL","OC3","R","Y50-64","2011","594","","" +"BG","F","POP","TOTAL","OC3","R","Y65-84","2011","28","","" +"BG","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","S","Y15-29","2011","447","","" +"BG","F","POP","TOTAL","OC3","S","Y30-49","2011","1153","","" +"BG","F","POP","TOTAL","OC3","S","Y50-64","2011","623","","" +"BG","F","POP","TOTAL","OC3","S","Y65-84","2011","39","","" +"BG","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","T","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC3","T","Y30-49","2011","7","","" +"BG","F","POP","TOTAL","OC3","T","Y50-64","2011","3","","" +"BG","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","U","Y15-29","2011","20","","" +"BG","F","POP","TOTAL","OC3","U","Y30-49","2011","58","","" +"BG","F","POP","TOTAL","OC3","U","Y50-64","2011","28","","" +"BG","F","POP","TOTAL","OC3","U","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC3","UNK","Y15-29","2011","20","","" +"BG","F","POP","TOTAL","OC3","UNK","Y30-49","2011","47","","" +"BG","F","POP","TOTAL","OC3","UNK","Y50-64","2011","22","","" +"BG","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","A","Y15-29","2011","510","","" +"BG","F","POP","TOTAL","OC4","A","Y30-49","2011","1821","","" +"BG","F","POP","TOTAL","OC4","A","Y50-64","2011","1699","","" +"BG","F","POP","TOTAL","OC4","A","Y65-84","2011","64","","" +"BG","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","B","Y15-29","2011","97","","" +"BG","F","POP","TOTAL","OC4","B","Y30-49","2011","496","","" +"BG","F","POP","TOTAL","OC4","B","Y50-64","2011","375","","" +"BG","F","POP","TOTAL","OC4","B","Y65-84","2011","11","","" +"BG","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","C","Y15-29","2011","3805","","" +"BG","F","POP","TOTAL","OC4","C","Y30-49","2011","12595","","" +"BG","F","POP","TOTAL","OC4","C","Y50-64","2011","6361","","" +"BG","F","POP","TOTAL","OC4","C","Y65-84","2011","139","","" +"BG","F","POP","TOTAL","OC4","C","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","D","Y15-29","2011","196","","" +"BG","F","POP","TOTAL","OC4","D","Y30-49","2011","1039","","" +"BG","F","POP","TOTAL","OC4","D","Y50-64","2011","663","","" +"BG","F","POP","TOTAL","OC4","D","Y65-84","2011","5","","" +"BG","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","E","Y15-29","2011","243","","" +"BG","F","POP","TOTAL","OC4","E","Y30-49","2011","1393","","" +"BG","F","POP","TOTAL","OC4","E","Y50-64","2011","1104","","" +"BG","F","POP","TOTAL","OC4","E","Y65-84","2011","13","","" +"BG","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","F","Y15-29","2011","2473","","" +"BG","F","POP","TOTAL","OC4","F","Y30-49","2011","4922","","" +"BG","F","POP","TOTAL","OC4","F","Y50-64","2011","2216","","" +"BG","F","POP","TOTAL","OC4","F","Y65-84","2011","77","","" +"BG","F","POP","TOTAL","OC4","F","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","G","Y15-29","2011","8798","","" +"BG","F","POP","TOTAL","OC4","G","Y30-49","2011","17365","","" +"BG","F","POP","TOTAL","OC4","G","Y50-64","2011","5011","","" +"BG","F","POP","TOTAL","OC4","G","Y65-84","2011","156","","" +"BG","F","POP","TOTAL","OC4","G","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","H","Y15-29","2011","2260","","" +"BG","F","POP","TOTAL","OC4","H","Y30-49","2011","9860","","" +"BG","F","POP","TOTAL","OC4","H","Y50-64","2011","6752","","" +"BG","F","POP","TOTAL","OC4","H","Y65-84","2011","77","","" +"BG","F","POP","TOTAL","OC4","H","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","I","Y15-29","2011","3000","","" +"BG","F","POP","TOTAL","OC4","I","Y30-49","2011","3541","","" +"BG","F","POP","TOTAL","OC4","I","Y50-64","2011","1312","","" +"BG","F","POP","TOTAL","OC4","I","Y65-84","2011","29","","" +"BG","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","J","Y15-29","2011","2812","","" +"BG","F","POP","TOTAL","OC4","J","Y30-49","2011","3356","","" +"BG","F","POP","TOTAL","OC4","J","Y50-64","2011","1074","","" +"BG","F","POP","TOTAL","OC4","J","Y65-84","2011","46","","" +"BG","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","K","Y15-29","2011","5025","","" +"BG","F","POP","TOTAL","OC4","K","Y30-49","2011","7583","","" +"BG","F","POP","TOTAL","OC4","K","Y50-64","2011","2420","","" +"BG","F","POP","TOTAL","OC4","K","Y65-84","2011","77","","" +"BG","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","L","Y15-29","2011","979","","" +"BG","F","POP","TOTAL","OC4","L","Y30-49","2011","1896","","" +"BG","F","POP","TOTAL","OC4","L","Y50-64","2011","1011","","" +"BG","F","POP","TOTAL","OC4","L","Y65-84","2011","31","","" +"BG","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","M","Y15-29","2011","4354","","" +"BG","F","POP","TOTAL","OC4","M","Y30-49","2011","7591","","" +"BG","F","POP","TOTAL","OC4","M","Y50-64","2011","3120","","" +"BG","F","POP","TOTAL","OC4","M","Y65-84","2011","124","","" +"BG","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","N","Y15-29","2011","2713","","" +"BG","F","POP","TOTAL","OC4","N","Y30-49","2011","4435","","" +"BG","F","POP","TOTAL","OC4","N","Y50-64","2011","1926","","" +"BG","F","POP","TOTAL","OC4","N","Y65-84","2011","111","","" +"BG","F","POP","TOTAL","OC4","N","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","O","Y15-29","2011","2167","","" +"BG","F","POP","TOTAL","OC4","O","Y30-49","2011","13125","","" +"BG","F","POP","TOTAL","OC4","O","Y50-64","2011","8470","","" +"BG","F","POP","TOTAL","OC4","O","Y65-84","2011","102","","" +"BG","F","POP","TOTAL","OC4","O","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","P","Y15-29","2011","824","","" +"BG","F","POP","TOTAL","OC4","P","Y30-49","2011","4470","","" +"BG","F","POP","TOTAL","OC4","P","Y50-64","2011","4398","","" +"BG","F","POP","TOTAL","OC4","P","Y65-84","2011","85","","" +"BG","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","Q","Y15-29","2011","837","","" +"BG","F","POP","TOTAL","OC4","Q","Y30-49","2011","3062","","" +"BG","F","POP","TOTAL","OC4","Q","Y50-64","2011","2345","","" +"BG","F","POP","TOTAL","OC4","Q","Y65-84","2011","85","","" +"BG","F","POP","TOTAL","OC4","Q","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","R","Y15-29","2011","2515","","" +"BG","F","POP","TOTAL","OC4","R","Y30-49","2011","2220","","" +"BG","F","POP","TOTAL","OC4","R","Y50-64","2011","1096","","" +"BG","F","POP","TOTAL","OC4","R","Y65-84","2011","70","","" +"BG","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","S","Y15-29","2011","1290","","" +"BG","F","POP","TOTAL","OC4","S","Y30-49","2011","2767","","" +"BG","F","POP","TOTAL","OC4","S","Y50-64","2011","1780","","" +"BG","F","POP","TOTAL","OC4","S","Y65-84","2011","123","","" +"BG","F","POP","TOTAL","OC4","S","Y_GE85","2011","3","","" +"BG","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","T","Y15-29","2011","10","","" +"BG","F","POP","TOTAL","OC4","T","Y30-49","2011","34","","" +"BG","F","POP","TOTAL","OC4","T","Y50-64","2011","16","","" +"BG","F","POP","TOTAL","OC4","T","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","U","Y15-29","2011","31","","" +"BG","F","POP","TOTAL","OC4","U","Y30-49","2011","160","","" +"BG","F","POP","TOTAL","OC4","U","Y50-64","2011","103","","" +"BG","F","POP","TOTAL","OC4","U","Y65-84","2011","9","","" +"BG","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC4","UNK","Y15-29","2011","107","","" +"BG","F","POP","TOTAL","OC4","UNK","Y30-49","2011","271","","" +"BG","F","POP","TOTAL","OC4","UNK","Y50-64","2011","144","","" +"BG","F","POP","TOTAL","OC4","UNK","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","A","Y15-29","2011","281","","" +"BG","F","POP","TOTAL","OC5","A","Y30-49","2011","975","","" +"BG","F","POP","TOTAL","OC5","A","Y50-64","2011","691","","" +"BG","F","POP","TOTAL","OC5","A","Y65-84","2011","28","","" +"BG","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","B","Y15-29","2011","38","","" +"BG","F","POP","TOTAL","OC5","B","Y30-49","2011","183","","" +"BG","F","POP","TOTAL","OC5","B","Y50-64","2011","153","","" +"BG","F","POP","TOTAL","OC5","B","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","C","Y15-29","2011","4180","","" +"BG","F","POP","TOTAL","OC5","C","Y30-49","2011","10119","","" +"BG","F","POP","TOTAL","OC5","C","Y50-64","2011","4190","","" +"BG","F","POP","TOTAL","OC5","C","Y65-84","2011","124","","" +"BG","F","POP","TOTAL","OC5","C","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","D","Y15-29","2011","74","","" +"BG","F","POP","TOTAL","OC5","D","Y30-49","2011","240","","" +"BG","F","POP","TOTAL","OC5","D","Y50-64","2011","156","","" +"BG","F","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","E","Y15-29","2011","47","","" +"BG","F","POP","TOTAL","OC5","E","Y30-49","2011","297","","" +"BG","F","POP","TOTAL","OC5","E","Y50-64","2011","232","","" +"BG","F","POP","TOTAL","OC5","E","Y65-84","2011","5","","" +"BG","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","F","Y15-29","2011","961","","" +"BG","F","POP","TOTAL","OC5","F","Y30-49","2011","1722","","" +"BG","F","POP","TOTAL","OC5","F","Y50-64","2011","766","","" +"BG","F","POP","TOTAL","OC5","F","Y65-84","2011","24","","" +"BG","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","G","Y15-29","2011","51028","","" +"BG","F","POP","TOTAL","OC5","G","Y30-49","2011","98626","","" +"BG","F","POP","TOTAL","OC5","G","Y50-64","2011","33438","","" +"BG","F","POP","TOTAL","OC5","G","Y65-84","2011","2014","","" +"BG","F","POP","TOTAL","OC5","G","Y_GE85","2011","15","","" +"BG","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","H","Y15-29","2011","1387","","" +"BG","F","POP","TOTAL","OC5","H","Y30-49","2011","4300","","" +"BG","F","POP","TOTAL","OC5","H","Y50-64","2011","2624","","" +"BG","F","POP","TOTAL","OC5","H","Y65-84","2011","57","","" +"BG","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","I","Y15-29","2011","24414","","" +"BG","F","POP","TOTAL","OC5","I","Y30-49","2011","28187","","" +"BG","F","POP","TOTAL","OC5","I","Y50-64","2011","10661","","" +"BG","F","POP","TOTAL","OC5","I","Y65-84","2011","262","","" +"BG","F","POP","TOTAL","OC5","I","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","J","Y15-29","2011","1547","","" +"BG","F","POP","TOTAL","OC5","J","Y30-49","2011","1542","","" +"BG","F","POP","TOTAL","OC5","J","Y50-64","2011","407","","" +"BG","F","POP","TOTAL","OC5","J","Y65-84","2011","26","","" +"BG","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","K","Y15-29","2011","905","","" +"BG","F","POP","TOTAL","OC5","K","Y30-49","2011","1329","","" +"BG","F","POP","TOTAL","OC5","K","Y50-64","2011","467","","" +"BG","F","POP","TOTAL","OC5","K","Y65-84","2011","15","","" +"BG","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","L","Y15-29","2011","567","","" +"BG","F","POP","TOTAL","OC5","L","Y30-49","2011","987","","" +"BG","F","POP","TOTAL","OC5","L","Y50-64","2011","568","","" +"BG","F","POP","TOTAL","OC5","L","Y65-84","2011","21","","" +"BG","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","M","Y15-29","2011","1099","","" +"BG","F","POP","TOTAL","OC5","M","Y30-49","2011","2520","","" +"BG","F","POP","TOTAL","OC5","M","Y50-64","2011","1500","","" +"BG","F","POP","TOTAL","OC5","M","Y65-84","2011","41","","" +"BG","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","N","Y15-29","2011","1645","","" +"BG","F","POP","TOTAL","OC5","N","Y30-49","2011","3709","","" +"BG","F","POP","TOTAL","OC5","N","Y50-64","2011","1489","","" +"BG","F","POP","TOTAL","OC5","N","Y65-84","2011","76","","" +"BG","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","O","Y15-29","2011","1225","","" +"BG","F","POP","TOTAL","OC5","O","Y30-49","2011","7760","","" +"BG","F","POP","TOTAL","OC5","O","Y50-64","2011","6427","","" +"BG","F","POP","TOTAL","OC5","O","Y65-84","2011","124","","" +"BG","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","P","Y15-29","2011","723","","" +"BG","F","POP","TOTAL","OC5","P","Y30-49","2011","6928","","" +"BG","F","POP","TOTAL","OC5","P","Y50-64","2011","7184","","" +"BG","F","POP","TOTAL","OC5","P","Y65-84","2011","184","","" +"BG","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","Q","Y15-29","2011","1120","","" +"BG","F","POP","TOTAL","OC5","Q","Y30-49","2011","11466","","" +"BG","F","POP","TOTAL","OC5","Q","Y50-64","2011","12553","","" +"BG","F","POP","TOTAL","OC5","Q","Y65-84","2011","306","","" +"BG","F","POP","TOTAL","OC5","Q","Y_GE85","2011","5","","" +"BG","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","R","Y15-29","2011","1876","","" +"BG","F","POP","TOTAL","OC5","R","Y30-49","2011","1967","","" +"BG","F","POP","TOTAL","OC5","R","Y50-64","2011","1232","","" +"BG","F","POP","TOTAL","OC5","R","Y65-84","2011","52","","" +"BG","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","S","Y15-29","2011","3899","","" +"BG","F","POP","TOTAL","OC5","S","Y30-49","2011","8853","","" +"BG","F","POP","TOTAL","OC5","S","Y50-64","2011","3399","","" +"BG","F","POP","TOTAL","OC5","S","Y65-84","2011","274","","" +"BG","F","POP","TOTAL","OC5","S","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","T","Y15-29","2011","89","","" +"BG","F","POP","TOTAL","OC5","T","Y30-49","2011","455","","" +"BG","F","POP","TOTAL","OC5","T","Y50-64","2011","377","","" +"BG","F","POP","TOTAL","OC5","T","Y65-84","2011","41","","" +"BG","F","POP","TOTAL","OC5","T","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","U","Y15-29","2011","10","","" +"BG","F","POP","TOTAL","OC5","U","Y30-49","2011","72","","" +"BG","F","POP","TOTAL","OC5","U","Y50-64","2011","48","","" +"BG","F","POP","TOTAL","OC5","U","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC5","UNK","Y15-29","2011","272","","" +"BG","F","POP","TOTAL","OC5","UNK","Y30-49","2011","562","","" +"BG","F","POP","TOTAL","OC5","UNK","Y50-64","2011","259","","" +"BG","F","POP","TOTAL","OC5","UNK","Y65-84","2011","10","","" +"BG","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","A","Y15-29","2011","4259","","" +"BG","F","POP","TOTAL","OC6","A","Y30-49","2011","16946","","" +"BG","F","POP","TOTAL","OC6","A","Y50-64","2011","12169","","" +"BG","F","POP","TOTAL","OC6","A","Y65-84","2011","625","","" +"BG","F","POP","TOTAL","OC6","A","Y_GE85","2011","21","","" +"BG","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","B","Y15-29","2011","5","","" +"BG","F","POP","TOTAL","OC6","B","Y30-49","2011","7","","" +"BG","F","POP","TOTAL","OC6","B","Y50-64","2011","8","","" +"BG","F","POP","TOTAL","OC6","B","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","C","Y15-29","2011","137","","" +"BG","F","POP","TOTAL","OC6","C","Y30-49","2011","552","","" +"BG","F","POP","TOTAL","OC6","C","Y50-64","2011","285","","" +"BG","F","POP","TOTAL","OC6","C","Y65-84","2011","11","","" +"BG","F","POP","TOTAL","OC6","C","Y_GE85","2011","3","","" +"BG","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC6","D","Y50-64","2011","3","","" +"BG","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","E","Y15-29","2011","5","","" +"BG","F","POP","TOTAL","OC6","E","Y30-49","2011","43","","" +"BG","F","POP","TOTAL","OC6","E","Y50-64","2011","23","","" +"BG","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","F","Y15-29","2011","9","","" +"BG","F","POP","TOTAL","OC6","F","Y30-49","2011","21","","" +"BG","F","POP","TOTAL","OC6","F","Y50-64","2011","17","","" +"BG","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","G","Y15-29","2011","64","","" +"BG","F","POP","TOTAL","OC6","G","Y30-49","2011","225","","" +"BG","F","POP","TOTAL","OC6","G","Y50-64","2011","118","","" +"BG","F","POP","TOTAL","OC6","G","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","H","Y15-29","2011","4","","" +"BG","F","POP","TOTAL","OC6","H","Y30-49","2011","14","","" +"BG","F","POP","TOTAL","OC6","H","Y50-64","2011","3","","" +"BG","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","I","Y15-29","2011","22","","" +"BG","F","POP","TOTAL","OC6","I","Y30-49","2011","66","","" +"BG","F","POP","TOTAL","OC6","I","Y50-64","2011","44","","" +"BG","F","POP","TOTAL","OC6","I","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","J","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC6","J","Y30-49","2011","4","","" +"BG","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","K","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC6","K","Y30-49","2011","7","","" +"BG","F","POP","TOTAL","OC6","K","Y50-64","2011","4","","" +"BG","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","L","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC6","L","Y30-49","2011","14","","" +"BG","F","POP","TOTAL","OC6","L","Y50-64","2011","7","","" +"BG","F","POP","TOTAL","OC6","L","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","M","Y15-29","2011","22","","" +"BG","F","POP","TOTAL","OC6","M","Y30-49","2011","104","","" +"BG","F","POP","TOTAL","OC6","M","Y50-64","2011","125","","" +"BG","F","POP","TOTAL","OC6","M","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","N","Y15-29","2011","30","","" +"BG","F","POP","TOTAL","OC6","N","Y30-49","2011","149","","" +"BG","F","POP","TOTAL","OC6","N","Y50-64","2011","118","","" +"BG","F","POP","TOTAL","OC6","N","Y65-84","2011","3","","" +"BG","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","O","Y15-29","2011","27","","" +"BG","F","POP","TOTAL","OC6","O","Y30-49","2011","128","","" +"BG","F","POP","TOTAL","OC6","O","Y50-64","2011","122","","" +"BG","F","POP","TOTAL","OC6","O","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","P","Y15-29","2011","4","","" +"BG","F","POP","TOTAL","OC6","P","Y30-49","2011","44","","" +"BG","F","POP","TOTAL","OC6","P","Y50-64","2011","18","","" +"BG","F","POP","TOTAL","OC6","P","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC6","Q","Y30-49","2011","13","","" +"BG","F","POP","TOTAL","OC6","Q","Y50-64","2011","9","","" +"BG","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","R","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC6","R","Y30-49","2011","23","","" +"BG","F","POP","TOTAL","OC6","R","Y50-64","2011","18","","" +"BG","F","POP","TOTAL","OC6","R","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","S","Y15-29","2011","6","","" +"BG","F","POP","TOTAL","OC6","S","Y30-49","2011","31","","" +"BG","F","POP","TOTAL","OC6","S","Y50-64","2011","19","","" +"BG","F","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC6","S","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","T","Y15-29","2011","19","","" +"BG","F","POP","TOTAL","OC6","T","Y30-49","2011","98","","" +"BG","F","POP","TOTAL","OC6","T","Y50-64","2011","86","","" +"BG","F","POP","TOTAL","OC6","T","Y65-84","2011","19","","" +"BG","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","U","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC6","U","Y30-49","2011","11","","" +"BG","F","POP","TOTAL","OC6","U","Y50-64","2011","10","","" +"BG","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC6","UNK","Y15-29","2011","18","","" +"BG","F","POP","TOTAL","OC6","UNK","Y30-49","2011","35","","" +"BG","F","POP","TOTAL","OC6","UNK","Y50-64","2011","38","","" +"BG","F","POP","TOTAL","OC6","UNK","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","A","Y15-29","2011","56","","" +"BG","F","POP","TOTAL","OC7","A","Y30-49","2011","319","","" +"BG","F","POP","TOTAL","OC7","A","Y50-64","2011","204","","" +"BG","F","POP","TOTAL","OC7","A","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","B","Y15-29","2011","20","","" +"BG","F","POP","TOTAL","OC7","B","Y30-49","2011","240","","" +"BG","F","POP","TOTAL","OC7","B","Y50-64","2011","122","","" +"BG","F","POP","TOTAL","OC7","B","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","C","Y15-29","2011","12926","","" +"BG","F","POP","TOTAL","OC7","C","Y30-49","2011","57235","","" +"BG","F","POP","TOTAL","OC7","C","Y50-64","2011","23953","","" +"BG","F","POP","TOTAL","OC7","C","Y65-84","2011","360","","" +"BG","F","POP","TOTAL","OC7","C","Y_GE85","2011","4","","" +"BG","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","D","Y15-29","2011","21","","" +"BG","F","POP","TOTAL","OC7","D","Y30-49","2011","384","","" +"BG","F","POP","TOTAL","OC7","D","Y50-64","2011","160","","" +"BG","F","POP","TOTAL","OC7","D","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","E","Y15-29","2011","17","","" +"BG","F","POP","TOTAL","OC7","E","Y30-49","2011","128","","" +"BG","F","POP","TOTAL","OC7","E","Y50-64","2011","84","","" +"BG","F","POP","TOTAL","OC7","E","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","F","Y15-29","2011","238","","" +"BG","F","POP","TOTAL","OC7","F","Y30-49","2011","963","","" +"BG","F","POP","TOTAL","OC7","F","Y50-64","2011","562","","" +"BG","F","POP","TOTAL","OC7","F","Y65-84","2011","33","","" +"BG","F","POP","TOTAL","OC7","F","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","G","Y15-29","2011","695","","" +"BG","F","POP","TOTAL","OC7","G","Y30-49","2011","2807","","" +"BG","F","POP","TOTAL","OC7","G","Y50-64","2011","1014","","" +"BG","F","POP","TOTAL","OC7","G","Y65-84","2011","24","","" +"BG","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","H","Y15-29","2011","35","","" +"BG","F","POP","TOTAL","OC7","H","Y30-49","2011","221","","" +"BG","F","POP","TOTAL","OC7","H","Y50-64","2011","156","","" +"BG","F","POP","TOTAL","OC7","H","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","I","Y15-29","2011","276","","" +"BG","F","POP","TOTAL","OC7","I","Y30-49","2011","809","","" +"BG","F","POP","TOTAL","OC7","I","Y50-64","2011","337","","" +"BG","F","POP","TOTAL","OC7","I","Y65-84","2011","6","","" +"BG","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","J","Y15-29","2011","74","","" +"BG","F","POP","TOTAL","OC7","J","Y30-49","2011","280","","" +"BG","F","POP","TOTAL","OC7","J","Y50-64","2011","140","","" +"BG","F","POP","TOTAL","OC7","J","Y65-84","2011","8","","" +"BG","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","K","Y15-29","2011","3","","" +"BG","F","POP","TOTAL","OC7","K","Y30-49","2011","19","","" +"BG","F","POP","TOTAL","OC7","K","Y50-64","2011","8","","" +"BG","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","L","Y15-29","2011","14","","" +"BG","F","POP","TOTAL","OC7","L","Y30-49","2011","77","","" +"BG","F","POP","TOTAL","OC7","L","Y50-64","2011","85","","" +"BG","F","POP","TOTAL","OC7","L","Y65-84","2011","3","","" +"BG","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","M","Y15-29","2011","168","","" +"BG","F","POP","TOTAL","OC7","M","Y30-49","2011","529","","" +"BG","F","POP","TOTAL","OC7","M","Y50-64","2011","224","","" +"BG","F","POP","TOTAL","OC7","M","Y65-84","2011","17","","" +"BG","F","POP","TOTAL","OC7","M","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","N","Y15-29","2011","63","","" +"BG","F","POP","TOTAL","OC7","N","Y30-49","2011","188","","" +"BG","F","POP","TOTAL","OC7","N","Y50-64","2011","84","","" +"BG","F","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","O","Y15-29","2011","23","","" +"BG","F","POP","TOTAL","OC7","O","Y30-49","2011","205","","" +"BG","F","POP","TOTAL","OC7","O","Y50-64","2011","160","","" +"BG","F","POP","TOTAL","OC7","O","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","P","Y15-29","2011","14","","" +"BG","F","POP","TOTAL","OC7","P","Y30-49","2011","127","","" +"BG","F","POP","TOTAL","OC7","P","Y50-64","2011","151","","" +"BG","F","POP","TOTAL","OC7","P","Y65-84","2011","3","","" +"BG","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","Q","Y15-29","2011","22","","" +"BG","F","POP","TOTAL","OC7","Q","Y30-49","2011","97","","" +"BG","F","POP","TOTAL","OC7","Q","Y50-64","2011","115","","" +"BG","F","POP","TOTAL","OC7","Q","Y65-84","2011","7","","" +"BG","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","R","Y15-29","2011","33","","" +"BG","F","POP","TOTAL","OC7","R","Y30-49","2011","184","","" +"BG","F","POP","TOTAL","OC7","R","Y50-64","2011","101","","" +"BG","F","POP","TOTAL","OC7","R","Y65-84","2011","8","","" +"BG","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","S","Y15-29","2011","245","","" +"BG","F","POP","TOTAL","OC7","S","Y30-49","2011","1393","","" +"BG","F","POP","TOTAL","OC7","S","Y50-64","2011","567","","" +"BG","F","POP","TOTAL","OC7","S","Y65-84","2011","52","","" +"BG","F","POP","TOTAL","OC7","S","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","T","Y15-29","2011","20","","" +"BG","F","POP","TOTAL","OC7","T","Y30-49","2011","54","","" +"BG","F","POP","TOTAL","OC7","T","Y50-64","2011","41","","" +"BG","F","POP","TOTAL","OC7","T","Y65-84","2011","7","","" +"BG","F","POP","TOTAL","OC7","T","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC7","U","Y30-49","2011","5","","" +"BG","F","POP","TOTAL","OC7","U","Y50-64","2011","4","","" +"BG","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC7","UNK","Y15-29","2011","29","","" +"BG","F","POP","TOTAL","OC7","UNK","Y30-49","2011","130","","" +"BG","F","POP","TOTAL","OC7","UNK","Y50-64","2011","78","","" +"BG","F","POP","TOTAL","OC7","UNK","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","A","Y15-29","2011","34","","" +"BG","F","POP","TOTAL","OC8","A","Y30-49","2011","135","","" +"BG","F","POP","TOTAL","OC8","A","Y50-64","2011","61","","" +"BG","F","POP","TOTAL","OC8","A","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","B","Y15-29","2011","23","","" +"BG","F","POP","TOTAL","OC8","B","Y30-49","2011","611","","" +"BG","F","POP","TOTAL","OC8","B","Y50-64","2011","382","","" +"BG","F","POP","TOTAL","OC8","B","Y65-84","2011","11","","" +"BG","F","POP","TOTAL","OC8","B","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","C","Y15-29","2011","12220","","" +"BG","F","POP","TOTAL","OC8","C","Y30-49","2011","48168","","" +"BG","F","POP","TOTAL","OC8","C","Y50-64","2011","18922","","" +"BG","F","POP","TOTAL","OC8","C","Y65-84","2011","219","","" +"BG","F","POP","TOTAL","OC8","C","Y_GE85","2011","6","","" +"BG","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","D","Y15-29","2011","35","","" +"BG","F","POP","TOTAL","OC8","D","Y30-49","2011","433","","" +"BG","F","POP","TOTAL","OC8","D","Y50-64","2011","201","","" +"BG","F","POP","TOTAL","OC8","D","Y65-84","2011","8","","" +"BG","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","E","Y15-29","2011","22","","" +"BG","F","POP","TOTAL","OC8","E","Y30-49","2011","117","","" +"BG","F","POP","TOTAL","OC8","E","Y50-64","2011","55","","" +"BG","F","POP","TOTAL","OC8","E","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","F","Y15-29","2011","53","","" +"BG","F","POP","TOTAL","OC8","F","Y30-49","2011","262","","" +"BG","F","POP","TOTAL","OC8","F","Y50-64","2011","228","","" +"BG","F","POP","TOTAL","OC8","F","Y65-84","2011","11","","" +"BG","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","G","Y15-29","2011","468","","" +"BG","F","POP","TOTAL","OC8","G","Y30-49","2011","1504","","" +"BG","F","POP","TOTAL","OC8","G","Y50-64","2011","534","","" +"BG","F","POP","TOTAL","OC8","G","Y65-84","2011","5","","" +"BG","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","H","Y15-29","2011","121","","" +"BG","F","POP","TOTAL","OC8","H","Y30-49","2011","1213","","" +"BG","F","POP","TOTAL","OC8","H","Y50-64","2011","716","","" +"BG","F","POP","TOTAL","OC8","H","Y65-84","2011","16","","" +"BG","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","I","Y15-29","2011","81","","" +"BG","F","POP","TOTAL","OC8","I","Y30-49","2011","179","","" +"BG","F","POP","TOTAL","OC8","I","Y50-64","2011","82","","" +"BG","F","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","J","Y15-29","2011","31","","" +"BG","F","POP","TOTAL","OC8","J","Y30-49","2011","90","","" +"BG","F","POP","TOTAL","OC8","J","Y50-64","2011","47","","" +"BG","F","POP","TOTAL","OC8","J","Y65-84","2011","3","","" +"BG","F","POP","TOTAL","OC8","J","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","K","Y15-29","2011","6","","" +"BG","F","POP","TOTAL","OC8","K","Y30-49","2011","12","","" +"BG","F","POP","TOTAL","OC8","K","Y50-64","2011","4","","" +"BG","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","L","Y15-29","2011","9","","" +"BG","F","POP","TOTAL","OC8","L","Y30-49","2011","52","","" +"BG","F","POP","TOTAL","OC8","L","Y50-64","2011","53","","" +"BG","F","POP","TOTAL","OC8","L","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","M","Y15-29","2011","61","","" +"BG","F","POP","TOTAL","OC8","M","Y30-49","2011","171","","" +"BG","F","POP","TOTAL","OC8","M","Y50-64","2011","62","","" +"BG","F","POP","TOTAL","OC8","M","Y65-84","2011","6","","" +"BG","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","N","Y15-29","2011","71","","" +"BG","F","POP","TOTAL","OC8","N","Y30-49","2011","199","","" +"BG","F","POP","TOTAL","OC8","N","Y50-64","2011","73","","" +"BG","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","O","Y15-29","2011","12","","" +"BG","F","POP","TOTAL","OC8","O","Y30-49","2011","67","","" +"BG","F","POP","TOTAL","OC8","O","Y50-64","2011","78","","" +"BG","F","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC8","O","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","P","Y15-29","2011","6","","" +"BG","F","POP","TOTAL","OC8","P","Y30-49","2011","46","","" +"BG","F","POP","TOTAL","OC8","P","Y50-64","2011","80","","" +"BG","F","POP","TOTAL","OC8","P","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","Q","Y15-29","2011","10","","" +"BG","F","POP","TOTAL","OC8","Q","Y30-49","2011","125","","" +"BG","F","POP","TOTAL","OC8","Q","Y50-64","2011","94","","" +"BG","F","POP","TOTAL","OC8","Q","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","R","Y15-29","2011","19","","" +"BG","F","POP","TOTAL","OC8","R","Y30-49","2011","44","","" +"BG","F","POP","TOTAL","OC8","R","Y50-64","2011","22","","" +"BG","F","POP","TOTAL","OC8","R","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","S","Y15-29","2011","84","","" +"BG","F","POP","TOTAL","OC8","S","Y30-49","2011","387","","" +"BG","F","POP","TOTAL","OC8","S","Y50-64","2011","226","","" +"BG","F","POP","TOTAL","OC8","S","Y65-84","2011","15","","" +"BG","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC8","T","Y30-49","2011","13","","" +"BG","F","POP","TOTAL","OC8","T","Y50-64","2011","10","","" +"BG","F","POP","TOTAL","OC8","T","Y65-84","2011","3","","" +"BG","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","U","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","OC8","U","Y30-49","2011",":","c","" +"BG","F","POP","TOTAL","OC8","U","Y50-64","2011","3","","" +"BG","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC8","UNK","Y15-29","2011","21","","" +"BG","F","POP","TOTAL","OC8","UNK","Y30-49","2011","93","","" +"BG","F","POP","TOTAL","OC8","UNK","Y50-64","2011","54","","" +"BG","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","A","Y15-29","2011","1581","","" +"BG","F","POP","TOTAL","OC9","A","Y30-49","2011","5912","","" +"BG","F","POP","TOTAL","OC9","A","Y50-64","2011","3858","","" +"BG","F","POP","TOTAL","OC9","A","Y65-84","2011","157","","" +"BG","F","POP","TOTAL","OC9","A","Y_GE85","2011","11","","" +"BG","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","B","Y15-29","2011","47","","" +"BG","F","POP","TOTAL","OC9","B","Y30-49","2011","531","","" +"BG","F","POP","TOTAL","OC9","B","Y50-64","2011","448","","" +"BG","F","POP","TOTAL","OC9","B","Y65-84","2011","9","","" +"BG","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","C","Y15-29","2011","7772","","" +"BG","F","POP","TOTAL","OC9","C","Y30-49","2011","27960","","" +"BG","F","POP","TOTAL","OC9","C","Y50-64","2011","14878","","" +"BG","F","POP","TOTAL","OC9","C","Y65-84","2011","318","","" +"BG","F","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","D","Y15-29","2011","38","","" +"BG","F","POP","TOTAL","OC9","D","Y30-49","2011","483","","" +"BG","F","POP","TOTAL","OC9","D","Y50-64","2011","443","","" +"BG","F","POP","TOTAL","OC9","D","Y65-84","2011","3","","" +"BG","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","E","Y15-29","2011","639","","" +"BG","F","POP","TOTAL","OC9","E","Y30-49","2011","3711","","" +"BG","F","POP","TOTAL","OC9","E","Y50-64","2011","2137","","" +"BG","F","POP","TOTAL","OC9","E","Y65-84","2011","21","","" +"BG","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","F","Y15-29","2011","452","","" +"BG","F","POP","TOTAL","OC9","F","Y30-49","2011","1694","","" +"BG","F","POP","TOTAL","OC9","F","Y50-64","2011","1209","","" +"BG","F","POP","TOTAL","OC9","F","Y65-84","2011","69","","" +"BG","F","POP","TOTAL","OC9","F","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","G","Y15-29","2011","3057","","" +"BG","F","POP","TOTAL","OC9","G","Y30-49","2011","8151","","" +"BG","F","POP","TOTAL","OC9","G","Y50-64","2011","4681","","" +"BG","F","POP","TOTAL","OC9","G","Y65-84","2011","289","","" +"BG","F","POP","TOTAL","OC9","G","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","H","Y15-29","2011","334","","" +"BG","F","POP","TOTAL","OC9","H","Y30-49","2011","1908","","" +"BG","F","POP","TOTAL","OC9","H","Y50-64","2011","1685","","" +"BG","F","POP","TOTAL","OC9","H","Y65-84","2011","58","","" +"BG","F","POP","TOTAL","OC9","H","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","I","Y15-29","2011","2035","","" +"BG","F","POP","TOTAL","OC9","I","Y30-49","2011","7165","","" +"BG","F","POP","TOTAL","OC9","I","Y50-64","2011","5217","","" +"BG","F","POP","TOTAL","OC9","I","Y65-84","2011","225","","" +"BG","F","POP","TOTAL","OC9","I","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","J","Y15-29","2011","80","","" +"BG","F","POP","TOTAL","OC9","J","Y30-49","2011","307","","" +"BG","F","POP","TOTAL","OC9","J","Y50-64","2011","298","","" +"BG","F","POP","TOTAL","OC9","J","Y65-84","2011","30","","" +"BG","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","K","Y15-29","2011","91","","" +"BG","F","POP","TOTAL","OC9","K","Y30-49","2011","311","","" +"BG","F","POP","TOTAL","OC9","K","Y50-64","2011","443","","" +"BG","F","POP","TOTAL","OC9","K","Y65-84","2011","70","","" +"BG","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","L","Y15-29","2011","89","","" +"BG","F","POP","TOTAL","OC9","L","Y30-49","2011","552","","" +"BG","F","POP","TOTAL","OC9","L","Y50-64","2011","562","","" +"BG","F","POP","TOTAL","OC9","L","Y65-84","2011","37","","" +"BG","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","M","Y15-29","2011","227","","" +"BG","F","POP","TOTAL","OC9","M","Y30-49","2011","853","","" +"BG","F","POP","TOTAL","OC9","M","Y50-64","2011","905","","" +"BG","F","POP","TOTAL","OC9","M","Y65-84","2011","84","","" +"BG","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","N","Y15-29","2011","1027","","" +"BG","F","POP","TOTAL","OC9","N","Y30-49","2011","4108","","" +"BG","F","POP","TOTAL","OC9","N","Y50-64","2011","2890","","" +"BG","F","POP","TOTAL","OC9","N","Y65-84","2011","131","","" +"BG","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","O","Y15-29","2011","1693","","" +"BG","F","POP","TOTAL","OC9","O","Y30-49","2011","8503","","" +"BG","F","POP","TOTAL","OC9","O","Y50-64","2011","7419","","" +"BG","F","POP","TOTAL","OC9","O","Y65-84","2011","118","","" +"BG","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","P","Y15-29","2011","348","","" +"BG","F","POP","TOTAL","OC9","P","Y30-49","2011","5388","","" +"BG","F","POP","TOTAL","OC9","P","Y50-64","2011","7541","","" +"BG","F","POP","TOTAL","OC9","P","Y65-84","2011","176","","" +"BG","F","POP","TOTAL","OC9","P","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","Q","Y15-29","2011","294","","" +"BG","F","POP","TOTAL","OC9","Q","Y30-49","2011","2629","","" +"BG","F","POP","TOTAL","OC9","Q","Y50-64","2011","3192","","" +"BG","F","POP","TOTAL","OC9","Q","Y65-84","2011","88","","" +"BG","F","POP","TOTAL","OC9","Q","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","R","Y15-29","2011","139","","" +"BG","F","POP","TOTAL","OC9","R","Y30-49","2011","595","","" +"BG","F","POP","TOTAL","OC9","R","Y50-64","2011","826","","" +"BG","F","POP","TOTAL","OC9","R","Y65-84","2011","69","","" +"BG","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","S","Y15-29","2011","456","","" +"BG","F","POP","TOTAL","OC9","S","Y30-49","2011","1741","","" +"BG","F","POP","TOTAL","OC9","S","Y50-64","2011","1421","","" +"BG","F","POP","TOTAL","OC9","S","Y65-84","2011","127","","" +"BG","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","T","Y15-29","2011","153","","" +"BG","F","POP","TOTAL","OC9","T","Y30-49","2011","507","","" +"BG","F","POP","TOTAL","OC9","T","Y50-64","2011","306","","" +"BG","F","POP","TOTAL","OC9","T","Y65-84","2011","33","","" +"BG","F","POP","TOTAL","OC9","T","Y_GE85","2011","4","","" +"BG","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","U","Y15-29","2011","13","","" +"BG","F","POP","TOTAL","OC9","U","Y30-49","2011","67","","" +"BG","F","POP","TOTAL","OC9","U","Y50-64","2011","65","","" +"BG","F","POP","TOTAL","OC9","U","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","OC9","UNK","Y15-29","2011","66","","" +"BG","F","POP","TOTAL","OC9","UNK","Y30-49","2011","275","","" +"BG","F","POP","TOTAL","OC9","UNK","Y50-64","2011","176","","" +"BG","F","POP","TOTAL","OC9","UNK","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","A","Y15-29","2011","350","","" +"BG","F","POP","TOTAL","UNK","A","Y30-49","2011","502","","" +"BG","F","POP","TOTAL","UNK","A","Y50-64","2011","239","","" +"BG","F","POP","TOTAL","UNK","A","Y65-84","2011","13","","" +"BG","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","B","Y15-29","2011","6","","" +"BG","F","POP","TOTAL","UNK","B","Y30-49","2011","17","","" +"BG","F","POP","TOTAL","UNK","B","Y50-64","2011","7","","" +"BG","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","C","Y15-29","2011","1257","","" +"BG","F","POP","TOTAL","UNK","C","Y30-49","2011","2482","","" +"BG","F","POP","TOTAL","UNK","C","Y50-64","2011","677","","" +"BG","F","POP","TOTAL","UNK","C","Y65-84","2011","17","","" +"BG","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","D","Y15-29","2011","13","","" +"BG","F","POP","TOTAL","UNK","D","Y30-49","2011","23","","" +"BG","F","POP","TOTAL","UNK","D","Y50-64","2011","12","","" +"BG","F","POP","TOTAL","UNK","D","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","E","Y15-29","2011","52","","" +"BG","F","POP","TOTAL","UNK","E","Y30-49","2011","160","","" +"BG","F","POP","TOTAL","UNK","E","Y50-64","2011","60","","" +"BG","F","POP","TOTAL","UNK","E","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","F","Y15-29","2011","227","","" +"BG","F","POP","TOTAL","UNK","F","Y30-49","2011","291","","" +"BG","F","POP","TOTAL","UNK","F","Y50-64","2011","104","","" +"BG","F","POP","TOTAL","UNK","F","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","G","Y15-29","2011","2017","","" +"BG","F","POP","TOTAL","UNK","G","Y30-49","2011","2377","","" +"BG","F","POP","TOTAL","UNK","G","Y50-64","2011","705","","" +"BG","F","POP","TOTAL","UNK","G","Y65-84","2011","37","","" +"BG","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","H","Y15-29","2011","134","","" +"BG","F","POP","TOTAL","UNK","H","Y30-49","2011","249","","" +"BG","F","POP","TOTAL","UNK","H","Y50-64","2011","122","","" +"BG","F","POP","TOTAL","UNK","H","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","I","Y15-29","2011","1661","","" +"BG","F","POP","TOTAL","UNK","I","Y30-49","2011","1164","","" +"BG","F","POP","TOTAL","UNK","I","Y50-64","2011","416","","" +"BG","F","POP","TOTAL","UNK","I","Y65-84","2011","20","","" +"BG","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","J","Y15-29","2011","175","","" +"BG","F","POP","TOTAL","UNK","J","Y30-49","2011","180","","" +"BG","F","POP","TOTAL","UNK","J","Y50-64","2011","43","","" +"BG","F","POP","TOTAL","UNK","J","Y65-84","2011",":","c","" +"BG","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","K","Y15-29","2011","160","","" +"BG","F","POP","TOTAL","UNK","K","Y30-49","2011","193","","" +"BG","F","POP","TOTAL","UNK","K","Y50-64","2011","44","","" +"BG","F","POP","TOTAL","UNK","K","Y65-84","2011","5","","" +"BG","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","L","Y15-29","2011","85","","" +"BG","F","POP","TOTAL","UNK","L","Y30-49","2011","139","","" +"BG","F","POP","TOTAL","UNK","L","Y50-64","2011","71","","" +"BG","F","POP","TOTAL","UNK","L","Y65-84","2011","4","","" +"BG","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","M","Y15-29","2011","267","","" +"BG","F","POP","TOTAL","UNK","M","Y30-49","2011","463","","" +"BG","F","POP","TOTAL","UNK","M","Y50-64","2011","164","","" +"BG","F","POP","TOTAL","UNK","M","Y65-84","2011","9","","" +"BG","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","N","Y15-29","2011","259","","" +"BG","F","POP","TOTAL","UNK","N","Y30-49","2011","284","","" +"BG","F","POP","TOTAL","UNK","N","Y50-64","2011","111","","" +"BG","F","POP","TOTAL","UNK","N","Y65-84","2011","8","","" +"BG","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"BG","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"BG","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"BG","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","O","Y15-29","2011","115","","" +"BG","F","POP","TOTAL","UNK","O","Y30-49","2011","455","","" +"BG","F","POP","TOTAL","UNK","O","Y50-64","2011","217","","" +"BG","F","POP","TOTAL","UNK","O","Y65-84","2011","17","","" +"BG","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","P","Y15-29","2011","99","","" +"BG","F","POP","TOTAL","UNK","P","Y30-49","2011","373","","" +"BG","F","POP","TOTAL","UNK","P","Y50-64","2011","283","","" +"BG","F","POP","TOTAL","UNK","P","Y65-84","2011","16","","" +"BG","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","Q","Y15-29","2011","101","","" +"BG","F","POP","TOTAL","UNK","Q","Y30-49","2011","549","","" +"BG","F","POP","TOTAL","UNK","Q","Y50-64","2011","338","","" +"BG","F","POP","TOTAL","UNK","Q","Y65-84","2011","14","","" +"BG","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","R","Y15-29","2011","241","","" +"BG","F","POP","TOTAL","UNK","R","Y30-49","2011","186","","" +"BG","F","POP","TOTAL","UNK","R","Y50-64","2011","40","","" +"BG","F","POP","TOTAL","UNK","R","Y65-84","2011","7","","" +"BG","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","S","Y15-29","2011","214","","" +"BG","F","POP","TOTAL","UNK","S","Y30-49","2011","365","","" +"BG","F","POP","TOTAL","UNK","S","Y50-64","2011","116","","" +"BG","F","POP","TOTAL","UNK","S","Y65-84","2011","11","","" +"BG","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","T","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","UNK","T","Y30-49","2011","12","","" +"BG","F","POP","TOTAL","UNK","T","Y50-64","2011","10","","" +"BG","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","U","Y15-29","2011",":","c","" +"BG","F","POP","TOTAL","UNK","U","Y30-49","2011","10","","" +"BG","F","POP","TOTAL","UNK","U","Y50-64","2011","4","","" +"BG","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"BG","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"BG","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"BG","F","POP","TOTAL","UNK","UNK","Y15-29","2011","2977","","" +"BG","F","POP","TOTAL","UNK","UNK","Y30-49","2011","5846","","" +"BG","F","POP","TOTAL","UNK","UNK","Y50-64","2011","3410","","" +"BG","F","POP","TOTAL","UNK","UNK","Y65-84","2011","179","","" +"BG","F","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","c","" +"BG","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","NAP","Y15-29","2011","376698","","" +"BG","M","POP","TOTAL","NAP","NAP","Y30-49","2011","210168","","" +"BG","M","POP","TOTAL","NAP","NAP","Y50-64","2011","301567","","" +"BG","M","POP","TOTAL","NAP","NAP","Y65-84","2011","487572","","" +"BG","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","36240","","" +"BG","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","501718","","" +"BG","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","A","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","OC0","A","Y30-49","2011","18","","" +"BG","M","POP","TOTAL","OC0","A","Y50-64","2011","9","","" +"BG","M","POP","TOTAL","OC0","A","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC0","B","Y30-49","2011","5","","" +"BG","M","POP","TOTAL","OC0","B","Y50-64","2011",":","c","" +"BG","M","POP","TOTAL","OC0","B","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","C","Y15-29","2011","16","","" +"BG","M","POP","TOTAL","OC0","C","Y30-49","2011","44","","" +"BG","M","POP","TOTAL","OC0","C","Y50-64","2011","15","","" +"BG","M","POP","TOTAL","OC0","C","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC0","D","Y30-49","2011","7","","" +"BG","M","POP","TOTAL","OC0","D","Y50-64","2011",":","c","" +"BG","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","E","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","OC0","E","Y30-49","2011",":","c","" +"BG","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","F","Y15-29","2011","19","","" +"BG","M","POP","TOTAL","OC0","F","Y30-49","2011","31","","" +"BG","M","POP","TOTAL","OC0","F","Y50-64","2011","11","","" +"BG","M","POP","TOTAL","OC0","F","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","G","Y15-29","2011","30","","" +"BG","M","POP","TOTAL","OC0","G","Y30-49","2011","38","","" +"BG","M","POP","TOTAL","OC0","G","Y50-64","2011","11","","" +"BG","M","POP","TOTAL","OC0","G","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","H","Y15-29","2011","46","","" +"BG","M","POP","TOTAL","OC0","H","Y30-49","2011","140","","" +"BG","M","POP","TOTAL","OC0","H","Y50-64","2011","21","","" +"BG","M","POP","TOTAL","OC0","H","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","I","Y15-29","2011","16","","" +"BG","M","POP","TOTAL","OC0","I","Y30-49","2011","8","","" +"BG","M","POP","TOTAL","OC0","I","Y50-64","2011","9","","" +"BG","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","J","Y15-29","2011","4","","" +"BG","M","POP","TOTAL","OC0","J","Y30-49","2011","27","","" +"BG","M","POP","TOTAL","OC0","J","Y50-64","2011",":","c","" +"BG","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC0","K","Y30-49","2011","11","","" +"BG","M","POP","TOTAL","OC0","K","Y50-64","2011","5","","" +"BG","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","L","Y15-29","2011","5","","" +"BG","M","POP","TOTAL","OC0","L","Y30-49","2011","6","","" +"BG","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","M","Y15-29","2011","255","","" +"BG","M","POP","TOTAL","OC0","M","Y30-49","2011","886","","" +"BG","M","POP","TOTAL","OC0","M","Y50-64","2011","60","","" +"BG","M","POP","TOTAL","OC0","M","Y65-84","2011","3","","" +"BG","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","N","Y15-29","2011","685","","" +"BG","M","POP","TOTAL","OC0","N","Y30-49","2011","3236","","" +"BG","M","POP","TOTAL","OC0","N","Y50-64","2011","369","","" +"BG","M","POP","TOTAL","OC0","N","Y65-84","2011","10","","" +"BG","M","POP","TOTAL","OC0","N","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","O","Y15-29","2011","7012","","" +"BG","M","POP","TOTAL","OC0","O","Y30-49","2011","18532","","" +"BG","M","POP","TOTAL","OC0","O","Y50-64","2011","1409","","" +"BG","M","POP","TOTAL","OC0","O","Y65-84","2011","57","","" +"BG","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","P","Y15-29","2011","34","","" +"BG","M","POP","TOTAL","OC0","P","Y30-49","2011","308","","" +"BG","M","POP","TOTAL","OC0","P","Y50-64","2011","57","","" +"BG","M","POP","TOTAL","OC0","P","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","Q","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","OC0","Q","Y30-49","2011","54","","" +"BG","M","POP","TOTAL","OC0","Q","Y50-64","2011","12","","" +"BG","M","POP","TOTAL","OC0","Q","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","R","Y15-29","2011","35","","" +"BG","M","POP","TOTAL","OC0","R","Y30-49","2011","114","","" +"BG","M","POP","TOTAL","OC0","R","Y50-64","2011","15","","" +"BG","M","POP","TOTAL","OC0","R","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","S","Y15-29","2011","367","","" +"BG","M","POP","TOTAL","OC0","S","Y30-49","2011","1440","","" +"BG","M","POP","TOTAL","OC0","S","Y50-64","2011","109","","" +"BG","M","POP","TOTAL","OC0","S","Y65-84","2011","8","","" +"BG","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","T","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC0","T","Y50-64","2011",":","c","" +"BG","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","U","Y15-29","2011","133","","" +"BG","M","POP","TOTAL","OC0","U","Y30-49","2011","482","","" +"BG","M","POP","TOTAL","OC0","U","Y50-64","2011","34","","" +"BG","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC0","UNK","Y15-29","2011","31","","" +"BG","M","POP","TOTAL","OC0","UNK","Y30-49","2011","134","","" +"BG","M","POP","TOTAL","OC0","UNK","Y50-64","2011","32","","" +"BG","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","A","Y15-29","2011","337","","" +"BG","M","POP","TOTAL","OC1","A","Y30-49","2011","2903","","" +"BG","M","POP","TOTAL","OC1","A","Y50-64","2011","1952","","" +"BG","M","POP","TOTAL","OC1","A","Y65-84","2011","326","","" +"BG","M","POP","TOTAL","OC1","A","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","B","Y15-29","2011","27","","" +"BG","M","POP","TOTAL","OC1","B","Y30-49","2011","609","","" +"BG","M","POP","TOTAL","OC1","B","Y50-64","2011","439","","" +"BG","M","POP","TOTAL","OC1","B","Y65-84","2011","44","","" +"BG","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","C","Y15-29","2011","1539","","" +"BG","M","POP","TOTAL","OC1","C","Y30-49","2011","14949","","" +"BG","M","POP","TOTAL","OC1","C","Y50-64","2011","9998","","" +"BG","M","POP","TOTAL","OC1","C","Y65-84","2011","898","","" +"BG","M","POP","TOTAL","OC1","C","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","D","Y15-29","2011","60","","" +"BG","M","POP","TOTAL","OC1","D","Y30-49","2011","1086","","" +"BG","M","POP","TOTAL","OC1","D","Y50-64","2011","817","","" +"BG","M","POP","TOTAL","OC1","D","Y65-84","2011","36","","" +"BG","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","E","Y15-29","2011","41","","" +"BG","M","POP","TOTAL","OC1","E","Y30-49","2011","605","","" +"BG","M","POP","TOTAL","OC1","E","Y50-64","2011","549","","" +"BG","M","POP","TOTAL","OC1","E","Y65-84","2011","24","","" +"BG","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","F","Y15-29","2011","1160","","" +"BG","M","POP","TOTAL","OC1","F","Y30-49","2011","8263","","" +"BG","M","POP","TOTAL","OC1","F","Y50-64","2011","5472","","" +"BG","M","POP","TOTAL","OC1","F","Y65-84","2011","490","","" +"BG","M","POP","TOTAL","OC1","F","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","G","Y15-29","2011","4411","","" +"BG","M","POP","TOTAL","OC1","G","Y30-49","2011","32052","","" +"BG","M","POP","TOTAL","OC1","G","Y50-64","2011","13282","","" +"BG","M","POP","TOTAL","OC1","G","Y65-84","2011","1156","","" +"BG","M","POP","TOTAL","OC1","G","Y_GE85","2011","4","","" +"BG","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","H","Y15-29","2011","618","","" +"BG","M","POP","TOTAL","OC1","H","Y30-49","2011","5627","","" +"BG","M","POP","TOTAL","OC1","H","Y50-64","2011","3138","","" +"BG","M","POP","TOTAL","OC1","H","Y65-84","2011","158","","" +"BG","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","I","Y15-29","2011","1040","","" +"BG","M","POP","TOTAL","OC1","I","Y30-49","2011","6209","","" +"BG","M","POP","TOTAL","OC1","I","Y50-64","2011","2852","","" +"BG","M","POP","TOTAL","OC1","I","Y65-84","2011","202","","" +"BG","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","J","Y15-29","2011","841","","" +"BG","M","POP","TOTAL","OC1","J","Y30-49","2011","3605","","" +"BG","M","POP","TOTAL","OC1","J","Y50-64","2011","960","","" +"BG","M","POP","TOTAL","OC1","J","Y65-84","2011","81","","" +"BG","M","POP","TOTAL","OC1","J","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","K","Y15-29","2011","405","","" +"BG","M","POP","TOTAL","OC1","K","Y30-49","2011","3167","","" +"BG","M","POP","TOTAL","OC1","K","Y50-64","2011","925","","" +"BG","M","POP","TOTAL","OC1","K","Y65-84","2011","64","","" +"BG","M","POP","TOTAL","OC1","K","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","L","Y15-29","2011","288","","" +"BG","M","POP","TOTAL","OC1","L","Y30-49","2011","2027","","" +"BG","M","POP","TOTAL","OC1","L","Y50-64","2011","1197","","" +"BG","M","POP","TOTAL","OC1","L","Y65-84","2011","131","","" +"BG","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","M","Y15-29","2011","677","","" +"BG","M","POP","TOTAL","OC1","M","Y30-49","2011","4335","","" +"BG","M","POP","TOTAL","OC1","M","Y50-64","2011","2527","","" +"BG","M","POP","TOTAL","OC1","M","Y65-84","2011","341","","" +"BG","M","POP","TOTAL","OC1","M","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","N","Y15-29","2011","336","","" +"BG","M","POP","TOTAL","OC1","N","Y30-49","2011","1852","","" +"BG","M","POP","TOTAL","OC1","N","Y50-64","2011","1161","","" +"BG","M","POP","TOTAL","OC1","N","Y65-84","2011","134","","" +"BG","M","POP","TOTAL","OC1","N","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","O","Y15-29","2011","124","","" +"BG","M","POP","TOTAL","OC1","O","Y30-49","2011","3518","","" +"BG","M","POP","TOTAL","OC1","O","Y50-64","2011","3385","","" +"BG","M","POP","TOTAL","OC1","O","Y65-84","2011","325","","" +"BG","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","P","Y15-29","2011","67","","" +"BG","M","POP","TOTAL","OC1","P","Y30-49","2011","814","","" +"BG","M","POP","TOTAL","OC1","P","Y50-64","2011","1496","","" +"BG","M","POP","TOTAL","OC1","P","Y65-84","2011","162","","" +"BG","M","POP","TOTAL","OC1","P","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","Q","Y15-29","2011","36","","" +"BG","M","POP","TOTAL","OC1","Q","Y30-49","2011","654","","" +"BG","M","POP","TOTAL","OC1","Q","Y50-64","2011","869","","" +"BG","M","POP","TOTAL","OC1","Q","Y65-84","2011","110","","" +"BG","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","R","Y15-29","2011","261","","" +"BG","M","POP","TOTAL","OC1","R","Y30-49","2011","1312","","" +"BG","M","POP","TOTAL","OC1","R","Y50-64","2011","727","","" +"BG","M","POP","TOTAL","OC1","R","Y65-84","2011","84","","" +"BG","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","S","Y15-29","2011","300","","" +"BG","M","POP","TOTAL","OC1","S","Y30-49","2011","2107","","" +"BG","M","POP","TOTAL","OC1","S","Y50-64","2011","1410","","" +"BG","M","POP","TOTAL","OC1","S","Y65-84","2011","292","","" +"BG","M","POP","TOTAL","OC1","S","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","T","Y15-29","2011","7","","" +"BG","M","POP","TOTAL","OC1","T","Y30-49","2011","26","","" +"BG","M","POP","TOTAL","OC1","T","Y50-64","2011","19","","" +"BG","M","POP","TOTAL","OC1","T","Y65-84","2011","7","","" +"BG","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","U","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","OC1","U","Y30-49","2011","29","","" +"BG","M","POP","TOTAL","OC1","U","Y50-64","2011","15","","" +"BG","M","POP","TOTAL","OC1","U","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC1","UNK","Y15-29","2011","34","","" +"BG","M","POP","TOTAL","OC1","UNK","Y30-49","2011","123","","" +"BG","M","POP","TOTAL","OC1","UNK","Y50-64","2011","67","","" +"BG","M","POP","TOTAL","OC1","UNK","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","A","Y15-29","2011","285","","" +"BG","M","POP","TOTAL","OC2","A","Y30-49","2011","1104","","" +"BG","M","POP","TOTAL","OC2","A","Y50-64","2011","672","","" +"BG","M","POP","TOTAL","OC2","A","Y65-84","2011","89","","" +"BG","M","POP","TOTAL","OC2","A","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","B","Y15-29","2011","81","","" +"BG","M","POP","TOTAL","OC2","B","Y30-49","2011","369","","" +"BG","M","POP","TOTAL","OC2","B","Y50-64","2011","222","","" +"BG","M","POP","TOTAL","OC2","B","Y65-84","2011","22","","" +"BG","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","C","Y15-29","2011","2020","","" +"BG","M","POP","TOTAL","OC2","C","Y30-49","2011","6294","","" +"BG","M","POP","TOTAL","OC2","C","Y50-64","2011","3287","","" +"BG","M","POP","TOTAL","OC2","C","Y65-84","2011","221","","" +"BG","M","POP","TOTAL","OC2","C","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","D","Y15-29","2011","317","","" +"BG","M","POP","TOTAL","OC2","D","Y30-49","2011","1596","","" +"BG","M","POP","TOTAL","OC2","D","Y50-64","2011","851","","" +"BG","M","POP","TOTAL","OC2","D","Y65-84","2011","24","","" +"BG","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","E","Y15-29","2011","60","","" +"BG","M","POP","TOTAL","OC2","E","Y30-49","2011","326","","" +"BG","M","POP","TOTAL","OC2","E","Y50-64","2011","255","","" +"BG","M","POP","TOTAL","OC2","E","Y65-84","2011","14","","" +"BG","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","F","Y15-29","2011","978","","" +"BG","M","POP","TOTAL","OC2","F","Y30-49","2011","2501","","" +"BG","M","POP","TOTAL","OC2","F","Y50-64","2011","1655","","" +"BG","M","POP","TOTAL","OC2","F","Y65-84","2011","221","","" +"BG","M","POP","TOTAL","OC2","F","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","G","Y15-29","2011","2116","","" +"BG","M","POP","TOTAL","OC2","G","Y30-49","2011","5227","","" +"BG","M","POP","TOTAL","OC2","G","Y50-64","2011","1588","","" +"BG","M","POP","TOTAL","OC2","G","Y65-84","2011","192","","" +"BG","M","POP","TOTAL","OC2","G","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","H","Y15-29","2011","389","","" +"BG","M","POP","TOTAL","OC2","H","Y30-49","2011","1746","","" +"BG","M","POP","TOTAL","OC2","H","Y50-64","2011","1190","","" +"BG","M","POP","TOTAL","OC2","H","Y65-84","2011","64","","" +"BG","M","POP","TOTAL","OC2","H","Y_GE85","2011","3","","" +"BG","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","I","Y15-29","2011","364","","" +"BG","M","POP","TOTAL","OC2","I","Y30-49","2011","751","","" +"BG","M","POP","TOTAL","OC2","I","Y50-64","2011","288","","" +"BG","M","POP","TOTAL","OC2","I","Y65-84","2011","11","","" +"BG","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","J","Y15-29","2011","6393","","" +"BG","M","POP","TOTAL","OC2","J","Y30-49","2011","7597","","" +"BG","M","POP","TOTAL","OC2","J","Y50-64","2011","1419","","" +"BG","M","POP","TOTAL","OC2","J","Y65-84","2011","91","","" +"BG","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","K","Y15-29","2011","1306","","" +"BG","M","POP","TOTAL","OC2","K","Y30-49","2011","2606","","" +"BG","M","POP","TOTAL","OC2","K","Y50-64","2011","838","","" +"BG","M","POP","TOTAL","OC2","K","Y65-84","2011","73","","" +"BG","M","POP","TOTAL","OC2","K","Y_GE85","2011","3","","" +"BG","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","L","Y15-29","2011","167","","" +"BG","M","POP","TOTAL","OC2","L","Y30-49","2011","515","","" +"BG","M","POP","TOTAL","OC2","L","Y50-64","2011","258","","" +"BG","M","POP","TOTAL","OC2","L","Y65-84","2011","27","","" +"BG","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","M","Y15-29","2011","3247","","" +"BG","M","POP","TOTAL","OC2","M","Y30-49","2011","8918","","" +"BG","M","POP","TOTAL","OC2","M","Y50-64","2011","5007","","" +"BG","M","POP","TOTAL","OC2","M","Y65-84","2011","791","","" +"BG","M","POP","TOTAL","OC2","M","Y_GE85","2011","8","","" +"BG","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","N","Y15-29","2011","566","","" +"BG","M","POP","TOTAL","OC2","N","Y30-49","2011","1434","","" +"BG","M","POP","TOTAL","OC2","N","Y50-64","2011","683","","" +"BG","M","POP","TOTAL","OC2","N","Y65-84","2011","81","","" +"BG","M","POP","TOTAL","OC2","N","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","O","Y15-29","2011","1459","","" +"BG","M","POP","TOTAL","OC2","O","Y30-49","2011","8948","","" +"BG","M","POP","TOTAL","OC2","O","Y50-64","2011","5472","","" +"BG","M","POP","TOTAL","OC2","O","Y65-84","2011","277","","" +"BG","M","POP","TOTAL","OC2","O","Y_GE85","2011","4","","" +"BG","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","P","Y15-29","2011","1296","","" +"BG","M","POP","TOTAL","OC2","P","Y30-49","2011","8334","","" +"BG","M","POP","TOTAL","OC2","P","Y50-64","2011","10037","","" +"BG","M","POP","TOTAL","OC2","P","Y65-84","2011","1173","","" +"BG","M","POP","TOTAL","OC2","P","Y_GE85","2011","3","","" +"BG","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","Q","Y15-29","2011","1065","","" +"BG","M","POP","TOTAL","OC2","Q","Y30-49","2011","7489","","" +"BG","M","POP","TOTAL","OC2","Q","Y50-64","2011","5946","","" +"BG","M","POP","TOTAL","OC2","Q","Y65-84","2011","1324","","" +"BG","M","POP","TOTAL","OC2","Q","Y_GE85","2011","13","","" +"BG","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","R","Y15-29","2011","931","","" +"BG","M","POP","TOTAL","OC2","R","Y30-49","2011","2459","","" +"BG","M","POP","TOTAL","OC2","R","Y50-64","2011","1704","","" +"BG","M","POP","TOTAL","OC2","R","Y65-84","2011","223","","" +"BG","M","POP","TOTAL","OC2","R","Y_GE85","2011","3","","" +"BG","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","S","Y15-29","2011","615","","" +"BG","M","POP","TOTAL","OC2","S","Y30-49","2011","1945","","" +"BG","M","POP","TOTAL","OC2","S","Y50-64","2011","1304","","" +"BG","M","POP","TOTAL","OC2","S","Y65-84","2011","271","","" +"BG","M","POP","TOTAL","OC2","S","Y_GE85","2011","6","","" +"BG","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","T","Y15-29","2011","5","","" +"BG","M","POP","TOTAL","OC2","T","Y30-49","2011","4","","" +"BG","M","POP","TOTAL","OC2","T","Y50-64","2011","7","","" +"BG","M","POP","TOTAL","OC2","T","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","U","Y15-29","2011","11","","" +"BG","M","POP","TOTAL","OC2","U","Y30-49","2011","88","","" +"BG","M","POP","TOTAL","OC2","U","Y50-64","2011","53","","" +"BG","M","POP","TOTAL","OC2","U","Y65-84","2011","11","","" +"BG","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC2","UNK","Y15-29","2011","60","","" +"BG","M","POP","TOTAL","OC2","UNK","Y30-49","2011","157","","" +"BG","M","POP","TOTAL","OC2","UNK","Y50-64","2011","91","","" +"BG","M","POP","TOTAL","OC2","UNK","Y65-84","2011","8","","" +"BG","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","A","Y15-29","2011","242","","" +"BG","M","POP","TOTAL","OC3","A","Y30-49","2011","858","","" +"BG","M","POP","TOTAL","OC3","A","Y50-64","2011","663","","" +"BG","M","POP","TOTAL","OC3","A","Y65-84","2011","45","","" +"BG","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","B","Y15-29","2011","95","","" +"BG","M","POP","TOTAL","OC3","B","Y30-49","2011","722","","" +"BG","M","POP","TOTAL","OC3","B","Y50-64","2011","387","","" +"BG","M","POP","TOTAL","OC3","B","Y65-84","2011","22","","" +"BG","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","C","Y15-29","2011","3893","","" +"BG","M","POP","TOTAL","OC3","C","Y30-49","2011","11196","","" +"BG","M","POP","TOTAL","OC3","C","Y50-64","2011","5976","","" +"BG","M","POP","TOTAL","OC3","C","Y65-84","2011","280","","" +"BG","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","D","Y15-29","2011","551","","" +"BG","M","POP","TOTAL","OC3","D","Y30-49","2011","3452","","" +"BG","M","POP","TOTAL","OC3","D","Y50-64","2011","1995","","" +"BG","M","POP","TOTAL","OC3","D","Y65-84","2011","31","","" +"BG","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","E","Y15-29","2011","200","","" +"BG","M","POP","TOTAL","OC3","E","Y30-49","2011","1179","","" +"BG","M","POP","TOTAL","OC3","E","Y50-64","2011","1243","","" +"BG","M","POP","TOTAL","OC3","E","Y65-84","2011","22","","" +"BG","M","POP","TOTAL","OC3","E","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","F","Y15-29","2011","1817","","" +"BG","M","POP","TOTAL","OC3","F","Y30-49","2011","4612","","" +"BG","M","POP","TOTAL","OC3","F","Y50-64","2011","3466","","" +"BG","M","POP","TOTAL","OC3","F","Y65-84","2011","261","","" +"BG","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","G","Y15-29","2011","3936","","" +"BG","M","POP","TOTAL","OC3","G","Y30-49","2011","7939","","" +"BG","M","POP","TOTAL","OC3","G","Y50-64","2011","2017","","" +"BG","M","POP","TOTAL","OC3","G","Y65-84","2011","113","","" +"BG","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","H","Y15-29","2011","1065","","" +"BG","M","POP","TOTAL","OC3","H","Y30-49","2011","5543","","" +"BG","M","POP","TOTAL","OC3","H","Y50-64","2011","3675","","" +"BG","M","POP","TOTAL","OC3","H","Y65-84","2011","74","","" +"BG","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","I","Y15-29","2011","423","","" +"BG","M","POP","TOTAL","OC3","I","Y30-49","2011","807","","" +"BG","M","POP","TOTAL","OC3","I","Y50-64","2011","342","","" +"BG","M","POP","TOTAL","OC3","I","Y65-84","2011","17","","" +"BG","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","J","Y15-29","2011","3372","","" +"BG","M","POP","TOTAL","OC3","J","Y30-49","2011","4754","","" +"BG","M","POP","TOTAL","OC3","J","Y50-64","2011","1270","","" +"BG","M","POP","TOTAL","OC3","J","Y65-84","2011","61","","" +"BG","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","K","Y15-29","2011","1437","","" +"BG","M","POP","TOTAL","OC3","K","Y30-49","2011","2089","","" +"BG","M","POP","TOTAL","OC3","K","Y50-64","2011","521","","" +"BG","M","POP","TOTAL","OC3","K","Y65-84","2011","40","","" +"BG","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","L","Y15-29","2011","323","","" +"BG","M","POP","TOTAL","OC3","L","Y30-49","2011","746","","" +"BG","M","POP","TOTAL","OC3","L","Y50-64","2011","413","","" +"BG","M","POP","TOTAL","OC3","L","Y65-84","2011","29","","" +"BG","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","M","Y15-29","2011","1474","","" +"BG","M","POP","TOTAL","OC3","M","Y30-49","2011","2270","","" +"BG","M","POP","TOTAL","OC3","M","Y50-64","2011","1284","","" +"BG","M","POP","TOTAL","OC3","M","Y65-84","2011","160","","" +"BG","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","N","Y15-29","2011","788","","" +"BG","M","POP","TOTAL","OC3","N","Y30-49","2011","1375","","" +"BG","M","POP","TOTAL","OC3","N","Y50-64","2011","653","","" +"BG","M","POP","TOTAL","OC3","N","Y65-84","2011","41","","" +"BG","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","O","Y15-29","2011","860","","" +"BG","M","POP","TOTAL","OC3","O","Y30-49","2011","3607","","" +"BG","M","POP","TOTAL","OC3","O","Y50-64","2011","2719","","" +"BG","M","POP","TOTAL","OC3","O","Y65-84","2011","147","","" +"BG","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","P","Y15-29","2011","187","","" +"BG","M","POP","TOTAL","OC3","P","Y30-49","2011","389","","" +"BG","M","POP","TOTAL","OC3","P","Y50-64","2011","444","","" +"BG","M","POP","TOTAL","OC3","P","Y65-84","2011","44","","" +"BG","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","Q","Y15-29","2011","220","","" +"BG","M","POP","TOTAL","OC3","Q","Y30-49","2011","680","","" +"BG","M","POP","TOTAL","OC3","Q","Y50-64","2011","615","","" +"BG","M","POP","TOTAL","OC3","Q","Y65-84","2011","64","","" +"BG","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","R","Y15-29","2011","1904","","" +"BG","M","POP","TOTAL","OC3","R","Y30-49","2011","2167","","" +"BG","M","POP","TOTAL","OC3","R","Y50-64","2011","1089","","" +"BG","M","POP","TOTAL","OC3","R","Y65-84","2011","108","","" +"BG","M","POP","TOTAL","OC3","R","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","S","Y15-29","2011","749","","" +"BG","M","POP","TOTAL","OC3","S","Y30-49","2011","1867","","" +"BG","M","POP","TOTAL","OC3","S","Y50-64","2011","1110","","" +"BG","M","POP","TOTAL","OC3","S","Y65-84","2011","135","","" +"BG","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","T","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","OC3","T","Y30-49","2011","5","","" +"BG","M","POP","TOTAL","OC3","T","Y50-64","2011","8","","" +"BG","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","U","Y15-29","2011","8","","" +"BG","M","POP","TOTAL","OC3","U","Y30-49","2011","65","","" +"BG","M","POP","TOTAL","OC3","U","Y50-64","2011","30","","" +"BG","M","POP","TOTAL","OC3","U","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC3","UNK","Y15-29","2011","46","","" +"BG","M","POP","TOTAL","OC3","UNK","Y30-49","2011","112","","" +"BG","M","POP","TOTAL","OC3","UNK","Y50-64","2011","71","","" +"BG","M","POP","TOTAL","OC3","UNK","Y65-84","2011","3","","" +"BG","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","A","Y15-29","2011","137","","" +"BG","M","POP","TOTAL","OC4","A","Y30-49","2011","446","","" +"BG","M","POP","TOTAL","OC4","A","Y50-64","2011","488","","" +"BG","M","POP","TOTAL","OC4","A","Y65-84","2011","41","","" +"BG","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","B","Y15-29","2011","38","","" +"BG","M","POP","TOTAL","OC4","B","Y30-49","2011","129","","" +"BG","M","POP","TOTAL","OC4","B","Y50-64","2011","92","","" +"BG","M","POP","TOTAL","OC4","B","Y65-84","2011","4","","" +"BG","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","C","Y15-29","2011","1671","","" +"BG","M","POP","TOTAL","OC4","C","Y30-49","2011","4172","","" +"BG","M","POP","TOTAL","OC4","C","Y50-64","2011","2004","","" +"BG","M","POP","TOTAL","OC4","C","Y65-84","2011","124","","" +"BG","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","D","Y15-29","2011","101","","" +"BG","M","POP","TOTAL","OC4","D","Y30-49","2011","329","","" +"BG","M","POP","TOTAL","OC4","D","Y50-64","2011","249","","" +"BG","M","POP","TOTAL","OC4","D","Y65-84","2011","11","","" +"BG","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","E","Y15-29","2011","104","","" +"BG","M","POP","TOTAL","OC4","E","Y30-49","2011","591","","" +"BG","M","POP","TOTAL","OC4","E","Y50-64","2011","583","","" +"BG","M","POP","TOTAL","OC4","E","Y65-84","2011","20","","" +"BG","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","F","Y15-29","2011","875","","" +"BG","M","POP","TOTAL","OC4","F","Y30-49","2011","1846","","" +"BG","M","POP","TOTAL","OC4","F","Y50-64","2011","1111","","" +"BG","M","POP","TOTAL","OC4","F","Y65-84","2011","106","","" +"BG","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","G","Y15-29","2011","4889","","" +"BG","M","POP","TOTAL","OC4","G","Y30-49","2011","8591","","" +"BG","M","POP","TOTAL","OC4","G","Y50-64","2011","2416","","" +"BG","M","POP","TOTAL","OC4","G","Y65-84","2011","167","","" +"BG","M","POP","TOTAL","OC4","G","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","H","Y15-29","2011","1298","","" +"BG","M","POP","TOTAL","OC4","H","Y30-49","2011","2708","","" +"BG","M","POP","TOTAL","OC4","H","Y50-64","2011","1740","","" +"BG","M","POP","TOTAL","OC4","H","Y65-84","2011","81","","" +"BG","M","POP","TOTAL","OC4","H","Y_GE85","2011","3","","" +"BG","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","I","Y15-29","2011","1262","","" +"BG","M","POP","TOTAL","OC4","I","Y30-49","2011","1130","","" +"BG","M","POP","TOTAL","OC4","I","Y50-64","2011","400","","" +"BG","M","POP","TOTAL","OC4","I","Y65-84","2011","23","","" +"BG","M","POP","TOTAL","OC4","I","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","J","Y15-29","2011","1941","","" +"BG","M","POP","TOTAL","OC4","J","Y30-49","2011","1315","","" +"BG","M","POP","TOTAL","OC4","J","Y50-64","2011","309","","" +"BG","M","POP","TOTAL","OC4","J","Y65-84","2011","26","","" +"BG","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","K","Y15-29","2011","1442","","" +"BG","M","POP","TOTAL","OC4","K","Y30-49","2011","1859","","" +"BG","M","POP","TOTAL","OC4","K","Y50-64","2011","486","","" +"BG","M","POP","TOTAL","OC4","K","Y65-84","2011","48","","" +"BG","M","POP","TOTAL","OC4","K","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","L","Y15-29","2011","325","","" +"BG","M","POP","TOTAL","OC4","L","Y30-49","2011","630","","" +"BG","M","POP","TOTAL","OC4","L","Y50-64","2011","340","","" +"BG","M","POP","TOTAL","OC4","L","Y65-84","2011","47","","" +"BG","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","M","Y15-29","2011","1381","","" +"BG","M","POP","TOTAL","OC4","M","Y30-49","2011","1945","","" +"BG","M","POP","TOTAL","OC4","M","Y50-64","2011","814","","" +"BG","M","POP","TOTAL","OC4","M","Y65-84","2011","64","","" +"BG","M","POP","TOTAL","OC4","M","Y_GE85","2011","3","","" +"BG","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","N","Y15-29","2011","1216","","" +"BG","M","POP","TOTAL","OC4","N","Y30-49","2011","1544","","" +"BG","M","POP","TOTAL","OC4","N","Y50-64","2011","853","","" +"BG","M","POP","TOTAL","OC4","N","Y65-84","2011","111","","" +"BG","M","POP","TOTAL","OC4","N","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","O","Y15-29","2011","640","","" +"BG","M","POP","TOTAL","OC4","O","Y30-49","2011","3679","","" +"BG","M","POP","TOTAL","OC4","O","Y50-64","2011","2836","","" +"BG","M","POP","TOTAL","OC4","O","Y65-84","2011","182","","" +"BG","M","POP","TOTAL","OC4","O","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","P","Y15-29","2011","172","","" +"BG","M","POP","TOTAL","OC4","P","Y30-49","2011","509","","" +"BG","M","POP","TOTAL","OC4","P","Y50-64","2011","692","","" +"BG","M","POP","TOTAL","OC4","P","Y65-84","2011","71","","" +"BG","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","Q","Y15-29","2011","161","","" +"BG","M","POP","TOTAL","OC4","Q","Y30-49","2011","364","","" +"BG","M","POP","TOTAL","OC4","Q","Y50-64","2011","445","","" +"BG","M","POP","TOTAL","OC4","Q","Y65-84","2011","37","","" +"BG","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","R","Y15-29","2011","1388","","" +"BG","M","POP","TOTAL","OC4","R","Y30-49","2011","1182","","" +"BG","M","POP","TOTAL","OC4","R","Y50-64","2011","471","","" +"BG","M","POP","TOTAL","OC4","R","Y65-84","2011","75","","" +"BG","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","S","Y15-29","2011","519","","" +"BG","M","POP","TOTAL","OC4","S","Y30-49","2011","883","","" +"BG","M","POP","TOTAL","OC4","S","Y50-64","2011","508","","" +"BG","M","POP","TOTAL","OC4","S","Y65-84","2011","78","","" +"BG","M","POP","TOTAL","OC4","S","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","T","Y15-29","2011","5","","" +"BG","M","POP","TOTAL","OC4","T","Y30-49","2011","14","","" +"BG","M","POP","TOTAL","OC4","T","Y50-64","2011",":","c","" +"BG","M","POP","TOTAL","OC4","T","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","U","Y15-29","2011","16","","" +"BG","M","POP","TOTAL","OC4","U","Y30-49","2011","83","","" +"BG","M","POP","TOTAL","OC4","U","Y50-64","2011","37","","" +"BG","M","POP","TOTAL","OC4","U","Y65-84","2011","4","","" +"BG","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC4","UNK","Y15-29","2011","44","","" +"BG","M","POP","TOTAL","OC4","UNK","Y30-49","2011","85","","" +"BG","M","POP","TOTAL","OC4","UNK","Y50-64","2011","41","","" +"BG","M","POP","TOTAL","OC4","UNK","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","A","Y15-29","2011","682","","" +"BG","M","POP","TOTAL","OC5","A","Y30-49","2011","2895","","" +"BG","M","POP","TOTAL","OC5","A","Y50-64","2011","3824","","" +"BG","M","POP","TOTAL","OC5","A","Y65-84","2011","309","","" +"BG","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","B","Y15-29","2011","125","","" +"BG","M","POP","TOTAL","OC5","B","Y30-49","2011","471","","" +"BG","M","POP","TOTAL","OC5","B","Y50-64","2011","535","","" +"BG","M","POP","TOTAL","OC5","B","Y65-84","2011","47","","" +"BG","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","C","Y15-29","2011","2878","","" +"BG","M","POP","TOTAL","OC5","C","Y30-49","2011","7061","","" +"BG","M","POP","TOTAL","OC5","C","Y50-64","2011","6532","","" +"BG","M","POP","TOTAL","OC5","C","Y65-84","2011","775","","" +"BG","M","POP","TOTAL","OC5","C","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","D","Y15-29","2011","142","","" +"BG","M","POP","TOTAL","OC5","D","Y30-49","2011","354","","" +"BG","M","POP","TOTAL","OC5","D","Y50-64","2011","235","","" +"BG","M","POP","TOTAL","OC5","D","Y65-84","2011","32","","" +"BG","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","E","Y15-29","2011","102","","" +"BG","M","POP","TOTAL","OC5","E","Y30-49","2011","542","","" +"BG","M","POP","TOTAL","OC5","E","Y50-64","2011","775","","" +"BG","M","POP","TOTAL","OC5","E","Y65-84","2011","81","","" +"BG","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","F","Y15-29","2011","1371","","" +"BG","M","POP","TOTAL","OC5","F","Y30-49","2011","2756","","" +"BG","M","POP","TOTAL","OC5","F","Y50-64","2011","3001","","" +"BG","M","POP","TOTAL","OC5","F","Y65-84","2011","429","","" +"BG","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","G","Y15-29","2011","29050","","" +"BG","M","POP","TOTAL","OC5","G","Y30-49","2011","43315","","" +"BG","M","POP","TOTAL","OC5","G","Y50-64","2011","14900","","" +"BG","M","POP","TOTAL","OC5","G","Y65-84","2011","1619","","" +"BG","M","POP","TOTAL","OC5","G","Y_GE85","2011","11","","" +"BG","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","H","Y15-29","2011","1466","","" +"BG","M","POP","TOTAL","OC5","H","Y30-49","2011","5421","","" +"BG","M","POP","TOTAL","OC5","H","Y50-64","2011","3461","","" +"BG","M","POP","TOTAL","OC5","H","Y65-84","2011","219","","" +"BG","M","POP","TOTAL","OC5","H","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","I","Y15-29","2011","16769","","" +"BG","M","POP","TOTAL","OC5","I","Y30-49","2011","14873","","" +"BG","M","POP","TOTAL","OC5","I","Y50-64","2011","3695","","" +"BG","M","POP","TOTAL","OC5","I","Y65-84","2011","225","","" +"BG","M","POP","TOTAL","OC5","I","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","J","Y15-29","2011","772","","" +"BG","M","POP","TOTAL","OC5","J","Y30-49","2011","508","","" +"BG","M","POP","TOTAL","OC5","J","Y50-64","2011","205","","" +"BG","M","POP","TOTAL","OC5","J","Y65-84","2011","44","","" +"BG","M","POP","TOTAL","OC5","J","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","K","Y15-29","2011","502","","" +"BG","M","POP","TOTAL","OC5","K","Y30-49","2011","1263","","" +"BG","M","POP","TOTAL","OC5","K","Y50-64","2011","974","","" +"BG","M","POP","TOTAL","OC5","K","Y65-84","2011","48","","" +"BG","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","L","Y15-29","2011","560","","" +"BG","M","POP","TOTAL","OC5","L","Y30-49","2011","842","","" +"BG","M","POP","TOTAL","OC5","L","Y50-64","2011","901","","" +"BG","M","POP","TOTAL","OC5","L","Y65-84","2011","182","","" +"BG","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","M","Y15-29","2011","729","","" +"BG","M","POP","TOTAL","OC5","M","Y30-49","2011","1319","","" +"BG","M","POP","TOTAL","OC5","M","Y50-64","2011","748","","" +"BG","M","POP","TOTAL","OC5","M","Y65-84","2011","131","","" +"BG","M","POP","TOTAL","OC5","M","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","N","Y15-29","2011","8825","","" +"BG","M","POP","TOTAL","OC5","N","Y30-49","2011","22973","","" +"BG","M","POP","TOTAL","OC5","N","Y50-64","2011","20657","","" +"BG","M","POP","TOTAL","OC5","N","Y65-84","2011","3287","","" +"BG","M","POP","TOTAL","OC5","N","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","O","Y15-29","2011","2918","","" +"BG","M","POP","TOTAL","OC5","O","Y30-49","2011","17773","","" +"BG","M","POP","TOTAL","OC5","O","Y50-64","2011","5230","","" +"BG","M","POP","TOTAL","OC5","O","Y65-84","2011","318","","" +"BG","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","P","Y15-29","2011","299","","" +"BG","M","POP","TOTAL","OC5","P","Y30-49","2011","1342","","" +"BG","M","POP","TOTAL","OC5","P","Y50-64","2011","2134","","" +"BG","M","POP","TOTAL","OC5","P","Y65-84","2011","254","","" +"BG","M","POP","TOTAL","OC5","P","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","Q","Y15-29","2011","332","","" +"BG","M","POP","TOTAL","OC5","Q","Y30-49","2011","1501","","" +"BG","M","POP","TOTAL","OC5","Q","Y50-64","2011","1770","","" +"BG","M","POP","TOTAL","OC5","Q","Y65-84","2011","149","","" +"BG","M","POP","TOTAL","OC5","Q","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","R","Y15-29","2011","1697","","" +"BG","M","POP","TOTAL","OC5","R","Y30-49","2011","1783","","" +"BG","M","POP","TOTAL","OC5","R","Y50-64","2011","751","","" +"BG","M","POP","TOTAL","OC5","R","Y65-84","2011","91","","" +"BG","M","POP","TOTAL","OC5","R","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","S","Y15-29","2011","1757","","" +"BG","M","POP","TOTAL","OC5","S","Y30-49","2011","3428","","" +"BG","M","POP","TOTAL","OC5","S","Y50-64","2011","1863","","" +"BG","M","POP","TOTAL","OC5","S","Y65-84","2011","311","","" +"BG","M","POP","TOTAL","OC5","S","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","T","Y15-29","2011","23","","" +"BG","M","POP","TOTAL","OC5","T","Y30-49","2011","72","","" +"BG","M","POP","TOTAL","OC5","T","Y50-64","2011","56","","" +"BG","M","POP","TOTAL","OC5","T","Y65-84","2011","8","","" +"BG","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","U","Y15-29","2011","101","","" +"BG","M","POP","TOTAL","OC5","U","Y30-49","2011","573","","" +"BG","M","POP","TOTAL","OC5","U","Y50-64","2011","116","","" +"BG","M","POP","TOTAL","OC5","U","Y65-84","2011","8","","" +"BG","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC5","UNK","Y15-29","2011","199","","" +"BG","M","POP","TOTAL","OC5","UNK","Y30-49","2011","392","","" +"BG","M","POP","TOTAL","OC5","UNK","Y50-64","2011","163","","" +"BG","M","POP","TOTAL","OC5","UNK","Y65-84","2011","17","","" +"BG","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","A","Y15-29","2011","8320","","" +"BG","M","POP","TOTAL","OC6","A","Y30-49","2011","27609","","" +"BG","M","POP","TOTAL","OC6","A","Y50-64","2011","18434","","" +"BG","M","POP","TOTAL","OC6","A","Y65-84","2011","977","","" +"BG","M","POP","TOTAL","OC6","A","Y_GE85","2011","12","","" +"BG","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","B","Y15-29","2011","16","","" +"BG","M","POP","TOTAL","OC6","B","Y30-49","2011","46","","" +"BG","M","POP","TOTAL","OC6","B","Y50-64","2011","21","","" +"BG","M","POP","TOTAL","OC6","B","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","C","Y15-29","2011","272","","" +"BG","M","POP","TOTAL","OC6","C","Y30-49","2011","854","","" +"BG","M","POP","TOTAL","OC6","C","Y50-64","2011","427","","" +"BG","M","POP","TOTAL","OC6","C","Y65-84","2011","11","","" +"BG","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","D","Y15-29","2011","4","","" +"BG","M","POP","TOTAL","OC6","D","Y30-49","2011","6","","" +"BG","M","POP","TOTAL","OC6","D","Y50-64","2011","12","","" +"BG","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","E","Y15-29","2011","13","","" +"BG","M","POP","TOTAL","OC6","E","Y30-49","2011","33","","" +"BG","M","POP","TOTAL","OC6","E","Y50-64","2011","18","","" +"BG","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","F","Y15-29","2011","102","","" +"BG","M","POP","TOTAL","OC6","F","Y30-49","2011","220","","" +"BG","M","POP","TOTAL","OC6","F","Y50-64","2011","87","","" +"BG","M","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","G","Y15-29","2011","179","","" +"BG","M","POP","TOTAL","OC6","G","Y30-49","2011","501","","" +"BG","M","POP","TOTAL","OC6","G","Y50-64","2011","244","","" +"BG","M","POP","TOTAL","OC6","G","Y65-84","2011","10","","" +"BG","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","H","Y15-29","2011","22","","" +"BG","M","POP","TOTAL","OC6","H","Y30-49","2011","79","","" +"BG","M","POP","TOTAL","OC6","H","Y50-64","2011","43","","" +"BG","M","POP","TOTAL","OC6","H","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","H","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","I","Y15-29","2011","46","","" +"BG","M","POP","TOTAL","OC6","I","Y30-49","2011","97","","" +"BG","M","POP","TOTAL","OC6","I","Y50-64","2011","77","","" +"BG","M","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","J","Y15-29","2011","3","","" +"BG","M","POP","TOTAL","OC6","J","Y30-49","2011","9","","" +"BG","M","POP","TOTAL","OC6","J","Y50-64","2011","4","","" +"BG","M","POP","TOTAL","OC6","J","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","K","Y15-29","2011","3","","" +"BG","M","POP","TOTAL","OC6","K","Y30-49","2011","9","","" +"BG","M","POP","TOTAL","OC6","K","Y50-64","2011","7","","" +"BG","M","POP","TOTAL","OC6","K","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","L","Y15-29","2011","7","","" +"BG","M","POP","TOTAL","OC6","L","Y30-49","2011","32","","" +"BG","M","POP","TOTAL","OC6","L","Y50-64","2011","25","","" +"BG","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","M","Y15-29","2011","20","","" +"BG","M","POP","TOTAL","OC6","M","Y30-49","2011","62","","" +"BG","M","POP","TOTAL","OC6","M","Y50-64","2011","85","","" +"BG","M","POP","TOTAL","OC6","M","Y65-84","2011","5","","" +"BG","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","N","Y15-29","2011","97","","" +"BG","M","POP","TOTAL","OC6","N","Y30-49","2011","270","","" +"BG","M","POP","TOTAL","OC6","N","Y50-64","2011","228","","" +"BG","M","POP","TOTAL","OC6","N","Y65-84","2011","20","","" +"BG","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","O","Y15-29","2011","34","","" +"BG","M","POP","TOTAL","OC6","O","Y30-49","2011","197","","" +"BG","M","POP","TOTAL","OC6","O","Y50-64","2011","161","","" +"BG","M","POP","TOTAL","OC6","O","Y65-84","2011","4","","" +"BG","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","P","Y15-29","2011","9","","" +"BG","M","POP","TOTAL","OC6","P","Y30-49","2011","28","","" +"BG","M","POP","TOTAL","OC6","P","Y50-64","2011","66","","" +"BG","M","POP","TOTAL","OC6","P","Y65-84","2011","7","","" +"BG","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","OC6","Q","Y30-49","2011","9","","" +"BG","M","POP","TOTAL","OC6","Q","Y50-64","2011","15","","" +"BG","M","POP","TOTAL","OC6","Q","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","R","Y15-29","2011","19","","" +"BG","M","POP","TOTAL","OC6","R","Y30-49","2011","60","","" +"BG","M","POP","TOTAL","OC6","R","Y50-64","2011","35","","" +"BG","M","POP","TOTAL","OC6","R","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","S","Y15-29","2011","24","","" +"BG","M","POP","TOTAL","OC6","S","Y30-49","2011","67","","" +"BG","M","POP","TOTAL","OC6","S","Y50-64","2011","77","","" +"BG","M","POP","TOTAL","OC6","S","Y65-84","2011","7","","" +"BG","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","T","Y15-29","2011","56","","" +"BG","M","POP","TOTAL","OC6","T","Y30-49","2011","200","","" +"BG","M","POP","TOTAL","OC6","T","Y50-64","2011","158","","" +"BG","M","POP","TOTAL","OC6","T","Y65-84","2011","24","","" +"BG","M","POP","TOTAL","OC6","T","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","U","Y15-29","2011","4","","" +"BG","M","POP","TOTAL","OC6","U","Y30-49","2011","18","","" +"BG","M","POP","TOTAL","OC6","U","Y50-64","2011","13","","" +"BG","M","POP","TOTAL","OC6","U","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC6","UNK","Y15-29","2011","11","","" +"BG","M","POP","TOTAL","OC6","UNK","Y30-49","2011","87","","" +"BG","M","POP","TOTAL","OC6","UNK","Y50-64","2011","35","","" +"BG","M","POP","TOTAL","OC6","UNK","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","A","Y15-29","2011","282","","" +"BG","M","POP","TOTAL","OC7","A","Y30-49","2011","1489","","" +"BG","M","POP","TOTAL","OC7","A","Y50-64","2011","1587","","" +"BG","M","POP","TOTAL","OC7","A","Y65-84","2011","66","","" +"BG","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","B","Y15-29","2011","578","","" +"BG","M","POP","TOTAL","OC7","B","Y30-49","2011","2865","","" +"BG","M","POP","TOTAL","OC7","B","Y50-64","2011","1450","","" +"BG","M","POP","TOTAL","OC7","B","Y65-84","2011","21","","" +"BG","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","C","Y15-29","2011","18495","","" +"BG","M","POP","TOTAL","OC7","C","Y30-49","2011","53384","","" +"BG","M","POP","TOTAL","OC7","C","Y50-64","2011","30246","","" +"BG","M","POP","TOTAL","OC7","C","Y65-84","2011","860","","" +"BG","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","D","Y15-29","2011","835","","" +"BG","M","POP","TOTAL","OC7","D","Y30-49","2011","5804","","" +"BG","M","POP","TOTAL","OC7","D","Y50-64","2011","3367","","" +"BG","M","POP","TOTAL","OC7","D","Y65-84","2011","25","","" +"BG","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","E","Y15-29","2011","438","","" +"BG","M","POP","TOTAL","OC7","E","Y30-49","2011","2848","","" +"BG","M","POP","TOTAL","OC7","E","Y50-64","2011","2573","","" +"BG","M","POP","TOTAL","OC7","E","Y65-84","2011","32","","" +"BG","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","F","Y15-29","2011","18427","","" +"BG","M","POP","TOTAL","OC7","F","Y30-49","2011","52464","","" +"BG","M","POP","TOTAL","OC7","F","Y50-64","2011","25145","","" +"BG","M","POP","TOTAL","OC7","F","Y65-84","2011","495","","" +"BG","M","POP","TOTAL","OC7","F","Y_GE85","2011","5","","" +"BG","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","G","Y15-29","2011","6700","","" +"BG","M","POP","TOTAL","OC7","G","Y30-49","2011","15106","","" +"BG","M","POP","TOTAL","OC7","G","Y50-64","2011","4762","","" +"BG","M","POP","TOTAL","OC7","G","Y65-84","2011","179","","" +"BG","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","H","Y15-29","2011","1059","","" +"BG","M","POP","TOTAL","OC7","H","Y30-49","2011","5163","","" +"BG","M","POP","TOTAL","OC7","H","Y50-64","2011","3830","","" +"BG","M","POP","TOTAL","OC7","H","Y65-84","2011","70","","" +"BG","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","I","Y15-29","2011","569","","" +"BG","M","POP","TOTAL","OC7","I","Y30-49","2011","1216","","" +"BG","M","POP","TOTAL","OC7","I","Y50-64","2011","721","","" +"BG","M","POP","TOTAL","OC7","I","Y65-84","2011","24","","" +"BG","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","J","Y15-29","2011","693","","" +"BG","M","POP","TOTAL","OC7","J","Y30-49","2011","1151","","" +"BG","M","POP","TOTAL","OC7","J","Y50-64","2011","344","","" +"BG","M","POP","TOTAL","OC7","J","Y65-84","2011","11","","" +"BG","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","K","Y15-29","2011","17","","" +"BG","M","POP","TOTAL","OC7","K","Y30-49","2011","59","","" +"BG","M","POP","TOTAL","OC7","K","Y50-64","2011","34","","" +"BG","M","POP","TOTAL","OC7","K","Y65-84","2011","3","","" +"BG","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","L","Y15-29","2011","82","","" +"BG","M","POP","TOTAL","OC7","L","Y30-49","2011","375","","" +"BG","M","POP","TOTAL","OC7","L","Y50-64","2011","451","","" +"BG","M","POP","TOTAL","OC7","L","Y65-84","2011","31","","" +"BG","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","M","Y15-29","2011","503","","" +"BG","M","POP","TOTAL","OC7","M","Y30-49","2011","1344","","" +"BG","M","POP","TOTAL","OC7","M","Y50-64","2011","719","","" +"BG","M","POP","TOTAL","OC7","M","Y65-84","2011","72","","" +"BG","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","N","Y15-29","2011","414","","" +"BG","M","POP","TOTAL","OC7","N","Y30-49","2011","908","","" +"BG","M","POP","TOTAL","OC7","N","Y50-64","2011","661","","" +"BG","M","POP","TOTAL","OC7","N","Y65-84","2011","27","","" +"BG","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","O","Y15-29","2011","211","","" +"BG","M","POP","TOTAL","OC7","O","Y30-49","2011","930","","" +"BG","M","POP","TOTAL","OC7","O","Y50-64","2011","1176","","" +"BG","M","POP","TOTAL","OC7","O","Y65-84","2011","41","","" +"BG","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","P","Y15-29","2011","30","","" +"BG","M","POP","TOTAL","OC7","P","Y30-49","2011","381","","" +"BG","M","POP","TOTAL","OC7","P","Y50-64","2011","826","","" +"BG","M","POP","TOTAL","OC7","P","Y65-84","2011","104","","" +"BG","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","Q","Y15-29","2011","34","","" +"BG","M","POP","TOTAL","OC7","Q","Y30-49","2011","271","","" +"BG","M","POP","TOTAL","OC7","Q","Y50-64","2011","577","","" +"BG","M","POP","TOTAL","OC7","Q","Y65-84","2011","32","","" +"BG","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","R","Y15-29","2011","172","","" +"BG","M","POP","TOTAL","OC7","R","Y30-49","2011","624","","" +"BG","M","POP","TOTAL","OC7","R","Y50-64","2011","482","","" +"BG","M","POP","TOTAL","OC7","R","Y65-84","2011","35","","" +"BG","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","S","Y15-29","2011","589","","" +"BG","M","POP","TOTAL","OC7","S","Y30-49","2011","2117","","" +"BG","M","POP","TOTAL","OC7","S","Y50-64","2011","1484","","" +"BG","M","POP","TOTAL","OC7","S","Y65-84","2011","235","","" +"BG","M","POP","TOTAL","OC7","S","Y_GE85","2011","5","","" +"BG","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","T","Y15-29","2011","27","","" +"BG","M","POP","TOTAL","OC7","T","Y30-49","2011","79","","" +"BG","M","POP","TOTAL","OC7","T","Y50-64","2011","25","","" +"BG","M","POP","TOTAL","OC7","T","Y65-84","2011","13","","" +"BG","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","U","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","OC7","U","Y30-49","2011","26","","" +"BG","M","POP","TOTAL","OC7","U","Y50-64","2011","22","","" +"BG","M","POP","TOTAL","OC7","U","Y65-84","2011","4","","" +"BG","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC7","UNK","Y15-29","2011","141","","" +"BG","M","POP","TOTAL","OC7","UNK","Y30-49","2011","568","","" +"BG","M","POP","TOTAL","OC7","UNK","Y50-64","2011","322","","" +"BG","M","POP","TOTAL","OC7","UNK","Y65-84","2011","3","","" +"BG","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","A","Y15-29","2011","1691","","" +"BG","M","POP","TOTAL","OC8","A","Y30-49","2011","8756","","" +"BG","M","POP","TOTAL","OC8","A","Y50-64","2011","5647","","" +"BG","M","POP","TOTAL","OC8","A","Y65-84","2011","126","","" +"BG","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","B","Y15-29","2011","966","","" +"BG","M","POP","TOTAL","OC8","B","Y30-49","2011","6223","","" +"BG","M","POP","TOTAL","OC8","B","Y50-64","2011","2774","","" +"BG","M","POP","TOTAL","OC8","B","Y65-84","2011","51","","" +"BG","M","POP","TOTAL","OC8","B","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","C","Y15-29","2011","16237","","" +"BG","M","POP","TOTAL","OC8","C","Y30-49","2011","43639","","" +"BG","M","POP","TOTAL","OC8","C","Y50-64","2011","21148","","" +"BG","M","POP","TOTAL","OC8","C","Y65-84","2011","532","","" +"BG","M","POP","TOTAL","OC8","C","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","D","Y15-29","2011","334","","" +"BG","M","POP","TOTAL","OC8","D","Y30-49","2011","2179","","" +"BG","M","POP","TOTAL","OC8","D","Y50-64","2011","1348","","" +"BG","M","POP","TOTAL","OC8","D","Y65-84","2011","26","","" +"BG","M","POP","TOTAL","OC8","D","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","E","Y15-29","2011","405","","" +"BG","M","POP","TOTAL","OC8","E","Y30-49","2011","2933","","" +"BG","M","POP","TOTAL","OC8","E","Y50-64","2011","2690","","" +"BG","M","POP","TOTAL","OC8","E","Y65-84","2011","50","","" +"BG","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","F","Y15-29","2011","4238","","" +"BG","M","POP","TOTAL","OC8","F","Y30-49","2011","15237","","" +"BG","M","POP","TOTAL","OC8","F","Y50-64","2011","9786","","" +"BG","M","POP","TOTAL","OC8","F","Y65-84","2011","260","","" +"BG","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","G","Y15-29","2011","7148","","" +"BG","M","POP","TOTAL","OC8","G","Y30-49","2011","19033","","" +"BG","M","POP","TOTAL","OC8","G","Y50-64","2011","5639","","" +"BG","M","POP","TOTAL","OC8","G","Y65-84","2011","124","","" +"BG","M","POP","TOTAL","OC8","G","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","H","Y15-29","2011","6468","","" +"BG","M","POP","TOTAL","OC8","H","Y30-49","2011","42743","","" +"BG","M","POP","TOTAL","OC8","H","Y50-64","2011","20016","","" +"BG","M","POP","TOTAL","OC8","H","Y65-84","2011","335","","" +"BG","M","POP","TOTAL","OC8","H","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","I","Y15-29","2011","534","","" +"BG","M","POP","TOTAL","OC8","I","Y30-49","2011","1029","","" +"BG","M","POP","TOTAL","OC8","I","Y50-64","2011","558","","" +"BG","M","POP","TOTAL","OC8","I","Y65-84","2011","18","","" +"BG","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","J","Y15-29","2011","442","","" +"BG","M","POP","TOTAL","OC8","J","Y30-49","2011","798","","" +"BG","M","POP","TOTAL","OC8","J","Y50-64","2011","288","","" +"BG","M","POP","TOTAL","OC8","J","Y65-84","2011","14","","" +"BG","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","K","Y15-29","2011","66","","" +"BG","M","POP","TOTAL","OC8","K","Y30-49","2011","250","","" +"BG","M","POP","TOTAL","OC8","K","Y50-64","2011","160","","" +"BG","M","POP","TOTAL","OC8","K","Y65-84","2011","4","","" +"BG","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","L","Y15-29","2011","133","","" +"BG","M","POP","TOTAL","OC8","L","Y30-49","2011","405","","" +"BG","M","POP","TOTAL","OC8","L","Y50-64","2011","289","","" +"BG","M","POP","TOTAL","OC8","L","Y65-84","2011","13","","" +"BG","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","M","Y15-29","2011","367","","" +"BG","M","POP","TOTAL","OC8","M","Y30-49","2011","1056","","" +"BG","M","POP","TOTAL","OC8","M","Y50-64","2011","638","","" +"BG","M","POP","TOTAL","OC8","M","Y65-84","2011","50","","" +"BG","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","N","Y15-29","2011","542","","" +"BG","M","POP","TOTAL","OC8","N","Y30-49","2011","1662","","" +"BG","M","POP","TOTAL","OC8","N","Y50-64","2011","1074","","" +"BG","M","POP","TOTAL","OC8","N","Y65-84","2011","25","","" +"BG","M","POP","TOTAL","OC8","N","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","O","Y15-29","2011","461","","" +"BG","M","POP","TOTAL","OC8","O","Y30-49","2011","2460","","" +"BG","M","POP","TOTAL","OC8","O","Y50-64","2011","2187","","" +"BG","M","POP","TOTAL","OC8","O","Y65-84","2011","80","","" +"BG","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","P","Y15-29","2011","61","","" +"BG","M","POP","TOTAL","OC8","P","Y30-49","2011","861","","" +"BG","M","POP","TOTAL","OC8","P","Y50-64","2011","1776","","" +"BG","M","POP","TOTAL","OC8","P","Y65-84","2011","154","","" +"BG","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","Q","Y15-29","2011","139","","" +"BG","M","POP","TOTAL","OC8","Q","Y30-49","2011","1947","","" +"BG","M","POP","TOTAL","OC8","Q","Y50-64","2011","2300","","" +"BG","M","POP","TOTAL","OC8","Q","Y65-84","2011","100","","" +"BG","M","POP","TOTAL","OC8","Q","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","R","Y15-29","2011","163","","" +"BG","M","POP","TOTAL","OC8","R","Y30-49","2011","473","","" +"BG","M","POP","TOTAL","OC8","R","Y50-64","2011","294","","" +"BG","M","POP","TOTAL","OC8","R","Y65-84","2011","24","","" +"BG","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","S","Y15-29","2011","461","","" +"BG","M","POP","TOTAL","OC8","S","Y30-49","2011","1126","","" +"BG","M","POP","TOTAL","OC8","S","Y50-64","2011","673","","" +"BG","M","POP","TOTAL","OC8","S","Y65-84","2011","53","","" +"BG","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","T","Y15-29","2011","19","","" +"BG","M","POP","TOTAL","OC8","T","Y30-49","2011","32","","" +"BG","M","POP","TOTAL","OC8","T","Y50-64","2011","16","","" +"BG","M","POP","TOTAL","OC8","T","Y65-84","2011","4","","" +"BG","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","U","Y15-29","2011","10","","" +"BG","M","POP","TOTAL","OC8","U","Y30-49","2011","72","","" +"BG","M","POP","TOTAL","OC8","U","Y50-64","2011","53","","" +"BG","M","POP","TOTAL","OC8","U","Y65-84","2011","4","","" +"BG","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC8","UNK","Y15-29","2011","89","","" +"BG","M","POP","TOTAL","OC8","UNK","Y30-49","2011","380","","" +"BG","M","POP","TOTAL","OC8","UNK","Y50-64","2011","202","","" +"BG","M","POP","TOTAL","OC8","UNK","Y65-84","2011","3","","" +"BG","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","A","Y15-29","2011","3957","","" +"BG","M","POP","TOTAL","OC9","A","Y30-49","2011","9346","","" +"BG","M","POP","TOTAL","OC9","A","Y50-64","2011","5910","","" +"BG","M","POP","TOTAL","OC9","A","Y65-84","2011","241","","" +"BG","M","POP","TOTAL","OC9","A","Y_GE85","2011","4","","" +"BG","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","B","Y15-29","2011","544","","" +"BG","M","POP","TOTAL","OC9","B","Y30-49","2011","2192","","" +"BG","M","POP","TOTAL","OC9","B","Y50-64","2011","1027","","" +"BG","M","POP","TOTAL","OC9","B","Y65-84","2011","33","","" +"BG","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","C","Y15-29","2011","12489","","" +"BG","M","POP","TOTAL","OC9","C","Y30-49","2011","21016","","" +"BG","M","POP","TOTAL","OC9","C","Y50-64","2011","9505","","" +"BG","M","POP","TOTAL","OC9","C","Y65-84","2011","345","","" +"BG","M","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","D","Y15-29","2011","199","","" +"BG","M","POP","TOTAL","OC9","D","Y30-49","2011","626","","" +"BG","M","POP","TOTAL","OC9","D","Y50-64","2011","414","","" +"BG","M","POP","TOTAL","OC9","D","Y65-84","2011","6","","" +"BG","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","E","Y15-29","2011","1836","","" +"BG","M","POP","TOTAL","OC9","E","Y30-49","2011","4292","","" +"BG","M","POP","TOTAL","OC9","E","Y50-64","2011","2319","","" +"BG","M","POP","TOTAL","OC9","E","Y65-84","2011","56","","" +"BG","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","F","Y15-29","2011","11057","","" +"BG","M","POP","TOTAL","OC9","F","Y30-49","2011","21618","","" +"BG","M","POP","TOTAL","OC9","F","Y50-64","2011","9031","","" +"BG","M","POP","TOTAL","OC9","F","Y65-84","2011","227","","" +"BG","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","G","Y15-29","2011","10930","","" +"BG","M","POP","TOTAL","OC9","G","Y30-49","2011","13896","","" +"BG","M","POP","TOTAL","OC9","G","Y50-64","2011","4302","","" +"BG","M","POP","TOTAL","OC9","G","Y65-84","2011","281","","" +"BG","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","H","Y15-29","2011","1804","","" +"BG","M","POP","TOTAL","OC9","H","Y30-49","2011","5312","","" +"BG","M","POP","TOTAL","OC9","H","Y50-64","2011","2890","","" +"BG","M","POP","TOTAL","OC9","H","Y65-84","2011","102","","" +"BG","M","POP","TOTAL","OC9","H","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","I","Y15-29","2011","1878","","" +"BG","M","POP","TOTAL","OC9","I","Y30-49","2011","1938","","" +"BG","M","POP","TOTAL","OC9","I","Y50-64","2011","853","","" +"BG","M","POP","TOTAL","OC9","I","Y65-84","2011","52","","" +"BG","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","J","Y15-29","2011","287","","" +"BG","M","POP","TOTAL","OC9","J","Y30-49","2011","334","","" +"BG","M","POP","TOTAL","OC9","J","Y50-64","2011","111","","" +"BG","M","POP","TOTAL","OC9","J","Y65-84","2011","19","","" +"BG","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","K","Y15-29","2011","51","","" +"BG","M","POP","TOTAL","OC9","K","Y30-49","2011","84","","" +"BG","M","POP","TOTAL","OC9","K","Y50-64","2011","43","","" +"BG","M","POP","TOTAL","OC9","K","Y65-84","2011","3","","" +"BG","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","L","Y15-29","2011","191","","" +"BG","M","POP","TOTAL","OC9","L","Y30-49","2011","450","","" +"BG","M","POP","TOTAL","OC9","L","Y50-64","2011","487","","" +"BG","M","POP","TOTAL","OC9","L","Y65-84","2011","74","","" +"BG","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","M","Y15-29","2011","419","","" +"BG","M","POP","TOTAL","OC9","M","Y30-49","2011","581","","" +"BG","M","POP","TOTAL","OC9","M","Y50-64","2011","335","","" +"BG","M","POP","TOTAL","OC9","M","Y65-84","2011","29","","" +"BG","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","N","Y15-29","2011","1688","","" +"BG","M","POP","TOTAL","OC9","N","Y30-49","2011","2626","","" +"BG","M","POP","TOTAL","OC9","N","Y50-64","2011","1793","","" +"BG","M","POP","TOTAL","OC9","N","Y65-84","2011","97","","" +"BG","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","O","Y15-29","2011","1911","","" +"BG","M","POP","TOTAL","OC9","O","Y30-49","2011","6263","","" +"BG","M","POP","TOTAL","OC9","O","Y50-64","2011","6221","","" +"BG","M","POP","TOTAL","OC9","O","Y65-84","2011","100","","" +"BG","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","P","Y15-29","2011","109","","" +"BG","M","POP","TOTAL","OC9","P","Y30-49","2011","619","","" +"BG","M","POP","TOTAL","OC9","P","Y50-64","2011","1185","","" +"BG","M","POP","TOTAL","OC9","P","Y65-84","2011","197","","" +"BG","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","Q","Y15-29","2011","116","","" +"BG","M","POP","TOTAL","OC9","Q","Y30-49","2011","447","","" +"BG","M","POP","TOTAL","OC9","Q","Y50-64","2011","624","","" +"BG","M","POP","TOTAL","OC9","Q","Y65-84","2011","55","","" +"BG","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","R","Y15-29","2011","314","","" +"BG","M","POP","TOTAL","OC9","R","Y30-49","2011","515","","" +"BG","M","POP","TOTAL","OC9","R","Y50-64","2011","385","","" +"BG","M","POP","TOTAL","OC9","R","Y65-84","2011","42","","" +"BG","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","S","Y15-29","2011","1001","","" +"BG","M","POP","TOTAL","OC9","S","Y30-49","2011","1350","","" +"BG","M","POP","TOTAL","OC9","S","Y50-64","2011","590","","" +"BG","M","POP","TOTAL","OC9","S","Y65-84","2011","46","","" +"BG","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","T","Y15-29","2011","175","","" +"BG","M","POP","TOTAL","OC9","T","Y30-49","2011","316","","" +"BG","M","POP","TOTAL","OC9","T","Y50-64","2011","146","","" +"BG","M","POP","TOTAL","OC9","T","Y65-84","2011","18","","" +"BG","M","POP","TOTAL","OC9","T","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","U","Y15-29","2011","19","","" +"BG","M","POP","TOTAL","OC9","U","Y30-49","2011","45","","" +"BG","M","POP","TOTAL","OC9","U","Y50-64","2011","33","","" +"BG","M","POP","TOTAL","OC9","U","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","OC9","UNK","Y15-29","2011","146","","" +"BG","M","POP","TOTAL","OC9","UNK","Y30-49","2011","378","","" +"BG","M","POP","TOTAL","OC9","UNK","Y50-64","2011","174","","" +"BG","M","POP","TOTAL","OC9","UNK","Y65-84","2011","3","","" +"BG","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","A","Y15-29","2011","337","","" +"BG","M","POP","TOTAL","UNK","A","Y30-49","2011","595","","" +"BG","M","POP","TOTAL","UNK","A","Y50-64","2011","257","","" +"BG","M","POP","TOTAL","UNK","A","Y65-84","2011","12","","" +"BG","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","B","Y15-29","2011","29","","" +"BG","M","POP","TOTAL","UNK","B","Y30-49","2011","99","","" +"BG","M","POP","TOTAL","UNK","B","Y50-64","2011","34","","" +"BG","M","POP","TOTAL","UNK","B","Y65-84","2011","4","","" +"BG","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","C","Y15-29","2011","1343","","" +"BG","M","POP","TOTAL","UNK","C","Y30-49","2011","2044","","" +"BG","M","POP","TOTAL","UNK","C","Y50-64","2011","640","","" +"BG","M","POP","TOTAL","UNK","C","Y65-84","2011","27","","" +"BG","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","D","Y15-29","2011","23","","" +"BG","M","POP","TOTAL","UNK","D","Y30-49","2011","64","","" +"BG","M","POP","TOTAL","UNK","D","Y50-64","2011","31","","" +"BG","M","POP","TOTAL","UNK","D","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","E","Y15-29","2011","108","","" +"BG","M","POP","TOTAL","UNK","E","Y30-49","2011","201","","" +"BG","M","POP","TOTAL","UNK","E","Y50-64","2011","82","","" +"BG","M","POP","TOTAL","UNK","E","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","F","Y15-29","2011","1734","","" +"BG","M","POP","TOTAL","UNK","F","Y30-49","2011","2903","","" +"BG","M","POP","TOTAL","UNK","F","Y50-64","2011","881","","" +"BG","M","POP","TOTAL","UNK","F","Y65-84","2011","32","","" +"BG","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","G","Y15-29","2011","2062","","" +"BG","M","POP","TOTAL","UNK","G","Y30-49","2011","2861","","" +"BG","M","POP","TOTAL","UNK","G","Y50-64","2011","544","","" +"BG","M","POP","TOTAL","UNK","G","Y65-84","2011","43","","" +"BG","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","H","Y15-29","2011","277","","" +"BG","M","POP","TOTAL","UNK","H","Y30-49","2011","1172","","" +"BG","M","POP","TOTAL","UNK","H","Y50-64","2011","425","","" +"BG","M","POP","TOTAL","UNK","H","Y65-84","2011","10","","" +"BG","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","I","Y15-29","2011","1099","","" +"BG","M","POP","TOTAL","UNK","I","Y30-49","2011","921","","" +"BG","M","POP","TOTAL","UNK","I","Y50-64","2011","199","","" +"BG","M","POP","TOTAL","UNK","I","Y65-84","2011","6","","" +"BG","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","J","Y15-29","2011","249","","" +"BG","M","POP","TOTAL","UNK","J","Y30-49","2011","241","","" +"BG","M","POP","TOTAL","UNK","J","Y50-64","2011","27","","" +"BG","M","POP","TOTAL","UNK","J","Y65-84","2011","3","","" +"BG","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","K","Y15-29","2011","96","","" +"BG","M","POP","TOTAL","UNK","K","Y30-49","2011","114","","" +"BG","M","POP","TOTAL","UNK","K","Y50-64","2011","30","","" +"BG","M","POP","TOTAL","UNK","K","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","L","Y15-29","2011","85","","" +"BG","M","POP","TOTAL","UNK","L","Y30-49","2011","153","","" +"BG","M","POP","TOTAL","UNK","L","Y50-64","2011","77","","" +"BG","M","POP","TOTAL","UNK","L","Y65-84","2011","7","","" +"BG","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","M","Y15-29","2011","216","","" +"BG","M","POP","TOTAL","UNK","M","Y30-49","2011","347","","" +"BG","M","POP","TOTAL","UNK","M","Y50-64","2011","131","","" +"BG","M","POP","TOTAL","UNK","M","Y65-84","2011","12","","" +"BG","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","N","Y15-29","2011","423","","" +"BG","M","POP","TOTAL","UNK","N","Y30-49","2011","565","","" +"BG","M","POP","TOTAL","UNK","N","Y50-64","2011","272","","" +"BG","M","POP","TOTAL","UNK","N","Y65-84","2011","45","","" +"BG","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"BG","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"BG","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"BG","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","O","Y15-29","2011","64","","" +"BG","M","POP","TOTAL","UNK","O","Y30-49","2011","233","","" +"BG","M","POP","TOTAL","UNK","O","Y50-64","2011","154","","" +"BG","M","POP","TOTAL","UNK","O","Y65-84","2011","6","","" +"BG","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","P","Y15-29","2011","51","","" +"BG","M","POP","TOTAL","UNK","P","Y30-49","2011","93","","" +"BG","M","POP","TOTAL","UNK","P","Y50-64","2011","92","","" +"BG","M","POP","TOTAL","UNK","P","Y65-84","2011","13","","" +"BG","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","Q","Y15-29","2011","36","","" +"BG","M","POP","TOTAL","UNK","Q","Y30-49","2011","148","","" +"BG","M","POP","TOTAL","UNK","Q","Y50-64","2011","85","","" +"BG","M","POP","TOTAL","UNK","Q","Y65-84","2011","9","","" +"BG","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","R","Y15-29","2011","237","","" +"BG","M","POP","TOTAL","UNK","R","Y30-49","2011","215","","" +"BG","M","POP","TOTAL","UNK","R","Y50-64","2011","82","","" +"BG","M","POP","TOTAL","UNK","R","Y65-84","2011","8","","" +"BG","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","S","Y15-29","2011","204","","" +"BG","M","POP","TOTAL","UNK","S","Y30-49","2011","286","","" +"BG","M","POP","TOTAL","UNK","S","Y50-64","2011","126","","" +"BG","M","POP","TOTAL","UNK","S","Y65-84","2011","15","","" +"BG","M","POP","TOTAL","UNK","S","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","T","Y15-29","2011","3","","" +"BG","M","POP","TOTAL","UNK","T","Y30-49","2011","10","","" +"BG","M","POP","TOTAL","UNK","T","Y50-64","2011",":","c","" +"BG","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"BG","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","U","Y15-29","2011",":","c","" +"BG","M","POP","TOTAL","UNK","U","Y30-49","2011","6","","" +"BG","M","POP","TOTAL","UNK","U","Y50-64","2011",":","c","" +"BG","M","POP","TOTAL","UNK","U","Y65-84","2011",":","c","" +"BG","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"BG","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"BG","M","POP","TOTAL","UNK","UNK","Y15-29","2011","4853","","" +"BG","M","POP","TOTAL","UNK","UNK","Y30-49","2011","8552","","" +"BG","M","POP","TOTAL","UNK","UNK","Y50-64","2011","4067","","" +"BG","M","POP","TOTAL","UNK","UNK","Y65-84","2011","251","","" +"BG","M","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","c","" +"BG","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","NAP","Y15-29","2011","248059","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","NAP","NAP","Y30-49","2011","259175","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","NAP","NAP","Y50-64","2011","269029","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","NAP","NAP","Y65-84","2011","595087","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","90893","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","C","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","F","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","H","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","I","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","I","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","O","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","Q","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","R","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","A","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","A","Y30-49","2011","464","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","A","Y50-64","2011","319","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","C","Y15-29","2011","1795","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","C","Y30-49","2011","6779","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","C","Y50-64","2011","1832","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","C","Y65-84","2011","135","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","D","Y30-49","2011","203","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","D","Y50-64","2011","104","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC1","E","Y30-49","2011","91","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","E","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","F","Y15-29","2011","263","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","F","Y30-49","2011","977","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","F","Y50-64","2011","264","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","G","Y15-29","2011","3084","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","G","Y30-49","2011","11772","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","G","Y50-64","2011","4568","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","G","Y65-84","2011","395","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","H","Y15-29","2011","428","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","H","Y30-49","2011","1661","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","H","Y50-64","2011","472","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","I","Y15-29","2011","2555","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","I","Y30-49","2011","5065","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","I","Y50-64","2011","4235","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","I","Y65-84","2011","549","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","J","Y15-29","2011","742","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","J","Y30-49","2011","2903","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","J","Y50-64","2011","509","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","K","Y15-29","2011","1657","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","K","Y30-49","2011","6477","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","K","Y50-64","2011","1482","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","L","Y15-29","2011","192","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","L","Y30-49","2011","593","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","L","Y50-64","2011","240","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","M","Y15-29","2011","1537","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","M","Y30-49","2011","7399","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","M","Y50-64","2011","1689","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","M","Y65-84","2011","90","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","N","Y15-29","2011","665","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","N","Y30-49","2011","2452","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","N","Y50-64","2011","880","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","N","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","NAP","Y30-49","2011","746","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","NAP","Y50-64","2011","204","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","O","Y15-29","2011","384","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","O","Y30-49","2011","3577","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","O","Y50-64","2011","1889","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","P","Y15-29","2011","456","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","P","Y30-49","2011","2938","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","P","Y50-64","2011","2060","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","Q","Y15-29","2011","880","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","Q","Y30-49","2011","6653","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","Q","Y50-64","2011","4885","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","Q","Y65-84","2011","88","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","R","Y15-29","2011","254","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","R","Y30-49","2011","1081","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","R","Y50-64","2011","628","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","S","Y15-29","2011","215","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","S","Y30-49","2011","2646","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","S","Y50-64","2011","1391","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC1","U","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC1","UNK","Y15-29","2011","2073","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","UNK","Y30-49","2011","8473","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","UNK","Y50-64","2011","3964","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","UNK","Y65-84","2011","257","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","A","Y15-29","2011","711","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","A","Y30-49","2011","1353","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","A","Y50-64","2011","1245","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC2","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","C","Y15-29","2011","3463","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","C","Y30-49","2011","6820","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","C","Y50-64","2011","1609","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","C","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","D","Y15-29","2011","96","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","D","Y30-49","2011","293","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","D","Y50-64","2011","183","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","E","Y30-49","2011","355","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","E","Y50-64","2011","140","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","F","Y15-29","2011","376","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","F","Y30-49","2011","803","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","F","Y50-64","2011","336","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","G","Y15-29","2011","5899","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","G","Y30-49","2011","9552","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","G","Y50-64","2011","3851","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","G","Y65-84","2011","234","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","H","Y15-29","2011","1187","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","H","Y30-49","2011","2103","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","H","Y50-64","2011","755","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","I","Y15-29","2011","638","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","I","Y30-49","2011","2203","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","I","Y50-64","2011","488","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","J","Y15-29","2011","2282","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","J","Y30-49","2011","6009","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","J","Y50-64","2011","1574","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","K","Y15-29","2011","2877","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","K","Y30-49","2011","8681","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","K","Y50-64","2011","2646","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","L","Y15-29","2011","351","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","L","Y30-49","2011","793","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","L","Y50-64","2011","308","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","M","Y15-29","2011","8595","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","M","Y30-49","2011","18253","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","M","Y50-64","2011","4910","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","M","Y65-84","2011","769","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","M","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","N","Y15-29","2011","1893","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","N","Y30-49","2011","3093","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","N","Y50-64","2011","1277","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","N","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","NAP","Y15-29","2011","645","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","NAP","Y30-49","2011","1306","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","NAP","Y50-64","2011","497","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","O","Y15-29","2011","3952","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","O","Y30-49","2011","15985","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","O","Y50-64","2011","8396","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","O","Y65-84","2011","105","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","P","Y15-29","2011","15713","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","P","Y30-49","2011","43518","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","P","Y50-64","2011","23113","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","P","Y65-84","2011","512","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","Q","Y15-29","2011","15772","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","Q","Y30-49","2011","35516","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","Q","Y50-64","2011","18321","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","Q","Y65-84","2011","1318","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","R","Y15-29","2011","1054","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","R","Y30-49","2011","3694","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","R","Y50-64","2011","2323","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","R","Y65-84","2011","182","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","S","Y15-29","2011","1859","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","S","Y30-49","2011","5973","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","S","Y50-64","2011","3317","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","S","Y65-84","2011","410","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","U","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","U","Y30-49","2011","142","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","U","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC2","UNK","Y15-29","2011","7758","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","UNK","Y30-49","2011","30038","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","UNK","Y50-64","2011","17341","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","UNK","Y65-84","2011","2528","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","UNK","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","A","Y15-29","2011","576","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","A","Y30-49","2011","1821","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","A","Y50-64","2011","1250","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","B","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","C","Y15-29","2011","8160","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","C","Y30-49","2011","14602","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","C","Y50-64","2011","5458","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","C","Y65-84","2011","135","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","D","Y15-29","2011","189","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","D","Y30-49","2011","862","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","D","Y50-64","2011","179","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","E","Y30-49","2011","292","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","E","Y50-64","2011","136","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","F","Y15-29","2011","1252","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","F","Y30-49","2011","3030","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","F","Y50-64","2011","1176","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","G","Y15-29","2011","14276","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","G","Y30-49","2011","19108","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","G","Y50-64","2011","8011","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","G","Y65-84","2011","544","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","G","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","H","Y15-29","2011","1738","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","H","Y30-49","2011","3793","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","H","Y50-64","2011","1038","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","I","Y15-29","2011","1677","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","I","Y30-49","2011","2541","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","I","Y50-64","2011","953","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","J","Y15-29","2011","1958","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","J","Y30-49","2011","3384","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","J","Y50-64","2011","1146","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","K","Y15-29","2011","11135","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","K","Y30-49","2011","21626","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","K","Y50-64","2011","8048","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","L","Y15-29","2011","1677","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","L","Y30-49","2011","3183","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","L","Y50-64","2011","1411","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","L","Y65-84","2011","195","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","M","Y15-29","2011","10991","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","M","Y30-49","2011","14697","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","M","Y50-64","2011","6303","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","M","Y65-84","2011","474","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","N","Y15-29","2011","2001","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","N","Y30-49","2011","3558","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","N","Y50-64","2011","1626","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","N","Y65-84","2011","103","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","NAP","Y15-29","2011","524","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","NAP","Y30-49","2011","819","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","NAP","Y50-64","2011","259","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","O","Y15-29","2011","5827","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","O","Y30-49","2011","10773","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","O","Y50-64","2011","6186","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","P","Y15-29","2011","3217","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","P","Y30-49","2011","5089","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","P","Y50-64","2011","2805","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","P","Y65-84","2011","137","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","Q","Y15-29","2011","18916","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","Q","Y30-49","2011","46207","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","Q","Y50-64","2011","27929","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","Q","Y65-84","2011","625","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","R","Y15-29","2011","1500","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","R","Y30-49","2011","2275","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","R","Y50-64","2011","942","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","S","Y15-29","2011","1832","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","S","Y30-49","2011","4857","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","S","Y50-64","2011","3632","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","S","Y65-84","2011","94","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","U","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","U","Y30-49","2011","127","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","U","Y50-64","2011","107","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC3","UNK","Y15-29","2011","8423","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","UNK","Y30-49","2011","18769","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","UNK","Y50-64","2011","10777","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","UNK","Y65-84","2011","784","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","A","Y15-29","2011","347","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","A","Y30-49","2011","1237","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","A","Y50-64","2011","662","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC4","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","C","Y15-29","2011","5475","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","C","Y30-49","2011","13483","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","C","Y50-64","2011","9000","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","C","Y65-84","2011","578","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","D","Y15-29","2011","227","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","D","Y30-49","2011","611","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","D","Y50-64","2011","348","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","D","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","E","Y15-29","2011","227","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","E","Y30-49","2011","450","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","E","Y50-64","2011","166","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","E","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","F","Y15-29","2011","1851","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","F","Y30-49","2011","7289","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","F","Y50-64","2011","4040","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","F","Y65-84","2011","390","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","G","Y15-29","2011","6462","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","G","Y30-49","2011","17843","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","G","Y50-64","2011","10324","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","G","Y65-84","2011","686","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","H","Y15-29","2011","3149","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","H","Y30-49","2011","10431","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","H","Y50-64","2011","6024","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","H","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","I","Y15-29","2011","2155","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","I","Y30-49","2011","2287","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","I","Y50-64","2011","991","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","I","Y65-84","2011","88","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","J","Y15-29","2011","2040","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","J","Y30-49","2011","4264","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","J","Y50-64","2011","2230","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","K","Y15-29","2011","8438","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","K","Y30-49","2011","14543","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","K","Y50-64","2011","6340","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","K","Y65-84","2011","170","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","L","Y15-29","2011","1303","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","L","Y30-49","2011","2165","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","L","Y50-64","2011","984","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","L","Y65-84","2011","180","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","M","Y15-29","2011","6023","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","M","Y30-49","2011","13232","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","M","Y50-64","2011","8282","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","M","Y65-84","2011","658","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","M","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","N","Y15-29","2011","3678","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","N","Y30-49","2011","5641","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","N","Y50-64","2011","2744","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","N","Y65-84","2011","177","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","NAP","Y15-29","2011","470","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","NAP","Y30-49","2011","538","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","NAP","Y50-64","2011","287","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","O","Y15-29","2011","4214","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","O","Y30-49","2011","7161","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","O","Y50-64","2011","3740","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","P","Y15-29","2011","1792","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","P","Y30-49","2011","4116","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","P","Y50-64","2011","2819","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","P","Y65-84","2011","118","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","Q","Y15-29","2011","2414","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","Q","Y30-49","2011","7721","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","Q","Y50-64","2011","4920","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","Q","Y65-84","2011","227","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","R","Y15-29","2011","753","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","R","Y30-49","2011","1775","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","R","Y50-64","2011","970","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","S","Y15-29","2011","1355","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","S","Y30-49","2011","3908","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","S","Y50-64","2011","2616","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","S","Y65-84","2011","245","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","U","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","U","Y30-49","2011","196","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","U","Y50-64","2011","142","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC4","UNK","Y15-29","2011","3663","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","UNK","Y30-49","2011","9946","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","UNK","Y50-64","2011","5432","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","UNK","Y65-84","2011","663","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","A","Y15-29","2011","1254","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","A","Y30-49","2011","1914","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","A","Y50-64","2011","1852","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","B","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC5","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","C","Y15-29","2011","2311","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","C","Y30-49","2011","4909","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","C","Y50-64","2011","2932","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","C","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","D","Y30-49","2011","185","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","D","Y50-64","2011","169","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC5","E","Y30-49","2011","165","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","E","Y50-64","2011","119","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","F","Y15-29","2011","565","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","F","Y30-49","2011","671","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","F","Y50-64","2011","536","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","G","Y15-29","2011","38052","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","G","Y30-49","2011","42782","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","G","Y50-64","2011","27976","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","G","Y65-84","2011","1202","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","G","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","H","Y15-29","2011","3438","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","H","Y30-49","2011","4029","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","H","Y50-64","2011","1604","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","H","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","I","Y15-29","2011","17131","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","I","Y30-49","2011","21582","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","I","Y50-64","2011","9304","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","I","Y65-84","2011","539","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","J","Y15-29","2011","987","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","J","Y30-49","2011","1191","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","J","Y50-64","2011","471","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","K","Y15-29","2011","1414","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","K","Y30-49","2011","2357","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","K","Y50-64","2011","1403","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","L","Y15-29","2011","966","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","L","Y30-49","2011","2725","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","L","Y50-64","2011","2357","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","L","Y65-84","2011","279","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","L","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","M","Y15-29","2011","2688","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","M","Y30-49","2011","4623","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","M","Y50-64","2011","2535","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","M","Y65-84","2011","165","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","N","Y15-29","2011","2064","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","N","Y30-49","2011","3570","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","N","Y50-64","2011","1940","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","N","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","NAP","Y15-29","2011","386","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","NAP","Y30-49","2011","602","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","NAP","Y50-64","2011","232","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","O","Y15-29","2011","1168","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","O","Y30-49","2011","4361","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","O","Y50-64","2011","2284","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","P","Y15-29","2011","2786","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","P","Y30-49","2011","3255","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","P","Y50-64","2011","2602","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","P","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","Q","Y15-29","2011","27914","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","Q","Y30-49","2011","35040","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","Q","Y50-64","2011","27581","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","Q","Y65-84","2011","334","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","R","Y15-29","2011","1116","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","R","Y30-49","2011","1838","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","R","Y50-64","2011","915","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","S","Y15-29","2011","9994","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","S","Y30-49","2011","11437","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","S","Y50-64","2011","5424","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","S","Y65-84","2011","596","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC5","UNK","Y15-29","2011","20304","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","UNK","Y30-49","2011","28897","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","UNK","Y50-64","2011","18230","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","UNK","Y65-84","2011","1320","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","UNK","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","A","Y15-29","2011","1486","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","A","Y30-49","2011","4187","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","A","Y50-64","2011","2439","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","A","Y65-84","2011","104","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","C","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","C","Y30-49","2011","111","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","C","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC6","D","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","F","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","F","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","F","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","G","Y15-29","2011","413","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","G","Y30-49","2011","215","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","G","Y50-64","2011","210","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC6","H","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","H","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","I","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","I","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","I","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC6","J","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","J","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC6","K","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC6","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","M","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","M","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","M","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","M","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","N","Y15-29","2011","634","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","N","Y30-49","2011","373","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","N","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","NAP","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","O","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC6","O","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","P","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","P","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","P","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","Q","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","Q","Y30-49","2011","157","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","Q","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","R","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","R","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","S","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","S","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","S","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC6","UNK","Y15-29","2011","567","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","UNK","Y30-49","2011","2264","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","UNK","Y50-64","2011","2265","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","UNK","Y65-84","2011","225","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","A","Y15-29","2011","338","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","A","Y30-49","2011","222","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","A","Y50-64","2011","136","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","C","Y15-29","2011","6504","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","C","Y30-49","2011","9519","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","C","Y50-64","2011","4575","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","C","Y65-84","2011","228","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","D","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","D","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC7","E","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","F","Y15-29","2011","2325","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","F","Y30-49","2011","817","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","F","Y50-64","2011","107","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","G","Y15-29","2011","6834","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","G","Y30-49","2011","5411","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","G","Y50-64","2011","2714","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","G","Y65-84","2011","182","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","H","Y15-29","2011","161","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","H","Y30-49","2011","329","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","H","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","I","Y15-29","2011","469","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","I","Y30-49","2011","857","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","I","Y50-64","2011","198","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","J","Y15-29","2011","405","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","J","Y30-49","2011","367","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","J","Y50-64","2011","247","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","K","Y15-29","2011","187","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","K","Y30-49","2011","548","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","K","Y50-64","2011","152","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","L","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","L","Y30-49","2011","234","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","L","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","M","Y15-29","2011","783","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","M","Y30-49","2011","946","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","M","Y50-64","2011","614","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","N","Y15-29","2011","396","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","N","Y30-49","2011","549","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","N","Y50-64","2011","271","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","N","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","NAP","Y30-49","2011","199","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","O","Y15-29","2011","165","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","O","Y30-49","2011","106","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","O","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","P","Y15-29","2011","332","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","P","Y30-49","2011","139","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","P","Y50-64","2011","122","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","Q","Y15-29","2011","227","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","Q","Y30-49","2011","448","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","Q","Y50-64","2011","418","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","R","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","R","Y30-49","2011","292","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","R","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","S","Y15-29","2011","122","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","S","Y30-49","2011","477","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","S","Y50-64","2011","278","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC7","UNK","Y15-29","2011","2041","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","UNK","Y30-49","2011","3487","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","UNK","Y50-64","2011","2219","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","UNK","Y65-84","2011","164","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC8","A","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","A","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","B","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","C","Y15-29","2011","1565","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","C","Y30-49","2011","4622","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","C","Y50-64","2011","2339","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC8","E","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","F","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","F","Y30-49","2011","250","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","F","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","G","Y15-29","2011","669","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","G","Y30-49","2011","1284","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","G","Y50-64","2011","716","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","G","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","H","Y15-29","2011","601","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","H","Y30-49","2011","1521","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","H","Y50-64","2011","731","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","I","Y15-29","2011","1245","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","I","Y30-49","2011","1645","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","I","Y50-64","2011","613","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","J","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","J","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","K","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","K","Y30-49","2011","171","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","K","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC8","L","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","L","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","M","Y15-29","2011","261","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","M","Y30-49","2011","186","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","M","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","M","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","N","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","N","Y30-49","2011","485","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","N","Y50-64","2011","161","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","NAP","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","NAP","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","O","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","O","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","O","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","P","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","P","Y30-49","2011","179","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","P","Y50-64","2011","232","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","Q","Y15-29","2011","346","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","Q","Y30-49","2011","1001","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","Q","Y50-64","2011","951","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","Q","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","R","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","R","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","R","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","S","Y15-29","2011","217","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","S","Y30-49","2011","786","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","S","Y50-64","2011","414","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC8","UNK","Y15-29","2011","521","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","UNK","Y30-49","2011","1509","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","UNK","Y50-64","2011","869","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","UNK","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","A","Y15-29","2011","675","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","A","Y30-49","2011","1917","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","A","Y50-64","2011","1051","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC9","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","C","Y15-29","2011","4131","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","C","Y30-49","2011","11648","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","C","Y50-64","2011","6275","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","C","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC9","D","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","D","Y50-64","2011","223","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","D","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","E","Y30-49","2011","110","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","E","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","F","Y15-29","2011","176","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","F","Y30-49","2011","1332","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","F","Y50-64","2011","566","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","G","Y15-29","2011","1426","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","G","Y30-49","2011","5138","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","G","Y50-64","2011","2768","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","G","Y65-84","2011","152","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","H","Y15-29","2011","548","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","H","Y30-49","2011","2140","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","H","Y50-64","2011","1419","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","I","Y15-29","2011","1628","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","I","Y30-49","2011","4018","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","I","Y50-64","2011","2471","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","J","Y15-29","2011","244","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","J","Y30-49","2011","355","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","J","Y50-64","2011","301","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","K","Y15-29","2011","274","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","K","Y30-49","2011","1923","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","K","Y50-64","2011","1286","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","L","Y15-29","2011","147","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","L","Y30-49","2011","1148","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","L","Y50-64","2011","479","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","M","Y15-29","2011","728","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","M","Y30-49","2011","2135","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","M","Y50-64","2011","1164","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","M","Y65-84","2011","136","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","N","Y15-29","2011","3099","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","N","Y30-49","2011","10793","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","N","Y50-64","2011","3635","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","N","Y65-84","2011","124","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","NAP","Y30-49","2011","348","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","NAP","Y50-64","2011","205","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","O","Y15-29","2011","226","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","O","Y30-49","2011","1891","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","O","Y50-64","2011","1782","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","P","Y15-29","2011","667","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","P","Y30-49","2011","1622","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","P","Y50-64","2011","1455","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","P","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","Q","Y15-29","2011","1632","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","Q","Y30-49","2011","6513","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","Q","Y50-64","2011","5345","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","Q","Y65-84","2011","149","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","R","Y15-29","2011","144","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","R","Y30-49","2011","522","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","R","Y50-64","2011","438","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","S","Y15-29","2011","458","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","S","Y30-49","2011","1627","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","S","Y50-64","2011","962","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","OC9","U","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","U","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","OC9","UNK","Y15-29","2011","3791","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","UNK","Y30-49","2011","15226","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","UNK","Y50-64","2011","9555","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","UNK","Y65-84","2011","942","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","A","Y15-29","2011","303","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","A","Y30-49","2011","1409","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","A","Y50-64","2011","927","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","A","Y65-84","2011","152","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","UNK","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","B","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","C","Y15-29","2011","1511","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","C","Y30-49","2011","2863","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","C","Y50-64","2011","2415","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","C","Y65-84","2011","228","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","D","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","E","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","UNK","E","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","F","Y15-29","2011","232","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","F","Y30-49","2011","943","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","F","Y50-64","2011","516","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","G","Y15-29","2011","3997","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","G","Y30-49","2011","3877","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","G","Y50-64","2011","3287","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","G","Y65-84","2011","518","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","H","Y15-29","2011","435","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","H","Y30-49","2011","817","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","H","Y50-64","2011","703","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","I","Y15-29","2011","1657","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","I","Y30-49","2011","2332","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","I","Y50-64","2011","1370","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","I","Y65-84","2011","170","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","J","Y15-29","2011","323","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","J","Y30-49","2011","394","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","J","Y50-64","2011","180","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","K","Y15-29","2011","1096","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","K","Y30-49","2011","740","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","K","Y50-64","2011","441","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","L","Y15-29","2011","194","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","L","Y30-49","2011","304","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","L","Y50-64","2011","440","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","M","Y15-29","2011","1639","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","M","Y30-49","2011","1385","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","M","Y50-64","2011","636","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","M","Y65-84","2011","262","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","N","Y15-29","2011","706","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","N","Y30-49","2011","1591","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","N","Y50-64","2011","611","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","N","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","NAP","Y15-29","2011","149","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","NAP","Y30-49","2011","226","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","NAP","Y50-64","2011","174","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","O","Y15-29","2011","1020","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","O","Y30-49","2011","715","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","O","Y50-64","2011","522","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","P","Y15-29","2011","2714","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","P","Y30-49","2011","1558","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","P","Y50-64","2011","763","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","P","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","Q","Y15-29","2011","4137","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","Q","Y30-49","2011","4512","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","Q","Y50-64","2011","3114","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","Q","Y65-84","2011","371","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","R","Y15-29","2011","275","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","R","Y30-49","2011","386","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","R","Y50-64","2011","149","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","S","Y15-29","2011","769","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","S","Y30-49","2011","1056","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","S","Y50-64","2011","829","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","S","Y65-84","2011","237","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"CH","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"CH","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","U","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"CH","F","POP","TOTAL","UNK","U","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"CH","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"CH","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"CH","F","POP","TOTAL","UNK","UNK","Y15-29","2011","6211","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","UNK","Y30-49","2011","12584","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","UNK","Y50-64","2011","8441","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","UNK","Y65-84","2011","935","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","NAP","Y15-29","2011","240219","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","NAP","NAP","Y30-49","2011","93527","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","NAP","NAP","Y50-64","2011","146198","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","NAP","NAP","Y65-84","2011","466759","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","48618","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","A","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","C","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","C","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","F","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","G","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","H","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","H","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","I","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","I","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","I","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","J","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","K","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","K","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","M","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","M","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","N","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","O","Y15-29","2011","958","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","O","Y30-49","2011","1376","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","O","Y50-64","2011","357","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","P","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","Q","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","R","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","R","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","S","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","S","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC0","UNK","Y15-29","2011","341","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","UNK","Y30-49","2011","141","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","A","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","A","Y30-49","2011","880","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","A","Y50-64","2011","798","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","B","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","B","Y50-64","2011","172","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","B","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","C","Y15-29","2011","3799","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","C","Y30-49","2011","32386","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","C","Y50-64","2011","18145","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","C","Y65-84","2011","1267","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","D","Y15-29","2011","221","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","D","Y30-49","2011","1775","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","D","Y50-64","2011","962","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","E","Y30-49","2011","645","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","E","Y50-64","2011","514","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","E","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","F","Y15-29","2011","1101","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","F","Y30-49","2011","9182","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","F","Y50-64","2011","5613","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","F","Y65-84","2011","710","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","G","Y15-29","2011","4003","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","G","Y30-49","2011","26317","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","G","Y50-64","2011","14765","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","G","Y65-84","2011","1879","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","H","Y15-29","2011","558","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","H","Y30-49","2011","7117","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","H","Y50-64","2011","3948","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","H","Y65-84","2011","102","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","I","Y15-29","2011","1593","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","I","Y30-49","2011","8371","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","I","Y50-64","2011","4167","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","I","Y65-84","2011","551","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","J","Y15-29","2011","1306","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","J","Y30-49","2011","12595","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","J","Y50-64","2011","3638","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","J","Y65-84","2011","151","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","K","Y15-29","2011","2141","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","K","Y30-49","2011","18578","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","K","Y50-64","2011","6960","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","K","Y65-84","2011","276","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","L","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","L","Y30-49","2011","1710","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","L","Y50-64","2011","874","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","L","Y65-84","2011","320","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","M","Y15-29","2011","1858","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","M","Y30-49","2011","16796","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","M","Y50-64","2011","8879","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","M","Y65-84","2011","777","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","N","Y15-29","2011","403","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","N","Y30-49","2011","5265","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","N","Y50-64","2011","2169","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","N","Y65-84","2011","299","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","NAP","Y15-29","2011","276","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","NAP","Y30-49","2011","2471","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","NAP","Y50-64","2011","911","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","NAP","Y65-84","2011","95","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","NAP","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","O","Y15-29","2011","180","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","O","Y30-49","2011","4793","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","O","Y50-64","2011","4521","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","P","Y15-29","2011","220","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","P","Y30-49","2011","2447","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","P","Y50-64","2011","2764","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","P","Y65-84","2011","151","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","Q","Y15-29","2011","280","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","Q","Y30-49","2011","4916","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","Q","Y50-64","2011","3738","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","Q","Y65-84","2011","150","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","Q","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","R","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","R","Y30-49","2011","1613","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","R","Y50-64","2011","818","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","S","Y15-29","2011","199","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","S","Y30-49","2011","2805","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","S","Y50-64","2011","1685","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","S","Y65-84","2011","243","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC1","U","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","U","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC1","UNK","Y15-29","2011","1482","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","UNK","Y30-49","2011","12447","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","UNK","Y50-64","2011","6701","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","UNK","Y65-84","2011","992","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","UNK","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","A","Y15-29","2011","332","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","A","Y30-49","2011","1184","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","A","Y50-64","2011","795","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","A","Y65-84","2011","126","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC2","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","B","Y50-64","2011","141","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","C","Y15-29","2011","9169","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","C","Y30-49","2011","24287","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","C","Y50-64","2011","10483","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","C","Y65-84","2011","563","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","D","Y15-29","2011","400","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","D","Y30-49","2011","1393","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","D","Y50-64","2011","774","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","E","Y30-49","2011","368","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","E","Y50-64","2011","493","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","F","Y15-29","2011","1055","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","F","Y30-49","2011","2275","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","F","Y50-64","2011","970","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","F","Y65-84","2011","285","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","G","Y15-29","2011","7096","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","G","Y30-49","2011","14735","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","G","Y50-64","2011","7050","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","G","Y65-84","2011","723","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","H","Y15-29","2011","2992","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","H","Y30-49","2011","6108","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","H","Y50-64","2011","2658","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","I","Y15-29","2011","1474","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","I","Y30-49","2011","3007","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","I","Y50-64","2011","965","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","J","Y15-29","2011","9426","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","J","Y30-49","2011","26912","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","J","Y50-64","2011","8158","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","J","Y65-84","2011","672","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","K","Y15-29","2011","6483","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","K","Y30-49","2011","22839","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","K","Y50-64","2011","9240","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","K","Y65-84","2011","493","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","L","Y15-29","2011","248","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","L","Y30-49","2011","958","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","L","Y50-64","2011","577","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","L","Y65-84","2011","232","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","M","Y15-29","2011","11512","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","M","Y30-49","2011","37492","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","M","Y50-64","2011","19889","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","M","Y65-84","2011","5370","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","M","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","N","Y15-29","2011","1519","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","N","Y30-49","2011","4109","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","N","Y50-64","2011","1554","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","N","Y65-84","2011","174","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","NAP","Y15-29","2011","640","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","NAP","Y30-49","2011","2031","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","NAP","Y50-64","2011","979","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","NAP","Y65-84","2011","166","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","O","Y15-29","2011","1610","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","O","Y30-49","2011","10218","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","O","Y50-64","2011","8505","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","O","Y65-84","2011","153","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","P","Y15-29","2011","7802","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","P","Y30-49","2011","25492","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","P","Y50-64","2011","17382","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","P","Y65-84","2011","644","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","Q","Y15-29","2011","3240","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","Q","Y30-49","2011","17410","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","Q","Y50-64","2011","13310","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","Q","Y65-84","2011","1944","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","R","Y15-29","2011","869","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","R","Y30-49","2011","2842","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","R","Y50-64","2011","1503","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","R","Y65-84","2011","201","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","R","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","S","Y15-29","2011","1187","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","S","Y30-49","2011","5488","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","S","Y50-64","2011","3712","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","S","Y65-84","2011","722","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","S","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","U","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","U","Y30-49","2011","124","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","U","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","U","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC2","UNK","Y15-29","2011","7692","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","UNK","Y30-49","2011","23321","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","UNK","Y50-64","2011","16523","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","UNK","Y65-84","2011","3754","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","UNK","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","A","Y15-29","2011","578","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","A","Y30-49","2011","1902","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","A","Y50-64","2011","1173","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","B","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","C","Y15-29","2011","14385","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","C","Y30-49","2011","34305","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","C","Y50-64","2011","17612","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","C","Y65-84","2011","734","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","C","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","D","Y15-29","2011","371","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","D","Y30-49","2011","3070","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","D","Y50-64","2011","1790","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","E","Y15-29","2011","302","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","E","Y30-49","2011","1255","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","E","Y50-64","2011","842","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","E","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","F","Y15-29","2011","5938","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","F","Y30-49","2011","15731","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","F","Y50-64","2011","7468","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","F","Y65-84","2011","485","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","G","Y15-29","2011","10071","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","G","Y30-49","2011","23677","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","G","Y50-64","2011","11779","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","G","Y65-84","2011","993","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","G","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","H","Y15-29","2011","2608","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","H","Y30-49","2011","6985","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","H","Y50-64","2011","4165","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","H","Y65-84","2011","92","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","I","Y15-29","2011","1664","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","I","Y30-49","2011","3770","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","I","Y50-64","2011","1803","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","J","Y15-29","2011","2370","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","J","Y30-49","2011","6108","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","J","Y50-64","2011","2913","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","J","Y65-84","2011","149","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","K","Y15-29","2011","10861","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","K","Y30-49","2011","27585","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","K","Y50-64","2011","12231","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","K","Y65-84","2011","473","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","L","Y15-29","2011","932","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","L","Y30-49","2011","3111","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","L","Y50-64","2011","2139","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","L","Y65-84","2011","465","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","M","Y15-29","2011","11573","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","M","Y30-49","2011","16678","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","M","Y50-64","2011","9090","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","M","Y65-84","2011","1153","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","M","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","N","Y15-29","2011","2249","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","N","Y30-49","2011","5148","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","N","Y50-64","2011","2250","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","N","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","NAP","Y15-29","2011","899","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","NAP","Y30-49","2011","1854","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","NAP","Y50-64","2011","615","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","O","Y15-29","2011","3016","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","O","Y30-49","2011","11322","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","O","Y50-64","2011","10301","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","P","Y15-29","2011","1993","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","P","Y30-49","2011","3088","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","P","Y50-64","2011","1828","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","P","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","Q","Y15-29","2011","2880","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","Q","Y30-49","2011","10141","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","Q","Y50-64","2011","6368","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","Q","Y65-84","2011","92","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","R","Y15-29","2011","1623","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","R","Y30-49","2011","2465","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","R","Y50-64","2011","933","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","R","Y65-84","2011","136","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","S","Y15-29","2011","1205","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","S","Y30-49","2011","2591","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","S","Y50-64","2011","1563","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","S","Y65-84","2011","97","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","U","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","U","Y30-49","2011","94","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","U","Y50-64","2011","164","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC3","UNK","Y15-29","2011","5432","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","UNK","Y30-49","2011","15130","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","UNK","Y50-64","2011","8460","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","UNK","Y65-84","2011","1292","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","A","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","A","Y30-49","2011","362","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","A","Y50-64","2011","218","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC4","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","C","Y15-29","2011","3026","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","C","Y30-49","2011","6494","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","C","Y50-64","2011","4838","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","C","Y65-84","2011","246","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","D","Y15-29","2011","241","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","D","Y30-49","2011","372","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","D","Y50-64","2011","424","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","D","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","E","Y15-29","2011","142","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","E","Y30-49","2011","170","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","E","Y50-64","2011","173","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","F","Y15-29","2011","604","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","F","Y30-49","2011","1407","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","F","Y50-64","2011","881","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","F","Y65-84","2011","165","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","G","Y15-29","2011","4447","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","G","Y30-49","2011","9105","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","G","Y50-64","2011","4875","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","G","Y65-84","2011","366","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","H","Y15-29","2011","2591","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","H","Y30-49","2011","10534","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","H","Y50-64","2011","6928","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","H","Y65-84","2011","126","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","I","Y15-29","2011","623","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","I","Y30-49","2011","1051","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","I","Y50-64","2011","548","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","I","Y65-84","2011","104","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","J","Y15-29","2011","1148","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","J","Y30-49","2011","1124","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","J","Y50-64","2011","750","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","K","Y15-29","2011","4595","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","K","Y30-49","2011","7467","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","K","Y50-64","2011","4238","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","K","Y65-84","2011","137","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","L","Y15-29","2011","436","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","L","Y30-49","2011","493","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","L","Y50-64","2011","359","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","M","Y15-29","2011","2541","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","M","Y30-49","2011","3221","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","M","Y50-64","2011","1501","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","M","Y65-84","2011","228","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","N","Y15-29","2011","1763","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","N","Y30-49","2011","2625","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","N","Y50-64","2011","1296","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","N","Y65-84","2011","133","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","NAP","Y30-49","2011","424","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","NAP","Y50-64","2011","161","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","O","Y15-29","2011","1491","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","O","Y30-49","2011","1907","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","O","Y50-64","2011","1988","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","P","Y15-29","2011","559","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","P","Y30-49","2011","578","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","P","Y50-64","2011","407","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","P","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","Q","Y15-29","2011","1028","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","Q","Y30-49","2011","1359","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","Q","Y50-64","2011","941","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","R","Y15-29","2011","495","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","R","Y30-49","2011","458","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","R","Y50-64","2011","296","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","S","Y15-29","2011","495","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","S","Y30-49","2011","855","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","S","Y50-64","2011","796","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC4","U","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","U","Y50-64","2011","74","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC4","UNK","Y15-29","2011","1762","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","UNK","Y30-49","2011","3251","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","UNK","Y50-64","2011","2166","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","UNK","Y65-84","2011","344","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","A","Y15-29","2011","525","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","A","Y30-49","2011","890","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","A","Y50-64","2011","449","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","C","Y15-29","2011","1090","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","C","Y30-49","2011","4339","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","C","Y50-64","2011","2784","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","C","Y65-84","2011","166","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","D","Y30-49","2011","204","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","D","Y50-64","2011","201","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","E","Y30-49","2011","146","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","E","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","E","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","F","Y15-29","2011","346","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","F","Y30-49","2011","831","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","F","Y50-64","2011","575","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","G","Y15-29","2011","16185","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","G","Y30-49","2011","16169","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","G","Y50-64","2011","7591","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","G","Y65-84","2011","610","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","G","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","H","Y15-29","2011","1650","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","H","Y30-49","2011","3736","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","H","Y50-64","2011","1813","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","I","Y15-29","2011","11528","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","I","Y30-49","2011","16528","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","I","Y50-64","2011","5779","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","I","Y65-84","2011","190","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","J","Y15-29","2011","1063","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","J","Y30-49","2011","1116","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","J","Y50-64","2011","294","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","K","Y15-29","2011","462","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","K","Y30-49","2011","2111","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","K","Y50-64","2011","1159","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","K","Y65-84","2011","182","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","L","Y15-29","2011","649","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","L","Y30-49","2011","1405","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","L","Y50-64","2011","1434","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","L","Y65-84","2011","394","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","M","Y15-29","2011","1026","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","M","Y30-49","2011","2018","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","M","Y50-64","2011","1442","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","M","Y65-84","2011","191","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","N","Y15-29","2011","3217","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","N","Y30-49","2011","4884","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","N","Y50-64","2011","2289","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","N","Y65-84","2011","166","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","NAP","Y15-29","2011","242","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","NAP","Y30-49","2011","582","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","NAP","Y50-64","2011","184","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","O","Y15-29","2011","2863","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","O","Y30-49","2011","10214","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","O","Y50-64","2011","5017","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","P","Y15-29","2011","1372","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","P","Y30-49","2011","2266","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","P","Y50-64","2011","1837","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","P","Y65-84","2011","149","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","Q","Y15-29","2011","4016","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","Q","Y30-49","2011","6924","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","Q","Y50-64","2011","3812","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","Q","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","R","Y15-29","2011","775","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","R","Y30-49","2011","1447","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","R","Y50-64","2011","589","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","S","Y15-29","2011","1240","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","S","Y30-49","2011","2456","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","S","Y50-64","2011","1833","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","S","Y65-84","2011","347","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC5","U","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","U","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC5","UNK","Y15-29","2011","6377","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","UNK","Y30-49","2011","11867","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","UNK","Y50-64","2011","5542","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","UNK","Y65-84","2011","725","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","A","Y15-29","2011","7081","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","A","Y30-49","2011","12696","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","A","Y50-64","2011","8899","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","A","Y65-84","2011","1496","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","A","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","B","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","C","Y15-29","2011","248","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","C","Y30-49","2011","645","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","C","Y50-64","2011","269","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","C","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC6","D","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","D","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","E","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","E","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","F","Y15-29","2011","249","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","F","Y30-49","2011","477","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","F","Y50-64","2011","234","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","G","Y15-29","2011","389","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","G","Y30-49","2011","746","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","G","Y50-64","2011","417","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","G","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","H","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","H","Y30-49","2011","271","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","H","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","I","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","I","Y30-49","2011","135","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","I","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","J","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","J","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","J","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC6","K","Y30-49","2011","112","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","K","Y50-64","2011","112","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","L","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","L","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","L","Y50-64","2011","194","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","M","Y15-29","2011","268","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","M","Y30-49","2011","362","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","M","Y50-64","2011","283","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","N","Y15-29","2011","4171","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","N","Y30-49","2011","3984","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","N","Y50-64","2011","1992","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","O","Y15-29","2011","320","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","O","Y30-49","2011","362","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","O","Y50-64","2011","354","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","P","Y15-29","2011","257","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","P","Y30-49","2011","199","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","P","Y50-64","2011","205","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","Q","Y15-29","2011","322","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","Q","Y30-49","2011","369","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","Q","Y50-64","2011","339","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC6","R","Y30-49","2011","180","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","R","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","S","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","S","Y30-49","2011","198","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","S","Y50-64","2011","154","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC6","UNK","Y15-29","2011","2362","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","UNK","Y30-49","2011","9224","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","UNK","Y50-64","2011","10954","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","UNK","Y65-84","2011","1794","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","UNK","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","A","Y15-29","2011","1096","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","A","Y30-49","2011","1272","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","A","Y50-64","2011","818","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","A","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","B","Y15-29","2011","212","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","B","Y30-49","2011","278","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","B","Y50-64","2011","114","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","C","Y15-29","2011","41623","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","C","Y30-49","2011","52481","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","C","Y50-64","2011","30944","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","C","Y65-84","2011","1617","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","C","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","D","Y15-29","2011","1794","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","D","Y30-49","2011","2343","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","D","Y50-64","2011","2118","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","D","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","E","Y15-29","2011","160","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","E","Y30-49","2011","656","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","E","Y50-64","2011","281","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","E","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","F","Y15-29","2011","51418","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","F","Y30-49","2011","52011","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","F","Y50-64","2011","24421","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","F","Y65-84","2011","1041","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","G","Y15-29","2011","22010","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","G","Y30-49","2011","21293","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","G","Y50-64","2011","12054","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","G","Y65-84","2011","1154","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","G","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","H","Y15-29","2011","1910","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","H","Y30-49","2011","3307","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","H","Y50-64","2011","2188","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","I","Y15-29","2011","634","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","I","Y30-49","2011","1261","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","I","Y50-64","2011","624","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","J","Y15-29","2011","589","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","J","Y30-49","2011","1110","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","J","Y50-64","2011","801","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","K","Y15-29","2011","1712","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","K","Y30-49","2011","2162","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","K","Y50-64","2011","1283","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","L","Y15-29","2011","711","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","L","Y30-49","2011","749","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","L","Y50-64","2011","563","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","M","Y15-29","2011","2954","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","M","Y30-49","2011","4185","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","M","Y50-64","2011","2561","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","M","Y65-84","2011","115","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","N","Y15-29","2011","3599","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","N","Y30-49","2011","5182","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","N","Y50-64","2011","2270","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","N","Y65-84","2011","120","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","NAP","Y15-29","2011","459","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","NAP","Y30-49","2011","719","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","NAP","Y50-64","2011","247","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","O","Y15-29","2011","509","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","O","Y30-49","2011","1006","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","O","Y50-64","2011","1141","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","P","Y15-29","2011","2451","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","P","Y30-49","2011","399","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","P","Y50-64","2011","289","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","P","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","Q","Y15-29","2011","1377","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","Q","Y30-49","2011","1345","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","Q","Y50-64","2011","1088","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","Q","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","R","Y15-29","2011","120","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","R","Y30-49","2011","300","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","R","Y50-64","2011","199","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","S","Y15-29","2011","711","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","S","Y30-49","2011","942","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","S","Y50-64","2011","961","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC7","UNK","Y15-29","2011","10071","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","UNK","Y30-49","2011","16741","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","UNK","Y50-64","2011","10028","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","UNK","Y65-84","2011","935","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","A","Y15-29","2011","337","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","A","Y30-49","2011","712","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","A","Y50-64","2011","380","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","B","Y15-29","2011","332","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","B","Y30-49","2011","749","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","B","Y50-64","2011","586","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","C","Y15-29","2011","6361","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","C","Y30-49","2011","16560","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","C","Y50-64","2011","9984","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","C","Y65-84","2011","124","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","D","Y30-49","2011","381","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","D","Y50-64","2011","262","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","E","Y15-29","2011","249","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","E","Y30-49","2011","1470","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","E","Y50-64","2011","622","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","F","Y15-29","2011","3193","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","F","Y30-49","2011","8629","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","F","Y50-64","2011","4061","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","G","Y15-29","2011","2075","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","G","Y30-49","2011","6926","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","G","Y50-64","2011","3478","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","G","Y65-84","2011","199","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","G","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","H","Y15-29","2011","6007","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","H","Y30-49","2011","18846","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","H","Y50-64","2011","13490","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","H","Y65-84","2011","706","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","I","Y15-29","2011","532","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","I","Y30-49","2011","1201","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","I","Y50-64","2011","364","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","J","Y15-29","2011","177","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","J","Y30-49","2011","267","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","J","Y50-64","2011","158","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","K","Y15-29","2011","350","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","K","Y30-49","2011","1476","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","K","Y50-64","2011","795","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","L","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","L","Y30-49","2011","436","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","L","Y50-64","2011","138","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","M","Y15-29","2011","552","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","M","Y30-49","2011","1592","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","M","Y50-64","2011","919","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","M","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","N","Y15-29","2011","1008","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","N","Y30-49","2011","2241","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","N","Y50-64","2011","1164","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","N","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","NAP","Y30-49","2011","236","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","NAP","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","O","Y15-29","2011","117","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","O","Y30-49","2011","423","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","O","Y50-64","2011","419","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","P","Y15-29","2011","122","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","P","Y30-49","2011","156","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","P","Y50-64","2011","175","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","Q","Y15-29","2011","290","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","Q","Y30-49","2011","702","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","Q","Y50-64","2011","640","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","R","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","R","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","R","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","S","Y15-29","2011","194","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","S","Y30-49","2011","433","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","S","Y50-64","2011","285","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC8","U","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC8","UNK","Y15-29","2011","2411","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","UNK","Y30-49","2011","6528","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","UNK","Y50-64","2011","4517","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","UNK","Y65-84","2011","418","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","A","Y15-29","2011","768","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","A","Y30-49","2011","1594","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","A","Y50-64","2011","971","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","A","Y65-84","2011","187","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","A","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","B","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","C","Y15-29","2011","3358","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","C","Y30-49","2011","10154","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","C","Y50-64","2011","6404","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","C","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","D","Y30-49","2011","343","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","D","Y50-64","2011","228","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","E","Y15-29","2011","357","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","E","Y30-49","2011","580","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","E","Y50-64","2011","489","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","E","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","F","Y15-29","2011","2571","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","F","Y30-49","2011","6262","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","F","Y50-64","2011","2791","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","F","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","G","Y15-29","2011","1515","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","G","Y30-49","2011","2893","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","G","Y50-64","2011","1799","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","G","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","H","Y15-29","2011","1104","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","H","Y30-49","2011","2773","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","H","Y50-64","2011","1644","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","H","Y65-84","2011","92","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","I","Y15-29","2011","616","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","I","Y30-49","2011","1143","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","I","Y50-64","2011","507","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","J","Y15-29","2011","160","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","J","Y30-49","2011","375","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","J","Y50-64","2011","261","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","K","Y15-29","2011","420","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","K","Y30-49","2011","1105","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","K","Y50-64","2011","437","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","L","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","L","Y30-49","2011","249","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","L","Y50-64","2011","165","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","M","Y15-29","2011","348","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","M","Y30-49","2011","1318","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","M","Y50-64","2011","710","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","M","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","N","Y15-29","2011","1787","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","N","Y30-49","2011","4506","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","N","Y50-64","2011","1913","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","N","Y65-84","2011","133","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","NAP","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","NAP","Y30-49","2011","149","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","NAP","Y50-64","2011","100","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","O","Y15-29","2011","328","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","O","Y30-49","2011","1804","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","O","Y50-64","2011","1295","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","P","Y15-29","2011","585","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","P","Y30-49","2011","465","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","P","Y50-64","2011","287","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","Q","Y15-29","2011","992","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","Q","Y30-49","2011","1788","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","Q","Y50-64","2011","1477","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","Q","Y65-84","2011","95","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","R","Y15-29","2011","232","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","R","Y30-49","2011","303","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","R","Y50-64","2011","189","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","S","Y15-29","2011","201","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","S","Y30-49","2011","350","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","S","Y50-64","2011","251","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","OC9","UNK","Y15-29","2011","2288","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","UNK","Y30-49","2011","4480","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","UNK","Y50-64","2011","2329","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","UNK","Y65-84","2011","276","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","A","Y15-29","2011","403","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","A","Y30-49","2011","415","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","A","Y50-64","2011","501","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","A","Y65-84","2011","232","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","A","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","UNK","B","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","B","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","C","Y15-29","2011","2381","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","C","Y30-49","2011","3885","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","C","Y50-64","2011","3230","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","C","Y65-84","2011","497","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","C","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","D","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","D","Y30-49","2011","124","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","D","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","D","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","E","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","E","Y30-49","2011","139","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","E","Y50-64","2011","177","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","F","Y15-29","2011","2125","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","F","Y30-49","2011","2258","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","F","Y50-64","2011","1940","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","F","Y65-84","2011","329","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","G","Y15-29","2011","2313","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","G","Y30-49","2011","3062","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","G","Y50-64","2011","2266","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","G","Y65-84","2011","750","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","H","Y15-29","2011","638","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","H","Y30-49","2011","1128","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","H","Y50-64","2011","1196","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","H","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","I","Y15-29","2011","1183","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","I","Y30-49","2011","1522","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","I","Y50-64","2011","678","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","I","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","J","Y15-29","2011","344","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","J","Y30-49","2011","282","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","J","Y50-64","2011","317","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","J","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","K","Y15-29","2011","372","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","K","Y30-49","2011","700","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","K","Y50-64","2011","725","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","K","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","L","Y15-29","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","L","Y30-49","2011","284","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","L","Y50-64","2011","165","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","L","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","M","Y15-29","2011","1718","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","M","Y30-49","2011","1376","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","M","Y50-64","2011","950","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","M","Y65-84","2011","582","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","M","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","N","Y15-29","2011","824","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","N","Y30-49","2011","1029","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","N","Y50-64","2011","842","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","N","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","NAP","Y15-29","2011","179","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","NAP","Y30-49","2011","201","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","NAP","Y50-64","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","NAP","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","O","Y15-29","2011","732","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","O","Y30-49","2011","571","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","O","Y50-64","2011","413","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","O","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","P","Y15-29","2011","2548","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","P","Y30-49","2011","1199","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","P","Y50-64","2011","462","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","P","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","Q","Y15-29","2011","1354","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","Q","Y30-49","2011","1488","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","Q","Y50-64","2011","1127","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","Q","Y65-84","2011","166","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","R","Y15-29","2011","174","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","R","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","R","Y50-64","2011","206","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","R","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","S","Y15-29","2011","563","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","S","Y30-49","2011","519","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","S","Y50-64","2011","371","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","S","Y65-84","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"CH","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"CH","M","POP","TOTAL","UNK","U","Y30-49","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"CH","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"CH","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"CH","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"CH","M","POP","TOTAL","UNK","UNK","Y15-29","2011","5555","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","UNK","Y30-49","2011","8062","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","UNK","Y50-64","2011","6355","d","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","UNK","Y65-84","2011","892","du","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","cd","The values in this hypercube do not refer to the total Swiss population but rather to the resident permanent population aged 15 years or older in private households." +"CH","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","NAP","Y15-29","2011","50457","","" +"CY","F","POP","TOTAL","NAP","NAP","Y30-49","2011","25882","","" +"CY","F","POP","TOTAL","NAP","NAP","Y50-64","2011","37541","","" +"CY","F","POP","TOTAL","NAP","NAP","Y65-84","2011","52638","","" +"CY","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","6413","","" +"CY","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","65787","","" +"CY","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","O","Y15-29","2011","28","","" +"CY","F","POP","TOTAL","OC0","O","Y30-49","2011","517","","" +"CY","F","POP","TOTAL","OC0","O","Y50-64","2011","14","","" +"CY","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","U","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","OC0","U","Y30-49","2011","16","","" +"CY","F","POP","TOTAL","OC0","U","Y50-64","2011","3","","" +"CY","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC1","A","Y30-49","2011","4","","" +"CY","F","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","C","Y15-29","2011","11","","" +"CY","F","POP","TOTAL","OC1","C","Y30-49","2011","61","","" +"CY","F","POP","TOTAL","OC1","C","Y50-64","2011","53","","" +"CY","F","POP","TOTAL","OC1","C","Y65-84","2011","4","","" +"CY","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC1","D","Y30-49","2011","3","","" +"CY","F","POP","TOTAL","OC1","D","Y50-64","2011","3","","" +"CY","F","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","F","Y15-29","2011","13","","" +"CY","F","POP","TOTAL","OC1","F","Y30-49","2011","60","","" +"CY","F","POP","TOTAL","OC1","F","Y50-64","2011","31","","" +"CY","F","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","G","Y15-29","2011","46","","" +"CY","F","POP","TOTAL","OC1","G","Y30-49","2011","266","","" +"CY","F","POP","TOTAL","OC1","G","Y50-64","2011","125","","" +"CY","F","POP","TOTAL","OC1","G","Y65-84","2011","10","","" +"CY","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","H","Y15-29","2011","9","","" +"CY","F","POP","TOTAL","OC1","H","Y30-49","2011","99","","" +"CY","F","POP","TOTAL","OC1","H","Y50-64","2011","33","","" +"CY","F","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","I","Y15-29","2011","31","","" +"CY","F","POP","TOTAL","OC1","I","Y30-49","2011","212","","" +"CY","F","POP","TOTAL","OC1","I","Y50-64","2011","101","","" +"CY","F","POP","TOTAL","OC1","I","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","J","Y15-29","2011","10","","" +"CY","F","POP","TOTAL","OC1","J","Y30-49","2011","74","","" +"CY","F","POP","TOTAL","OC1","J","Y50-64","2011","19","","" +"CY","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","K","Y15-29","2011","14","","" +"CY","F","POP","TOTAL","OC1","K","Y30-49","2011","306","","" +"CY","F","POP","TOTAL","OC1","K","Y50-64","2011","183","","" +"CY","F","POP","TOTAL","OC1","K","Y65-84","2011","4","","" +"CY","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC1","L","Y30-49","2011","9","","" +"CY","F","POP","TOTAL","OC1","L","Y50-64","2011","5","","" +"CY","F","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","M","Y15-29","2011","17","","" +"CY","F","POP","TOTAL","OC1","M","Y30-49","2011","114","","" +"CY","F","POP","TOTAL","OC1","M","Y50-64","2011","40","","" +"CY","F","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","N","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","OC1","N","Y30-49","2011","59","","" +"CY","F","POP","TOTAL","OC1","N","Y50-64","2011","34","","" +"CY","F","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC1","O","Y30-49","2011","34","","" +"CY","F","POP","TOTAL","OC1","O","Y50-64","2011","107","","" +"CY","F","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","P","Y15-29","2011","8","","" +"CY","F","POP","TOTAL","OC1","P","Y30-49","2011","123","","" +"CY","F","POP","TOTAL","OC1","P","Y50-64","2011","202","","" +"CY","F","POP","TOTAL","OC1","P","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","Q","Y15-29","2011","18","","" +"CY","F","POP","TOTAL","OC1","Q","Y30-49","2011","41","","" +"CY","F","POP","TOTAL","OC1","Q","Y50-64","2011","47","","" +"CY","F","POP","TOTAL","OC1","Q","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","R","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","OC1","R","Y30-49","2011","23","","" +"CY","F","POP","TOTAL","OC1","R","Y50-64","2011","16","","" +"CY","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC1","S","Y30-49","2011","12","","" +"CY","F","POP","TOTAL","OC1","S","Y50-64","2011","11","","" +"CY","F","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC1","U","Y30-49","2011","11","","" +"CY","F","POP","TOTAL","OC1","U","Y50-64","2011","3","","" +"CY","F","POP","TOTAL","OC1","U","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC1","UNK","Y15-29","2011","9","","" +"CY","F","POP","TOTAL","OC1","UNK","Y30-49","2011","52","","" +"CY","F","POP","TOTAL","OC1","UNK","Y50-64","2011","22","","" +"CY","F","POP","TOTAL","OC1","UNK","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","A","Y15-29","2011","4","","" +"CY","F","POP","TOTAL","OC2","A","Y30-49","2011","7","","" +"CY","F","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","B","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","OC2","B","Y30-49","2011","3","","" +"CY","F","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","C","Y15-29","2011","188","","" +"CY","F","POP","TOTAL","OC2","C","Y30-49","2011","229","","" +"CY","F","POP","TOTAL","OC2","C","Y50-64","2011","51","","" +"CY","F","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","D","Y15-29","2011","7","","" +"CY","F","POP","TOTAL","OC2","D","Y30-49","2011","34","","" +"CY","F","POP","TOTAL","OC2","D","Y50-64","2011","8","","" +"CY","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","E","Y15-29","2011","15","","" +"CY","F","POP","TOTAL","OC2","E","Y30-49","2011","22","","" +"CY","F","POP","TOTAL","OC2","E","Y50-64","2011","3","","" +"CY","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","F","Y15-29","2011","164","","" +"CY","F","POP","TOTAL","OC2","F","Y30-49","2011","254","","" +"CY","F","POP","TOTAL","OC2","F","Y50-64","2011","52","","" +"CY","F","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","G","Y15-29","2011","342","","" +"CY","F","POP","TOTAL","OC2","G","Y30-49","2011","695","","" +"CY","F","POP","TOTAL","OC2","G","Y50-64","2011","185","","" +"CY","F","POP","TOTAL","OC2","G","Y65-84","2011","4","","" +"CY","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","H","Y15-29","2011","77","","" +"CY","F","POP","TOTAL","OC2","H","Y30-49","2011","175","","" +"CY","F","POP","TOTAL","OC2","H","Y50-64","2011","49","","" +"CY","F","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","I","Y15-29","2011","137","","" +"CY","F","POP","TOTAL","OC2","I","Y30-49","2011","176","","" +"CY","F","POP","TOTAL","OC2","I","Y50-64","2011","38","","" +"CY","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","J","Y15-29","2011","473","","" +"CY","F","POP","TOTAL","OC2","J","Y30-49","2011","817","","" +"CY","F","POP","TOTAL","OC2","J","Y50-64","2011","153","","" +"CY","F","POP","TOTAL","OC2","J","Y65-84","2011","5","","" +"CY","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","K","Y15-29","2011","192","","" +"CY","F","POP","TOTAL","OC2","K","Y30-49","2011","600","","" +"CY","F","POP","TOTAL","OC2","K","Y50-64","2011","74","","" +"CY","F","POP","TOTAL","OC2","K","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","L","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","OC2","L","Y30-49","2011","17","","" +"CY","F","POP","TOTAL","OC2","L","Y50-64","2011","3","","" +"CY","F","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","M","Y15-29","2011","1907","","" +"CY","F","POP","TOTAL","OC2","M","Y30-49","2011","2635","","" +"CY","F","POP","TOTAL","OC2","M","Y50-64","2011","521","","" +"CY","F","POP","TOTAL","OC2","M","Y65-84","2011","22","","" +"CY","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","N","Y15-29","2011","30","","" +"CY","F","POP","TOTAL","OC2","N","Y30-49","2011","40","","" +"CY","F","POP","TOTAL","OC2","N","Y50-64","2011","5","","" +"CY","F","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","O","Y15-29","2011","345","","" +"CY","F","POP","TOTAL","OC2","O","Y30-49","2011","1497","","" +"CY","F","POP","TOTAL","OC2","O","Y50-64","2011","465","","" +"CY","F","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","P","Y15-29","2011","4389","","" +"CY","F","POP","TOTAL","OC2","P","Y30-49","2011","9559","","" +"CY","F","POP","TOTAL","OC2","P","Y50-64","2011","2364","","" +"CY","F","POP","TOTAL","OC2","P","Y65-84","2011","52","","" +"CY","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","Q","Y15-29","2011","1609","","" +"CY","F","POP","TOTAL","OC2","Q","Y30-49","2011","2874","","" +"CY","F","POP","TOTAL","OC2","Q","Y50-64","2011","1273","","" +"CY","F","POP","TOTAL","OC2","Q","Y65-84","2011","20","","" +"CY","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","R","Y15-29","2011","126","","" +"CY","F","POP","TOTAL","OC2","R","Y30-49","2011","232","","" +"CY","F","POP","TOTAL","OC2","R","Y50-64","2011","87","","" +"CY","F","POP","TOTAL","OC2","R","Y65-84","2011","18","","" +"CY","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","S","Y15-29","2011","66","","" +"CY","F","POP","TOTAL","OC2","S","Y30-49","2011","105","","" +"CY","F","POP","TOTAL","OC2","S","Y50-64","2011","24","","" +"CY","F","POP","TOTAL","OC2","S","Y65-84","2011","4","","" +"CY","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","T","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC2","T","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","U","Y15-29","2011","25","","" +"CY","F","POP","TOTAL","OC2","U","Y30-49","2011","114","","" +"CY","F","POP","TOTAL","OC2","U","Y50-64","2011","47","","" +"CY","F","POP","TOTAL","OC2","U","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC2","UNK","Y15-29","2011","95","","" +"CY","F","POP","TOTAL","OC2","UNK","Y30-49","2011","171","","" +"CY","F","POP","TOTAL","OC2","UNK","Y50-64","2011","26","","" +"CY","F","POP","TOTAL","OC2","UNK","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","A","Y15-29","2011","11","","" +"CY","F","POP","TOTAL","OC3","A","Y30-49","2011","22","","" +"CY","F","POP","TOTAL","OC3","A","Y50-64","2011","19","","" +"CY","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","B","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","OC3","B","Y30-49","2011","14","","" +"CY","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","C","Y15-29","2011","168","","" +"CY","F","POP","TOTAL","OC3","C","Y30-49","2011","463","","" +"CY","F","POP","TOTAL","OC3","C","Y50-64","2011","344","","" +"CY","F","POP","TOTAL","OC3","C","Y65-84","2011","9","","" +"CY","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","D","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","OC3","D","Y30-49","2011","82","","" +"CY","F","POP","TOTAL","OC3","D","Y50-64","2011","25","","" +"CY","F","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","E","Y15-29","2011","26","","" +"CY","F","POP","TOTAL","OC3","E","Y30-49","2011","49","","" +"CY","F","POP","TOTAL","OC3","E","Y50-64","2011","23","","" +"CY","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","F","Y15-29","2011","177","","" +"CY","F","POP","TOTAL","OC3","F","Y30-49","2011","454","","" +"CY","F","POP","TOTAL","OC3","F","Y50-64","2011","314","","" +"CY","F","POP","TOTAL","OC3","F","Y65-84","2011","8","","" +"CY","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","G","Y15-29","2011","608","","" +"CY","F","POP","TOTAL","OC3","G","Y30-49","2011","1569","","" +"CY","F","POP","TOTAL","OC3","G","Y50-64","2011","763","","" +"CY","F","POP","TOTAL","OC3","G","Y65-84","2011","18","","" +"CY","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","H","Y15-29","2011","222","","" +"CY","F","POP","TOTAL","OC3","H","Y30-49","2011","579","","" +"CY","F","POP","TOTAL","OC3","H","Y50-64","2011","273","","" +"CY","F","POP","TOTAL","OC3","H","Y65-84","2011","4","","" +"CY","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","I","Y15-29","2011","94","","" +"CY","F","POP","TOTAL","OC3","I","Y30-49","2011","238","","" +"CY","F","POP","TOTAL","OC3","I","Y50-64","2011","92","","" +"CY","F","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","J","Y15-29","2011","141","","" +"CY","F","POP","TOTAL","OC3","J","Y30-49","2011","360","","" +"CY","F","POP","TOTAL","OC3","J","Y50-64","2011","105","","" +"CY","F","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","K","Y15-29","2011","596","","" +"CY","F","POP","TOTAL","OC3","K","Y30-49","2011","2724","","" +"CY","F","POP","TOTAL","OC3","K","Y50-64","2011","774","","" +"CY","F","POP","TOTAL","OC3","K","Y65-84","2011","5","","" +"CY","F","POP","TOTAL","OC3","K","Y_GE85","2011",":","c","" +"CY","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","L","Y15-29","2011","69","","" +"CY","F","POP","TOTAL","OC3","L","Y30-49","2011","236","","" +"CY","F","POP","TOTAL","OC3","L","Y50-64","2011","113","","" +"CY","F","POP","TOTAL","OC3","L","Y65-84","2011","10","","" +"CY","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","M","Y15-29","2011","1715","","" +"CY","F","POP","TOTAL","OC3","M","Y30-49","2011","1626","","" +"CY","F","POP","TOTAL","OC3","M","Y50-64","2011","779","","" +"CY","F","POP","TOTAL","OC3","M","Y65-84","2011","20","","" +"CY","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","N","Y15-29","2011","78","","" +"CY","F","POP","TOTAL","OC3","N","Y30-49","2011","199","","" +"CY","F","POP","TOTAL","OC3","N","Y50-64","2011","86","","" +"CY","F","POP","TOTAL","OC3","N","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","O","Y15-29","2011","260","","" +"CY","F","POP","TOTAL","OC3","O","Y30-49","2011","1490","","" +"CY","F","POP","TOTAL","OC3","O","Y50-64","2011","1197","","" +"CY","F","POP","TOTAL","OC3","O","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","P","Y15-29","2011","53","","" +"CY","F","POP","TOTAL","OC3","P","Y30-49","2011","190","","" +"CY","F","POP","TOTAL","OC3","P","Y50-64","2011","150","","" +"CY","F","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","Q","Y15-29","2011","383","","" +"CY","F","POP","TOTAL","OC3","Q","Y30-49","2011","979","","" +"CY","F","POP","TOTAL","OC3","Q","Y50-64","2011","715","","" +"CY","F","POP","TOTAL","OC3","Q","Y65-84","2011","9","","" +"CY","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","R","Y15-29","2011","193","","" +"CY","F","POP","TOTAL","OC3","R","Y30-49","2011","253","","" +"CY","F","POP","TOTAL","OC3","R","Y50-64","2011","50","","" +"CY","F","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","S","Y15-29","2011","67","","" +"CY","F","POP","TOTAL","OC3","S","Y30-49","2011","221","","" +"CY","F","POP","TOTAL","OC3","S","Y50-64","2011","136","","" +"CY","F","POP","TOTAL","OC3","S","Y65-84","2011","58","","" +"CY","F","POP","TOTAL","OC3","S","Y_GE85","2011","15","","" +"CY","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","U","Y15-29","2011","11","","" +"CY","F","POP","TOTAL","OC3","U","Y30-49","2011","89","","" +"CY","F","POP","TOTAL","OC3","U","Y50-64","2011","53","","" +"CY","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC3","UNK","Y15-29","2011","110","","" +"CY","F","POP","TOTAL","OC3","UNK","Y30-49","2011","247","","" +"CY","F","POP","TOTAL","OC3","UNK","Y50-64","2011","129","","" +"CY","F","POP","TOTAL","OC3","UNK","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","A","Y15-29","2011","17","","" +"CY","F","POP","TOTAL","OC4","A","Y30-49","2011","79","","" +"CY","F","POP","TOTAL","OC4","A","Y50-64","2011","17","","" +"CY","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","B","Y15-29","2011","7","","" +"CY","F","POP","TOTAL","OC4","B","Y30-49","2011","28","","" +"CY","F","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","C","Y15-29","2011","401","","" +"CY","F","POP","TOTAL","OC4","C","Y30-49","2011","1039","","" +"CY","F","POP","TOTAL","OC4","C","Y50-64","2011","252","","" +"CY","F","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","D","Y15-29","2011","13","","" +"CY","F","POP","TOTAL","OC4","D","Y30-49","2011","115","","" +"CY","F","POP","TOTAL","OC4","D","Y50-64","2011","9","","" +"CY","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","E","Y15-29","2011","36","","" +"CY","F","POP","TOTAL","OC4","E","Y30-49","2011","82","","" +"CY","F","POP","TOTAL","OC4","E","Y50-64","2011","12","","" +"CY","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","F","Y15-29","2011","447","","" +"CY","F","POP","TOTAL","OC4","F","Y30-49","2011","1042","","" +"CY","F","POP","TOTAL","OC4","F","Y50-64","2011","155","","" +"CY","F","POP","TOTAL","OC4","F","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","G","Y15-29","2011","1343","","" +"CY","F","POP","TOTAL","OC4","G","Y30-49","2011","3016","","" +"CY","F","POP","TOTAL","OC4","G","Y50-64","2011","699","","" +"CY","F","POP","TOTAL","OC4","G","Y65-84","2011","9","","" +"CY","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","H","Y15-29","2011","622","","" +"CY","F","POP","TOTAL","OC4","H","Y30-49","2011","1462","","" +"CY","F","POP","TOTAL","OC4","H","Y50-64","2011","248","","" +"CY","F","POP","TOTAL","OC4","H","Y65-84","2011","7","","" +"CY","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","I","Y15-29","2011","438","","" +"CY","F","POP","TOTAL","OC4","I","Y30-49","2011","997","","" +"CY","F","POP","TOTAL","OC4","I","Y50-64","2011","214","","" +"CY","F","POP","TOTAL","OC4","I","Y65-84","2011","4","","" +"CY","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","J","Y15-29","2011","397","","" +"CY","F","POP","TOTAL","OC4","J","Y30-49","2011","663","","" +"CY","F","POP","TOTAL","OC4","J","Y50-64","2011","77","","" +"CY","F","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC4","J","Y_GE85","2011",":","c","" +"CY","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","K","Y15-29","2011","1148","","" +"CY","F","POP","TOTAL","OC4","K","Y30-49","2011","3269","","" +"CY","F","POP","TOTAL","OC4","K","Y50-64","2011","405","","" +"CY","F","POP","TOTAL","OC4","K","Y65-84","2011","4","","" +"CY","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","L","Y15-29","2011","124","","" +"CY","F","POP","TOTAL","OC4","L","Y30-49","2011","201","","" +"CY","F","POP","TOTAL","OC4","L","Y50-64","2011","33","","" +"CY","F","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","M","Y15-29","2011","1489","","" +"CY","F","POP","TOTAL","OC4","M","Y30-49","2011","2326","","" +"CY","F","POP","TOTAL","OC4","M","Y50-64","2011","267","","" +"CY","F","POP","TOTAL","OC4","M","Y65-84","2011","6","","" +"CY","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","N","Y15-29","2011","330","","" +"CY","F","POP","TOTAL","OC4","N","Y30-49","2011","999","","" +"CY","F","POP","TOTAL","OC4","N","Y50-64","2011","322","","" +"CY","F","POP","TOTAL","OC4","N","Y65-84","2011","7","","" +"CY","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","O","Y15-29","2011","1063","","" +"CY","F","POP","TOTAL","OC4","O","Y30-49","2011","2485","","" +"CY","F","POP","TOTAL","OC4","O","Y50-64","2011","499","","" +"CY","F","POP","TOTAL","OC4","O","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","P","Y15-29","2011","412","","" +"CY","F","POP","TOTAL","OC4","P","Y30-49","2011","728","","" +"CY","F","POP","TOTAL","OC4","P","Y50-64","2011","126","","" +"CY","F","POP","TOTAL","OC4","P","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","Q","Y15-29","2011","342","","" +"CY","F","POP","TOTAL","OC4","Q","Y30-49","2011","589","","" +"CY","F","POP","TOTAL","OC4","Q","Y50-64","2011","163","","" +"CY","F","POP","TOTAL","OC4","Q","Y65-84","2011","6","","" +"CY","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","R","Y15-29","2011","343","","" +"CY","F","POP","TOTAL","OC4","R","Y30-49","2011","374","","" +"CY","F","POP","TOTAL","OC4","R","Y50-64","2011","83","","" +"CY","F","POP","TOTAL","OC4","R","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","S","Y15-29","2011","143","","" +"CY","F","POP","TOTAL","OC4","S","Y30-49","2011","279","","" +"CY","F","POP","TOTAL","OC4","S","Y50-64","2011","76","","" +"CY","F","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","U","Y15-29","2011","26","","" +"CY","F","POP","TOTAL","OC4","U","Y30-49","2011","162","","" +"CY","F","POP","TOTAL","OC4","U","Y50-64","2011","42","","" +"CY","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC4","UNK","Y15-29","2011","259","","" +"CY","F","POP","TOTAL","OC4","UNK","Y30-49","2011","623","","" +"CY","F","POP","TOTAL","OC4","UNK","Y50-64","2011","93","","" +"CY","F","POP","TOTAL","OC4","UNK","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","A","Y15-29","2011","6","","" +"CY","F","POP","TOTAL","OC5","A","Y30-49","2011","13","","" +"CY","F","POP","TOTAL","OC5","A","Y50-64","2011","4","","" +"CY","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","C","Y15-29","2011","81","","" +"CY","F","POP","TOTAL","OC5","C","Y30-49","2011","205","","" +"CY","F","POP","TOTAL","OC5","C","Y50-64","2011","86","","" +"CY","F","POP","TOTAL","OC5","C","Y65-84","2011","5","","" +"CY","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","F","Y15-29","2011","6","","" +"CY","F","POP","TOTAL","OC5","F","Y30-49","2011","22","","" +"CY","F","POP","TOTAL","OC5","F","Y50-64","2011","5","","" +"CY","F","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","G","Y15-29","2011","6037","","" +"CY","F","POP","TOTAL","OC5","G","Y30-49","2011","11221","","" +"CY","F","POP","TOTAL","OC5","G","Y50-64","2011","4621","","" +"CY","F","POP","TOTAL","OC5","G","Y65-84","2011","196","","" +"CY","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","H","Y15-29","2011","318","","" +"CY","F","POP","TOTAL","OC5","H","Y30-49","2011","563","","" +"CY","F","POP","TOTAL","OC5","H","Y50-64","2011","105","","" +"CY","F","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","I","Y15-29","2011","3089","","" +"CY","F","POP","TOTAL","OC5","I","Y30-49","2011","4630","","" +"CY","F","POP","TOTAL","OC5","I","Y50-64","2011","1776","","" +"CY","F","POP","TOTAL","OC5","I","Y65-84","2011","49","","" +"CY","F","POP","TOTAL","OC5","I","Y_GE85","2011",":","c","" +"CY","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","J","Y15-29","2011","105","","" +"CY","F","POP","TOTAL","OC5","J","Y30-49","2011","80","","" +"CY","F","POP","TOTAL","OC5","J","Y50-64","2011","13","","" +"CY","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","K","Y15-29","2011","18","","" +"CY","F","POP","TOTAL","OC5","K","Y30-49","2011","23","","" +"CY","F","POP","TOTAL","OC5","K","Y50-64","2011","13","","" +"CY","F","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","L","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","OC5","L","Y30-49","2011","10","","" +"CY","F","POP","TOTAL","OC5","L","Y50-64","2011","9","","" +"CY","F","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","M","Y15-29","2011","23","","" +"CY","F","POP","TOTAL","OC5","M","Y30-49","2011","42","","" +"CY","F","POP","TOTAL","OC5","M","Y50-64","2011","22","","" +"CY","F","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","N","Y15-29","2011","44","","" +"CY","F","POP","TOTAL","OC5","N","Y30-49","2011","235","","" +"CY","F","POP","TOTAL","OC5","N","Y50-64","2011","129","","" +"CY","F","POP","TOTAL","OC5","N","Y65-84","2011","11","","" +"CY","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","O","Y15-29","2011","457","","" +"CY","F","POP","TOTAL","OC5","O","Y30-49","2011","766","","" +"CY","F","POP","TOTAL","OC5","O","Y50-64","2011","118","","" +"CY","F","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","P","Y15-29","2011","240","","" +"CY","F","POP","TOTAL","OC5","P","Y30-49","2011","1089","","" +"CY","F","POP","TOTAL","OC5","P","Y50-64","2011","525","","" +"CY","F","POP","TOTAL","OC5","P","Y65-84","2011","10","","" +"CY","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","Q","Y15-29","2011","202","","" +"CY","F","POP","TOTAL","OC5","Q","Y30-49","2011","982","","" +"CY","F","POP","TOTAL","OC5","Q","Y50-64","2011","855","","" +"CY","F","POP","TOTAL","OC5","Q","Y65-84","2011","16","","" +"CY","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","R","Y15-29","2011","185","","" +"CY","F","POP","TOTAL","OC5","R","Y30-49","2011","136","","" +"CY","F","POP","TOTAL","OC5","R","Y50-64","2011","43","","" +"CY","F","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","S","Y15-29","2011","2000","","" +"CY","F","POP","TOTAL","OC5","S","Y30-49","2011","2852","","" +"CY","F","POP","TOTAL","OC5","S","Y50-64","2011","564","","" +"CY","F","POP","TOTAL","OC5","S","Y65-84","2011","19","","" +"CY","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","T","Y15-29","2011","47","","" +"CY","F","POP","TOTAL","OC5","T","Y30-49","2011","145","","" +"CY","F","POP","TOTAL","OC5","T","Y50-64","2011","63","","" +"CY","F","POP","TOTAL","OC5","T","Y65-84","2011","5","","" +"CY","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","U","Y15-29","2011","16","","" +"CY","F","POP","TOTAL","OC5","U","Y30-49","2011","87","","" +"CY","F","POP","TOTAL","OC5","U","Y50-64","2011","28","","" +"CY","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC5","UNK","Y15-29","2011","26","","" +"CY","F","POP","TOTAL","OC5","UNK","Y30-49","2011","62","","" +"CY","F","POP","TOTAL","OC5","UNK","Y50-64","2011","23","","" +"CY","F","POP","TOTAL","OC5","UNK","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","A","Y15-29","2011","26","","" +"CY","F","POP","TOTAL","OC6","A","Y30-49","2011","267","","" +"CY","F","POP","TOTAL","OC6","A","Y50-64","2011","270","","" +"CY","F","POP","TOTAL","OC6","A","Y65-84","2011","34","","" +"CY","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC6","G","Y30-49","2011","3","","" +"CY","F","POP","TOTAL","OC6","G","Y50-64","2011","6","","" +"CY","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","I","Y30-49","2011","6","","" +"CY","F","POP","TOTAL","OC6","I","Y50-64","2011","5","","" +"CY","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","N","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","OC6","N","Y30-49","2011","17","","" +"CY","F","POP","TOTAL","OC6","N","Y50-64","2011","5","","" +"CY","F","POP","TOTAL","OC6","N","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","T","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC6","T","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","U","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC6","UNK","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","A","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","OC7","A","Y30-49","2011","10","","" +"CY","F","POP","TOTAL","OC7","A","Y50-64","2011","6","","" +"CY","F","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","B","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","C","Y15-29","2011","308","","" +"CY","F","POP","TOTAL","OC7","C","Y30-49","2011","1153","","" +"CY","F","POP","TOTAL","OC7","C","Y50-64","2011","1047","","" +"CY","F","POP","TOTAL","OC7","C","Y65-84","2011","41","","" +"CY","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","D","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC7","D","Y30-49","2011","4","","" +"CY","F","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC7","E","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC7","E","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","F","Y15-29","2011","63","","" +"CY","F","POP","TOTAL","OC7","F","Y30-49","2011","84","","" +"CY","F","POP","TOTAL","OC7","F","Y50-64","2011","19","","" +"CY","F","POP","TOTAL","OC7","F","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","G","Y15-29","2011","76","","" +"CY","F","POP","TOTAL","OC7","G","Y30-49","2011","277","","" +"CY","F","POP","TOTAL","OC7","G","Y50-64","2011","150","","" +"CY","F","POP","TOTAL","OC7","G","Y65-84","2011","7","","" +"CY","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC7","H","Y30-49","2011","5","","" +"CY","F","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","I","Y15-29","2011","31","","" +"CY","F","POP","TOTAL","OC7","I","Y30-49","2011","78","","" +"CY","F","POP","TOTAL","OC7","I","Y50-64","2011","24","","" +"CY","F","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","J","Y15-29","2011","9","","" +"CY","F","POP","TOTAL","OC7","J","Y30-49","2011","48","","" +"CY","F","POP","TOTAL","OC7","J","Y50-64","2011","17","","" +"CY","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC7","K","Y30-49","2011","4","","" +"CY","F","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","M","Y15-29","2011","11","","" +"CY","F","POP","TOTAL","OC7","M","Y30-49","2011","43","","" +"CY","F","POP","TOTAL","OC7","M","Y50-64","2011","11","","" +"CY","F","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","N","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","OC7","N","Y30-49","2011","5","","" +"CY","F","POP","TOTAL","OC7","N","Y50-64","2011","8","","" +"CY","F","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC7","O","Y30-49","2011","26","","" +"CY","F","POP","TOTAL","OC7","O","Y50-64","2011","31","","" +"CY","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC7","P","Y30-49","2011","3","","" +"CY","F","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC7","Q","Y30-49","2011","3","","" +"CY","F","POP","TOTAL","OC7","Q","Y50-64","2011","7","","" +"CY","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","R","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","OC7","R","Y30-49","2011","8","","" +"CY","F","POP","TOTAL","OC7","R","Y50-64","2011","12","","" +"CY","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","S","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","OC7","S","Y30-49","2011","30","","" +"CY","F","POP","TOTAL","OC7","S","Y50-64","2011","56","","" +"CY","F","POP","TOTAL","OC7","S","Y65-84","2011","10","","" +"CY","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","U","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC7","U","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC7","U","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC7","UNK","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC7","UNK","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC7","UNK","Y50-64","2011","5","","" +"CY","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC8","A","Y30-49","2011","10","","" +"CY","F","POP","TOTAL","OC8","A","Y50-64","2011","6","","" +"CY","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","B","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","C","Y15-29","2011","146","","" +"CY","F","POP","TOTAL","OC8","C","Y30-49","2011","892","","" +"CY","F","POP","TOTAL","OC8","C","Y50-64","2011","856","","" +"CY","F","POP","TOTAL","OC8","C","Y65-84","2011","16","","" +"CY","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC8","E","Y30-49","2011","6","","" +"CY","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","F","Y15-29","2011","6","","" +"CY","F","POP","TOTAL","OC8","F","Y30-49","2011","4","","" +"CY","F","POP","TOTAL","OC8","F","Y50-64","2011","3","","" +"CY","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","G","Y15-29","2011","51","","" +"CY","F","POP","TOTAL","OC8","G","Y30-49","2011","183","","" +"CY","F","POP","TOTAL","OC8","G","Y50-64","2011","116","","" +"CY","F","POP","TOTAL","OC8","G","Y65-84","2011","3","","" +"CY","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","H","Y15-29","2011","19","","" +"CY","F","POP","TOTAL","OC8","H","Y30-49","2011","116","","" +"CY","F","POP","TOTAL","OC8","H","Y50-64","2011","45","","" +"CY","F","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","I","Y15-29","2011","10","","" +"CY","F","POP","TOTAL","OC8","I","Y30-49","2011","39","","" +"CY","F","POP","TOTAL","OC8","I","Y50-64","2011","45","","" +"CY","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","M","Y15-29","2011","8","","" +"CY","F","POP","TOTAL","OC8","M","Y30-49","2011","26","","" +"CY","F","POP","TOTAL","OC8","M","Y50-64","2011","8","","" +"CY","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","N","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","OC8","N","Y30-49","2011","27","","" +"CY","F","POP","TOTAL","OC8","N","Y50-64","2011","23","","" +"CY","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC8","O","Y30-49","2011","5","","" +"CY","F","POP","TOTAL","OC8","O","Y50-64","2011","6","","" +"CY","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","P","Y15-29","2011","4","","" +"CY","F","POP","TOTAL","OC8","P","Y30-49","2011","52","","" +"CY","F","POP","TOTAL","OC8","P","Y50-64","2011","25","","" +"CY","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","Q","Y30-49","2011","13","","" +"CY","F","POP","TOTAL","OC8","Q","Y50-64","2011","39","","" +"CY","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","R","Y30-49","2011","5","","" +"CY","F","POP","TOTAL","OC8","R","Y50-64","2011","5","","" +"CY","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","S","Y15-29","2011","27","","" +"CY","F","POP","TOTAL","OC8","S","Y30-49","2011","147","","" +"CY","F","POP","TOTAL","OC8","S","Y50-64","2011","115","","" +"CY","F","POP","TOTAL","OC8","S","Y65-84","2011","6","","" +"CY","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","T","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","U","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC8","U","Y30-49","2011","5","","" +"CY","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC8","UNK","Y30-49","2011","10","","" +"CY","F","POP","TOTAL","OC8","UNK","Y50-64","2011","11","","" +"CY","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","A","Y15-29","2011","268","","" +"CY","F","POP","TOTAL","OC9","A","Y30-49","2011","515","","" +"CY","F","POP","TOTAL","OC9","A","Y50-64","2011","299","","" +"CY","F","POP","TOTAL","OC9","A","Y65-84","2011","22","","" +"CY","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","B","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC9","B","Y30-49","2011","6","","" +"CY","F","POP","TOTAL","OC9","B","Y50-64","2011","6","","" +"CY","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","C","Y15-29","2011","145","","" +"CY","F","POP","TOTAL","OC9","C","Y30-49","2011","487","","" +"CY","F","POP","TOTAL","OC9","C","Y50-64","2011","361","","" +"CY","F","POP","TOTAL","OC9","C","Y65-84","2011","10","","" +"CY","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC9","D","Y30-49","2011","18","","" +"CY","F","POP","TOTAL","OC9","D","Y50-64","2011","22","","" +"CY","F","POP","TOTAL","OC9","D","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","E","Y15-29","2011","7","","" +"CY","F","POP","TOTAL","OC9","E","Y30-49","2011","45","","" +"CY","F","POP","TOTAL","OC9","E","Y50-64","2011","44","","" +"CY","F","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","F","Y15-29","2011","49","","" +"CY","F","POP","TOTAL","OC9","F","Y30-49","2011","146","","" +"CY","F","POP","TOTAL","OC9","F","Y50-64","2011","122","","" +"CY","F","POP","TOTAL","OC9","F","Y65-84","2011","4","","" +"CY","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","G","Y15-29","2011","341","","" +"CY","F","POP","TOTAL","OC9","G","Y30-49","2011","1050","","" +"CY","F","POP","TOTAL","OC9","G","Y50-64","2011","686","","" +"CY","F","POP","TOTAL","OC9","G","Y65-84","2011","13","","" +"CY","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","H","Y15-29","2011","37","","" +"CY","F","POP","TOTAL","OC9","H","Y30-49","2011","150","","" +"CY","F","POP","TOTAL","OC9","H","Y50-64","2011","136","","" +"CY","F","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","I","Y15-29","2011","972","","" +"CY","F","POP","TOTAL","OC9","I","Y30-49","2011","3268","","" +"CY","F","POP","TOTAL","OC9","I","Y50-64","2011","2590","","" +"CY","F","POP","TOTAL","OC9","I","Y65-84","2011","48","","" +"CY","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","J","Y15-29","2011","13","","" +"CY","F","POP","TOTAL","OC9","J","Y30-49","2011","79","","" +"CY","F","POP","TOTAL","OC9","J","Y50-64","2011","84","","" +"CY","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","K","Y15-29","2011","31","","" +"CY","F","POP","TOTAL","OC9","K","Y30-49","2011","215","","" +"CY","F","POP","TOTAL","OC9","K","Y50-64","2011","344","","" +"CY","F","POP","TOTAL","OC9","K","Y65-84","2011","6","","" +"CY","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","OC9","L","Y30-49","2011","12","","" +"CY","F","POP","TOTAL","OC9","L","Y50-64","2011","15","","" +"CY","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","M","Y15-29","2011","23","","" +"CY","F","POP","TOTAL","OC9","M","Y30-49","2011","142","","" +"CY","F","POP","TOTAL","OC9","M","Y50-64","2011","148","","" +"CY","F","POP","TOTAL","OC9","M","Y65-84","2011","5","","" +"CY","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","N","Y15-29","2011","97","","" +"CY","F","POP","TOTAL","OC9","N","Y30-49","2011","434","","" +"CY","F","POP","TOTAL","OC9","N","Y50-64","2011","310","","" +"CY","F","POP","TOTAL","OC9","N","Y65-84","2011","13","","" +"CY","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","O","Y15-29","2011","14","","" +"CY","F","POP","TOTAL","OC9","O","Y30-49","2011","460","","" +"CY","F","POP","TOTAL","OC9","O","Y50-64","2011","672","","" +"CY","F","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","P","Y15-29","2011","31","","" +"CY","F","POP","TOTAL","OC9","P","Y30-49","2011","627","","" +"CY","F","POP","TOTAL","OC9","P","Y50-64","2011","695","","" +"CY","F","POP","TOTAL","OC9","P","Y65-84","2011","12","","" +"CY","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","Q","Y15-29","2011","28","","" +"CY","F","POP","TOTAL","OC9","Q","Y30-49","2011","488","","" +"CY","F","POP","TOTAL","OC9","Q","Y50-64","2011","664","","" +"CY","F","POP","TOTAL","OC9","Q","Y65-84","2011","12","","" +"CY","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","R","Y15-29","2011","31","","" +"CY","F","POP","TOTAL","OC9","R","Y30-49","2011","104","","" +"CY","F","POP","TOTAL","OC9","R","Y50-64","2011","85","","" +"CY","F","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","S","Y15-29","2011","23","","" +"CY","F","POP","TOTAL","OC9","S","Y30-49","2011","103","","" +"CY","F","POP","TOTAL","OC9","S","Y50-64","2011","97","","" +"CY","F","POP","TOTAL","OC9","S","Y65-84","2011","5","","" +"CY","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","T","Y15-29","2011","4930","","" +"CY","F","POP","TOTAL","OC9","T","Y30-49","2011","16561","","" +"CY","F","POP","TOTAL","OC9","T","Y50-64","2011","1802","","" +"CY","F","POP","TOTAL","OC9","T","Y65-84","2011","57","","" +"CY","F","POP","TOTAL","OC9","T","Y_GE85","2011","4","","" +"CY","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","U","Y15-29","2011","6","","" +"CY","F","POP","TOTAL","OC9","U","Y30-49","2011","104","","" +"CY","F","POP","TOTAL","OC9","U","Y50-64","2011","118","","" +"CY","F","POP","TOTAL","OC9","U","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","OC9","UNK","Y15-29","2011","15","","" +"CY","F","POP","TOTAL","OC9","UNK","Y30-49","2011","48","","" +"CY","F","POP","TOTAL","OC9","UNK","Y50-64","2011","63","","" +"CY","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","A","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","UNK","A","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","UNK","A","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","UNK","B","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","C","Y15-29","2011","7","","" +"CY","F","POP","TOTAL","UNK","C","Y30-49","2011","39","","" +"CY","F","POP","TOTAL","UNK","C","Y50-64","2011","12","","" +"CY","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","UNK","D","Y30-49","2011","3","","" +"CY","F","POP","TOTAL","UNK","D","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","UNK","E","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","UNK","E","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","F","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","UNK","F","Y30-49","2011","7","","" +"CY","F","POP","TOTAL","UNK","F","Y50-64","2011","4","","" +"CY","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","G","Y15-29","2011","9","","" +"CY","F","POP","TOTAL","UNK","G","Y30-49","2011","45","","" +"CY","F","POP","TOTAL","UNK","G","Y50-64","2011","18","","" +"CY","F","POP","TOTAL","UNK","G","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","H","Y15-29","2011","14","","" +"CY","F","POP","TOTAL","UNK","H","Y30-49","2011","49","","" +"CY","F","POP","TOTAL","UNK","H","Y50-64","2011","13","","" +"CY","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","I","Y15-29","2011","22","","" +"CY","F","POP","TOTAL","UNK","I","Y30-49","2011","77","","" +"CY","F","POP","TOTAL","UNK","I","Y50-64","2011","38","","" +"CY","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","J","Y15-29","2011","10","","" +"CY","F","POP","TOTAL","UNK","J","Y30-49","2011","23","","" +"CY","F","POP","TOTAL","UNK","J","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","K","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","UNK","K","Y30-49","2011","15","","" +"CY","F","POP","TOTAL","UNK","K","Y50-64","2011","6","","" +"CY","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","L","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","UNK","L","Y30-49","2011",":","c","" +"CY","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","M","Y15-29","2011","9","","" +"CY","F","POP","TOTAL","UNK","M","Y30-49","2011","20","","" +"CY","F","POP","TOTAL","UNK","M","Y50-64","2011","6","","" +"CY","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","N","Y15-29","2011",":","c","" +"CY","F","POP","TOTAL","UNK","N","Y30-49","2011","8","","" +"CY","F","POP","TOTAL","UNK","N","Y50-64","2011","3","","" +"CY","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","O","Y15-29","2011","10","","" +"CY","F","POP","TOTAL","UNK","O","Y30-49","2011","57","","" +"CY","F","POP","TOTAL","UNK","O","Y50-64","2011","9","","" +"CY","F","POP","TOTAL","UNK","O","Y65-84","2011",":","c","" +"CY","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","P","Y15-29","2011","6","","" +"CY","F","POP","TOTAL","UNK","P","Y30-49","2011","10","","" +"CY","F","POP","TOTAL","UNK","P","Y50-64","2011","3","","" +"CY","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","Q","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","UNK","Q","Y30-49","2011","15","","" +"CY","F","POP","TOTAL","UNK","Q","Y50-64","2011","9","","" +"CY","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","R","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","UNK","R","Y30-49","2011","6","","" +"CY","F","POP","TOTAL","UNK","R","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","S","Y15-29","2011","3","","" +"CY","F","POP","TOTAL","UNK","S","Y30-49","2011","5","","" +"CY","F","POP","TOTAL","UNK","S","Y50-64","2011",":","c","" +"CY","F","POP","TOTAL","UNK","S","Y65-84","2011","5","","" +"CY","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"CY","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"CY","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"CY","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","U","Y15-29","2011","5","","" +"CY","F","POP","TOTAL","UNK","U","Y30-49","2011","33","","" +"CY","F","POP","TOTAL","UNK","U","Y50-64","2011","6","","" +"CY","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"CY","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"CY","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"CY","F","POP","TOTAL","UNK","UNK","Y15-29","2011","233","","" +"CY","F","POP","TOTAL","UNK","UNK","Y30-49","2011","522","","" +"CY","F","POP","TOTAL","UNK","UNK","Y50-64","2011","124","","" +"CY","F","POP","TOTAL","UNK","UNK","Y65-84","2011","17","","" +"CY","F","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","c","" +"CY","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","NAP","Y15-29","2011","54109","","" +"CY","M","POP","TOTAL","NAP","NAP","Y30-49","2011","7573","","" +"CY","M","POP","TOTAL","NAP","NAP","Y50-64","2011","16397","","" +"CY","M","POP","TOTAL","NAP","NAP","Y65-84","2011","43848","","" +"CY","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","4247","","" +"CY","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","69161","","" +"CY","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","H","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC0","H","Y30-49","2011","5","","" +"CY","M","POP","TOTAL","OC0","H","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","O","Y15-29","2011","550","","" +"CY","M","POP","TOTAL","OC0","O","Y30-49","2011","2671","","" +"CY","M","POP","TOTAL","OC0","O","Y50-64","2011","238","","" +"CY","M","POP","TOTAL","OC0","O","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","U","Y15-29","2011","43","","" +"CY","M","POP","TOTAL","OC0","U","Y30-49","2011","205","","" +"CY","M","POP","TOTAL","OC0","U","Y50-64","2011","8","","" +"CY","M","POP","TOTAL","OC0","U","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","A","Y15-29","2011","7","","" +"CY","M","POP","TOTAL","OC1","A","Y30-49","2011","38","","" +"CY","M","POP","TOTAL","OC1","A","Y50-64","2011","19","","" +"CY","M","POP","TOTAL","OC1","A","Y65-84","2011","7","","" +"CY","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC1","B","Y30-49","2011","15","","" +"CY","M","POP","TOTAL","OC1","B","Y50-64","2011","11","","" +"CY","M","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","C","Y15-29","2011","42","","" +"CY","M","POP","TOTAL","OC1","C","Y30-49","2011","490","","" +"CY","M","POP","TOTAL","OC1","C","Y50-64","2011","447","","" +"CY","M","POP","TOTAL","OC1","C","Y65-84","2011","61","","" +"CY","M","POP","TOTAL","OC1","C","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC1","D","Y30-49","2011","9","","" +"CY","M","POP","TOTAL","OC1","D","Y50-64","2011","30","","" +"CY","M","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC1","E","Y30-49","2011","24","","" +"CY","M","POP","TOTAL","OC1","E","Y50-64","2011","25","","" +"CY","M","POP","TOTAL","OC1","E","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","F","Y15-29","2011","31","","" +"CY","M","POP","TOTAL","OC1","F","Y30-49","2011","438","","" +"CY","M","POP","TOTAL","OC1","F","Y50-64","2011","321","","" +"CY","M","POP","TOTAL","OC1","F","Y65-84","2011","43","","" +"CY","M","POP","TOTAL","OC1","F","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","G","Y15-29","2011","130","","" +"CY","M","POP","TOTAL","OC1","G","Y30-49","2011","1160","","" +"CY","M","POP","TOTAL","OC1","G","Y50-64","2011","723","","" +"CY","M","POP","TOTAL","OC1","G","Y65-84","2011","99","","" +"CY","M","POP","TOTAL","OC1","G","Y_GE85","2011","4","","" +"CY","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","H","Y15-29","2011","16","","" +"CY","M","POP","TOTAL","OC1","H","Y30-49","2011","332","","" +"CY","M","POP","TOTAL","OC1","H","Y50-64","2011","231","","" +"CY","M","POP","TOTAL","OC1","H","Y65-84","2011","25","","" +"CY","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","I","Y15-29","2011","103","","" +"CY","M","POP","TOTAL","OC1","I","Y30-49","2011","871","","" +"CY","M","POP","TOTAL","OC1","I","Y50-64","2011","586","","" +"CY","M","POP","TOTAL","OC1","I","Y65-84","2011","38","","" +"CY","M","POP","TOTAL","OC1","I","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","J","Y15-29","2011","9","","" +"CY","M","POP","TOTAL","OC1","J","Y30-49","2011","270","","" +"CY","M","POP","TOTAL","OC1","J","Y50-64","2011","112","","" +"CY","M","POP","TOTAL","OC1","J","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","K","Y15-29","2011","16","","" +"CY","M","POP","TOTAL","OC1","K","Y30-49","2011","639","","" +"CY","M","POP","TOTAL","OC1","K","Y50-64","2011","564","","" +"CY","M","POP","TOTAL","OC1","K","Y65-84","2011","18","","" +"CY","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC1","L","Y30-49","2011","22","","" +"CY","M","POP","TOTAL","OC1","L","Y50-64","2011","22","","" +"CY","M","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","M","Y15-29","2011","19","","" +"CY","M","POP","TOTAL","OC1","M","Y30-49","2011","271","","" +"CY","M","POP","TOTAL","OC1","M","Y50-64","2011","108","","" +"CY","M","POP","TOTAL","OC1","M","Y65-84","2011","14","","" +"CY","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","N","Y15-29","2011","6","","" +"CY","M","POP","TOTAL","OC1","N","Y30-49","2011","112","","" +"CY","M","POP","TOTAL","OC1","N","Y50-64","2011","67","","" +"CY","M","POP","TOTAL","OC1","N","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC1","O","Y30-49","2011","100","","" +"CY","M","POP","TOTAL","OC1","O","Y50-64","2011","346","","" +"CY","M","POP","TOTAL","OC1","O","Y65-84","2011","38","","" +"CY","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","P","Y15-29","2011","3","","" +"CY","M","POP","TOTAL","OC1","P","Y30-49","2011","82","","" +"CY","M","POP","TOTAL","OC1","P","Y50-64","2011","141","","" +"CY","M","POP","TOTAL","OC1","P","Y65-84","2011","13","","" +"CY","M","POP","TOTAL","OC1","P","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","Q","Y15-29","2011","6","","" +"CY","M","POP","TOTAL","OC1","Q","Y30-49","2011","35","","" +"CY","M","POP","TOTAL","OC1","Q","Y50-64","2011","43","","" +"CY","M","POP","TOTAL","OC1","Q","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","R","Y15-29","2011","14","","" +"CY","M","POP","TOTAL","OC1","R","Y30-49","2011","67","","" +"CY","M","POP","TOTAL","OC1","R","Y50-64","2011","43","","" +"CY","M","POP","TOTAL","OC1","R","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","S","Y15-29","2011","8","","" +"CY","M","POP","TOTAL","OC1","S","Y30-49","2011","44","","" +"CY","M","POP","TOTAL","OC1","S","Y50-64","2011","33","","" +"CY","M","POP","TOTAL","OC1","S","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC1","U","Y30-49","2011","13","","" +"CY","M","POP","TOTAL","OC1","U","Y50-64","2011","20","","" +"CY","M","POP","TOTAL","OC1","U","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC1","UNK","Y15-29","2011","13","","" +"CY","M","POP","TOTAL","OC1","UNK","Y30-49","2011","109","","" +"CY","M","POP","TOTAL","OC1","UNK","Y50-64","2011","66","","" +"CY","M","POP","TOTAL","OC1","UNK","Y65-84","2011","8","","" +"CY","M","POP","TOTAL","OC1","UNK","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","A","Y15-29","2011","21","","" +"CY","M","POP","TOTAL","OC2","A","Y30-49","2011","25","","" +"CY","M","POP","TOTAL","OC2","A","Y50-64","2011","20","","" +"CY","M","POP","TOTAL","OC2","A","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","B","Y15-29","2011","14","","" +"CY","M","POP","TOTAL","OC2","B","Y30-49","2011","11","","" +"CY","M","POP","TOTAL","OC2","B","Y50-64","2011","17","","" +"CY","M","POP","TOTAL","OC2","B","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","C","Y15-29","2011","210","","" +"CY","M","POP","TOTAL","OC2","C","Y30-49","2011","385","","" +"CY","M","POP","TOTAL","OC2","C","Y50-64","2011","185","","" +"CY","M","POP","TOTAL","OC2","C","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","D","Y15-29","2011","21","","" +"CY","M","POP","TOTAL","OC2","D","Y30-49","2011","199","","" +"CY","M","POP","TOTAL","OC2","D","Y50-64","2011","94","","" +"CY","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","E","Y15-29","2011","24","","" +"CY","M","POP","TOTAL","OC2","E","Y30-49","2011","49","","" +"CY","M","POP","TOTAL","OC2","E","Y50-64","2011","20","","" +"CY","M","POP","TOTAL","OC2","E","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","F","Y15-29","2011","492","","" +"CY","M","POP","TOTAL","OC2","F","Y30-49","2011","952","","" +"CY","M","POP","TOTAL","OC2","F","Y50-64","2011","590","","" +"CY","M","POP","TOTAL","OC2","F","Y65-84","2011","29","","" +"CY","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","G","Y15-29","2011","409","","" +"CY","M","POP","TOTAL","OC2","G","Y30-49","2011","903","","" +"CY","M","POP","TOTAL","OC2","G","Y50-64","2011","384","","" +"CY","M","POP","TOTAL","OC2","G","Y65-84","2011","36","","" +"CY","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","H","Y15-29","2011","84","","" +"CY","M","POP","TOTAL","OC2","H","Y30-49","2011","368","","" +"CY","M","POP","TOTAL","OC2","H","Y50-64","2011","248","","" +"CY","M","POP","TOTAL","OC2","H","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","I","Y15-29","2011","116","","" +"CY","M","POP","TOTAL","OC2","I","Y30-49","2011","247","","" +"CY","M","POP","TOTAL","OC2","I","Y50-64","2011","124","","" +"CY","M","POP","TOTAL","OC2","I","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","J","Y15-29","2011","761","","" +"CY","M","POP","TOTAL","OC2","J","Y30-49","2011","1702","","" +"CY","M","POP","TOTAL","OC2","J","Y50-64","2011","397","","" +"CY","M","POP","TOTAL","OC2","J","Y65-84","2011","22","","" +"CY","M","POP","TOTAL","OC2","J","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","K","Y15-29","2011","202","","" +"CY","M","POP","TOTAL","OC2","K","Y30-49","2011","806","","" +"CY","M","POP","TOTAL","OC2","K","Y50-64","2011","162","","" +"CY","M","POP","TOTAL","OC2","K","Y65-84","2011","12","","" +"CY","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","L","Y15-29","2011","6","","" +"CY","M","POP","TOTAL","OC2","L","Y30-49","2011","29","","" +"CY","M","POP","TOTAL","OC2","L","Y50-64","2011","11","","" +"CY","M","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","M","Y15-29","2011","1219","","" +"CY","M","POP","TOTAL","OC2","M","Y30-49","2011","3541","","" +"CY","M","POP","TOTAL","OC2","M","Y50-64","2011","1610","","" +"CY","M","POP","TOTAL","OC2","M","Y65-84","2011","264","","" +"CY","M","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","N","Y15-29","2011","25","","" +"CY","M","POP","TOTAL","OC2","N","Y30-49","2011","65","","" +"CY","M","POP","TOTAL","OC2","N","Y50-64","2011","20","","" +"CY","M","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","O","Y15-29","2011","168","","" +"CY","M","POP","TOTAL","OC2","O","Y30-49","2011","1116","","" +"CY","M","POP","TOTAL","OC2","O","Y50-64","2011","634","","" +"CY","M","POP","TOTAL","OC2","O","Y65-84","2011","14","","" +"CY","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","P","Y15-29","2011","735","","" +"CY","M","POP","TOTAL","OC2","P","Y30-49","2011","3815","","" +"CY","M","POP","TOTAL","OC2","P","Y50-64","2011","1454","","" +"CY","M","POP","TOTAL","OC2","P","Y65-84","2011","69","","" +"CY","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","Q","Y15-29","2011","601","","" +"CY","M","POP","TOTAL","OC2","Q","Y30-49","2011","1522","","" +"CY","M","POP","TOTAL","OC2","Q","Y50-64","2011","1074","","" +"CY","M","POP","TOTAL","OC2","Q","Y65-84","2011","147","","" +"CY","M","POP","TOTAL","OC2","Q","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","R","Y15-29","2011","90","","" +"CY","M","POP","TOTAL","OC2","R","Y30-49","2011","319","","" +"CY","M","POP","TOTAL","OC2","R","Y50-64","2011","151","","" +"CY","M","POP","TOTAL","OC2","R","Y65-84","2011","21","","" +"CY","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","S","Y15-29","2011","101","","" +"CY","M","POP","TOTAL","OC2","S","Y30-49","2011","403","","" +"CY","M","POP","TOTAL","OC2","S","Y50-64","2011","227","","" +"CY","M","POP","TOTAL","OC2","S","Y65-84","2011","112","","" +"CY","M","POP","TOTAL","OC2","S","Y_GE85","2011","11","","" +"CY","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","U","Y15-29","2011","17","","" +"CY","M","POP","TOTAL","OC2","U","Y30-49","2011","137","","" +"CY","M","POP","TOTAL","OC2","U","Y50-64","2011","71","","" +"CY","M","POP","TOTAL","OC2","U","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC2","UNK","Y15-29","2011","112","","" +"CY","M","POP","TOTAL","OC2","UNK","Y30-49","2011","240","","" +"CY","M","POP","TOTAL","OC2","UNK","Y50-64","2011","89","","" +"CY","M","POP","TOTAL","OC2","UNK","Y65-84","2011","6","","" +"CY","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","A","Y15-29","2011","21","","" +"CY","M","POP","TOTAL","OC3","A","Y30-49","2011","64","","" +"CY","M","POP","TOTAL","OC3","A","Y50-64","2011","53","","" +"CY","M","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","B","Y15-29","2011","5","","" +"CY","M","POP","TOTAL","OC3","B","Y30-49","2011","32","","" +"CY","M","POP","TOTAL","OC3","B","Y50-64","2011","33","","" +"CY","M","POP","TOTAL","OC3","B","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","C","Y15-29","2011","318","","" +"CY","M","POP","TOTAL","OC3","C","Y30-49","2011","895","","" +"CY","M","POP","TOTAL","OC3","C","Y50-64","2011","586","","" +"CY","M","POP","TOTAL","OC3","C","Y65-84","2011","24","","" +"CY","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","D","Y15-29","2011","37","","" +"CY","M","POP","TOTAL","OC3","D","Y30-49","2011","241","","" +"CY","M","POP","TOTAL","OC3","D","Y50-64","2011","120","","" +"CY","M","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","E","Y15-29","2011","34","","" +"CY","M","POP","TOTAL","OC3","E","Y30-49","2011","98","","" +"CY","M","POP","TOTAL","OC3","E","Y50-64","2011","82","","" +"CY","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","F","Y15-29","2011","340","","" +"CY","M","POP","TOTAL","OC3","F","Y30-49","2011","2108","","" +"CY","M","POP","TOTAL","OC3","F","Y50-64","2011","1796","","" +"CY","M","POP","TOTAL","OC3","F","Y65-84","2011","63","","" +"CY","M","POP","TOTAL","OC3","F","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","G","Y15-29","2011","893","","" +"CY","M","POP","TOTAL","OC3","G","Y30-49","2011","2680","","" +"CY","M","POP","TOTAL","OC3","G","Y50-64","2011","1421","","" +"CY","M","POP","TOTAL","OC3","G","Y65-84","2011","121","","" +"CY","M","POP","TOTAL","OC3","G","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","H","Y15-29","2011","204","","" +"CY","M","POP","TOTAL","OC3","H","Y30-49","2011","872","","" +"CY","M","POP","TOTAL","OC3","H","Y50-64","2011","484","","" +"CY","M","POP","TOTAL","OC3","H","Y65-84","2011","27","","" +"CY","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","I","Y15-29","2011","89","","" +"CY","M","POP","TOTAL","OC3","I","Y30-49","2011","270","","" +"CY","M","POP","TOTAL","OC3","I","Y50-64","2011","136","","" +"CY","M","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","J","Y15-29","2011","345","","" +"CY","M","POP","TOTAL","OC3","J","Y30-49","2011","812","","" +"CY","M","POP","TOTAL","OC3","J","Y50-64","2011","311","","" +"CY","M","POP","TOTAL","OC3","J","Y65-84","2011","4","","" +"CY","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","K","Y15-29","2011","413","","" +"CY","M","POP","TOTAL","OC3","K","Y30-49","2011","2191","","" +"CY","M","POP","TOTAL","OC3","K","Y50-64","2011","979","","" +"CY","M","POP","TOTAL","OC3","K","Y65-84","2011","55","","" +"CY","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","L","Y15-29","2011","116","","" +"CY","M","POP","TOTAL","OC3","L","Y30-49","2011","475","","" +"CY","M","POP","TOTAL","OC3","L","Y50-64","2011","292","","" +"CY","M","POP","TOTAL","OC3","L","Y65-84","2011","30","","" +"CY","M","POP","TOTAL","OC3","L","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","M","Y15-29","2011","918","","" +"CY","M","POP","TOTAL","OC3","M","Y30-49","2011","658","","" +"CY","M","POP","TOTAL","OC3","M","Y50-64","2011","456","","" +"CY","M","POP","TOTAL","OC3","M","Y65-84","2011","53","","" +"CY","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","N","Y15-29","2011","56","","" +"CY","M","POP","TOTAL","OC3","N","Y30-49","2011","150","","" +"CY","M","POP","TOTAL","OC3","N","Y50-64","2011","80","","" +"CY","M","POP","TOTAL","OC3","N","Y65-84","2011","13","","" +"CY","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","O","Y15-29","2011","159","","" +"CY","M","POP","TOTAL","OC3","O","Y30-49","2011","1233","","" +"CY","M","POP","TOTAL","OC3","O","Y50-64","2011","1281","","" +"CY","M","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","P","Y15-29","2011","35","","" +"CY","M","POP","TOTAL","OC3","P","Y30-49","2011","116","","" +"CY","M","POP","TOTAL","OC3","P","Y50-64","2011","50","","" +"CY","M","POP","TOTAL","OC3","P","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","Q","Y15-29","2011","131","","" +"CY","M","POP","TOTAL","OC3","Q","Y30-49","2011","155","","" +"CY","M","POP","TOTAL","OC3","Q","Y50-64","2011","115","","" +"CY","M","POP","TOTAL","OC3","Q","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","R","Y15-29","2011","634","","" +"CY","M","POP","TOTAL","OC3","R","Y30-49","2011","641","","" +"CY","M","POP","TOTAL","OC3","R","Y50-64","2011","124","","" +"CY","M","POP","TOTAL","OC3","R","Y65-84","2011","7","","" +"CY","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","S","Y15-29","2011","111","","" +"CY","M","POP","TOTAL","OC3","S","Y30-49","2011","306","","" +"CY","M","POP","TOTAL","OC3","S","Y50-64","2011","159","","" +"CY","M","POP","TOTAL","OC3","S","Y65-84","2011","21","","" +"CY","M","POP","TOTAL","OC3","S","Y_GE85","2011","5","","" +"CY","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","T","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","U","Y15-29","2011","8","","" +"CY","M","POP","TOTAL","OC3","U","Y30-49","2011","92","","" +"CY","M","POP","TOTAL","OC3","U","Y50-64","2011","55","","" +"CY","M","POP","TOTAL","OC3","U","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC3","UNK","Y15-29","2011","62","","" +"CY","M","POP","TOTAL","OC3","UNK","Y30-49","2011","166","","" +"CY","M","POP","TOTAL","OC3","UNK","Y50-64","2011","87","","" +"CY","M","POP","TOTAL","OC3","UNK","Y65-84","2011","10","","" +"CY","M","POP","TOTAL","OC3","UNK","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","A","Y15-29","2011","9","","" +"CY","M","POP","TOTAL","OC4","A","Y30-49","2011","7","","" +"CY","M","POP","TOTAL","OC4","A","Y50-64","2011","5","","" +"CY","M","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","B","Y15-29","2011","3","","" +"CY","M","POP","TOTAL","OC4","B","Y30-49","2011","9","","" +"CY","M","POP","TOTAL","OC4","B","Y50-64","2011","4","","" +"CY","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","C","Y15-29","2011","170","","" +"CY","M","POP","TOTAL","OC4","C","Y30-49","2011","285","","" +"CY","M","POP","TOTAL","OC4","C","Y50-64","2011","156","","" +"CY","M","POP","TOTAL","OC4","C","Y65-84","2011","8","","" +"CY","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","D","Y15-29","2011","16","","" +"CY","M","POP","TOTAL","OC4","D","Y30-49","2011","127","","" +"CY","M","POP","TOTAL","OC4","D","Y50-64","2011","25","","" +"CY","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","E","Y15-29","2011","9","","" +"CY","M","POP","TOTAL","OC4","E","Y30-49","2011","44","","" +"CY","M","POP","TOTAL","OC4","E","Y50-64","2011","14","","" +"CY","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","F","Y15-29","2011","73","","" +"CY","M","POP","TOTAL","OC4","F","Y30-49","2011","107","","" +"CY","M","POP","TOTAL","OC4","F","Y50-64","2011","105","","" +"CY","M","POP","TOTAL","OC4","F","Y65-84","2011","8","","" +"CY","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","G","Y15-29","2011","778","","" +"CY","M","POP","TOTAL","OC4","G","Y30-49","2011","1004","","" +"CY","M","POP","TOTAL","OC4","G","Y50-64","2011","466","","" +"CY","M","POP","TOTAL","OC4","G","Y65-84","2011","31","","" +"CY","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","H","Y15-29","2011","375","","" +"CY","M","POP","TOTAL","OC4","H","Y30-49","2011","705","","" +"CY","M","POP","TOTAL","OC4","H","Y50-64","2011","236","","" +"CY","M","POP","TOTAL","OC4","H","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","I","Y15-29","2011","193","","" +"CY","M","POP","TOTAL","OC4","I","Y30-49","2011","354","","" +"CY","M","POP","TOTAL","OC4","I","Y50-64","2011","268","","" +"CY","M","POP","TOTAL","OC4","I","Y65-84","2011","29","","" +"CY","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","J","Y15-29","2011","145","","" +"CY","M","POP","TOTAL","OC4","J","Y30-49","2011","196","","" +"CY","M","POP","TOTAL","OC4","J","Y50-64","2011","53","","" +"CY","M","POP","TOTAL","OC4","J","Y65-84","2011","4","","" +"CY","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","K","Y15-29","2011","362","","" +"CY","M","POP","TOTAL","OC4","K","Y30-49","2011","1252","","" +"CY","M","POP","TOTAL","OC4","K","Y50-64","2011","340","","" +"CY","M","POP","TOTAL","OC4","K","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","L","Y15-29","2011","12","","" +"CY","M","POP","TOTAL","OC4","L","Y30-49","2011","18","","" +"CY","M","POP","TOTAL","OC4","L","Y50-64","2011","8","","" +"CY","M","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","M","Y15-29","2011","200","","" +"CY","M","POP","TOTAL","OC4","M","Y30-49","2011","210","","" +"CY","M","POP","TOTAL","OC4","M","Y50-64","2011","34","","" +"CY","M","POP","TOTAL","OC4","M","Y65-84","2011","7","","" +"CY","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","N","Y15-29","2011","125","","" +"CY","M","POP","TOTAL","OC4","N","Y30-49","2011","319","","" +"CY","M","POP","TOTAL","OC4","N","Y50-64","2011","198","","" +"CY","M","POP","TOTAL","OC4","N","Y65-84","2011","21","","" +"CY","M","POP","TOTAL","OC4","N","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","O","Y15-29","2011","300","","" +"CY","M","POP","TOTAL","OC4","O","Y30-49","2011","593","","" +"CY","M","POP","TOTAL","OC4","O","Y50-64","2011","281","","" +"CY","M","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","P","Y15-29","2011","29","","" +"CY","M","POP","TOTAL","OC4","P","Y30-49","2011","51","","" +"CY","M","POP","TOTAL","OC4","P","Y50-64","2011","12","","" +"CY","M","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","Q","Y15-29","2011","31","","" +"CY","M","POP","TOTAL","OC4","Q","Y30-49","2011","71","","" +"CY","M","POP","TOTAL","OC4","Q","Y50-64","2011","61","","" +"CY","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","R","Y15-29","2011","188","","" +"CY","M","POP","TOTAL","OC4","R","Y30-49","2011","403","","" +"CY","M","POP","TOTAL","OC4","R","Y50-64","2011","162","","" +"CY","M","POP","TOTAL","OC4","R","Y65-84","2011","10","","" +"CY","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","S","Y15-29","2011","41","","" +"CY","M","POP","TOTAL","OC4","S","Y30-49","2011","78","","" +"CY","M","POP","TOTAL","OC4","S","Y50-64","2011","37","","" +"CY","M","POP","TOTAL","OC4","S","Y65-84","2011","4","","" +"CY","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","U","Y15-29","2011","15","","" +"CY","M","POP","TOTAL","OC4","U","Y30-49","2011","93","","" +"CY","M","POP","TOTAL","OC4","U","Y50-64","2011","48","","" +"CY","M","POP","TOTAL","OC4","U","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC4","UNK","Y15-29","2011","56","","" +"CY","M","POP","TOTAL","OC4","UNK","Y30-49","2011","89","","" +"CY","M","POP","TOTAL","OC4","UNK","Y50-64","2011","30","","" +"CY","M","POP","TOTAL","OC4","UNK","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","A","Y15-29","2011","129","","" +"CY","M","POP","TOTAL","OC5","A","Y30-49","2011","238","","" +"CY","M","POP","TOTAL","OC5","A","Y50-64","2011","167","","" +"CY","M","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC5","B","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC5","B","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","C","Y15-29","2011","62","","" +"CY","M","POP","TOTAL","OC5","C","Y30-49","2011","132","","" +"CY","M","POP","TOTAL","OC5","C","Y50-64","2011","103","","" +"CY","M","POP","TOTAL","OC5","C","Y65-84","2011","4","","" +"CY","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","D","Y15-29","2011","6","","" +"CY","M","POP","TOTAL","OC5","D","Y30-49","2011","13","","" +"CY","M","POP","TOTAL","OC5","D","Y50-64","2011","5","","" +"CY","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","E","Y15-29","2011","4","","" +"CY","M","POP","TOTAL","OC5","E","Y30-49","2011","11","","" +"CY","M","POP","TOTAL","OC5","E","Y50-64","2011","9","","" +"CY","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","F","Y15-29","2011","22","","" +"CY","M","POP","TOTAL","OC5","F","Y30-49","2011","62","","" +"CY","M","POP","TOTAL","OC5","F","Y50-64","2011","40","","" +"CY","M","POP","TOTAL","OC5","F","Y65-84","2011","4","","" +"CY","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","G","Y15-29","2011","2634","","" +"CY","M","POP","TOTAL","OC5","G","Y30-49","2011","5392","","" +"CY","M","POP","TOTAL","OC5","G","Y50-64","2011","3087","","" +"CY","M","POP","TOTAL","OC5","G","Y65-84","2011","393","","" +"CY","M","POP","TOTAL","OC5","G","Y_GE85","2011","10","","" +"CY","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","H","Y15-29","2011","184","","" +"CY","M","POP","TOTAL","OC5","H","Y30-49","2011","347","","" +"CY","M","POP","TOTAL","OC5","H","Y50-64","2011","136","","" +"CY","M","POP","TOTAL","OC5","H","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","I","Y15-29","2011","2873","","" +"CY","M","POP","TOTAL","OC5","I","Y30-49","2011","4399","","" +"CY","M","POP","TOTAL","OC5","I","Y50-64","2011","1987","","" +"CY","M","POP","TOTAL","OC5","I","Y65-84","2011","116","","" +"CY","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","J","Y15-29","2011","52","","" +"CY","M","POP","TOTAL","OC5","J","Y30-49","2011","62","","" +"CY","M","POP","TOTAL","OC5","J","Y50-64","2011","23","","" +"CY","M","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","K","Y15-29","2011","13","","" +"CY","M","POP","TOTAL","OC5","K","Y30-49","2011","43","","" +"CY","M","POP","TOTAL","OC5","K","Y50-64","2011","24","","" +"CY","M","POP","TOTAL","OC5","K","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC5","K","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","L","Y15-29","2011","8","","" +"CY","M","POP","TOTAL","OC5","L","Y30-49","2011","30","","" +"CY","M","POP","TOTAL","OC5","L","Y50-64","2011","29","","" +"CY","M","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","M","Y15-29","2011","17","","" +"CY","M","POP","TOTAL","OC5","M","Y30-49","2011","30","","" +"CY","M","POP","TOTAL","OC5","M","Y50-64","2011","12","","" +"CY","M","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","N","Y15-29","2011","193","","" +"CY","M","POP","TOTAL","OC5","N","Y30-49","2011","404","","" +"CY","M","POP","TOTAL","OC5","N","Y50-64","2011","291","","" +"CY","M","POP","TOTAL","OC5","N","Y65-84","2011","25","","" +"CY","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","O","Y15-29","2011","834","","" +"CY","M","POP","TOTAL","OC5","O","Y30-49","2011","3292","","" +"CY","M","POP","TOTAL","OC5","O","Y50-64","2011","726","","" +"CY","M","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","P","Y15-29","2011","68","","" +"CY","M","POP","TOTAL","OC5","P","Y30-49","2011","128","","" +"CY","M","POP","TOTAL","OC5","P","Y50-64","2011","127","","" +"CY","M","POP","TOTAL","OC5","P","Y65-84","2011","11","","" +"CY","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","Q","Y15-29","2011","31","","" +"CY","M","POP","TOTAL","OC5","Q","Y30-49","2011","97","","" +"CY","M","POP","TOTAL","OC5","Q","Y50-64","2011","100","","" +"CY","M","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","R","Y15-29","2011","91","","" +"CY","M","POP","TOTAL","OC5","R","Y30-49","2011","166","","" +"CY","M","POP","TOTAL","OC5","R","Y50-64","2011","91","","" +"CY","M","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","S","Y15-29","2011","410","","" +"CY","M","POP","TOTAL","OC5","S","Y30-49","2011","473","","" +"CY","M","POP","TOTAL","OC5","S","Y50-64","2011","231","","" +"CY","M","POP","TOTAL","OC5","S","Y65-84","2011","56","","" +"CY","M","POP","TOTAL","OC5","S","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","T","Y15-29","2011","4","","" +"CY","M","POP","TOTAL","OC5","T","Y30-49","2011","21","","" +"CY","M","POP","TOTAL","OC5","T","Y50-64","2011","5","","" +"CY","M","POP","TOTAL","OC5","T","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","U","Y15-29","2011","39","","" +"CY","M","POP","TOTAL","OC5","U","Y30-49","2011","316","","" +"CY","M","POP","TOTAL","OC5","U","Y50-64","2011","100","","" +"CY","M","POP","TOTAL","OC5","U","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC5","UNK","Y15-29","2011","31","","" +"CY","M","POP","TOTAL","OC5","UNK","Y30-49","2011","74","","" +"CY","M","POP","TOTAL","OC5","UNK","Y50-64","2011","31","","" +"CY","M","POP","TOTAL","OC5","UNK","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","A","Y15-29","2011","272","","" +"CY","M","POP","TOTAL","OC6","A","Y30-49","2011","1301","","" +"CY","M","POP","TOTAL","OC6","A","Y50-64","2011","1753","","" +"CY","M","POP","TOTAL","OC6","A","Y65-84","2011","241","","" +"CY","M","POP","TOTAL","OC6","A","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC6","C","Y30-49","2011","11","","" +"CY","M","POP","TOTAL","OC6","C","Y50-64","2011","18","","" +"CY","M","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","F","Y15-29","2011","5","","" +"CY","M","POP","TOTAL","OC6","F","Y30-49","2011","3","","" +"CY","M","POP","TOTAL","OC6","F","Y50-64","2011","3","","" +"CY","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","G","Y15-29","2011","21","","" +"CY","M","POP","TOTAL","OC6","G","Y30-49","2011","46","","" +"CY","M","POP","TOTAL","OC6","G","Y50-64","2011","32","","" +"CY","M","POP","TOTAL","OC6","G","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"CY","M","POP","TOTAL","OC6","H","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","I","Y15-29","2011","30","","" +"CY","M","POP","TOTAL","OC6","I","Y30-49","2011","78","","" +"CY","M","POP","TOTAL","OC6","I","Y50-64","2011","114","","" +"CY","M","POP","TOTAL","OC6","I","Y65-84","2011","8","","" +"CY","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC6","J","Y30-49","2011","3","","" +"CY","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","L","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"CY","M","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"CY","M","POP","TOTAL","OC6","M","Y50-64","2011","4","","" +"CY","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","N","Y15-29","2011","129","","" +"CY","M","POP","TOTAL","OC6","N","Y30-49","2011","272","","" +"CY","M","POP","TOTAL","OC6","N","Y50-64","2011","201","","" +"CY","M","POP","TOTAL","OC6","N","Y65-84","2011","9","","" +"CY","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC6","O","Y30-49","2011","5","","" +"CY","M","POP","TOTAL","OC6","O","Y50-64","2011","5","","" +"CY","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","P","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"CY","M","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC6","Q","Y30-49","2011","3","","" +"CY","M","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","R","Y15-29","2011","23","","" +"CY","M","POP","TOTAL","OC6","R","Y30-49","2011","40","","" +"CY","M","POP","TOTAL","OC6","R","Y50-64","2011","16","","" +"CY","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC6","S","Y30-49","2011","9","","" +"CY","M","POP","TOTAL","OC6","S","Y50-64","2011","4","","" +"CY","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","T","Y15-29","2011","22","","" +"CY","M","POP","TOTAL","OC6","T","Y30-49","2011","34","","" +"CY","M","POP","TOTAL","OC6","T","Y50-64","2011","7","","" +"CY","M","POP","TOTAL","OC6","T","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","U","Y15-29","2011","4","","" +"CY","M","POP","TOTAL","OC6","U","Y30-49","2011","8","","" +"CY","M","POP","TOTAL","OC6","U","Y50-64","2011","6","","" +"CY","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC6","UNK","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC6","UNK","Y30-49","2011",":","c","" +"CY","M","POP","TOTAL","OC6","UNK","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","A","Y15-29","2011","19","","" +"CY","M","POP","TOTAL","OC7","A","Y30-49","2011","46","","" +"CY","M","POP","TOTAL","OC7","A","Y50-64","2011","40","","" +"CY","M","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","B","Y15-29","2011","15","","" +"CY","M","POP","TOTAL","OC7","B","Y30-49","2011","32","","" +"CY","M","POP","TOTAL","OC7","B","Y50-64","2011","40","","" +"CY","M","POP","TOTAL","OC7","B","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","C","Y15-29","2011","2485","","" +"CY","M","POP","TOTAL","OC7","C","Y30-49","2011","5900","","" +"CY","M","POP","TOTAL","OC7","C","Y50-64","2011","3791","","" +"CY","M","POP","TOTAL","OC7","C","Y65-84","2011","193","","" +"CY","M","POP","TOTAL","OC7","C","Y_GE85","2011","3","","" +"CY","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","D","Y15-29","2011","81","","" +"CY","M","POP","TOTAL","OC7","D","Y30-49","2011","360","","" +"CY","M","POP","TOTAL","OC7","D","Y50-64","2011","71","","" +"CY","M","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","E","Y15-29","2011","33","","" +"CY","M","POP","TOTAL","OC7","E","Y30-49","2011","172","","" +"CY","M","POP","TOTAL","OC7","E","Y50-64","2011","98","","" +"CY","M","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","F","Y15-29","2011","6224","","" +"CY","M","POP","TOTAL","OC7","F","Y30-49","2011","14094","","" +"CY","M","POP","TOTAL","OC7","F","Y50-64","2011","7054","","" +"CY","M","POP","TOTAL","OC7","F","Y65-84","2011","129","","" +"CY","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","G","Y15-29","2011","2097","","" +"CY","M","POP","TOTAL","OC7","G","Y30-49","2011","3583","","" +"CY","M","POP","TOTAL","OC7","G","Y50-64","2011","1976","","" +"CY","M","POP","TOTAL","OC7","G","Y65-84","2011","125","","" +"CY","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","H","Y15-29","2011","61","","" +"CY","M","POP","TOTAL","OC7","H","Y30-49","2011","120","","" +"CY","M","POP","TOTAL","OC7","H","Y50-64","2011","88","","" +"CY","M","POP","TOTAL","OC7","H","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","I","Y15-29","2011","118","","" +"CY","M","POP","TOTAL","OC7","I","Y30-49","2011","228","","" +"CY","M","POP","TOTAL","OC7","I","Y50-64","2011","163","","" +"CY","M","POP","TOTAL","OC7","I","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","J","Y15-29","2011","109","","" +"CY","M","POP","TOTAL","OC7","J","Y30-49","2011","326","","" +"CY","M","POP","TOTAL","OC7","J","Y50-64","2011","166","","" +"CY","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","K","Y15-29","2011","12","","" +"CY","M","POP","TOTAL","OC7","K","Y30-49","2011","29","","" +"CY","M","POP","TOTAL","OC7","K","Y50-64","2011","17","","" +"CY","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","L","Y15-29","2011","6","","" +"CY","M","POP","TOTAL","OC7","L","Y30-49","2011","7","","" +"CY","M","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","M","Y15-29","2011","71","","" +"CY","M","POP","TOTAL","OC7","M","Y30-49","2011","120","","" +"CY","M","POP","TOTAL","OC7","M","Y50-64","2011","50","","" +"CY","M","POP","TOTAL","OC7","M","Y65-84","2011","4","","" +"CY","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","N","Y15-29","2011","39","","" +"CY","M","POP","TOTAL","OC7","N","Y30-49","2011","62","","" +"CY","M","POP","TOTAL","OC7","N","Y50-64","2011","18","","" +"CY","M","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","O","Y15-29","2011","46","","" +"CY","M","POP","TOTAL","OC7","O","Y30-49","2011","486","","" +"CY","M","POP","TOTAL","OC7","O","Y50-64","2011","370","","" +"CY","M","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","P","Y15-29","2011","11","","" +"CY","M","POP","TOTAL","OC7","P","Y30-49","2011","26","","" +"CY","M","POP","TOTAL","OC7","P","Y50-64","2011","27","","" +"CY","M","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","Q","Y15-29","2011","11","","" +"CY","M","POP","TOTAL","OC7","Q","Y30-49","2011","44","","" +"CY","M","POP","TOTAL","OC7","Q","Y50-64","2011","36","","" +"CY","M","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","R","Y15-29","2011","37","","" +"CY","M","POP","TOTAL","OC7","R","Y30-49","2011","108","","" +"CY","M","POP","TOTAL","OC7","R","Y50-64","2011","68","","" +"CY","M","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","S","Y15-29","2011","170","","" +"CY","M","POP","TOTAL","OC7","S","Y30-49","2011","411","","" +"CY","M","POP","TOTAL","OC7","S","Y50-64","2011","182","","" +"CY","M","POP","TOTAL","OC7","S","Y65-84","2011","27","","" +"CY","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","U","Y15-29","2011","60","","" +"CY","M","POP","TOTAL","OC7","U","Y30-49","2011","108","","" +"CY","M","POP","TOTAL","OC7","U","Y50-64","2011","99","","" +"CY","M","POP","TOTAL","OC7","U","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC7","UNK","Y15-29","2011","83","","" +"CY","M","POP","TOTAL","OC7","UNK","Y30-49","2011","145","","" +"CY","M","POP","TOTAL","OC7","UNK","Y50-64","2011","84","","" +"CY","M","POP","TOTAL","OC7","UNK","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","A","Y15-29","2011","34","","" +"CY","M","POP","TOTAL","OC8","A","Y30-49","2011","63","","" +"CY","M","POP","TOTAL","OC8","A","Y50-64","2011","39","","" +"CY","M","POP","TOTAL","OC8","A","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","B","Y15-29","2011","59","","" +"CY","M","POP","TOTAL","OC8","B","Y30-49","2011","114","","" +"CY","M","POP","TOTAL","OC8","B","Y50-64","2011","87","","" +"CY","M","POP","TOTAL","OC8","B","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","C","Y15-29","2011","888","","" +"CY","M","POP","TOTAL","OC8","C","Y30-49","2011","1879","","" +"CY","M","POP","TOTAL","OC8","C","Y50-64","2011","1142","","" +"CY","M","POP","TOTAL","OC8","C","Y65-84","2011","25","","" +"CY","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","D","Y15-29","2011","3","","" +"CY","M","POP","TOTAL","OC8","D","Y30-49","2011","26","","" +"CY","M","POP","TOTAL","OC8","D","Y50-64","2011","14","","" +"CY","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","E","Y15-29","2011","55","","" +"CY","M","POP","TOTAL","OC8","E","Y30-49","2011","188","","" +"CY","M","POP","TOTAL","OC8","E","Y50-64","2011","135","","" +"CY","M","POP","TOTAL","OC8","E","Y65-84","2011","4","","" +"CY","M","POP","TOTAL","OC8","E","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","F","Y15-29","2011","496","","" +"CY","M","POP","TOTAL","OC8","F","Y30-49","2011","1278","","" +"CY","M","POP","TOTAL","OC8","F","Y50-64","2011","693","","" +"CY","M","POP","TOTAL","OC8","F","Y65-84","2011","25","","" +"CY","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","G","Y15-29","2011","1001","","" +"CY","M","POP","TOTAL","OC8","G","Y30-49","2011","1678","","" +"CY","M","POP","TOTAL","OC8","G","Y50-64","2011","909","","" +"CY","M","POP","TOTAL","OC8","G","Y65-84","2011","38","","" +"CY","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","H","Y15-29","2011","693","","" +"CY","M","POP","TOTAL","OC8","H","Y30-49","2011","2512","","" +"CY","M","POP","TOTAL","OC8","H","Y50-64","2011","1982","","" +"CY","M","POP","TOTAL","OC8","H","Y65-84","2011","111","","" +"CY","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","I","Y15-29","2011","292","","" +"CY","M","POP","TOTAL","OC8","I","Y30-49","2011","193","","" +"CY","M","POP","TOTAL","OC8","I","Y50-64","2011","28","","" +"CY","M","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","J","Y15-29","2011","7","","" +"CY","M","POP","TOTAL","OC8","J","Y30-49","2011","9","","" +"CY","M","POP","TOTAL","OC8","J","Y50-64","2011","10","","" +"CY","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","K","Y15-29","2011","11","","" +"CY","M","POP","TOTAL","OC8","K","Y30-49","2011","33","","" +"CY","M","POP","TOTAL","OC8","K","Y50-64","2011","7","","" +"CY","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","OC8","L","Y30-49","2011","5","","" +"CY","M","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","M","Y15-29","2011","21","","" +"CY","M","POP","TOTAL","OC8","M","Y30-49","2011","26","","" +"CY","M","POP","TOTAL","OC8","M","Y50-64","2011","32","","" +"CY","M","POP","TOTAL","OC8","M","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","N","Y15-29","2011","33","","" +"CY","M","POP","TOTAL","OC8","N","Y30-49","2011","86","","" +"CY","M","POP","TOTAL","OC8","N","Y50-64","2011","67","","" +"CY","M","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","O","Y15-29","2011","13","","" +"CY","M","POP","TOTAL","OC8","O","Y30-49","2011","96","","" +"CY","M","POP","TOTAL","OC8","O","Y50-64","2011","83","","" +"CY","M","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","P","Y15-29","2011","4","","" +"CY","M","POP","TOTAL","OC8","P","Y30-49","2011","8","","" +"CY","M","POP","TOTAL","OC8","P","Y50-64","2011","25","","" +"CY","M","POP","TOTAL","OC8","P","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","Q","Y15-29","2011","12","","" +"CY","M","POP","TOTAL","OC8","Q","Y30-49","2011","86","","" +"CY","M","POP","TOTAL","OC8","Q","Y50-64","2011","83","","" +"CY","M","POP","TOTAL","OC8","Q","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","R","Y15-29","2011","21","","" +"CY","M","POP","TOTAL","OC8","R","Y30-49","2011","49","","" +"CY","M","POP","TOTAL","OC8","R","Y50-64","2011","30","","" +"CY","M","POP","TOTAL","OC8","R","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","S","Y15-29","2011","36","","" +"CY","M","POP","TOTAL","OC8","S","Y30-49","2011","127","","" +"CY","M","POP","TOTAL","OC8","S","Y50-64","2011","97","","" +"CY","M","POP","TOTAL","OC8","S","Y65-84","2011","18","","" +"CY","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","T","Y15-29","2011","3","","" +"CY","M","POP","TOTAL","OC8","T","Y30-49","2011","16","","" +"CY","M","POP","TOTAL","OC8","T","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","OC8","T","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","U","Y15-29","2011","6","","" +"CY","M","POP","TOTAL","OC8","U","Y30-49","2011","89","","" +"CY","M","POP","TOTAL","OC8","U","Y50-64","2011","70","","" +"CY","M","POP","TOTAL","OC8","U","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC8","UNK","Y15-29","2011","108","","" +"CY","M","POP","TOTAL","OC8","UNK","Y30-49","2011","230","","" +"CY","M","POP","TOTAL","OC8","UNK","Y50-64","2011","95","","" +"CY","M","POP","TOTAL","OC8","UNK","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","A","Y15-29","2011","1247","","" +"CY","M","POP","TOTAL","OC9","A","Y30-49","2011","1023","","" +"CY","M","POP","TOTAL","OC9","A","Y50-64","2011","206","","" +"CY","M","POP","TOTAL","OC9","A","Y65-84","2011","9","","" +"CY","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","B","Y15-29","2011","9","","" +"CY","M","POP","TOTAL","OC9","B","Y30-49","2011","20","","" +"CY","M","POP","TOTAL","OC9","B","Y50-64","2011","9","","" +"CY","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","C","Y15-29","2011","385","","" +"CY","M","POP","TOTAL","OC9","C","Y30-49","2011","445","","" +"CY","M","POP","TOTAL","OC9","C","Y50-64","2011","181","","" +"CY","M","POP","TOTAL","OC9","C","Y65-84","2011","8","","" +"CY","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","D","Y15-29","2011","17","","" +"CY","M","POP","TOTAL","OC9","D","Y30-49","2011","79","","" +"CY","M","POP","TOTAL","OC9","D","Y50-64","2011","27","","" +"CY","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","E","Y15-29","2011","241","","" +"CY","M","POP","TOTAL","OC9","E","Y30-49","2011","444","","" +"CY","M","POP","TOTAL","OC9","E","Y50-64","2011","288","","" +"CY","M","POP","TOTAL","OC9","E","Y65-84","2011","5","","" +"CY","M","POP","TOTAL","OC9","E","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","F","Y15-29","2011","1968","","" +"CY","M","POP","TOTAL","OC9","F","Y30-49","2011","2219","","" +"CY","M","POP","TOTAL","OC9","F","Y50-64","2011","1022","","" +"CY","M","POP","TOTAL","OC9","F","Y65-84","2011","22","","" +"CY","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","G","Y15-29","2011","742","","" +"CY","M","POP","TOTAL","OC9","G","Y30-49","2011","711","","" +"CY","M","POP","TOTAL","OC9","G","Y50-64","2011","336","","" +"CY","M","POP","TOTAL","OC9","G","Y65-84","2011","40","","" +"CY","M","POP","TOTAL","OC9","G","Y_GE85","2011",":","c","" +"CY","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","H","Y15-29","2011","398","","" +"CY","M","POP","TOTAL","OC9","H","Y30-49","2011","494","","" +"CY","M","POP","TOTAL","OC9","H","Y50-64","2011","277","","" +"CY","M","POP","TOTAL","OC9","H","Y65-84","2011","8","","" +"CY","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","I","Y15-29","2011","746","","" +"CY","M","POP","TOTAL","OC9","I","Y30-49","2011","654","","" +"CY","M","POP","TOTAL","OC9","I","Y50-64","2011","424","","" +"CY","M","POP","TOTAL","OC9","I","Y65-84","2011","28","","" +"CY","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","J","Y15-29","2011","24","","" +"CY","M","POP","TOTAL","OC9","J","Y30-49","2011","24","","" +"CY","M","POP","TOTAL","OC9","J","Y50-64","2011","30","","" +"CY","M","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","K","Y15-29","2011","40","","" +"CY","M","POP","TOTAL","OC9","K","Y30-49","2011","84","","" +"CY","M","POP","TOTAL","OC9","K","Y50-64","2011","32","","" +"CY","M","POP","TOTAL","OC9","K","Y65-84","2011","4","","" +"CY","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","L","Y15-29","2011","7","","" +"CY","M","POP","TOTAL","OC9","L","Y30-49","2011","16","","" +"CY","M","POP","TOTAL","OC9","L","Y50-64","2011","8","","" +"CY","M","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","M","Y15-29","2011","69","","" +"CY","M","POP","TOTAL","OC9","M","Y30-49","2011","131","","" +"CY","M","POP","TOTAL","OC9","M","Y50-64","2011","65","","" +"CY","M","POP","TOTAL","OC9","M","Y65-84","2011","9","","" +"CY","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","N","Y15-29","2011","232","","" +"CY","M","POP","TOTAL","OC9","N","Y30-49","2011","300","","" +"CY","M","POP","TOTAL","OC9","N","Y50-64","2011","175","","" +"CY","M","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","O","Y15-29","2011","156","","" +"CY","M","POP","TOTAL","OC9","O","Y30-49","2011","651","","" +"CY","M","POP","TOTAL","OC9","O","Y50-64","2011","355","","" +"CY","M","POP","TOTAL","OC9","O","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","P","Y15-29","2011","8","","" +"CY","M","POP","TOTAL","OC9","P","Y30-49","2011","24","","" +"CY","M","POP","TOTAL","OC9","P","Y50-64","2011","13","","" +"CY","M","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","Q","Y15-29","2011","16","","" +"CY","M","POP","TOTAL","OC9","Q","Y30-49","2011","119","","" +"CY","M","POP","TOTAL","OC9","Q","Y50-64","2011","109","","" +"CY","M","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","R","Y15-29","2011","104","","" +"CY","M","POP","TOTAL","OC9","R","Y30-49","2011","139","","" +"CY","M","POP","TOTAL","OC9","R","Y50-64","2011","84","","" +"CY","M","POP","TOTAL","OC9","R","Y65-84","2011","3","","" +"CY","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","S","Y15-29","2011","22","","" +"CY","M","POP","TOTAL","OC9","S","Y30-49","2011","70","","" +"CY","M","POP","TOTAL","OC9","S","Y50-64","2011","41","","" +"CY","M","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","T","Y15-29","2011","174","","" +"CY","M","POP","TOTAL","OC9","T","Y30-49","2011","429","","" +"CY","M","POP","TOTAL","OC9","T","Y50-64","2011","48","","" +"CY","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","U","Y15-29","2011","15","","" +"CY","M","POP","TOTAL","OC9","U","Y30-49","2011","52","","" +"CY","M","POP","TOTAL","OC9","U","Y50-64","2011","32","","" +"CY","M","POP","TOTAL","OC9","U","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","OC9","UNK","Y15-29","2011","55","","" +"CY","M","POP","TOTAL","OC9","UNK","Y30-49","2011","59","","" +"CY","M","POP","TOTAL","OC9","UNK","Y50-64","2011","30","","" +"CY","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","A","Y15-29","2011","3","","" +"CY","M","POP","TOTAL","UNK","A","Y30-49","2011","5","","" +"CY","M","POP","TOTAL","UNK","A","Y50-64","2011","4","","" +"CY","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","B","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","UNK","B","Y30-49","2011",":","c","" +"CY","M","POP","TOTAL","UNK","B","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","C","Y15-29","2011","27","","" +"CY","M","POP","TOTAL","UNK","C","Y30-49","2011","53","","" +"CY","M","POP","TOTAL","UNK","C","Y50-64","2011","31","","" +"CY","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","D","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","UNK","D","Y30-49","2011","9","","" +"CY","M","POP","TOTAL","UNK","D","Y50-64","2011","3","","" +"CY","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","E","Y15-29","2011","3","","" +"CY","M","POP","TOTAL","UNK","E","Y30-49","2011","6","","" +"CY","M","POP","TOTAL","UNK","E","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","F","Y15-29","2011","9","","" +"CY","M","POP","TOTAL","UNK","F","Y30-49","2011","34","","" +"CY","M","POP","TOTAL","UNK","F","Y50-64","2011","8","","" +"CY","M","POP","TOTAL","UNK","F","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","G","Y15-29","2011","29","","" +"CY","M","POP","TOTAL","UNK","G","Y30-49","2011","76","","" +"CY","M","POP","TOTAL","UNK","G","Y50-64","2011","28","","" +"CY","M","POP","TOTAL","UNK","G","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","H","Y15-29","2011","15","","" +"CY","M","POP","TOTAL","UNK","H","Y30-49","2011","51","","" +"CY","M","POP","TOTAL","UNK","H","Y50-64","2011","20","","" +"CY","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","I","Y15-29","2011","29","","" +"CY","M","POP","TOTAL","UNK","I","Y30-49","2011","66","","" +"CY","M","POP","TOTAL","UNK","I","Y50-64","2011","48","","" +"CY","M","POP","TOTAL","UNK","I","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","J","Y15-29","2011","7","","" +"CY","M","POP","TOTAL","UNK","J","Y30-49","2011","29","","" +"CY","M","POP","TOTAL","UNK","J","Y50-64","2011","12","","" +"CY","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","K","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","UNK","K","Y30-49","2011","10","","" +"CY","M","POP","TOTAL","UNK","K","Y50-64","2011","8","","" +"CY","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","L","Y15-29","2011",":","c","" +"CY","M","POP","TOTAL","UNK","L","Y30-49","2011",":","c","" +"CY","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","M","Y15-29","2011","15","","" +"CY","M","POP","TOTAL","UNK","M","Y30-49","2011","24","","" +"CY","M","POP","TOTAL","UNK","M","Y50-64","2011","7","","" +"CY","M","POP","TOTAL","UNK","M","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","N","Y15-29","2011","7","","" +"CY","M","POP","TOTAL","UNK","N","Y30-49","2011","4","","" +"CY","M","POP","TOTAL","UNK","N","Y50-64","2011","4","","" +"CY","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","O","Y15-29","2011","13","","" +"CY","M","POP","TOTAL","UNK","O","Y30-49","2011","72","","" +"CY","M","POP","TOTAL","UNK","O","Y50-64","2011","39","","" +"CY","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","P","Y15-29","2011","4","","" +"CY","M","POP","TOTAL","UNK","P","Y30-49","2011","5","","" +"CY","M","POP","TOTAL","UNK","P","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","Q","Y15-29","2011","3","","" +"CY","M","POP","TOTAL","UNK","Q","Y30-49","2011","7","","" +"CY","M","POP","TOTAL","UNK","Q","Y50-64","2011",":","c","" +"CY","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","R","Y15-29","2011","4","","" +"CY","M","POP","TOTAL","UNK","R","Y30-49","2011","8","","" +"CY","M","POP","TOTAL","UNK","R","Y50-64","2011","3","","" +"CY","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","S","Y15-29","2011","4","","" +"CY","M","POP","TOTAL","UNK","S","Y30-49","2011","5","","" +"CY","M","POP","TOTAL","UNK","S","Y50-64","2011","6","","" +"CY","M","POP","TOTAL","UNK","S","Y65-84","2011",":","c","" +"CY","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"CY","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"CY","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"CY","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","U","Y15-29","2011","13","","" +"CY","M","POP","TOTAL","UNK","U","Y30-49","2011","62","","" +"CY","M","POP","TOTAL","UNK","U","Y50-64","2011","30","","" +"CY","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"CY","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"CY","M","POP","TOTAL","UNK","UNK","Y15-29","2011","275","","" +"CY","M","POP","TOTAL","UNK","UNK","Y30-49","2011","839","","" +"CY","M","POP","TOTAL","UNK","UNK","Y50-64","2011","303","","" +"CY","M","POP","TOTAL","UNK","UNK","Y65-84","2011","31","","" +"CY","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"CY","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","NAP","Y15-29","2011","527814","","" +"CZ","F","POP","TOTAL","NAP","NAP","Y30-49","2011","304312","","" +"CZ","F","POP","TOTAL","NAP","NAP","Y50-64","2011","520960","","" +"CZ","F","POP","TOTAL","NAP","NAP","Y65-84","2011","830883","","" +"CZ","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","111330","","" +"CZ","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","724979","","" +"CZ","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","A","Y30-49","2011","2","","" +"CZ","F","POP","TOTAL","OC0","A","Y50-64","2011","2","","" +"CZ","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","C","Y15-29","2011","1","","" +"CZ","F","POP","TOTAL","OC0","C","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC0","C","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","H","Y15-29","2011","2","","" +"CZ","F","POP","TOTAL","OC0","H","Y30-49","2011","13","","" +"CZ","F","POP","TOTAL","OC0","H","Y50-64","2011","2","","" +"CZ","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","I","Y30-49","2011","3","","" +"CZ","F","POP","TOTAL","OC0","I","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","J","Y15-29","2011","2","","" +"CZ","F","POP","TOTAL","OC0","J","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","K","Y15-29","2011","2","","" +"CZ","F","POP","TOTAL","OC0","K","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC0","K","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","M","Y15-29","2011","3","","" +"CZ","F","POP","TOTAL","OC0","M","Y30-49","2011","3","","" +"CZ","F","POP","TOTAL","OC0","M","Y50-64","2011","5","","" +"CZ","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","N","Y15-29","2011","7","","" +"CZ","F","POP","TOTAL","OC0","N","Y30-49","2011","19","","" +"CZ","F","POP","TOTAL","OC0","N","Y50-64","2011","12","","" +"CZ","F","POP","TOTAL","OC0","N","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","O","Y15-29","2011","701","","" +"CZ","F","POP","TOTAL","OC0","O","Y30-49","2011","1110","","" +"CZ","F","POP","TOTAL","OC0","O","Y50-64","2011","86","","" +"CZ","F","POP","TOTAL","OC0","O","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC0","O","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","P","Y15-29","2011","1","","" +"CZ","F","POP","TOTAL","OC0","P","Y30-49","2011","4","","" +"CZ","F","POP","TOTAL","OC0","P","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","Q","Y15-29","2011","24","","" +"CZ","F","POP","TOTAL","OC0","Q","Y30-49","2011","20","","" +"CZ","F","POP","TOTAL","OC0","Q","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","R","Y30-49","2011","2","","" +"CZ","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","S","Y30-49","2011","2","","" +"CZ","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC0","UNK","Y15-29","2011","47","","" +"CZ","F","POP","TOTAL","OC0","UNK","Y30-49","2011","57","","" +"CZ","F","POP","TOTAL","OC0","UNK","Y50-64","2011","11","","" +"CZ","F","POP","TOTAL","OC0","UNK","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","A","Y15-29","2011","81","","" +"CZ","F","POP","TOTAL","OC1","A","Y30-49","2011","488","","" +"CZ","F","POP","TOTAL","OC1","A","Y50-64","2011","353","","" +"CZ","F","POP","TOTAL","OC1","A","Y65-84","2011","21","","" +"CZ","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","B","Y15-29","2011","12","","" +"CZ","F","POP","TOTAL","OC1","B","Y30-49","2011","106","","" +"CZ","F","POP","TOTAL","OC1","B","Y50-64","2011","67","","" +"CZ","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","C","Y15-29","2011","1606","","" +"CZ","F","POP","TOTAL","OC1","C","Y30-49","2011","8451","","" +"CZ","F","POP","TOTAL","OC1","C","Y50-64","2011","2801","","" +"CZ","F","POP","TOTAL","OC1","C","Y65-84","2011","71","","" +"CZ","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","D","Y15-29","2011","68","","" +"CZ","F","POP","TOTAL","OC1","D","Y30-49","2011","321","","" +"CZ","F","POP","TOTAL","OC1","D","Y50-64","2011","136","","" +"CZ","F","POP","TOTAL","OC1","D","Y65-84","2011","3","","" +"CZ","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","E","Y15-29","2011","46","","" +"CZ","F","POP","TOTAL","OC1","E","Y30-49","2011","331","","" +"CZ","F","POP","TOTAL","OC1","E","Y50-64","2011","152","","" +"CZ","F","POP","TOTAL","OC1","E","Y65-84","2011","5","","" +"CZ","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","F","Y15-29","2011","302","","" +"CZ","F","POP","TOTAL","OC1","F","Y30-49","2011","1408","","" +"CZ","F","POP","TOTAL","OC1","F","Y50-64","2011","540","","" +"CZ","F","POP","TOTAL","OC1","F","Y65-84","2011","19","","" +"CZ","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","G","Y15-29","2011","2632","","" +"CZ","F","POP","TOTAL","OC1","G","Y30-49","2011","10726","","" +"CZ","F","POP","TOTAL","OC1","G","Y50-64","2011","3140","","" +"CZ","F","POP","TOTAL","OC1","G","Y65-84","2011","83","","" +"CZ","F","POP","TOTAL","OC1","G","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","H","Y15-29","2011","443","","" +"CZ","F","POP","TOTAL","OC1","H","Y30-49","2011","3119","","" +"CZ","F","POP","TOTAL","OC1","H","Y50-64","2011","1189","","" +"CZ","F","POP","TOTAL","OC1","H","Y65-84","2011","12","","" +"CZ","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","I","Y15-29","2011","1082","","" +"CZ","F","POP","TOTAL","OC1","I","Y30-49","2011","3342","","" +"CZ","F","POP","TOTAL","OC1","I","Y50-64","2011","1512","","" +"CZ","F","POP","TOTAL","OC1","I","Y65-84","2011","71","","" +"CZ","F","POP","TOTAL","OC1","I","Y_GE85","2011","2","","" +"CZ","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","J","Y15-29","2011","585","","" +"CZ","F","POP","TOTAL","OC1","J","Y30-49","2011","1890","","" +"CZ","F","POP","TOTAL","OC1","J","Y50-64","2011","394","","" +"CZ","F","POP","TOTAL","OC1","J","Y65-84","2011","15","","" +"CZ","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","K","Y15-29","2011","643","","" +"CZ","F","POP","TOTAL","OC1","K","Y30-49","2011","2867","","" +"CZ","F","POP","TOTAL","OC1","K","Y50-64","2011","814","","" +"CZ","F","POP","TOTAL","OC1","K","Y65-84","2011","10","","" +"CZ","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","L","Y15-29","2011","198","","" +"CZ","F","POP","TOTAL","OC1","L","Y30-49","2011","960","","" +"CZ","F","POP","TOTAL","OC1","L","Y50-64","2011","429","","" +"CZ","F","POP","TOTAL","OC1","L","Y65-84","2011","44","","" +"CZ","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","M","Y15-29","2011","787","","" +"CZ","F","POP","TOTAL","OC1","M","Y30-49","2011","2692","","" +"CZ","F","POP","TOTAL","OC1","M","Y50-64","2011","727","","" +"CZ","F","POP","TOTAL","OC1","M","Y65-84","2011","28","","" +"CZ","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","N","Y15-29","2011","610","","" +"CZ","F","POP","TOTAL","OC1","N","Y30-49","2011","2090","","" +"CZ","F","POP","TOTAL","OC1","N","Y50-64","2011","745","","" +"CZ","F","POP","TOTAL","OC1","N","Y65-84","2011","24","","" +"CZ","F","POP","TOTAL","OC1","N","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","O","Y15-29","2011","493","","" +"CZ","F","POP","TOTAL","OC1","O","Y30-49","2011","4128","","" +"CZ","F","POP","TOTAL","OC1","O","Y50-64","2011","2893","","" +"CZ","F","POP","TOTAL","OC1","O","Y65-84","2011","63","","" +"CZ","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","P","Y15-29","2011","454","","" +"CZ","F","POP","TOTAL","OC1","P","Y30-49","2011","7155","","" +"CZ","F","POP","TOTAL","OC1","P","Y50-64","2011","6403","","" +"CZ","F","POP","TOTAL","OC1","P","Y65-84","2011","147","","" +"CZ","F","POP","TOTAL","OC1","P","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","Q","Y15-29","2011","415","","" +"CZ","F","POP","TOTAL","OC1","Q","Y30-49","2011","3610","","" +"CZ","F","POP","TOTAL","OC1","Q","Y50-64","2011","2458","","" +"CZ","F","POP","TOTAL","OC1","Q","Y65-84","2011","74","","" +"CZ","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","R","Y15-29","2011","314","","" +"CZ","F","POP","TOTAL","OC1","R","Y30-49","2011","1245","","" +"CZ","F","POP","TOTAL","OC1","R","Y50-64","2011","638","","" +"CZ","F","POP","TOTAL","OC1","R","Y65-84","2011","31","","" +"CZ","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","S","Y15-29","2011","284","","" +"CZ","F","POP","TOTAL","OC1","S","Y30-49","2011","1166","","" +"CZ","F","POP","TOTAL","OC1","S","Y50-64","2011","473","","" +"CZ","F","POP","TOTAL","OC1","S","Y65-84","2011","31","","" +"CZ","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","T","Y15-29","2011","8","","" +"CZ","F","POP","TOTAL","OC1","T","Y30-49","2011","20","","" +"CZ","F","POP","TOTAL","OC1","T","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC1","T","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","U","Y15-29","2011","8","","" +"CZ","F","POP","TOTAL","OC1","U","Y30-49","2011","33","","" +"CZ","F","POP","TOTAL","OC1","U","Y50-64","2011","9","","" +"CZ","F","POP","TOTAL","OC1","U","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC1","UNK","Y15-29","2011","401","","" +"CZ","F","POP","TOTAL","OC1","UNK","Y30-49","2011","1402","","" +"CZ","F","POP","TOTAL","OC1","UNK","Y50-64","2011","684","","" +"CZ","F","POP","TOTAL","OC1","UNK","Y65-84","2011","46","","" +"CZ","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","A","Y15-29","2011","141","","" +"CZ","F","POP","TOTAL","OC2","A","Y30-49","2011","469","","" +"CZ","F","POP","TOTAL","OC2","A","Y50-64","2011","261","","" +"CZ","F","POP","TOTAL","OC2","A","Y65-84","2011","19","","" +"CZ","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","B","Y15-29","2011","55","","" +"CZ","F","POP","TOTAL","OC2","B","Y30-49","2011","169","","" +"CZ","F","POP","TOTAL","OC2","B","Y50-64","2011","97","","" +"CZ","F","POP","TOTAL","OC2","B","Y65-84","2011","5","","" +"CZ","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","C","Y15-29","2011","3627","","" +"CZ","F","POP","TOTAL","OC2","C","Y30-49","2011","8803","","" +"CZ","F","POP","TOTAL","OC2","C","Y50-64","2011","2473","","" +"CZ","F","POP","TOTAL","OC2","C","Y65-84","2011","68","","" +"CZ","F","POP","TOTAL","OC2","C","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","D","Y15-29","2011","236","","" +"CZ","F","POP","TOTAL","OC2","D","Y30-49","2011","677","","" +"CZ","F","POP","TOTAL","OC2","D","Y50-64","2011","268","","" +"CZ","F","POP","TOTAL","OC2","D","Y65-84","2011","3","","" +"CZ","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","E","Y15-29","2011","129","","" +"CZ","F","POP","TOTAL","OC2","E","Y30-49","2011","377","","" +"CZ","F","POP","TOTAL","OC2","E","Y50-64","2011","176","","" +"CZ","F","POP","TOTAL","OC2","E","Y65-84","2011","7","","" +"CZ","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","F","Y15-29","2011","1068","","" +"CZ","F","POP","TOTAL","OC2","F","Y30-49","2011","2351","","" +"CZ","F","POP","TOTAL","OC2","F","Y50-64","2011","1036","","" +"CZ","F","POP","TOTAL","OC2","F","Y65-84","2011","136","","" +"CZ","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","G","Y15-29","2011","2346","","" +"CZ","F","POP","TOTAL","OC2","G","Y30-49","2011","4690","","" +"CZ","F","POP","TOTAL","OC2","G","Y50-64","2011","1100","","" +"CZ","F","POP","TOTAL","OC2","G","Y65-84","2011","40","","" +"CZ","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","H","Y15-29","2011","483","","" +"CZ","F","POP","TOTAL","OC2","H","Y30-49","2011","1428","","" +"CZ","F","POP","TOTAL","OC2","H","Y50-64","2011","606","","" +"CZ","F","POP","TOTAL","OC2","H","Y65-84","2011","9","","" +"CZ","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","I","Y15-29","2011","220","","" +"CZ","F","POP","TOTAL","OC2","I","Y30-49","2011","391","","" +"CZ","F","POP","TOTAL","OC2","I","Y50-64","2011","122","","" +"CZ","F","POP","TOTAL","OC2","I","Y65-84","2011","9","","" +"CZ","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","J","Y15-29","2011","4532","","" +"CZ","F","POP","TOTAL","OC2","J","Y30-49","2011","7862","","" +"CZ","F","POP","TOTAL","OC2","J","Y50-64","2011","2013","","" +"CZ","F","POP","TOTAL","OC2","J","Y65-84","2011","146","","" +"CZ","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","K","Y15-29","2011","6517","","" +"CZ","F","POP","TOTAL","OC2","K","Y30-49","2011","14124","","" +"CZ","F","POP","TOTAL","OC2","K","Y50-64","2011","4467","","" +"CZ","F","POP","TOTAL","OC2","K","Y65-84","2011","173","","" +"CZ","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","L","Y15-29","2011","215","","" +"CZ","F","POP","TOTAL","OC2","L","Y30-49","2011","516","","" +"CZ","F","POP","TOTAL","OC2","L","Y50-64","2011","185","","" +"CZ","F","POP","TOTAL","OC2","L","Y65-84","2011","18","","" +"CZ","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","M","Y15-29","2011","10888","","" +"CZ","F","POP","TOTAL","OC2","M","Y30-49","2011","18474","","" +"CZ","F","POP","TOTAL","OC2","M","Y50-64","2011","6467","","" +"CZ","F","POP","TOTAL","OC2","M","Y65-84","2011","833","","" +"CZ","F","POP","TOTAL","OC2","M","Y_GE85","2011","8","","" +"CZ","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","N","Y15-29","2011","1772","","" +"CZ","F","POP","TOTAL","OC2","N","Y30-49","2011","2253","","" +"CZ","F","POP","TOTAL","OC2","N","Y50-64","2011","500","","" +"CZ","F","POP","TOTAL","OC2","N","Y65-84","2011","39","","" +"CZ","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","O","Y15-29","2011","3428","","" +"CZ","F","POP","TOTAL","OC2","O","Y30-49","2011","11445","","" +"CZ","F","POP","TOTAL","OC2","O","Y50-64","2011","5926","","" +"CZ","F","POP","TOTAL","OC2","O","Y65-84","2011","241","","" +"CZ","F","POP","TOTAL","OC2","O","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","P","Y15-29","2011","20496","","" +"CZ","F","POP","TOTAL","OC2","P","Y30-49","2011","79099","","" +"CZ","F","POP","TOTAL","OC2","P","Y50-64","2011","41450","","" +"CZ","F","POP","TOTAL","OC2","P","Y65-84","2011","3141","","" +"CZ","F","POP","TOTAL","OC2","P","Y_GE85","2011","19","","" +"CZ","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","Q","Y15-29","2011","21920","","" +"CZ","F","POP","TOTAL","OC2","Q","Y30-49","2011","69729","","" +"CZ","F","POP","TOTAL","OC2","Q","Y50-64","2011","35323","","" +"CZ","F","POP","TOTAL","OC2","Q","Y65-84","2011","3451","","" +"CZ","F","POP","TOTAL","OC2","Q","Y_GE85","2011","5","","" +"CZ","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","R","Y15-29","2011","2397","","" +"CZ","F","POP","TOTAL","OC2","R","Y30-49","2011","6028","","" +"CZ","F","POP","TOTAL","OC2","R","Y50-64","2011","3383","","" +"CZ","F","POP","TOTAL","OC2","R","Y65-84","2011","460","","" +"CZ","F","POP","TOTAL","OC2","R","Y_GE85","2011","16","","" +"CZ","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","S","Y15-29","2011","768","","" +"CZ","F","POP","TOTAL","OC2","S","Y30-49","2011","1671","","" +"CZ","F","POP","TOTAL","OC2","S","Y50-64","2011","552","","" +"CZ","F","POP","TOTAL","OC2","S","Y65-84","2011","62","","" +"CZ","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","T","Y15-29","2011","44","","" +"CZ","F","POP","TOTAL","OC2","T","Y30-49","2011","54","","" +"CZ","F","POP","TOTAL","OC2","T","Y50-64","2011","23","","" +"CZ","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","U","Y15-29","2011","60","","" +"CZ","F","POP","TOTAL","OC2","U","Y30-49","2011","106","","" +"CZ","F","POP","TOTAL","OC2","U","Y50-64","2011","20","","" +"CZ","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC2","UNK","Y15-29","2011","2602","","" +"CZ","F","POP","TOTAL","OC2","UNK","Y30-49","2011","7951","","" +"CZ","F","POP","TOTAL","OC2","UNK","Y50-64","2011","4896","","" +"CZ","F","POP","TOTAL","OC2","UNK","Y65-84","2011","893","","" +"CZ","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","10","","" +"CZ","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","A","Y15-29","2011","870","","" +"CZ","F","POP","TOTAL","OC3","A","Y30-49","2011","5020","","" +"CZ","F","POP","TOTAL","OC3","A","Y50-64","2011","4073","","" +"CZ","F","POP","TOTAL","OC3","A","Y65-84","2011","139","","" +"CZ","F","POP","TOTAL","OC3","A","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","B","Y15-29","2011","135","","" +"CZ","F","POP","TOTAL","OC3","B","Y30-49","2011","937","","" +"CZ","F","POP","TOTAL","OC3","B","Y50-64","2011","593","","" +"CZ","F","POP","TOTAL","OC3","B","Y65-84","2011","8","","" +"CZ","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","C","Y15-29","2011","16682","","" +"CZ","F","POP","TOTAL","OC3","C","Y30-49","2011","53479","","" +"CZ","F","POP","TOTAL","OC3","C","Y50-64","2011","20622","","" +"CZ","F","POP","TOTAL","OC3","C","Y65-84","2011","352","","" +"CZ","F","POP","TOTAL","OC3","C","Y_GE85","2011","4","","" +"CZ","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","D","Y15-29","2011","639","","" +"CZ","F","POP","TOTAL","OC3","D","Y30-49","2011","2618","","" +"CZ","F","POP","TOTAL","OC3","D","Y50-64","2011","1428","","" +"CZ","F","POP","TOTAL","OC3","D","Y65-84","2011","18","","" +"CZ","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","E","Y15-29","2011","464","","" +"CZ","F","POP","TOTAL","OC3","E","Y30-49","2011","2378","","" +"CZ","F","POP","TOTAL","OC3","E","Y50-64","2011","1248","","" +"CZ","F","POP","TOTAL","OC3","E","Y65-84","2011","33","","" +"CZ","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","F","Y15-29","2011","2788","","" +"CZ","F","POP","TOTAL","OC3","F","Y30-49","2011","9951","","" +"CZ","F","POP","TOTAL","OC3","F","Y50-64","2011","4579","","" +"CZ","F","POP","TOTAL","OC3","F","Y65-84","2011","190","","" +"CZ","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","G","Y15-29","2011","9118","","" +"CZ","F","POP","TOTAL","OC3","G","Y30-49","2011","27084","","" +"CZ","F","POP","TOTAL","OC3","G","Y50-64","2011","9544","","" +"CZ","F","POP","TOTAL","OC3","G","Y65-84","2011","465","","" +"CZ","F","POP","TOTAL","OC3","G","Y_GE85","2011","3","","" +"CZ","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","H","Y15-29","2011","2403","","" +"CZ","F","POP","TOTAL","OC3","H","Y30-49","2011","7761","","" +"CZ","F","POP","TOTAL","OC3","H","Y50-64","2011","3310","","" +"CZ","F","POP","TOTAL","OC3","H","Y65-84","2011","58","","" +"CZ","F","POP","TOTAL","OC3","H","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","I","Y15-29","2011","717","","" +"CZ","F","POP","TOTAL","OC3","I","Y30-49","2011","2049","","" +"CZ","F","POP","TOTAL","OC3","I","Y50-64","2011","952","","" +"CZ","F","POP","TOTAL","OC3","I","Y65-84","2011","46","","" +"CZ","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","J","Y15-29","2011","3498","","" +"CZ","F","POP","TOTAL","OC3","J","Y30-49","2011","6841","","" +"CZ","F","POP","TOTAL","OC3","J","Y50-64","2011","2130","","" +"CZ","F","POP","TOTAL","OC3","J","Y65-84","2011","90","","" +"CZ","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","K","Y15-29","2011","6762","","" +"CZ","F","POP","TOTAL","OC3","K","Y30-49","2011","16412","","" +"CZ","F","POP","TOTAL","OC3","K","Y50-64","2011","7214","","" +"CZ","F","POP","TOTAL","OC3","K","Y65-84","2011","295","","" +"CZ","F","POP","TOTAL","OC3","K","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","L","Y15-29","2011","1923","","" +"CZ","F","POP","TOTAL","OC3","L","Y30-49","2011","6325","","" +"CZ","F","POP","TOTAL","OC3","L","Y50-64","2011","2647","","" +"CZ","F","POP","TOTAL","OC3","L","Y65-84","2011","156","","" +"CZ","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","M","Y15-29","2011","7941","","" +"CZ","F","POP","TOTAL","OC3","M","Y30-49","2011","22921","","" +"CZ","F","POP","TOTAL","OC3","M","Y50-64","2011","11154","","" +"CZ","F","POP","TOTAL","OC3","M","Y65-84","2011","1177","","" +"CZ","F","POP","TOTAL","OC3","M","Y_GE85","2011","7","","" +"CZ","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","N","Y15-29","2011","3914","","" +"CZ","F","POP","TOTAL","OC3","N","Y30-49","2011","6906","","" +"CZ","F","POP","TOTAL","OC3","N","Y50-64","2011","2966","","" +"CZ","F","POP","TOTAL","OC3","N","Y65-84","2011","156","","" +"CZ","F","POP","TOTAL","OC3","N","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","O","Y15-29","2011","9303","","" +"CZ","F","POP","TOTAL","OC3","O","Y30-49","2011","42983","","" +"CZ","F","POP","TOTAL","OC3","O","Y50-64","2011","24242","","" +"CZ","F","POP","TOTAL","OC3","O","Y65-84","2011","425","","" +"CZ","F","POP","TOTAL","OC3","O","Y_GE85","2011","2","","" +"CZ","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","P","Y15-29","2011","1238","","" +"CZ","F","POP","TOTAL","OC3","P","Y30-49","2011","6877","","" +"CZ","F","POP","TOTAL","OC3","P","Y50-64","2011","5002","","" +"CZ","F","POP","TOTAL","OC3","P","Y65-84","2011","349","","" +"CZ","F","POP","TOTAL","OC3","P","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","Q","Y15-29","2011","10921","","" +"CZ","F","POP","TOTAL","OC3","Q","Y30-49","2011","27681","","" +"CZ","F","POP","TOTAL","OC3","Q","Y50-64","2011","14959","","" +"CZ","F","POP","TOTAL","OC3","Q","Y65-84","2011","761","","" +"CZ","F","POP","TOTAL","OC3","Q","Y_GE85","2011","4","","" +"CZ","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","R","Y15-29","2011","1424","","" +"CZ","F","POP","TOTAL","OC3","R","Y30-49","2011","3481","","" +"CZ","F","POP","TOTAL","OC3","R","Y50-64","2011","1636","","" +"CZ","F","POP","TOTAL","OC3","R","Y65-84","2011","182","","" +"CZ","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","S","Y15-29","2011","945","","" +"CZ","F","POP","TOTAL","OC3","S","Y30-49","2011","3055","","" +"CZ","F","POP","TOTAL","OC3","S","Y50-64","2011","1572","","" +"CZ","F","POP","TOTAL","OC3","S","Y65-84","2011","132","","" +"CZ","F","POP","TOTAL","OC3","S","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","T","Y15-29","2011","23","","" +"CZ","F","POP","TOTAL","OC3","T","Y30-49","2011","83","","" +"CZ","F","POP","TOTAL","OC3","T","Y50-64","2011","43","","" +"CZ","F","POP","TOTAL","OC3","T","Y65-84","2011","5","","" +"CZ","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","U","Y15-29","2011","45","","" +"CZ","F","POP","TOTAL","OC3","U","Y30-49","2011","108","","" +"CZ","F","POP","TOTAL","OC3","U","Y50-64","2011","30","","" +"CZ","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC3","UNK","Y15-29","2011","3436","","" +"CZ","F","POP","TOTAL","OC3","UNK","Y30-49","2011","8886","","" +"CZ","F","POP","TOTAL","OC3","UNK","Y50-64","2011","4793","","" +"CZ","F","POP","TOTAL","OC3","UNK","Y65-84","2011","435","","" +"CZ","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","9","","" +"CZ","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","A","Y15-29","2011","237","","" +"CZ","F","POP","TOTAL","OC4","A","Y30-49","2011","933","","" +"CZ","F","POP","TOTAL","OC4","A","Y50-64","2011","553","","" +"CZ","F","POP","TOTAL","OC4","A","Y65-84","2011","25","","" +"CZ","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","B","Y15-29","2011","75","","" +"CZ","F","POP","TOTAL","OC4","B","Y30-49","2011","415","","" +"CZ","F","POP","TOTAL","OC4","B","Y50-64","2011","267","","" +"CZ","F","POP","TOTAL","OC4","B","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","C","Y15-29","2011","5592","","" +"CZ","F","POP","TOTAL","OC4","C","Y30-49","2011","15620","","" +"CZ","F","POP","TOTAL","OC4","C","Y50-64","2011","5011","","" +"CZ","F","POP","TOTAL","OC4","C","Y65-84","2011","91","","" +"CZ","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","D","Y15-29","2011","351","","" +"CZ","F","POP","TOTAL","OC4","D","Y30-49","2011","695","","" +"CZ","F","POP","TOTAL","OC4","D","Y50-64","2011","305","","" +"CZ","F","POP","TOTAL","OC4","D","Y65-84","2011","4","","" +"CZ","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","E","Y15-29","2011","236","","" +"CZ","F","POP","TOTAL","OC4","E","Y30-49","2011","928","","" +"CZ","F","POP","TOTAL","OC4","E","Y50-64","2011","394","","" +"CZ","F","POP","TOTAL","OC4","E","Y65-84","2011","13","","" +"CZ","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","F","Y15-29","2011","1122","","" +"CZ","F","POP","TOTAL","OC4","F","Y30-49","2011","3345","","" +"CZ","F","POP","TOTAL","OC4","F","Y50-64","2011","1140","","" +"CZ","F","POP","TOTAL","OC4","F","Y65-84","2011","45","","" +"CZ","F","POP","TOTAL","OC4","F","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","G","Y15-29","2011","4363","","" +"CZ","F","POP","TOTAL","OC4","G","Y30-49","2011","10243","","" +"CZ","F","POP","TOTAL","OC4","G","Y50-64","2011","2651","","" +"CZ","F","POP","TOTAL","OC4","G","Y65-84","2011","85","","" +"CZ","F","POP","TOTAL","OC4","G","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","H","Y15-29","2011","5407","","" +"CZ","F","POP","TOTAL","OC4","H","Y30-49","2011","21235","","" +"CZ","F","POP","TOTAL","OC4","H","Y50-64","2011","7841","","" +"CZ","F","POP","TOTAL","OC4","H","Y65-84","2011","204","","" +"CZ","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","I","Y15-29","2011","2724","","" +"CZ","F","POP","TOTAL","OC4","I","Y30-49","2011","3059","","" +"CZ","F","POP","TOTAL","OC4","I","Y50-64","2011","1050","","" +"CZ","F","POP","TOTAL","OC4","I","Y65-84","2011","60","","" +"CZ","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","J","Y15-29","2011","3827","","" +"CZ","F","POP","TOTAL","OC4","J","Y30-49","2011","4101","","" +"CZ","F","POP","TOTAL","OC4","J","Y50-64","2011","1086","","" +"CZ","F","POP","TOTAL","OC4","J","Y65-84","2011","81","","" +"CZ","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","K","Y15-29","2011","3203","","" +"CZ","F","POP","TOTAL","OC4","K","Y30-49","2011","4406","","" +"CZ","F","POP","TOTAL","OC4","K","Y50-64","2011","1431","","" +"CZ","F","POP","TOTAL","OC4","K","Y65-84","2011","57","","" +"CZ","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","L","Y15-29","2011","467","","" +"CZ","F","POP","TOTAL","OC4","L","Y30-49","2011","1076","","" +"CZ","F","POP","TOTAL","OC4","L","Y50-64","2011","471","","" +"CZ","F","POP","TOTAL","OC4","L","Y65-84","2011","56","","" +"CZ","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","M","Y15-29","2011","2295","","" +"CZ","F","POP","TOTAL","OC4","M","Y30-49","2011","3529","","" +"CZ","F","POP","TOTAL","OC4","M","Y50-64","2011","1327","","" +"CZ","F","POP","TOTAL","OC4","M","Y65-84","2011","149","","" +"CZ","F","POP","TOTAL","OC4","M","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","N","Y15-29","2011","7180","","" +"CZ","F","POP","TOTAL","OC4","N","Y30-49","2011","8589","","" +"CZ","F","POP","TOTAL","OC4","N","Y50-64","2011","2852","","" +"CZ","F","POP","TOTAL","OC4","N","Y65-84","2011","206","","" +"CZ","F","POP","TOTAL","OC4","N","Y_GE85","2011","2","","" +"CZ","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","O","Y15-29","2011","3199","","" +"CZ","F","POP","TOTAL","OC4","O","Y30-49","2011","8165","","" +"CZ","F","POP","TOTAL","OC4","O","Y50-64","2011","3932","","" +"CZ","F","POP","TOTAL","OC4","O","Y65-84","2011","127","","" +"CZ","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","P","Y15-29","2011","731","","" +"CZ","F","POP","TOTAL","OC4","P","Y30-49","2011","2514","","" +"CZ","F","POP","TOTAL","OC4","P","Y50-64","2011","1756","","" +"CZ","F","POP","TOTAL","OC4","P","Y65-84","2011","187","","" +"CZ","F","POP","TOTAL","OC4","P","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","Q","Y15-29","2011","1056","","" +"CZ","F","POP","TOTAL","OC4","Q","Y30-49","2011","3636","","" +"CZ","F","POP","TOTAL","OC4","Q","Y50-64","2011","2079","","" +"CZ","F","POP","TOTAL","OC4","Q","Y65-84","2011","119","","" +"CZ","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","R","Y15-29","2011","1787","","" +"CZ","F","POP","TOTAL","OC4","R","Y30-49","2011","2764","","" +"CZ","F","POP","TOTAL","OC4","R","Y50-64","2011","856","","" +"CZ","F","POP","TOTAL","OC4","R","Y65-84","2011","111","","" +"CZ","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","S","Y15-29","2011","668","","" +"CZ","F","POP","TOTAL","OC4","S","Y30-49","2011","1447","","" +"CZ","F","POP","TOTAL","OC4","S","Y50-64","2011","603","","" +"CZ","F","POP","TOTAL","OC4","S","Y65-84","2011","40","","" +"CZ","F","POP","TOTAL","OC4","S","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","T","Y15-29","2011","7","","" +"CZ","F","POP","TOTAL","OC4","T","Y30-49","2011","17","","" +"CZ","F","POP","TOTAL","OC4","T","Y50-64","2011","11","","" +"CZ","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","U","Y15-29","2011","17","","" +"CZ","F","POP","TOTAL","OC4","U","Y30-49","2011","36","","" +"CZ","F","POP","TOTAL","OC4","U","Y50-64","2011","7","","" +"CZ","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC4","UNK","Y15-29","2011","1900","","" +"CZ","F","POP","TOTAL","OC4","UNK","Y30-49","2011","3990","","" +"CZ","F","POP","TOTAL","OC4","UNK","Y50-64","2011","2088","","" +"CZ","F","POP","TOTAL","OC4","UNK","Y65-84","2011","192","","" +"CZ","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","4","","" +"CZ","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","A","Y15-29","2011","322","","" +"CZ","F","POP","TOTAL","OC5","A","Y30-49","2011","1260","","" +"CZ","F","POP","TOTAL","OC5","A","Y50-64","2011","889","","" +"CZ","F","POP","TOTAL","OC5","A","Y65-84","2011","44","","" +"CZ","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","B","Y15-29","2011","16","","" +"CZ","F","POP","TOTAL","OC5","B","Y30-49","2011","58","","" +"CZ","F","POP","TOTAL","OC5","B","Y50-64","2011","60","","" +"CZ","F","POP","TOTAL","OC5","B","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","C","Y15-29","2011","3548","","" +"CZ","F","POP","TOTAL","OC5","C","Y30-49","2011","10350","","" +"CZ","F","POP","TOTAL","OC5","C","Y50-64","2011","4548","","" +"CZ","F","POP","TOTAL","OC5","C","Y65-84","2011","129","","" +"CZ","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","D","Y15-29","2011","29","","" +"CZ","F","POP","TOTAL","OC5","D","Y30-49","2011","84","","" +"CZ","F","POP","TOTAL","OC5","D","Y50-64","2011","52","","" +"CZ","F","POP","TOTAL","OC5","D","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","E","Y15-29","2011","27","","" +"CZ","F","POP","TOTAL","OC5","E","Y30-49","2011","111","","" +"CZ","F","POP","TOTAL","OC5","E","Y50-64","2011","66","","" +"CZ","F","POP","TOTAL","OC5","E","Y65-84","2011","4","","" +"CZ","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","F","Y15-29","2011","161","","" +"CZ","F","POP","TOTAL","OC5","F","Y30-49","2011","525","","" +"CZ","F","POP","TOTAL","OC5","F","Y50-64","2011","272","","" +"CZ","F","POP","TOTAL","OC5","F","Y65-84","2011","8","","" +"CZ","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","G","Y15-29","2011","32523","","" +"CZ","F","POP","TOTAL","OC5","G","Y30-49","2011","93054","","" +"CZ","F","POP","TOTAL","OC5","G","Y50-64","2011","36976","","" +"CZ","F","POP","TOTAL","OC5","G","Y65-84","2011","1230","","" +"CZ","F","POP","TOTAL","OC5","G","Y_GE85","2011","4","","" +"CZ","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","H","Y15-29","2011","1181","","" +"CZ","F","POP","TOTAL","OC5","H","Y30-49","2011","3723","","" +"CZ","F","POP","TOTAL","OC5","H","Y50-64","2011","1449","","" +"CZ","F","POP","TOTAL","OC5","H","Y65-84","2011","38","","" +"CZ","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","I","Y15-29","2011","20412","","" +"CZ","F","POP","TOTAL","OC5","I","Y30-49","2011","31072","","" +"CZ","F","POP","TOTAL","OC5","I","Y50-64","2011","11070","","" +"CZ","F","POP","TOTAL","OC5","I","Y65-84","2011","351","","" +"CZ","F","POP","TOTAL","OC5","I","Y_GE85","2011","3","","" +"CZ","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","J","Y15-29","2011","539","","" +"CZ","F","POP","TOTAL","OC5","J","Y30-49","2011","581","","" +"CZ","F","POP","TOTAL","OC5","J","Y50-64","2011","146","","" +"CZ","F","POP","TOTAL","OC5","J","Y65-84","2011","15","","" +"CZ","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","K","Y15-29","2011","520","","" +"CZ","F","POP","TOTAL","OC5","K","Y30-49","2011","794","","" +"CZ","F","POP","TOTAL","OC5","K","Y50-64","2011","313","","" +"CZ","F","POP","TOTAL","OC5","K","Y65-84","2011","4","","" +"CZ","F","POP","TOTAL","OC5","K","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","L","Y15-29","2011","130","","" +"CZ","F","POP","TOTAL","OC5","L","Y30-49","2011","640","","" +"CZ","F","POP","TOTAL","OC5","L","Y50-64","2011","381","","" +"CZ","F","POP","TOTAL","OC5","L","Y65-84","2011","58","","" +"CZ","F","POP","TOTAL","OC5","L","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","M","Y15-29","2011","431","","" +"CZ","F","POP","TOTAL","OC5","M","Y30-49","2011","660","","" +"CZ","F","POP","TOTAL","OC5","M","Y50-64","2011","276","","" +"CZ","F","POP","TOTAL","OC5","M","Y65-84","2011","25","","" +"CZ","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","N","Y15-29","2011","1411","","" +"CZ","F","POP","TOTAL","OC5","N","Y30-49","2011","4122","","" +"CZ","F","POP","TOTAL","OC5","N","Y50-64","2011","3527","","" +"CZ","F","POP","TOTAL","OC5","N","Y65-84","2011","312","","" +"CZ","F","POP","TOTAL","OC5","N","Y_GE85","2011","3","","" +"CZ","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","O","Y15-29","2011","1954","","" +"CZ","F","POP","TOTAL","OC5","O","Y30-49","2011","5877","","" +"CZ","F","POP","TOTAL","OC5","O","Y50-64","2011","1996","","" +"CZ","F","POP","TOTAL","OC5","O","Y65-84","2011","64","","" +"CZ","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","P","Y15-29","2011","933","","" +"CZ","F","POP","TOTAL","OC5","P","Y30-49","2011","12228","","" +"CZ","F","POP","TOTAL","OC5","P","Y50-64","2011","8098","","" +"CZ","F","POP","TOTAL","OC5","P","Y65-84","2011","329","","" +"CZ","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","Q","Y15-29","2011","3076","","" +"CZ","F","POP","TOTAL","OC5","Q","Y30-49","2011","17192","","" +"CZ","F","POP","TOTAL","OC5","Q","Y50-64","2011","9857","","" +"CZ","F","POP","TOTAL","OC5","Q","Y65-84","2011","231","","" +"CZ","F","POP","TOTAL","OC5","Q","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","R","Y15-29","2011","2480","","" +"CZ","F","POP","TOTAL","OC5","R","Y30-49","2011","3112","","" +"CZ","F","POP","TOTAL","OC5","R","Y50-64","2011","1170","","" +"CZ","F","POP","TOTAL","OC5","R","Y65-84","2011","287","","" +"CZ","F","POP","TOTAL","OC5","R","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","S","Y15-29","2011","8906","","" +"CZ","F","POP","TOTAL","OC5","S","Y30-49","2011","17398","","" +"CZ","F","POP","TOTAL","OC5","S","Y50-64","2011","5844","","" +"CZ","F","POP","TOTAL","OC5","S","Y65-84","2011","381","","" +"CZ","F","POP","TOTAL","OC5","S","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","T","Y15-29","2011","458","","" +"CZ","F","POP","TOTAL","OC5","T","Y30-49","2011","957","","" +"CZ","F","POP","TOTAL","OC5","T","Y50-64","2011","622","","" +"CZ","F","POP","TOTAL","OC5","T","Y65-84","2011","27","","" +"CZ","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","U","Y15-29","2011","7","","" +"CZ","F","POP","TOTAL","OC5","U","Y30-49","2011","10","","" +"CZ","F","POP","TOTAL","OC5","U","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC5","UNK","Y15-29","2011","9574","","" +"CZ","F","POP","TOTAL","OC5","UNK","Y30-49","2011","24521","","" +"CZ","F","POP","TOTAL","OC5","UNK","Y50-64","2011","11868","","" +"CZ","F","POP","TOTAL","OC5","UNK","Y65-84","2011","676","","" +"CZ","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","10","","" +"CZ","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","A","Y15-29","2011","1712","","" +"CZ","F","POP","TOTAL","OC6","A","Y30-49","2011","9745","","" +"CZ","F","POP","TOTAL","OC6","A","Y50-64","2011","6581","","" +"CZ","F","POP","TOTAL","OC6","A","Y65-84","2011","336","","" +"CZ","F","POP","TOTAL","OC6","A","Y_GE85","2011","9","","" +"CZ","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","B","Y15-29","2011","2","","" +"CZ","F","POP","TOTAL","OC6","B","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC6","B","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","C","Y15-29","2011","47","","" +"CZ","F","POP","TOTAL","OC6","C","Y30-49","2011","226","","" +"CZ","F","POP","TOTAL","OC6","C","Y50-64","2011","137","","" +"CZ","F","POP","TOTAL","OC6","C","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC6","D","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC6","E","Y30-49","2011","5","","" +"CZ","F","POP","TOTAL","OC6","E","Y50-64","2011","3","","" +"CZ","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","F","Y15-29","2011","3","","" +"CZ","F","POP","TOTAL","OC6","F","Y30-49","2011","15","","" +"CZ","F","POP","TOTAL","OC6","F","Y50-64","2011","5","","" +"CZ","F","POP","TOTAL","OC6","F","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","G","Y15-29","2011","300","","" +"CZ","F","POP","TOTAL","OC6","G","Y30-49","2011","590","","" +"CZ","F","POP","TOTAL","OC6","G","Y50-64","2011","102","","" +"CZ","F","POP","TOTAL","OC6","G","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","H","Y15-29","2011","14","","" +"CZ","F","POP","TOTAL","OC6","H","Y30-49","2011","52","","" +"CZ","F","POP","TOTAL","OC6","H","Y50-64","2011","16","","" +"CZ","F","POP","TOTAL","OC6","H","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","I","Y15-29","2011","2","","" +"CZ","F","POP","TOTAL","OC6","I","Y30-49","2011","17","","" +"CZ","F","POP","TOTAL","OC6","I","Y50-64","2011","6","","" +"CZ","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","J","Y15-29","2011","2","","" +"CZ","F","POP","TOTAL","OC6","J","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC6","J","Y50-64","2011","1","","" +"CZ","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","K","Y15-29","2011","4","","" +"CZ","F","POP","TOTAL","OC6","K","Y30-49","2011","4","","" +"CZ","F","POP","TOTAL","OC6","K","Y50-64","2011","4","","" +"CZ","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC6","L","Y30-49","2011","5","","" +"CZ","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","M","Y15-29","2011","22","","" +"CZ","F","POP","TOTAL","OC6","M","Y30-49","2011","62","","" +"CZ","F","POP","TOTAL","OC6","M","Y50-64","2011","24","","" +"CZ","F","POP","TOTAL","OC6","M","Y65-84","2011","5","","" +"CZ","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","N","Y15-29","2011","212","","" +"CZ","F","POP","TOTAL","OC6","N","Y30-49","2011","802","","" +"CZ","F","POP","TOTAL","OC6","N","Y50-64","2011","352","","" +"CZ","F","POP","TOTAL","OC6","N","Y65-84","2011","13","","" +"CZ","F","POP","TOTAL","OC6","N","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","O","Y15-29","2011","21","","" +"CZ","F","POP","TOTAL","OC6","O","Y30-49","2011","80","","" +"CZ","F","POP","TOTAL","OC6","O","Y50-64","2011","52","","" +"CZ","F","POP","TOTAL","OC6","O","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","P","Y15-29","2011","16","","" +"CZ","F","POP","TOTAL","OC6","P","Y30-49","2011","62","","" +"CZ","F","POP","TOTAL","OC6","P","Y50-64","2011","33","","" +"CZ","F","POP","TOTAL","OC6","P","Y65-84","2011","3","","" +"CZ","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","Q","Y15-29","2011","324","","" +"CZ","F","POP","TOTAL","OC6","Q","Y30-49","2011","1432","","" +"CZ","F","POP","TOTAL","OC6","Q","Y50-64","2011","783","","" +"CZ","F","POP","TOTAL","OC6","Q","Y65-84","2011","8","","" +"CZ","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","R","Y15-29","2011","74","","" +"CZ","F","POP","TOTAL","OC6","R","Y30-49","2011","122","","" +"CZ","F","POP","TOTAL","OC6","R","Y50-64","2011","50","","" +"CZ","F","POP","TOTAL","OC6","R","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","S","Y15-29","2011","43","","" +"CZ","F","POP","TOTAL","OC6","S","Y30-49","2011","120","","" +"CZ","F","POP","TOTAL","OC6","S","Y50-64","2011","45","","" +"CZ","F","POP","TOTAL","OC6","S","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","T","Y15-29","2011","2","","" +"CZ","F","POP","TOTAL","OC6","T","Y30-49","2011","13","","" +"CZ","F","POP","TOTAL","OC6","T","Y50-64","2011","10","","" +"CZ","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","U","Y15-29","2011","1","","" +"CZ","F","POP","TOTAL","OC6","U","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC6","UNK","Y15-29","2011","283","","" +"CZ","F","POP","TOTAL","OC6","UNK","Y30-49","2011","1293","","" +"CZ","F","POP","TOTAL","OC6","UNK","Y50-64","2011","802","","" +"CZ","F","POP","TOTAL","OC6","UNK","Y65-84","2011","39","","" +"CZ","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","4","","" +"CZ","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","A","Y15-29","2011","28","","" +"CZ","F","POP","TOTAL","OC7","A","Y30-49","2011","122","","" +"CZ","F","POP","TOTAL","OC7","A","Y50-64","2011","55","","" +"CZ","F","POP","TOTAL","OC7","A","Y65-84","2011","5","","" +"CZ","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","B","Y15-29","2011","12","","" +"CZ","F","POP","TOTAL","OC7","B","Y30-49","2011","125","","" +"CZ","F","POP","TOTAL","OC7","B","Y50-64","2011","112","","" +"CZ","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","C","Y15-29","2011","11529","","" +"CZ","F","POP","TOTAL","OC7","C","Y30-49","2011","46989","","" +"CZ","F","POP","TOTAL","OC7","C","Y50-64","2011","20536","","" +"CZ","F","POP","TOTAL","OC7","C","Y65-84","2011","269","","" +"CZ","F","POP","TOTAL","OC7","C","Y_GE85","2011","2","","" +"CZ","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","D","Y15-29","2011","27","","" +"CZ","F","POP","TOTAL","OC7","D","Y30-49","2011","138","","" +"CZ","F","POP","TOTAL","OC7","D","Y50-64","2011","106","","" +"CZ","F","POP","TOTAL","OC7","D","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","E","Y15-29","2011","7","","" +"CZ","F","POP","TOTAL","OC7","E","Y30-49","2011","80","","" +"CZ","F","POP","TOTAL","OC7","E","Y50-64","2011","56","","" +"CZ","F","POP","TOTAL","OC7","E","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","F","Y15-29","2011","545","","" +"CZ","F","POP","TOTAL","OC7","F","Y30-49","2011","1653","","" +"CZ","F","POP","TOTAL","OC7","F","Y50-64","2011","793","","" +"CZ","F","POP","TOTAL","OC7","F","Y65-84","2011","39","","" +"CZ","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","G","Y15-29","2011","355","","" +"CZ","F","POP","TOTAL","OC7","G","Y30-49","2011","1147","","" +"CZ","F","POP","TOTAL","OC7","G","Y50-64","2011","451","","" +"CZ","F","POP","TOTAL","OC7","G","Y65-84","2011","10","","" +"CZ","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","H","Y15-29","2011","93","","" +"CZ","F","POP","TOTAL","OC7","H","Y30-49","2011","428","","" +"CZ","F","POP","TOTAL","OC7","H","Y50-64","2011","208","","" +"CZ","F","POP","TOTAL","OC7","H","Y65-84","2011","9","","" +"CZ","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","I","Y15-29","2011","243","","" +"CZ","F","POP","TOTAL","OC7","I","Y30-49","2011","370","","" +"CZ","F","POP","TOTAL","OC7","I","Y50-64","2011","118","","" +"CZ","F","POP","TOTAL","OC7","I","Y65-84","2011","5","","" +"CZ","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","J","Y15-29","2011","134","","" +"CZ","F","POP","TOTAL","OC7","J","Y30-49","2011","247","","" +"CZ","F","POP","TOTAL","OC7","J","Y50-64","2011","146","","" +"CZ","F","POP","TOTAL","OC7","J","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","K","Y15-29","2011","8","","" +"CZ","F","POP","TOTAL","OC7","K","Y30-49","2011","34","","" +"CZ","F","POP","TOTAL","OC7","K","Y50-64","2011","12","","" +"CZ","F","POP","TOTAL","OC7","K","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","L","Y15-29","2011","8","","" +"CZ","F","POP","TOTAL","OC7","L","Y30-49","2011","102","","" +"CZ","F","POP","TOTAL","OC7","L","Y50-64","2011","53","","" +"CZ","F","POP","TOTAL","OC7","L","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","M","Y15-29","2011","148","","" +"CZ","F","POP","TOTAL","OC7","M","Y30-49","2011","409","","" +"CZ","F","POP","TOTAL","OC7","M","Y50-64","2011","183","","" +"CZ","F","POP","TOTAL","OC7","M","Y65-84","2011","15","","" +"CZ","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","N","Y15-29","2011","131","","" +"CZ","F","POP","TOTAL","OC7","N","Y30-49","2011","425","","" +"CZ","F","POP","TOTAL","OC7","N","Y50-64","2011","217","","" +"CZ","F","POP","TOTAL","OC7","N","Y65-84","2011","8","","" +"CZ","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","O","Y15-29","2011","14","","" +"CZ","F","POP","TOTAL","OC7","O","Y30-49","2011","142","","" +"CZ","F","POP","TOTAL","OC7","O","Y50-64","2011","97","","" +"CZ","F","POP","TOTAL","OC7","O","Y65-84","2011","5","","" +"CZ","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","P","Y15-29","2011","17","","" +"CZ","F","POP","TOTAL","OC7","P","Y30-49","2011","130","","" +"CZ","F","POP","TOTAL","OC7","P","Y50-64","2011","101","","" +"CZ","F","POP","TOTAL","OC7","P","Y65-84","2011","9","","" +"CZ","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","Q","Y15-29","2011","55","","" +"CZ","F","POP","TOTAL","OC7","Q","Y30-49","2011","254","","" +"CZ","F","POP","TOTAL","OC7","Q","Y50-64","2011","165","","" +"CZ","F","POP","TOTAL","OC7","Q","Y65-84","2011","6","","" +"CZ","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","R","Y15-29","2011","88","","" +"CZ","F","POP","TOTAL","OC7","R","Y30-49","2011","432","","" +"CZ","F","POP","TOTAL","OC7","R","Y50-64","2011","281","","" +"CZ","F","POP","TOTAL","OC7","R","Y65-84","2011","19","","" +"CZ","F","POP","TOTAL","OC7","R","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","S","Y15-29","2011","162","","" +"CZ","F","POP","TOTAL","OC7","S","Y30-49","2011","842","","" +"CZ","F","POP","TOTAL","OC7","S","Y50-64","2011","450","","" +"CZ","F","POP","TOTAL","OC7","S","Y65-84","2011","24","","" +"CZ","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","T","Y15-29","2011","4","","" +"CZ","F","POP","TOTAL","OC7","T","Y30-49","2011","8","","" +"CZ","F","POP","TOTAL","OC7","T","Y50-64","2011","4","","" +"CZ","F","POP","TOTAL","OC7","T","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC7","UNK","Y15-29","2011","1463","","" +"CZ","F","POP","TOTAL","OC7","UNK","Y30-49","2011","4588","","" +"CZ","F","POP","TOTAL","OC7","UNK","Y50-64","2011","2265","","" +"CZ","F","POP","TOTAL","OC7","UNK","Y65-84","2011","58","","" +"CZ","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","4","","" +"CZ","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","A","Y15-29","2011","43","","" +"CZ","F","POP","TOTAL","OC8","A","Y30-49","2011","341","","" +"CZ","F","POP","TOTAL","OC8","A","Y50-64","2011","287","","" +"CZ","F","POP","TOTAL","OC8","A","Y65-84","2011","6","","" +"CZ","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","B","Y15-29","2011","46","","" +"CZ","F","POP","TOTAL","OC8","B","Y30-49","2011","578","","" +"CZ","F","POP","TOTAL","OC8","B","Y50-64","2011","616","","" +"CZ","F","POP","TOTAL","OC8","B","Y65-84","2011","3","","" +"CZ","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","C","Y15-29","2011","19330","","" +"CZ","F","POP","TOTAL","OC8","C","Y30-49","2011","73074","","" +"CZ","F","POP","TOTAL","OC8","C","Y50-64","2011","32055","","" +"CZ","F","POP","TOTAL","OC8","C","Y65-84","2011","239","","" +"CZ","F","POP","TOTAL","OC8","C","Y_GE85","2011","10","","" +"CZ","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","D","Y15-29","2011","64","","" +"CZ","F","POP","TOTAL","OC8","D","Y30-49","2011","270","","" +"CZ","F","POP","TOTAL","OC8","D","Y50-64","2011","254","","" +"CZ","F","POP","TOTAL","OC8","D","Y65-84","2011","10","","" +"CZ","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","E","Y15-29","2011","47","","" +"CZ","F","POP","TOTAL","OC8","E","Y30-49","2011","357","","" +"CZ","F","POP","TOTAL","OC8","E","Y50-64","2011","335","","" +"CZ","F","POP","TOTAL","OC8","E","Y65-84","2011","10","","" +"CZ","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","F","Y15-29","2011","127","","" +"CZ","F","POP","TOTAL","OC8","F","Y30-49","2011","493","","" +"CZ","F","POP","TOTAL","OC8","F","Y50-64","2011","325","","" +"CZ","F","POP","TOTAL","OC8","F","Y65-84","2011","9","","" +"CZ","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","G","Y15-29","2011","807","","" +"CZ","F","POP","TOTAL","OC8","G","Y30-49","2011","3301","","" +"CZ","F","POP","TOTAL","OC8","G","Y50-64","2011","1388","","" +"CZ","F","POP","TOTAL","OC8","G","Y65-84","2011","20","","" +"CZ","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","H","Y15-29","2011","866","","" +"CZ","F","POP","TOTAL","OC8","H","Y30-49","2011","4586","","" +"CZ","F","POP","TOTAL","OC8","H","Y50-64","2011","2609","","" +"CZ","F","POP","TOTAL","OC8","H","Y65-84","2011","25","","" +"CZ","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","I","Y15-29","2011","46","","" +"CZ","F","POP","TOTAL","OC8","I","Y30-49","2011","216","","" +"CZ","F","POP","TOTAL","OC8","I","Y50-64","2011","145","","" +"CZ","F","POP","TOTAL","OC8","I","Y65-84","2011","3","","" +"CZ","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","J","Y15-29","2011","60","","" +"CZ","F","POP","TOTAL","OC8","J","Y30-49","2011","146","","" +"CZ","F","POP","TOTAL","OC8","J","Y50-64","2011","78","","" +"CZ","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","K","Y15-29","2011","20","","" +"CZ","F","POP","TOTAL","OC8","K","Y30-49","2011","36","","" +"CZ","F","POP","TOTAL","OC8","K","Y50-64","2011","16","","" +"CZ","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","L","Y15-29","2011","3","","" +"CZ","F","POP","TOTAL","OC8","L","Y30-49","2011","20","","" +"CZ","F","POP","TOTAL","OC8","L","Y50-64","2011","17","","" +"CZ","F","POP","TOTAL","OC8","L","Y65-84","2011","5","","" +"CZ","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","M","Y15-29","2011","101","","" +"CZ","F","POP","TOTAL","OC8","M","Y30-49","2011","306","","" +"CZ","F","POP","TOTAL","OC8","M","Y50-64","2011","144","","" +"CZ","F","POP","TOTAL","OC8","M","Y65-84","2011","11","","" +"CZ","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","N","Y15-29","2011","206","","" +"CZ","F","POP","TOTAL","OC8","N","Y30-49","2011","661","","" +"CZ","F","POP","TOTAL","OC8","N","Y50-64","2011","384","","" +"CZ","F","POP","TOTAL","OC8","N","Y65-84","2011","10","","" +"CZ","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","O","Y15-29","2011","43","","" +"CZ","F","POP","TOTAL","OC8","O","Y30-49","2011","271","","" +"CZ","F","POP","TOTAL","OC8","O","Y50-64","2011","222","","" +"CZ","F","POP","TOTAL","OC8","O","Y65-84","2011","7","","" +"CZ","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","P","Y15-29","2011","13","","" +"CZ","F","POP","TOTAL","OC8","P","Y30-49","2011","154","","" +"CZ","F","POP","TOTAL","OC8","P","Y50-64","2011","140","","" +"CZ","F","POP","TOTAL","OC8","P","Y65-84","2011","6","","" +"CZ","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","Q","Y15-29","2011","243","","" +"CZ","F","POP","TOTAL","OC8","Q","Y30-49","2011","1383","","" +"CZ","F","POP","TOTAL","OC8","Q","Y50-64","2011","944","","" +"CZ","F","POP","TOTAL","OC8","Q","Y65-84","2011","17","","" +"CZ","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","R","Y15-29","2011","40","","" +"CZ","F","POP","TOTAL","OC8","R","Y30-49","2011","89","","" +"CZ","F","POP","TOTAL","OC8","R","Y50-64","2011","41","","" +"CZ","F","POP","TOTAL","OC8","R","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","S","Y15-29","2011","177","","" +"CZ","F","POP","TOTAL","OC8","S","Y30-49","2011","881","","" +"CZ","F","POP","TOTAL","OC8","S","Y50-64","2011","564","","" +"CZ","F","POP","TOTAL","OC8","S","Y65-84","2011","16","","" +"CZ","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC8","T","Y30-49","2011","10","","" +"CZ","F","POP","TOTAL","OC8","T","Y50-64","2011","7","","" +"CZ","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC8","U","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC8","UNK","Y15-29","2011","2008","","" +"CZ","F","POP","TOTAL","OC8","UNK","Y30-49","2011","6876","","" +"CZ","F","POP","TOTAL","OC8","UNK","Y50-64","2011","3554","","" +"CZ","F","POP","TOTAL","OC8","UNK","Y65-84","2011","54","","" +"CZ","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","3","","" +"CZ","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","A","Y15-29","2011","131","","" +"CZ","F","POP","TOTAL","OC9","A","Y30-49","2011","1308","","" +"CZ","F","POP","TOTAL","OC9","A","Y50-64","2011","1165","","" +"CZ","F","POP","TOTAL","OC9","A","Y65-84","2011","117","","" +"CZ","F","POP","TOTAL","OC9","A","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","B","Y15-29","2011","10","","" +"CZ","F","POP","TOTAL","OC9","B","Y30-49","2011","103","","" +"CZ","F","POP","TOTAL","OC9","B","Y50-64","2011","141","","" +"CZ","F","POP","TOTAL","OC9","B","Y65-84","2011","2","","" +"CZ","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","C","Y15-29","2011","2117","","" +"CZ","F","POP","TOTAL","OC9","C","Y30-49","2011","9276","","" +"CZ","F","POP","TOTAL","OC9","C","Y50-64","2011","5547","","" +"CZ","F","POP","TOTAL","OC9","C","Y65-84","2011","235","","" +"CZ","F","POP","TOTAL","OC9","C","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","D","Y15-29","2011","19","","" +"CZ","F","POP","TOTAL","OC9","D","Y30-49","2011","125","","" +"CZ","F","POP","TOTAL","OC9","D","Y50-64","2011","109","","" +"CZ","F","POP","TOTAL","OC9","D","Y65-84","2011","8","","" +"CZ","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","E","Y15-29","2011","90","","" +"CZ","F","POP","TOTAL","OC9","E","Y30-49","2011","659","","" +"CZ","F","POP","TOTAL","OC9","E","Y50-64","2011","481","","" +"CZ","F","POP","TOTAL","OC9","E","Y65-84","2011","28","","" +"CZ","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","F","Y15-29","2011","108","","" +"CZ","F","POP","TOTAL","OC9","F","Y30-49","2011","570","","" +"CZ","F","POP","TOTAL","OC9","F","Y50-64","2011","383","","" +"CZ","F","POP","TOTAL","OC9","F","Y65-84","2011","52","","" +"CZ","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","G","Y15-29","2011","294","","" +"CZ","F","POP","TOTAL","OC9","G","Y30-49","2011","1200","","" +"CZ","F","POP","TOTAL","OC9","G","Y50-64","2011","872","","" +"CZ","F","POP","TOTAL","OC9","G","Y65-84","2011","126","","" +"CZ","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","H","Y15-29","2011","230","","" +"CZ","F","POP","TOTAL","OC9","H","Y30-49","2011","938","","" +"CZ","F","POP","TOTAL","OC9","H","Y50-64","2011","752","","" +"CZ","F","POP","TOTAL","OC9","H","Y65-84","2011","57","","" +"CZ","F","POP","TOTAL","OC9","H","Y_GE85","2011","2","","" +"CZ","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","I","Y15-29","2011","707","","" +"CZ","F","POP","TOTAL","OC9","I","Y30-49","2011","3982","","" +"CZ","F","POP","TOTAL","OC9","I","Y50-64","2011","2274","","" +"CZ","F","POP","TOTAL","OC9","I","Y65-84","2011","123","","" +"CZ","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","J","Y15-29","2011","40","","" +"CZ","F","POP","TOTAL","OC9","J","Y30-49","2011","91","","" +"CZ","F","POP","TOTAL","OC9","J","Y50-64","2011","74","","" +"CZ","F","POP","TOTAL","OC9","J","Y65-84","2011","19","","" +"CZ","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","K","Y15-29","2011","9","","" +"CZ","F","POP","TOTAL","OC9","K","Y30-49","2011","48","","" +"CZ","F","POP","TOTAL","OC9","K","Y50-64","2011","52","","" +"CZ","F","POP","TOTAL","OC9","K","Y65-84","2011","27","","" +"CZ","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","L","Y15-29","2011","28","","" +"CZ","F","POP","TOTAL","OC9","L","Y30-49","2011","200","","" +"CZ","F","POP","TOTAL","OC9","L","Y50-64","2011","184","","" +"CZ","F","POP","TOTAL","OC9","L","Y65-84","2011","42","","" +"CZ","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","M","Y15-29","2011","71","","" +"CZ","F","POP","TOTAL","OC9","M","Y30-49","2011","289","","" +"CZ","F","POP","TOTAL","OC9","M","Y50-64","2011","244","","" +"CZ","F","POP","TOTAL","OC9","M","Y65-84","2011","40","","" +"CZ","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","N","Y15-29","2011","1717","","" +"CZ","F","POP","TOTAL","OC9","N","Y30-49","2011","14556","","" +"CZ","F","POP","TOTAL","OC9","N","Y50-64","2011","10631","","" +"CZ","F","POP","TOTAL","OC9","N","Y65-84","2011","1267","","" +"CZ","F","POP","TOTAL","OC9","N","Y_GE85","2011","5","","" +"CZ","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","O","Y15-29","2011","145","","" +"CZ","F","POP","TOTAL","OC9","O","Y30-49","2011","1649","","" +"CZ","F","POP","TOTAL","OC9","O","Y50-64","2011","1551","","" +"CZ","F","POP","TOTAL","OC9","O","Y65-84","2011","145","","" +"CZ","F","POP","TOTAL","OC9","O","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","P","Y15-29","2011","296","","" +"CZ","F","POP","TOTAL","OC9","P","Y30-49","2011","6911","","" +"CZ","F","POP","TOTAL","OC9","P","Y50-64","2011","5473","","" +"CZ","F","POP","TOTAL","OC9","P","Y65-84","2011","429","","" +"CZ","F","POP","TOTAL","OC9","P","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","Q","Y15-29","2011","446","","" +"CZ","F","POP","TOTAL","OC9","Q","Y30-49","2011","4146","","" +"CZ","F","POP","TOTAL","OC9","Q","Y50-64","2011","3648","","" +"CZ","F","POP","TOTAL","OC9","Q","Y65-84","2011","259","","" +"CZ","F","POP","TOTAL","OC9","Q","Y_GE85","2011","3","","" +"CZ","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","R","Y15-29","2011","197","","" +"CZ","F","POP","TOTAL","OC9","R","Y30-49","2011","608","","" +"CZ","F","POP","TOTAL","OC9","R","Y50-64","2011","635","","" +"CZ","F","POP","TOTAL","OC9","R","Y65-84","2011","248","","" +"CZ","F","POP","TOTAL","OC9","R","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","S","Y15-29","2011","224","","" +"CZ","F","POP","TOTAL","OC9","S","Y30-49","2011","1592","","" +"CZ","F","POP","TOTAL","OC9","S","Y50-64","2011","1221","","" +"CZ","F","POP","TOTAL","OC9","S","Y65-84","2011","117","","" +"CZ","F","POP","TOTAL","OC9","S","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","T","Y15-29","2011","104","","" +"CZ","F","POP","TOTAL","OC9","T","Y30-49","2011","293","","" +"CZ","F","POP","TOTAL","OC9","T","Y50-64","2011","165","","" +"CZ","F","POP","TOTAL","OC9","T","Y65-84","2011","12","","" +"CZ","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","OC9","U","Y30-49","2011","1","","" +"CZ","F","POP","TOTAL","OC9","U","Y50-64","2011","3","","" +"CZ","F","POP","TOTAL","OC9","U","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","OC9","UNK","Y15-29","2011","2376","","" +"CZ","F","POP","TOTAL","OC9","UNK","Y30-49","2011","11577","","" +"CZ","F","POP","TOTAL","OC9","UNK","Y50-64","2011","9029","","" +"CZ","F","POP","TOTAL","OC9","UNK","Y65-84","2011","825","","" +"CZ","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","7","","" +"CZ","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","A","Y15-29","2011","178","","" +"CZ","F","POP","TOTAL","UNK","A","Y30-49","2011","762","","" +"CZ","F","POP","TOTAL","UNK","A","Y50-64","2011","621","","" +"CZ","F","POP","TOTAL","UNK","A","Y65-84","2011","111","","" +"CZ","F","POP","TOTAL","UNK","A","Y_GE85","2011","4","","" +"CZ","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","B","Y15-29","2011","19","","" +"CZ","F","POP","TOTAL","UNK","B","Y30-49","2011","61","","" +"CZ","F","POP","TOTAL","UNK","B","Y50-64","2011","48","","" +"CZ","F","POP","TOTAL","UNK","B","Y65-84","2011","1","","" +"CZ","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","C","Y15-29","2011","2075","","" +"CZ","F","POP","TOTAL","UNK","C","Y30-49","2011","6137","","" +"CZ","F","POP","TOTAL","UNK","C","Y50-64","2011","2741","","" +"CZ","F","POP","TOTAL","UNK","C","Y65-84","2011","189","","" +"CZ","F","POP","TOTAL","UNK","C","Y_GE85","2011","3","","" +"CZ","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","D","Y15-29","2011","29","","" +"CZ","F","POP","TOTAL","UNK","D","Y30-49","2011","104","","" +"CZ","F","POP","TOTAL","UNK","D","Y50-64","2011","76","","" +"CZ","F","POP","TOTAL","UNK","D","Y65-84","2011","7","","" +"CZ","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","E","Y15-29","2011","33","","" +"CZ","F","POP","TOTAL","UNK","E","Y30-49","2011","134","","" +"CZ","F","POP","TOTAL","UNK","E","Y50-64","2011","84","","" +"CZ","F","POP","TOTAL","UNK","E","Y65-84","2011","4","","" +"CZ","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","F","Y15-29","2011","171","","" +"CZ","F","POP","TOTAL","UNK","F","Y30-49","2011","693","","" +"CZ","F","POP","TOTAL","UNK","F","Y50-64","2011","407","","" +"CZ","F","POP","TOTAL","UNK","F","Y65-84","2011","41","","" +"CZ","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","G","Y15-29","2011","1551","","" +"CZ","F","POP","TOTAL","UNK","G","Y30-49","2011","5616","","" +"CZ","F","POP","TOTAL","UNK","G","Y50-64","2011","3007","","" +"CZ","F","POP","TOTAL","UNK","G","Y65-84","2011","375","","" +"CZ","F","POP","TOTAL","UNK","G","Y_GE85","2011","2","","" +"CZ","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","H","Y15-29","2011","243","","" +"CZ","F","POP","TOTAL","UNK","H","Y30-49","2011","798","","" +"CZ","F","POP","TOTAL","UNK","H","Y50-64","2011","410","","" +"CZ","F","POP","TOTAL","UNK","H","Y65-84","2011","26","","" +"CZ","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","I","Y15-29","2011","830","","" +"CZ","F","POP","TOTAL","UNK","I","Y30-49","2011","1990","","" +"CZ","F","POP","TOTAL","UNK","I","Y50-64","2011","1030","","" +"CZ","F","POP","TOTAL","UNK","I","Y65-84","2011","115","","" +"CZ","F","POP","TOTAL","UNK","I","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","J","Y15-29","2011","312","","" +"CZ","F","POP","TOTAL","UNK","J","Y30-49","2011","599","","" +"CZ","F","POP","TOTAL","UNK","J","Y50-64","2011","202","","" +"CZ","F","POP","TOTAL","UNK","J","Y65-84","2011","49","","" +"CZ","F","POP","TOTAL","UNK","J","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","K","Y15-29","2011","418","","" +"CZ","F","POP","TOTAL","UNK","K","Y30-49","2011","1119","","" +"CZ","F","POP","TOTAL","UNK","K","Y50-64","2011","659","","" +"CZ","F","POP","TOTAL","UNK","K","Y65-84","2011","96","","" +"CZ","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","L","Y15-29","2011","137","","" +"CZ","F","POP","TOTAL","UNK","L","Y30-49","2011","550","","" +"CZ","F","POP","TOTAL","UNK","L","Y50-64","2011","261","","" +"CZ","F","POP","TOTAL","UNK","L","Y65-84","2011","47","","" +"CZ","F","POP","TOTAL","UNK","L","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","M","Y15-29","2011","602","","" +"CZ","F","POP","TOTAL","UNK","M","Y30-49","2011","1956","","" +"CZ","F","POP","TOTAL","UNK","M","Y50-64","2011","1462","","" +"CZ","F","POP","TOTAL","UNK","M","Y65-84","2011","433","","" +"CZ","F","POP","TOTAL","UNK","M","Y_GE85","2011","3","","" +"CZ","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","N","Y15-29","2011","777","","" +"CZ","F","POP","TOTAL","UNK","N","Y30-49","2011","1979","","" +"CZ","F","POP","TOTAL","UNK","N","Y50-64","2011","1166","","" +"CZ","F","POP","TOTAL","UNK","N","Y65-84","2011","278","","" +"CZ","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"CZ","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"CZ","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"CZ","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","O","Y15-29","2011","363","","" +"CZ","F","POP","TOTAL","UNK","O","Y30-49","2011","1321","","" +"CZ","F","POP","TOTAL","UNK","O","Y50-64","2011","695","","" +"CZ","F","POP","TOTAL","UNK","O","Y65-84","2011","52","","" +"CZ","F","POP","TOTAL","UNK","O","Y_GE85","2011","2","","" +"CZ","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","P","Y15-29","2011","416","","" +"CZ","F","POP","TOTAL","UNK","P","Y30-49","2011","1807","","" +"CZ","F","POP","TOTAL","UNK","P","Y50-64","2011","1161","","" +"CZ","F","POP","TOTAL","UNK","P","Y65-84","2011","180","","" +"CZ","F","POP","TOTAL","UNK","P","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","Q","Y15-29","2011","577","","" +"CZ","F","POP","TOTAL","UNK","Q","Y30-49","2011","2031","","" +"CZ","F","POP","TOTAL","UNK","Q","Y50-64","2011","1507","","" +"CZ","F","POP","TOTAL","UNK","Q","Y65-84","2011","206","","" +"CZ","F","POP","TOTAL","UNK","Q","Y_GE85","2011","1","","" +"CZ","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","R","Y15-29","2011","272","","" +"CZ","F","POP","TOTAL","UNK","R","Y30-49","2011","602","","" +"CZ","F","POP","TOTAL","UNK","R","Y50-64","2011","326","","" +"CZ","F","POP","TOTAL","UNK","R","Y65-84","2011","92","","" +"CZ","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","S","Y15-29","2011","554","","" +"CZ","F","POP","TOTAL","UNK","S","Y30-49","2011","1724","","" +"CZ","F","POP","TOTAL","UNK","S","Y50-64","2011","793","","" +"CZ","F","POP","TOTAL","UNK","S","Y65-84","2011","105","","" +"CZ","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","T","Y15-29","2011","62","","" +"CZ","F","POP","TOTAL","UNK","T","Y30-49","2011","178","","" +"CZ","F","POP","TOTAL","UNK","T","Y50-64","2011","74","","" +"CZ","F","POP","TOTAL","UNK","T","Y65-84","2011","11","","" +"CZ","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","U","Y15-29","2011","7","","" +"CZ","F","POP","TOTAL","UNK","U","Y30-49","2011","19","","" +"CZ","F","POP","TOTAL","UNK","U","Y50-64","2011","4","","" +"CZ","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"CZ","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"CZ","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"CZ","F","POP","TOTAL","UNK","UNK","Y15-29","2011","56167","","" +"CZ","F","POP","TOTAL","UNK","UNK","Y30-49","2011","85111","","" +"CZ","F","POP","TOTAL","UNK","UNK","Y50-64","2011","44216","","" +"CZ","F","POP","TOTAL","UNK","UNK","Y65-84","2011","8016","","" +"CZ","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","214","","" +"CZ","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","NAP","Y15-29","2011","478849","","" +"CZ","M","POP","TOTAL","NAP","NAP","Y30-49","2011","203944","","" +"CZ","M","POP","TOTAL","NAP","NAP","Y50-64","2011","336583","","" +"CZ","M","POP","TOTAL","NAP","NAP","Y65-84","2011","561783","","" +"CZ","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","42312","","" +"CZ","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","763949","","" +"CZ","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","A","Y15-29","2011","2","","" +"CZ","M","POP","TOTAL","OC0","A","Y30-49","2011","3","","" +"CZ","M","POP","TOTAL","OC0","A","Y50-64","2011","3","","" +"CZ","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","C","Y15-29","2011","8","","" +"CZ","M","POP","TOTAL","OC0","C","Y30-49","2011","25","","" +"CZ","M","POP","TOTAL","OC0","C","Y50-64","2011","6","","" +"CZ","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","D","Y15-29","2011","1","","" +"CZ","M","POP","TOTAL","OC0","D","Y30-49","2011","1","","" +"CZ","M","POP","TOTAL","OC0","D","Y50-64","2011","1","","" +"CZ","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","F","Y15-29","2011","2","","" +"CZ","M","POP","TOTAL","OC0","F","Y30-49","2011","4","","" +"CZ","M","POP","TOTAL","OC0","F","Y50-64","2011","1","","" +"CZ","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","G","Y15-29","2011","2","","" +"CZ","M","POP","TOTAL","OC0","G","Y30-49","2011","4","","" +"CZ","M","POP","TOTAL","OC0","G","Y50-64","2011","2","","" +"CZ","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","H","Y15-29","2011","52","","" +"CZ","M","POP","TOTAL","OC0","H","Y30-49","2011","132","","" +"CZ","M","POP","TOTAL","OC0","H","Y50-64","2011","51","","" +"CZ","M","POP","TOTAL","OC0","H","Y65-84","2011","1","","" +"CZ","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","I","Y15-29","2011","1","","" +"CZ","M","POP","TOTAL","OC0","I","Y30-49","2011","3","","" +"CZ","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","J","Y15-29","2011","11","","" +"CZ","M","POP","TOTAL","OC0","J","Y30-49","2011","18","","" +"CZ","M","POP","TOTAL","OC0","J","Y50-64","2011","1","","" +"CZ","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","K","Y15-29","2011","2","","" +"CZ","M","POP","TOTAL","OC0","K","Y30-49","2011","4","","" +"CZ","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC0","L","Y30-49","2011","2","","" +"CZ","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","M","Y15-29","2011","5","","" +"CZ","M","POP","TOTAL","OC0","M","Y30-49","2011","10","","" +"CZ","M","POP","TOTAL","OC0","M","Y50-64","2011","4","","" +"CZ","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","N","Y15-29","2011","32","","" +"CZ","M","POP","TOTAL","OC0","N","Y30-49","2011","53","","" +"CZ","M","POP","TOTAL","OC0","N","Y50-64","2011","18","","" +"CZ","M","POP","TOTAL","OC0","N","Y65-84","2011","1","","" +"CZ","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","O","Y15-29","2011","4177","","" +"CZ","M","POP","TOTAL","OC0","O","Y30-49","2011","9050","","" +"CZ","M","POP","TOTAL","OC0","O","Y50-64","2011","449","","" +"CZ","M","POP","TOTAL","OC0","O","Y65-84","2011","6","","" +"CZ","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","P","Y15-29","2011","6","","" +"CZ","M","POP","TOTAL","OC0","P","Y30-49","2011","12","","" +"CZ","M","POP","TOTAL","OC0","P","Y50-64","2011","4","","" +"CZ","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","Q","Y15-29","2011","19","","" +"CZ","M","POP","TOTAL","OC0","Q","Y30-49","2011","25","","" +"CZ","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","Q","Y65-84","2011","2","","" +"CZ","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","R","Y15-29","2011","5","","" +"CZ","M","POP","TOTAL","OC0","R","Y30-49","2011","16","","" +"CZ","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","S","Y15-29","2011","1","","" +"CZ","M","POP","TOTAL","OC0","S","Y30-49","2011","1","","" +"CZ","M","POP","TOTAL","OC0","S","Y50-64","2011","4","","" +"CZ","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC0","T","Y30-49","2011","1","","" +"CZ","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC0","U","Y30-49","2011","4","","" +"CZ","M","POP","TOTAL","OC0","U","Y50-64","2011","2","","" +"CZ","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC0","UNK","Y15-29","2011","332","","" +"CZ","M","POP","TOTAL","OC0","UNK","Y30-49","2011","576","","" +"CZ","M","POP","TOTAL","OC0","UNK","Y50-64","2011","29","","" +"CZ","M","POP","TOTAL","OC0","UNK","Y65-84","2011","1","","" +"CZ","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","A","Y15-29","2011","249","","" +"CZ","M","POP","TOTAL","OC1","A","Y30-49","2011","2358","","" +"CZ","M","POP","TOTAL","OC1","A","Y50-64","2011","2241","","" +"CZ","M","POP","TOTAL","OC1","A","Y65-84","2011","199","","" +"CZ","M","POP","TOTAL","OC1","A","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","B","Y15-29","2011","44","","" +"CZ","M","POP","TOTAL","OC1","B","Y30-49","2011","579","","" +"CZ","M","POP","TOTAL","OC1","B","Y50-64","2011","540","","" +"CZ","M","POP","TOTAL","OC1","B","Y65-84","2011","35","","" +"CZ","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","C","Y15-29","2011","3312","","" +"CZ","M","POP","TOTAL","OC1","C","Y30-49","2011","29894","","" +"CZ","M","POP","TOTAL","OC1","C","Y50-64","2011","14189","","" +"CZ","M","POP","TOTAL","OC1","C","Y65-84","2011","917","","" +"CZ","M","POP","TOTAL","OC1","C","Y_GE85","2011","7","","" +"CZ","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","D","Y15-29","2011","97","","" +"CZ","M","POP","TOTAL","OC1","D","Y30-49","2011","1809","","" +"CZ","M","POP","TOTAL","OC1","D","Y50-64","2011","1109","","" +"CZ","M","POP","TOTAL","OC1","D","Y65-84","2011","48","","" +"CZ","M","POP","TOTAL","OC1","D","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","E","Y15-29","2011","109","","" +"CZ","M","POP","TOTAL","OC1","E","Y30-49","2011","1505","","" +"CZ","M","POP","TOTAL","OC1","E","Y50-64","2011","952","","" +"CZ","M","POP","TOTAL","OC1","E","Y65-84","2011","54","","" +"CZ","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","F","Y15-29","2011","2372","","" +"CZ","M","POP","TOTAL","OC1","F","Y30-49","2011","14521","","" +"CZ","M","POP","TOTAL","OC1","F","Y50-64","2011","7143","","" +"CZ","M","POP","TOTAL","OC1","F","Y65-84","2011","428","","" +"CZ","M","POP","TOTAL","OC1","F","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","G","Y15-29","2011","2778","","" +"CZ","M","POP","TOTAL","OC1","G","Y30-49","2011","18401","","" +"CZ","M","POP","TOTAL","OC1","G","Y50-64","2011","6273","","" +"CZ","M","POP","TOTAL","OC1","G","Y65-84","2011","383","","" +"CZ","M","POP","TOTAL","OC1","G","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","H","Y15-29","2011","522","","" +"CZ","M","POP","TOTAL","OC1","H","Y30-49","2011","4553","","" +"CZ","M","POP","TOTAL","OC1","H","Y50-64","2011","2316","","" +"CZ","M","POP","TOTAL","OC1","H","Y65-84","2011","83","","" +"CZ","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","I","Y15-29","2011","916","","" +"CZ","M","POP","TOTAL","OC1","I","Y30-49","2011","3735","","" +"CZ","M","POP","TOTAL","OC1","I","Y50-64","2011","1524","","" +"CZ","M","POP","TOTAL","OC1","I","Y65-84","2011","117","","" +"CZ","M","POP","TOTAL","OC1","I","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","J","Y15-29","2011","1258","","" +"CZ","M","POP","TOTAL","OC1","J","Y30-49","2011","7397","","" +"CZ","M","POP","TOTAL","OC1","J","Y50-64","2011","1692","","" +"CZ","M","POP","TOTAL","OC1","J","Y65-84","2011","111","","" +"CZ","M","POP","TOTAL","OC1","J","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","K","Y15-29","2011","607","","" +"CZ","M","POP","TOTAL","OC1","K","Y30-49","2011","4259","","" +"CZ","M","POP","TOTAL","OC1","K","Y50-64","2011","957","","" +"CZ","M","POP","TOTAL","OC1","K","Y65-84","2011","40","","" +"CZ","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","L","Y15-29","2011","185","","" +"CZ","M","POP","TOTAL","OC1","L","Y30-49","2011","1683","","" +"CZ","M","POP","TOTAL","OC1","L","Y50-64","2011","954","","" +"CZ","M","POP","TOTAL","OC1","L","Y65-84","2011","140","","" +"CZ","M","POP","TOTAL","OC1","L","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","M","Y15-29","2011","707","","" +"CZ","M","POP","TOTAL","OC1","M","Y30-49","2011","4839","","" +"CZ","M","POP","TOTAL","OC1","M","Y50-64","2011","1970","","" +"CZ","M","POP","TOTAL","OC1","M","Y65-84","2011","221","","" +"CZ","M","POP","TOTAL","OC1","M","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","N","Y15-29","2011","484","","" +"CZ","M","POP","TOTAL","OC1","N","Y30-49","2011","2551","","" +"CZ","M","POP","TOTAL","OC1","N","Y50-64","2011","1164","","" +"CZ","M","POP","TOTAL","OC1","N","Y65-84","2011","112","","" +"CZ","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","O","Y15-29","2011","369","","" +"CZ","M","POP","TOTAL","OC1","O","Y30-49","2011","5249","","" +"CZ","M","POP","TOTAL","OC1","O","Y50-64","2011","4564","","" +"CZ","M","POP","TOTAL","OC1","O","Y65-84","2011","237","","" +"CZ","M","POP","TOTAL","OC1","O","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","P","Y15-29","2011","174","","" +"CZ","M","POP","TOTAL","OC1","P","Y30-49","2011","2632","","" +"CZ","M","POP","TOTAL","OC1","P","Y50-64","2011","2916","","" +"CZ","M","POP","TOTAL","OC1","P","Y65-84","2011","209","","" +"CZ","M","POP","TOTAL","OC1","P","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","Q","Y15-29","2011","144","","" +"CZ","M","POP","TOTAL","OC1","Q","Y30-49","2011","1772","","" +"CZ","M","POP","TOTAL","OC1","Q","Y50-64","2011","1366","","" +"CZ","M","POP","TOTAL","OC1","Q","Y65-84","2011","122","","" +"CZ","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","R","Y15-29","2011","293","","" +"CZ","M","POP","TOTAL","OC1","R","Y30-49","2011","1810","","" +"CZ","M","POP","TOTAL","OC1","R","Y50-64","2011","870","","" +"CZ","M","POP","TOTAL","OC1","R","Y65-84","2011","95","","" +"CZ","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","S","Y15-29","2011","217","","" +"CZ","M","POP","TOTAL","OC1","S","Y30-49","2011","1123","","" +"CZ","M","POP","TOTAL","OC1","S","Y50-64","2011","725","","" +"CZ","M","POP","TOTAL","OC1","S","Y65-84","2011","91","","" +"CZ","M","POP","TOTAL","OC1","S","Y_GE85","2011","3","","" +"CZ","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","T","Y15-29","2011","1","","" +"CZ","M","POP","TOTAL","OC1","T","Y30-49","2011","9","","" +"CZ","M","POP","TOTAL","OC1","T","Y50-64","2011","6","","" +"CZ","M","POP","TOTAL","OC1","T","Y65-84","2011","2","","" +"CZ","M","POP","TOTAL","OC1","T","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","U","Y15-29","2011","4","","" +"CZ","M","POP","TOTAL","OC1","U","Y30-49","2011","23","","" +"CZ","M","POP","TOTAL","OC1","U","Y50-64","2011","16","","" +"CZ","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC1","UNK","Y15-29","2011","437","","" +"CZ","M","POP","TOTAL","OC1","UNK","Y30-49","2011","2159","","" +"CZ","M","POP","TOTAL","OC1","UNK","Y50-64","2011","998","","" +"CZ","M","POP","TOTAL","OC1","UNK","Y65-84","2011","119","","" +"CZ","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","A","Y15-29","2011","424","","" +"CZ","M","POP","TOTAL","OC2","A","Y30-49","2011","1731","","" +"CZ","M","POP","TOTAL","OC2","A","Y50-64","2011","1158","","" +"CZ","M","POP","TOTAL","OC2","A","Y65-84","2011","175","","" +"CZ","M","POP","TOTAL","OC2","A","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","B","Y15-29","2011","96","","" +"CZ","M","POP","TOTAL","OC2","B","Y30-49","2011","479","","" +"CZ","M","POP","TOTAL","OC2","B","Y50-64","2011","278","","" +"CZ","M","POP","TOTAL","OC2","B","Y65-84","2011","33","","" +"CZ","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","C","Y15-29","2011","8436","","" +"CZ","M","POP","TOTAL","OC2","C","Y30-49","2011","21163","","" +"CZ","M","POP","TOTAL","OC2","C","Y50-64","2011","6773","","" +"CZ","M","POP","TOTAL","OC2","C","Y65-84","2011","677","","" +"CZ","M","POP","TOTAL","OC2","C","Y_GE85","2011","6","","" +"CZ","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","D","Y15-29","2011","510","","" +"CZ","M","POP","TOTAL","OC2","D","Y30-49","2011","1518","","" +"CZ","M","POP","TOTAL","OC2","D","Y50-64","2011","764","","" +"CZ","M","POP","TOTAL","OC2","D","Y65-84","2011","84","","" +"CZ","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","E","Y15-29","2011","156","","" +"CZ","M","POP","TOTAL","OC2","E","Y30-49","2011","554","","" +"CZ","M","POP","TOTAL","OC2","E","Y50-64","2011","274","","" +"CZ","M","POP","TOTAL","OC2","E","Y65-84","2011","57","","" +"CZ","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","F","Y15-29","2011","2985","","" +"CZ","M","POP","TOTAL","OC2","F","Y30-49","2011","6832","","" +"CZ","M","POP","TOTAL","OC2","F","Y50-64","2011","3363","","" +"CZ","M","POP","TOTAL","OC2","F","Y65-84","2011","704","","" +"CZ","M","POP","TOTAL","OC2","F","Y_GE85","2011","5","","" +"CZ","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","G","Y15-29","2011","2062","","" +"CZ","M","POP","TOTAL","OC2","G","Y30-49","2011","5694","","" +"CZ","M","POP","TOTAL","OC2","G","Y50-64","2011","1064","","" +"CZ","M","POP","TOTAL","OC2","G","Y65-84","2011","82","","" +"CZ","M","POP","TOTAL","OC2","G","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","H","Y15-29","2011","650","","" +"CZ","M","POP","TOTAL","OC2","H","Y30-49","2011","2006","","" +"CZ","M","POP","TOTAL","OC2","H","Y50-64","2011","877","","" +"CZ","M","POP","TOTAL","OC2","H","Y65-84","2011","50","","" +"CZ","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","I","Y15-29","2011","144","","" +"CZ","M","POP","TOTAL","OC2","I","Y30-49","2011","242","","" +"CZ","M","POP","TOTAL","OC2","I","Y50-64","2011","73","","" +"CZ","M","POP","TOTAL","OC2","I","Y65-84","2011","7","","" +"CZ","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","J","Y15-29","2011","17672","","" +"CZ","M","POP","TOTAL","OC2","J","Y30-49","2011","30782","","" +"CZ","M","POP","TOTAL","OC2","J","Y50-64","2011","5340","","" +"CZ","M","POP","TOTAL","OC2","J","Y65-84","2011","407","","" +"CZ","M","POP","TOTAL","OC2","J","Y_GE85","2011","3","","" +"CZ","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","K","Y15-29","2011","5208","","" +"CZ","M","POP","TOTAL","OC2","K","Y30-49","2011","10662","","" +"CZ","M","POP","TOTAL","OC2","K","Y50-64","2011","2636","","" +"CZ","M","POP","TOTAL","OC2","K","Y65-84","2011","201","","" +"CZ","M","POP","TOTAL","OC2","K","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","L","Y15-29","2011","148","","" +"CZ","M","POP","TOTAL","OC2","L","Y30-49","2011","597","","" +"CZ","M","POP","TOTAL","OC2","L","Y50-64","2011","310","","" +"CZ","M","POP","TOTAL","OC2","L","Y65-84","2011","116","","" +"CZ","M","POP","TOTAL","OC2","L","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","M","Y15-29","2011","11617","","" +"CZ","M","POP","TOTAL","OC2","M","Y30-49","2011","26825","","" +"CZ","M","POP","TOTAL","OC2","M","Y50-64","2011","11460","","" +"CZ","M","POP","TOTAL","OC2","M","Y65-84","2011","3160","","" +"CZ","M","POP","TOTAL","OC2","M","Y_GE85","2011","41","","" +"CZ","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","N","Y15-29","2011","788","","" +"CZ","M","POP","TOTAL","OC2","N","Y30-49","2011","1393","","" +"CZ","M","POP","TOTAL","OC2","N","Y50-64","2011","381","","" +"CZ","M","POP","TOTAL","OC2","N","Y65-84","2011","52","","" +"CZ","M","POP","TOTAL","OC2","N","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","O","Y15-29","2011","1592","","" +"CZ","M","POP","TOTAL","OC2","O","Y30-49","2011","7290","","" +"CZ","M","POP","TOTAL","OC2","O","Y50-64","2011","3868","","" +"CZ","M","POP","TOTAL","OC2","O","Y65-84","2011","307","","" +"CZ","M","POP","TOTAL","OC2","O","Y_GE85","2011","5","","" +"CZ","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","P","Y15-29","2011","5780","","" +"CZ","M","POP","TOTAL","OC2","P","Y30-49","2011","21870","","" +"CZ","M","POP","TOTAL","OC2","P","Y50-64","2011","15254","","" +"CZ","M","POP","TOTAL","OC2","P","Y65-84","2011","3698","","" +"CZ","M","POP","TOTAL","OC2","P","Y_GE85","2011","19","","" +"CZ","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","Q","Y15-29","2011","3114","","" +"CZ","M","POP","TOTAL","OC2","Q","Y30-49","2011","11836","","" +"CZ","M","POP","TOTAL","OC2","Q","Y50-64","2011","8532","","" +"CZ","M","POP","TOTAL","OC2","Q","Y65-84","2011","1816","","" +"CZ","M","POP","TOTAL","OC2","Q","Y_GE85","2011","33","","" +"CZ","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","R","Y15-29","2011","1968","","" +"CZ","M","POP","TOTAL","OC2","R","Y30-49","2011","5666","","" +"CZ","M","POP","TOTAL","OC2","R","Y50-64","2011","2671","","" +"CZ","M","POP","TOTAL","OC2","R","Y65-84","2011","573","","" +"CZ","M","POP","TOTAL","OC2","R","Y_GE85","2011","27","","" +"CZ","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","S","Y15-29","2011","581","","" +"CZ","M","POP","TOTAL","OC2","S","Y30-49","2011","2346","","" +"CZ","M","POP","TOTAL","OC2","S","Y50-64","2011","1018","","" +"CZ","M","POP","TOTAL","OC2","S","Y65-84","2011","298","","" +"CZ","M","POP","TOTAL","OC2","S","Y_GE85","2011","21","","" +"CZ","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC2","T","Y30-49","2011","8","","" +"CZ","M","POP","TOTAL","OC2","T","Y50-64","2011","6","","" +"CZ","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","U","Y15-29","2011","17","","" +"CZ","M","POP","TOTAL","OC2","U","Y30-49","2011","57","","" +"CZ","M","POP","TOTAL","OC2","U","Y50-64","2011","14","","" +"CZ","M","POP","TOTAL","OC2","U","Y65-84","2011","2","","" +"CZ","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC2","UNK","Y15-29","2011","1428","","" +"CZ","M","POP","TOTAL","OC2","UNK","Y30-49","2011","3102","","" +"CZ","M","POP","TOTAL","OC2","UNK","Y50-64","2011","1858","","" +"CZ","M","POP","TOTAL","OC2","UNK","Y65-84","2011","685","","" +"CZ","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","23","","" +"CZ","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","A","Y15-29","2011","1118","","" +"CZ","M","POP","TOTAL","OC3","A","Y30-49","2011","4864","","" +"CZ","M","POP","TOTAL","OC3","A","Y50-64","2011","4508","","" +"CZ","M","POP","TOTAL","OC3","A","Y65-84","2011","269","","" +"CZ","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","B","Y15-29","2011","284","","" +"CZ","M","POP","TOTAL","OC3","B","Y30-49","2011","2368","","" +"CZ","M","POP","TOTAL","OC3","B","Y50-64","2011","1614","","" +"CZ","M","POP","TOTAL","OC3","B","Y65-84","2011","61","","" +"CZ","M","POP","TOTAL","OC3","B","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","C","Y15-29","2011","22768","","" +"CZ","M","POP","TOTAL","OC3","C","Y30-49","2011","63019","","" +"CZ","M","POP","TOTAL","OC3","C","Y50-64","2011","29424","","" +"CZ","M","POP","TOTAL","OC3","C","Y65-84","2011","1738","","" +"CZ","M","POP","TOTAL","OC3","C","Y_GE85","2011","4","","" +"CZ","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","D","Y15-29","2011","1057","","" +"CZ","M","POP","TOTAL","OC3","D","Y30-49","2011","5829","","" +"CZ","M","POP","TOTAL","OC3","D","Y50-64","2011","3926","","" +"CZ","M","POP","TOTAL","OC3","D","Y65-84","2011","229","","" +"CZ","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","E","Y15-29","2011","453","","" +"CZ","M","POP","TOTAL","OC3","E","Y30-49","2011","2329","","" +"CZ","M","POP","TOTAL","OC3","E","Y50-64","2011","1508","","" +"CZ","M","POP","TOTAL","OC3","E","Y65-84","2011","117","","" +"CZ","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","F","Y15-29","2011","5265","","" +"CZ","M","POP","TOTAL","OC3","F","Y30-49","2011","16112","","" +"CZ","M","POP","TOTAL","OC3","F","Y50-64","2011","9017","","" +"CZ","M","POP","TOTAL","OC3","F","Y65-84","2011","852","","" +"CZ","M","POP","TOTAL","OC3","F","Y_GE85","2011","4","","" +"CZ","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","G","Y15-29","2011","9545","","" +"CZ","M","POP","TOTAL","OC3","G","Y30-49","2011","30152","","" +"CZ","M","POP","TOTAL","OC3","G","Y50-64","2011","10537","","" +"CZ","M","POP","TOTAL","OC3","G","Y65-84","2011","863","","" +"CZ","M","POP","TOTAL","OC3","G","Y_GE85","2011","4","","" +"CZ","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","H","Y15-29","2011","2076","","" +"CZ","M","POP","TOTAL","OC3","H","Y30-49","2011","6569","","" +"CZ","M","POP","TOTAL","OC3","H","Y50-64","2011","3618","","" +"CZ","M","POP","TOTAL","OC3","H","Y65-84","2011","168","","" +"CZ","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","I","Y15-29","2011","517","","" +"CZ","M","POP","TOTAL","OC3","I","Y30-49","2011","1737","","" +"CZ","M","POP","TOTAL","OC3","I","Y50-64","2011","582","","" +"CZ","M","POP","TOTAL","OC3","I","Y65-84","2011","37","","" +"CZ","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","J","Y15-29","2011","5710","","" +"CZ","M","POP","TOTAL","OC3","J","Y30-49","2011","11775","","" +"CZ","M","POP","TOTAL","OC3","J","Y50-64","2011","3436","","" +"CZ","M","POP","TOTAL","OC3","J","Y65-84","2011","273","","" +"CZ","M","POP","TOTAL","OC3","J","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","K","Y15-29","2011","3446","","" +"CZ","M","POP","TOTAL","OC3","K","Y30-49","2011","7348","","" +"CZ","M","POP","TOTAL","OC3","K","Y50-64","2011","3588","","" +"CZ","M","POP","TOTAL","OC3","K","Y65-84","2011","365","","" +"CZ","M","POP","TOTAL","OC3","K","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","L","Y15-29","2011","1250","","" +"CZ","M","POP","TOTAL","OC3","L","Y30-49","2011","4516","","" +"CZ","M","POP","TOTAL","OC3","L","Y50-64","2011","2467","","" +"CZ","M","POP","TOTAL","OC3","L","Y65-84","2011","373","","" +"CZ","M","POP","TOTAL","OC3","L","Y_GE85","2011","3","","" +"CZ","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","M","Y15-29","2011","4172","","" +"CZ","M","POP","TOTAL","OC3","M","Y30-49","2011","10237","","" +"CZ","M","POP","TOTAL","OC3","M","Y50-64","2011","5998","","" +"CZ","M","POP","TOTAL","OC3","M","Y65-84","2011","1423","","" +"CZ","M","POP","TOTAL","OC3","M","Y_GE85","2011","5","","" +"CZ","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","N","Y15-29","2011","2011","","" +"CZ","M","POP","TOTAL","OC3","N","Y30-49","2011","4868","","" +"CZ","M","POP","TOTAL","OC3","N","Y50-64","2011","3305","","" +"CZ","M","POP","TOTAL","OC3","N","Y65-84","2011","366","","" +"CZ","M","POP","TOTAL","OC3","N","Y_GE85","2011","3","","" +"CZ","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","O","Y15-29","2011","3961","","" +"CZ","M","POP","TOTAL","OC3","O","Y30-49","2011","18971","","" +"CZ","M","POP","TOTAL","OC3","O","Y50-64","2011","10960","","" +"CZ","M","POP","TOTAL","OC3","O","Y65-84","2011","493","","" +"CZ","M","POP","TOTAL","OC3","O","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","P","Y15-29","2011","527","","" +"CZ","M","POP","TOTAL","OC3","P","Y30-49","2011","1199","","" +"CZ","M","POP","TOTAL","OC3","P","Y50-64","2011","1064","","" +"CZ","M","POP","TOTAL","OC3","P","Y65-84","2011","256","","" +"CZ","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","Q","Y15-29","2011","1844","","" +"CZ","M","POP","TOTAL","OC3","Q","Y30-49","2011","4093","","" +"CZ","M","POP","TOTAL","OC3","Q","Y50-64","2011","2158","","" +"CZ","M","POP","TOTAL","OC3","Q","Y65-84","2011","224","","" +"CZ","M","POP","TOTAL","OC3","Q","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","R","Y15-29","2011","2950","","" +"CZ","M","POP","TOTAL","OC3","R","Y30-49","2011","4513","","" +"CZ","M","POP","TOTAL","OC3","R","Y50-64","2011","1654","","" +"CZ","M","POP","TOTAL","OC3","R","Y65-84","2011","273","","" +"CZ","M","POP","TOTAL","OC3","R","Y_GE85","2011","3","","" +"CZ","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","S","Y15-29","2011","1059","","" +"CZ","M","POP","TOTAL","OC3","S","Y30-49","2011","2260","","" +"CZ","M","POP","TOTAL","OC3","S","Y50-64","2011","1206","","" +"CZ","M","POP","TOTAL","OC3","S","Y65-84","2011","186","","" +"CZ","M","POP","TOTAL","OC3","S","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","T","Y15-29","2011","7","","" +"CZ","M","POP","TOTAL","OC3","T","Y30-49","2011","29","","" +"CZ","M","POP","TOTAL","OC3","T","Y50-64","2011","23","","" +"CZ","M","POP","TOTAL","OC3","T","Y65-84","2011","3","","" +"CZ","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","U","Y15-29","2011","16","","" +"CZ","M","POP","TOTAL","OC3","U","Y30-49","2011","61","","" +"CZ","M","POP","TOTAL","OC3","U","Y50-64","2011","18","","" +"CZ","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC3","UNK","Y15-29","2011","3462","","" +"CZ","M","POP","TOTAL","OC3","UNK","Y30-49","2011","7296","","" +"CZ","M","POP","TOTAL","OC3","UNK","Y50-64","2011","4129","","" +"CZ","M","POP","TOTAL","OC3","UNK","Y65-84","2011","534","","" +"CZ","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","5","","" +"CZ","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","A","Y15-29","2011","64","","" +"CZ","M","POP","TOTAL","OC4","A","Y30-49","2011","264","","" +"CZ","M","POP","TOTAL","OC4","A","Y50-64","2011","224","","" +"CZ","M","POP","TOTAL","OC4","A","Y65-84","2011","21","","" +"CZ","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","B","Y15-29","2011","43","","" +"CZ","M","POP","TOTAL","OC4","B","Y30-49","2011","182","","" +"CZ","M","POP","TOTAL","OC4","B","Y50-64","2011","114","","" +"CZ","M","POP","TOTAL","OC4","B","Y65-84","2011","3","","" +"CZ","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","C","Y15-29","2011","3448","","" +"CZ","M","POP","TOTAL","OC4","C","Y30-49","2011","8180","","" +"CZ","M","POP","TOTAL","OC4","C","Y50-64","2011","2863","","" +"CZ","M","POP","TOTAL","OC4","C","Y65-84","2011","79","","" +"CZ","M","POP","TOTAL","OC4","C","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","D","Y15-29","2011","122","","" +"CZ","M","POP","TOTAL","OC4","D","Y30-49","2011","302","","" +"CZ","M","POP","TOTAL","OC4","D","Y50-64","2011","240","","" +"CZ","M","POP","TOTAL","OC4","D","Y65-84","2011","6","","" +"CZ","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","E","Y15-29","2011","53","","" +"CZ","M","POP","TOTAL","OC4","E","Y30-49","2011","201","","" +"CZ","M","POP","TOTAL","OC4","E","Y50-64","2011","135","","" +"CZ","M","POP","TOTAL","OC4","E","Y65-84","2011","6","","" +"CZ","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","F","Y15-29","2011","366","","" +"CZ","M","POP","TOTAL","OC4","F","Y30-49","2011","879","","" +"CZ","M","POP","TOTAL","OC4","F","Y50-64","2011","424","","" +"CZ","M","POP","TOTAL","OC4","F","Y65-84","2011","32","","" +"CZ","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","G","Y15-29","2011","1955","","" +"CZ","M","POP","TOTAL","OC4","G","Y30-49","2011","4423","","" +"CZ","M","POP","TOTAL","OC4","G","Y50-64","2011","1285","","" +"CZ","M","POP","TOTAL","OC4","G","Y65-84","2011","67","","" +"CZ","M","POP","TOTAL","OC4","G","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","H","Y15-29","2011","5216","","" +"CZ","M","POP","TOTAL","OC4","H","Y30-49","2011","16063","","" +"CZ","M","POP","TOTAL","OC4","H","Y50-64","2011","7158","","" +"CZ","M","POP","TOTAL","OC4","H","Y65-84","2011","294","","" +"CZ","M","POP","TOTAL","OC4","H","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","I","Y15-29","2011","757","","" +"CZ","M","POP","TOTAL","OC4","I","Y30-49","2011","668","","" +"CZ","M","POP","TOTAL","OC4","I","Y50-64","2011","278","","" +"CZ","M","POP","TOTAL","OC4","I","Y65-84","2011","42","","" +"CZ","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","J","Y15-29","2011","2117","","" +"CZ","M","POP","TOTAL","OC4","J","Y30-49","2011","1758","","" +"CZ","M","POP","TOTAL","OC4","J","Y50-64","2011","389","","" +"CZ","M","POP","TOTAL","OC4","J","Y65-84","2011","53","","" +"CZ","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","K","Y15-29","2011","744","","" +"CZ","M","POP","TOTAL","OC4","K","Y30-49","2011","870","","" +"CZ","M","POP","TOTAL","OC4","K","Y50-64","2011","278","","" +"CZ","M","POP","TOTAL","OC4","K","Y65-84","2011","25","","" +"CZ","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","L","Y15-29","2011","57","","" +"CZ","M","POP","TOTAL","OC4","L","Y30-49","2011","136","","" +"CZ","M","POP","TOTAL","OC4","L","Y50-64","2011","90","","" +"CZ","M","POP","TOTAL","OC4","L","Y65-84","2011","21","","" +"CZ","M","POP","TOTAL","OC4","L","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","M","Y15-29","2011","506","","" +"CZ","M","POP","TOTAL","OC4","M","Y30-49","2011","601","","" +"CZ","M","POP","TOTAL","OC4","M","Y50-64","2011","208","","" +"CZ","M","POP","TOTAL","OC4","M","Y65-84","2011","55","","" +"CZ","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","N","Y15-29","2011","1707","","" +"CZ","M","POP","TOTAL","OC4","N","Y30-49","2011","1925","","" +"CZ","M","POP","TOTAL","OC4","N","Y50-64","2011","820","","" +"CZ","M","POP","TOTAL","OC4","N","Y65-84","2011","113","","" +"CZ","M","POP","TOTAL","OC4","N","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","O","Y15-29","2011","513","","" +"CZ","M","POP","TOTAL","OC4","O","Y30-49","2011","1384","","" +"CZ","M","POP","TOTAL","OC4","O","Y50-64","2011","892","","" +"CZ","M","POP","TOTAL","OC4","O","Y65-84","2011","78","","" +"CZ","M","POP","TOTAL","OC4","O","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","P","Y15-29","2011","120","","" +"CZ","M","POP","TOTAL","OC4","P","Y30-49","2011","147","","" +"CZ","M","POP","TOTAL","OC4","P","Y50-64","2011","131","","" +"CZ","M","POP","TOTAL","OC4","P","Y65-84","2011","48","","" +"CZ","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","Q","Y15-29","2011","206","","" +"CZ","M","POP","TOTAL","OC4","Q","Y30-49","2011","345","","" +"CZ","M","POP","TOTAL","OC4","Q","Y50-64","2011","222","","" +"CZ","M","POP","TOTAL","OC4","Q","Y65-84","2011","44","","" +"CZ","M","POP","TOTAL","OC4","Q","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","R","Y15-29","2011","812","","" +"CZ","M","POP","TOTAL","OC4","R","Y30-49","2011","1075","","" +"CZ","M","POP","TOTAL","OC4","R","Y50-64","2011","287","","" +"CZ","M","POP","TOTAL","OC4","R","Y65-84","2011","72","","" +"CZ","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","S","Y15-29","2011","181","","" +"CZ","M","POP","TOTAL","OC4","S","Y30-49","2011","295","","" +"CZ","M","POP","TOTAL","OC4","S","Y50-64","2011","128","","" +"CZ","M","POP","TOTAL","OC4","S","Y65-84","2011","19","","" +"CZ","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","T","Y15-29","2011","3","","" +"CZ","M","POP","TOTAL","OC4","T","Y30-49","2011","8","","" +"CZ","M","POP","TOTAL","OC4","T","Y50-64","2011","4","","" +"CZ","M","POP","TOTAL","OC4","T","Y65-84","2011","1","","" +"CZ","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","U","Y15-29","2011","6","","" +"CZ","M","POP","TOTAL","OC4","U","Y30-49","2011","7","","" +"CZ","M","POP","TOTAL","OC4","U","Y50-64","2011","3","","" +"CZ","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC4","UNK","Y15-29","2011","842","","" +"CZ","M","POP","TOTAL","OC4","UNK","Y30-49","2011","1572","","" +"CZ","M","POP","TOTAL","OC4","UNK","Y50-64","2011","854","","" +"CZ","M","POP","TOTAL","OC4","UNK","Y65-84","2011","81","","" +"CZ","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","A","Y15-29","2011","224","","" +"CZ","M","POP","TOTAL","OC5","A","Y30-49","2011","883","","" +"CZ","M","POP","TOTAL","OC5","A","Y50-64","2011","922","","" +"CZ","M","POP","TOTAL","OC5","A","Y65-84","2011","106","","" +"CZ","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","B","Y15-29","2011","39","","" +"CZ","M","POP","TOTAL","OC5","B","Y30-49","2011","218","","" +"CZ","M","POP","TOTAL","OC5","B","Y50-64","2011","173","","" +"CZ","M","POP","TOTAL","OC5","B","Y65-84","2011","18","","" +"CZ","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","C","Y15-29","2011","2292","","" +"CZ","M","POP","TOTAL","OC5","C","Y30-49","2011","5231","","" +"CZ","M","POP","TOTAL","OC5","C","Y50-64","2011","3702","","" +"CZ","M","POP","TOTAL","OC5","C","Y65-84","2011","355","","" +"CZ","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","D","Y15-29","2011","61","","" +"CZ","M","POP","TOTAL","OC5","D","Y30-49","2011","305","","" +"CZ","M","POP","TOTAL","OC5","D","Y50-64","2011","223","","" +"CZ","M","POP","TOTAL","OC5","D","Y65-84","2011","15","","" +"CZ","M","POP","TOTAL","OC5","D","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","E","Y15-29","2011","33","","" +"CZ","M","POP","TOTAL","OC5","E","Y30-49","2011","193","","" +"CZ","M","POP","TOTAL","OC5","E","Y50-64","2011","212","","" +"CZ","M","POP","TOTAL","OC5","E","Y65-84","2011","50","","" +"CZ","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","F","Y15-29","2011","261","","" +"CZ","M","POP","TOTAL","OC5","F","Y30-49","2011","909","","" +"CZ","M","POP","TOTAL","OC5","F","Y50-64","2011","652","","" +"CZ","M","POP","TOTAL","OC5","F","Y65-84","2011","76","","" +"CZ","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","G","Y15-29","2011","14312","","" +"CZ","M","POP","TOTAL","OC5","G","Y30-49","2011","30702","","" +"CZ","M","POP","TOTAL","OC5","G","Y50-64","2011","11555","","" +"CZ","M","POP","TOTAL","OC5","G","Y65-84","2011","859","","" +"CZ","M","POP","TOTAL","OC5","G","Y_GE85","2011","5","","" +"CZ","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","H","Y15-29","2011","913","","" +"CZ","M","POP","TOTAL","OC5","H","Y30-49","2011","3052","","" +"CZ","M","POP","TOTAL","OC5","H","Y50-64","2011","1608","","" +"CZ","M","POP","TOTAL","OC5","H","Y65-84","2011","137","","" +"CZ","M","POP","TOTAL","OC5","H","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","I","Y15-29","2011","17494","","" +"CZ","M","POP","TOTAL","OC5","I","Y30-49","2011","25144","","" +"CZ","M","POP","TOTAL","OC5","I","Y50-64","2011","6758","","" +"CZ","M","POP","TOTAL","OC5","I","Y65-84","2011","308","","" +"CZ","M","POP","TOTAL","OC5","I","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","J","Y15-29","2011","514","","" +"CZ","M","POP","TOTAL","OC5","J","Y30-49","2011","669","","" +"CZ","M","POP","TOTAL","OC5","J","Y50-64","2011","202","","" +"CZ","M","POP","TOTAL","OC5","J","Y65-84","2011","31","","" +"CZ","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","K","Y15-29","2011","214","","" +"CZ","M","POP","TOTAL","OC5","K","Y30-49","2011","363","","" +"CZ","M","POP","TOTAL","OC5","K","Y50-64","2011","121","","" +"CZ","M","POP","TOTAL","OC5","K","Y65-84","2011","13","","" +"CZ","M","POP","TOTAL","OC5","K","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","L","Y15-29","2011","215","","" +"CZ","M","POP","TOTAL","OC5","L","Y30-49","2011","982","","" +"CZ","M","POP","TOTAL","OC5","L","Y50-64","2011","969","","" +"CZ","M","POP","TOTAL","OC5","L","Y65-84","2011","219","","" +"CZ","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","M","Y15-29","2011","205","","" +"CZ","M","POP","TOTAL","OC5","M","Y30-49","2011","455","","" +"CZ","M","POP","TOTAL","OC5","M","Y50-64","2011","284","","" +"CZ","M","POP","TOTAL","OC5","M","Y65-84","2011","71","","" +"CZ","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","N","Y15-29","2011","2872","","" +"CZ","M","POP","TOTAL","OC5","N","Y30-49","2011","7088","","" +"CZ","M","POP","TOTAL","OC5","N","Y50-64","2011","9251","","" +"CZ","M","POP","TOTAL","OC5","N","Y65-84","2011","1374","","" +"CZ","M","POP","TOTAL","OC5","N","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","O","Y15-29","2011","11386","","" +"CZ","M","POP","TOTAL","OC5","O","Y30-49","2011","31517","","" +"CZ","M","POP","TOTAL","OC5","O","Y50-64","2011","6525","","" +"CZ","M","POP","TOTAL","OC5","O","Y65-84","2011","247","","" +"CZ","M","POP","TOTAL","OC5","O","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","P","Y15-29","2011","346","","" +"CZ","M","POP","TOTAL","OC5","P","Y30-49","2011","2121","","" +"CZ","M","POP","TOTAL","OC5","P","Y50-64","2011","3383","","" +"CZ","M","POP","TOTAL","OC5","P","Y65-84","2011","611","","" +"CZ","M","POP","TOTAL","OC5","P","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","Q","Y15-29","2011","1799","","" +"CZ","M","POP","TOTAL","OC5","Q","Y30-49","2011","3868","","" +"CZ","M","POP","TOTAL","OC5","Q","Y50-64","2011","2347","","" +"CZ","M","POP","TOTAL","OC5","Q","Y65-84","2011","172","","" +"CZ","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","R","Y15-29","2011","1080","","" +"CZ","M","POP","TOTAL","OC5","R","Y30-49","2011","1838","","" +"CZ","M","POP","TOTAL","OC5","R","Y50-64","2011","1110","","" +"CZ","M","POP","TOTAL","OC5","R","Y65-84","2011","255","","" +"CZ","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","S","Y15-29","2011","1269","","" +"CZ","M","POP","TOTAL","OC5","S","Y30-49","2011","2325","","" +"CZ","M","POP","TOTAL","OC5","S","Y50-64","2011","1216","","" +"CZ","M","POP","TOTAL","OC5","S","Y65-84","2011","141","","" +"CZ","M","POP","TOTAL","OC5","S","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","T","Y15-29","2011","69","","" +"CZ","M","POP","TOTAL","OC5","T","Y30-49","2011","212","","" +"CZ","M","POP","TOTAL","OC5","T","Y50-64","2011","235","","" +"CZ","M","POP","TOTAL","OC5","T","Y65-84","2011","38","","" +"CZ","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","U","Y15-29","2011","1","","" +"CZ","M","POP","TOTAL","OC5","U","Y30-49","2011","6","","" +"CZ","M","POP","TOTAL","OC5","U","Y50-64","2011","6","","" +"CZ","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC5","UNK","Y15-29","2011","4868","","" +"CZ","M","POP","TOTAL","OC5","UNK","Y30-49","2011","8252","","" +"CZ","M","POP","TOTAL","OC5","UNK","Y50-64","2011","5124","","" +"CZ","M","POP","TOTAL","OC5","UNK","Y65-84","2011","790","","" +"CZ","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","A","Y15-29","2011","4455","","" +"CZ","M","POP","TOTAL","OC6","A","Y30-49","2011","16362","","" +"CZ","M","POP","TOTAL","OC6","A","Y50-64","2011","11512","","" +"CZ","M","POP","TOTAL","OC6","A","Y65-84","2011","1103","","" +"CZ","M","POP","TOTAL","OC6","A","Y_GE85","2011","11","","" +"CZ","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","B","Y15-29","2011","7","","" +"CZ","M","POP","TOTAL","OC6","B","Y30-49","2011","20","","" +"CZ","M","POP","TOTAL","OC6","B","Y50-64","2011","14","","" +"CZ","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","C","Y15-29","2011","123","","" +"CZ","M","POP","TOTAL","OC6","C","Y30-49","2011","304","","" +"CZ","M","POP","TOTAL","OC6","C","Y50-64","2011","226","","" +"CZ","M","POP","TOTAL","OC6","C","Y65-84","2011","11","","" +"CZ","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC6","D","Y30-49","2011","3","","" +"CZ","M","POP","TOTAL","OC6","D","Y50-64","2011","2","","" +"CZ","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","E","Y15-29","2011","3","","" +"CZ","M","POP","TOTAL","OC6","E","Y30-49","2011","25","","" +"CZ","M","POP","TOTAL","OC6","E","Y50-64","2011","17","","" +"CZ","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","F","Y15-29","2011","26","","" +"CZ","M","POP","TOTAL","OC6","F","Y30-49","2011","54","","" +"CZ","M","POP","TOTAL","OC6","F","Y50-64","2011","20","","" +"CZ","M","POP","TOTAL","OC6","F","Y65-84","2011","2","","" +"CZ","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","G","Y15-29","2011","36","","" +"CZ","M","POP","TOTAL","OC6","G","Y30-49","2011","132","","" +"CZ","M","POP","TOTAL","OC6","G","Y50-64","2011","61","","" +"CZ","M","POP","TOTAL","OC6","G","Y65-84","2011","5","","" +"CZ","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","H","Y15-29","2011","26","","" +"CZ","M","POP","TOTAL","OC6","H","Y30-49","2011","50","","" +"CZ","M","POP","TOTAL","OC6","H","Y50-64","2011","40","","" +"CZ","M","POP","TOTAL","OC6","H","Y65-84","2011","1","","" +"CZ","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","I","Y15-29","2011","2","","" +"CZ","M","POP","TOTAL","OC6","I","Y30-49","2011","15","","" +"CZ","M","POP","TOTAL","OC6","I","Y50-64","2011","15","","" +"CZ","M","POP","TOTAL","OC6","I","Y65-84","2011","1","","" +"CZ","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","J","Y15-29","2011","5","","" +"CZ","M","POP","TOTAL","OC6","J","Y30-49","2011","2","","" +"CZ","M","POP","TOTAL","OC6","J","Y50-64","2011","1","","" +"CZ","M","POP","TOTAL","OC6","J","Y65-84","2011","1","","" +"CZ","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","K","Y15-29","2011","2","","" +"CZ","M","POP","TOTAL","OC6","K","Y30-49","2011","5","","" +"CZ","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","L","Y15-29","2011","3","","" +"CZ","M","POP","TOTAL","OC6","L","Y30-49","2011","9","","" +"CZ","M","POP","TOTAL","OC6","L","Y50-64","2011","7","","" +"CZ","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","M","Y15-29","2011","23","","" +"CZ","M","POP","TOTAL","OC6","M","Y30-49","2011","39","","" +"CZ","M","POP","TOTAL","OC6","M","Y50-64","2011","19","","" +"CZ","M","POP","TOTAL","OC6","M","Y65-84","2011","4","","" +"CZ","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","N","Y15-29","2011","558","","" +"CZ","M","POP","TOTAL","OC6","N","Y30-49","2011","1372","","" +"CZ","M","POP","TOTAL","OC6","N","Y50-64","2011","767","","" +"CZ","M","POP","TOTAL","OC6","N","Y65-84","2011","44","","" +"CZ","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","O","Y15-29","2011","51","","" +"CZ","M","POP","TOTAL","OC6","O","Y30-49","2011","113","","" +"CZ","M","POP","TOTAL","OC6","O","Y50-64","2011","93","","" +"CZ","M","POP","TOTAL","OC6","O","Y65-84","2011","7","","" +"CZ","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","P","Y15-29","2011","11","","" +"CZ","M","POP","TOTAL","OC6","P","Y30-49","2011","15","","" +"CZ","M","POP","TOTAL","OC6","P","Y50-64","2011","28","","" +"CZ","M","POP","TOTAL","OC6","P","Y65-84","2011","5","","" +"CZ","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","Q","Y15-29","2011","67","","" +"CZ","M","POP","TOTAL","OC6","Q","Y30-49","2011","142","","" +"CZ","M","POP","TOTAL","OC6","Q","Y50-64","2011","70","","" +"CZ","M","POP","TOTAL","OC6","Q","Y65-84","2011","3","","" +"CZ","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","R","Y15-29","2011","46","","" +"CZ","M","POP","TOTAL","OC6","R","Y30-49","2011","131","","" +"CZ","M","POP","TOTAL","OC6","R","Y50-64","2011","47","","" +"CZ","M","POP","TOTAL","OC6","R","Y65-84","2011","3","","" +"CZ","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","S","Y15-29","2011","25","","" +"CZ","M","POP","TOTAL","OC6","S","Y30-49","2011","86","","" +"CZ","M","POP","TOTAL","OC6","S","Y50-64","2011","38","","" +"CZ","M","POP","TOTAL","OC6","S","Y65-84","2011","2","","" +"CZ","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC6","T","Y30-49","2011","4","","" +"CZ","M","POP","TOTAL","OC6","T","Y50-64","2011","4","","" +"CZ","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","U","Y15-29","2011","1","","" +"CZ","M","POP","TOTAL","OC6","U","Y30-49","2011","3","","" +"CZ","M","POP","TOTAL","OC6","U","Y50-64","2011","1","","" +"CZ","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC6","UNK","Y15-29","2011","478","","" +"CZ","M","POP","TOTAL","OC6","UNK","Y30-49","2011","1501","","" +"CZ","M","POP","TOTAL","OC6","UNK","Y50-64","2011","1117","","" +"CZ","M","POP","TOTAL","OC6","UNK","Y65-84","2011","134","","" +"CZ","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","A","Y15-29","2011","1157","","" +"CZ","M","POP","TOTAL","OC7","A","Y30-49","2011","3824","","" +"CZ","M","POP","TOTAL","OC7","A","Y50-64","2011","4497","","" +"CZ","M","POP","TOTAL","OC7","A","Y65-84","2011","101","","" +"CZ","M","POP","TOTAL","OC7","A","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","B","Y15-29","2011","592","","" +"CZ","M","POP","TOTAL","OC7","B","Y30-49","2011","4642","","" +"CZ","M","POP","TOTAL","OC7","B","Y50-64","2011","2653","","" +"CZ","M","POP","TOTAL","OC7","B","Y65-84","2011","18","","" +"CZ","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","C","Y15-29","2011","54554","","" +"CZ","M","POP","TOTAL","OC7","C","Y30-49","2011","142246","","" +"CZ","M","POP","TOTAL","OC7","C","Y50-64","2011","75043","","" +"CZ","M","POP","TOTAL","OC7","C","Y65-84","2011","2292","","" +"CZ","M","POP","TOTAL","OC7","C","Y_GE85","2011","15","","" +"CZ","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","D","Y15-29","2011","1898","","" +"CZ","M","POP","TOTAL","OC7","D","Y30-49","2011","6716","","" +"CZ","M","POP","TOTAL","OC7","D","Y50-64","2011","3909","","" +"CZ","M","POP","TOTAL","OC7","D","Y65-84","2011","114","","" +"CZ","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","E","Y15-29","2011","546","","" +"CZ","M","POP","TOTAL","OC7","E","Y30-49","2011","2734","","" +"CZ","M","POP","TOTAL","OC7","E","Y50-64","2011","2021","","" +"CZ","M","POP","TOTAL","OC7","E","Y65-84","2011","51","","" +"CZ","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","F","Y15-29","2011","27970","","" +"CZ","M","POP","TOTAL","OC7","F","Y30-49","2011","100625","","" +"CZ","M","POP","TOTAL","OC7","F","Y50-64","2011","46803","","" +"CZ","M","POP","TOTAL","OC7","F","Y65-84","2011","906","","" +"CZ","M","POP","TOTAL","OC7","F","Y_GE85","2011","8","","" +"CZ","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","G","Y15-29","2011","8610","","" +"CZ","M","POP","TOTAL","OC7","G","Y30-49","2011","17606","","" +"CZ","M","POP","TOTAL","OC7","G","Y50-64","2011","7270","","" +"CZ","M","POP","TOTAL","OC7","G","Y65-84","2011","232","","" +"CZ","M","POP","TOTAL","OC7","G","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","H","Y15-29","2011","1755","","" +"CZ","M","POP","TOTAL","OC7","H","Y30-49","2011","6326","","" +"CZ","M","POP","TOTAL","OC7","H","Y50-64","2011","4363","","" +"CZ","M","POP","TOTAL","OC7","H","Y65-84","2011","77","","" +"CZ","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","I","Y15-29","2011","257","","" +"CZ","M","POP","TOTAL","OC7","I","Y30-49","2011","604","","" +"CZ","M","POP","TOTAL","OC7","I","Y50-64","2011","387","","" +"CZ","M","POP","TOTAL","OC7","I","Y65-84","2011","29","","" +"CZ","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","J","Y15-29","2011","773","","" +"CZ","M","POP","TOTAL","OC7","J","Y30-49","2011","1702","","" +"CZ","M","POP","TOTAL","OC7","J","Y50-64","2011","727","","" +"CZ","M","POP","TOTAL","OC7","J","Y65-84","2011","33","","" +"CZ","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","K","Y15-29","2011","32","","" +"CZ","M","POP","TOTAL","OC7","K","Y30-49","2011","66","","" +"CZ","M","POP","TOTAL","OC7","K","Y50-64","2011","43","","" +"CZ","M","POP","TOTAL","OC7","K","Y65-84","2011","6","","" +"CZ","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","L","Y15-29","2011","77","","" +"CZ","M","POP","TOTAL","OC7","L","Y30-49","2011","465","","" +"CZ","M","POP","TOTAL","OC7","L","Y50-64","2011","509","","" +"CZ","M","POP","TOTAL","OC7","L","Y65-84","2011","42","","" +"CZ","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","M","Y15-29","2011","419","","" +"CZ","M","POP","TOTAL","OC7","M","Y30-49","2011","994","","" +"CZ","M","POP","TOTAL","OC7","M","Y50-64","2011","606","","" +"CZ","M","POP","TOTAL","OC7","M","Y65-84","2011","95","","" +"CZ","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","N","Y15-29","2011","337","","" +"CZ","M","POP","TOTAL","OC7","N","Y30-49","2011","946","","" +"CZ","M","POP","TOTAL","OC7","N","Y50-64","2011","732","","" +"CZ","M","POP","TOTAL","OC7","N","Y65-84","2011","46","","" +"CZ","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","O","Y15-29","2011","309","","" +"CZ","M","POP","TOTAL","OC7","O","Y30-49","2011","1527","","" +"CZ","M","POP","TOTAL","OC7","O","Y50-64","2011","1557","","" +"CZ","M","POP","TOTAL","OC7","O","Y65-84","2011","60","","" +"CZ","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","P","Y15-29","2011","67","","" +"CZ","M","POP","TOTAL","OC7","P","Y30-49","2011","343","","" +"CZ","M","POP","TOTAL","OC7","P","Y50-64","2011","730","","" +"CZ","M","POP","TOTAL","OC7","P","Y65-84","2011","144","","" +"CZ","M","POP","TOTAL","OC7","P","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","Q","Y15-29","2011","158","","" +"CZ","M","POP","TOTAL","OC7","Q","Y30-49","2011","886","","" +"CZ","M","POP","TOTAL","OC7","Q","Y50-64","2011","1340","","" +"CZ","M","POP","TOTAL","OC7","Q","Y65-84","2011","70","","" +"CZ","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","R","Y15-29","2011","401","","" +"CZ","M","POP","TOTAL","OC7","R","Y30-49","2011","1190","","" +"CZ","M","POP","TOTAL","OC7","R","Y50-64","2011","921","","" +"CZ","M","POP","TOTAL","OC7","R","Y65-84","2011","81","","" +"CZ","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","S","Y15-29","2011","773","","" +"CZ","M","POP","TOTAL","OC7","S","Y30-49","2011","2454","","" +"CZ","M","POP","TOTAL","OC7","S","Y50-64","2011","1878","","" +"CZ","M","POP","TOTAL","OC7","S","Y65-84","2011","151","","" +"CZ","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","T","Y15-29","2011","12","","" +"CZ","M","POP","TOTAL","OC7","T","Y30-49","2011","22","","" +"CZ","M","POP","TOTAL","OC7","T","Y50-64","2011","22","","" +"CZ","M","POP","TOTAL","OC7","T","Y65-84","2011","4","","" +"CZ","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC7","U","Y30-49","2011","2","","" +"CZ","M","POP","TOTAL","OC7","U","Y50-64","2011","1","","" +"CZ","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC7","UNK","Y15-29","2011","9700","","" +"CZ","M","POP","TOTAL","OC7","UNK","Y30-49","2011","26232","","" +"CZ","M","POP","TOTAL","OC7","UNK","Y50-64","2011","15131","","" +"CZ","M","POP","TOTAL","OC7","UNK","Y65-84","2011","614","","" +"CZ","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","5","","" +"CZ","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","A","Y15-29","2011","2618","","" +"CZ","M","POP","TOTAL","OC8","A","Y30-49","2011","9196","","" +"CZ","M","POP","TOTAL","OC8","A","Y50-64","2011","7673","","" +"CZ","M","POP","TOTAL","OC8","A","Y65-84","2011","153","","" +"CZ","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","B","Y15-29","2011","1557","","" +"CZ","M","POP","TOTAL","OC8","B","Y30-49","2011","8628","","" +"CZ","M","POP","TOTAL","OC8","B","Y50-64","2011","4615","","" +"CZ","M","POP","TOTAL","OC8","B","Y65-84","2011","42","","" +"CZ","M","POP","TOTAL","OC8","B","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","C","Y15-29","2011","44441","","" +"CZ","M","POP","TOTAL","OC8","C","Y30-49","2011","87560","","" +"CZ","M","POP","TOTAL","OC8","C","Y50-64","2011","40747","","" +"CZ","M","POP","TOTAL","OC8","C","Y65-84","2011","821","","" +"CZ","M","POP","TOTAL","OC8","C","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","D","Y15-29","2011","526","","" +"CZ","M","POP","TOTAL","OC8","D","Y30-49","2011","2410","","" +"CZ","M","POP","TOTAL","OC8","D","Y50-64","2011","2032","","" +"CZ","M","POP","TOTAL","OC8","D","Y65-84","2011","116","","" +"CZ","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","E","Y15-29","2011","893","","" +"CZ","M","POP","TOTAL","OC8","E","Y30-49","2011","4559","","" +"CZ","M","POP","TOTAL","OC8","E","Y50-64","2011","3408","","" +"CZ","M","POP","TOTAL","OC8","E","Y65-84","2011","136","","" +"CZ","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","F","Y15-29","2011","4198","","" +"CZ","M","POP","TOTAL","OC8","F","Y30-49","2011","16157","","" +"CZ","M","POP","TOTAL","OC8","F","Y50-64","2011","9402","","" +"CZ","M","POP","TOTAL","OC8","F","Y65-84","2011","183","","" +"CZ","M","POP","TOTAL","OC8","F","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","G","Y15-29","2011","5954","","" +"CZ","M","POP","TOTAL","OC8","G","Y30-49","2011","12565","","" +"CZ","M","POP","TOTAL","OC8","G","Y50-64","2011","4985","","" +"CZ","M","POP","TOTAL","OC8","G","Y65-84","2011","201","","" +"CZ","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","H","Y15-29","2011","17622","","" +"CZ","M","POP","TOTAL","OC8","H","Y30-49","2011","64312","","" +"CZ","M","POP","TOTAL","OC8","H","Y50-64","2011","34154","","" +"CZ","M","POP","TOTAL","OC8","H","Y65-84","2011","729","","" +"CZ","M","POP","TOTAL","OC8","H","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","I","Y15-29","2011","312","","" +"CZ","M","POP","TOTAL","OC8","I","Y30-49","2011","525","","" +"CZ","M","POP","TOTAL","OC8","I","Y50-64","2011","310","","" +"CZ","M","POP","TOTAL","OC8","I","Y65-84","2011","14","","" +"CZ","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","J","Y15-29","2011","203","","" +"CZ","M","POP","TOTAL","OC8","J","Y30-49","2011","387","","" +"CZ","M","POP","TOTAL","OC8","J","Y50-64","2011","171","","" +"CZ","M","POP","TOTAL","OC8","J","Y65-84","2011","17","","" +"CZ","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","K","Y15-29","2011","33","","" +"CZ","M","POP","TOTAL","OC8","K","Y30-49","2011","71","","" +"CZ","M","POP","TOTAL","OC8","K","Y50-64","2011","34","","" +"CZ","M","POP","TOTAL","OC8","K","Y65-84","2011","2","","" +"CZ","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","L","Y15-29","2011","22","","" +"CZ","M","POP","TOTAL","OC8","L","Y30-49","2011","97","","" +"CZ","M","POP","TOTAL","OC8","L","Y50-64","2011","93","","" +"CZ","M","POP","TOTAL","OC8","L","Y65-84","2011","22","","" +"CZ","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","M","Y15-29","2011","254","","" +"CZ","M","POP","TOTAL","OC8","M","Y30-49","2011","564","","" +"CZ","M","POP","TOTAL","OC8","M","Y50-64","2011","300","","" +"CZ","M","POP","TOTAL","OC8","M","Y65-84","2011","38","","" +"CZ","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","N","Y15-29","2011","805","","" +"CZ","M","POP","TOTAL","OC8","N","Y30-49","2011","2005","","" +"CZ","M","POP","TOTAL","OC8","N","Y50-64","2011","1153","","" +"CZ","M","POP","TOTAL","OC8","N","Y65-84","2011","53","","" +"CZ","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","O","Y15-29","2011","432","","" +"CZ","M","POP","TOTAL","OC8","O","Y30-49","2011","1949","","" +"CZ","M","POP","TOTAL","OC8","O","Y50-64","2011","1620","","" +"CZ","M","POP","TOTAL","OC8","O","Y65-84","2011","85","","" +"CZ","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","P","Y15-29","2011","38","","" +"CZ","M","POP","TOTAL","OC8","P","Y30-49","2011","133","","" +"CZ","M","POP","TOTAL","OC8","P","Y50-64","2011","270","","" +"CZ","M","POP","TOTAL","OC8","P","Y65-84","2011","83","","" +"CZ","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","Q","Y15-29","2011","658","","" +"CZ","M","POP","TOTAL","OC8","Q","Y30-49","2011","2662","","" +"CZ","M","POP","TOTAL","OC8","Q","Y50-64","2011","2082","","" +"CZ","M","POP","TOTAL","OC8","Q","Y65-84","2011","128","","" +"CZ","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","R","Y15-29","2011","120","","" +"CZ","M","POP","TOTAL","OC8","R","Y30-49","2011","345","","" +"CZ","M","POP","TOTAL","OC8","R","Y50-64","2011","281","","" +"CZ","M","POP","TOTAL","OC8","R","Y65-84","2011","38","","" +"CZ","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","S","Y15-29","2011","382","","" +"CZ","M","POP","TOTAL","OC8","S","Y30-49","2011","1206","","" +"CZ","M","POP","TOTAL","OC8","S","Y50-64","2011","780","","" +"CZ","M","POP","TOTAL","OC8","S","Y65-84","2011","41","","" +"CZ","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","T","Y15-29","2011","22","","" +"CZ","M","POP","TOTAL","OC8","T","Y30-49","2011","52","","" +"CZ","M","POP","TOTAL","OC8","T","Y50-64","2011","34","","" +"CZ","M","POP","TOTAL","OC8","T","Y65-84","2011","9","","" +"CZ","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","U","Y15-29","2011","1","","" +"CZ","M","POP","TOTAL","OC8","U","Y30-49","2011","9","","" +"CZ","M","POP","TOTAL","OC8","U","Y50-64","2011","6","","" +"CZ","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC8","UNK","Y15-29","2011","6656","","" +"CZ","M","POP","TOTAL","OC8","UNK","Y30-49","2011","17549","","" +"CZ","M","POP","TOTAL","OC8","UNK","Y50-64","2011","10913","","" +"CZ","M","POP","TOTAL","OC8","UNK","Y65-84","2011","411","","" +"CZ","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","4","","" +"CZ","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","A","Y15-29","2011","378","","" +"CZ","M","POP","TOTAL","OC9","A","Y30-49","2011","1066","","" +"CZ","M","POP","TOTAL","OC9","A","Y50-64","2011","1183","","" +"CZ","M","POP","TOTAL","OC9","A","Y65-84","2011","122","","" +"CZ","M","POP","TOTAL","OC9","A","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","B","Y15-29","2011","59","","" +"CZ","M","POP","TOTAL","OC9","B","Y30-49","2011","173","","" +"CZ","M","POP","TOTAL","OC9","B","Y50-64","2011","152","","" +"CZ","M","POP","TOTAL","OC9","B","Y65-84","2011","11","","" +"CZ","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","C","Y15-29","2011","3177","","" +"CZ","M","POP","TOTAL","OC9","C","Y30-49","2011","5040","","" +"CZ","M","POP","TOTAL","OC9","C","Y50-64","2011","3023","","" +"CZ","M","POP","TOTAL","OC9","C","Y65-84","2011","104","","" +"CZ","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","D","Y15-29","2011","86","","" +"CZ","M","POP","TOTAL","OC9","D","Y30-49","2011","224","","" +"CZ","M","POP","TOTAL","OC9","D","Y50-64","2011","158","","" +"CZ","M","POP","TOTAL","OC9","D","Y65-84","2011","6","","" +"CZ","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","E","Y15-29","2011","909","","" +"CZ","M","POP","TOTAL","OC9","E","Y30-49","2011","2581","","" +"CZ","M","POP","TOTAL","OC9","E","Y50-64","2011","1725","","" +"CZ","M","POP","TOTAL","OC9","E","Y65-84","2011","126","","" +"CZ","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","F","Y15-29","2011","1277","","" +"CZ","M","POP","TOTAL","OC9","F","Y30-49","2011","2533","","" +"CZ","M","POP","TOTAL","OC9","F","Y50-64","2011","1368","","" +"CZ","M","POP","TOTAL","OC9","F","Y65-84","2011","42","","" +"CZ","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","G","Y15-29","2011","366","","" +"CZ","M","POP","TOTAL","OC9","G","Y30-49","2011","564","","" +"CZ","M","POP","TOTAL","OC9","G","Y50-64","2011","307","","" +"CZ","M","POP","TOTAL","OC9","G","Y65-84","2011","54","","" +"CZ","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","H","Y15-29","2011","792","","" +"CZ","M","POP","TOTAL","OC9","H","Y30-49","2011","1550","","" +"CZ","M","POP","TOTAL","OC9","H","Y50-64","2011","1129","","" +"CZ","M","POP","TOTAL","OC9","H","Y65-84","2011","67","","" +"CZ","M","POP","TOTAL","OC9","H","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","I","Y15-29","2011","142","","" +"CZ","M","POP","TOTAL","OC9","I","Y30-49","2011","203","","" +"CZ","M","POP","TOTAL","OC9","I","Y50-64","2011","136","","" +"CZ","M","POP","TOTAL","OC9","I","Y65-84","2011","14","","" +"CZ","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","J","Y15-29","2011","41","","" +"CZ","M","POP","TOTAL","OC9","J","Y30-49","2011","60","","" +"CZ","M","POP","TOTAL","OC9","J","Y50-64","2011","26","","" +"CZ","M","POP","TOTAL","OC9","J","Y65-84","2011","5","","" +"CZ","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","K","Y15-29","2011","16","","" +"CZ","M","POP","TOTAL","OC9","K","Y30-49","2011","14","","" +"CZ","M","POP","TOTAL","OC9","K","Y50-64","2011","10","","" +"CZ","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","L","Y15-29","2011","35","","" +"CZ","M","POP","TOTAL","OC9","L","Y30-49","2011","73","","" +"CZ","M","POP","TOTAL","OC9","L","Y50-64","2011","63","","" +"CZ","M","POP","TOTAL","OC9","L","Y65-84","2011","12","","" +"CZ","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","M","Y15-29","2011","103","","" +"CZ","M","POP","TOTAL","OC9","M","Y30-49","2011","163","","" +"CZ","M","POP","TOTAL","OC9","M","Y50-64","2011","106","","" +"CZ","M","POP","TOTAL","OC9","M","Y65-84","2011","21","","" +"CZ","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","N","Y15-29","2011","1275","","" +"CZ","M","POP","TOTAL","OC9","N","Y30-49","2011","3139","","" +"CZ","M","POP","TOTAL","OC9","N","Y50-64","2011","3004","","" +"CZ","M","POP","TOTAL","OC9","N","Y65-84","2011","290","","" +"CZ","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","O","Y15-29","2011","917","","" +"CZ","M","POP","TOTAL","OC9","O","Y30-49","2011","2098","","" +"CZ","M","POP","TOTAL","OC9","O","Y50-64","2011","1501","","" +"CZ","M","POP","TOTAL","OC9","O","Y65-84","2011","63","","" +"CZ","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","P","Y15-29","2011","39","","" +"CZ","M","POP","TOTAL","OC9","P","Y30-49","2011","76","","" +"CZ","M","POP","TOTAL","OC9","P","Y50-64","2011","122","","" +"CZ","M","POP","TOTAL","OC9","P","Y65-84","2011","45","","" +"CZ","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","Q","Y15-29","2011","171","","" +"CZ","M","POP","TOTAL","OC9","Q","Y30-49","2011","387","","" +"CZ","M","POP","TOTAL","OC9","Q","Y50-64","2011","280","","" +"CZ","M","POP","TOTAL","OC9","Q","Y65-84","2011","32","","" +"CZ","M","POP","TOTAL","OC9","Q","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","R","Y15-29","2011","125","","" +"CZ","M","POP","TOTAL","OC9","R","Y30-49","2011","132","","" +"CZ","M","POP","TOTAL","OC9","R","Y50-64","2011","96","","" +"CZ","M","POP","TOTAL","OC9","R","Y65-84","2011","43","","" +"CZ","M","POP","TOTAL","OC9","R","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","S","Y15-29","2011","158","","" +"CZ","M","POP","TOTAL","OC9","S","Y30-49","2011","450","","" +"CZ","M","POP","TOTAL","OC9","S","Y50-64","2011","353","","" +"CZ","M","POP","TOTAL","OC9","S","Y65-84","2011","30","","" +"CZ","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","T","Y15-29","2011","23","","" +"CZ","M","POP","TOTAL","OC9","T","Y30-49","2011","46","","" +"CZ","M","POP","TOTAL","OC9","T","Y50-64","2011","33","","" +"CZ","M","POP","TOTAL","OC9","T","Y65-84","2011","4","","" +"CZ","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","OC9","U","Y30-49","2011","2","","" +"CZ","M","POP","TOTAL","OC9","U","Y50-64","2011","1","","" +"CZ","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","OC9","UNK","Y15-29","2011","3398","","" +"CZ","M","POP","TOTAL","OC9","UNK","Y30-49","2011","6549","","" +"CZ","M","POP","TOTAL","OC9","UNK","Y50-64","2011","4742","","" +"CZ","M","POP","TOTAL","OC9","UNK","Y65-84","2011","209","","" +"CZ","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","A","Y15-29","2011","580","","" +"CZ","M","POP","TOTAL","UNK","A","Y30-49","2011","2163","","" +"CZ","M","POP","TOTAL","UNK","A","Y50-64","2011","1770","","" +"CZ","M","POP","TOTAL","UNK","A","Y65-84","2011","431","","" +"CZ","M","POP","TOTAL","UNK","A","Y_GE85","2011","5","","" +"CZ","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","B","Y15-29","2011","67","","" +"CZ","M","POP","TOTAL","UNK","B","Y30-49","2011","298","","" +"CZ","M","POP","TOTAL","UNK","B","Y50-64","2011","207","","" +"CZ","M","POP","TOTAL","UNK","B","Y65-84","2011","19","","" +"CZ","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","C","Y15-29","2011","4053","","" +"CZ","M","POP","TOTAL","UNK","C","Y30-49","2011","10685","","" +"CZ","M","POP","TOTAL","UNK","C","Y50-64","2011","6218","","" +"CZ","M","POP","TOTAL","UNK","C","Y65-84","2011","962","","" +"CZ","M","POP","TOTAL","UNK","C","Y_GE85","2011","10","","" +"CZ","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","D","Y15-29","2011","148","","" +"CZ","M","POP","TOTAL","UNK","D","Y30-49","2011","505","","" +"CZ","M","POP","TOTAL","UNK","D","Y50-64","2011","384","","" +"CZ","M","POP","TOTAL","UNK","D","Y65-84","2011","63","","" +"CZ","M","POP","TOTAL","UNK","D","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","E","Y15-29","2011","110","","" +"CZ","M","POP","TOTAL","UNK","E","Y30-49","2011","451","","" +"CZ","M","POP","TOTAL","UNK","E","Y50-64","2011","331","","" +"CZ","M","POP","TOTAL","UNK","E","Y65-84","2011","46","","" +"CZ","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","F","Y15-29","2011","2129","","" +"CZ","M","POP","TOTAL","UNK","F","Y30-49","2011","9399","","" +"CZ","M","POP","TOTAL","UNK","F","Y50-64","2011","4564","","" +"CZ","M","POP","TOTAL","UNK","F","Y65-84","2011","492","","" +"CZ","M","POP","TOTAL","UNK","F","Y_GE85","2011","4","","" +"CZ","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","G","Y15-29","2011","1921","","" +"CZ","M","POP","TOTAL","UNK","G","Y30-49","2011","7306","","" +"CZ","M","POP","TOTAL","UNK","G","Y50-64","2011","3819","","" +"CZ","M","POP","TOTAL","UNK","G","Y65-84","2011","631","","" +"CZ","M","POP","TOTAL","UNK","G","Y_GE85","2011","6","","" +"CZ","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","H","Y15-29","2011","787","","" +"CZ","M","POP","TOTAL","UNK","H","Y30-49","2011","3012","","" +"CZ","M","POP","TOTAL","UNK","H","Y50-64","2011","1926","","" +"CZ","M","POP","TOTAL","UNK","H","Y65-84","2011","163","","" +"CZ","M","POP","TOTAL","UNK","H","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","I","Y15-29","2011","697","","" +"CZ","M","POP","TOTAL","UNK","I","Y30-49","2011","2174","","" +"CZ","M","POP","TOTAL","UNK","I","Y50-64","2011","1106","","" +"CZ","M","POP","TOTAL","UNK","I","Y65-84","2011","121","","" +"CZ","M","POP","TOTAL","UNK","I","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","J","Y15-29","2011","825","","" +"CZ","M","POP","TOTAL","UNK","J","Y30-49","2011","1610","","" +"CZ","M","POP","TOTAL","UNK","J","Y50-64","2011","432","","" +"CZ","M","POP","TOTAL","UNK","J","Y65-84","2011","109","","" +"CZ","M","POP","TOTAL","UNK","J","Y_GE85","2011","3","","" +"CZ","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","K","Y15-29","2011","398","","" +"CZ","M","POP","TOTAL","UNK","K","Y30-49","2011","938","","" +"CZ","M","POP","TOTAL","UNK","K","Y50-64","2011","528","","" +"CZ","M","POP","TOTAL","UNK","K","Y65-84","2011","115","","" +"CZ","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","L","Y15-29","2011","138","","" +"CZ","M","POP","TOTAL","UNK","L","Y30-49","2011","672","","" +"CZ","M","POP","TOTAL","UNK","L","Y50-64","2011","475","","" +"CZ","M","POP","TOTAL","UNK","L","Y65-84","2011","153","","" +"CZ","M","POP","TOTAL","UNK","L","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","M","Y15-29","2011","671","","" +"CZ","M","POP","TOTAL","UNK","M","Y30-49","2011","1957","","" +"CZ","M","POP","TOTAL","UNK","M","Y50-64","2011","1443","","" +"CZ","M","POP","TOTAL","UNK","M","Y65-84","2011","747","","" +"CZ","M","POP","TOTAL","UNK","M","Y_GE85","2011","18","","" +"CZ","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","N","Y15-29","2011","490","","" +"CZ","M","POP","TOTAL","UNK","N","Y30-49","2011","1294","","" +"CZ","M","POP","TOTAL","UNK","N","Y50-64","2011","1012","","" +"CZ","M","POP","TOTAL","UNK","N","Y65-84","2011","245","","" +"CZ","M","POP","TOTAL","UNK","N","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"CZ","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"CZ","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"CZ","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"CZ","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","O","Y15-29","2011","517","","" +"CZ","M","POP","TOTAL","UNK","O","Y30-49","2011","1872","","" +"CZ","M","POP","TOTAL","UNK","O","Y50-64","2011","883","","" +"CZ","M","POP","TOTAL","UNK","O","Y65-84","2011","76","","" +"CZ","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","P","Y15-29","2011","271","","" +"CZ","M","POP","TOTAL","UNK","P","Y30-49","2011","501","","" +"CZ","M","POP","TOTAL","UNK","P","Y50-64","2011","481","","" +"CZ","M","POP","TOTAL","UNK","P","Y65-84","2011","177","","" +"CZ","M","POP","TOTAL","UNK","P","Y_GE85","2011","3","","" +"CZ","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","Q","Y15-29","2011","195","","" +"CZ","M","POP","TOTAL","UNK","Q","Y30-49","2011","583","","" +"CZ","M","POP","TOTAL","UNK","Q","Y50-64","2011","484","","" +"CZ","M","POP","TOTAL","UNK","Q","Y65-84","2011","122","","" +"CZ","M","POP","TOTAL","UNK","Q","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","R","Y15-29","2011","380","","" +"CZ","M","POP","TOTAL","UNK","R","Y30-49","2011","845","","" +"CZ","M","POP","TOTAL","UNK","R","Y50-64","2011","383","","" +"CZ","M","POP","TOTAL","UNK","R","Y65-84","2011","148","","" +"CZ","M","POP","TOTAL","UNK","R","Y_GE85","2011","2","","" +"CZ","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","S","Y15-29","2011","311","","" +"CZ","M","POP","TOTAL","UNK","S","Y30-49","2011","964","","" +"CZ","M","POP","TOTAL","UNK","S","Y50-64","2011","677","","" +"CZ","M","POP","TOTAL","UNK","S","Y65-84","2011","131","","" +"CZ","M","POP","TOTAL","UNK","S","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","T","Y15-29","2011","27","","" +"CZ","M","POP","TOTAL","UNK","T","Y30-49","2011","61","","" +"CZ","M","POP","TOTAL","UNK","T","Y50-64","2011","30","","" +"CZ","M","POP","TOTAL","UNK","T","Y65-84","2011","10","","" +"CZ","M","POP","TOTAL","UNK","T","Y_GE85","2011","1","","" +"CZ","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","U","Y15-29","2011","7","","" +"CZ","M","POP","TOTAL","UNK","U","Y30-49","2011","16","","" +"CZ","M","POP","TOTAL","UNK","U","Y50-64","2011","5","","" +"CZ","M","POP","TOTAL","UNK","U","Y65-84","2011","1","","" +"CZ","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"CZ","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"CZ","M","POP","TOTAL","UNK","UNK","Y15-29","2011","56441","","" +"CZ","M","POP","TOTAL","UNK","UNK","Y30-49","2011","88598","","" +"CZ","M","POP","TOTAL","UNK","UNK","Y50-64","2011","54470","","" +"CZ","M","POP","TOTAL","UNK","UNK","Y65-84","2011","10235","","" +"CZ","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","217","","" +"CZ","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","NAP","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","NAP","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","NAP","NAP","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","NAP","NAP","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","NAP","NAP","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","c","" +"DK","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","NAP","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC0","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC0","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC0","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC0","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC0","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC1","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","C","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","F","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","H","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","I","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","R","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC1","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC1","S","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC1","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC1","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC1","UNK","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","A","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","B","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","E","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","J","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","K","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","P","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","Q","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","R","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC2","S","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","T","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","U","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","U","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","U","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC2","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC2","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC2","UNK","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","B","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","C","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","G","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","H","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","I","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","J","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","K","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","M","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","N","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","Q","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","T","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","U","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","U","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC3","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC3","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC3","UNK","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC3","UNK","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","B","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","C","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","D","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","E","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","G","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","H","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","H","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","K","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","K","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","M","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","O","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","R","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC4","S","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","T","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","U","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","U","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","U","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC4","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC4","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC4","UNK","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","A","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","C","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","G","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","P","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","T","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","T","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","U","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","U","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC5","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC5","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC5","UNK","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","A","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC6","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC6","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC6","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","L","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC6","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC6","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","B","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","K","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC7","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC7","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC7","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","B","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","E","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","T","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","U","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC8","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC8","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC8","UNK","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","B","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","B","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","D","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","G","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","H","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","K","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","N","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","P","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","R","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","S","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","T","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","U","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","OC9","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","OC9","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","OC9","UNK","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","OC9","UNK","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","A","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","A","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","A","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","A","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","A","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","B","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","B","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","B","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","B","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","C","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","C","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","C","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","C","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","C","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","D","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","D","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","D","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","D","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","D","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","E","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","E","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","E","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","E","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","F","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","F","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","F","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","F","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","F","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","G","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","G","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","G","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","G","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","G","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","H","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","H","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","H","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","H","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","H","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","I","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","I","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","I","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","I","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","I","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","J","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","J","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","J","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","J","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","J","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","K","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","K","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","K","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","K","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","K","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","L","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","L","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","L","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","L","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","L","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","M","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","M","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","M","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","M","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","M","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","N","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","N","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","N","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","N","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","N","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"DK","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"DK","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","O","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","O","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","O","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","O","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","O","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","P","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","P","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","P","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","P","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","P","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","Q","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","Q","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","Q","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","Q","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","Q","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","R","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","R","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","R","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","R","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","R","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","S","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","S","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","S","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","S","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","S","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","T","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","T","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","T","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","T","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","T","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","U","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","U","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"DK","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"DK","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"DK","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"DK","F","POP","TOTAL","UNK","UNK","Y15-29","2011",":","c","" +"DK","F","POP","TOTAL","UNK","UNK","Y30-49","2011",":","c","" +"DK","F","POP","TOTAL","UNK","UNK","Y50-64","2011",":","c","" +"DK","F","POP","TOTAL","UNK","UNK","Y65-84","2011",":","c","" +"DK","F","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","c","" +"DK","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","NAP","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","NAP","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","NAP","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","NAP","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","NAP","NAP","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","NAP","NAP","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","NAP","NAP","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","c","" +"DK","M","POP","TOTAL","NAP","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC0","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","O","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC0","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC0","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC0","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","C","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","F","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","H","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","J","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","M","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC1","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","T","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","U","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","U","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC1","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC1","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC1","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","J","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","L","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","P","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","Q","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","S","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","T","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","T","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","U","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","U","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","U","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC2","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC2","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC2","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC2","UNK","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","C","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","F","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","G","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","Q","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","S","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC3","T","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC3","U","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC3","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC3","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC3","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","C","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","L","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","N","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","R","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","T","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","U","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","U","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC4","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC4","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC4","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC4","UNK","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","G","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","H","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","J","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","Q","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","T","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","T","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","U","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","U","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC5","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC5","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC5","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC5","UNK","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC6","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC6","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC6","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC6","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC6","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","C","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","F","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","J","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","L","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","T","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC7","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC7","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC7","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","C","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","H","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","U","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC8","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC8","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC8","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","F","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","G","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","K","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","L","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","M","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","N","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","P","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","S","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","T","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","U","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","OC9","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","OC9","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","OC9","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","OC9","UNK","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","A","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","A","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","A","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","A","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","A","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","B","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","B","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","B","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","B","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","B","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","C","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","C","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","C","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","C","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","C","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","D","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","D","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","D","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","D","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","D","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","E","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","E","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","E","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","E","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","E","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","F","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","F","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","F","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","F","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","F","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","G","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","G","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","G","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","G","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","G","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","H","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","H","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","H","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","H","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","H","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","I","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","I","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","I","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","I","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","I","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","J","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","J","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","J","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","J","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","J","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","K","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","K","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","K","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","K","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","K","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","L","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","L","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","L","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","L","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","L","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","M","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","M","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","M","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","M","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","M","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","N","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","N","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","N","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","N","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","N","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"DK","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"DK","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"DK","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"DK","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","O","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","O","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","O","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","O","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","O","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","P","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","P","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","P","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","P","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","P","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","Q","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","Q","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","Q","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","Q","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","Q","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","R","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","R","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","R","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","R","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","R","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","S","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","S","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","S","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","S","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","S","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","T","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","T","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","T","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","T","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","T","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","U","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","U","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","U","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","U","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"DK","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"DK","M","POP","TOTAL","UNK","UNK","Y15-29","2011",":","c","" +"DK","M","POP","TOTAL","UNK","UNK","Y30-49","2011",":","c","" +"DK","M","POP","TOTAL","UNK","UNK","Y50-64","2011",":","c","" +"DK","M","POP","TOTAL","UNK","UNK","Y65-84","2011",":","c","" +"DK","M","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","c","" +"DK","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","NAP","Y15-29","2011","65334","","" +"EE","F","POP","TOTAL","NAP","NAP","Y30-49","2011","30966","","" +"EE","F","POP","TOTAL","NAP","NAP","Y50-64","2011","44386","","" +"EE","F","POP","TOTAL","NAP","NAP","Y65-84","2011","122659","","" +"EE","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","18361","","" +"EE","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","97003","","" +"EE","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","I","Y30-49","2011","1","","" +"EE","F","POP","TOTAL","OC0","I","Y50-64","2011","2","","" +"EE","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","N","Y30-49","2011","1","","" +"EE","F","POP","TOTAL","OC0","N","Y50-64","2011","1","","" +"EE","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","O","Y15-29","2011","64","","" +"EE","F","POP","TOTAL","OC0","O","Y30-49","2011","215","","" +"EE","F","POP","TOTAL","OC0","O","Y50-64","2011","71","","" +"EE","F","POP","TOTAL","OC0","O","Y65-84","2011","6","","" +"EE","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","P","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC0","P","Y30-49","2011","5","","" +"EE","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","Q","Y50-64","2011","1","","" +"EE","F","POP","TOTAL","OC0","Q","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","R","Y30-49","2011","1","","" +"EE","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC0","UNK","Y15-29","2011","1","","" +"EE","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","A","Y15-29","2011","10","","" +"EE","F","POP","TOTAL","OC1","A","Y30-49","2011","86","","" +"EE","F","POP","TOTAL","OC1","A","Y50-64","2011","86","","" +"EE","F","POP","TOTAL","OC1","A","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","B","Y15-29","2011","1","","" +"EE","F","POP","TOTAL","OC1","B","Y30-49","2011","16","","" +"EE","F","POP","TOTAL","OC1","B","Y50-64","2011","16","","" +"EE","F","POP","TOTAL","OC1","B","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","C","Y15-29","2011","131","","" +"EE","F","POP","TOTAL","OC1","C","Y30-49","2011","1172","","" +"EE","F","POP","TOTAL","OC1","C","Y50-64","2011","631","","" +"EE","F","POP","TOTAL","OC1","C","Y65-84","2011","50","","" +"EE","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","D","Y15-29","2011","9","","" +"EE","F","POP","TOTAL","OC1","D","Y30-49","2011","52","","" +"EE","F","POP","TOTAL","OC1","D","Y50-64","2011","33","","" +"EE","F","POP","TOTAL","OC1","D","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","E","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC1","E","Y30-49","2011","31","","" +"EE","F","POP","TOTAL","OC1","E","Y50-64","2011","17","","" +"EE","F","POP","TOTAL","OC1","E","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","F","Y15-29","2011","38","","" +"EE","F","POP","TOTAL","OC1","F","Y30-49","2011","201","","" +"EE","F","POP","TOTAL","OC1","F","Y50-64","2011","102","","" +"EE","F","POP","TOTAL","OC1","F","Y65-84","2011","5","","" +"EE","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","G","Y15-29","2011","592","","" +"EE","F","POP","TOTAL","OC1","G","Y30-49","2011","3393","","" +"EE","F","POP","TOTAL","OC1","G","Y50-64","2011","1344","","" +"EE","F","POP","TOTAL","OC1","G","Y65-84","2011","67","","" +"EE","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","H","Y15-29","2011","86","","" +"EE","F","POP","TOTAL","OC1","H","Y30-49","2011","500","","" +"EE","F","POP","TOTAL","OC1","H","Y50-64","2011","197","","" +"EE","F","POP","TOTAL","OC1","H","Y65-84","2011","14","","" +"EE","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","I","Y15-29","2011","317","","" +"EE","F","POP","TOTAL","OC1","I","Y30-49","2011","810","","" +"EE","F","POP","TOTAL","OC1","I","Y50-64","2011","368","","" +"EE","F","POP","TOTAL","OC1","I","Y65-84","2011","26","","" +"EE","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","J","Y15-29","2011","128","","" +"EE","F","POP","TOTAL","OC1","J","Y30-49","2011","418","","" +"EE","F","POP","TOTAL","OC1","J","Y50-64","2011","104","","" +"EE","F","POP","TOTAL","OC1","J","Y65-84","2011","5","","" +"EE","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","K","Y15-29","2011","93","","" +"EE","F","POP","TOTAL","OC1","K","Y30-49","2011","522","","" +"EE","F","POP","TOTAL","OC1","K","Y50-64","2011","97","","" +"EE","F","POP","TOTAL","OC1","K","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","L","Y15-29","2011","26","","" +"EE","F","POP","TOTAL","OC1","L","Y30-49","2011","183","","" +"EE","F","POP","TOTAL","OC1","L","Y50-64","2011","137","","" +"EE","F","POP","TOTAL","OC1","L","Y65-84","2011","12","","" +"EE","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","M","Y15-29","2011","133","","" +"EE","F","POP","TOTAL","OC1","M","Y30-49","2011","698","","" +"EE","F","POP","TOTAL","OC1","M","Y50-64","2011","247","","" +"EE","F","POP","TOTAL","OC1","M","Y65-84","2011","34","","" +"EE","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","N","Y15-29","2011","113","","" +"EE","F","POP","TOTAL","OC1","N","Y30-49","2011","522","","" +"EE","F","POP","TOTAL","OC1","N","Y50-64","2011","219","","" +"EE","F","POP","TOTAL","OC1","N","Y65-84","2011","10","","" +"EE","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","O","Y15-29","2011","183","","" +"EE","F","POP","TOTAL","OC1","O","Y30-49","2011","1233","","" +"EE","F","POP","TOTAL","OC1","O","Y50-64","2011","653","","" +"EE","F","POP","TOTAL","OC1","O","Y65-84","2011","47","","" +"EE","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","P","Y15-29","2011","103","","" +"EE","F","POP","TOTAL","OC1","P","Y30-49","2011","1390","","" +"EE","F","POP","TOTAL","OC1","P","Y50-64","2011","1314","","" +"EE","F","POP","TOTAL","OC1","P","Y65-84","2011","106","","" +"EE","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","Q","Y15-29","2011","60","","" +"EE","F","POP","TOTAL","OC1","Q","Y30-49","2011","762","","" +"EE","F","POP","TOTAL","OC1","Q","Y50-64","2011","496","","" +"EE","F","POP","TOTAL","OC1","Q","Y65-84","2011","86","","" +"EE","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","R","Y15-29","2011","87","","" +"EE","F","POP","TOTAL","OC1","R","Y30-49","2011","596","","" +"EE","F","POP","TOTAL","OC1","R","Y50-64","2011","416","","" +"EE","F","POP","TOTAL","OC1","R","Y65-84","2011","65","","" +"EE","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","S","Y15-29","2011","118","","" +"EE","F","POP","TOTAL","OC1","S","Y30-49","2011","457","","" +"EE","F","POP","TOTAL","OC1","S","Y50-64","2011","207","","" +"EE","F","POP","TOTAL","OC1","S","Y65-84","2011","39","","" +"EE","F","POP","TOTAL","OC1","S","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","U","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC1","U","Y30-49","2011","21","","" +"EE","F","POP","TOTAL","OC1","U","Y50-64","2011","4","","" +"EE","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC1","UNK","Y15-29","2011","6","","" +"EE","F","POP","TOTAL","OC1","UNK","Y30-49","2011","18","","" +"EE","F","POP","TOTAL","OC1","UNK","Y50-64","2011","6","","" +"EE","F","POP","TOTAL","OC1","UNK","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","A","Y15-29","2011","46","","" +"EE","F","POP","TOTAL","OC2","A","Y30-49","2011","252","","" +"EE","F","POP","TOTAL","OC2","A","Y50-64","2011","212","","" +"EE","F","POP","TOTAL","OC2","A","Y65-84","2011","39","","" +"EE","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","B","Y15-29","2011","15","","" +"EE","F","POP","TOTAL","OC2","B","Y30-49","2011","48","","" +"EE","F","POP","TOTAL","OC2","B","Y50-64","2011","53","","" +"EE","F","POP","TOTAL","OC2","B","Y65-84","2011","4","","" +"EE","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","C","Y15-29","2011","477","","" +"EE","F","POP","TOTAL","OC2","C","Y30-49","2011","1645","","" +"EE","F","POP","TOTAL","OC2","C","Y50-64","2011","1070","","" +"EE","F","POP","TOTAL","OC2","C","Y65-84","2011","92","","" +"EE","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","D","Y15-29","2011","57","","" +"EE","F","POP","TOTAL","OC2","D","Y30-49","2011","212","","" +"EE","F","POP","TOTAL","OC2","D","Y50-64","2011","137","","" +"EE","F","POP","TOTAL","OC2","D","Y65-84","2011","13","","" +"EE","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","E","Y15-29","2011","28","","" +"EE","F","POP","TOTAL","OC2","E","Y30-49","2011","79","","" +"EE","F","POP","TOTAL","OC2","E","Y50-64","2011","69","","" +"EE","F","POP","TOTAL","OC2","E","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","F","Y15-29","2011","127","","" +"EE","F","POP","TOTAL","OC2","F","Y30-49","2011","455","","" +"EE","F","POP","TOTAL","OC2","F","Y50-64","2011","388","","" +"EE","F","POP","TOTAL","OC2","F","Y65-84","2011","34","","" +"EE","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","G","Y15-29","2011","554","","" +"EE","F","POP","TOTAL","OC2","G","Y30-49","2011","1906","","" +"EE","F","POP","TOTAL","OC2","G","Y50-64","2011","1064","","" +"EE","F","POP","TOTAL","OC2","G","Y65-84","2011","140","","" +"EE","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","H","Y15-29","2011","154","","" +"EE","F","POP","TOTAL","OC2","H","Y30-49","2011","584","","" +"EE","F","POP","TOTAL","OC2","H","Y50-64","2011","344","","" +"EE","F","POP","TOTAL","OC2","H","Y65-84","2011","18","","" +"EE","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","I","Y15-29","2011","80","","" +"EE","F","POP","TOTAL","OC2","I","Y30-49","2011","180","","" +"EE","F","POP","TOTAL","OC2","I","Y50-64","2011","85","","" +"EE","F","POP","TOTAL","OC2","I","Y65-84","2011","17","","" +"EE","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","J","Y15-29","2011","979","","" +"EE","F","POP","TOTAL","OC2","J","Y30-49","2011","1570","","" +"EE","F","POP","TOTAL","OC2","J","Y50-64","2011","572","","" +"EE","F","POP","TOTAL","OC2","J","Y65-84","2011","89","","" +"EE","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","K","Y15-29","2011","472","","" +"EE","F","POP","TOTAL","OC2","K","Y30-49","2011","1046","","" +"EE","F","POP","TOTAL","OC2","K","Y50-64","2011","212","","" +"EE","F","POP","TOTAL","OC2","K","Y65-84","2011","15","","" +"EE","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","L","Y15-29","2011","49","","" +"EE","F","POP","TOTAL","OC2","L","Y30-49","2011","266","","" +"EE","F","POP","TOTAL","OC2","L","Y50-64","2011","246","","" +"EE","F","POP","TOTAL","OC2","L","Y65-84","2011","97","","" +"EE","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","M","Y15-29","2011","1764","","" +"EE","F","POP","TOTAL","OC2","M","Y30-49","2011","3394","","" +"EE","F","POP","TOTAL","OC2","M","Y50-64","2011","1621","","" +"EE","F","POP","TOTAL","OC2","M","Y65-84","2011","269","","" +"EE","F","POP","TOTAL","OC2","M","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","N","Y15-29","2011","144","","" +"EE","F","POP","TOTAL","OC2","N","Y30-49","2011","393","","" +"EE","F","POP","TOTAL","OC2","N","Y50-64","2011","126","","" +"EE","F","POP","TOTAL","OC2","N","Y65-84","2011","14","","" +"EE","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","O","Y15-29","2011","1299","","" +"EE","F","POP","TOTAL","OC2","O","Y30-49","2011","3627","","" +"EE","F","POP","TOTAL","OC2","O","Y50-64","2011","1986","","" +"EE","F","POP","TOTAL","OC2","O","Y65-84","2011","201","","" +"EE","F","POP","TOTAL","OC2","O","Y_GE85","2011","2","","" +"EE","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","P","Y15-29","2011","3283","","" +"EE","F","POP","TOTAL","OC2","P","Y30-49","2011","13206","","" +"EE","F","POP","TOTAL","OC2","P","Y50-64","2011","9452","","" +"EE","F","POP","TOTAL","OC2","P","Y65-84","2011","1469","","" +"EE","F","POP","TOTAL","OC2","P","Y_GE85","2011","2","","" +"EE","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","Q","Y15-29","2011","1568","","" +"EE","F","POP","TOTAL","OC2","Q","Y30-49","2011","4211","","" +"EE","F","POP","TOTAL","OC2","Q","Y50-64","2011","2691","","" +"EE","F","POP","TOTAL","OC2","Q","Y65-84","2011","714","","" +"EE","F","POP","TOTAL","OC2","Q","Y_GE85","2011","2","","" +"EE","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","R","Y15-29","2011","510","","" +"EE","F","POP","TOTAL","OC2","R","Y30-49","2011","1239","","" +"EE","F","POP","TOTAL","OC2","R","Y50-64","2011","916","","" +"EE","F","POP","TOTAL","OC2","R","Y65-84","2011","232","","" +"EE","F","POP","TOTAL","OC2","R","Y_GE85","2011","3","","" +"EE","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","S","Y15-29","2011","206","","" +"EE","F","POP","TOTAL","OC2","S","Y30-49","2011","446","","" +"EE","F","POP","TOTAL","OC2","S","Y50-64","2011","210","","" +"EE","F","POP","TOTAL","OC2","S","Y65-84","2011","63","","" +"EE","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","T","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","U","Y15-29","2011","12","","" +"EE","F","POP","TOTAL","OC2","U","Y30-49","2011","65","","" +"EE","F","POP","TOTAL","OC2","U","Y50-64","2011","14","","" +"EE","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC2","UNK","Y15-29","2011","21","","" +"EE","F","POP","TOTAL","OC2","UNK","Y30-49","2011","57","","" +"EE","F","POP","TOTAL","OC2","UNK","Y50-64","2011","20","","" +"EE","F","POP","TOTAL","OC2","UNK","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","A","Y15-29","2011","64","","" +"EE","F","POP","TOTAL","OC3","A","Y30-49","2011","347","","" +"EE","F","POP","TOTAL","OC3","A","Y50-64","2011","282","","" +"EE","F","POP","TOTAL","OC3","A","Y65-84","2011","33","","" +"EE","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","B","Y15-29","2011","18","","" +"EE","F","POP","TOTAL","OC3","B","Y30-49","2011","60","","" +"EE","F","POP","TOTAL","OC3","B","Y50-64","2011","81","","" +"EE","F","POP","TOTAL","OC3","B","Y65-84","2011","6","","" +"EE","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","C","Y15-29","2011","1071","","" +"EE","F","POP","TOTAL","OC3","C","Y30-49","2011","3581","","" +"EE","F","POP","TOTAL","OC3","C","Y50-64","2011","1822","","" +"EE","F","POP","TOTAL","OC3","C","Y65-84","2011","114","","" +"EE","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","D","Y15-29","2011","49","","" +"EE","F","POP","TOTAL","OC3","D","Y30-49","2011","241","","" +"EE","F","POP","TOTAL","OC3","D","Y50-64","2011","257","","" +"EE","F","POP","TOTAL","OC3","D","Y65-84","2011","15","","" +"EE","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","E","Y15-29","2011","49","","" +"EE","F","POP","TOTAL","OC3","E","Y30-49","2011","137","","" +"EE","F","POP","TOTAL","OC3","E","Y50-64","2011","129","","" +"EE","F","POP","TOTAL","OC3","E","Y65-84","2011","6","","" +"EE","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","F","Y15-29","2011","304","","" +"EE","F","POP","TOTAL","OC3","F","Y30-49","2011","773","","" +"EE","F","POP","TOTAL","OC3","F","Y50-64","2011","453","","" +"EE","F","POP","TOTAL","OC3","F","Y65-84","2011","38","","" +"EE","F","POP","TOTAL","OC3","F","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","G","Y15-29","2011","1919","","" +"EE","F","POP","TOTAL","OC3","G","Y30-49","2011","4992","","" +"EE","F","POP","TOTAL","OC3","G","Y50-64","2011","1747","","" +"EE","F","POP","TOTAL","OC3","G","Y65-84","2011","135","","" +"EE","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","H","Y15-29","2011","356","","" +"EE","F","POP","TOTAL","OC3","H","Y30-49","2011","874","","" +"EE","F","POP","TOTAL","OC3","H","Y50-64","2011","389","","" +"EE","F","POP","TOTAL","OC3","H","Y65-84","2011","39","","" +"EE","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","I","Y15-29","2011","270","","" +"EE","F","POP","TOTAL","OC3","I","Y30-49","2011","544","","" +"EE","F","POP","TOTAL","OC3","I","Y50-64","2011","262","","" +"EE","F","POP","TOTAL","OC3","I","Y65-84","2011","23","","" +"EE","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","J","Y15-29","2011","698","","" +"EE","F","POP","TOTAL","OC3","J","Y30-49","2011","920","","" +"EE","F","POP","TOTAL","OC3","J","Y50-64","2011","296","","" +"EE","F","POP","TOTAL","OC3","J","Y65-84","2011","19","","" +"EE","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","K","Y15-29","2011","681","","" +"EE","F","POP","TOTAL","OC3","K","Y30-49","2011","1206","","" +"EE","F","POP","TOTAL","OC3","K","Y50-64","2011","429","","" +"EE","F","POP","TOTAL","OC3","K","Y65-84","2011","34","","" +"EE","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","L","Y15-29","2011","183","","" +"EE","F","POP","TOTAL","OC3","L","Y30-49","2011","787","","" +"EE","F","POP","TOTAL","OC3","L","Y50-64","2011","723","","" +"EE","F","POP","TOTAL","OC3","L","Y65-84","2011","249","","" +"EE","F","POP","TOTAL","OC3","L","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","M","Y15-29","2011","941","","" +"EE","F","POP","TOTAL","OC3","M","Y30-49","2011","1572","","" +"EE","F","POP","TOTAL","OC3","M","Y50-64","2011","677","","" +"EE","F","POP","TOTAL","OC3","M","Y65-84","2011","88","","" +"EE","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","N","Y15-29","2011","342","","" +"EE","F","POP","TOTAL","OC3","N","Y30-49","2011","546","","" +"EE","F","POP","TOTAL","OC3","N","Y50-64","2011","178","","" +"EE","F","POP","TOTAL","OC3","N","Y65-84","2011","16","","" +"EE","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","O","Y15-29","2011","1091","","" +"EE","F","POP","TOTAL","OC3","O","Y30-49","2011","3077","","" +"EE","F","POP","TOTAL","OC3","O","Y50-64","2011","2010","","" +"EE","F","POP","TOTAL","OC3","O","Y65-84","2011","176","","" +"EE","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","P","Y15-29","2011","452","","" +"EE","F","POP","TOTAL","OC3","P","Y30-49","2011","944","","" +"EE","F","POP","TOTAL","OC3","P","Y50-64","2011","690","","" +"EE","F","POP","TOTAL","OC3","P","Y65-84","2011","155","","" +"EE","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","Q","Y15-29","2011","1057","","" +"EE","F","POP","TOTAL","OC3","Q","Y30-49","2011","4166","","" +"EE","F","POP","TOTAL","OC3","Q","Y50-64","2011","3755","","" +"EE","F","POP","TOTAL","OC3","Q","Y65-84","2011","593","","" +"EE","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","R","Y15-29","2011","387","","" +"EE","F","POP","TOTAL","OC3","R","Y30-49","2011","638","","" +"EE","F","POP","TOTAL","OC3","R","Y50-64","2011","305","","" +"EE","F","POP","TOTAL","OC3","R","Y65-84","2011","56","","" +"EE","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","S","Y15-29","2011","259","","" +"EE","F","POP","TOTAL","OC3","S","Y30-49","2011","602","","" +"EE","F","POP","TOTAL","OC3","S","Y50-64","2011","404","","" +"EE","F","POP","TOTAL","OC3","S","Y65-84","2011","54","","" +"EE","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","U","Y15-29","2011","22","","" +"EE","F","POP","TOTAL","OC3","U","Y30-49","2011","45","","" +"EE","F","POP","TOTAL","OC3","U","Y50-64","2011","14","","" +"EE","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC3","UNK","Y15-29","2011","27","","" +"EE","F","POP","TOTAL","OC3","UNK","Y30-49","2011","33","","" +"EE","F","POP","TOTAL","OC3","UNK","Y50-64","2011","25","","" +"EE","F","POP","TOTAL","OC3","UNK","Y65-84","2011","6","","" +"EE","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","A","Y15-29","2011","32","","" +"EE","F","POP","TOTAL","OC4","A","Y30-49","2011","97","","" +"EE","F","POP","TOTAL","OC4","A","Y50-64","2011","76","","" +"EE","F","POP","TOTAL","OC4","A","Y65-84","2011","11","","" +"EE","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","B","Y15-29","2011","6","","" +"EE","F","POP","TOTAL","OC4","B","Y30-49","2011","51","","" +"EE","F","POP","TOTAL","OC4","B","Y50-64","2011","60","","" +"EE","F","POP","TOTAL","OC4","B","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","C","Y15-29","2011","465","","" +"EE","F","POP","TOTAL","OC4","C","Y30-49","2011","1312","","" +"EE","F","POP","TOTAL","OC4","C","Y50-64","2011","831","","" +"EE","F","POP","TOTAL","OC4","C","Y65-84","2011","41","","" +"EE","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","D","Y15-29","2011","41","","" +"EE","F","POP","TOTAL","OC4","D","Y30-49","2011","102","","" +"EE","F","POP","TOTAL","OC4","D","Y50-64","2011","105","","" +"EE","F","POP","TOTAL","OC4","D","Y65-84","2011","8","","" +"EE","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","E","Y15-29","2011","25","","" +"EE","F","POP","TOTAL","OC4","E","Y30-49","2011","85","","" +"EE","F","POP","TOTAL","OC4","E","Y50-64","2011","61","","" +"EE","F","POP","TOTAL","OC4","E","Y65-84","2011","4","","" +"EE","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","F","Y15-29","2011","70","","" +"EE","F","POP","TOTAL","OC4","F","Y30-49","2011","178","","" +"EE","F","POP","TOTAL","OC4","F","Y50-64","2011","145","","" +"EE","F","POP","TOTAL","OC4","F","Y65-84","2011","9","","" +"EE","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","G","Y15-29","2011","616","","" +"EE","F","POP","TOTAL","OC4","G","Y30-49","2011","1363","","" +"EE","F","POP","TOTAL","OC4","G","Y50-64","2011","717","","" +"EE","F","POP","TOTAL","OC4","G","Y65-84","2011","29","","" +"EE","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","H","Y15-29","2011","1028","","" +"EE","F","POP","TOTAL","OC4","H","Y30-49","2011","2513","","" +"EE","F","POP","TOTAL","OC4","H","Y50-64","2011","1754","","" +"EE","F","POP","TOTAL","OC4","H","Y65-84","2011","145","","" +"EE","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","I","Y15-29","2011","780","","" +"EE","F","POP","TOTAL","OC4","I","Y30-49","2011","465","","" +"EE","F","POP","TOTAL","OC4","I","Y50-64","2011","189","","" +"EE","F","POP","TOTAL","OC4","I","Y65-84","2011","26","","" +"EE","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","J","Y15-29","2011","246","","" +"EE","F","POP","TOTAL","OC4","J","Y30-49","2011","337","","" +"EE","F","POP","TOTAL","OC4","J","Y50-64","2011","139","","" +"EE","F","POP","TOTAL","OC4","J","Y65-84","2011","20","","" +"EE","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","K","Y15-29","2011","753","","" +"EE","F","POP","TOTAL","OC4","K","Y30-49","2011","1164","","" +"EE","F","POP","TOTAL","OC4","K","Y50-64","2011","262","","" +"EE","F","POP","TOTAL","OC4","K","Y65-84","2011","7","","" +"EE","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","L","Y15-29","2011","62","","" +"EE","F","POP","TOTAL","OC4","L","Y30-49","2011","85","","" +"EE","F","POP","TOTAL","OC4","L","Y50-64","2011","101","","" +"EE","F","POP","TOTAL","OC4","L","Y65-84","2011","29","","" +"EE","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","M","Y15-29","2011","214","","" +"EE","F","POP","TOTAL","OC4","M","Y30-49","2011","340","","" +"EE","F","POP","TOTAL","OC4","M","Y50-64","2011","213","","" +"EE","F","POP","TOTAL","OC4","M","Y65-84","2011","48","","" +"EE","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","N","Y15-29","2011","805","","" +"EE","F","POP","TOTAL","OC4","N","Y30-49","2011","865","","" +"EE","F","POP","TOTAL","OC4","N","Y50-64","2011","206","","" +"EE","F","POP","TOTAL","OC4","N","Y65-84","2011","20","","" +"EE","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","O","Y15-29","2011","295","","" +"EE","F","POP","TOTAL","OC4","O","Y30-49","2011","870","","" +"EE","F","POP","TOTAL","OC4","O","Y50-64","2011","815","","" +"EE","F","POP","TOTAL","OC4","O","Y65-84","2011","75","","" +"EE","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","P","Y15-29","2011","119","","" +"EE","F","POP","TOTAL","OC4","P","Y30-49","2011","345","","" +"EE","F","POP","TOTAL","OC4","P","Y50-64","2011","402","","" +"EE","F","POP","TOTAL","OC4","P","Y65-84","2011","119","","" +"EE","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","Q","Y15-29","2011","134","","" +"EE","F","POP","TOTAL","OC4","Q","Y30-49","2011","321","","" +"EE","F","POP","TOTAL","OC4","Q","Y50-64","2011","284","","" +"EE","F","POP","TOTAL","OC4","Q","Y65-84","2011","75","","" +"EE","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","R","Y15-29","2011","510","","" +"EE","F","POP","TOTAL","OC4","R","Y30-49","2011","736","","" +"EE","F","POP","TOTAL","OC4","R","Y50-64","2011","492","","" +"EE","F","POP","TOTAL","OC4","R","Y65-84","2011","82","","" +"EE","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","S","Y15-29","2011","324","","" +"EE","F","POP","TOTAL","OC4","S","Y30-49","2011","269","","" +"EE","F","POP","TOTAL","OC4","S","Y50-64","2011","123","","" +"EE","F","POP","TOTAL","OC4","S","Y65-84","2011","35","","" +"EE","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","U","Y15-29","2011","6","","" +"EE","F","POP","TOTAL","OC4","U","Y30-49","2011","11","","" +"EE","F","POP","TOTAL","OC4","U","Y50-64","2011","6","","" +"EE","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC4","UNK","Y15-29","2011","26","","" +"EE","F","POP","TOTAL","OC4","UNK","Y30-49","2011","20","","" +"EE","F","POP","TOTAL","OC4","UNK","Y50-64","2011","16","","" +"EE","F","POP","TOTAL","OC4","UNK","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","A","Y15-29","2011","28","","" +"EE","F","POP","TOTAL","OC5","A","Y30-49","2011","67","","" +"EE","F","POP","TOTAL","OC5","A","Y50-64","2011","67","","" +"EE","F","POP","TOTAL","OC5","A","Y65-84","2011","6","","" +"EE","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC5","B","Y30-49","2011","2","","" +"EE","F","POP","TOTAL","OC5","B","Y50-64","2011","6","","" +"EE","F","POP","TOTAL","OC5","B","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","C","Y15-29","2011","228","","" +"EE","F","POP","TOTAL","OC5","C","Y30-49","2011","611","","" +"EE","F","POP","TOTAL","OC5","C","Y50-64","2011","481","","" +"EE","F","POP","TOTAL","OC5","C","Y65-84","2011","36","","" +"EE","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC5","D","Y30-49","2011","3","","" +"EE","F","POP","TOTAL","OC5","D","Y50-64","2011","12","","" +"EE","F","POP","TOTAL","OC5","D","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC5","E","Y30-49","2011","8","","" +"EE","F","POP","TOTAL","OC5","E","Y50-64","2011","8","","" +"EE","F","POP","TOTAL","OC5","E","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","F","Y15-29","2011","15","","" +"EE","F","POP","TOTAL","OC5","F","Y30-49","2011","42","","" +"EE","F","POP","TOTAL","OC5","F","Y50-64","2011","29","","" +"EE","F","POP","TOTAL","OC5","F","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","G","Y15-29","2011","7887","","" +"EE","F","POP","TOTAL","OC5","G","Y30-49","2011","12541","","" +"EE","F","POP","TOTAL","OC5","G","Y50-64","2011","7517","","" +"EE","F","POP","TOTAL","OC5","G","Y65-84","2011","464","","" +"EE","F","POP","TOTAL","OC5","G","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","H","Y15-29","2011","452","","" +"EE","F","POP","TOTAL","OC5","H","Y30-49","2011","629","","" +"EE","F","POP","TOTAL","OC5","H","Y50-64","2011","479","","" +"EE","F","POP","TOTAL","OC5","H","Y65-84","2011","14","","" +"EE","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","I","Y15-29","2011","4801","","" +"EE","F","POP","TOTAL","OC5","I","Y30-49","2011","3156","","" +"EE","F","POP","TOTAL","OC5","I","Y50-64","2011","1641","","" +"EE","F","POP","TOTAL","OC5","I","Y65-84","2011","102","","" +"EE","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","J","Y15-29","2011","193","","" +"EE","F","POP","TOTAL","OC5","J","Y30-49","2011","130","","" +"EE","F","POP","TOTAL","OC5","J","Y50-64","2011","65","","" +"EE","F","POP","TOTAL","OC5","J","Y65-84","2011","13","","" +"EE","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","K","Y15-29","2011","27","","" +"EE","F","POP","TOTAL","OC5","K","Y30-49","2011","50","","" +"EE","F","POP","TOTAL","OC5","K","Y50-64","2011","32","","" +"EE","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","L","Y15-29","2011","30","","" +"EE","F","POP","TOTAL","OC5","L","Y30-49","2011","99","","" +"EE","F","POP","TOTAL","OC5","L","Y50-64","2011","150","","" +"EE","F","POP","TOTAL","OC5","L","Y65-84","2011","52","","" +"EE","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","M","Y15-29","2011","153","","" +"EE","F","POP","TOTAL","OC5","M","Y30-49","2011","85","","" +"EE","F","POP","TOTAL","OC5","M","Y50-64","2011","37","","" +"EE","F","POP","TOTAL","OC5","M","Y65-84","2011","5","","" +"EE","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","N","Y15-29","2011","543","","" +"EE","F","POP","TOTAL","OC5","N","Y30-49","2011","809","","" +"EE","F","POP","TOTAL","OC5","N","Y50-64","2011","655","","" +"EE","F","POP","TOTAL","OC5","N","Y65-84","2011","47","","" +"EE","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","O","Y15-29","2011","298","","" +"EE","F","POP","TOTAL","OC5","O","Y30-49","2011","674","","" +"EE","F","POP","TOTAL","OC5","O","Y50-64","2011","577","","" +"EE","F","POP","TOTAL","OC5","O","Y65-84","2011","66","","" +"EE","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","P","Y15-29","2011","522","","" +"EE","F","POP","TOTAL","OC5","P","Y30-49","2011","2351","","" +"EE","F","POP","TOTAL","OC5","P","Y50-64","2011","2498","","" +"EE","F","POP","TOTAL","OC5","P","Y65-84","2011","319","","" +"EE","F","POP","TOTAL","OC5","P","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","Q","Y15-29","2011","840","","" +"EE","F","POP","TOTAL","OC5","Q","Y30-49","2011","2722","","" +"EE","F","POP","TOTAL","OC5","Q","Y50-64","2011","3274","","" +"EE","F","POP","TOTAL","OC5","Q","Y65-84","2011","461","","" +"EE","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","R","Y15-29","2011","283","","" +"EE","F","POP","TOTAL","OC5","R","Y30-49","2011","313","","" +"EE","F","POP","TOTAL","OC5","R","Y50-64","2011","259","","" +"EE","F","POP","TOTAL","OC5","R","Y65-84","2011","111","","" +"EE","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","S","Y15-29","2011","1074","","" +"EE","F","POP","TOTAL","OC5","S","Y30-49","2011","2799","","" +"EE","F","POP","TOTAL","OC5","S","Y50-64","2011","887","","" +"EE","F","POP","TOTAL","OC5","S","Y65-84","2011","158","","" +"EE","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","T","Y15-29","2011","52","","" +"EE","F","POP","TOTAL","OC5","T","Y30-49","2011","19","","" +"EE","F","POP","TOTAL","OC5","T","Y50-64","2011","9","","" +"EE","F","POP","TOTAL","OC5","T","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","U","Y15-29","2011","1","","" +"EE","F","POP","TOTAL","OC5","U","Y30-49","2011","4","","" +"EE","F","POP","TOTAL","OC5","U","Y50-64","2011","8","","" +"EE","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC5","UNK","Y15-29","2011","49","","" +"EE","F","POP","TOTAL","OC5","UNK","Y30-49","2011","101","","" +"EE","F","POP","TOTAL","OC5","UNK","Y50-64","2011","64","","" +"EE","F","POP","TOTAL","OC5","UNK","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","A","Y15-29","2011","275","","" +"EE","F","POP","TOTAL","OC6","A","Y30-49","2011","1605","","" +"EE","F","POP","TOTAL","OC6","A","Y50-64","2011","1509","","" +"EE","F","POP","TOTAL","OC6","A","Y65-84","2011","155","","" +"EE","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","B","Y30-49","2011","1","","" +"EE","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","C","Y15-29","2011","4","","" +"EE","F","POP","TOTAL","OC6","C","Y30-49","2011","11","","" +"EE","F","POP","TOTAL","OC6","C","Y50-64","2011","7","","" +"EE","F","POP","TOTAL","OC6","C","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","F","Y30-49","2011","2","","" +"EE","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","F","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","G","Y15-29","2011","9","","" +"EE","F","POP","TOTAL","OC6","G","Y30-49","2011","23","","" +"EE","F","POP","TOTAL","OC6","G","Y50-64","2011","10","","" +"EE","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","I","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC6","I","Y30-49","2011","5","","" +"EE","F","POP","TOTAL","OC6","I","Y50-64","2011","2","","" +"EE","F","POP","TOTAL","OC6","I","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","L","Y50-64","2011","3","","" +"EE","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","M","Y15-29","2011","1","","" +"EE","F","POP","TOTAL","OC6","M","Y30-49","2011","12","","" +"EE","F","POP","TOTAL","OC6","M","Y50-64","2011","2","","" +"EE","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","N","Y15-29","2011","12","","" +"EE","F","POP","TOTAL","OC6","N","Y30-49","2011","52","","" +"EE","F","POP","TOTAL","OC6","N","Y50-64","2011","30","","" +"EE","F","POP","TOTAL","OC6","N","Y65-84","2011","4","","" +"EE","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","O","Y30-49","2011","13","","" +"EE","F","POP","TOTAL","OC6","O","Y50-64","2011","4","","" +"EE","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","P","Y15-29","2011","7","","" +"EE","F","POP","TOTAL","OC6","P","Y30-49","2011","30","","" +"EE","F","POP","TOTAL","OC6","P","Y50-64","2011","28","","" +"EE","F","POP","TOTAL","OC6","P","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","Q","Y30-49","2011","1","","" +"EE","F","POP","TOTAL","OC6","Q","Y50-64","2011","3","","" +"EE","F","POP","TOTAL","OC6","Q","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","R","Y15-29","2011","8","","" +"EE","F","POP","TOTAL","OC6","R","Y30-49","2011","37","","" +"EE","F","POP","TOTAL","OC6","R","Y50-64","2011","13","","" +"EE","F","POP","TOTAL","OC6","R","Y65-84","2011","4","","" +"EE","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","S","Y15-29","2011","3","","" +"EE","F","POP","TOTAL","OC6","S","Y30-49","2011","5","","" +"EE","F","POP","TOTAL","OC6","S","Y50-64","2011","7","","" +"EE","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","A","Y15-29","2011","14","","" +"EE","F","POP","TOTAL","OC7","A","Y30-49","2011","56","","" +"EE","F","POP","TOTAL","OC7","A","Y50-64","2011","48","","" +"EE","F","POP","TOTAL","OC7","A","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","B","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC7","B","Y30-49","2011","5","","" +"EE","F","POP","TOTAL","OC7","B","Y50-64","2011","17","","" +"EE","F","POP","TOTAL","OC7","B","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","C","Y15-29","2011","1552","","" +"EE","F","POP","TOTAL","OC7","C","Y30-49","2011","5901","","" +"EE","F","POP","TOTAL","OC7","C","Y50-64","2011","3797","","" +"EE","F","POP","TOTAL","OC7","C","Y65-84","2011","166","","" +"EE","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","D","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC7","D","Y30-49","2011","13","","" +"EE","F","POP","TOTAL","OC7","D","Y50-64","2011","19","","" +"EE","F","POP","TOTAL","OC7","D","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","E","Y15-29","2011","1","","" +"EE","F","POP","TOTAL","OC7","E","Y30-49","2011","8","","" +"EE","F","POP","TOTAL","OC7","E","Y50-64","2011","9","","" +"EE","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","F","Y15-29","2011","141","","" +"EE","F","POP","TOTAL","OC7","F","Y30-49","2011","478","","" +"EE","F","POP","TOTAL","OC7","F","Y50-64","2011","485","","" +"EE","F","POP","TOTAL","OC7","F","Y65-84","2011","8","","" +"EE","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","G","Y15-29","2011","95","","" +"EE","F","POP","TOTAL","OC7","G","Y30-49","2011","295","","" +"EE","F","POP","TOTAL","OC7","G","Y50-64","2011","176","","" +"EE","F","POP","TOTAL","OC7","G","Y65-84","2011","6","","" +"EE","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","H","Y15-29","2011","1","","" +"EE","F","POP","TOTAL","OC7","H","Y30-49","2011","32","","" +"EE","F","POP","TOTAL","OC7","H","Y50-64","2011","29","","" +"EE","F","POP","TOTAL","OC7","H","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","I","Y15-29","2011","73","","" +"EE","F","POP","TOTAL","OC7","I","Y30-49","2011","167","","" +"EE","F","POP","TOTAL","OC7","I","Y50-64","2011","87","","" +"EE","F","POP","TOTAL","OC7","I","Y65-84","2011","7","","" +"EE","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","J","Y15-29","2011","25","","" +"EE","F","POP","TOTAL","OC7","J","Y30-49","2011","62","","" +"EE","F","POP","TOTAL","OC7","J","Y50-64","2011","25","","" +"EE","F","POP","TOTAL","OC7","J","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC7","K","Y30-49","2011","1","","" +"EE","F","POP","TOTAL","OC7","K","Y50-64","2011","2","","" +"EE","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","L","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC7","L","Y30-49","2011","7","","" +"EE","F","POP","TOTAL","OC7","L","Y50-64","2011","13","","" +"EE","F","POP","TOTAL","OC7","L","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","M","Y15-29","2011","24","","" +"EE","F","POP","TOTAL","OC7","M","Y30-49","2011","36","","" +"EE","F","POP","TOTAL","OC7","M","Y50-64","2011","29","","" +"EE","F","POP","TOTAL","OC7","M","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","N","Y15-29","2011","13","","" +"EE","F","POP","TOTAL","OC7","N","Y30-49","2011","30","","" +"EE","F","POP","TOTAL","OC7","N","Y50-64","2011","26","","" +"EE","F","POP","TOTAL","OC7","N","Y65-84","2011","4","","" +"EE","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","O","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC7","O","Y30-49","2011","13","","" +"EE","F","POP","TOTAL","OC7","O","Y50-64","2011","9","","" +"EE","F","POP","TOTAL","OC7","O","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","P","Y15-29","2011","7","","" +"EE","F","POP","TOTAL","OC7","P","Y30-49","2011","18","","" +"EE","F","POP","TOTAL","OC7","P","Y50-64","2011","17","","" +"EE","F","POP","TOTAL","OC7","P","Y65-84","2011","4","","" +"EE","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","Q","Y15-29","2011","5","","" +"EE","F","POP","TOTAL","OC7","Q","Y30-49","2011","23","","" +"EE","F","POP","TOTAL","OC7","Q","Y50-64","2011","25","","" +"EE","F","POP","TOTAL","OC7","Q","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","R","Y15-29","2011","12","","" +"EE","F","POP","TOTAL","OC7","R","Y30-49","2011","74","","" +"EE","F","POP","TOTAL","OC7","R","Y50-64","2011","66","","" +"EE","F","POP","TOTAL","OC7","R","Y65-84","2011","13","","" +"EE","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","S","Y15-29","2011","17","","" +"EE","F","POP","TOTAL","OC7","S","Y30-49","2011","73","","" +"EE","F","POP","TOTAL","OC7","S","Y50-64","2011","64","","" +"EE","F","POP","TOTAL","OC7","S","Y65-84","2011","10","","" +"EE","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC7","T","Y50-64","2011","1","","" +"EE","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC7","UNK","Y15-29","2011","8","","" +"EE","F","POP","TOTAL","OC7","UNK","Y30-49","2011","16","","" +"EE","F","POP","TOTAL","OC7","UNK","Y50-64","2011","10","","" +"EE","F","POP","TOTAL","OC7","UNK","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","A","Y15-29","2011","21","","" +"EE","F","POP","TOTAL","OC8","A","Y30-49","2011","58","","" +"EE","F","POP","TOTAL","OC8","A","Y50-64","2011","48","","" +"EE","F","POP","TOTAL","OC8","A","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","B","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC8","B","Y30-49","2011","81","","" +"EE","F","POP","TOTAL","OC8","B","Y50-64","2011","100","","" +"EE","F","POP","TOTAL","OC8","B","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","C","Y15-29","2011","2669","","" +"EE","F","POP","TOTAL","OC8","C","Y30-49","2011","9687","","" +"EE","F","POP","TOTAL","OC8","C","Y50-64","2011","5904","","" +"EE","F","POP","TOTAL","OC8","C","Y65-84","2011","160","","" +"EE","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","D","Y15-29","2011","3","","" +"EE","F","POP","TOTAL","OC8","D","Y30-49","2011","38","","" +"EE","F","POP","TOTAL","OC8","D","Y50-64","2011","56","","" +"EE","F","POP","TOTAL","OC8","D","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","E","Y15-29","2011","1","","" +"EE","F","POP","TOTAL","OC8","E","Y30-49","2011","10","","" +"EE","F","POP","TOTAL","OC8","E","Y50-64","2011","12","","" +"EE","F","POP","TOTAL","OC8","E","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","F","Y15-29","2011","8","","" +"EE","F","POP","TOTAL","OC8","F","Y30-49","2011","40","","" +"EE","F","POP","TOTAL","OC8","F","Y50-64","2011","41","","" +"EE","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","G","Y15-29","2011","56","","" +"EE","F","POP","TOTAL","OC8","G","Y30-49","2011","161","","" +"EE","F","POP","TOTAL","OC8","G","Y50-64","2011","96","","" +"EE","F","POP","TOTAL","OC8","G","Y65-84","2011","5","","" +"EE","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","H","Y15-29","2011","47","","" +"EE","F","POP","TOTAL","OC8","H","Y30-49","2011","339","","" +"EE","F","POP","TOTAL","OC8","H","Y50-64","2011","276","","" +"EE","F","POP","TOTAL","OC8","H","Y65-84","2011","24","","" +"EE","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","I","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC8","I","Y30-49","2011","9","","" +"EE","F","POP","TOTAL","OC8","I","Y50-64","2011","9","","" +"EE","F","POP","TOTAL","OC8","I","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","J","Y15-29","2011","4","","" +"EE","F","POP","TOTAL","OC8","J","Y30-49","2011","7","","" +"EE","F","POP","TOTAL","OC8","J","Y50-64","2011","6","","" +"EE","F","POP","TOTAL","OC8","J","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC8","L","Y30-49","2011","8","","" +"EE","F","POP","TOTAL","OC8","L","Y50-64","2011","4","","" +"EE","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","M","Y15-29","2011","17","","" +"EE","F","POP","TOTAL","OC8","M","Y30-49","2011","22","","" +"EE","F","POP","TOTAL","OC8","M","Y50-64","2011","9","","" +"EE","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","N","Y15-29","2011","18","","" +"EE","F","POP","TOTAL","OC8","N","Y30-49","2011","54","","" +"EE","F","POP","TOTAL","OC8","N","Y50-64","2011","36","","" +"EE","F","POP","TOTAL","OC8","N","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","O","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC8","O","Y30-49","2011","7","","" +"EE","F","POP","TOTAL","OC8","O","Y50-64","2011","8","","" +"EE","F","POP","TOTAL","OC8","O","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","P","Y15-29","2011","3","","" +"EE","F","POP","TOTAL","OC8","P","Y30-49","2011","29","","" +"EE","F","POP","TOTAL","OC8","P","Y50-64","2011","53","","" +"EE","F","POP","TOTAL","OC8","P","Y65-84","2011","11","","" +"EE","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","Q","Y15-29","2011","5","","" +"EE","F","POP","TOTAL","OC8","Q","Y30-49","2011","45","","" +"EE","F","POP","TOTAL","OC8","Q","Y50-64","2011","62","","" +"EE","F","POP","TOTAL","OC8","Q","Y65-84","2011","12","","" +"EE","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC8","R","Y30-49","2011","4","","" +"EE","F","POP","TOTAL","OC8","R","Y50-64","2011","5","","" +"EE","F","POP","TOTAL","OC8","R","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","S","Y15-29","2011","58","","" +"EE","F","POP","TOTAL","OC8","S","Y30-49","2011","173","","" +"EE","F","POP","TOTAL","OC8","S","Y50-64","2011","178","","" +"EE","F","POP","TOTAL","OC8","S","Y65-84","2011","9","","" +"EE","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC8","UNK","Y15-29","2011","10","","" +"EE","F","POP","TOTAL","OC8","UNK","Y30-49","2011","20","","" +"EE","F","POP","TOTAL","OC8","UNK","Y50-64","2011","20","","" +"EE","F","POP","TOTAL","OC8","UNK","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","A","Y15-29","2011","234","","" +"EE","F","POP","TOTAL","OC9","A","Y30-49","2011","614","","" +"EE","F","POP","TOTAL","OC9","A","Y50-64","2011","570","","" +"EE","F","POP","TOTAL","OC9","A","Y65-84","2011","64","","" +"EE","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","B","Y15-29","2011","10","","" +"EE","F","POP","TOTAL","OC9","B","Y30-49","2011","71","","" +"EE","F","POP","TOTAL","OC9","B","Y50-64","2011","72","","" +"EE","F","POP","TOTAL","OC9","B","Y65-84","2011","12","","" +"EE","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","C","Y15-29","2011","712","","" +"EE","F","POP","TOTAL","OC9","C","Y30-49","2011","2162","","" +"EE","F","POP","TOTAL","OC9","C","Y50-64","2011","2289","","" +"EE","F","POP","TOTAL","OC9","C","Y65-84","2011","269","","" +"EE","F","POP","TOTAL","OC9","C","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","D","Y15-29","2011","4","","" +"EE","F","POP","TOTAL","OC9","D","Y30-49","2011","34","","" +"EE","F","POP","TOTAL","OC9","D","Y50-64","2011","82","","" +"EE","F","POP","TOTAL","OC9","D","Y65-84","2011","24","","" +"EE","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","E","Y15-29","2011","36","","" +"EE","F","POP","TOTAL","OC9","E","Y30-49","2011","110","","" +"EE","F","POP","TOTAL","OC9","E","Y50-64","2011","118","","" +"EE","F","POP","TOTAL","OC9","E","Y65-84","2011","13","","" +"EE","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","F","Y15-29","2011","62","","" +"EE","F","POP","TOTAL","OC9","F","Y30-49","2011","175","","" +"EE","F","POP","TOTAL","OC9","F","Y50-64","2011","193","","" +"EE","F","POP","TOTAL","OC9","F","Y65-84","2011","44","","" +"EE","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","G","Y15-29","2011","585","","" +"EE","F","POP","TOTAL","OC9","G","Y30-49","2011","1203","","" +"EE","F","POP","TOTAL","OC9","G","Y50-64","2011","1323","","" +"EE","F","POP","TOTAL","OC9","G","Y65-84","2011","214","","" +"EE","F","POP","TOTAL","OC9","G","Y_GE85","2011","2","","" +"EE","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","H","Y15-29","2011","114","","" +"EE","F","POP","TOTAL","OC9","H","Y30-49","2011","327","","" +"EE","F","POP","TOTAL","OC9","H","Y50-64","2011","443","","" +"EE","F","POP","TOTAL","OC9","H","Y65-84","2011","90","","" +"EE","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","I","Y15-29","2011","1087","","" +"EE","F","POP","TOTAL","OC9","I","Y30-49","2011","1399","","" +"EE","F","POP","TOTAL","OC9","I","Y50-64","2011","1521","","" +"EE","F","POP","TOTAL","OC9","I","Y65-84","2011","144","","" +"EE","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","J","Y15-29","2011","39","","" +"EE","F","POP","TOTAL","OC9","J","Y30-49","2011","38","","" +"EE","F","POP","TOTAL","OC9","J","Y50-64","2011","74","","" +"EE","F","POP","TOTAL","OC9","J","Y65-84","2011","42","","" +"EE","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","K","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC9","K","Y30-49","2011","17","","" +"EE","F","POP","TOTAL","OC9","K","Y50-64","2011","26","","" +"EE","F","POP","TOTAL","OC9","K","Y65-84","2011","6","","" +"EE","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","L","Y15-29","2011","121","","" +"EE","F","POP","TOTAL","OC9","L","Y30-49","2011","575","","" +"EE","F","POP","TOTAL","OC9","L","Y50-64","2011","1086","","" +"EE","F","POP","TOTAL","OC9","L","Y65-84","2011","485","","" +"EE","F","POP","TOTAL","OC9","L","Y_GE85","2011","3","","" +"EE","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","M","Y15-29","2011","30","","" +"EE","F","POP","TOTAL","OC9","M","Y30-49","2011","65","","" +"EE","F","POP","TOTAL","OC9","M","Y50-64","2011","101","","" +"EE","F","POP","TOTAL","OC9","M","Y65-84","2011","56","","" +"EE","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","N","Y15-29","2011","679","","" +"EE","F","POP","TOTAL","OC9","N","Y30-49","2011","1908","","" +"EE","F","POP","TOTAL","OC9","N","Y50-64","2011","2341","","" +"EE","F","POP","TOTAL","OC9","N","Y65-84","2011","328","","" +"EE","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","O","Y15-29","2011","66","","" +"EE","F","POP","TOTAL","OC9","O","Y30-49","2011","240","","" +"EE","F","POP","TOTAL","OC9","O","Y50-64","2011","416","","" +"EE","F","POP","TOTAL","OC9","O","Y65-84","2011","111","","" +"EE","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","P","Y15-29","2011","163","","" +"EE","F","POP","TOTAL","OC9","P","Y30-49","2011","1155","","" +"EE","F","POP","TOTAL","OC9","P","Y50-64","2011","2072","","" +"EE","F","POP","TOTAL","OC9","P","Y65-84","2011","609","","" +"EE","F","POP","TOTAL","OC9","P","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","Q","Y15-29","2011","123","","" +"EE","F","POP","TOTAL","OC9","Q","Y30-49","2011","605","","" +"EE","F","POP","TOTAL","OC9","Q","Y50-64","2011","1103","","" +"EE","F","POP","TOTAL","OC9","Q","Y65-84","2011","264","","" +"EE","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","R","Y15-29","2011","188","","" +"EE","F","POP","TOTAL","OC9","R","Y30-49","2011","294","","" +"EE","F","POP","TOTAL","OC9","R","Y50-64","2011","505","","" +"EE","F","POP","TOTAL","OC9","R","Y65-84","2011","218","","" +"EE","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","S","Y15-29","2011","50","","" +"EE","F","POP","TOTAL","OC9","S","Y30-49","2011","157","","" +"EE","F","POP","TOTAL","OC9","S","Y50-64","2011","187","","" +"EE","F","POP","TOTAL","OC9","S","Y65-84","2011","58","","" +"EE","F","POP","TOTAL","OC9","S","Y_GE85","2011","2","","" +"EE","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","T","Y15-29","2011","2","","" +"EE","F","POP","TOTAL","OC9","T","Y30-49","2011","13","","" +"EE","F","POP","TOTAL","OC9","T","Y50-64","2011","9","","" +"EE","F","POP","TOTAL","OC9","T","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","U","Y15-29","2011","1","","" +"EE","F","POP","TOTAL","OC9","U","Y30-49","2011","4","","" +"EE","F","POP","TOTAL","OC9","U","Y50-64","2011","4","","" +"EE","F","POP","TOTAL","OC9","U","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","OC9","UNK","Y15-29","2011","21","","" +"EE","F","POP","TOTAL","OC9","UNK","Y30-49","2011","54","","" +"EE","F","POP","TOTAL","OC9","UNK","Y50-64","2011","57","","" +"EE","F","POP","TOTAL","OC9","UNK","Y65-84","2011","15","","" +"EE","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","A","Y15-29","2011","6","","" +"EE","F","POP","TOTAL","UNK","A","Y30-49","2011","24","","" +"EE","F","POP","TOTAL","UNK","A","Y50-64","2011","18","","" +"EE","F","POP","TOTAL","UNK","A","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","UNK","A","Y_GE85","2011","1","","" +"EE","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","UNK","B","Y30-49","2011","7","","" +"EE","F","POP","TOTAL","UNK","B","Y50-64","2011","9","","" +"EE","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","C","Y15-29","2011","98","","" +"EE","F","POP","TOTAL","UNK","C","Y30-49","2011","326","","" +"EE","F","POP","TOTAL","UNK","C","Y50-64","2011","174","","" +"EE","F","POP","TOTAL","UNK","C","Y65-84","2011","6","","" +"EE","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","D","Y15-29","2011","3","","" +"EE","F","POP","TOTAL","UNK","D","Y30-49","2011","15","","" +"EE","F","POP","TOTAL","UNK","D","Y50-64","2011","15","","" +"EE","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","E","Y15-29","2011","5","","" +"EE","F","POP","TOTAL","UNK","E","Y30-49","2011","8","","" +"EE","F","POP","TOTAL","UNK","E","Y50-64","2011","8","","" +"EE","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","F","Y15-29","2011","12","","" +"EE","F","POP","TOTAL","UNK","F","Y30-49","2011","29","","" +"EE","F","POP","TOTAL","UNK","F","Y50-64","2011","15","","" +"EE","F","POP","TOTAL","UNK","F","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","G","Y15-29","2011","69","","" +"EE","F","POP","TOTAL","UNK","G","Y30-49","2011","118","","" +"EE","F","POP","TOTAL","UNK","G","Y50-64","2011","62","","" +"EE","F","POP","TOTAL","UNK","G","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","H","Y15-29","2011","34","","" +"EE","F","POP","TOTAL","UNK","H","Y30-49","2011","99","","" +"EE","F","POP","TOTAL","UNK","H","Y50-64","2011","46","","" +"EE","F","POP","TOTAL","UNK","H","Y65-84","2011","3","","" +"EE","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","I","Y15-29","2011","71","","" +"EE","F","POP","TOTAL","UNK","I","Y30-49","2011","68","","" +"EE","F","POP","TOTAL","UNK","I","Y50-64","2011","26","","" +"EE","F","POP","TOTAL","UNK","I","Y65-84","2011","4","","" +"EE","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","J","Y15-29","2011","33","","" +"EE","F","POP","TOTAL","UNK","J","Y30-49","2011","40","","" +"EE","F","POP","TOTAL","UNK","J","Y50-64","2011","16","","" +"EE","F","POP","TOTAL","UNK","J","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","K","Y15-29","2011","42","","" +"EE","F","POP","TOTAL","UNK","K","Y30-49","2011","74","","" +"EE","F","POP","TOTAL","UNK","K","Y50-64","2011","12","","" +"EE","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","L","Y15-29","2011","5","","" +"EE","F","POP","TOTAL","UNK","L","Y30-49","2011","13","","" +"EE","F","POP","TOTAL","UNK","L","Y50-64","2011","19","","" +"EE","F","POP","TOTAL","UNK","L","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","M","Y15-29","2011","27","","" +"EE","F","POP","TOTAL","UNK","M","Y30-49","2011","56","","" +"EE","F","POP","TOTAL","UNK","M","Y50-64","2011","19","","" +"EE","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","N","Y15-29","2011","31","","" +"EE","F","POP","TOTAL","UNK","N","Y30-49","2011","53","","" +"EE","F","POP","TOTAL","UNK","N","Y50-64","2011","21","","" +"EE","F","POP","TOTAL","UNK","N","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","O","Y15-29","2011","42","","" +"EE","F","POP","TOTAL","UNK","O","Y30-49","2011","127","","" +"EE","F","POP","TOTAL","UNK","O","Y50-64","2011","55","","" +"EE","F","POP","TOTAL","UNK","O","Y65-84","2011","9","","" +"EE","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","P","Y15-29","2011","21","","" +"EE","F","POP","TOTAL","UNK","P","Y30-49","2011","65","","" +"EE","F","POP","TOTAL","UNK","P","Y50-64","2011","33","","" +"EE","F","POP","TOTAL","UNK","P","Y65-84","2011","5","","" +"EE","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","Q","Y15-29","2011","16","","" +"EE","F","POP","TOTAL","UNK","Q","Y30-49","2011","69","","" +"EE","F","POP","TOTAL","UNK","Q","Y50-64","2011","41","","" +"EE","F","POP","TOTAL","UNK","Q","Y65-84","2011","9","","" +"EE","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","R","Y15-29","2011","23","","" +"EE","F","POP","TOTAL","UNK","R","Y30-49","2011","23","","" +"EE","F","POP","TOTAL","UNK","R","Y50-64","2011","12","","" +"EE","F","POP","TOTAL","UNK","R","Y65-84","2011","1","","" +"EE","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","S","Y15-29","2011","16","","" +"EE","F","POP","TOTAL","UNK","S","Y30-49","2011","48","","" +"EE","F","POP","TOTAL","UNK","S","Y50-64","2011","13","","" +"EE","F","POP","TOTAL","UNK","S","Y65-84","2011","2","","" +"EE","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"EE","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"EE","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"EE","F","POP","TOTAL","UNK","U","Y30-49","2011","1","","" +"EE","F","POP","TOTAL","UNK","U","Y50-64","2011","3","","" +"EE","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"EE","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"EE","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"EE","F","POP","TOTAL","UNK","UNK","Y15-29","2011","381","","" +"EE","F","POP","TOTAL","UNK","UNK","Y30-49","2011","537","","" +"EE","F","POP","TOTAL","UNK","UNK","Y50-64","2011","277","","" +"EE","F","POP","TOTAL","UNK","UNK","Y65-84","2011","28","","" +"EE","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","2","","" +"EE","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","NAP","Y15-29","2011","61190","","" +"EE","M","POP","TOTAL","NAP","NAP","Y30-49","2011","27648","","" +"EE","M","POP","TOTAL","NAP","NAP","Y50-64","2011","37465","","" +"EE","M","POP","TOTAL","NAP","NAP","Y65-84","2011","61599","","" +"EE","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","4445","","" +"EE","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","102888","","" +"EE","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","G","Y15-29","2011","1","","" +"EE","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","G","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","H","Y15-29","2011","2","","" +"EE","M","POP","TOTAL","OC0","H","Y30-49","2011","3","","" +"EE","M","POP","TOTAL","OC0","H","Y50-64","2011","4","","" +"EE","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","J","Y30-49","2011","1","","" +"EE","M","POP","TOTAL","OC0","J","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","N","Y30-49","2011","1","","" +"EE","M","POP","TOTAL","OC0","N","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","O","Y15-29","2011","4153","","" +"EE","M","POP","TOTAL","OC0","O","Y30-49","2011","1336","","" +"EE","M","POP","TOTAL","OC0","O","Y50-64","2011","214","","" +"EE","M","POP","TOTAL","OC0","O","Y65-84","2011","19","","" +"EE","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","P","Y15-29","2011","9","","" +"EE","M","POP","TOTAL","OC0","P","Y30-49","2011","39","","" +"EE","M","POP","TOTAL","OC0","P","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC0","P","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","Q","Y15-29","2011","2","","" +"EE","M","POP","TOTAL","OC0","Q","Y30-49","2011","3","","" +"EE","M","POP","TOTAL","OC0","Q","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","R","Y15-29","2011","2","","" +"EE","M","POP","TOTAL","OC0","R","Y30-49","2011","5","","" +"EE","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","S","Y30-49","2011","1","","" +"EE","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC0","U","Y30-49","2011","3","","" +"EE","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC0","UNK","Y15-29","2011","4","","" +"EE","M","POP","TOTAL","OC0","UNK","Y30-49","2011","3","","" +"EE","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","A","Y15-29","2011","50","","" +"EE","M","POP","TOTAL","OC1","A","Y30-49","2011","396","","" +"EE","M","POP","TOTAL","OC1","A","Y50-64","2011","215","","" +"EE","M","POP","TOTAL","OC1","A","Y65-84","2011","22","","" +"EE","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","B","Y15-29","2011","9","","" +"EE","M","POP","TOTAL","OC1","B","Y30-49","2011","107","","" +"EE","M","POP","TOTAL","OC1","B","Y50-64","2011","126","","" +"EE","M","POP","TOTAL","OC1","B","Y65-84","2011","15","","" +"EE","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","C","Y15-29","2011","498","","" +"EE","M","POP","TOTAL","OC1","C","Y30-49","2011","3858","","" +"EE","M","POP","TOTAL","OC1","C","Y50-64","2011","1685","","" +"EE","M","POP","TOTAL","OC1","C","Y65-84","2011","185","","" +"EE","M","POP","TOTAL","OC1","C","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","D","Y15-29","2011","27","","" +"EE","M","POP","TOTAL","OC1","D","Y30-49","2011","270","","" +"EE","M","POP","TOTAL","OC1","D","Y50-64","2011","165","","" +"EE","M","POP","TOTAL","OC1","D","Y65-84","2011","33","","" +"EE","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","E","Y15-29","2011","25","","" +"EE","M","POP","TOTAL","OC1","E","Y30-49","2011","202","","" +"EE","M","POP","TOTAL","OC1","E","Y50-64","2011","106","","" +"EE","M","POP","TOTAL","OC1","E","Y65-84","2011","16","","" +"EE","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","F","Y15-29","2011","606","","" +"EE","M","POP","TOTAL","OC1","F","Y30-49","2011","3417","","" +"EE","M","POP","TOTAL","OC1","F","Y50-64","2011","1300","","" +"EE","M","POP","TOTAL","OC1","F","Y65-84","2011","114","","" +"EE","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","G","Y15-29","2011","644","","" +"EE","M","POP","TOTAL","OC1","G","Y30-49","2011","4963","","" +"EE","M","POP","TOTAL","OC1","G","Y50-64","2011","1785","","" +"EE","M","POP","TOTAL","OC1","G","Y65-84","2011","138","","" +"EE","M","POP","TOTAL","OC1","G","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","H","Y15-29","2011","249","","" +"EE","M","POP","TOTAL","OC1","H","Y30-49","2011","1861","","" +"EE","M","POP","TOTAL","OC1","H","Y50-64","2011","798","","" +"EE","M","POP","TOTAL","OC1","H","Y65-84","2011","79","","" +"EE","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","I","Y15-29","2011","158","","" +"EE","M","POP","TOTAL","OC1","I","Y30-49","2011","638","","" +"EE","M","POP","TOTAL","OC1","I","Y50-64","2011","241","","" +"EE","M","POP","TOTAL","OC1","I","Y65-84","2011","14","","" +"EE","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","J","Y15-29","2011","343","","" +"EE","M","POP","TOTAL","OC1","J","Y30-49","2011","1268","","" +"EE","M","POP","TOTAL","OC1","J","Y50-64","2011","227","","" +"EE","M","POP","TOTAL","OC1","J","Y65-84","2011","29","","" +"EE","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","K","Y15-29","2011","91","","" +"EE","M","POP","TOTAL","OC1","K","Y30-49","2011","610","","" +"EE","M","POP","TOTAL","OC1","K","Y50-64","2011","108","","" +"EE","M","POP","TOTAL","OC1","K","Y65-84","2011","10","","" +"EE","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","L","Y15-29","2011","52","","" +"EE","M","POP","TOTAL","OC1","L","Y30-49","2011","587","","" +"EE","M","POP","TOTAL","OC1","L","Y50-64","2011","397","","" +"EE","M","POP","TOTAL","OC1","L","Y65-84","2011","66","","" +"EE","M","POP","TOTAL","OC1","L","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","M","Y15-29","2011","245","","" +"EE","M","POP","TOTAL","OC1","M","Y30-49","2011","1321","","" +"EE","M","POP","TOTAL","OC1","M","Y50-64","2011","521","","" +"EE","M","POP","TOTAL","OC1","M","Y65-84","2011","123","","" +"EE","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","N","Y15-29","2011","222","","" +"EE","M","POP","TOTAL","OC1","N","Y30-49","2011","982","","" +"EE","M","POP","TOTAL","OC1","N","Y50-64","2011","292","","" +"EE","M","POP","TOTAL","OC1","N","Y65-84","2011","25","","" +"EE","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","O","Y15-29","2011","163","","" +"EE","M","POP","TOTAL","OC1","O","Y30-49","2011","1520","","" +"EE","M","POP","TOTAL","OC1","O","Y50-64","2011","673","","" +"EE","M","POP","TOTAL","OC1","O","Y65-84","2011","83","","" +"EE","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","P","Y15-29","2011","61","","" +"EE","M","POP","TOTAL","OC1","P","Y30-49","2011","449","","" +"EE","M","POP","TOTAL","OC1","P","Y50-64","2011","499","","" +"EE","M","POP","TOTAL","OC1","P","Y65-84","2011","91","","" +"EE","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","Q","Y15-29","2011","25","","" +"EE","M","POP","TOTAL","OC1","Q","Y30-49","2011","211","","" +"EE","M","POP","TOTAL","OC1","Q","Y50-64","2011","194","","" +"EE","M","POP","TOTAL","OC1","Q","Y65-84","2011","33","","" +"EE","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","R","Y15-29","2011","100","","" +"EE","M","POP","TOTAL","OC1","R","Y30-49","2011","427","","" +"EE","M","POP","TOTAL","OC1","R","Y50-64","2011","242","","" +"EE","M","POP","TOTAL","OC1","R","Y65-84","2011","43","","" +"EE","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","S","Y15-29","2011","81","","" +"EE","M","POP","TOTAL","OC1","S","Y30-49","2011","332","","" +"EE","M","POP","TOTAL","OC1","S","Y50-64","2011","179","","" +"EE","M","POP","TOTAL","OC1","S","Y65-84","2011","51","","" +"EE","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","U","Y15-29","2011","1","","" +"EE","M","POP","TOTAL","OC1","U","Y30-49","2011","18","","" +"EE","M","POP","TOTAL","OC1","U","Y50-64","2011","5","","" +"EE","M","POP","TOTAL","OC1","U","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC1","UNK","Y15-29","2011","9","","" +"EE","M","POP","TOTAL","OC1","UNK","Y30-49","2011","42","","" +"EE","M","POP","TOTAL","OC1","UNK","Y50-64","2011","22","","" +"EE","M","POP","TOTAL","OC1","UNK","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","A","Y15-29","2011","37","","" +"EE","M","POP","TOTAL","OC2","A","Y30-49","2011","134","","" +"EE","M","POP","TOTAL","OC2","A","Y50-64","2011","95","","" +"EE","M","POP","TOTAL","OC2","A","Y65-84","2011","27","","" +"EE","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","B","Y15-29","2011","5","","" +"EE","M","POP","TOTAL","OC2","B","Y30-49","2011","20","","" +"EE","M","POP","TOTAL","OC2","B","Y50-64","2011","41","","" +"EE","M","POP","TOTAL","OC2","B","Y65-84","2011","8","","" +"EE","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","C","Y15-29","2011","693","","" +"EE","M","POP","TOTAL","OC2","C","Y30-49","2011","1243","","" +"EE","M","POP","TOTAL","OC2","C","Y50-64","2011","695","","" +"EE","M","POP","TOTAL","OC2","C","Y65-84","2011","136","","" +"EE","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","D","Y15-29","2011","102","","" +"EE","M","POP","TOTAL","OC2","D","Y30-49","2011","238","","" +"EE","M","POP","TOTAL","OC2","D","Y50-64","2011","173","","" +"EE","M","POP","TOTAL","OC2","D","Y65-84","2011","37","","" +"EE","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","E","Y15-29","2011","10","","" +"EE","M","POP","TOTAL","OC2","E","Y30-49","2011","48","","" +"EE","M","POP","TOTAL","OC2","E","Y50-64","2011","30","","" +"EE","M","POP","TOTAL","OC2","E","Y65-84","2011","4","","" +"EE","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","F","Y15-29","2011","213","","" +"EE","M","POP","TOTAL","OC2","F","Y30-49","2011","382","","" +"EE","M","POP","TOTAL","OC2","F","Y50-64","2011","279","","" +"EE","M","POP","TOTAL","OC2","F","Y65-84","2011","67","","" +"EE","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","G","Y15-29","2011","285","","" +"EE","M","POP","TOTAL","OC2","G","Y30-49","2011","691","","" +"EE","M","POP","TOTAL","OC2","G","Y50-64","2011","211","","" +"EE","M","POP","TOTAL","OC2","G","Y65-84","2011","28","","" +"EE","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","H","Y15-29","2011","115","","" +"EE","M","POP","TOTAL","OC2","H","Y30-49","2011","288","","" +"EE","M","POP","TOTAL","OC2","H","Y50-64","2011","163","","" +"EE","M","POP","TOTAL","OC2","H","Y65-84","2011","27","","" +"EE","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","I","Y15-29","2011","30","","" +"EE","M","POP","TOTAL","OC2","I","Y30-49","2011","33","","" +"EE","M","POP","TOTAL","OC2","I","Y50-64","2011","11","","" +"EE","M","POP","TOTAL","OC2","I","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","J","Y15-29","2011","2179","","" +"EE","M","POP","TOTAL","OC2","J","Y30-49","2011","2808","","" +"EE","M","POP","TOTAL","OC2","J","Y50-64","2011","458","","" +"EE","M","POP","TOTAL","OC2","J","Y65-84","2011","85","","" +"EE","M","POP","TOTAL","OC2","J","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","K","Y15-29","2011","343","","" +"EE","M","POP","TOTAL","OC2","K","Y30-49","2011","692","","" +"EE","M","POP","TOTAL","OC2","K","Y50-64","2011","104","","" +"EE","M","POP","TOTAL","OC2","K","Y65-84","2011","8","","" +"EE","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","L","Y15-29","2011","15","","" +"EE","M","POP","TOTAL","OC2","L","Y30-49","2011","72","","" +"EE","M","POP","TOTAL","OC2","L","Y50-64","2011","36","","" +"EE","M","POP","TOTAL","OC2","L","Y65-84","2011","21","","" +"EE","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","M","Y15-29","2011","1248","","" +"EE","M","POP","TOTAL","OC2","M","Y30-49","2011","2693","","" +"EE","M","POP","TOTAL","OC2","M","Y50-64","2011","1099","","" +"EE","M","POP","TOTAL","OC2","M","Y65-84","2011","328","","" +"EE","M","POP","TOTAL","OC2","M","Y_GE85","2011","4","","" +"EE","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","N","Y15-29","2011","72","","" +"EE","M","POP","TOTAL","OC2","N","Y30-49","2011","173","","" +"EE","M","POP","TOTAL","OC2","N","Y50-64","2011","46","","" +"EE","M","POP","TOTAL","OC2","N","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","O","Y15-29","2011","551","","" +"EE","M","POP","TOTAL","OC2","O","Y30-49","2011","1442","","" +"EE","M","POP","TOTAL","OC2","O","Y50-64","2011","716","","" +"EE","M","POP","TOTAL","OC2","O","Y65-84","2011","137","","" +"EE","M","POP","TOTAL","OC2","O","Y_GE85","2011","2","","" +"EE","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","P","Y15-29","2011","804","","" +"EE","M","POP","TOTAL","OC2","P","Y30-49","2011","2311","","" +"EE","M","POP","TOTAL","OC2","P","Y50-64","2011","1767","","" +"EE","M","POP","TOTAL","OC2","P","Y65-84","2011","763","","" +"EE","M","POP","TOTAL","OC2","P","Y_GE85","2011","6","","" +"EE","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","Q","Y15-29","2011","223","","" +"EE","M","POP","TOTAL","OC2","Q","Y30-49","2011","647","","" +"EE","M","POP","TOTAL","OC2","Q","Y50-64","2011","457","","" +"EE","M","POP","TOTAL","OC2","Q","Y65-84","2011","165","","" +"EE","M","POP","TOTAL","OC2","Q","Y_GE85","2011","3","","" +"EE","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","R","Y15-29","2011","321","","" +"EE","M","POP","TOTAL","OC2","R","Y30-49","2011","768","","" +"EE","M","POP","TOTAL","OC2","R","Y50-64","2011","361","","" +"EE","M","POP","TOTAL","OC2","R","Y65-84","2011","102","","" +"EE","M","POP","TOTAL","OC2","R","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","S","Y15-29","2011","90","","" +"EE","M","POP","TOTAL","OC2","S","Y30-49","2011","283","","" +"EE","M","POP","TOTAL","OC2","S","Y50-64","2011","176","","" +"EE","M","POP","TOTAL","OC2","S","Y65-84","2011","37","","" +"EE","M","POP","TOTAL","OC2","S","Y_GE85","2011","4","","" +"EE","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","T","Y15-29","2011","1","","" +"EE","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","U","Y15-29","2011","4","","" +"EE","M","POP","TOTAL","OC2","U","Y30-49","2011","24","","" +"EE","M","POP","TOTAL","OC2","U","Y50-64","2011","9","","" +"EE","M","POP","TOTAL","OC2","U","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC2","UNK","Y15-29","2011","18","","" +"EE","M","POP","TOTAL","OC2","UNK","Y30-49","2011","43","","" +"EE","M","POP","TOTAL","OC2","UNK","Y50-64","2011","14","","" +"EE","M","POP","TOTAL","OC2","UNK","Y65-84","2011","4","","" +"EE","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","A","Y15-29","2011","80","","" +"EE","M","POP","TOTAL","OC3","A","Y30-49","2011","378","","" +"EE","M","POP","TOTAL","OC3","A","Y50-64","2011","261","","" +"EE","M","POP","TOTAL","OC3","A","Y65-84","2011","22","","" +"EE","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","B","Y15-29","2011","33","","" +"EE","M","POP","TOTAL","OC3","B","Y30-49","2011","170","","" +"EE","M","POP","TOTAL","OC3","B","Y50-64","2011","165","","" +"EE","M","POP","TOTAL","OC3","B","Y65-84","2011","21","","" +"EE","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","C","Y15-29","2011","1321","","" +"EE","M","POP","TOTAL","OC3","C","Y30-49","2011","3518","","" +"EE","M","POP","TOTAL","OC3","C","Y50-64","2011","1500","","" +"EE","M","POP","TOTAL","OC3","C","Y65-84","2011","174","","" +"EE","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","D","Y15-29","2011","102","","" +"EE","M","POP","TOTAL","OC3","D","Y30-49","2011","487","","" +"EE","M","POP","TOTAL","OC3","D","Y50-64","2011","408","","" +"EE","M","POP","TOTAL","OC3","D","Y65-84","2011","53","","" +"EE","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","E","Y15-29","2011","43","","" +"EE","M","POP","TOTAL","OC3","E","Y30-49","2011","171","","" +"EE","M","POP","TOTAL","OC3","E","Y50-64","2011","175","","" +"EE","M","POP","TOTAL","OC3","E","Y65-84","2011","27","","" +"EE","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","F","Y15-29","2011","1202","","" +"EE","M","POP","TOTAL","OC3","F","Y30-49","2011","2996","","" +"EE","M","POP","TOTAL","OC3","F","Y50-64","2011","1212","","" +"EE","M","POP","TOTAL","OC3","F","Y65-84","2011","101","","" +"EE","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","G","Y15-29","2011","1589","","" +"EE","M","POP","TOTAL","OC3","G","Y30-49","2011","4402","","" +"EE","M","POP","TOTAL","OC3","G","Y50-64","2011","931","","" +"EE","M","POP","TOTAL","OC3","G","Y65-84","2011","68","","" +"EE","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","H","Y15-29","2011","545","","" +"EE","M","POP","TOTAL","OC3","H","Y30-49","2011","1459","","" +"EE","M","POP","TOTAL","OC3","H","Y50-64","2011","778","","" +"EE","M","POP","TOTAL","OC3","H","Y65-84","2011","89","","" +"EE","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","I","Y15-29","2011","211","","" +"EE","M","POP","TOTAL","OC3","I","Y30-49","2011","286","","" +"EE","M","POP","TOTAL","OC3","I","Y50-64","2011","49","","" +"EE","M","POP","TOTAL","OC3","I","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","J","Y15-29","2011","960","","" +"EE","M","POP","TOTAL","OC3","J","Y30-49","2011","1029","","" +"EE","M","POP","TOTAL","OC3","J","Y50-64","2011","243","","" +"EE","M","POP","TOTAL","OC3","J","Y65-84","2011","25","","" +"EE","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","K","Y15-29","2011","185","","" +"EE","M","POP","TOTAL","OC3","K","Y30-49","2011","363","","" +"EE","M","POP","TOTAL","OC3","K","Y50-64","2011","67","","" +"EE","M","POP","TOTAL","OC3","K","Y65-84","2011","13","","" +"EE","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","L","Y15-29","2011","152","","" +"EE","M","POP","TOTAL","OC3","L","Y30-49","2011","676","","" +"EE","M","POP","TOTAL","OC3","L","Y50-64","2011","450","","" +"EE","M","POP","TOTAL","OC3","L","Y65-84","2011","222","","" +"EE","M","POP","TOTAL","OC3","L","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","M","Y15-29","2011","513","","" +"EE","M","POP","TOTAL","OC3","M","Y30-49","2011","876","","" +"EE","M","POP","TOTAL","OC3","M","Y50-64","2011","383","","" +"EE","M","POP","TOTAL","OC3","M","Y65-84","2011","76","","" +"EE","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","N","Y15-29","2011","287","","" +"EE","M","POP","TOTAL","OC3","N","Y30-49","2011","460","","" +"EE","M","POP","TOTAL","OC3","N","Y50-64","2011","145","","" +"EE","M","POP","TOTAL","OC3","N","Y65-84","2011","12","","" +"EE","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","O","Y15-29","2011","531","","" +"EE","M","POP","TOTAL","OC3","O","Y30-49","2011","1721","","" +"EE","M","POP","TOTAL","OC3","O","Y50-64","2011","616","","" +"EE","M","POP","TOTAL","OC3","O","Y65-84","2011","81","","" +"EE","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","P","Y15-29","2011","222","","" +"EE","M","POP","TOTAL","OC3","P","Y30-49","2011","273","","" +"EE","M","POP","TOTAL","OC3","P","Y50-64","2011","164","","" +"EE","M","POP","TOTAL","OC3","P","Y65-84","2011","65","","" +"EE","M","POP","TOTAL","OC3","P","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","Q","Y15-29","2011","174","","" +"EE","M","POP","TOTAL","OC3","Q","Y30-49","2011","356","","" +"EE","M","POP","TOTAL","OC3","Q","Y50-64","2011","230","","" +"EE","M","POP","TOTAL","OC3","Q","Y65-84","2011","34","","" +"EE","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","R","Y15-29","2011","519","","" +"EE","M","POP","TOTAL","OC3","R","Y30-49","2011","651","","" +"EE","M","POP","TOTAL","OC3","R","Y50-64","2011","271","","" +"EE","M","POP","TOTAL","OC3","R","Y65-84","2011","87","","" +"EE","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","S","Y15-29","2011","139","","" +"EE","M","POP","TOTAL","OC3","S","Y30-49","2011","213","","" +"EE","M","POP","TOTAL","OC3","S","Y50-64","2011","94","","" +"EE","M","POP","TOTAL","OC3","S","Y65-84","2011","16","","" +"EE","M","POP","TOTAL","OC3","S","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","U","Y15-29","2011","10","","" +"EE","M","POP","TOTAL","OC3","U","Y30-49","2011","5","","" +"EE","M","POP","TOTAL","OC3","U","Y50-64","2011","4","","" +"EE","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC3","UNK","Y15-29","2011","31","","" +"EE","M","POP","TOTAL","OC3","UNK","Y30-49","2011","65","","" +"EE","M","POP","TOTAL","OC3","UNK","Y50-64","2011","22","","" +"EE","M","POP","TOTAL","OC3","UNK","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","A","Y15-29","2011","23","","" +"EE","M","POP","TOTAL","OC4","A","Y30-49","2011","61","","" +"EE","M","POP","TOTAL","OC4","A","Y50-64","2011","21","","" +"EE","M","POP","TOTAL","OC4","A","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","B","Y15-29","2011","2","","" +"EE","M","POP","TOTAL","OC4","B","Y30-49","2011","12","","" +"EE","M","POP","TOTAL","OC4","B","Y50-64","2011","16","","" +"EE","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","C","Y15-29","2011","631","","" +"EE","M","POP","TOTAL","OC4","C","Y30-49","2011","769","","" +"EE","M","POP","TOTAL","OC4","C","Y50-64","2011","299","","" +"EE","M","POP","TOTAL","OC4","C","Y65-84","2011","24","","" +"EE","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","D","Y15-29","2011","6","","" +"EE","M","POP","TOTAL","OC4","D","Y30-49","2011","35","","" +"EE","M","POP","TOTAL","OC4","D","Y50-64","2011","9","","" +"EE","M","POP","TOTAL","OC4","D","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","E","Y15-29","2011","13","","" +"EE","M","POP","TOTAL","OC4","E","Y30-49","2011","38","","" +"EE","M","POP","TOTAL","OC4","E","Y50-64","2011","21","","" +"EE","M","POP","TOTAL","OC4","E","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","F","Y15-29","2011","20","","" +"EE","M","POP","TOTAL","OC4","F","Y30-49","2011","64","","" +"EE","M","POP","TOTAL","OC4","F","Y50-64","2011","38","","" +"EE","M","POP","TOTAL","OC4","F","Y65-84","2011","6","","" +"EE","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","G","Y15-29","2011","763","","" +"EE","M","POP","TOTAL","OC4","G","Y30-49","2011","1061","","" +"EE","M","POP","TOTAL","OC4","G","Y50-64","2011","364","","" +"EE","M","POP","TOTAL","OC4","G","Y65-84","2011","31","","" +"EE","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","H","Y15-29","2011","1080","","" +"EE","M","POP","TOTAL","OC4","H","Y30-49","2011","1437","","" +"EE","M","POP","TOTAL","OC4","H","Y50-64","2011","627","","" +"EE","M","POP","TOTAL","OC4","H","Y65-84","2011","78","","" +"EE","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","I","Y15-29","2011","231","","" +"EE","M","POP","TOTAL","OC4","I","Y30-49","2011","99","","" +"EE","M","POP","TOTAL","OC4","I","Y50-64","2011","42","","" +"EE","M","POP","TOTAL","OC4","I","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","J","Y15-29","2011","178","","" +"EE","M","POP","TOTAL","OC4","J","Y30-49","2011","81","","" +"EE","M","POP","TOTAL","OC4","J","Y50-64","2011","30","","" +"EE","M","POP","TOTAL","OC4","J","Y65-84","2011","6","","" +"EE","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","K","Y15-29","2011","96","","" +"EE","M","POP","TOTAL","OC4","K","Y30-49","2011","118","","" +"EE","M","POP","TOTAL","OC4","K","Y50-64","2011","28","","" +"EE","M","POP","TOTAL","OC4","K","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","L","Y15-29","2011","8","","" +"EE","M","POP","TOTAL","OC4","L","Y30-49","2011","22","","" +"EE","M","POP","TOTAL","OC4","L","Y50-64","2011","27","","" +"EE","M","POP","TOTAL","OC4","L","Y65-84","2011","11","","" +"EE","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","M","Y15-29","2011","87","","" +"EE","M","POP","TOTAL","OC4","M","Y30-49","2011","97","","" +"EE","M","POP","TOTAL","OC4","M","Y50-64","2011","37","","" +"EE","M","POP","TOTAL","OC4","M","Y65-84","2011","9","","" +"EE","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","N","Y15-29","2011","263","","" +"EE","M","POP","TOTAL","OC4","N","Y30-49","2011","246","","" +"EE","M","POP","TOTAL","OC4","N","Y50-64","2011","69","","" +"EE","M","POP","TOTAL","OC4","N","Y65-84","2011","14","","" +"EE","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","O","Y15-29","2011","66","","" +"EE","M","POP","TOTAL","OC4","O","Y30-49","2011","143","","" +"EE","M","POP","TOTAL","OC4","O","Y50-64","2011","103","","" +"EE","M","POP","TOTAL","OC4","O","Y65-84","2011","13","","" +"EE","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","P","Y15-29","2011","14","","" +"EE","M","POP","TOTAL","OC4","P","Y30-49","2011","24","","" +"EE","M","POP","TOTAL","OC4","P","Y50-64","2011","34","","" +"EE","M","POP","TOTAL","OC4","P","Y65-84","2011","13","","" +"EE","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","Q","Y15-29","2011","14","","" +"EE","M","POP","TOTAL","OC4","Q","Y30-49","2011","16","","" +"EE","M","POP","TOTAL","OC4","Q","Y50-64","2011","15","","" +"EE","M","POP","TOTAL","OC4","Q","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","R","Y15-29","2011","109","","" +"EE","M","POP","TOTAL","OC4","R","Y30-49","2011","174","","" +"EE","M","POP","TOTAL","OC4","R","Y50-64","2011","37","","" +"EE","M","POP","TOTAL","OC4","R","Y65-84","2011","15","","" +"EE","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","S","Y15-29","2011","22","","" +"EE","M","POP","TOTAL","OC4","S","Y30-49","2011","29","","" +"EE","M","POP","TOTAL","OC4","S","Y50-64","2011","15","","" +"EE","M","POP","TOTAL","OC4","S","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","U","Y15-29","2011","1","","" +"EE","M","POP","TOTAL","OC4","U","Y30-49","2011","4","","" +"EE","M","POP","TOTAL","OC4","U","Y50-64","2011","4","","" +"EE","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC4","UNK","Y15-29","2011","12","","" +"EE","M","POP","TOTAL","OC4","UNK","Y30-49","2011","27","","" +"EE","M","POP","TOTAL","OC4","UNK","Y50-64","2011","4","","" +"EE","M","POP","TOTAL","OC4","UNK","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","A","Y15-29","2011","15","","" +"EE","M","POP","TOTAL","OC5","A","Y30-49","2011","28","","" +"EE","M","POP","TOTAL","OC5","A","Y50-64","2011","20","","" +"EE","M","POP","TOTAL","OC5","A","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","B","Y15-29","2011","3","","" +"EE","M","POP","TOTAL","OC5","B","Y30-49","2011","12","","" +"EE","M","POP","TOTAL","OC5","B","Y50-64","2011","12","","" +"EE","M","POP","TOTAL","OC5","B","Y65-84","2011","6","","" +"EE","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","C","Y15-29","2011","68","","" +"EE","M","POP","TOTAL","OC5","C","Y30-49","2011","124","","" +"EE","M","POP","TOTAL","OC5","C","Y50-64","2011","94","","" +"EE","M","POP","TOTAL","OC5","C","Y65-84","2011","30","","" +"EE","M","POP","TOTAL","OC5","C","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC5","D","Y30-49","2011","11","","" +"EE","M","POP","TOTAL","OC5","D","Y50-64","2011","7","","" +"EE","M","POP","TOTAL","OC5","D","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","E","Y15-29","2011","3","","" +"EE","M","POP","TOTAL","OC5","E","Y30-49","2011","8","","" +"EE","M","POP","TOTAL","OC5","E","Y50-64","2011","4","","" +"EE","M","POP","TOTAL","OC5","E","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","F","Y15-29","2011","20","","" +"EE","M","POP","TOTAL","OC5","F","Y30-49","2011","38","","" +"EE","M","POP","TOTAL","OC5","F","Y50-64","2011","21","","" +"EE","M","POP","TOTAL","OC5","F","Y65-84","2011","11","","" +"EE","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","G","Y15-29","2011","1510","","" +"EE","M","POP","TOTAL","OC5","G","Y30-49","2011","2023","","" +"EE","M","POP","TOTAL","OC5","G","Y50-64","2011","729","","" +"EE","M","POP","TOTAL","OC5","G","Y65-84","2011","74","","" +"EE","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","H","Y15-29","2011","225","","" +"EE","M","POP","TOTAL","OC5","H","Y30-49","2011","301","","" +"EE","M","POP","TOTAL","OC5","H","Y50-64","2011","155","","" +"EE","M","POP","TOTAL","OC5","H","Y65-84","2011","22","","" +"EE","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","I","Y15-29","2011","1436","","" +"EE","M","POP","TOTAL","OC5","I","Y30-49","2011","758","","" +"EE","M","POP","TOTAL","OC5","I","Y50-64","2011","162","","" +"EE","M","POP","TOTAL","OC5","I","Y65-84","2011","15","","" +"EE","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","J","Y15-29","2011","68","","" +"EE","M","POP","TOTAL","OC5","J","Y30-49","2011","31","","" +"EE","M","POP","TOTAL","OC5","J","Y50-64","2011","7","","" +"EE","M","POP","TOTAL","OC5","J","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","K","Y15-29","2011","4","","" +"EE","M","POP","TOTAL","OC5","K","Y30-49","2011","16","","" +"EE","M","POP","TOTAL","OC5","K","Y50-64","2011","8","","" +"EE","M","POP","TOTAL","OC5","K","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","L","Y15-29","2011","35","","" +"EE","M","POP","TOTAL","OC5","L","Y30-49","2011","69","","" +"EE","M","POP","TOTAL","OC5","L","Y50-64","2011","110","","" +"EE","M","POP","TOTAL","OC5","L","Y65-84","2011","70","","" +"EE","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","M","Y15-29","2011","35","","" +"EE","M","POP","TOTAL","OC5","M","Y30-49","2011","24","","" +"EE","M","POP","TOTAL","OC5","M","Y50-64","2011","11","","" +"EE","M","POP","TOTAL","OC5","M","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","N","Y15-29","2011","1167","","" +"EE","M","POP","TOTAL","OC5","N","Y30-49","2011","1399","","" +"EE","M","POP","TOTAL","OC5","N","Y50-64","2011","1321","","" +"EE","M","POP","TOTAL","OC5","N","Y65-84","2011","230","","" +"EE","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","O","Y15-29","2011","906","","" +"EE","M","POP","TOTAL","OC5","O","Y30-49","2011","2238","","" +"EE","M","POP","TOTAL","OC5","O","Y50-64","2011","791","","" +"EE","M","POP","TOTAL","OC5","O","Y65-84","2011","65","","" +"EE","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","P","Y15-29","2011","61","","" +"EE","M","POP","TOTAL","OC5","P","Y30-49","2011","275","","" +"EE","M","POP","TOTAL","OC5","P","Y50-64","2011","321","","" +"EE","M","POP","TOTAL","OC5","P","Y65-84","2011","102","","" +"EE","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","Q","Y15-29","2011","128","","" +"EE","M","POP","TOTAL","OC5","Q","Y30-49","2011","191","","" +"EE","M","POP","TOTAL","OC5","Q","Y50-64","2011","166","","" +"EE","M","POP","TOTAL","OC5","Q","Y65-84","2011","30","","" +"EE","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","R","Y15-29","2011","68","","" +"EE","M","POP","TOTAL","OC5","R","Y30-49","2011","75","","" +"EE","M","POP","TOTAL","OC5","R","Y50-64","2011","80","","" +"EE","M","POP","TOTAL","OC5","R","Y65-84","2011","27","","" +"EE","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","S","Y15-29","2011","62","","" +"EE","M","POP","TOTAL","OC5","S","Y30-49","2011","121","","" +"EE","M","POP","TOTAL","OC5","S","Y50-64","2011","86","","" +"EE","M","POP","TOTAL","OC5","S","Y65-84","2011","19","","" +"EE","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC5","T","Y50-64","2011","2","","" +"EE","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","U","Y15-29","2011","6","","" +"EE","M","POP","TOTAL","OC5","U","Y30-49","2011","7","","" +"EE","M","POP","TOTAL","OC5","U","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC5","UNK","Y15-29","2011","19","","" +"EE","M","POP","TOTAL","OC5","UNK","Y30-49","2011","28","","" +"EE","M","POP","TOTAL","OC5","UNK","Y50-64","2011","18","","" +"EE","M","POP","TOTAL","OC5","UNK","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","A","Y15-29","2011","674","","" +"EE","M","POP","TOTAL","OC6","A","Y30-49","2011","2867","","" +"EE","M","POP","TOTAL","OC6","A","Y50-64","2011","1992","","" +"EE","M","POP","TOTAL","OC6","A","Y65-84","2011","316","","" +"EE","M","POP","TOTAL","OC6","A","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","B","Y30-49","2011","3","","" +"EE","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","C","Y15-29","2011","9","","" +"EE","M","POP","TOTAL","OC6","C","Y30-49","2011","39","","" +"EE","M","POP","TOTAL","OC6","C","Y50-64","2011","23","","" +"EE","M","POP","TOTAL","OC6","C","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC6","D","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","E","Y15-29","2011","1","","" +"EE","M","POP","TOTAL","OC6","E","Y30-49","2011","1","","" +"EE","M","POP","TOTAL","OC6","E","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","F","Y15-29","2011","8","","" +"EE","M","POP","TOTAL","OC6","F","Y30-49","2011","10","","" +"EE","M","POP","TOTAL","OC6","F","Y50-64","2011","10","","" +"EE","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","G","Y15-29","2011","6","","" +"EE","M","POP","TOTAL","OC6","G","Y30-49","2011","18","","" +"EE","M","POP","TOTAL","OC6","G","Y50-64","2011","8","","" +"EE","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","H","Y15-29","2011","2","","" +"EE","M","POP","TOTAL","OC6","H","Y30-49","2011","2","","" +"EE","M","POP","TOTAL","OC6","H","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","I","Y15-29","2011","3","","" +"EE","M","POP","TOTAL","OC6","I","Y30-49","2011","8","","" +"EE","M","POP","TOTAL","OC6","I","Y50-64","2011","7","","" +"EE","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC6","L","Y50-64","2011","4","","" +"EE","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","M","Y30-49","2011","3","","" +"EE","M","POP","TOTAL","OC6","M","Y50-64","2011","4","","" +"EE","M","POP","TOTAL","OC6","M","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","N","Y15-29","2011","35","","" +"EE","M","POP","TOTAL","OC6","N","Y30-49","2011","50","","" +"EE","M","POP","TOTAL","OC6","N","Y50-64","2011","21","","" +"EE","M","POP","TOTAL","OC6","N","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","O","Y15-29","2011","2","","" +"EE","M","POP","TOTAL","OC6","O","Y30-49","2011","8","","" +"EE","M","POP","TOTAL","OC6","O","Y50-64","2011","9","","" +"EE","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","P","Y15-29","2011","2","","" +"EE","M","POP","TOTAL","OC6","P","Y30-49","2011","5","","" +"EE","M","POP","TOTAL","OC6","P","Y50-64","2011","10","","" +"EE","M","POP","TOTAL","OC6","P","Y65-84","2011","4","","" +"EE","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC6","Q","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","R","Y15-29","2011","5","","" +"EE","M","POP","TOTAL","OC6","R","Y30-49","2011","14","","" +"EE","M","POP","TOTAL","OC6","R","Y50-64","2011","14","","" +"EE","M","POP","TOTAL","OC6","R","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","S","Y15-29","2011","3","","" +"EE","M","POP","TOTAL","OC6","S","Y30-49","2011","9","","" +"EE","M","POP","TOTAL","OC6","S","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","T","Y30-49","2011","1","","" +"EE","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC6","UNK","Y30-49","2011","2","","" +"EE","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","A","Y15-29","2011","170","","" +"EE","M","POP","TOTAL","OC7","A","Y30-49","2011","491","","" +"EE","M","POP","TOTAL","OC7","A","Y50-64","2011","519","","" +"EE","M","POP","TOTAL","OC7","A","Y65-84","2011","52","","" +"EE","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","B","Y15-29","2011","135","","" +"EE","M","POP","TOTAL","OC7","B","Y30-49","2011","434","","" +"EE","M","POP","TOTAL","OC7","B","Y50-64","2011","488","","" +"EE","M","POP","TOTAL","OC7","B","Y65-84","2011","19","","" +"EE","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","C","Y15-29","2011","6990","","" +"EE","M","POP","TOTAL","OC7","C","Y30-49","2011","13072","","" +"EE","M","POP","TOTAL","OC7","C","Y50-64","2011","7943","","" +"EE","M","POP","TOTAL","OC7","C","Y65-84","2011","697","","" +"EE","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","D","Y15-29","2011","175","","" +"EE","M","POP","TOTAL","OC7","D","Y30-49","2011","611","","" +"EE","M","POP","TOTAL","OC7","D","Y50-64","2011","654","","" +"EE","M","POP","TOTAL","OC7","D","Y65-84","2011","50","","" +"EE","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","E","Y15-29","2011","76","","" +"EE","M","POP","TOTAL","OC7","E","Y30-49","2011","197","","" +"EE","M","POP","TOTAL","OC7","E","Y50-64","2011","240","","" +"EE","M","POP","TOTAL","OC7","E","Y65-84","2011","25","","" +"EE","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","F","Y15-29","2011","9031","","" +"EE","M","POP","TOTAL","OC7","F","Y30-49","2011","16800","","" +"EE","M","POP","TOTAL","OC7","F","Y50-64","2011","6190","","" +"EE","M","POP","TOTAL","OC7","F","Y65-84","2011","227","","" +"EE","M","POP","TOTAL","OC7","F","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","G","Y15-29","2011","2022","","" +"EE","M","POP","TOTAL","OC7","G","Y30-49","2011","3391","","" +"EE","M","POP","TOTAL","OC7","G","Y50-64","2011","1266","","" +"EE","M","POP","TOTAL","OC7","G","Y65-84","2011","81","","" +"EE","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","H","Y15-29","2011","255","","" +"EE","M","POP","TOTAL","OC7","H","Y30-49","2011","878","","" +"EE","M","POP","TOTAL","OC7","H","Y50-64","2011","824","","" +"EE","M","POP","TOTAL","OC7","H","Y65-84","2011","119","","" +"EE","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","I","Y15-29","2011","37","","" +"EE","M","POP","TOTAL","OC7","I","Y30-49","2011","92","","" +"EE","M","POP","TOTAL","OC7","I","Y50-64","2011","52","","" +"EE","M","POP","TOTAL","OC7","I","Y65-84","2011","8","","" +"EE","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","J","Y15-29","2011","93","","" +"EE","M","POP","TOTAL","OC7","J","Y30-49","2011","199","","" +"EE","M","POP","TOTAL","OC7","J","Y50-64","2011","79","","" +"EE","M","POP","TOTAL","OC7","J","Y65-84","2011","10","","" +"EE","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC7","K","Y30-49","2011","8","","" +"EE","M","POP","TOTAL","OC7","K","Y50-64","2011","6","","" +"EE","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","L","Y15-29","2011","53","","" +"EE","M","POP","TOTAL","OC7","L","Y30-49","2011","202","","" +"EE","M","POP","TOTAL","OC7","L","Y50-64","2011","259","","" +"EE","M","POP","TOTAL","OC7","L","Y65-84","2011","69","","" +"EE","M","POP","TOTAL","OC7","L","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","M","Y15-29","2011","113","","" +"EE","M","POP","TOTAL","OC7","M","Y30-49","2011","187","","" +"EE","M","POP","TOTAL","OC7","M","Y50-64","2011","126","","" +"EE","M","POP","TOTAL","OC7","M","Y65-84","2011","20","","" +"EE","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","N","Y15-29","2011","353","","" +"EE","M","POP","TOTAL","OC7","N","Y30-49","2011","642","","" +"EE","M","POP","TOTAL","OC7","N","Y50-64","2011","260","","" +"EE","M","POP","TOTAL","OC7","N","Y65-84","2011","22","","" +"EE","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","O","Y15-29","2011","36","","" +"EE","M","POP","TOTAL","OC7","O","Y30-49","2011","130","","" +"EE","M","POP","TOTAL","OC7","O","Y50-64","2011","112","","" +"EE","M","POP","TOTAL","OC7","O","Y65-84","2011","37","","" +"EE","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","P","Y15-29","2011","23","","" +"EE","M","POP","TOTAL","OC7","P","Y30-49","2011","74","","" +"EE","M","POP","TOTAL","OC7","P","Y50-64","2011","125","","" +"EE","M","POP","TOTAL","OC7","P","Y65-84","2011","53","","" +"EE","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","Q","Y15-29","2011","16","","" +"EE","M","POP","TOTAL","OC7","Q","Y30-49","2011","82","","" +"EE","M","POP","TOTAL","OC7","Q","Y50-64","2011","124","","" +"EE","M","POP","TOTAL","OC7","Q","Y65-84","2011","40","","" +"EE","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","R","Y15-29","2011","41","","" +"EE","M","POP","TOTAL","OC7","R","Y30-49","2011","95","","" +"EE","M","POP","TOTAL","OC7","R","Y50-64","2011","91","","" +"EE","M","POP","TOTAL","OC7","R","Y65-84","2011","32","","" +"EE","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","S","Y15-29","2011","122","","" +"EE","M","POP","TOTAL","OC7","S","Y30-49","2011","404","","" +"EE","M","POP","TOTAL","OC7","S","Y50-64","2011","290","","" +"EE","M","POP","TOTAL","OC7","S","Y65-84","2011","15","","" +"EE","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC7","T","Y30-49","2011","4","","" +"EE","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","U","Y15-29","2011","1","","" +"EE","M","POP","TOTAL","OC7","U","Y30-49","2011","1","","" +"EE","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC7","UNK","Y15-29","2011","112","","" +"EE","M","POP","TOTAL","OC7","UNK","Y30-49","2011","253","","" +"EE","M","POP","TOTAL","OC7","UNK","Y50-64","2011","118","","" +"EE","M","POP","TOTAL","OC7","UNK","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","A","Y15-29","2011","754","","" +"EE","M","POP","TOTAL","OC8","A","Y30-49","2011","2338","","" +"EE","M","POP","TOTAL","OC8","A","Y50-64","2011","1516","","" +"EE","M","POP","TOTAL","OC8","A","Y65-84","2011","91","","" +"EE","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","B","Y15-29","2011","254","","" +"EE","M","POP","TOTAL","OC8","B","Y30-49","2011","1019","","" +"EE","M","POP","TOTAL","OC8","B","Y50-64","2011","819","","" +"EE","M","POP","TOTAL","OC8","B","Y65-84","2011","30","","" +"EE","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","C","Y15-29","2011","3845","","" +"EE","M","POP","TOTAL","OC8","C","Y30-49","2011","5913","","" +"EE","M","POP","TOTAL","OC8","C","Y50-64","2011","3519","","" +"EE","M","POP","TOTAL","OC8","C","Y65-84","2011","199","","" +"EE","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","D","Y15-29","2011","49","","" +"EE","M","POP","TOTAL","OC8","D","Y30-49","2011","234","","" +"EE","M","POP","TOTAL","OC8","D","Y50-64","2011","286","","" +"EE","M","POP","TOTAL","OC8","D","Y65-84","2011","30","","" +"EE","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","E","Y15-29","2011","68","","" +"EE","M","POP","TOTAL","OC8","E","Y30-49","2011","379","","" +"EE","M","POP","TOTAL","OC8","E","Y50-64","2011","273","","" +"EE","M","POP","TOTAL","OC8","E","Y65-84","2011","17","","" +"EE","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","F","Y15-29","2011","650","","" +"EE","M","POP","TOTAL","OC8","F","Y30-49","2011","1973","","" +"EE","M","POP","TOTAL","OC8","F","Y50-64","2011","1522","","" +"EE","M","POP","TOTAL","OC8","F","Y65-84","2011","110","","" +"EE","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","G","Y15-29","2011","303","","" +"EE","M","POP","TOTAL","OC8","G","Y30-49","2011","954","","" +"EE","M","POP","TOTAL","OC8","G","Y50-64","2011","578","","" +"EE","M","POP","TOTAL","OC8","G","Y65-84","2011","35","","" +"EE","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","H","Y15-29","2011","1565","","" +"EE","M","POP","TOTAL","OC8","H","Y30-49","2011","9237","","" +"EE","M","POP","TOTAL","OC8","H","Y50-64","2011","7942","","" +"EE","M","POP","TOTAL","OC8","H","Y65-84","2011","478","","" +"EE","M","POP","TOTAL","OC8","H","Y_GE85","2011","2","","" +"EE","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","I","Y15-29","2011","32","","" +"EE","M","POP","TOTAL","OC8","I","Y30-49","2011","44","","" +"EE","M","POP","TOTAL","OC8","I","Y50-64","2011","36","","" +"EE","M","POP","TOTAL","OC8","I","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","J","Y15-29","2011","12","","" +"EE","M","POP","TOTAL","OC8","J","Y30-49","2011","27","","" +"EE","M","POP","TOTAL","OC8","J","Y50-64","2011","31","","" +"EE","M","POP","TOTAL","OC8","J","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC8","K","Y30-49","2011","10","","" +"EE","M","POP","TOTAL","OC8","K","Y50-64","2011","5","","" +"EE","M","POP","TOTAL","OC8","K","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","L","Y15-29","2011","11","","" +"EE","M","POP","TOTAL","OC8","L","Y30-49","2011","43","","" +"EE","M","POP","TOTAL","OC8","L","Y50-64","2011","65","","" +"EE","M","POP","TOTAL","OC8","L","Y65-84","2011","12","","" +"EE","M","POP","TOTAL","OC8","L","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","M","Y15-29","2011","26","","" +"EE","M","POP","TOTAL","OC8","M","Y30-49","2011","61","","" +"EE","M","POP","TOTAL","OC8","M","Y50-64","2011","55","","" +"EE","M","POP","TOTAL","OC8","M","Y65-84","2011","4","","" +"EE","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","N","Y15-29","2011","110","","" +"EE","M","POP","TOTAL","OC8","N","Y30-49","2011","409","","" +"EE","M","POP","TOTAL","OC8","N","Y50-64","2011","374","","" +"EE","M","POP","TOTAL","OC8","N","Y65-84","2011","22","","" +"EE","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","O","Y15-29","2011","27","","" +"EE","M","POP","TOTAL","OC8","O","Y30-49","2011","140","","" +"EE","M","POP","TOTAL","OC8","O","Y50-64","2011","220","","" +"EE","M","POP","TOTAL","OC8","O","Y65-84","2011","39","","" +"EE","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","P","Y15-29","2011","4","","" +"EE","M","POP","TOTAL","OC8","P","Y30-49","2011","41","","" +"EE","M","POP","TOTAL","OC8","P","Y50-64","2011","95","","" +"EE","M","POP","TOTAL","OC8","P","Y65-84","2011","17","","" +"EE","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","Q","Y15-29","2011","27","","" +"EE","M","POP","TOTAL","OC8","Q","Y30-49","2011","107","","" +"EE","M","POP","TOTAL","OC8","Q","Y50-64","2011","168","","" +"EE","M","POP","TOTAL","OC8","Q","Y65-84","2011","36","","" +"EE","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","R","Y15-29","2011","8","","" +"EE","M","POP","TOTAL","OC8","R","Y30-49","2011","16","","" +"EE","M","POP","TOTAL","OC8","R","Y50-64","2011","40","","" +"EE","M","POP","TOTAL","OC8","R","Y65-84","2011","16","","" +"EE","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","S","Y15-29","2011","51","","" +"EE","M","POP","TOTAL","OC8","S","Y30-49","2011","133","","" +"EE","M","POP","TOTAL","OC8","S","Y50-64","2011","70","","" +"EE","M","POP","TOTAL","OC8","S","Y65-84","2011","9","","" +"EE","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","U","Y15-29","2011","2","","" +"EE","M","POP","TOTAL","OC8","U","Y30-49","2011","16","","" +"EE","M","POP","TOTAL","OC8","U","Y50-64","2011","6","","" +"EE","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC8","UNK","Y15-29","2011","42","","" +"EE","M","POP","TOTAL","OC8","UNK","Y30-49","2011","110","","" +"EE","M","POP","TOTAL","OC8","UNK","Y50-64","2011","80","","" +"EE","M","POP","TOTAL","OC8","UNK","Y65-84","2011","6","","" +"EE","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","A","Y15-29","2011","490","","" +"EE","M","POP","TOTAL","OC9","A","Y30-49","2011","813","","" +"EE","M","POP","TOTAL","OC9","A","Y50-64","2011","627","","" +"EE","M","POP","TOTAL","OC9","A","Y65-84","2011","44","","" +"EE","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","B","Y15-29","2011","55","","" +"EE","M","POP","TOTAL","OC9","B","Y30-49","2011","147","","" +"EE","M","POP","TOTAL","OC9","B","Y50-64","2011","117","","" +"EE","M","POP","TOTAL","OC9","B","Y65-84","2011","20","","" +"EE","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","C","Y15-29","2011","1276","","" +"EE","M","POP","TOTAL","OC9","C","Y30-49","2011","1450","","" +"EE","M","POP","TOTAL","OC9","C","Y50-64","2011","1159","","" +"EE","M","POP","TOTAL","OC9","C","Y65-84","2011","156","","" +"EE","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","D","Y15-29","2011","20","","" +"EE","M","POP","TOTAL","OC9","D","Y30-49","2011","37","","" +"EE","M","POP","TOTAL","OC9","D","Y50-64","2011","49","","" +"EE","M","POP","TOTAL","OC9","D","Y65-84","2011","14","","" +"EE","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","E","Y15-29","2011","87","","" +"EE","M","POP","TOTAL","OC9","E","Y30-49","2011","166","","" +"EE","M","POP","TOTAL","OC9","E","Y50-64","2011","126","","" +"EE","M","POP","TOTAL","OC9","E","Y65-84","2011","16","","" +"EE","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","F","Y15-29","2011","871","","" +"EE","M","POP","TOTAL","OC9","F","Y30-49","2011","977","","" +"EE","M","POP","TOTAL","OC9","F","Y50-64","2011","467","","" +"EE","M","POP","TOTAL","OC9","F","Y65-84","2011","53","","" +"EE","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","G","Y15-29","2011","938","","" +"EE","M","POP","TOTAL","OC9","G","Y30-49","2011","956","","" +"EE","M","POP","TOTAL","OC9","G","Y50-64","2011","610","","" +"EE","M","POP","TOTAL","OC9","G","Y65-84","2011","100","","" +"EE","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","H","Y15-29","2011","393","","" +"EE","M","POP","TOTAL","OC9","H","Y30-49","2011","516","","" +"EE","M","POP","TOTAL","OC9","H","Y50-64","2011","421","","" +"EE","M","POP","TOTAL","OC9","H","Y65-84","2011","105","","" +"EE","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","I","Y15-29","2011","328","","" +"EE","M","POP","TOTAL","OC9","I","Y30-49","2011","140","","" +"EE","M","POP","TOTAL","OC9","I","Y50-64","2011","103","","" +"EE","M","POP","TOTAL","OC9","I","Y65-84","2011","24","","" +"EE","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","J","Y15-29","2011","11","","" +"EE","M","POP","TOTAL","OC9","J","Y30-49","2011","10","","" +"EE","M","POP","TOTAL","OC9","J","Y50-64","2011","10","","" +"EE","M","POP","TOTAL","OC9","J","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC9","K","Y30-49","2011","4","","" +"EE","M","POP","TOTAL","OC9","K","Y50-64","2011","4","","" +"EE","M","POP","TOTAL","OC9","K","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","L","Y15-29","2011","116","","" +"EE","M","POP","TOTAL","OC9","L","Y30-49","2011","307","","" +"EE","M","POP","TOTAL","OC9","L","Y50-64","2011","572","","" +"EE","M","POP","TOTAL","OC9","L","Y65-84","2011","292","","" +"EE","M","POP","TOTAL","OC9","L","Y_GE85","2011","3","","" +"EE","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","M","Y15-29","2011","33","","" +"EE","M","POP","TOTAL","OC9","M","Y30-49","2011","33","","" +"EE","M","POP","TOTAL","OC9","M","Y50-64","2011","33","","" +"EE","M","POP","TOTAL","OC9","M","Y65-84","2011","14","","" +"EE","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","N","Y15-29","2011","516","","" +"EE","M","POP","TOTAL","OC9","N","Y30-49","2011","719","","" +"EE","M","POP","TOTAL","OC9","N","Y50-64","2011","703","","" +"EE","M","POP","TOTAL","OC9","N","Y65-84","2011","121","","" +"EE","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","O","Y15-29","2011","151","","" +"EE","M","POP","TOTAL","OC9","O","Y30-49","2011","307","","" +"EE","M","POP","TOTAL","OC9","O","Y50-64","2011","267","","" +"EE","M","POP","TOTAL","OC9","O","Y65-84","2011","53","","" +"EE","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","P","Y15-29","2011","66","","" +"EE","M","POP","TOTAL","OC9","P","Y30-49","2011","242","","" +"EE","M","POP","TOTAL","OC9","P","Y50-64","2011","517","","" +"EE","M","POP","TOTAL","OC9","P","Y65-84","2011","264","","" +"EE","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","Q","Y15-29","2011","52","","" +"EE","M","POP","TOTAL","OC9","Q","Y30-49","2011","113","","" +"EE","M","POP","TOTAL","OC9","Q","Y50-64","2011","156","","" +"EE","M","POP","TOTAL","OC9","Q","Y65-84","2011","38","","" +"EE","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","R","Y15-29","2011","86","","" +"EE","M","POP","TOTAL","OC9","R","Y30-49","2011","76","","" +"EE","M","POP","TOTAL","OC9","R","Y50-64","2011","142","","" +"EE","M","POP","TOTAL","OC9","R","Y65-84","2011","48","","" +"EE","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","S","Y15-29","2011","52","","" +"EE","M","POP","TOTAL","OC9","S","Y30-49","2011","72","","" +"EE","M","POP","TOTAL","OC9","S","Y50-64","2011","62","","" +"EE","M","POP","TOTAL","OC9","S","Y65-84","2011","17","","" +"EE","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","T","Y15-29","2011","4","","" +"EE","M","POP","TOTAL","OC9","T","Y30-49","2011","8","","" +"EE","M","POP","TOTAL","OC9","T","Y50-64","2011","9","","" +"EE","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","OC9","U","Y30-49","2011","1","","" +"EE","M","POP","TOTAL","OC9","U","Y50-64","2011","1","","" +"EE","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","OC9","UNK","Y15-29","2011","60","","" +"EE","M","POP","TOTAL","OC9","UNK","Y30-49","2011","78","","" +"EE","M","POP","TOTAL","OC9","UNK","Y50-64","2011","42","","" +"EE","M","POP","TOTAL","OC9","UNK","Y65-84","2011","18","","" +"EE","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","A","Y15-29","2011","34","","" +"EE","M","POP","TOTAL","UNK","A","Y30-49","2011","84","","" +"EE","M","POP","TOTAL","UNK","A","Y50-64","2011","34","","" +"EE","M","POP","TOTAL","UNK","A","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","B","Y15-29","2011","5","","" +"EE","M","POP","TOTAL","UNK","B","Y30-49","2011","25","","" +"EE","M","POP","TOTAL","UNK","B","Y50-64","2011","13","","" +"EE","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","C","Y15-29","2011","273","","" +"EE","M","POP","TOTAL","UNK","C","Y30-49","2011","552","","" +"EE","M","POP","TOTAL","UNK","C","Y50-64","2011","202","","" +"EE","M","POP","TOTAL","UNK","C","Y65-84","2011","9","","" +"EE","M","POP","TOTAL","UNK","C","Y_GE85","2011","1","","" +"EE","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","D","Y15-29","2011","16","","" +"EE","M","POP","TOTAL","UNK","D","Y30-49","2011","42","","" +"EE","M","POP","TOTAL","UNK","D","Y50-64","2011","27","","" +"EE","M","POP","TOTAL","UNK","D","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","E","Y15-29","2011","7","","" +"EE","M","POP","TOTAL","UNK","E","Y30-49","2011","18","","" +"EE","M","POP","TOTAL","UNK","E","Y50-64","2011","8","","" +"EE","M","POP","TOTAL","UNK","E","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","F","Y15-29","2011","149","","" +"EE","M","POP","TOTAL","UNK","F","Y30-49","2011","262","","" +"EE","M","POP","TOTAL","UNK","F","Y50-64","2011","61","","" +"EE","M","POP","TOTAL","UNK","F","Y65-84","2011","6","","" +"EE","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","G","Y15-29","2011","123","","" +"EE","M","POP","TOTAL","UNK","G","Y30-49","2011","249","","" +"EE","M","POP","TOTAL","UNK","G","Y50-64","2011","64","","" +"EE","M","POP","TOTAL","UNK","G","Y65-84","2011","4","","" +"EE","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","H","Y15-29","2011","75","","" +"EE","M","POP","TOTAL","UNK","H","Y30-49","2011","240","","" +"EE","M","POP","TOTAL","UNK","H","Y50-64","2011","94","","" +"EE","M","POP","TOTAL","UNK","H","Y65-84","2011","4","","" +"EE","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","I","Y15-29","2011","33","","" +"EE","M","POP","TOTAL","UNK","I","Y30-49","2011","28","","" +"EE","M","POP","TOTAL","UNK","I","Y50-64","2011","9","","" +"EE","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","J","Y15-29","2011","72","","" +"EE","M","POP","TOTAL","UNK","J","Y30-49","2011","95","","" +"EE","M","POP","TOTAL","UNK","J","Y50-64","2011","11","","" +"EE","M","POP","TOTAL","UNK","J","Y65-84","2011","3","","" +"EE","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","K","Y15-29","2011","24","","" +"EE","M","POP","TOTAL","UNK","K","Y30-49","2011","37","","" +"EE","M","POP","TOTAL","UNK","K","Y50-64","2011","6","","" +"EE","M","POP","TOTAL","UNK","K","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","L","Y15-29","2011","15","","" +"EE","M","POP","TOTAL","UNK","L","Y30-49","2011","37","","" +"EE","M","POP","TOTAL","UNK","L","Y50-64","2011","20","","" +"EE","M","POP","TOTAL","UNK","L","Y65-84","2011","4","","" +"EE","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","M","Y15-29","2011","42","","" +"EE","M","POP","TOTAL","UNK","M","Y30-49","2011","105","","" +"EE","M","POP","TOTAL","UNK","M","Y50-64","2011","26","","" +"EE","M","POP","TOTAL","UNK","M","Y65-84","2011","2","","" +"EE","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","N","Y15-29","2011","50","","" +"EE","M","POP","TOTAL","UNK","N","Y30-49","2011","99","","" +"EE","M","POP","TOTAL","UNK","N","Y50-64","2011","37","","" +"EE","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","O","Y15-29","2011","70","","" +"EE","M","POP","TOTAL","UNK","O","Y30-49","2011","179","","" +"EE","M","POP","TOTAL","UNK","O","Y50-64","2011","49","","" +"EE","M","POP","TOTAL","UNK","O","Y65-84","2011","8","","" +"EE","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","P","Y15-29","2011","17","","" +"EE","M","POP","TOTAL","UNK","P","Y30-49","2011","45","","" +"EE","M","POP","TOTAL","UNK","P","Y50-64","2011","27","","" +"EE","M","POP","TOTAL","UNK","P","Y65-84","2011","5","","" +"EE","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","Q","Y15-29","2011","11","","" +"EE","M","POP","TOTAL","UNK","Q","Y30-49","2011","22","","" +"EE","M","POP","TOTAL","UNK","Q","Y50-64","2011","10","","" +"EE","M","POP","TOTAL","UNK","Q","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","R","Y15-29","2011","28","","" +"EE","M","POP","TOTAL","UNK","R","Y30-49","2011","37","","" +"EE","M","POP","TOTAL","UNK","R","Y50-64","2011","10","","" +"EE","M","POP","TOTAL","UNK","R","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","S","Y15-29","2011","15","","" +"EE","M","POP","TOTAL","UNK","S","Y30-49","2011","42","","" +"EE","M","POP","TOTAL","UNK","S","Y50-64","2011","18","","" +"EE","M","POP","TOTAL","UNK","S","Y65-84","2011","1","","" +"EE","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","T","Y15-29","2011","1","","" +"EE","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"EE","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"EE","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"EE","M","POP","TOTAL","UNK","U","Y30-49","2011","4","","" +"EE","M","POP","TOTAL","UNK","U","Y50-64","2011","2","","" +"EE","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"EE","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"EE","M","POP","TOTAL","UNK","UNK","Y15-29","2011","774","","" +"EE","M","POP","TOTAL","UNK","UNK","Y30-49","2011","1311","","" +"EE","M","POP","TOTAL","UNK","UNK","Y50-64","2011","406","","" +"EE","M","POP","TOTAL","UNK","UNK","Y65-84","2011","26","","" +"EE","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"EE","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","NAP","Y15-29","2011","597617","","" +"EL","F","POP","TOTAL","NAP","NAP","Y30-49","2011","527073","","" +"EL","F","POP","TOTAL","NAP","NAP","Y50-64","2011","697382","","" +"EL","F","POP","TOTAL","NAP","NAP","Y65-84","2011","1020968","","" +"EL","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","145655","","" +"EL","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","766261","","" +"EL","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","A","Y15-29","2011","9","","" +"EL","F","POP","TOTAL","OC1","A","Y30-49","2011","128","","" +"EL","F","POP","TOTAL","OC1","A","Y50-64","2011","79","","" +"EL","F","POP","TOTAL","OC1","A","Y65-84","2011","3","","" +"EL","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC1","B","Y30-49","2011","30","","" +"EL","F","POP","TOTAL","OC1","B","Y50-64","2011","9","","" +"EL","F","POP","TOTAL","OC1","B","Y65-84","2011","3","","" +"EL","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","C","Y15-29","2011","410","","" +"EL","F","POP","TOTAL","OC1","C","Y30-49","2011","3861","","" +"EL","F","POP","TOTAL","OC1","C","Y50-64","2011","1800","","" +"EL","F","POP","TOTAL","OC1","C","Y65-84","2011","144","","" +"EL","F","POP","TOTAL","OC1","C","Y_GE85","2011","2","","" +"EL","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","D","Y15-29","2011","10","","" +"EL","F","POP","TOTAL","OC1","D","Y30-49","2011","144","","" +"EL","F","POP","TOTAL","OC1","D","Y50-64","2011","29","","" +"EL","F","POP","TOTAL","OC1","D","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","E","Y15-29","2011","6","","" +"EL","F","POP","TOTAL","OC1","E","Y30-49","2011","84","","" +"EL","F","POP","TOTAL","OC1","E","Y50-64","2011","37","","" +"EL","F","POP","TOTAL","OC1","E","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","F","Y15-29","2011","146","","" +"EL","F","POP","TOTAL","OC1","F","Y30-49","2011","1125","","" +"EL","F","POP","TOTAL","OC1","F","Y50-64","2011","441","","" +"EL","F","POP","TOTAL","OC1","F","Y65-84","2011","30","","" +"EL","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","G","Y15-29","2011","2252","","" +"EL","F","POP","TOTAL","OC1","G","Y30-49","2011","17973","","" +"EL","F","POP","TOTAL","OC1","G","Y50-64","2011","7734","","" +"EL","F","POP","TOTAL","OC1","G","Y65-84","2011","537","","" +"EL","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","H","Y15-29","2011","104","","" +"EL","F","POP","TOTAL","OC1","H","Y30-49","2011","839","","" +"EL","F","POP","TOTAL","OC1","H","Y50-64","2011","278","","" +"EL","F","POP","TOTAL","OC1","H","Y65-84","2011","9","","" +"EL","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","I","Y15-29","2011","1884","","" +"EL","F","POP","TOTAL","OC1","I","Y30-49","2011","11993","","" +"EL","F","POP","TOTAL","OC1","I","Y50-64","2011","5524","","" +"EL","F","POP","TOTAL","OC1","I","Y65-84","2011","330","","" +"EL","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","J","Y15-29","2011","168","","" +"EL","F","POP","TOTAL","OC1","J","Y30-49","2011","1173","","" +"EL","F","POP","TOTAL","OC1","J","Y50-64","2011","245","","" +"EL","F","POP","TOTAL","OC1","J","Y65-84","2011","11","","" +"EL","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","K","Y15-29","2011","109","","" +"EL","F","POP","TOTAL","OC1","K","Y30-49","2011","2207","","" +"EL","F","POP","TOTAL","OC1","K","Y50-64","2011","710","","" +"EL","F","POP","TOTAL","OC1","K","Y65-84","2011","14","","" +"EL","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","L","Y15-29","2011","7","","" +"EL","F","POP","TOTAL","OC1","L","Y30-49","2011","49","","" +"EL","F","POP","TOTAL","OC1","L","Y50-64","2011","14","","" +"EL","F","POP","TOTAL","OC1","L","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","M","Y15-29","2011","153","","" +"EL","F","POP","TOTAL","OC1","M","Y30-49","2011","997","","" +"EL","F","POP","TOTAL","OC1","M","Y50-64","2011","292","","" +"EL","F","POP","TOTAL","OC1","M","Y65-84","2011","13","","" +"EL","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","N","Y15-29","2011","143","","" +"EL","F","POP","TOTAL","OC1","N","Y30-49","2011","857","","" +"EL","F","POP","TOTAL","OC1","N","Y50-64","2011","305","","" +"EL","F","POP","TOTAL","OC1","N","Y65-84","2011","20","","" +"EL","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","O","Y15-29","2011","101","","" +"EL","F","POP","TOTAL","OC1","O","Y30-49","2011","1699","","" +"EL","F","POP","TOTAL","OC1","O","Y50-64","2011","1282","","" +"EL","F","POP","TOTAL","OC1","O","Y65-84","2011","29","","" +"EL","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","P","Y15-29","2011","57","","" +"EL","F","POP","TOTAL","OC1","P","Y30-49","2011","806","","" +"EL","F","POP","TOTAL","OC1","P","Y50-64","2011","760","","" +"EL","F","POP","TOTAL","OC1","P","Y65-84","2011","26","","" +"EL","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","Q","Y15-29","2011","139","","" +"EL","F","POP","TOTAL","OC1","Q","Y30-49","2011","1380","","" +"EL","F","POP","TOTAL","OC1","Q","Y50-64","2011","703","","" +"EL","F","POP","TOTAL","OC1","Q","Y65-84","2011","40","","" +"EL","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","R","Y15-29","2011","116","","" +"EL","F","POP","TOTAL","OC1","R","Y30-49","2011","636","","" +"EL","F","POP","TOTAL","OC1","R","Y50-64","2011","228","","" +"EL","F","POP","TOTAL","OC1","R","Y65-84","2011","11","","" +"EL","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","S","Y15-29","2011","23","","" +"EL","F","POP","TOTAL","OC1","S","Y30-49","2011","198","","" +"EL","F","POP","TOTAL","OC1","S","Y50-64","2011","66","","" +"EL","F","POP","TOTAL","OC1","S","Y65-84","2011","6","","" +"EL","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC1","U","Y30-49","2011","15","","" +"EL","F","POP","TOTAL","OC1","U","Y50-64","2011","11","","" +"EL","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","A","Y15-29","2011","123","","" +"EL","F","POP","TOTAL","OC2","A","Y30-49","2011","470","","" +"EL","F","POP","TOTAL","OC2","A","Y50-64","2011","87","","" +"EL","F","POP","TOTAL","OC2","A","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","B","Y15-29","2011","25","","" +"EL","F","POP","TOTAL","OC2","B","Y30-49","2011","53","","" +"EL","F","POP","TOTAL","OC2","B","Y50-64","2011","9","","" +"EL","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","C","Y15-29","2011","2049","","" +"EL","F","POP","TOTAL","OC2","C","Y30-49","2011","6873","","" +"EL","F","POP","TOTAL","OC2","C","Y50-64","2011","1061","","" +"EL","F","POP","TOTAL","OC2","C","Y65-84","2011","33","","" +"EL","F","POP","TOTAL","OC2","C","Y_GE85","2011","1","","" +"EL","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","D","Y15-29","2011","175","","" +"EL","F","POP","TOTAL","OC2","D","Y30-49","2011","644","","" +"EL","F","POP","TOTAL","OC2","D","Y50-64","2011","102","","" +"EL","F","POP","TOTAL","OC2","D","Y65-84","2011","4","","" +"EL","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","E","Y15-29","2011","42","","" +"EL","F","POP","TOTAL","OC2","E","Y30-49","2011","235","","" +"EL","F","POP","TOTAL","OC2","E","Y50-64","2011","37","","" +"EL","F","POP","TOTAL","OC2","E","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","F","Y15-29","2011","703","","" +"EL","F","POP","TOTAL","OC2","F","Y30-49","2011","1819","","" +"EL","F","POP","TOTAL","OC2","F","Y50-64","2011","310","","" +"EL","F","POP","TOTAL","OC2","F","Y65-84","2011","6","","" +"EL","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","G","Y15-29","2011","2786","","" +"EL","F","POP","TOTAL","OC2","G","Y30-49","2011","8577","","" +"EL","F","POP","TOTAL","OC2","G","Y50-64","2011","3529","","" +"EL","F","POP","TOTAL","OC2","G","Y65-84","2011","138","","" +"EL","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","H","Y15-29","2011","405","","" +"EL","F","POP","TOTAL","OC2","H","Y30-49","2011","1307","","" +"EL","F","POP","TOTAL","OC2","H","Y50-64","2011","189","","" +"EL","F","POP","TOTAL","OC2","H","Y65-84","2011","4","","" +"EL","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","I","Y15-29","2011","405","","" +"EL","F","POP","TOTAL","OC2","I","Y30-49","2011","1020","","" +"EL","F","POP","TOTAL","OC2","I","Y50-64","2011","195","","" +"EL","F","POP","TOTAL","OC2","I","Y65-84","2011","7","","" +"EL","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","J","Y15-29","2011","3429","","" +"EL","F","POP","TOTAL","OC2","J","Y30-49","2011","10375","","" +"EL","F","POP","TOTAL","OC2","J","Y50-64","2011","1493","","" +"EL","F","POP","TOTAL","OC2","J","Y65-84","2011","89","","" +"EL","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","K","Y15-29","2011","938","","" +"EL","F","POP","TOTAL","OC2","K","Y30-49","2011","2935","","" +"EL","F","POP","TOTAL","OC2","K","Y50-64","2011","394","","" +"EL","F","POP","TOTAL","OC2","K","Y65-84","2011","7","","" +"EL","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","L","Y15-29","2011","25","","" +"EL","F","POP","TOTAL","OC2","L","Y30-49","2011","56","","" +"EL","F","POP","TOTAL","OC2","L","Y50-64","2011","12","","" +"EL","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","M","Y15-29","2011","14423","","" +"EL","F","POP","TOTAL","OC2","M","Y30-49","2011","39279","","" +"EL","F","POP","TOTAL","OC2","M","Y50-64","2011","9110","","" +"EL","F","POP","TOTAL","OC2","M","Y65-84","2011","576","","" +"EL","F","POP","TOTAL","OC2","M","Y_GE85","2011","3","","" +"EL","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","N","Y15-29","2011","229","","" +"EL","F","POP","TOTAL","OC2","N","Y30-49","2011","589","","" +"EL","F","POP","TOTAL","OC2","N","Y50-64","2011","92","","" +"EL","F","POP","TOTAL","OC2","N","Y65-84","2011","5","","" +"EL","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","O","Y15-29","2011","1923","","" +"EL","F","POP","TOTAL","OC2","O","Y30-49","2011","13306","","" +"EL","F","POP","TOTAL","OC2","O","Y50-64","2011","4063","","" +"EL","F","POP","TOTAL","OC2","O","Y65-84","2011","88","","" +"EL","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","P","Y15-29","2011","28403","","" +"EL","F","POP","TOTAL","OC2","P","Y30-49","2011","118311","","" +"EL","F","POP","TOTAL","OC2","P","Y50-64","2011","28058","","" +"EL","F","POP","TOTAL","OC2","P","Y65-84","2011","627","","" +"EL","F","POP","TOTAL","OC2","P","Y_GE85","2011","1","","" +"EL","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","Q","Y15-29","2011","14696","","" +"EL","F","POP","TOTAL","OC2","Q","Y30-49","2011","49582","","" +"EL","F","POP","TOTAL","OC2","Q","Y50-64","2011","11051","","" +"EL","F","POP","TOTAL","OC2","Q","Y65-84","2011","551","","" +"EL","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","R","Y15-29","2011","1370","","" +"EL","F","POP","TOTAL","OC2","R","Y30-49","2011","5403","","" +"EL","F","POP","TOTAL","OC2","R","Y50-64","2011","1485","","" +"EL","F","POP","TOTAL","OC2","R","Y65-84","2011","161","","" +"EL","F","POP","TOTAL","OC2","R","Y_GE85","2011","1","","" +"EL","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","S","Y15-29","2011","547","","" +"EL","F","POP","TOTAL","OC2","S","Y30-49","2011","1450","","" +"EL","F","POP","TOTAL","OC2","S","Y50-64","2011","283","","" +"EL","F","POP","TOTAL","OC2","S","Y65-84","2011","26","","" +"EL","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","U","Y15-29","2011","11","","" +"EL","F","POP","TOTAL","OC2","U","Y30-49","2011","59","","" +"EL","F","POP","TOTAL","OC2","U","Y50-64","2011","10","","" +"EL","F","POP","TOTAL","OC2","U","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","A","Y15-29","2011","149","","" +"EL","F","POP","TOTAL","OC3","A","Y30-49","2011","526","","" +"EL","F","POP","TOTAL","OC3","A","Y50-64","2011","71","","" +"EL","F","POP","TOTAL","OC3","A","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","B","Y15-29","2011","28","","" +"EL","F","POP","TOTAL","OC3","B","Y30-49","2011","77","","" +"EL","F","POP","TOTAL","OC3","B","Y50-64","2011","19","","" +"EL","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","C","Y15-29","2011","1889","","" +"EL","F","POP","TOTAL","OC3","C","Y30-49","2011","6534","","" +"EL","F","POP","TOTAL","OC3","C","Y50-64","2011","1322","","" +"EL","F","POP","TOTAL","OC3","C","Y65-84","2011","30","","" +"EL","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","D","Y15-29","2011","143","","" +"EL","F","POP","TOTAL","OC3","D","Y30-49","2011","1156","","" +"EL","F","POP","TOTAL","OC3","D","Y50-64","2011","260","","" +"EL","F","POP","TOTAL","OC3","D","Y65-84","2011","4","","" +"EL","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","E","Y15-29","2011","61","","" +"EL","F","POP","TOTAL","OC3","E","Y30-49","2011","468","","" +"EL","F","POP","TOTAL","OC3","E","Y50-64","2011","137","","" +"EL","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","F","Y15-29","2011","675","","" +"EL","F","POP","TOTAL","OC3","F","Y30-49","2011","1754","","" +"EL","F","POP","TOTAL","OC3","F","Y50-64","2011","292","","" +"EL","F","POP","TOTAL","OC3","F","Y65-84","2011","8","","" +"EL","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","G","Y15-29","2011","3098","","" +"EL","F","POP","TOTAL","OC3","G","Y30-49","2011","9526","","" +"EL","F","POP","TOTAL","OC3","G","Y50-64","2011","1783","","" +"EL","F","POP","TOTAL","OC3","G","Y65-84","2011","69","","" +"EL","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","H","Y15-29","2011","1173","","" +"EL","F","POP","TOTAL","OC3","H","Y30-49","2011","3714","","" +"EL","F","POP","TOTAL","OC3","H","Y50-64","2011","924","","" +"EL","F","POP","TOTAL","OC3","H","Y65-84","2011","23","","" +"EL","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","I","Y15-29","2011","496","","" +"EL","F","POP","TOTAL","OC3","I","Y30-49","2011","1080","","" +"EL","F","POP","TOTAL","OC3","I","Y50-64","2011","267","","" +"EL","F","POP","TOTAL","OC3","I","Y65-84","2011","6","","" +"EL","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","J","Y15-29","2011","893","","" +"EL","F","POP","TOTAL","OC3","J","Y30-49","2011","3258","","" +"EL","F","POP","TOTAL","OC3","J","Y50-64","2011","535","","" +"EL","F","POP","TOTAL","OC3","J","Y65-84","2011","8","","" +"EL","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","K","Y15-29","2011","5871","","" +"EL","F","POP","TOTAL","OC3","K","Y30-49","2011","21759","","" +"EL","F","POP","TOTAL","OC3","K","Y50-64","2011","4109","","" +"EL","F","POP","TOTAL","OC3","K","Y65-84","2011","95","","" +"EL","F","POP","TOTAL","OC3","K","Y_GE85","2011","1","","" +"EL","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","L","Y15-29","2011","329","","" +"EL","F","POP","TOTAL","OC3","L","Y30-49","2011","1683","","" +"EL","F","POP","TOTAL","OC3","L","Y50-64","2011","564","","" +"EL","F","POP","TOTAL","OC3","L","Y65-84","2011","18","","" +"EL","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","M","Y15-29","2011","5389","","" +"EL","F","POP","TOTAL","OC3","M","Y30-49","2011","15091","","" +"EL","F","POP","TOTAL","OC3","M","Y50-64","2011","2996","","" +"EL","F","POP","TOTAL","OC3","M","Y65-84","2011","93","","" +"EL","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","N","Y15-29","2011","623","","" +"EL","F","POP","TOTAL","OC3","N","Y30-49","2011","1904","","" +"EL","F","POP","TOTAL","OC3","N","Y50-64","2011","431","","" +"EL","F","POP","TOTAL","OC3","N","Y65-84","2011","10","","" +"EL","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","O","Y15-29","2011","2505","","" +"EL","F","POP","TOTAL","OC3","O","Y30-49","2011","21766","","" +"EL","F","POP","TOTAL","OC3","O","Y50-64","2011","9043","","" +"EL","F","POP","TOTAL","OC3","O","Y65-84","2011","134","","" +"EL","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","P","Y15-29","2011","634","","" +"EL","F","POP","TOTAL","OC3","P","Y30-49","2011","4198","","" +"EL","F","POP","TOTAL","OC3","P","Y50-64","2011","743","","" +"EL","F","POP","TOTAL","OC3","P","Y65-84","2011","15","","" +"EL","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","Q","Y15-29","2011","6354","","" +"EL","F","POP","TOTAL","OC3","Q","Y30-49","2011","22941","","" +"EL","F","POP","TOTAL","OC3","Q","Y50-64","2011","4352","","" +"EL","F","POP","TOTAL","OC3","Q","Y65-84","2011","72","","" +"EL","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","R","Y15-29","2011","1269","","" +"EL","F","POP","TOTAL","OC3","R","Y30-49","2011","2615","","" +"EL","F","POP","TOTAL","OC3","R","Y50-64","2011","319","","" +"EL","F","POP","TOTAL","OC3","R","Y65-84","2011","12","","" +"EL","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","S","Y15-29","2011","261","","" +"EL","F","POP","TOTAL","OC3","S","Y30-49","2011","904","","" +"EL","F","POP","TOTAL","OC3","S","Y50-64","2011","240","","" +"EL","F","POP","TOTAL","OC3","S","Y65-84","2011","15","","" +"EL","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","T","Y15-29","2011","13","","" +"EL","F","POP","TOTAL","OC3","T","Y30-49","2011","40","","" +"EL","F","POP","TOTAL","OC3","T","Y50-64","2011","12","","" +"EL","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","U","Y15-29","2011","6","","" +"EL","F","POP","TOTAL","OC3","U","Y30-49","2011","16","","" +"EL","F","POP","TOTAL","OC3","U","Y50-64","2011","5","","" +"EL","F","POP","TOTAL","OC3","U","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","A","Y15-29","2011","177","","" +"EL","F","POP","TOTAL","OC4","A","Y30-49","2011","410","","" +"EL","F","POP","TOTAL","OC4","A","Y50-64","2011","79","","" +"EL","F","POP","TOTAL","OC4","A","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","B","Y15-29","2011","39","","" +"EL","F","POP","TOTAL","OC4","B","Y30-49","2011","142","","" +"EL","F","POP","TOTAL","OC4","B","Y50-64","2011","30","","" +"EL","F","POP","TOTAL","OC4","B","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","C","Y15-29","2011","3106","","" +"EL","F","POP","TOTAL","OC4","C","Y30-49","2011","10265","","" +"EL","F","POP","TOTAL","OC4","C","Y50-64","2011","1774","","" +"EL","F","POP","TOTAL","OC4","C","Y65-84","2011","41","","" +"EL","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","D","Y15-29","2011","500","","" +"EL","F","POP","TOTAL","OC4","D","Y30-49","2011","2570","","" +"EL","F","POP","TOTAL","OC4","D","Y50-64","2011","461","","" +"EL","F","POP","TOTAL","OC4","D","Y65-84","2011","7","","" +"EL","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","E","Y15-29","2011","189","","" +"EL","F","POP","TOTAL","OC4","E","Y30-49","2011","617","","" +"EL","F","POP","TOTAL","OC4","E","Y50-64","2011","136","","" +"EL","F","POP","TOTAL","OC4","E","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","F","Y15-29","2011","1396","","" +"EL","F","POP","TOTAL","OC4","F","Y30-49","2011","4103","","" +"EL","F","POP","TOTAL","OC4","F","Y50-64","2011","706","","" +"EL","F","POP","TOTAL","OC4","F","Y65-84","2011","17","","" +"EL","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","G","Y15-29","2011","5685","","" +"EL","F","POP","TOTAL","OC4","G","Y30-49","2011","16154","","" +"EL","F","POP","TOTAL","OC4","G","Y50-64","2011","2205","","" +"EL","F","POP","TOTAL","OC4","G","Y65-84","2011","57","","" +"EL","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","H","Y15-29","2011","3175","","" +"EL","F","POP","TOTAL","OC4","H","Y30-49","2011","10485","","" +"EL","F","POP","TOTAL","OC4","H","Y50-64","2011","1783","","" +"EL","F","POP","TOTAL","OC4","H","Y65-84","2011","24","","" +"EL","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","I","Y15-29","2011","3541","","" +"EL","F","POP","TOTAL","OC4","I","Y30-49","2011","8271","","" +"EL","F","POP","TOTAL","OC4","I","Y50-64","2011","2001","","" +"EL","F","POP","TOTAL","OC4","I","Y65-84","2011","79","","" +"EL","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","J","Y15-29","2011","3655","","" +"EL","F","POP","TOTAL","OC4","J","Y30-49","2011","7407","","" +"EL","F","POP","TOTAL","OC4","J","Y50-64","2011","876","","" +"EL","F","POP","TOTAL","OC4","J","Y65-84","2011","26","","" +"EL","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","K","Y15-29","2011","3910","","" +"EL","F","POP","TOTAL","OC4","K","Y30-49","2011","9980","","" +"EL","F","POP","TOTAL","OC4","K","Y50-64","2011","1480","","" +"EL","F","POP","TOTAL","OC4","K","Y65-84","2011","19","","" +"EL","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","L","Y15-29","2011","299","","" +"EL","F","POP","TOTAL","OC4","L","Y30-49","2011","517","","" +"EL","F","POP","TOTAL","OC4","L","Y50-64","2011","70","","" +"EL","F","POP","TOTAL","OC4","L","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","M","Y15-29","2011","3884","","" +"EL","F","POP","TOTAL","OC4","M","Y30-49","2011","9544","","" +"EL","F","POP","TOTAL","OC4","M","Y50-64","2011","1748","","" +"EL","F","POP","TOTAL","OC4","M","Y65-84","2011","42","","" +"EL","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","N","Y15-29","2011","3500","","" +"EL","F","POP","TOTAL","OC4","N","Y30-49","2011","8070","","" +"EL","F","POP","TOTAL","OC4","N","Y50-64","2011","1337","","" +"EL","F","POP","TOTAL","OC4","N","Y65-84","2011","41","","" +"EL","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","O","Y15-29","2011","4810","","" +"EL","F","POP","TOTAL","OC4","O","Y30-49","2011","28146","","" +"EL","F","POP","TOTAL","OC4","O","Y50-64","2011","9631","","" +"EL","F","POP","TOTAL","OC4","O","Y65-84","2011","152","","" +"EL","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","P","Y15-29","2011","2587","","" +"EL","F","POP","TOTAL","OC4","P","Y30-49","2011","7171","","" +"EL","F","POP","TOTAL","OC4","P","Y50-64","2011","1693","","" +"EL","F","POP","TOTAL","OC4","P","Y65-84","2011","31","","" +"EL","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","Q","Y15-29","2011","2374","","" +"EL","F","POP","TOTAL","OC4","Q","Y30-49","2011","7180","","" +"EL","F","POP","TOTAL","OC4","Q","Y50-64","2011","1897","","" +"EL","F","POP","TOTAL","OC4","Q","Y65-84","2011","42","","" +"EL","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","R","Y15-29","2011","1051","","" +"EL","F","POP","TOTAL","OC4","R","Y30-49","2011","3915","","" +"EL","F","POP","TOTAL","OC4","R","Y50-64","2011","1189","","" +"EL","F","POP","TOTAL","OC4","R","Y65-84","2011","90","","" +"EL","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","S","Y15-29","2011","850","","" +"EL","F","POP","TOTAL","OC4","S","Y30-49","2011","2588","","" +"EL","F","POP","TOTAL","OC4","S","Y50-64","2011","543","","" +"EL","F","POP","TOTAL","OC4","S","Y65-84","2011","20","","" +"EL","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","T","Y15-29","2011","1","","" +"EL","F","POP","TOTAL","OC4","T","Y30-49","2011","2","","" +"EL","F","POP","TOTAL","OC4","T","Y50-64","2011","1","","" +"EL","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","U","Y15-29","2011","23","","" +"EL","F","POP","TOTAL","OC4","U","Y30-49","2011","85","","" +"EL","F","POP","TOTAL","OC4","U","Y50-64","2011","33","","" +"EL","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","A","Y15-29","2011","35","","" +"EL","F","POP","TOTAL","OC5","A","Y30-49","2011","183","","" +"EL","F","POP","TOTAL","OC5","A","Y50-64","2011","35","","" +"EL","F","POP","TOTAL","OC5","A","Y65-84","2011","5","","" +"EL","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC5","B","Y30-49","2011","12","","" +"EL","F","POP","TOTAL","OC5","B","Y50-64","2011","5","","" +"EL","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","C","Y15-29","2011","4151","","" +"EL","F","POP","TOTAL","OC5","C","Y30-49","2011","9388","","" +"EL","F","POP","TOTAL","OC5","C","Y50-64","2011","1787","","" +"EL","F","POP","TOTAL","OC5","C","Y65-84","2011","47","","" +"EL","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","D","Y15-29","2011","47","","" +"EL","F","POP","TOTAL","OC5","D","Y30-49","2011","311","","" +"EL","F","POP","TOTAL","OC5","D","Y50-64","2011","57","","" +"EL","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","E","Y15-29","2011","22","","" +"EL","F","POP","TOTAL","OC5","E","Y30-49","2011","85","","" +"EL","F","POP","TOTAL","OC5","E","Y50-64","2011","21","","" +"EL","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","F","Y15-29","2011","124","","" +"EL","F","POP","TOTAL","OC5","F","Y30-49","2011","284","","" +"EL","F","POP","TOTAL","OC5","F","Y50-64","2011","54","","" +"EL","F","POP","TOTAL","OC5","F","Y65-84","2011","3","","" +"EL","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","G","Y15-29","2011","54222","","" +"EL","F","POP","TOTAL","OC5","G","Y30-49","2011","142252","","" +"EL","F","POP","TOTAL","OC5","G","Y50-64","2011","34554","","" +"EL","F","POP","TOTAL","OC5","G","Y65-84","2011","1521","","" +"EL","F","POP","TOTAL","OC5","G","Y_GE85","2011","3","","" +"EL","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","H","Y15-29","2011","2152","","" +"EL","F","POP","TOTAL","OC5","H","Y30-49","2011","3813","","" +"EL","F","POP","TOTAL","OC5","H","Y50-64","2011","537","","" +"EL","F","POP","TOTAL","OC5","H","Y65-84","2011","12","","" +"EL","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","I","Y15-29","2011","29914","","" +"EL","F","POP","TOTAL","OC5","I","Y30-49","2011","48572","","" +"EL","F","POP","TOTAL","OC5","I","Y50-64","2011","12146","","" +"EL","F","POP","TOTAL","OC5","I","Y65-84","2011","388","","" +"EL","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","J","Y15-29","2011","1879","","" +"EL","F","POP","TOTAL","OC5","J","Y30-49","2011","2468","","" +"EL","F","POP","TOTAL","OC5","J","Y50-64","2011","299","","" +"EL","F","POP","TOTAL","OC5","J","Y65-84","2011","13","","" +"EL","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","K","Y15-29","2011","298","","" +"EL","F","POP","TOTAL","OC5","K","Y30-49","2011","766","","" +"EL","F","POP","TOTAL","OC5","K","Y50-64","2011","148","","" +"EL","F","POP","TOTAL","OC5","K","Y65-84","2011","3","","" +"EL","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","L","Y15-29","2011","25","","" +"EL","F","POP","TOTAL","OC5","L","Y30-49","2011","90","","" +"EL","F","POP","TOTAL","OC5","L","Y50-64","2011","31","","" +"EL","F","POP","TOTAL","OC5","L","Y65-84","2011","4","","" +"EL","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","M","Y15-29","2011","341","","" +"EL","F","POP","TOTAL","OC5","M","Y30-49","2011","387","","" +"EL","F","POP","TOTAL","OC5","M","Y50-64","2011","114","","" +"EL","F","POP","TOTAL","OC5","M","Y65-84","2011","4","","" +"EL","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","N","Y15-29","2011","1603","","" +"EL","F","POP","TOTAL","OC5","N","Y30-49","2011","3900","","" +"EL","F","POP","TOTAL","OC5","N","Y50-64","2011","1040","","" +"EL","F","POP","TOTAL","OC5","N","Y65-84","2011","38","","" +"EL","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","O","Y15-29","2011","8187","","" +"EL","F","POP","TOTAL","OC5","O","Y30-49","2011","14696","","" +"EL","F","POP","TOTAL","OC5","O","Y50-64","2011","2380","","" +"EL","F","POP","TOTAL","OC5","O","Y65-84","2011","63","","" +"EL","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","P","Y15-29","2011","994","","" +"EL","F","POP","TOTAL","OC5","P","Y30-49","2011","3251","","" +"EL","F","POP","TOTAL","OC5","P","Y50-64","2011","1313","","" +"EL","F","POP","TOTAL","OC5","P","Y65-84","2011","54","","" +"EL","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","Q","Y15-29","2011","6710","","" +"EL","F","POP","TOTAL","OC5","Q","Y30-49","2011","23833","","" +"EL","F","POP","TOTAL","OC5","Q","Y50-64","2011","9445","","" +"EL","F","POP","TOTAL","OC5","Q","Y65-84","2011","386","","" +"EL","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","R","Y15-29","2011","1030","","" +"EL","F","POP","TOTAL","OC5","R","Y30-49","2011","2088","","" +"EL","F","POP","TOTAL","OC5","R","Y50-64","2011","396","","" +"EL","F","POP","TOTAL","OC5","R","Y65-84","2011","18","","" +"EL","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","S","Y15-29","2011","16302","","" +"EL","F","POP","TOTAL","OC5","S","Y30-49","2011","20606","","" +"EL","F","POP","TOTAL","OC5","S","Y50-64","2011","4219","","" +"EL","F","POP","TOTAL","OC5","S","Y65-84","2011","192","","" +"EL","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","T","Y15-29","2011","697","","" +"EL","F","POP","TOTAL","OC5","T","Y30-49","2011","1992","","" +"EL","F","POP","TOTAL","OC5","T","Y50-64","2011","1262","","" +"EL","F","POP","TOTAL","OC5","T","Y65-84","2011","67","","" +"EL","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","U","Y15-29","2011","3","","" +"EL","F","POP","TOTAL","OC5","U","Y30-49","2011","7","","" +"EL","F","POP","TOTAL","OC5","U","Y50-64","2011","1","","" +"EL","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","A","Y15-29","2011","5579","","" +"EL","F","POP","TOTAL","OC6","A","Y30-49","2011","46949","","" +"EL","F","POP","TOTAL","OC6","A","Y50-64","2011","42799","","" +"EL","F","POP","TOTAL","OC6","A","Y65-84","2011","1884","","" +"EL","F","POP","TOTAL","OC6","A","Y_GE85","2011","2","","" +"EL","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","C","Y15-29","2011","32","","" +"EL","F","POP","TOTAL","OC6","C","Y30-49","2011","180","","" +"EL","F","POP","TOTAL","OC6","C","Y50-64","2011","93","","" +"EL","F","POP","TOTAL","OC6","C","Y65-84","2011","4","","" +"EL","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","D","Y30-49","2011","1","","" +"EL","F","POP","TOTAL","OC6","D","Y50-64","2011","2","","" +"EL","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","F","Y30-49","2011","2","","" +"EL","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","G","Y15-29","2011","59","","" +"EL","F","POP","TOTAL","OC6","G","Y30-49","2011","302","","" +"EL","F","POP","TOTAL","OC6","G","Y50-64","2011","175","","" +"EL","F","POP","TOTAL","OC6","G","Y65-84","2011","6","","" +"EL","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","I","Y15-29","2011","23","","" +"EL","F","POP","TOTAL","OC6","I","Y30-49","2011","123","","" +"EL","F","POP","TOTAL","OC6","I","Y50-64","2011","49","","" +"EL","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC6","K","Y50-64","2011","1","","" +"EL","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","L","Y15-29","2011","3","","" +"EL","F","POP","TOTAL","OC6","L","Y30-49","2011","16","","" +"EL","F","POP","TOTAL","OC6","L","Y50-64","2011","6","","" +"EL","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","M","Y15-29","2011","2","","" +"EL","F","POP","TOTAL","OC6","M","Y30-49","2011","5","","" +"EL","F","POP","TOTAL","OC6","M","Y50-64","2011","3","","" +"EL","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","N","Y15-29","2011","60","","" +"EL","F","POP","TOTAL","OC6","N","Y30-49","2011","261","","" +"EL","F","POP","TOTAL","OC6","N","Y50-64","2011","108","","" +"EL","F","POP","TOTAL","OC6","N","Y65-84","2011","3","","" +"EL","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","O","Y15-29","2011","24","","" +"EL","F","POP","TOTAL","OC6","O","Y30-49","2011","348","","" +"EL","F","POP","TOTAL","OC6","O","Y50-64","2011","109","","" +"EL","F","POP","TOTAL","OC6","O","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","P","Y15-29","2011","1","","" +"EL","F","POP","TOTAL","OC6","P","Y30-49","2011","6","","" +"EL","F","POP","TOTAL","OC6","P","Y50-64","2011","6","","" +"EL","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","Q","Y30-49","2011","13","","" +"EL","F","POP","TOTAL","OC6","Q","Y50-64","2011","6","","" +"EL","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","R","Y30-49","2011","3","","" +"EL","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","S","Y15-29","2011","8","","" +"EL","F","POP","TOTAL","OC6","S","Y30-49","2011","45","","" +"EL","F","POP","TOTAL","OC6","S","Y50-64","2011","19","","" +"EL","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","T","Y15-29","2011","16","","" +"EL","F","POP","TOTAL","OC6","T","Y30-49","2011","62","","" +"EL","F","POP","TOTAL","OC6","T","Y50-64","2011","32","","" +"EL","F","POP","TOTAL","OC6","T","Y65-84","2011","3","","" +"EL","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","U","Y15-29","2011","1","","" +"EL","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","A","Y15-29","2011","4","","" +"EL","F","POP","TOTAL","OC7","A","Y30-49","2011","21","","" +"EL","F","POP","TOTAL","OC7","A","Y50-64","2011","6","","" +"EL","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","B","Y15-29","2011","6","","" +"EL","F","POP","TOTAL","OC7","B","Y30-49","2011","21","","" +"EL","F","POP","TOTAL","OC7","B","Y50-64","2011","10","","" +"EL","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","C","Y15-29","2011","3169","","" +"EL","F","POP","TOTAL","OC7","C","Y30-49","2011","18310","","" +"EL","F","POP","TOTAL","OC7","C","Y50-64","2011","8711","","" +"EL","F","POP","TOTAL","OC7","C","Y65-84","2011","275","","" +"EL","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","D","Y15-29","2011","100","","" +"EL","F","POP","TOTAL","OC7","D","Y30-49","2011","425","","" +"EL","F","POP","TOTAL","OC7","D","Y50-64","2011","112","","" +"EL","F","POP","TOTAL","OC7","D","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","E","Y15-29","2011","20","","" +"EL","F","POP","TOTAL","OC7","E","Y30-49","2011","156","","" +"EL","F","POP","TOTAL","OC7","E","Y50-64","2011","60","","" +"EL","F","POP","TOTAL","OC7","E","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","F","Y15-29","2011","827","","" +"EL","F","POP","TOTAL","OC7","F","Y30-49","2011","4488","","" +"EL","F","POP","TOTAL","OC7","F","Y50-64","2011","1609","","" +"EL","F","POP","TOTAL","OC7","F","Y65-84","2011","26","","" +"EL","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","G","Y15-29","2011","1673","","" +"EL","F","POP","TOTAL","OC7","G","Y30-49","2011","6913","","" +"EL","F","POP","TOTAL","OC7","G","Y50-64","2011","2548","","" +"EL","F","POP","TOTAL","OC7","G","Y65-84","2011","115","","" +"EL","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","H","Y15-29","2011","86","","" +"EL","F","POP","TOTAL","OC7","H","Y30-49","2011","235","","" +"EL","F","POP","TOTAL","OC7","H","Y50-64","2011","55","","" +"EL","F","POP","TOTAL","OC7","H","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","I","Y15-29","2011","449","","" +"EL","F","POP","TOTAL","OC7","I","Y30-49","2011","1432","","" +"EL","F","POP","TOTAL","OC7","I","Y50-64","2011","424","","" +"EL","F","POP","TOTAL","OC7","I","Y65-84","2011","11","","" +"EL","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","J","Y15-29","2011","253","","" +"EL","F","POP","TOTAL","OC7","J","Y30-49","2011","1384","","" +"EL","F","POP","TOTAL","OC7","J","Y50-64","2011","250","","" +"EL","F","POP","TOTAL","OC7","J","Y65-84","2011","8","","" +"EL","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","K","Y15-29","2011","9","","" +"EL","F","POP","TOTAL","OC7","K","Y30-49","2011","33","","" +"EL","F","POP","TOTAL","OC7","K","Y50-64","2011","14","","" +"EL","F","POP","TOTAL","OC7","K","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","L","Y15-29","2011","1","","" +"EL","F","POP","TOTAL","OC7","L","Y30-49","2011","6","","" +"EL","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","M","Y15-29","2011","167","","" +"EL","F","POP","TOTAL","OC7","M","Y30-49","2011","611","","" +"EL","F","POP","TOTAL","OC7","M","Y50-64","2011","157","","" +"EL","F","POP","TOTAL","OC7","M","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","N","Y15-29","2011","39","","" +"EL","F","POP","TOTAL","OC7","N","Y30-49","2011","146","","" +"EL","F","POP","TOTAL","OC7","N","Y50-64","2011","49","","" +"EL","F","POP","TOTAL","OC7","N","Y65-84","2011","5","","" +"EL","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","O","Y15-29","2011","196","","" +"EL","F","POP","TOTAL","OC7","O","Y30-49","2011","724","","" +"EL","F","POP","TOTAL","OC7","O","Y50-64","2011","303","","" +"EL","F","POP","TOTAL","OC7","O","Y65-84","2011","8","","" +"EL","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","P","Y15-29","2011","7","","" +"EL","F","POP","TOTAL","OC7","P","Y30-49","2011","34","","" +"EL","F","POP","TOTAL","OC7","P","Y50-64","2011","23","","" +"EL","F","POP","TOTAL","OC7","P","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","Q","Y15-29","2011","19","","" +"EL","F","POP","TOTAL","OC7","Q","Y30-49","2011","179","","" +"EL","F","POP","TOTAL","OC7","Q","Y50-64","2011","68","","" +"EL","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","R","Y15-29","2011","15","","" +"EL","F","POP","TOTAL","OC7","R","Y30-49","2011","98","","" +"EL","F","POP","TOTAL","OC7","R","Y50-64","2011","55","","" +"EL","F","POP","TOTAL","OC7","R","Y65-84","2011","3","","" +"EL","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","S","Y15-29","2011","115","","" +"EL","F","POP","TOTAL","OC7","S","Y30-49","2011","978","","" +"EL","F","POP","TOTAL","OC7","S","Y50-64","2011","944","","" +"EL","F","POP","TOTAL","OC7","S","Y65-84","2011","49","","" +"EL","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC7","U","Y30-49","2011","4","","" +"EL","F","POP","TOTAL","OC7","U","Y50-64","2011","1","","" +"EL","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","A","Y15-29","2011","4","","" +"EL","F","POP","TOTAL","OC8","A","Y30-49","2011","50","","" +"EL","F","POP","TOTAL","OC8","A","Y50-64","2011","20","","" +"EL","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","B","Y15-29","2011","15","","" +"EL","F","POP","TOTAL","OC8","B","Y30-49","2011","83","","" +"EL","F","POP","TOTAL","OC8","B","Y50-64","2011","36","","" +"EL","F","POP","TOTAL","OC8","B","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","C","Y15-29","2011","1564","","" +"EL","F","POP","TOTAL","OC8","C","Y30-49","2011","11596","","" +"EL","F","POP","TOTAL","OC8","C","Y50-64","2011","5586","","" +"EL","F","POP","TOTAL","OC8","C","Y65-84","2011","91","","" +"EL","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","D","Y15-29","2011","20","","" +"EL","F","POP","TOTAL","OC8","D","Y30-49","2011","100","","" +"EL","F","POP","TOTAL","OC8","D","Y50-64","2011","37","","" +"EL","F","POP","TOTAL","OC8","D","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","E","Y15-29","2011","23","","" +"EL","F","POP","TOTAL","OC8","E","Y30-49","2011","116","","" +"EL","F","POP","TOTAL","OC8","E","Y50-64","2011","24","","" +"EL","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","F","Y15-29","2011","73","","" +"EL","F","POP","TOTAL","OC8","F","Y30-49","2011","558","","" +"EL","F","POP","TOTAL","OC8","F","Y50-64","2011","202","","" +"EL","F","POP","TOTAL","OC8","F","Y65-84","2011","8","","" +"EL","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","G","Y15-29","2011","173","","" +"EL","F","POP","TOTAL","OC8","G","Y30-49","2011","848","","" +"EL","F","POP","TOTAL","OC8","G","Y50-64","2011","322","","" +"EL","F","POP","TOTAL","OC8","G","Y65-84","2011","3","","" +"EL","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","H","Y15-29","2011","685","","" +"EL","F","POP","TOTAL","OC8","H","Y30-49","2011","4177","","" +"EL","F","POP","TOTAL","OC8","H","Y50-64","2011","1378","","" +"EL","F","POP","TOTAL","OC8","H","Y65-84","2011","34","","" +"EL","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","I","Y15-29","2011","55","","" +"EL","F","POP","TOTAL","OC8","I","Y30-49","2011","362","","" +"EL","F","POP","TOTAL","OC8","I","Y50-64","2011","164","","" +"EL","F","POP","TOTAL","OC8","I","Y65-84","2011","7","","" +"EL","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","J","Y15-29","2011","14","","" +"EL","F","POP","TOTAL","OC8","J","Y30-49","2011","91","","" +"EL","F","POP","TOTAL","OC8","J","Y50-64","2011","20","","" +"EL","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","K","Y15-29","2011","3","","" +"EL","F","POP","TOTAL","OC8","K","Y30-49","2011","27","","" +"EL","F","POP","TOTAL","OC8","K","Y50-64","2011","8","","" +"EL","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","L","Y15-29","2011","1","","" +"EL","F","POP","TOTAL","OC8","L","Y30-49","2011","2","","" +"EL","F","POP","TOTAL","OC8","L","Y50-64","2011","1","","" +"EL","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","M","Y15-29","2011","100","","" +"EL","F","POP","TOTAL","OC8","M","Y30-49","2011","268","","" +"EL","F","POP","TOTAL","OC8","M","Y50-64","2011","78","","" +"EL","F","POP","TOTAL","OC8","M","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","N","Y15-29","2011","178","","" +"EL","F","POP","TOTAL","OC8","N","Y30-49","2011","852","","" +"EL","F","POP","TOTAL","OC8","N","Y50-64","2011","272","","" +"EL","F","POP","TOTAL","OC8","N","Y65-84","2011","4","","" +"EL","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","O","Y15-29","2011","72","","" +"EL","F","POP","TOTAL","OC8","O","Y30-49","2011","596","","" +"EL","F","POP","TOTAL","OC8","O","Y50-64","2011","294","","" +"EL","F","POP","TOTAL","OC8","O","Y65-84","2011","6","","" +"EL","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","P","Y15-29","2011","20","","" +"EL","F","POP","TOTAL","OC8","P","Y30-49","2011","140","","" +"EL","F","POP","TOTAL","OC8","P","Y50-64","2011","55","","" +"EL","F","POP","TOTAL","OC8","P","Y65-84","2011","6","","" +"EL","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","Q","Y15-29","2011","59","","" +"EL","F","POP","TOTAL","OC8","Q","Y30-49","2011","562","","" +"EL","F","POP","TOTAL","OC8","Q","Y50-64","2011","263","","" +"EL","F","POP","TOTAL","OC8","Q","Y65-84","2011","7","","" +"EL","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","R","Y15-29","2011","11","","" +"EL","F","POP","TOTAL","OC8","R","Y30-49","2011","32","","" +"EL","F","POP","TOTAL","OC8","R","Y50-64","2011","20","","" +"EL","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","S","Y15-29","2011","11","","" +"EL","F","POP","TOTAL","OC8","S","Y30-49","2011","103","","" +"EL","F","POP","TOTAL","OC8","S","Y50-64","2011","65","","" +"EL","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC8","U","Y30-49","2011","4","","" +"EL","F","POP","TOTAL","OC8","U","Y50-64","2011","1","","" +"EL","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","A","Y15-29","2011","2740","","" +"EL","F","POP","TOTAL","OC9","A","Y30-49","2011","8491","","" +"EL","F","POP","TOTAL","OC9","A","Y50-64","2011","3842","","" +"EL","F","POP","TOTAL","OC9","A","Y65-84","2011","143","","" +"EL","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","B","Y15-29","2011","15","","" +"EL","F","POP","TOTAL","OC9","B","Y30-49","2011","63","","" +"EL","F","POP","TOTAL","OC9","B","Y50-64","2011","33","","" +"EL","F","POP","TOTAL","OC9","B","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","C","Y15-29","2011","1928","","" +"EL","F","POP","TOTAL","OC9","C","Y30-49","2011","12123","","" +"EL","F","POP","TOTAL","OC9","C","Y50-64","2011","4831","","" +"EL","F","POP","TOTAL","OC9","C","Y65-84","2011","68","","" +"EL","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","D","Y15-29","2011","94","","" +"EL","F","POP","TOTAL","OC9","D","Y30-49","2011","448","","" +"EL","F","POP","TOTAL","OC9","D","Y50-64","2011","194","","" +"EL","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","E","Y15-29","2011","257","","" +"EL","F","POP","TOTAL","OC9","E","Y30-49","2011","1318","","" +"EL","F","POP","TOTAL","OC9","E","Y50-64","2011","392","","" +"EL","F","POP","TOTAL","OC9","E","Y65-84","2011","8","","" +"EL","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","F","Y15-29","2011","306","","" +"EL","F","POP","TOTAL","OC9","F","Y30-49","2011","1056","","" +"EL","F","POP","TOTAL","OC9","F","Y50-64","2011","416","","" +"EL","F","POP","TOTAL","OC9","F","Y65-84","2011","8","","" +"EL","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","G","Y15-29","2011","1340","","" +"EL","F","POP","TOTAL","OC9","G","Y30-49","2011","5138","","" +"EL","F","POP","TOTAL","OC9","G","Y50-64","2011","1631","","" +"EL","F","POP","TOTAL","OC9","G","Y65-84","2011","27","","" +"EL","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","H","Y15-29","2011","455","","" +"EL","F","POP","TOTAL","OC9","H","Y30-49","2011","1720","","" +"EL","F","POP","TOTAL","OC9","H","Y50-64","2011","592","","" +"EL","F","POP","TOTAL","OC9","H","Y65-84","2011","16","","" +"EL","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","I","Y15-29","2011","5888","","" +"EL","F","POP","TOTAL","OC9","I","Y30-49","2011","25061","","" +"EL","F","POP","TOTAL","OC9","I","Y50-64","2011","9362","","" +"EL","F","POP","TOTAL","OC9","I","Y65-84","2011","171","","" +"EL","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","J","Y15-29","2011","107","","" +"EL","F","POP","TOTAL","OC9","J","Y30-49","2011","405","","" +"EL","F","POP","TOTAL","OC9","J","Y50-64","2011","260","","" +"EL","F","POP","TOTAL","OC9","J","Y65-84","2011","4","","" +"EL","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","K","Y15-29","2011","52","","" +"EL","F","POP","TOTAL","OC9","K","Y30-49","2011","577","","" +"EL","F","POP","TOTAL","OC9","K","Y50-64","2011","628","","" +"EL","F","POP","TOTAL","OC9","K","Y65-84","2011","19","","" +"EL","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","L","Y15-29","2011","11","","" +"EL","F","POP","TOTAL","OC9","L","Y30-49","2011","16","","" +"EL","F","POP","TOTAL","OC9","L","Y50-64","2011","10","","" +"EL","F","POP","TOTAL","OC9","L","Y65-84","2011","1","","" +"EL","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","M","Y15-29","2011","307","","" +"EL","F","POP","TOTAL","OC9","M","Y30-49","2011","583","","" +"EL","F","POP","TOTAL","OC9","M","Y50-64","2011","225","","" +"EL","F","POP","TOTAL","OC9","M","Y65-84","2011","7","","" +"EL","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","N","Y15-29","2011","3450","","" +"EL","F","POP","TOTAL","OC9","N","Y30-49","2011","25176","","" +"EL","F","POP","TOTAL","OC9","N","Y50-64","2011","13734","","" +"EL","F","POP","TOTAL","OC9","N","Y65-84","2011","337","","" +"EL","F","POP","TOTAL","OC9","N","Y_GE85","2011","1","","" +"EL","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","O","Y15-29","2011","1173","","" +"EL","F","POP","TOTAL","OC9","O","Y30-49","2011","9419","","" +"EL","F","POP","TOTAL","OC9","O","Y50-64","2011","3805","","" +"EL","F","POP","TOTAL","OC9","O","Y65-84","2011","103","","" +"EL","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","P","Y15-29","2011","173","","" +"EL","F","POP","TOTAL","OC9","P","Y30-49","2011","3215","","" +"EL","F","POP","TOTAL","OC9","P","Y50-64","2011","2294","","" +"EL","F","POP","TOTAL","OC9","P","Y65-84","2011","77","","" +"EL","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","Q","Y15-29","2011","493","","" +"EL","F","POP","TOTAL","OC9","Q","Y30-49","2011","5207","","" +"EL","F","POP","TOTAL","OC9","Q","Y50-64","2011","3293","","" +"EL","F","POP","TOTAL","OC9","Q","Y65-84","2011","90","","" +"EL","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","R","Y15-29","2011","111","","" +"EL","F","POP","TOTAL","OC9","R","Y30-49","2011","605","","" +"EL","F","POP","TOTAL","OC9","R","Y50-64","2011","278","","" +"EL","F","POP","TOTAL","OC9","R","Y65-84","2011","2","","" +"EL","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","S","Y15-29","2011","106","","" +"EL","F","POP","TOTAL","OC9","S","Y30-49","2011","567","","" +"EL","F","POP","TOTAL","OC9","S","Y50-64","2011","315","","" +"EL","F","POP","TOTAL","OC9","S","Y65-84","2011","13","","" +"EL","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","T","Y15-29","2011","4453","","" +"EL","F","POP","TOTAL","OC9","T","Y30-49","2011","28249","","" +"EL","F","POP","TOTAL","OC9","T","Y50-64","2011","17785","","" +"EL","F","POP","TOTAL","OC9","T","Y65-84","2011","1031","","" +"EL","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","U","Y15-29","2011","3","","" +"EL","F","POP","TOTAL","OC9","U","Y30-49","2011","1","","" +"EL","F","POP","TOTAL","OC9","U","Y50-64","2011","3","","" +"EL","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"EL","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"EL","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"EL","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"EL","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"EL","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"EL","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","NAP","Y15-29","2011","568798","","" +"EL","M","POP","TOTAL","NAP","NAP","Y30-49","2011","121574","","" +"EL","M","POP","TOTAL","NAP","NAP","Y50-64","2011","349452","","" +"EL","M","POP","TOTAL","NAP","NAP","Y65-84","2011","812414","","" +"EL","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","85217","","" +"EL","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","803007","","" +"EL","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","A","Y15-29","2011","35","","" +"EL","M","POP","TOTAL","OC1","A","Y30-49","2011","323","","" +"EL","M","POP","TOTAL","OC1","A","Y50-64","2011","210","","" +"EL","M","POP","TOTAL","OC1","A","Y65-84","2011","16","","" +"EL","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","B","Y15-29","2011","4","","" +"EL","M","POP","TOTAL","OC1","B","Y30-49","2011","133","","" +"EL","M","POP","TOTAL","OC1","B","Y50-64","2011","102","","" +"EL","M","POP","TOTAL","OC1","B","Y65-84","2011","12","","" +"EL","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","C","Y15-29","2011","815","","" +"EL","M","POP","TOTAL","OC1","C","Y30-49","2011","10075","","" +"EL","M","POP","TOTAL","OC1","C","Y50-64","2011","5949","","" +"EL","M","POP","TOTAL","OC1","C","Y65-84","2011","598","","" +"EL","M","POP","TOTAL","OC1","C","Y_GE85","2011","2","","" +"EL","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","D","Y15-29","2011","39","","" +"EL","M","POP","TOTAL","OC1","D","Y30-49","2011","391","","" +"EL","M","POP","TOTAL","OC1","D","Y50-64","2011","243","","" +"EL","M","POP","TOTAL","OC1","D","Y65-84","2011","12","","" +"EL","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","E","Y15-29","2011","51","","" +"EL","M","POP","TOTAL","OC1","E","Y30-49","2011","247","","" +"EL","M","POP","TOTAL","OC1","E","Y50-64","2011","164","","" +"EL","M","POP","TOTAL","OC1","E","Y65-84","2011","15","","" +"EL","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","F","Y15-29","2011","1079","","" +"EL","M","POP","TOTAL","OC1","F","Y30-49","2011","8947","","" +"EL","M","POP","TOTAL","OC1","F","Y50-64","2011","4433","","" +"EL","M","POP","TOTAL","OC1","F","Y65-84","2011","333","","" +"EL","M","POP","TOTAL","OC1","F","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","G","Y15-29","2011","4466","","" +"EL","M","POP","TOTAL","OC1","G","Y30-49","2011","34797","","" +"EL","M","POP","TOTAL","OC1","G","Y50-64","2011","17343","","" +"EL","M","POP","TOTAL","OC1","G","Y65-84","2011","1350","","" +"EL","M","POP","TOTAL","OC1","G","Y_GE85","2011","5","","" +"EL","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","H","Y15-29","2011","175","","" +"EL","M","POP","TOTAL","OC1","H","Y30-49","2011","2242","","" +"EL","M","POP","TOTAL","OC1","H","Y50-64","2011","1618","","" +"EL","M","POP","TOTAL","OC1","H","Y65-84","2011","158","","" +"EL","M","POP","TOTAL","OC1","H","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","I","Y15-29","2011","4120","","" +"EL","M","POP","TOTAL","OC1","I","Y30-49","2011","24966","","" +"EL","M","POP","TOTAL","OC1","I","Y50-64","2011","11785","","" +"EL","M","POP","TOTAL","OC1","I","Y65-84","2011","851","","" +"EL","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","J","Y15-29","2011","237","","" +"EL","M","POP","TOTAL","OC1","J","Y30-49","2011","2707","","" +"EL","M","POP","TOTAL","OC1","J","Y50-64","2011","939","","" +"EL","M","POP","TOTAL","OC1","J","Y65-84","2011","55","","" +"EL","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","K","Y15-29","2011","66","","" +"EL","M","POP","TOTAL","OC1","K","Y30-49","2011","2755","","" +"EL","M","POP","TOTAL","OC1","K","Y50-64","2011","2118","","" +"EL","M","POP","TOTAL","OC1","K","Y65-84","2011","82","","" +"EL","M","POP","TOTAL","OC1","K","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","L","Y15-29","2011","6","","" +"EL","M","POP","TOTAL","OC1","L","Y30-49","2011","105","","" +"EL","M","POP","TOTAL","OC1","L","Y50-64","2011","39","","" +"EL","M","POP","TOTAL","OC1","L","Y65-84","2011","3","","" +"EL","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","M","Y15-29","2011","198","","" +"EL","M","POP","TOTAL","OC1","M","Y30-49","2011","1925","","" +"EL","M","POP","TOTAL","OC1","M","Y50-64","2011","1095","","" +"EL","M","POP","TOTAL","OC1","M","Y65-84","2011","109","","" +"EL","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","N","Y15-29","2011","241","","" +"EL","M","POP","TOTAL","OC1","N","Y30-49","2011","1730","","" +"EL","M","POP","TOTAL","OC1","N","Y50-64","2011","794","","" +"EL","M","POP","TOTAL","OC1","N","Y65-84","2011","74","","" +"EL","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","O","Y15-29","2011","88","","" +"EL","M","POP","TOTAL","OC1","O","Y30-49","2011","1595","","" +"EL","M","POP","TOTAL","OC1","O","Y50-64","2011","2313","","" +"EL","M","POP","TOTAL","OC1","O","Y65-84","2011","109","","" +"EL","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","P","Y15-29","2011","38","","" +"EL","M","POP","TOTAL","OC1","P","Y30-49","2011","887","","" +"EL","M","POP","TOTAL","OC1","P","Y50-64","2011","1608","","" +"EL","M","POP","TOTAL","OC1","P","Y65-84","2011","77","","" +"EL","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","Q","Y15-29","2011","61","","" +"EL","M","POP","TOTAL","OC1","Q","Y30-49","2011","691","","" +"EL","M","POP","TOTAL","OC1","Q","Y50-64","2011","757","","" +"EL","M","POP","TOTAL","OC1","Q","Y65-84","2011","80","","" +"EL","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","R","Y15-29","2011","226","","" +"EL","M","POP","TOTAL","OC1","R","Y30-49","2011","1324","","" +"EL","M","POP","TOTAL","OC1","R","Y50-64","2011","561","","" +"EL","M","POP","TOTAL","OC1","R","Y65-84","2011","41","","" +"EL","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","S","Y15-29","2011","14","","" +"EL","M","POP","TOTAL","OC1","S","Y30-49","2011","223","","" +"EL","M","POP","TOTAL","OC1","S","Y50-64","2011","134","","" +"EL","M","POP","TOTAL","OC1","S","Y65-84","2011","15","","" +"EL","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC1","U","Y30-49","2011","14","","" +"EL","M","POP","TOTAL","OC1","U","Y50-64","2011","9","","" +"EL","M","POP","TOTAL","OC1","U","Y65-84","2011","1","","" +"EL","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","A","Y15-29","2011","134","","" +"EL","M","POP","TOTAL","OC2","A","Y30-49","2011","691","","" +"EL","M","POP","TOTAL","OC2","A","Y50-64","2011","284","","" +"EL","M","POP","TOTAL","OC2","A","Y65-84","2011","10","","" +"EL","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","B","Y15-29","2011","22","","" +"EL","M","POP","TOTAL","OC2","B","Y30-49","2011","147","","" +"EL","M","POP","TOTAL","OC2","B","Y50-64","2011","58","","" +"EL","M","POP","TOTAL","OC2","B","Y65-84","2011","1","","" +"EL","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","C","Y15-29","2011","1621","","" +"EL","M","POP","TOTAL","OC2","C","Y30-49","2011","8756","","" +"EL","M","POP","TOTAL","OC2","C","Y50-64","2011","2637","","" +"EL","M","POP","TOTAL","OC2","C","Y65-84","2011","120","","" +"EL","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","D","Y15-29","2011","231","","" +"EL","M","POP","TOTAL","OC2","D","Y30-49","2011","1242","","" +"EL","M","POP","TOTAL","OC2","D","Y50-64","2011","654","","" +"EL","M","POP","TOTAL","OC2","D","Y65-84","2011","24","","" +"EL","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","E","Y15-29","2011","29","","" +"EL","M","POP","TOTAL","OC2","E","Y30-49","2011","292","","" +"EL","M","POP","TOTAL","OC2","E","Y50-64","2011","144","","" +"EL","M","POP","TOTAL","OC2","E","Y65-84","2011","3","","" +"EL","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","F","Y15-29","2011","682","","" +"EL","M","POP","TOTAL","OC2","F","Y30-49","2011","3410","","" +"EL","M","POP","TOTAL","OC2","F","Y50-64","2011","1309","","" +"EL","M","POP","TOTAL","OC2","F","Y65-84","2011","119","","" +"EL","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","G","Y15-29","2011","1593","","" +"EL","M","POP","TOTAL","OC2","G","Y30-49","2011","9079","","" +"EL","M","POP","TOTAL","OC2","G","Y50-64","2011","3778","","" +"EL","M","POP","TOTAL","OC2","G","Y65-84","2011","235","","" +"EL","M","POP","TOTAL","OC2","G","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","H","Y15-29","2011","410","","" +"EL","M","POP","TOTAL","OC2","H","Y30-49","2011","1954","","" +"EL","M","POP","TOTAL","OC2","H","Y50-64","2011","712","","" +"EL","M","POP","TOTAL","OC2","H","Y65-84","2011","54","","" +"EL","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","I","Y15-29","2011","521","","" +"EL","M","POP","TOTAL","OC2","I","Y30-49","2011","1342","","" +"EL","M","POP","TOTAL","OC2","I","Y50-64","2011","513","","" +"EL","M","POP","TOTAL","OC2","I","Y65-84","2011","19","","" +"EL","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","J","Y15-29","2011","4374","","" +"EL","M","POP","TOTAL","OC2","J","Y30-49","2011","17615","","" +"EL","M","POP","TOTAL","OC2","J","Y50-64","2011","3430","","" +"EL","M","POP","TOTAL","OC2","J","Y65-84","2011","243","","" +"EL","M","POP","TOTAL","OC2","J","Y_GE85","2011","2","","" +"EL","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","K","Y15-29","2011","646","","" +"EL","M","POP","TOTAL","OC2","K","Y30-49","2011","3373","","" +"EL","M","POP","TOTAL","OC2","K","Y50-64","2011","929","","" +"EL","M","POP","TOTAL","OC2","K","Y65-84","2011","50","","" +"EL","M","POP","TOTAL","OC2","K","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","L","Y15-29","2011","33","","" +"EL","M","POP","TOTAL","OC2","L","Y30-49","2011","60","","" +"EL","M","POP","TOTAL","OC2","L","Y50-64","2011","25","","" +"EL","M","POP","TOTAL","OC2","L","Y65-84","2011","2","","" +"EL","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","M","Y15-29","2011","9087","","" +"EL","M","POP","TOTAL","OC2","M","Y30-49","2011","45335","","" +"EL","M","POP","TOTAL","OC2","M","Y50-64","2011","22464","","" +"EL","M","POP","TOTAL","OC2","M","Y65-84","2011","2988","","" +"EL","M","POP","TOTAL","OC2","M","Y_GE85","2011","13","","" +"EL","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","N","Y15-29","2011","161","","" +"EL","M","POP","TOTAL","OC2","N","Y30-49","2011","754","","" +"EL","M","POP","TOTAL","OC2","N","Y50-64","2011","249","","" +"EL","M","POP","TOTAL","OC2","N","Y65-84","2011","20","","" +"EL","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","O","Y15-29","2011","1022","","" +"EL","M","POP","TOTAL","OC2","O","Y30-49","2011","9552","","" +"EL","M","POP","TOTAL","OC2","O","Y50-64","2011","5754","","" +"EL","M","POP","TOTAL","OC2","O","Y65-84","2011","348","","" +"EL","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","P","Y15-29","2011","5851","","" +"EL","M","POP","TOTAL","OC2","P","Y30-49","2011","51743","","" +"EL","M","POP","TOTAL","OC2","P","Y50-64","2011","27645","","" +"EL","M","POP","TOTAL","OC2","P","Y65-84","2011","1096","","" +"EL","M","POP","TOTAL","OC2","P","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","Q","Y15-29","2011","3167","","" +"EL","M","POP","TOTAL","OC2","Q","Y30-49","2011","28193","","" +"EL","M","POP","TOTAL","OC2","Q","Y50-64","2011","14930","","" +"EL","M","POP","TOTAL","OC2","Q","Y65-84","2011","2199","","" +"EL","M","POP","TOTAL","OC2","Q","Y_GE85","2011","6","","" +"EL","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","R","Y15-29","2011","1610","","" +"EL","M","POP","TOTAL","OC2","R","Y30-49","2011","6427","","" +"EL","M","POP","TOTAL","OC2","R","Y50-64","2011","2879","","" +"EL","M","POP","TOTAL","OC2","R","Y65-84","2011","282","","" +"EL","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","S","Y15-29","2011","686","","" +"EL","M","POP","TOTAL","OC2","S","Y30-49","2011","5232","","" +"EL","M","POP","TOTAL","OC2","S","Y50-64","2011","3104","","" +"EL","M","POP","TOTAL","OC2","S","Y65-84","2011","1577","","" +"EL","M","POP","TOTAL","OC2","S","Y_GE85","2011","9","","" +"EL","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","U","Y15-29","2011","8","","" +"EL","M","POP","TOTAL","OC2","U","Y30-49","2011","42","","" +"EL","M","POP","TOTAL","OC2","U","Y50-64","2011","18","","" +"EL","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","A","Y15-29","2011","125","","" +"EL","M","POP","TOTAL","OC3","A","Y30-49","2011","503","","" +"EL","M","POP","TOTAL","OC3","A","Y50-64","2011","203","","" +"EL","M","POP","TOTAL","OC3","A","Y65-84","2011","8","","" +"EL","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","B","Y15-29","2011","52","","" +"EL","M","POP","TOTAL","OC3","B","Y30-49","2011","263","","" +"EL","M","POP","TOTAL","OC3","B","Y50-64","2011","108","","" +"EL","M","POP","TOTAL","OC3","B","Y65-84","2011","1","","" +"EL","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","C","Y15-29","2011","2664","","" +"EL","M","POP","TOTAL","OC3","C","Y30-49","2011","10509","","" +"EL","M","POP","TOTAL","OC3","C","Y50-64","2011","3986","","" +"EL","M","POP","TOTAL","OC3","C","Y65-84","2011","126","","" +"EL","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","D","Y15-29","2011","468","","" +"EL","M","POP","TOTAL","OC3","D","Y30-49","2011","2569","","" +"EL","M","POP","TOTAL","OC3","D","Y50-64","2011","1339","","" +"EL","M","POP","TOTAL","OC3","D","Y65-84","2011","14","","" +"EL","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","E","Y15-29","2011","73","","" +"EL","M","POP","TOTAL","OC3","E","Y30-49","2011","674","","" +"EL","M","POP","TOTAL","OC3","E","Y50-64","2011","374","","" +"EL","M","POP","TOTAL","OC3","E","Y65-84","2011","6","","" +"EL","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","F","Y15-29","2011","989","","" +"EL","M","POP","TOTAL","OC3","F","Y30-49","2011","3716","","" +"EL","M","POP","TOTAL","OC3","F","Y50-64","2011","1413","","" +"EL","M","POP","TOTAL","OC3","F","Y65-84","2011","60","","" +"EL","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","G","Y15-29","2011","2220","","" +"EL","M","POP","TOTAL","OC3","G","Y30-49","2011","8633","","" +"EL","M","POP","TOTAL","OC3","G","Y50-64","2011","2642","","" +"EL","M","POP","TOTAL","OC3","G","Y65-84","2011","149","","" +"EL","M","POP","TOTAL","OC3","G","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","H","Y15-29","2011","3551","","" +"EL","M","POP","TOTAL","OC3","H","Y30-49","2011","11786","","" +"EL","M","POP","TOTAL","OC3","H","Y50-64","2011","5859","","" +"EL","M","POP","TOTAL","OC3","H","Y65-84","2011","259","","" +"EL","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","I","Y15-29","2011","861","","" +"EL","M","POP","TOTAL","OC3","I","Y30-49","2011","1741","","" +"EL","M","POP","TOTAL","OC3","I","Y50-64","2011","448","","" +"EL","M","POP","TOTAL","OC3","I","Y65-84","2011","9","","" +"EL","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","J","Y15-29","2011","2432","","" +"EL","M","POP","TOTAL","OC3","J","Y30-49","2011","7766","","" +"EL","M","POP","TOTAL","OC3","J","Y50-64","2011","2230","","" +"EL","M","POP","TOTAL","OC3","J","Y65-84","2011","31","","" +"EL","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","K","Y15-29","2011","3670","","" +"EL","M","POP","TOTAL","OC3","K","Y30-49","2011","19534","","" +"EL","M","POP","TOTAL","OC3","K","Y50-64","2011","6789","","" +"EL","M","POP","TOTAL","OC3","K","Y65-84","2011","195","","" +"EL","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","L","Y15-29","2011","388","","" +"EL","M","POP","TOTAL","OC3","L","Y30-49","2011","2283","","" +"EL","M","POP","TOTAL","OC3","L","Y50-64","2011","844","","" +"EL","M","POP","TOTAL","OC3","L","Y65-84","2011","52","","" +"EL","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","M","Y15-29","2011","3413","","" +"EL","M","POP","TOTAL","OC3","M","Y30-49","2011","11294","","" +"EL","M","POP","TOTAL","OC3","M","Y50-64","2011","4208","","" +"EL","M","POP","TOTAL","OC3","M","Y65-84","2011","209","","" +"EL","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","N","Y15-29","2011","482","","" +"EL","M","POP","TOTAL","OC3","N","Y30-49","2011","2004","","" +"EL","M","POP","TOTAL","OC3","N","Y50-64","2011","851","","" +"EL","M","POP","TOTAL","OC3","N","Y65-84","2011","56","","" +"EL","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","O","Y15-29","2011","1561","","" +"EL","M","POP","TOTAL","OC3","O","Y30-49","2011","14107","","" +"EL","M","POP","TOTAL","OC3","O","Y50-64","2011","9419","","" +"EL","M","POP","TOTAL","OC3","O","Y65-84","2011","207","","" +"EL","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","P","Y15-29","2011","534","","" +"EL","M","POP","TOTAL","OC3","P","Y30-49","2011","4063","","" +"EL","M","POP","TOTAL","OC3","P","Y50-64","2011","1002","","" +"EL","M","POP","TOTAL","OC3","P","Y65-84","2011","21","","" +"EL","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","Q","Y15-29","2011","1369","","" +"EL","M","POP","TOTAL","OC3","Q","Y30-49","2011","7460","","" +"EL","M","POP","TOTAL","OC3","Q","Y50-64","2011","2363","","" +"EL","M","POP","TOTAL","OC3","Q","Y65-84","2011","42","","" +"EL","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","R","Y15-29","2011","2473","","" +"EL","M","POP","TOTAL","OC3","R","Y30-49","2011","3747","","" +"EL","M","POP","TOTAL","OC3","R","Y50-64","2011","656","","" +"EL","M","POP","TOTAL","OC3","R","Y65-84","2011","43","","" +"EL","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","S","Y15-29","2011","394","","" +"EL","M","POP","TOTAL","OC3","S","Y30-49","2011","1220","","" +"EL","M","POP","TOTAL","OC3","S","Y50-64","2011","310","","" +"EL","M","POP","TOTAL","OC3","S","Y65-84","2011","30","","" +"EL","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","T","Y15-29","2011","3","","" +"EL","M","POP","TOTAL","OC3","T","Y30-49","2011","2","","" +"EL","M","POP","TOTAL","OC3","T","Y50-64","2011","2","","" +"EL","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","U","Y15-29","2011","2","","" +"EL","M","POP","TOTAL","OC3","U","Y30-49","2011","18","","" +"EL","M","POP","TOTAL","OC3","U","Y50-64","2011","9","","" +"EL","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","A","Y15-29","2011","115","","" +"EL","M","POP","TOTAL","OC4","A","Y30-49","2011","301","","" +"EL","M","POP","TOTAL","OC4","A","Y50-64","2011","91","","" +"EL","M","POP","TOTAL","OC4","A","Y65-84","2011","2","","" +"EL","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","B","Y15-29","2011","33","","" +"EL","M","POP","TOTAL","OC4","B","Y30-49","2011","132","","" +"EL","M","POP","TOTAL","OC4","B","Y50-64","2011","34","","" +"EL","M","POP","TOTAL","OC4","B","Y65-84","2011","1","","" +"EL","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","C","Y15-29","2011","2099","","" +"EL","M","POP","TOTAL","OC4","C","Y30-49","2011","7847","","" +"EL","M","POP","TOTAL","OC4","C","Y50-64","2011","2114","","" +"EL","M","POP","TOTAL","OC4","C","Y65-84","2011","31","","" +"EL","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","D","Y15-29","2011","251","","" +"EL","M","POP","TOTAL","OC4","D","Y30-49","2011","1543","","" +"EL","M","POP","TOTAL","OC4","D","Y50-64","2011","836","","" +"EL","M","POP","TOTAL","OC4","D","Y65-84","2011","2","","" +"EL","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","E","Y15-29","2011","120","","" +"EL","M","POP","TOTAL","OC4","E","Y30-49","2011","608","","" +"EL","M","POP","TOTAL","OC4","E","Y50-64","2011","241","","" +"EL","M","POP","TOTAL","OC4","E","Y65-84","2011","3","","" +"EL","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","F","Y15-29","2011","452","","" +"EL","M","POP","TOTAL","OC4","F","Y30-49","2011","1538","","" +"EL","M","POP","TOTAL","OC4","F","Y50-64","2011","379","","" +"EL","M","POP","TOTAL","OC4","F","Y65-84","2011","12","","" +"EL","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","G","Y15-29","2011","5723","","" +"EL","M","POP","TOTAL","OC4","G","Y30-49","2011","14556","","" +"EL","M","POP","TOTAL","OC4","G","Y50-64","2011","2776","","" +"EL","M","POP","TOTAL","OC4","G","Y65-84","2011","82","","" +"EL","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","H","Y15-29","2011","2613","","" +"EL","M","POP","TOTAL","OC4","H","Y30-49","2011","10082","","" +"EL","M","POP","TOTAL","OC4","H","Y50-64","2011","4222","","" +"EL","M","POP","TOTAL","OC4","H","Y65-84","2011","42","","" +"EL","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","I","Y15-29","2011","2259","","" +"EL","M","POP","TOTAL","OC4","I","Y30-49","2011","6222","","" +"EL","M","POP","TOTAL","OC4","I","Y50-64","2011","2160","","" +"EL","M","POP","TOTAL","OC4","I","Y65-84","2011","115","","" +"EL","M","POP","TOTAL","OC4","I","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","J","Y15-29","2011","1571","","" +"EL","M","POP","TOTAL","OC4","J","Y30-49","2011","3331","","" +"EL","M","POP","TOTAL","OC4","J","Y50-64","2011","810","","" +"EL","M","POP","TOTAL","OC4","J","Y65-84","2011","18","","" +"EL","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","K","Y15-29","2011","1626","","" +"EL","M","POP","TOTAL","OC4","K","Y30-49","2011","5974","","" +"EL","M","POP","TOTAL","OC4","K","Y50-64","2011","2101","","" +"EL","M","POP","TOTAL","OC4","K","Y65-84","2011","37","","" +"EL","M","POP","TOTAL","OC4","K","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","L","Y15-29","2011","49","","" +"EL","M","POP","TOTAL","OC4","L","Y30-49","2011","157","","" +"EL","M","POP","TOTAL","OC4","L","Y50-64","2011","44","","" +"EL","M","POP","TOTAL","OC4","L","Y65-84","2011","1","","" +"EL","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","M","Y15-29","2011","1138","","" +"EL","M","POP","TOTAL","OC4","M","Y30-49","2011","3125","","" +"EL","M","POP","TOTAL","OC4","M","Y50-64","2011","964","","" +"EL","M","POP","TOTAL","OC4","M","Y65-84","2011","35","","" +"EL","M","POP","TOTAL","OC4","M","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","N","Y15-29","2011","1373","","" +"EL","M","POP","TOTAL","OC4","N","Y30-49","2011","3245","","" +"EL","M","POP","TOTAL","OC4","N","Y50-64","2011","924","","" +"EL","M","POP","TOTAL","OC4","N","Y65-84","2011","38","","" +"EL","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","O","Y15-29","2011","1867","","" +"EL","M","POP","TOTAL","OC4","O","Y30-49","2011","14470","","" +"EL","M","POP","TOTAL","OC4","O","Y50-64","2011","8286","","" +"EL","M","POP","TOTAL","OC4","O","Y65-84","2011","187","","" +"EL","M","POP","TOTAL","OC4","O","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","P","Y15-29","2011","461","","" +"EL","M","POP","TOTAL","OC4","P","Y30-49","2011","1783","","" +"EL","M","POP","TOTAL","OC4","P","Y50-64","2011","735","","" +"EL","M","POP","TOTAL","OC4","P","Y65-84","2011","18","","" +"EL","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","Q","Y15-29","2011","353","","" +"EL","M","POP","TOTAL","OC4","Q","Y30-49","2011","1778","","" +"EL","M","POP","TOTAL","OC4","Q","Y50-64","2011","1018","","" +"EL","M","POP","TOTAL","OC4","Q","Y65-84","2011","24","","" +"EL","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","R","Y15-29","2011","784","","" +"EL","M","POP","TOTAL","OC4","R","Y30-49","2011","3714","","" +"EL","M","POP","TOTAL","OC4","R","Y50-64","2011","1439","","" +"EL","M","POP","TOTAL","OC4","R","Y65-84","2011","127","","" +"EL","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","S","Y15-29","2011","231","","" +"EL","M","POP","TOTAL","OC4","S","Y30-49","2011","938","","" +"EL","M","POP","TOTAL","OC4","S","Y50-64","2011","295","","" +"EL","M","POP","TOTAL","OC4","S","Y65-84","2011","10","","" +"EL","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC4","T","Y30-49","2011","1","","" +"EL","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","U","Y15-29","2011","3","","" +"EL","M","POP","TOTAL","OC4","U","Y30-49","2011","53","","" +"EL","M","POP","TOTAL","OC4","U","Y50-64","2011","20","","" +"EL","M","POP","TOTAL","OC4","U","Y65-84","2011","2","","" +"EL","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","A","Y15-29","2011","110","","" +"EL","M","POP","TOTAL","OC5","A","Y30-49","2011","781","","" +"EL","M","POP","TOTAL","OC5","A","Y50-64","2011","414","","" +"EL","M","POP","TOTAL","OC5","A","Y65-84","2011","17","","" +"EL","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","B","Y15-29","2011","13","","" +"EL","M","POP","TOTAL","OC5","B","Y30-49","2011","63","","" +"EL","M","POP","TOTAL","OC5","B","Y50-64","2011","39","","" +"EL","M","POP","TOTAL","OC5","B","Y65-84","2011","3","","" +"EL","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","C","Y15-29","2011","2361","","" +"EL","M","POP","TOTAL","OC5","C","Y30-49","2011","8377","","" +"EL","M","POP","TOTAL","OC5","C","Y50-64","2011","2538","","" +"EL","M","POP","TOTAL","OC5","C","Y65-84","2011","98","","" +"EL","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","D","Y15-29","2011","77","","" +"EL","M","POP","TOTAL","OC5","D","Y30-49","2011","445","","" +"EL","M","POP","TOTAL","OC5","D","Y50-64","2011","257","","" +"EL","M","POP","TOTAL","OC5","D","Y65-84","2011","3","","" +"EL","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","E","Y15-29","2011","25","","" +"EL","M","POP","TOTAL","OC5","E","Y30-49","2011","192","","" +"EL","M","POP","TOTAL","OC5","E","Y50-64","2011","116","","" +"EL","M","POP","TOTAL","OC5","E","Y65-84","2011","4","","" +"EL","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","F","Y15-29","2011","123","","" +"EL","M","POP","TOTAL","OC5","F","Y30-49","2011","481","","" +"EL","M","POP","TOTAL","OC5","F","Y50-64","2011","224","","" +"EL","M","POP","TOTAL","OC5","F","Y65-84","2011","10","","" +"EL","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","G","Y15-29","2011","37976","","" +"EL","M","POP","TOTAL","OC5","G","Y30-49","2011","117855","","" +"EL","M","POP","TOTAL","OC5","G","Y50-64","2011","40166","","" +"EL","M","POP","TOTAL","OC5","G","Y65-84","2011","2359","","" +"EL","M","POP","TOTAL","OC5","G","Y_GE85","2011","4","","" +"EL","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","H","Y15-29","2011","1366","","" +"EL","M","POP","TOTAL","OC5","H","Y30-49","2011","4738","","" +"EL","M","POP","TOTAL","OC5","H","Y50-64","2011","1783","","" +"EL","M","POP","TOTAL","OC5","H","Y65-84","2011","38","","" +"EL","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","I","Y15-29","2011","32585","","" +"EL","M","POP","TOTAL","OC5","I","Y30-49","2011","48337","","" +"EL","M","POP","TOTAL","OC5","I","Y50-64","2011","14576","","" +"EL","M","POP","TOTAL","OC5","I","Y65-84","2011","556","","" +"EL","M","POP","TOTAL","OC5","I","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","J","Y15-29","2011","1497","","" +"EL","M","POP","TOTAL","OC5","J","Y30-49","2011","3075","","" +"EL","M","POP","TOTAL","OC5","J","Y50-64","2011","560","","" +"EL","M","POP","TOTAL","OC5","J","Y65-84","2011","14","","" +"EL","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","K","Y15-29","2011","233","","" +"EL","M","POP","TOTAL","OC5","K","Y30-49","2011","841","","" +"EL","M","POP","TOTAL","OC5","K","Y50-64","2011","324","","" +"EL","M","POP","TOTAL","OC5","K","Y65-84","2011","5","","" +"EL","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","L","Y15-29","2011","24","","" +"EL","M","POP","TOTAL","OC5","L","Y30-49","2011","120","","" +"EL","M","POP","TOTAL","OC5","L","Y50-64","2011","65","","" +"EL","M","POP","TOTAL","OC5","L","Y65-84","2011","5","","" +"EL","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","M","Y15-29","2011","125","","" +"EL","M","POP","TOTAL","OC5","M","Y30-49","2011","248","","" +"EL","M","POP","TOTAL","OC5","M","Y50-64","2011","112","","" +"EL","M","POP","TOTAL","OC5","M","Y65-84","2011","5","","" +"EL","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","N","Y15-29","2011","4401","","" +"EL","M","POP","TOTAL","OC5","N","Y30-49","2011","10828","","" +"EL","M","POP","TOTAL","OC5","N","Y50-64","2011","3526","","" +"EL","M","POP","TOTAL","OC5","N","Y65-84","2011","136","","" +"EL","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","O","Y15-29","2011","36839","","" +"EL","M","POP","TOTAL","OC5","O","Y30-49","2011","88336","","" +"EL","M","POP","TOTAL","OC5","O","Y50-64","2011","9006","","" +"EL","M","POP","TOTAL","OC5","O","Y65-84","2011","346","","" +"EL","M","POP","TOTAL","OC5","O","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","P","Y15-29","2011","566","","" +"EL","M","POP","TOTAL","OC5","P","Y30-49","2011","2490","","" +"EL","M","POP","TOTAL","OC5","P","Y50-64","2011","1422","","" +"EL","M","POP","TOTAL","OC5","P","Y65-84","2011","137","","" +"EL","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","Q","Y15-29","2011","1154","","" +"EL","M","POP","TOTAL","OC5","Q","Y30-49","2011","5601","","" +"EL","M","POP","TOTAL","OC5","Q","Y50-64","2011","3148","","" +"EL","M","POP","TOTAL","OC5","Q","Y65-84","2011","87","","" +"EL","M","POP","TOTAL","OC5","Q","Y_GE85","2011","2","","" +"EL","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","R","Y15-29","2011","1133","","" +"EL","M","POP","TOTAL","OC5","R","Y30-49","2011","2260","","" +"EL","M","POP","TOTAL","OC5","R","Y50-64","2011","686","","" +"EL","M","POP","TOTAL","OC5","R","Y65-84","2011","33","","" +"EL","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","S","Y15-29","2011","2612","","" +"EL","M","POP","TOTAL","OC5","S","Y30-49","2011","6341","","" +"EL","M","POP","TOTAL","OC5","S","Y50-64","2011","1897","","" +"EL","M","POP","TOTAL","OC5","S","Y65-84","2011","187","","" +"EL","M","POP","TOTAL","OC5","S","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","T","Y15-29","2011","46","","" +"EL","M","POP","TOTAL","OC5","T","Y30-49","2011","247","","" +"EL","M","POP","TOTAL","OC5","T","Y50-64","2011","215","","" +"EL","M","POP","TOTAL","OC5","T","Y65-84","2011","26","","" +"EL","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","U","Y15-29","2011","7","","" +"EL","M","POP","TOTAL","OC5","U","Y30-49","2011","9","","" +"EL","M","POP","TOTAL","OC5","U","Y50-64","2011","3","","" +"EL","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","A","Y15-29","2011","23686","","" +"EL","M","POP","TOTAL","OC6","A","Y30-49","2011","115499","","" +"EL","M","POP","TOTAL","OC6","A","Y50-64","2011","82777","","" +"EL","M","POP","TOTAL","OC6","A","Y65-84","2011","5453","","" +"EL","M","POP","TOTAL","OC6","A","Y_GE85","2011","11","","" +"EL","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","C","Y15-29","2011","108","","" +"EL","M","POP","TOTAL","OC6","C","Y30-49","2011","360","","" +"EL","M","POP","TOTAL","OC6","C","Y50-64","2011","174","","" +"EL","M","POP","TOTAL","OC6","C","Y65-84","2011","13","","" +"EL","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC6","D","Y30-49","2011","4","","" +"EL","M","POP","TOTAL","OC6","D","Y50-64","2011","4","","" +"EL","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","F","Y15-29","2011","6","","" +"EL","M","POP","TOTAL","OC6","F","Y30-49","2011","20","","" +"EL","M","POP","TOTAL","OC6","F","Y50-64","2011","14","","" +"EL","M","POP","TOTAL","OC6","F","Y65-84","2011","2","","" +"EL","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","G","Y15-29","2011","159","","" +"EL","M","POP","TOTAL","OC6","G","Y30-49","2011","660","","" +"EL","M","POP","TOTAL","OC6","G","Y50-64","2011","287","","" +"EL","M","POP","TOTAL","OC6","G","Y65-84","2011","18","","" +"EL","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","H","Y15-29","2011","2","","" +"EL","M","POP","TOTAL","OC6","H","Y30-49","2011","2","","" +"EL","M","POP","TOTAL","OC6","H","Y50-64","2011","1","","" +"EL","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","I","Y15-29","2011","159","","" +"EL","M","POP","TOTAL","OC6","I","Y30-49","2011","662","","" +"EL","M","POP","TOTAL","OC6","I","Y50-64","2011","436","","" +"EL","M","POP","TOTAL","OC6","I","Y65-84","2011","21","","" +"EL","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC6","J","Y30-49","2011","1","","" +"EL","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","K","Y15-29","2011","1","","" +"EL","M","POP","TOTAL","OC6","K","Y30-49","2011","1","","" +"EL","M","POP","TOTAL","OC6","K","Y50-64","2011","1","","" +"EL","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","L","Y15-29","2011","7","","" +"EL","M","POP","TOTAL","OC6","L","Y30-49","2011","42","","" +"EL","M","POP","TOTAL","OC6","L","Y50-64","2011","26","","" +"EL","M","POP","TOTAL","OC6","L","Y65-84","2011","2","","" +"EL","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","M","Y15-29","2011","1","","" +"EL","M","POP","TOTAL","OC6","M","Y30-49","2011","18","","" +"EL","M","POP","TOTAL","OC6","M","Y50-64","2011","7","","" +"EL","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","N","Y15-29","2011","735","","" +"EL","M","POP","TOTAL","OC6","N","Y30-49","2011","2603","","" +"EL","M","POP","TOTAL","OC6","N","Y50-64","2011","1396","","" +"EL","M","POP","TOTAL","OC6","N","Y65-84","2011","78","","" +"EL","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","O","Y15-29","2011","123","","" +"EL","M","POP","TOTAL","OC6","O","Y30-49","2011","844","","" +"EL","M","POP","TOTAL","OC6","O","Y50-64","2011","659","","" +"EL","M","POP","TOTAL","OC6","O","Y65-84","2011","23","","" +"EL","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","P","Y15-29","2011","5","","" +"EL","M","POP","TOTAL","OC6","P","Y30-49","2011","27","","" +"EL","M","POP","TOTAL","OC6","P","Y50-64","2011","25","","" +"EL","M","POP","TOTAL","OC6","P","Y65-84","2011","2","","" +"EL","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","Q","Y15-29","2011","8","","" +"EL","M","POP","TOTAL","OC6","Q","Y30-49","2011","48","","" +"EL","M","POP","TOTAL","OC6","Q","Y50-64","2011","49","","" +"EL","M","POP","TOTAL","OC6","Q","Y65-84","2011","3","","" +"EL","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","R","Y15-29","2011","4","","" +"EL","M","POP","TOTAL","OC6","R","Y30-49","2011","23","","" +"EL","M","POP","TOTAL","OC6","R","Y50-64","2011","15","","" +"EL","M","POP","TOTAL","OC6","R","Y65-84","2011","1","","" +"EL","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","S","Y15-29","2011","17","","" +"EL","M","POP","TOTAL","OC6","S","Y30-49","2011","83","","" +"EL","M","POP","TOTAL","OC6","S","Y50-64","2011","42","","" +"EL","M","POP","TOTAL","OC6","S","Y65-84","2011","2","","" +"EL","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","T","Y15-29","2011","122","","" +"EL","M","POP","TOTAL","OC6","T","Y30-49","2011","385","","" +"EL","M","POP","TOTAL","OC6","T","Y50-64","2011","179","","" +"EL","M","POP","TOTAL","OC6","T","Y65-84","2011","14","","" +"EL","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","A","Y15-29","2011","179","","" +"EL","M","POP","TOTAL","OC7","A","Y30-49","2011","503","","" +"EL","M","POP","TOTAL","OC7","A","Y50-64","2011","162","","" +"EL","M","POP","TOTAL","OC7","A","Y65-84","2011","6","","" +"EL","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","B","Y15-29","2011","275","","" +"EL","M","POP","TOTAL","OC7","B","Y30-49","2011","1058","","" +"EL","M","POP","TOTAL","OC7","B","Y50-64","2011","454","","" +"EL","M","POP","TOTAL","OC7","B","Y65-84","2011","5","","" +"EL","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","C","Y15-29","2011","21140","","" +"EL","M","POP","TOTAL","OC7","C","Y30-49","2011","75420","","" +"EL","M","POP","TOTAL","OC7","C","Y50-64","2011","35930","","" +"EL","M","POP","TOTAL","OC7","C","Y65-84","2011","1079","","" +"EL","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","D","Y15-29","2011","1682","","" +"EL","M","POP","TOTAL","OC7","D","Y30-49","2011","6715","","" +"EL","M","POP","TOTAL","OC7","D","Y50-64","2011","2758","","" +"EL","M","POP","TOTAL","OC7","D","Y65-84","2011","28","","" +"EL","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","E","Y15-29","2011","343","","" +"EL","M","POP","TOTAL","OC7","E","Y30-49","2011","1845","","" +"EL","M","POP","TOTAL","OC7","E","Y50-64","2011","1032","","" +"EL","M","POP","TOTAL","OC7","E","Y65-84","2011","17","","" +"EL","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","F","Y15-29","2011","43977","","" +"EL","M","POP","TOTAL","OC7","F","Y30-49","2011","143515","","" +"EL","M","POP","TOTAL","OC7","F","Y50-64","2011","61758","","" +"EL","M","POP","TOTAL","OC7","F","Y65-84","2011","1186","","" +"EL","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","G","Y15-29","2011","16259","","" +"EL","M","POP","TOTAL","OC7","G","Y30-49","2011","43837","","" +"EL","M","POP","TOTAL","OC7","G","Y50-64","2011","17150","","" +"EL","M","POP","TOTAL","OC7","G","Y65-84","2011","533","","" +"EL","M","POP","TOTAL","OC7","G","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","H","Y15-29","2011","711","","" +"EL","M","POP","TOTAL","OC7","H","Y30-49","2011","3370","","" +"EL","M","POP","TOTAL","OC7","H","Y50-64","2011","1740","","" +"EL","M","POP","TOTAL","OC7","H","Y65-84","2011","32","","" +"EL","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","I","Y15-29","2011","1033","","" +"EL","M","POP","TOTAL","OC7","I","Y30-49","2011","2826","","" +"EL","M","POP","TOTAL","OC7","I","Y50-64","2011","1186","","" +"EL","M","POP","TOTAL","OC7","I","Y65-84","2011","43","","" +"EL","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","J","Y15-29","2011","1241","","" +"EL","M","POP","TOTAL","OC7","J","Y30-49","2011","5813","","" +"EL","M","POP","TOTAL","OC7","J","Y50-64","2011","2235","","" +"EL","M","POP","TOTAL","OC7","J","Y65-84","2011","55","","" +"EL","M","POP","TOTAL","OC7","J","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","K","Y15-29","2011","39","","" +"EL","M","POP","TOTAL","OC7","K","Y30-49","2011","198","","" +"EL","M","POP","TOTAL","OC7","K","Y50-64","2011","65","","" +"EL","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","L","Y15-29","2011","65","","" +"EL","M","POP","TOTAL","OC7","L","Y30-49","2011","61","","" +"EL","M","POP","TOTAL","OC7","L","Y50-64","2011","26","","" +"EL","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","M","Y15-29","2011","882","","" +"EL","M","POP","TOTAL","OC7","M","Y30-49","2011","2740","","" +"EL","M","POP","TOTAL","OC7","M","Y50-64","2011","1114","","" +"EL","M","POP","TOTAL","OC7","M","Y65-84","2011","43","","" +"EL","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","N","Y15-29","2011","264","","" +"EL","M","POP","TOTAL","OC7","N","Y30-49","2011","893","","" +"EL","M","POP","TOTAL","OC7","N","Y50-64","2011","263","","" +"EL","M","POP","TOTAL","OC7","N","Y65-84","2011","6","","" +"EL","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","O","Y15-29","2011","1659","","" +"EL","M","POP","TOTAL","OC7","O","Y30-49","2011","6513","","" +"EL","M","POP","TOTAL","OC7","O","Y50-64","2011","3905","","" +"EL","M","POP","TOTAL","OC7","O","Y65-84","2011","106","","" +"EL","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","P","Y15-29","2011","62","","" +"EL","M","POP","TOTAL","OC7","P","Y30-49","2011","345","","" +"EL","M","POP","TOTAL","OC7","P","Y50-64","2011","213","","" +"EL","M","POP","TOTAL","OC7","P","Y65-84","2011","4","","" +"EL","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","Q","Y15-29","2011","227","","" +"EL","M","POP","TOTAL","OC7","Q","Y30-49","2011","1374","","" +"EL","M","POP","TOTAL","OC7","Q","Y50-64","2011","977","","" +"EL","M","POP","TOTAL","OC7","Q","Y65-84","2011","17","","" +"EL","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","R","Y15-29","2011","155","","" +"EL","M","POP","TOTAL","OC7","R","Y30-49","2011","743","","" +"EL","M","POP","TOTAL","OC7","R","Y50-64","2011","415","","" +"EL","M","POP","TOTAL","OC7","R","Y65-84","2011","18","","" +"EL","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","S","Y15-29","2011","598","","" +"EL","M","POP","TOTAL","OC7","S","Y30-49","2011","2471","","" +"EL","M","POP","TOTAL","OC7","S","Y50-64","2011","1174","","" +"EL","M","POP","TOTAL","OC7","S","Y65-84","2011","53","","" +"EL","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","U","Y15-29","2011","3","","" +"EL","M","POP","TOTAL","OC7","U","Y30-49","2011","10","","" +"EL","M","POP","TOTAL","OC7","U","Y50-64","2011","9","","" +"EL","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","A","Y15-29","2011","188","","" +"EL","M","POP","TOTAL","OC8","A","Y30-49","2011","926","","" +"EL","M","POP","TOTAL","OC8","A","Y50-64","2011","418","","" +"EL","M","POP","TOTAL","OC8","A","Y65-84","2011","12","","" +"EL","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","B","Y15-29","2011","582","","" +"EL","M","POP","TOTAL","OC8","B","Y30-49","2011","2654","","" +"EL","M","POP","TOTAL","OC8","B","Y50-64","2011","1076","","" +"EL","M","POP","TOTAL","OC8","B","Y65-84","2011","29","","" +"EL","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","C","Y15-29","2011","8000","","" +"EL","M","POP","TOTAL","OC8","C","Y30-49","2011","33826","","" +"EL","M","POP","TOTAL","OC8","C","Y50-64","2011","12716","","" +"EL","M","POP","TOTAL","OC8","C","Y65-84","2011","320","","" +"EL","M","POP","TOTAL","OC8","C","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","D","Y15-29","2011","303","","" +"EL","M","POP","TOTAL","OC8","D","Y30-49","2011","1755","","" +"EL","M","POP","TOTAL","OC8","D","Y50-64","2011","762","","" +"EL","M","POP","TOTAL","OC8","D","Y65-84","2011","5","","" +"EL","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","E","Y15-29","2011","370","","" +"EL","M","POP","TOTAL","OC8","E","Y30-49","2011","2527","","" +"EL","M","POP","TOTAL","OC8","E","Y50-64","2011","1059","","" +"EL","M","POP","TOTAL","OC8","E","Y65-84","2011","18","","" +"EL","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","F","Y15-29","2011","2410","","" +"EL","M","POP","TOTAL","OC8","F","Y30-49","2011","11742","","" +"EL","M","POP","TOTAL","OC8","F","Y50-64","2011","5281","","" +"EL","M","POP","TOTAL","OC8","F","Y65-84","2011","146","","" +"EL","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","G","Y15-29","2011","3684","","" +"EL","M","POP","TOTAL","OC8","G","Y30-49","2011","13930","","" +"EL","M","POP","TOTAL","OC8","G","Y50-64","2011","3659","","" +"EL","M","POP","TOTAL","OC8","G","Y65-84","2011","83","","" +"EL","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","H","Y15-29","2011","11051","","" +"EL","M","POP","TOTAL","OC8","H","Y30-49","2011","68288","","" +"EL","M","POP","TOTAL","OC8","H","Y50-64","2011","31565","","" +"EL","M","POP","TOTAL","OC8","H","Y65-84","2011","1155","","" +"EL","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","I","Y15-29","2011","319","","" +"EL","M","POP","TOTAL","OC8","I","Y30-49","2011","949","","" +"EL","M","POP","TOTAL","OC8","I","Y50-64","2011","307","","" +"EL","M","POP","TOTAL","OC8","I","Y65-84","2011","12","","" +"EL","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","J","Y15-29","2011","92","","" +"EL","M","POP","TOTAL","OC8","J","Y30-49","2011","545","","" +"EL","M","POP","TOTAL","OC8","J","Y50-64","2011","209","","" +"EL","M","POP","TOTAL","OC8","J","Y65-84","2011","5","","" +"EL","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","K","Y15-29","2011","39","","" +"EL","M","POP","TOTAL","OC8","K","Y30-49","2011","215","","" +"EL","M","POP","TOTAL","OC8","K","Y50-64","2011","71","","" +"EL","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","L","Y15-29","2011","10","","" +"EL","M","POP","TOTAL","OC8","L","Y30-49","2011","35","","" +"EL","M","POP","TOTAL","OC8","L","Y50-64","2011","15","","" +"EL","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","M","Y15-29","2011","225","","" +"EL","M","POP","TOTAL","OC8","M","Y30-49","2011","888","","" +"EL","M","POP","TOTAL","OC8","M","Y50-64","2011","339","","" +"EL","M","POP","TOTAL","OC8","M","Y65-84","2011","8","","" +"EL","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","N","Y15-29","2011","830","","" +"EL","M","POP","TOTAL","OC8","N","Y30-49","2011","3797","","" +"EL","M","POP","TOTAL","OC8","N","Y50-64","2011","1780","","" +"EL","M","POP","TOTAL","OC8","N","Y65-84","2011","51","","" +"EL","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","O","Y15-29","2011","718","","" +"EL","M","POP","TOTAL","OC8","O","Y30-49","2011","6251","","" +"EL","M","POP","TOTAL","OC8","O","Y50-64","2011","3459","","" +"EL","M","POP","TOTAL","OC8","O","Y65-84","2011","66","","" +"EL","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","P","Y15-29","2011","349","","" +"EL","M","POP","TOTAL","OC8","P","Y30-49","2011","1807","","" +"EL","M","POP","TOTAL","OC8","P","Y50-64","2011","793","","" +"EL","M","POP","TOTAL","OC8","P","Y65-84","2011","22","","" +"EL","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","Q","Y15-29","2011","275","","" +"EL","M","POP","TOTAL","OC8","Q","Y30-49","2011","2133","","" +"EL","M","POP","TOTAL","OC8","Q","Y50-64","2011","1207","","" +"EL","M","POP","TOTAL","OC8","Q","Y65-84","2011","30","","" +"EL","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","R","Y15-29","2011","65","","" +"EL","M","POP","TOTAL","OC8","R","Y30-49","2011","289","","" +"EL","M","POP","TOTAL","OC8","R","Y50-64","2011","121","","" +"EL","M","POP","TOTAL","OC8","R","Y65-84","2011","7","","" +"EL","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","S","Y15-29","2011","59","","" +"EL","M","POP","TOTAL","OC8","S","Y30-49","2011","363","","" +"EL","M","POP","TOTAL","OC8","S","Y50-64","2011","124","","" +"EL","M","POP","TOTAL","OC8","S","Y65-84","2011","3","","" +"EL","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC8","T","Y30-49","2011","1","","" +"EL","M","POP","TOTAL","OC8","T","Y50-64","2011","3","","" +"EL","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC8","U","Y30-49","2011","23","","" +"EL","M","POP","TOTAL","OC8","U","Y50-64","2011","15","","" +"EL","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","A","Y15-29","2011","14410","","" +"EL","M","POP","TOTAL","OC9","A","Y30-49","2011","28549","","" +"EL","M","POP","TOTAL","OC9","A","Y50-64","2011","9470","","" +"EL","M","POP","TOTAL","OC9","A","Y65-84","2011","469","","" +"EL","M","POP","TOTAL","OC9","A","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","B","Y15-29","2011","204","","" +"EL","M","POP","TOTAL","OC9","B","Y30-49","2011","698","","" +"EL","M","POP","TOTAL","OC9","B","Y50-64","2011","288","","" +"EL","M","POP","TOTAL","OC9","B","Y65-84","2011","5","","" +"EL","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","C","Y15-29","2011","7241","","" +"EL","M","POP","TOTAL","OC9","C","Y30-49","2011","19562","","" +"EL","M","POP","TOTAL","OC9","C","Y50-64","2011","6443","","" +"EL","M","POP","TOTAL","OC9","C","Y65-84","2011","136","","" +"EL","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","D","Y15-29","2011","641","","" +"EL","M","POP","TOTAL","OC9","D","Y30-49","2011","1748","","" +"EL","M","POP","TOTAL","OC9","D","Y50-64","2011","772","","" +"EL","M","POP","TOTAL","OC9","D","Y65-84","2011","6","","" +"EL","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","E","Y15-29","2011","1458","","" +"EL","M","POP","TOTAL","OC9","E","Y30-49","2011","5248","","" +"EL","M","POP","TOTAL","OC9","E","Y50-64","2011","2491","","" +"EL","M","POP","TOTAL","OC9","E","Y65-84","2011","89","","" +"EL","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","F","Y15-29","2011","6539","","" +"EL","M","POP","TOTAL","OC9","F","Y30-49","2011","14885","","" +"EL","M","POP","TOTAL","OC9","F","Y50-64","2011","5471","","" +"EL","M","POP","TOTAL","OC9","F","Y65-84","2011","123","","" +"EL","M","POP","TOTAL","OC9","F","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","G","Y15-29","2011","5455","","" +"EL","M","POP","TOTAL","OC9","G","Y30-49","2011","9313","","" +"EL","M","POP","TOTAL","OC9","G","Y50-64","2011","2370","","" +"EL","M","POP","TOTAL","OC9","G","Y65-84","2011","95","","" +"EL","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","H","Y15-29","2011","2486","","" +"EL","M","POP","TOTAL","OC9","H","Y30-49","2011","6699","","" +"EL","M","POP","TOTAL","OC9","H","Y50-64","2011","2053","","" +"EL","M","POP","TOTAL","OC9","H","Y65-84","2011","59","","" +"EL","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","I","Y15-29","2011","6981","","" +"EL","M","POP","TOTAL","OC9","I","Y30-49","2011","12171","","" +"EL","M","POP","TOTAL","OC9","I","Y50-64","2011","3325","","" +"EL","M","POP","TOTAL","OC9","I","Y65-84","2011","138","","" +"EL","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","J","Y15-29","2011","197","","" +"EL","M","POP","TOTAL","OC9","J","Y30-49","2011","562","","" +"EL","M","POP","TOTAL","OC9","J","Y50-64","2011","220","","" +"EL","M","POP","TOTAL","OC9","J","Y65-84","2011","6","","" +"EL","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","K","Y15-29","2011","52","","" +"EL","M","POP","TOTAL","OC9","K","Y30-49","2011","262","","" +"EL","M","POP","TOTAL","OC9","K","Y50-64","2011","169","","" +"EL","M","POP","TOTAL","OC9","K","Y65-84","2011","1","","" +"EL","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","L","Y15-29","2011","27","","" +"EL","M","POP","TOTAL","OC9","L","Y30-49","2011","32","","" +"EL","M","POP","TOTAL","OC9","L","Y50-64","2011","14","","" +"EL","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","M","Y15-29","2011","436","","" +"EL","M","POP","TOTAL","OC9","M","Y30-49","2011","703","","" +"EL","M","POP","TOTAL","OC9","M","Y50-64","2011","195","","" +"EL","M","POP","TOTAL","OC9","M","Y65-84","2011","9","","" +"EL","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","N","Y15-29","2011","1910","","" +"EL","M","POP","TOTAL","OC9","N","Y30-49","2011","7546","","" +"EL","M","POP","TOTAL","OC9","N","Y50-64","2011","3465","","" +"EL","M","POP","TOTAL","OC9","N","Y65-84","2011","116","","" +"EL","M","POP","TOTAL","OC9","N","Y_GE85","2011","1","","" +"EL","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","O","Y15-29","2011","1721","","" +"EL","M","POP","TOTAL","OC9","O","Y30-49","2011","11240","","" +"EL","M","POP","TOTAL","OC9","O","Y50-64","2011","6838","","" +"EL","M","POP","TOTAL","OC9","O","Y65-84","2011","161","","" +"EL","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","P","Y15-29","2011","66","","" +"EL","M","POP","TOTAL","OC9","P","Y30-49","2011","400","","" +"EL","M","POP","TOTAL","OC9","P","Y50-64","2011","282","","" +"EL","M","POP","TOTAL","OC9","P","Y65-84","2011","16","","" +"EL","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","Q","Y15-29","2011","176","","" +"EL","M","POP","TOTAL","OC9","Q","Y30-49","2011","999","","" +"EL","M","POP","TOTAL","OC9","Q","Y50-64","2011","709","","" +"EL","M","POP","TOTAL","OC9","Q","Y65-84","2011","23","","" +"EL","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","R","Y15-29","2011","209","","" +"EL","M","POP","TOTAL","OC9","R","Y30-49","2011","733","","" +"EL","M","POP","TOTAL","OC9","R","Y50-64","2011","386","","" +"EL","M","POP","TOTAL","OC9","R","Y65-84","2011","15","","" +"EL","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","S","Y15-29","2011","302","","" +"EL","M","POP","TOTAL","OC9","S","Y30-49","2011","872","","" +"EL","M","POP","TOTAL","OC9","S","Y50-64","2011","349","","" +"EL","M","POP","TOTAL","OC9","S","Y65-84","2011","14","","" +"EL","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","T","Y15-29","2011","349","","" +"EL","M","POP","TOTAL","OC9","T","Y30-49","2011","2107","","" +"EL","M","POP","TOTAL","OC9","T","Y50-64","2011","854","","" +"EL","M","POP","TOTAL","OC9","T","Y65-84","2011","49","","" +"EL","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","U","Y15-29","2011","1","","" +"EL","M","POP","TOTAL","OC9","U","Y30-49","2011","4","","" +"EL","M","POP","TOTAL","OC9","U","Y50-64","2011","3","","" +"EL","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"EL","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"EL","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"EL","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"EL","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"EL","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"EL","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","NAP","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","NAP","NAP","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","NAP","NAP","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","NAP","NAP","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","c","" +"ES","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC0","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC0","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC0","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC0","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC0","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","U","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC0","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC1","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","D","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","E","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","F","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","H","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","I","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","J","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","K","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","K","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","L","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","M","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","Q","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","R","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","S","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","U","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC1","U","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC1","U","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","B","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","B","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","D","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","D","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","E","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","F","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","H","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","I","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","J","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","K","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","K","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","K","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","L","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","Q","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","R","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","S","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","U","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC2","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC2","U","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC2","U","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","B","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","B","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","D","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","D","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","F","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","H","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","I","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","J","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","K","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","K","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","K","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","L","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","L","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","M","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","Q","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","R","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","S","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","U","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC3","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC3","U","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","B","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","B","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","D","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","D","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","E","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","E","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","F","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","H","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","I","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","J","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","K","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","K","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","K","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","L","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","M","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","Q","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","R","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","S","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","T","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","U","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC4","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC4","U","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC4","U","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","B","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC5","B","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","D","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","F","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","H","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","I","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","J","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","K","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","L","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","M","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","Q","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","R","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","S","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","T","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","U","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC5","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC5","U","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC5","U","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC5","U","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC6","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC6","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC6","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC6","T","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","B","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","B","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","B","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","D","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","D","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","D","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","E","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","E","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","F","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","H","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","I","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","K","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","K","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","K","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","L","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","L","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","M","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","Q","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","R","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","S","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC7","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC7","T","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC7","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC7","U","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","B","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","B","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","B","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","D","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","D","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","D","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","D","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","E","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","E","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","F","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","H","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","I","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","K","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","K","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","L","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","L","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","M","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","Q","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","R","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","S","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC8","T","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","U","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC8","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC8","U","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","A","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","A","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","B","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","B","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","B","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","B","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","B","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","C","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","C","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","C","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","D","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","D","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","D","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","E","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","E","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","E","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","E","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","F","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","F","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","F","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","F","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","G","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","G","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","G","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","G","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","H","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","H","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","I","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","I","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","I","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","J","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","J","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","J","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","K","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","K","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","K","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","L","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","M","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","M","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","M","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","M","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","M","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","N","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","N","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","N","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","O","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","O","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","O","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","O","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","P","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","P","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","Q","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","Q","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","Q","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","Q","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","R","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","R","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","R","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","R","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","S","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","S","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","S","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","T","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","T","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","T","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","T","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","T","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","U","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","OC9","U","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","OC9","U","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","OC9","U","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","OC9","U","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"ES","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"ES","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"ES","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"ES","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"ES","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"ES","F","POP","TOTAL","UNK","UNK","Y15-29","2011",":","c","" +"ES","F","POP","TOTAL","UNK","UNK","Y30-49","2011",":","c","" +"ES","F","POP","TOTAL","UNK","UNK","Y50-64","2011",":","c","" +"ES","F","POP","TOTAL","UNK","UNK","Y65-84","2011",":","c","" +"ES","F","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","c","" +"ES","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","NAP","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","NAP","NAP","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","NAP","NAP","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","NAP","NAP","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","c","" +"ES","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC0","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","I","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC0","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC0","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","A","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","B","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","E","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","H","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","I","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","J","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","K","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","L","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","M","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","N","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","P","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","R","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","S","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC1","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC1","U","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","B","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","B","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","D","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","D","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","E","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","J","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","K","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","K","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","L","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","P","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","Q","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","R","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","S","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC2","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC2","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC2","U","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","A","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","B","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","B","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","D","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","E","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","H","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","I","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","J","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","K","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","K","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","L","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","L","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","L","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","M","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","N","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","P","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","Q","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","R","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","S","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC3","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC3","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC3","U","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","A","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","B","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","B","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","D","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","D","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","E","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","H","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","I","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","J","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","K","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","K","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","L","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","M","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","N","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","P","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","Q","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","R","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","S","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC4","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC4","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC4","U","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","A","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","D","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","H","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","I","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","L","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","M","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","N","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","P","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","Q","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","R","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","S","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","T","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC5","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC5","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC5","U","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","A","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","I","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","N","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","P","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC6","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC6","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC6","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","A","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","B","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","B","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","D","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","D","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","E","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","H","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","I","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","J","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","K","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","L","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","M","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","N","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","P","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","Q","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","S","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC7","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC7","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","A","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","B","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","B","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","D","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","D","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","E","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","E","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","H","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","J","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","K","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","K","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","L","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","L","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","L","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","M","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","N","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","Q","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","R","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","S","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC8","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC8","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","A","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","A","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","B","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","B","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","B","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","B","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","B","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","C","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","C","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","C","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","D","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","E","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","E","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","E","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","E","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","F","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","F","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","F","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","F","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","G","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","G","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","G","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","G","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","H","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","H","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","I","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","I","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","I","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","J","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","J","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","K","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","K","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","L","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","L","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","M","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","M","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","M","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","M","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","M","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","N","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","N","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","N","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","O","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","O","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","O","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","O","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","P","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","P","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","Q","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","Q","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","Q","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","Q","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","R","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","R","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","R","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","S","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","S","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","S","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","T","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","T","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","T","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","T","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","OC9","T","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","U","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","OC9","U","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","OC9","U","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"ES","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"ES","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"ES","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"ES","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"ES","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"ES","M","POP","TOTAL","UNK","UNK","Y15-29","2011",":","c","" +"ES","M","POP","TOTAL","UNK","UNK","Y30-49","2011",":","c","" +"ES","M","POP","TOTAL","UNK","UNK","Y50-64","2011",":","c","" +"ES","M","POP","TOTAL","UNK","UNK","Y65-84","2011",":","c","" +"ES","M","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","c","" +"ES","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"FI","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"FI","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"FI","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"FI","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"FI","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"FI","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"FI","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"FI","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"FI","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"FI","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"FI","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"FI","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","NAP","Y15-29","2011","2732088","","" +"FR","F","POP","TOTAL","NAP","NAP","Y30-49","2011","1586306","","" +"FR","F","POP","TOTAL","NAP","NAP","Y50-64","2011","3005177","","" +"FR","F","POP","TOTAL","NAP","NAP","Y65-84","2011","5142625","","" +"FR","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","1130338","","" +"FR","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","5876234","","" +"FR","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","A","Y15-29","2011","16","u","" +"FR","F","POP","TOTAL","OC0","A","Y30-49","2011","21","u","" +"FR","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","B","Y15-29","2011","4","u","" +"FR","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","C","Y15-29","2011","73","","" +"FR","F","POP","TOTAL","OC0","C","Y30-49","2011","52","","" +"FR","F","POP","TOTAL","OC0","C","Y50-64","2011","7","u","" +"FR","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","D","Y15-29","2011","3","u","" +"FR","F","POP","TOTAL","OC0","D","Y30-49","2011","1","u","" +"FR","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","E","Y15-29","2011","11","u","" +"FR","F","POP","TOTAL","OC0","E","Y30-49","2011","11","u","" +"FR","F","POP","TOTAL","OC0","E","Y50-64","2011","4","u","" +"FR","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","F","Y15-29","2011","10","u","" +"FR","F","POP","TOTAL","OC0","F","Y30-49","2011","22","u","" +"FR","F","POP","TOTAL","OC0","F","Y50-64","2011","4","u","" +"FR","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","G","Y15-29","2011","76","","" +"FR","F","POP","TOTAL","OC0","G","Y30-49","2011","47","u","" +"FR","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","H","Y15-29","2011","10","u","" +"FR","F","POP","TOTAL","OC0","H","Y30-49","2011","28","u","" +"FR","F","POP","TOTAL","OC0","H","Y50-64","2011","7","u","" +"FR","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","I","Y15-29","2011","305","","" +"FR","F","POP","TOTAL","OC0","I","Y30-49","2011","202","","" +"FR","F","POP","TOTAL","OC0","I","Y50-64","2011","16","u","" +"FR","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","J","Y15-29","2011","11","u","" +"FR","F","POP","TOTAL","OC0","J","Y30-49","2011","43","u","" +"FR","F","POP","TOTAL","OC0","J","Y50-64","2011","7","u","" +"FR","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","K","Y15-29","2011","23","u","" +"FR","F","POP","TOTAL","OC0","K","Y30-49","2011","15","u","" +"FR","F","POP","TOTAL","OC0","K","Y50-64","2011","4","u","" +"FR","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","L","Y15-29","2011","10","u","" +"FR","F","POP","TOTAL","OC0","L","Y30-49","2011","5","u","" +"FR","F","POP","TOTAL","OC0","L","Y50-64","2011","3","u","" +"FR","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","M","Y15-29","2011","46","u","" +"FR","F","POP","TOTAL","OC0","M","Y30-49","2011","47","u","" +"FR","F","POP","TOTAL","OC0","M","Y50-64","2011","8","u","" +"FR","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","N","Y15-29","2011","81","","" +"FR","F","POP","TOTAL","OC0","N","Y30-49","2011","56","","" +"FR","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","O","Y15-29","2011","16041","","" +"FR","F","POP","TOTAL","OC0","O","Y30-49","2011","13194","","" +"FR","F","POP","TOTAL","OC0","O","Y50-64","2011","1036","","" +"FR","F","POP","TOTAL","OC0","O","Y65-84","2011","10","u","" +"FR","F","POP","TOTAL","OC0","O","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","P","Y15-29","2011","354","","" +"FR","F","POP","TOTAL","OC0","P","Y30-49","2011","151","","" +"FR","F","POP","TOTAL","OC0","P","Y50-64","2011","13","u","" +"FR","F","POP","TOTAL","OC0","P","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","Q","Y15-29","2011","514","","" +"FR","F","POP","TOTAL","OC0","Q","Y30-49","2011","496","","" +"FR","F","POP","TOTAL","OC0","Q","Y50-64","2011","66","","" +"FR","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","R","Y15-29","2011","66","","" +"FR","F","POP","TOTAL","OC0","R","Y30-49","2011","68","","" +"FR","F","POP","TOTAL","OC0","R","Y50-64","2011","1","u","" +"FR","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","S","Y15-29","2011","164","","" +"FR","F","POP","TOTAL","OC0","S","Y30-49","2011","134","","" +"FR","F","POP","TOTAL","OC0","S","Y50-64","2011","17","u","" +"FR","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","T","Y15-29","2011","1","u","" +"FR","F","POP","TOTAL","OC0","T","Y30-49","2011","12","u","" +"FR","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC0","U","Y30-49","2011","9","u","" +"FR","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC0","UNK","Y15-29","2011","1092","","" +"FR","F","POP","TOTAL","OC0","UNK","Y30-49","2011","1162","","" +"FR","F","POP","TOTAL","OC0","UNK","Y50-64","2011","478","","" +"FR","F","POP","TOTAL","OC0","UNK","Y65-84","2011","47","u","" +"FR","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","A","Y15-29","2011","245","u","" +"FR","F","POP","TOTAL","OC1","A","Y30-49","2011","1536","u","" +"FR","F","POP","TOTAL","OC1","A","Y50-64","2011","989","u","" +"FR","F","POP","TOTAL","OC1","A","Y65-84","2011","87","u","" +"FR","F","POP","TOTAL","OC1","A","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","B","Y15-29","2011","67","u","" +"FR","F","POP","TOTAL","OC1","B","Y30-49","2011","200","u","" +"FR","F","POP","TOTAL","OC1","B","Y50-64","2011","74","u","" +"FR","F","POP","TOTAL","OC1","B","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","C","Y15-29","2011","8942","u","" +"FR","F","POP","TOTAL","OC1","C","Y30-49","2011","36106","u","" +"FR","F","POP","TOTAL","OC1","C","Y50-64","2011","10552","u","" +"FR","F","POP","TOTAL","OC1","C","Y65-84","2011","156","u","" +"FR","F","POP","TOTAL","OC1","C","Y_GE85","2011","10","u","" +"FR","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","D","Y15-29","2011","771","u","" +"FR","F","POP","TOTAL","OC1","D","Y30-49","2011","3231","u","" +"FR","F","POP","TOTAL","OC1","D","Y50-64","2011","1005","u","" +"FR","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC1","D","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","E","Y15-29","2011","470","u","" +"FR","F","POP","TOTAL","OC1","E","Y30-49","2011","1872","u","" +"FR","F","POP","TOTAL","OC1","E","Y50-64","2011","548","u","" +"FR","F","POP","TOTAL","OC1","E","Y65-84","2011","11","u","" +"FR","F","POP","TOTAL","OC1","E","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","F","Y15-29","2011","1890","u","" +"FR","F","POP","TOTAL","OC1","F","Y30-49","2011","6576","u","" +"FR","F","POP","TOTAL","OC1","F","Y50-64","2011","2895","u","" +"FR","F","POP","TOTAL","OC1","F","Y65-84","2011","70","u","" +"FR","F","POP","TOTAL","OC1","F","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","G","Y15-29","2011","6613","u","" +"FR","F","POP","TOTAL","OC1","G","Y30-49","2011","28777","u","" +"FR","F","POP","TOTAL","OC1","G","Y50-64","2011","9772","u","" +"FR","F","POP","TOTAL","OC1","G","Y65-84","2011","257","u","" +"FR","F","POP","TOTAL","OC1","G","Y_GE85","2011","43","u","" +"FR","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","H","Y15-29","2011","2214","u","" +"FR","F","POP","TOTAL","OC1","H","Y30-49","2011","13191","u","" +"FR","F","POP","TOTAL","OC1","H","Y50-64","2011","5596","u","" +"FR","F","POP","TOTAL","OC1","H","Y65-84","2011","59","u","" +"FR","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","I","Y15-29","2011","4607","u","" +"FR","F","POP","TOTAL","OC1","I","Y30-49","2011","19290","u","" +"FR","F","POP","TOTAL","OC1","I","Y50-64","2011","8007","u","" +"FR","F","POP","TOTAL","OC1","I","Y65-84","2011","427","u","" +"FR","F","POP","TOTAL","OC1","I","Y_GE85","2011","27","u","" +"FR","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","J","Y15-29","2011","5880","u","" +"FR","F","POP","TOTAL","OC1","J","Y30-49","2011","20563","u","" +"FR","F","POP","TOTAL","OC1","J","Y50-64","2011","5483","u","" +"FR","F","POP","TOTAL","OC1","J","Y65-84","2011","66","u","" +"FR","F","POP","TOTAL","OC1","J","Y_GE85","2011","6","u","" +"FR","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","K","Y15-29","2011","8317","u","" +"FR","F","POP","TOTAL","OC1","K","Y30-49","2011","43613","u","" +"FR","F","POP","TOTAL","OC1","K","Y50-64","2011","16088","u","" +"FR","F","POP","TOTAL","OC1","K","Y65-84","2011","146","u","" +"FR","F","POP","TOTAL","OC1","K","Y_GE85","2011","17","u","" +"FR","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","L","Y15-29","2011","804","u","" +"FR","F","POP","TOTAL","OC1","L","Y30-49","2011","4045","u","" +"FR","F","POP","TOTAL","OC1","L","Y50-64","2011","1773","u","" +"FR","F","POP","TOTAL","OC1","L","Y65-84","2011","34","u","" +"FR","F","POP","TOTAL","OC1","L","Y_GE85","2011","13","u","" +"FR","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","M","Y15-29","2011","11630","u","" +"FR","F","POP","TOTAL","OC1","M","Y30-49","2011","35597","u","" +"FR","F","POP","TOTAL","OC1","M","Y50-64","2011","10329","u","" +"FR","F","POP","TOTAL","OC1","M","Y65-84","2011","170","u","" +"FR","F","POP","TOTAL","OC1","M","Y_GE85","2011","23","u","" +"FR","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","N","Y15-29","2011","3229","u","" +"FR","F","POP","TOTAL","OC1","N","Y30-49","2011","14691","u","" +"FR","F","POP","TOTAL","OC1","N","Y50-64","2011","4591","u","" +"FR","F","POP","TOTAL","OC1","N","Y65-84","2011","125","u","" +"FR","F","POP","TOTAL","OC1","N","Y_GE85","2011","1","u","" +"FR","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","O","Y15-29","2011","8064","u","" +"FR","F","POP","TOTAL","OC1","O","Y30-49","2011","43400","u","" +"FR","F","POP","TOTAL","OC1","O","Y50-64","2011","29563","u","" +"FR","F","POP","TOTAL","OC1","O","Y65-84","2011","240","u","" +"FR","F","POP","TOTAL","OC1","O","Y_GE85","2011","19","u","" +"FR","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","P","Y15-29","2011","3208","u","" +"FR","F","POP","TOTAL","OC1","P","Y30-49","2011","19761","u","" +"FR","F","POP","TOTAL","OC1","P","Y50-64","2011","13759","u","" +"FR","F","POP","TOTAL","OC1","P","Y65-84","2011","119","u","" +"FR","F","POP","TOTAL","OC1","P","Y_GE85","2011","49","u","" +"FR","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","Q","Y15-29","2011","5313","u","" +"FR","F","POP","TOTAL","OC1","Q","Y30-49","2011","42025","u","" +"FR","F","POP","TOTAL","OC1","Q","Y50-64","2011","30746","u","" +"FR","F","POP","TOTAL","OC1","Q","Y65-84","2011","694","u","" +"FR","F","POP","TOTAL","OC1","Q","Y_GE85","2011","46","u","" +"FR","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","R","Y15-29","2011","1261","u","" +"FR","F","POP","TOTAL","OC1","R","Y30-49","2011","5521","u","" +"FR","F","POP","TOTAL","OC1","R","Y50-64","2011","2446","u","" +"FR","F","POP","TOTAL","OC1","R","Y65-84","2011","67","u","" +"FR","F","POP","TOTAL","OC1","R","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","S","Y15-29","2011","3074","u","" +"FR","F","POP","TOTAL","OC1","S","Y30-49","2011","14235","u","" +"FR","F","POP","TOTAL","OC1","S","Y50-64","2011","6262","u","" +"FR","F","POP","TOTAL","OC1","S","Y65-84","2011","94","u","" +"FR","F","POP","TOTAL","OC1","S","Y_GE85","2011","7","u","" +"FR","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","T","Y15-29","2011","30","u","" +"FR","F","POP","TOTAL","OC1","T","Y30-49","2011","178","u","" +"FR","F","POP","TOTAL","OC1","T","Y50-64","2011","179","u","" +"FR","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","U","Y15-29","2011","105","u","" +"FR","F","POP","TOTAL","OC1","U","Y30-49","2011","906","u","" +"FR","F","POP","TOTAL","OC1","U","Y50-64","2011","551","u","" +"FR","F","POP","TOTAL","OC1","U","Y65-84","2011","22","u","" +"FR","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC1","UNK","Y15-29","2011","7442","u","" +"FR","F","POP","TOTAL","OC1","UNK","Y30-49","2011","16335","u","" +"FR","F","POP","TOTAL","OC1","UNK","Y50-64","2011","6577","u","" +"FR","F","POP","TOTAL","OC1","UNK","Y65-84","2011","493","u","" +"FR","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","A","Y15-29","2011","441","","" +"FR","F","POP","TOTAL","OC2","A","Y30-49","2011","2058","","" +"FR","F","POP","TOTAL","OC2","A","Y50-64","2011","1024","","" +"FR","F","POP","TOTAL","OC2","A","Y65-84","2011","66","","" +"FR","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","B","Y15-29","2011","75","","" +"FR","F","POP","TOTAL","OC2","B","Y30-49","2011","296","","" +"FR","F","POP","TOTAL","OC2","B","Y50-64","2011","84","","" +"FR","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","C","Y15-29","2011","19081","","" +"FR","F","POP","TOTAL","OC2","C","Y30-49","2011","63320","","" +"FR","F","POP","TOTAL","OC2","C","Y50-64","2011","15979","","" +"FR","F","POP","TOTAL","OC2","C","Y65-84","2011","180","","" +"FR","F","POP","TOTAL","OC2","C","Y_GE85","2011","25","u","" +"FR","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","D","Y15-29","2011","1968","","" +"FR","F","POP","TOTAL","OC2","D","Y30-49","2011","6544","","" +"FR","F","POP","TOTAL","OC2","D","Y50-64","2011","2058","","" +"FR","F","POP","TOTAL","OC2","D","Y65-84","2011","8","u","" +"FR","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","E","Y15-29","2011","743","","" +"FR","F","POP","TOTAL","OC2","E","Y30-49","2011","2206","","" +"FR","F","POP","TOTAL","OC2","E","Y50-64","2011","658","","" +"FR","F","POP","TOTAL","OC2","E","Y65-84","2011","1","u","" +"FR","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","F","Y15-29","2011","3758","","" +"FR","F","POP","TOTAL","OC2","F","Y30-49","2011","8374","","" +"FR","F","POP","TOTAL","OC2","F","Y50-64","2011","2627","","" +"FR","F","POP","TOTAL","OC2","F","Y65-84","2011","58","","" +"FR","F","POP","TOTAL","OC2","F","Y_GE85","2011","15","u","" +"FR","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","G","Y15-29","2011","22803","","" +"FR","F","POP","TOTAL","OC2","G","Y30-49","2011","67880","","" +"FR","F","POP","TOTAL","OC2","G","Y50-64","2011","25486","","" +"FR","F","POP","TOTAL","OC2","G","Y65-84","2011","608","","" +"FR","F","POP","TOTAL","OC2","G","Y_GE85","2011","53","","" +"FR","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","H","Y15-29","2011","2865","","" +"FR","F","POP","TOTAL","OC2","H","Y30-49","2011","13607","","" +"FR","F","POP","TOTAL","OC2","H","Y50-64","2011","5640","","" +"FR","F","POP","TOTAL","OC2","H","Y65-84","2011","45","u","" +"FR","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","I","Y15-29","2011","2869","","" +"FR","F","POP","TOTAL","OC2","I","Y30-49","2011","6657","","" +"FR","F","POP","TOTAL","OC2","I","Y50-64","2011","2366","","" +"FR","F","POP","TOTAL","OC2","I","Y65-84","2011","65","","" +"FR","F","POP","TOTAL","OC2","I","Y_GE85","2011","27","u","" +"FR","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","J","Y15-29","2011","21599","","" +"FR","F","POP","TOTAL","OC2","J","Y30-49","2011","57494","","" +"FR","F","POP","TOTAL","OC2","J","Y50-64","2011","13990","","" +"FR","F","POP","TOTAL","OC2","J","Y65-84","2011","455","","" +"FR","F","POP","TOTAL","OC2","J","Y_GE85","2011","71","","" +"FR","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","K","Y15-29","2011","9601","","" +"FR","F","POP","TOTAL","OC2","K","Y30-49","2011","31697","","" +"FR","F","POP","TOTAL","OC2","K","Y50-64","2011","10351","","" +"FR","F","POP","TOTAL","OC2","K","Y65-84","2011","87","","" +"FR","F","POP","TOTAL","OC2","K","Y_GE85","2011","18","u","" +"FR","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","L","Y15-29","2011","1462","","" +"FR","F","POP","TOTAL","OC2","L","Y30-49","2011","4949","","" +"FR","F","POP","TOTAL","OC2","L","Y50-64","2011","2130","","" +"FR","F","POP","TOTAL","OC2","L","Y65-84","2011","65","","" +"FR","F","POP","TOTAL","OC2","L","Y_GE85","2011","5","u","" +"FR","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","M","Y15-29","2011","48973","","" +"FR","F","POP","TOTAL","OC2","M","Y30-49","2011","120441","","" +"FR","F","POP","TOTAL","OC2","M","Y50-64","2011","32734","","" +"FR","F","POP","TOTAL","OC2","M","Y65-84","2011","1120","","" +"FR","F","POP","TOTAL","OC2","M","Y_GE85","2011","116","","" +"FR","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","N","Y15-29","2011","8005","","" +"FR","F","POP","TOTAL","OC2","N","Y30-49","2011","19999","","" +"FR","F","POP","TOTAL","OC2","N","Y50-64","2011","5802","","" +"FR","F","POP","TOTAL","OC2","N","Y65-84","2011","155","","" +"FR","F","POP","TOTAL","OC2","N","Y_GE85","2011","9","u","" +"FR","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","O","Y15-29","2011","13483","","" +"FR","F","POP","TOTAL","OC2","O","Y30-49","2011","63319","","" +"FR","F","POP","TOTAL","OC2","O","Y50-64","2011","36891","","" +"FR","F","POP","TOTAL","OC2","O","Y65-84","2011","381","","" +"FR","F","POP","TOTAL","OC2","O","Y_GE85","2011","57","","" +"FR","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","P","Y15-29","2011","103999","","" +"FR","F","POP","TOTAL","OC2","P","Y30-49","2011","442211","","" +"FR","F","POP","TOTAL","OC2","P","Y50-64","2011","180377","","" +"FR","F","POP","TOTAL","OC2","P","Y65-84","2011","2154","","" +"FR","F","POP","TOTAL","OC2","P","Y_GE85","2011","531","","" +"FR","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","Q","Y15-29","2011","48354","","" +"FR","F","POP","TOTAL","OC2","Q","Y30-49","2011","130475","","" +"FR","F","POP","TOTAL","OC2","Q","Y50-64","2011","73729","","" +"FR","F","POP","TOTAL","OC2","Q","Y65-84","2011","1791","","" +"FR","F","POP","TOTAL","OC2","Q","Y_GE85","2011","152","","" +"FR","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","R","Y15-29","2011","8997","","" +"FR","F","POP","TOTAL","OC2","R","Y30-49","2011","25951","","" +"FR","F","POP","TOTAL","OC2","R","Y50-64","2011","10773","","" +"FR","F","POP","TOTAL","OC2","R","Y65-84","2011","719","","" +"FR","F","POP","TOTAL","OC2","R","Y_GE85","2011","116","","" +"FR","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","S","Y15-29","2011","8741","","" +"FR","F","POP","TOTAL","OC2","S","Y30-49","2011","30168","","" +"FR","F","POP","TOTAL","OC2","S","Y50-64","2011","12719","","" +"FR","F","POP","TOTAL","OC2","S","Y65-84","2011","430","","" +"FR","F","POP","TOTAL","OC2","S","Y_GE85","2011","85","","" +"FR","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","T","Y15-29","2011","146","","" +"FR","F","POP","TOTAL","OC2","T","Y30-49","2011","726","","" +"FR","F","POP","TOTAL","OC2","T","Y50-64","2011","497","","" +"FR","F","POP","TOTAL","OC2","T","Y65-84","2011","12","u","" +"FR","F","POP","TOTAL","OC2","T","Y_GE85","2011","7","u","" +"FR","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","U","Y15-29","2011","214","","" +"FR","F","POP","TOTAL","OC2","U","Y30-49","2011","1228","","" +"FR","F","POP","TOTAL","OC2","U","Y50-64","2011","662","","" +"FR","F","POP","TOTAL","OC2","U","Y65-84","2011","14","u","" +"FR","F","POP","TOTAL","OC2","U","Y_GE85","2011","1","u","" +"FR","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC2","UNK","Y15-29","2011","35014","","" +"FR","F","POP","TOTAL","OC2","UNK","Y30-49","2011","63638","","" +"FR","F","POP","TOTAL","OC2","UNK","Y50-64","2011","29277","","" +"FR","F","POP","TOTAL","OC2","UNK","Y65-84","2011","2721","","" +"FR","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","A","Y15-29","2011","2433","","" +"FR","F","POP","TOTAL","OC3","A","Y30-49","2011","5723","","" +"FR","F","POP","TOTAL","OC3","A","Y50-64","2011","2733","","" +"FR","F","POP","TOTAL","OC3","A","Y65-84","2011","77","","" +"FR","F","POP","TOTAL","OC3","A","Y_GE85","2011","18","u","" +"FR","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","B","Y15-29","2011","152","","" +"FR","F","POP","TOTAL","OC3","B","Y30-49","2011","607","","" +"FR","F","POP","TOTAL","OC3","B","Y50-64","2011","324","","" +"FR","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","C","Y15-29","2011","30796","","" +"FR","F","POP","TOTAL","OC3","C","Y30-49","2011","97936","","" +"FR","F","POP","TOTAL","OC3","C","Y50-64","2011","36702","","" +"FR","F","POP","TOTAL","OC3","C","Y65-84","2011","353","","" +"FR","F","POP","TOTAL","OC3","C","Y_GE85","2011","89","","" +"FR","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","D","Y15-29","2011","2801","","" +"FR","F","POP","TOTAL","OC3","D","Y30-49","2011","10461","","" +"FR","F","POP","TOTAL","OC3","D","Y50-64","2011","4653","","" +"FR","F","POP","TOTAL","OC3","D","Y65-84","2011","21","u","" +"FR","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","E","Y15-29","2011","2300","","" +"FR","F","POP","TOTAL","OC3","E","Y30-49","2011","6576","","" +"FR","F","POP","TOTAL","OC3","E","Y50-64","2011","2095","","" +"FR","F","POP","TOTAL","OC3","E","Y65-84","2011","25","u","" +"FR","F","POP","TOTAL","OC3","E","Y_GE85","2011","3","u","" +"FR","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","F","Y15-29","2011","7834","","" +"FR","F","POP","TOTAL","OC3","F","Y30-49","2011","22956","","" +"FR","F","POP","TOTAL","OC3","F","Y50-64","2011","8088","","" +"FR","F","POP","TOTAL","OC3","F","Y65-84","2011","101","","" +"FR","F","POP","TOTAL","OC3","F","Y_GE85","2011","31","u","" +"FR","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","G","Y15-29","2011","62320","","" +"FR","F","POP","TOTAL","OC3","G","Y30-49","2011","123815","","" +"FR","F","POP","TOTAL","OC3","G","Y50-64","2011","37682","","" +"FR","F","POP","TOTAL","OC3","G","Y65-84","2011","547","","" +"FR","F","POP","TOTAL","OC3","G","Y_GE85","2011","77","","" +"FR","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","H","Y15-29","2011","11761","","" +"FR","F","POP","TOTAL","OC3","H","Y30-49","2011","50874","","" +"FR","F","POP","TOTAL","OC3","H","Y50-64","2011","19564","","" +"FR","F","POP","TOTAL","OC3","H","Y65-84","2011","103","","" +"FR","F","POP","TOTAL","OC3","H","Y_GE85","2011","24","u","" +"FR","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","I","Y15-29","2011","8858","","" +"FR","F","POP","TOTAL","OC3","I","Y30-49","2011","15971","","" +"FR","F","POP","TOTAL","OC3","I","Y50-64","2011","5284","","" +"FR","F","POP","TOTAL","OC3","I","Y65-84","2011","69","","" +"FR","F","POP","TOTAL","OC3","I","Y_GE85","2011","15","u","" +"FR","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","J","Y15-29","2011","11093","","" +"FR","F","POP","TOTAL","OC3","J","Y30-49","2011","28493","","" +"FR","F","POP","TOTAL","OC3","J","Y50-64","2011","13099","","" +"FR","F","POP","TOTAL","OC3","J","Y65-84","2011","102","","" +"FR","F","POP","TOTAL","OC3","J","Y_GE85","2011","5","u","" +"FR","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","K","Y15-29","2011","36108","","" +"FR","F","POP","TOTAL","OC3","K","Y30-49","2011","98383","","" +"FR","F","POP","TOTAL","OC3","K","Y50-64","2011","48764","","" +"FR","F","POP","TOTAL","OC3","K","Y65-84","2011","320","","" +"FR","F","POP","TOTAL","OC3","K","Y_GE85","2011","62","","" +"FR","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","L","Y15-29","2011","16142","","" +"FR","F","POP","TOTAL","OC3","L","Y30-49","2011","38758","","" +"FR","F","POP","TOTAL","OC3","L","Y50-64","2011","16606","","" +"FR","F","POP","TOTAL","OC3","L","Y65-84","2011","549","","" +"FR","F","POP","TOTAL","OC3","L","Y_GE85","2011","31","u","" +"FR","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","M","Y15-29","2011","46829","","" +"FR","F","POP","TOTAL","OC3","M","Y30-49","2011","97457","","" +"FR","F","POP","TOTAL","OC3","M","Y50-64","2011","30988","","" +"FR","F","POP","TOTAL","OC3","M","Y65-84","2011","402","","" +"FR","F","POP","TOTAL","OC3","M","Y_GE85","2011","37","u","" +"FR","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","N","Y15-29","2011","31269","","" +"FR","F","POP","TOTAL","OC3","N","Y30-49","2011","54021","","" +"FR","F","POP","TOTAL","OC3","N","Y50-64","2011","14071","","" +"FR","F","POP","TOTAL","OC3","N","Y65-84","2011","240","","" +"FR","F","POP","TOTAL","OC3","N","Y_GE85","2011","30","u","" +"FR","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","O","Y15-29","2011","44162","","" +"FR","F","POP","TOTAL","OC3","O","Y30-49","2011","177939","","" +"FR","F","POP","TOTAL","OC3","O","Y50-64","2011","110157","","" +"FR","F","POP","TOTAL","OC3","O","Y65-84","2011","490","","" +"FR","F","POP","TOTAL","OC3","O","Y_GE85","2011","94","","" +"FR","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","P","Y15-29","2011","41159","","" +"FR","F","POP","TOTAL","OC3","P","Y30-49","2011","73038","","" +"FR","F","POP","TOTAL","OC3","P","Y50-64","2011","33239","","" +"FR","F","POP","TOTAL","OC3","P","Y65-84","2011","326","","" +"FR","F","POP","TOTAL","OC3","P","Y_GE85","2011","61","","" +"FR","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","Q","Y15-29","2011","166566","","" +"FR","F","POP","TOTAL","OC3","Q","Y30-49","2011","430456","","" +"FR","F","POP","TOTAL","OC3","Q","Y50-64","2011","184629","","" +"FR","F","POP","TOTAL","OC3","Q","Y65-84","2011","2112","","" +"FR","F","POP","TOTAL","OC3","Q","Y_GE85","2011","630","","" +"FR","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","R","Y15-29","2011","12689","","" +"FR","F","POP","TOTAL","OC3","R","Y30-49","2011","22935","","" +"FR","F","POP","TOTAL","OC3","R","Y50-64","2011","7997","","" +"FR","F","POP","TOTAL","OC3","R","Y65-84","2011","142","","" +"FR","F","POP","TOTAL","OC3","R","Y_GE85","2011","6","u","" +"FR","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","S","Y15-29","2011","20614","","" +"FR","F","POP","TOTAL","OC3","S","Y30-49","2011","46637","","" +"FR","F","POP","TOTAL","OC3","S","Y50-64","2011","19059","","" +"FR","F","POP","TOTAL","OC3","S","Y65-84","2011","761","","" +"FR","F","POP","TOTAL","OC3","S","Y_GE85","2011","522","","" +"FR","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","T","Y15-29","2011","220","","" +"FR","F","POP","TOTAL","OC3","T","Y30-49","2011","1045","","" +"FR","F","POP","TOTAL","OC3","T","Y50-64","2011","755","","" +"FR","F","POP","TOTAL","OC3","T","Y65-84","2011","11","u","" +"FR","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","U","Y15-29","2011","348","","" +"FR","F","POP","TOTAL","OC3","U","Y30-49","2011","2004","","" +"FR","F","POP","TOTAL","OC3","U","Y50-64","2011","994","","" +"FR","F","POP","TOTAL","OC3","U","Y65-84","2011","16","u","" +"FR","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC3","UNK","Y15-29","2011","73744","","" +"FR","F","POP","TOTAL","OC3","UNK","Y30-49","2011","112171","","" +"FR","F","POP","TOTAL","OC3","UNK","Y50-64","2011","50688","","" +"FR","F","POP","TOTAL","OC3","UNK","Y65-84","2011","3235","","" +"FR","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","A","Y15-29","2011","1450","","" +"FR","F","POP","TOTAL","OC4","A","Y30-49","2011","7599","","" +"FR","F","POP","TOTAL","OC4","A","Y50-64","2011","3977","","" +"FR","F","POP","TOTAL","OC4","A","Y65-84","2011","72","","" +"FR","F","POP","TOTAL","OC4","A","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","B","Y15-29","2011","258","","" +"FR","F","POP","TOTAL","OC4","B","Y30-49","2011","998","","" +"FR","F","POP","TOTAL","OC4","B","Y50-64","2011","475","","" +"FR","F","POP","TOTAL","OC4","B","Y65-84","2011","12","u","" +"FR","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","C","Y15-29","2011","18953","","" +"FR","F","POP","TOTAL","OC4","C","Y30-49","2011","68412","","" +"FR","F","POP","TOTAL","OC4","C","Y50-64","2011","33528","","" +"FR","F","POP","TOTAL","OC4","C","Y65-84","2011","466","","" +"FR","F","POP","TOTAL","OC4","C","Y_GE85","2011","92","","" +"FR","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","D","Y15-29","2011","1348","","" +"FR","F","POP","TOTAL","OC4","D","Y30-49","2011","3123","","" +"FR","F","POP","TOTAL","OC4","D","Y50-64","2011","1440","","" +"FR","F","POP","TOTAL","OC4","D","Y65-84","2011","42","u","" +"FR","F","POP","TOTAL","OC4","D","Y_GE85","2011","9","u","" +"FR","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","E","Y15-29","2011","2346","","" +"FR","F","POP","TOTAL","OC4","E","Y30-49","2011","8058","","" +"FR","F","POP","TOTAL","OC4","E","Y50-64","2011","2795","","" +"FR","F","POP","TOTAL","OC4","E","Y65-84","2011","45","u","" +"FR","F","POP","TOTAL","OC4","E","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","F","Y15-29","2011","14259","","" +"FR","F","POP","TOTAL","OC4","F","Y30-49","2011","48228","","" +"FR","F","POP","TOTAL","OC4","F","Y50-64","2011","18849","","" +"FR","F","POP","TOTAL","OC4","F","Y65-84","2011","399","","" +"FR","F","POP","TOTAL","OC4","F","Y_GE85","2011","57","","" +"FR","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","G","Y15-29","2011","39880","","" +"FR","F","POP","TOTAL","OC4","G","Y30-49","2011","114213","","" +"FR","F","POP","TOTAL","OC4","G","Y50-64","2011","46271","","" +"FR","F","POP","TOTAL","OC4","G","Y65-84","2011","825","","" +"FR","F","POP","TOTAL","OC4","G","Y_GE85","2011","187","","" +"FR","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","H","Y15-29","2011","26540","","" +"FR","F","POP","TOTAL","OC4","H","Y30-49","2011","87437","","" +"FR","F","POP","TOTAL","OC4","H","Y50-64","2011","32257","","" +"FR","F","POP","TOTAL","OC4","H","Y65-84","2011","440","","" +"FR","F","POP","TOTAL","OC4","H","Y_GE85","2011","105","","" +"FR","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","I","Y15-29","2011","19339","","" +"FR","F","POP","TOTAL","OC4","I","Y30-49","2011","30819","","" +"FR","F","POP","TOTAL","OC4","I","Y50-64","2011","11089","","" +"FR","F","POP","TOTAL","OC4","I","Y65-84","2011","252","","" +"FR","F","POP","TOTAL","OC4","I","Y_GE85","2011","41","u","" +"FR","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","J","Y15-29","2011","8821","","" +"FR","F","POP","TOTAL","OC4","J","Y30-49","2011","18060","","" +"FR","F","POP","TOTAL","OC4","J","Y50-64","2011","8288","","" +"FR","F","POP","TOTAL","OC4","J","Y65-84","2011","116","","" +"FR","F","POP","TOTAL","OC4","J","Y_GE85","2011","33","u","" +"FR","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","K","Y15-29","2011","42109","","" +"FR","F","POP","TOTAL","OC4","K","Y30-49","2011","78082","","" +"FR","F","POP","TOTAL","OC4","K","Y50-64","2011","39778","","" +"FR","F","POP","TOTAL","OC4","K","Y65-84","2011","332","","" +"FR","F","POP","TOTAL","OC4","K","Y_GE85","2011","103","","" +"FR","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","L","Y15-29","2011","10693","","" +"FR","F","POP","TOTAL","OC4","L","Y30-49","2011","23367","","" +"FR","F","POP","TOTAL","OC4","L","Y50-64","2011","10187","","" +"FR","F","POP","TOTAL","OC4","L","Y65-84","2011","173","","" +"FR","F","POP","TOTAL","OC4","L","Y_GE85","2011","29","u","" +"FR","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","M","Y15-29","2011","37205","","" +"FR","F","POP","TOTAL","OC4","M","Y30-49","2011","86270","","" +"FR","F","POP","TOTAL","OC4","M","Y50-64","2011","32260","","" +"FR","F","POP","TOTAL","OC4","M","Y65-84","2011","686","","" +"FR","F","POP","TOTAL","OC4","M","Y_GE85","2011","155","","" +"FR","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","N","Y15-29","2011","34558","","" +"FR","F","POP","TOTAL","OC4","N","Y30-49","2011","54240","","" +"FR","F","POP","TOTAL","OC4","N","Y50-64","2011","15738","","" +"FR","F","POP","TOTAL","OC4","N","Y65-84","2011","324","","" +"FR","F","POP","TOTAL","OC4","N","Y_GE85","2011","117","","" +"FR","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","O","Y15-29","2011","46966","","" +"FR","F","POP","TOTAL","OC4","O","Y30-49","2011","226952","","" +"FR","F","POP","TOTAL","OC4","O","Y50-64","2011","134383","","" +"FR","F","POP","TOTAL","OC4","O","Y65-84","2011","775","","" +"FR","F","POP","TOTAL","OC4","O","Y_GE85","2011","149","","" +"FR","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","P","Y15-29","2011","16088","","" +"FR","F","POP","TOTAL","OC4","P","Y30-49","2011","63223","","" +"FR","F","POP","TOTAL","OC4","P","Y50-64","2011","34348","","" +"FR","F","POP","TOTAL","OC4","P","Y65-84","2011","284","","" +"FR","F","POP","TOTAL","OC4","P","Y_GE85","2011","37","u","" +"FR","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","Q","Y15-29","2011","26545","","" +"FR","F","POP","TOTAL","OC4","Q","Y30-49","2011","91796","","" +"FR","F","POP","TOTAL","OC4","Q","Y50-64","2011","48496","","" +"FR","F","POP","TOTAL","OC4","Q","Y65-84","2011","461","","" +"FR","F","POP","TOTAL","OC4","Q","Y_GE85","2011","74","","" +"FR","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","R","Y15-29","2011","6491","","" +"FR","F","POP","TOTAL","OC4","R","Y30-49","2011","16812","","" +"FR","F","POP","TOTAL","OC4","R","Y50-64","2011","7226","","" +"FR","F","POP","TOTAL","OC4","R","Y65-84","2011","191","","" +"FR","F","POP","TOTAL","OC4","R","Y_GE85","2011","74","","" +"FR","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","S","Y15-29","2011","13277","","" +"FR","F","POP","TOTAL","OC4","S","Y30-49","2011","39739","","" +"FR","F","POP","TOTAL","OC4","S","Y50-64","2011","20050","","" +"FR","F","POP","TOTAL","OC4","S","Y65-84","2011","383","","" +"FR","F","POP","TOTAL","OC4","S","Y_GE85","2011","198","","" +"FR","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","T","Y15-29","2011","313","","" +"FR","F","POP","TOTAL","OC4","T","Y30-49","2011","1626","","" +"FR","F","POP","TOTAL","OC4","T","Y50-64","2011","1306","","" +"FR","F","POP","TOTAL","OC4","T","Y65-84","2011","19","u","" +"FR","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","U","Y15-29","2011","305","","" +"FR","F","POP","TOTAL","OC4","U","Y30-49","2011","1851","","" +"FR","F","POP","TOTAL","OC4","U","Y50-64","2011","1075","","" +"FR","F","POP","TOTAL","OC4","U","Y65-84","2011","42","u","" +"FR","F","POP","TOTAL","OC4","U","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC4","UNK","Y15-29","2011","76005","","" +"FR","F","POP","TOTAL","OC4","UNK","Y30-49","2011","129251","","" +"FR","F","POP","TOTAL","OC4","UNK","Y50-64","2011","74142","","" +"FR","F","POP","TOTAL","OC4","UNK","Y65-84","2011","4984","","" +"FR","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","A","Y15-29","2011","1925","","" +"FR","F","POP","TOTAL","OC5","A","Y30-49","2011","4429","","" +"FR","F","POP","TOTAL","OC5","A","Y50-64","2011","2614","","" +"FR","F","POP","TOTAL","OC5","A","Y65-84","2011","167","","" +"FR","F","POP","TOTAL","OC5","A","Y_GE85","2011","22","u","" +"FR","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","B","Y15-29","2011","139","","" +"FR","F","POP","TOTAL","OC5","B","Y30-49","2011","210","","" +"FR","F","POP","TOTAL","OC5","B","Y50-64","2011","60","","" +"FR","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","C","Y15-29","2011","31323","","" +"FR","F","POP","TOTAL","OC5","C","Y30-49","2011","52266","","" +"FR","F","POP","TOTAL","OC5","C","Y50-64","2011","18255","","" +"FR","F","POP","TOTAL","OC5","C","Y65-84","2011","304","","" +"FR","F","POP","TOTAL","OC5","C","Y_GE85","2011","54","","" +"FR","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","D","Y15-29","2011","469","","" +"FR","F","POP","TOTAL","OC5","D","Y30-49","2011","782","","" +"FR","F","POP","TOTAL","OC5","D","Y50-64","2011","233","","" +"FR","F","POP","TOTAL","OC5","D","Y65-84","2011","19","u","" +"FR","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","E","Y15-29","2011","460","","" +"FR","F","POP","TOTAL","OC5","E","Y30-49","2011","967","","" +"FR","F","POP","TOTAL","OC5","E","Y50-64","2011","353","","" +"FR","F","POP","TOTAL","OC5","E","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","F","Y15-29","2011","2480","","" +"FR","F","POP","TOTAL","OC5","F","Y30-49","2011","5401","","" +"FR","F","POP","TOTAL","OC5","F","Y50-64","2011","1923","","" +"FR","F","POP","TOTAL","OC5","F","Y65-84","2011","106","","" +"FR","F","POP","TOTAL","OC5","F","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","G","Y15-29","2011","252534","","" +"FR","F","POP","TOTAL","OC5","G","Y30-49","2011","397447","","" +"FR","F","POP","TOTAL","OC5","G","Y50-64","2011","134698","","" +"FR","F","POP","TOTAL","OC5","G","Y65-84","2011","4954","","" +"FR","F","POP","TOTAL","OC5","G","Y_GE85","2011","578","","" +"FR","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","H","Y15-29","2011","4535","","" +"FR","F","POP","TOTAL","OC5","H","Y30-49","2011","15280","","" +"FR","F","POP","TOTAL","OC5","H","Y50-64","2011","3097","","" +"FR","F","POP","TOTAL","OC5","H","Y65-84","2011","117","","" +"FR","F","POP","TOTAL","OC5","H","Y_GE85","2011","30","u","" +"FR","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","I","Y15-29","2011","86475","","" +"FR","F","POP","TOTAL","OC5","I","Y30-49","2011","96106","","" +"FR","F","POP","TOTAL","OC5","I","Y50-64","2011","36764","","" +"FR","F","POP","TOTAL","OC5","I","Y65-84","2011","2411","","" +"FR","F","POP","TOTAL","OC5","I","Y_GE85","2011","332","","" +"FR","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","J","Y15-29","2011","4855","","" +"FR","F","POP","TOTAL","OC5","J","Y30-49","2011","7486","","" +"FR","F","POP","TOTAL","OC5","J","Y50-64","2011","2767","","" +"FR","F","POP","TOTAL","OC5","J","Y65-84","2011","208","","" +"FR","F","POP","TOTAL","OC5","J","Y_GE85","2011","40","u","" +"FR","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","K","Y15-29","2011","7345","","" +"FR","F","POP","TOTAL","OC5","K","Y30-49","2011","11167","","" +"FR","F","POP","TOTAL","OC5","K","Y50-64","2011","4223","","" +"FR","F","POP","TOTAL","OC5","K","Y65-84","2011","233","","" +"FR","F","POP","TOTAL","OC5","K","Y_GE85","2011","45","u","" +"FR","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","L","Y15-29","2011","6965","","" +"FR","F","POP","TOTAL","OC5","L","Y30-49","2011","16608","","" +"FR","F","POP","TOTAL","OC5","L","Y50-64","2011","13226","","" +"FR","F","POP","TOTAL","OC5","L","Y65-84","2011","962","","" +"FR","F","POP","TOTAL","OC5","L","Y_GE85","2011","100","","" +"FR","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","M","Y15-29","2011","6735","","" +"FR","F","POP","TOTAL","OC5","M","Y30-49","2011","11977","","" +"FR","F","POP","TOTAL","OC5","M","Y50-64","2011","5184","","" +"FR","F","POP","TOTAL","OC5","M","Y65-84","2011","463","","" +"FR","F","POP","TOTAL","OC5","M","Y_GE85","2011","78","","" +"FR","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","N","Y15-29","2011","23190","","" +"FR","F","POP","TOTAL","OC5","N","Y30-49","2011","28619","","" +"FR","F","POP","TOTAL","OC5","N","Y50-64","2011","9528","","" +"FR","F","POP","TOTAL","OC5","N","Y65-84","2011","503","","" +"FR","F","POP","TOTAL","OC5","N","Y_GE85","2011","57","","" +"FR","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","O","Y15-29","2011","17981","","" +"FR","F","POP","TOTAL","OC5","O","Y30-49","2011","46789","","" +"FR","F","POP","TOTAL","OC5","O","Y50-64","2011","19113","","" +"FR","F","POP","TOTAL","OC5","O","Y65-84","2011","358","","" +"FR","F","POP","TOTAL","OC5","O","Y_GE85","2011","38","u","" +"FR","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","P","Y15-29","2011","12430","","" +"FR","F","POP","TOTAL","OC5","P","Y30-49","2011","23428","","" +"FR","F","POP","TOTAL","OC5","P","Y50-64","2011","10129","","" +"FR","F","POP","TOTAL","OC5","P","Y65-84","2011","271","","" +"FR","F","POP","TOTAL","OC5","P","Y_GE85","2011","45","u","" +"FR","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","Q","Y15-29","2011","112202","","" +"FR","F","POP","TOTAL","OC5","Q","Y30-49","2011","414239","","" +"FR","F","POP","TOTAL","OC5","Q","Y50-64","2011","183231","","" +"FR","F","POP","TOTAL","OC5","Q","Y65-84","2011","2459","","" +"FR","F","POP","TOTAL","OC5","Q","Y_GE85","2011","321","","" +"FR","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","R","Y15-29","2011","5601","","" +"FR","F","POP","TOTAL","OC5","R","Y30-49","2011","7561","","" +"FR","F","POP","TOTAL","OC5","R","Y50-64","2011","2638","","" +"FR","F","POP","TOTAL","OC5","R","Y65-84","2011","160","","" +"FR","F","POP","TOTAL","OC5","R","Y_GE85","2011","23","u","" +"FR","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","S","Y15-29","2011","82832","","" +"FR","F","POP","TOTAL","OC5","S","Y30-49","2011","93856","","" +"FR","F","POP","TOTAL","OC5","S","Y50-64","2011","26992","","" +"FR","F","POP","TOTAL","OC5","S","Y65-84","2011","1025","","" +"FR","F","POP","TOTAL","OC5","S","Y_GE85","2011","168","","" +"FR","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","T","Y15-29","2011","3166","","" +"FR","F","POP","TOTAL","OC5","T","Y30-49","2011","14305","","" +"FR","F","POP","TOTAL","OC5","T","Y50-64","2011","8456","","" +"FR","F","POP","TOTAL","OC5","T","Y65-84","2011","222","","" +"FR","F","POP","TOTAL","OC5","T","Y_GE85","2011","39","u","" +"FR","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","U","Y15-29","2011","70","","" +"FR","F","POP","TOTAL","OC5","U","Y30-49","2011","162","","" +"FR","F","POP","TOTAL","OC5","U","Y50-64","2011","72","","" +"FR","F","POP","TOTAL","OC5","U","Y65-84","2011","14","u","" +"FR","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC5","UNK","Y15-29","2011","153695","","" +"FR","F","POP","TOTAL","OC5","UNK","Y30-49","2011","164550","","" +"FR","F","POP","TOTAL","OC5","UNK","Y50-64","2011","72066","","" +"FR","F","POP","TOTAL","OC5","UNK","Y65-84","2011","5666","","" +"FR","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","A","Y15-29","2011","12801","","" +"FR","F","POP","TOTAL","OC6","A","Y30-49","2011","71923","","" +"FR","F","POP","TOTAL","OC6","A","Y50-64","2011","59292","","" +"FR","F","POP","TOTAL","OC6","A","Y65-84","2011","5542","","" +"FR","F","POP","TOTAL","OC6","A","Y_GE85","2011","779","","" +"FR","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","B","Y15-29","2011","4","u","" +"FR","F","POP","TOTAL","OC6","B","Y30-49","2011","57","","" +"FR","F","POP","TOTAL","OC6","B","Y50-64","2011","8","u","" +"FR","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","C","Y15-29","2011","319","","" +"FR","F","POP","TOTAL","OC6","C","Y30-49","2011","1056","","" +"FR","F","POP","TOTAL","OC6","C","Y50-64","2011","723","","" +"FR","F","POP","TOTAL","OC6","C","Y65-84","2011","66","","" +"FR","F","POP","TOTAL","OC6","C","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC6","D","Y30-49","2011","12","u","" +"FR","F","POP","TOTAL","OC6","D","Y50-64","2011","16","u","" +"FR","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","E","Y15-29","2011","17","u","" +"FR","F","POP","TOTAL","OC6","E","Y30-49","2011","33","u","" +"FR","F","POP","TOTAL","OC6","E","Y50-64","2011","4","u","" +"FR","F","POP","TOTAL","OC6","E","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","F","Y15-29","2011","47","u","" +"FR","F","POP","TOTAL","OC6","F","Y30-49","2011","262","","" +"FR","F","POP","TOTAL","OC6","F","Y50-64","2011","174","","" +"FR","F","POP","TOTAL","OC6","F","Y65-84","2011","18","u","" +"FR","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","G","Y15-29","2011","803","","" +"FR","F","POP","TOTAL","OC6","G","Y30-49","2011","1947","","" +"FR","F","POP","TOTAL","OC6","G","Y50-64","2011","963","","" +"FR","F","POP","TOTAL","OC6","G","Y65-84","2011","69","","" +"FR","F","POP","TOTAL","OC6","G","Y_GE85","2011","12","u","" +"FR","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","H","Y15-29","2011","28","u","" +"FR","F","POP","TOTAL","OC6","H","Y30-49","2011","86","","" +"FR","F","POP","TOTAL","OC6","H","Y50-64","2011","99","","" +"FR","F","POP","TOTAL","OC6","H","Y65-84","2011","24","u","" +"FR","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","I","Y15-29","2011","151","","" +"FR","F","POP","TOTAL","OC6","I","Y30-49","2011","252","","" +"FR","F","POP","TOTAL","OC6","I","Y50-64","2011","199","","" +"FR","F","POP","TOTAL","OC6","I","Y65-84","2011","31","u","" +"FR","F","POP","TOTAL","OC6","I","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","J","Y15-29","2011","13","u","" +"FR","F","POP","TOTAL","OC6","J","Y30-49","2011","51","","" +"FR","F","POP","TOTAL","OC6","J","Y50-64","2011","44","u","" +"FR","F","POP","TOTAL","OC6","J","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","K","Y15-29","2011","46","u","" +"FR","F","POP","TOTAL","OC6","K","Y30-49","2011","65","","" +"FR","F","POP","TOTAL","OC6","K","Y50-64","2011","108","","" +"FR","F","POP","TOTAL","OC6","K","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC6","K","Y_GE85","2011","3","u","" +"FR","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","L","Y15-29","2011","50","","" +"FR","F","POP","TOTAL","OC6","L","Y30-49","2011","246","","" +"FR","F","POP","TOTAL","OC6","L","Y50-64","2011","130","","" +"FR","F","POP","TOTAL","OC6","L","Y65-84","2011","10","u","" +"FR","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","M","Y15-29","2011","154","","" +"FR","F","POP","TOTAL","OC6","M","Y30-49","2011","885","","" +"FR","F","POP","TOTAL","OC6","M","Y50-64","2011","431","","" +"FR","F","POP","TOTAL","OC6","M","Y65-84","2011","20","u","" +"FR","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","N","Y15-29","2011","1551","","" +"FR","F","POP","TOTAL","OC6","N","Y30-49","2011","2479","","" +"FR","F","POP","TOTAL","OC6","N","Y50-64","2011","948","","" +"FR","F","POP","TOTAL","OC6","N","Y65-84","2011","70","","" +"FR","F","POP","TOTAL","OC6","N","Y_GE85","2011","14","u","" +"FR","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","O","Y15-29","2011","759","","" +"FR","F","POP","TOTAL","OC6","O","Y30-49","2011","1406","","" +"FR","F","POP","TOTAL","OC6","O","Y50-64","2011","616","","" +"FR","F","POP","TOTAL","OC6","O","Y65-84","2011","31","u","" +"FR","F","POP","TOTAL","OC6","O","Y_GE85","2011","15","u","" +"FR","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","P","Y15-29","2011","800","","" +"FR","F","POP","TOTAL","OC6","P","Y30-49","2011","545","","" +"FR","F","POP","TOTAL","OC6","P","Y50-64","2011","251","","" +"FR","F","POP","TOTAL","OC6","P","Y65-84","2011","29","u","" +"FR","F","POP","TOTAL","OC6","P","Y_GE85","2011","15","u","" +"FR","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","Q","Y15-29","2011","752","","" +"FR","F","POP","TOTAL","OC6","Q","Y30-49","2011","1481","","" +"FR","F","POP","TOTAL","OC6","Q","Y50-64","2011","845","","" +"FR","F","POP","TOTAL","OC6","Q","Y65-84","2011","38","u","" +"FR","F","POP","TOTAL","OC6","Q","Y_GE85","2011","11","u","" +"FR","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","R","Y15-29","2011","1056","","" +"FR","F","POP","TOTAL","OC6","R","Y30-49","2011","631","","" +"FR","F","POP","TOTAL","OC6","R","Y50-64","2011","115","","" +"FR","F","POP","TOTAL","OC6","R","Y65-84","2011","41","u","" +"FR","F","POP","TOTAL","OC6","R","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","S","Y15-29","2011","461","","" +"FR","F","POP","TOTAL","OC6","S","Y30-49","2011","912","","" +"FR","F","POP","TOTAL","OC6","S","Y50-64","2011","430","","" +"FR","F","POP","TOTAL","OC6","S","Y65-84","2011","33","u","" +"FR","F","POP","TOTAL","OC6","S","Y_GE85","2011","16","u","" +"FR","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","T","Y15-29","2011","60","","" +"FR","F","POP","TOTAL","OC6","T","Y30-49","2011","161","","" +"FR","F","POP","TOTAL","OC6","T","Y50-64","2011","198","","" +"FR","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","U","Y15-29","2011","3","u","" +"FR","F","POP","TOTAL","OC6","U","Y30-49","2011","4","u","" +"FR","F","POP","TOTAL","OC6","U","Y50-64","2011","4","u","" +"FR","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC6","UNK","Y15-29","2011","15501","","" +"FR","F","POP","TOTAL","OC6","UNK","Y30-49","2011","11484","","" +"FR","F","POP","TOTAL","OC6","UNK","Y50-64","2011","6432","","" +"FR","F","POP","TOTAL","OC6","UNK","Y65-84","2011","1878","","" +"FR","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","A","Y15-29","2011","160","","" +"FR","F","POP","TOTAL","OC7","A","Y30-49","2011","337","","" +"FR","F","POP","TOTAL","OC7","A","Y50-64","2011","223","","" +"FR","F","POP","TOTAL","OC7","A","Y65-84","2011","16","u","" +"FR","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","B","Y15-29","2011","14","u","" +"FR","F","POP","TOTAL","OC7","B","Y30-49","2011","46","u","" +"FR","F","POP","TOTAL","OC7","B","Y50-64","2011","11","u","" +"FR","F","POP","TOTAL","OC7","B","Y65-84","2011","3","u","" +"FR","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","C","Y15-29","2011","16677","","" +"FR","F","POP","TOTAL","OC7","C","Y30-49","2011","55207","","" +"FR","F","POP","TOTAL","OC7","C","Y50-64","2011","25458","","" +"FR","F","POP","TOTAL","OC7","C","Y65-84","2011","1206","","" +"FR","F","POP","TOTAL","OC7","C","Y_GE85","2011","334","","" +"FR","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","D","Y15-29","2011","100","","" +"FR","F","POP","TOTAL","OC7","D","Y30-49","2011","157","","" +"FR","F","POP","TOTAL","OC7","D","Y50-64","2011","63","","" +"FR","F","POP","TOTAL","OC7","D","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","E","Y15-29","2011","63","","" +"FR","F","POP","TOTAL","OC7","E","Y30-49","2011","205","","" +"FR","F","POP","TOTAL","OC7","E","Y50-64","2011","85","","" +"FR","F","POP","TOTAL","OC7","E","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","F","Y15-29","2011","5438","","" +"FR","F","POP","TOTAL","OC7","F","Y30-49","2011","10827","","" +"FR","F","POP","TOTAL","OC7","F","Y50-64","2011","4444","","" +"FR","F","POP","TOTAL","OC7","F","Y65-84","2011","275","","" +"FR","F","POP","TOTAL","OC7","F","Y_GE85","2011","44","u","" +"FR","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","G","Y15-29","2011","6270","","" +"FR","F","POP","TOTAL","OC7","G","Y30-49","2011","14536","","" +"FR","F","POP","TOTAL","OC7","G","Y50-64","2011","7720","","" +"FR","F","POP","TOTAL","OC7","G","Y65-84","2011","457","","" +"FR","F","POP","TOTAL","OC7","G","Y_GE85","2011","110","","" +"FR","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","H","Y15-29","2011","430","","" +"FR","F","POP","TOTAL","OC7","H","Y30-49","2011","1198","","" +"FR","F","POP","TOTAL","OC7","H","Y50-64","2011","447","","" +"FR","F","POP","TOTAL","OC7","H","Y65-84","2011","25","u","" +"FR","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","I","Y15-29","2011","1284","","" +"FR","F","POP","TOTAL","OC7","I","Y30-49","2011","2487","","" +"FR","F","POP","TOTAL","OC7","I","Y50-64","2011","1358","","" +"FR","F","POP","TOTAL","OC7","I","Y65-84","2011","47","u","" +"FR","F","POP","TOTAL","OC7","I","Y_GE85","2011","11","u","" +"FR","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","J","Y15-29","2011","721","","" +"FR","F","POP","TOTAL","OC7","J","Y30-49","2011","2336","","" +"FR","F","POP","TOTAL","OC7","J","Y50-64","2011","1100","","" +"FR","F","POP","TOTAL","OC7","J","Y65-84","2011","46","u","" +"FR","F","POP","TOTAL","OC7","J","Y_GE85","2011","7","u","" +"FR","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","K","Y15-29","2011","205","","" +"FR","F","POP","TOTAL","OC7","K","Y30-49","2011","636","","" +"FR","F","POP","TOTAL","OC7","K","Y50-64","2011","488","","" +"FR","F","POP","TOTAL","OC7","K","Y65-84","2011","10","u","" +"FR","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","L","Y15-29","2011","131","","" +"FR","F","POP","TOTAL","OC7","L","Y30-49","2011","432","","" +"FR","F","POP","TOTAL","OC7","L","Y50-64","2011","272","","" +"FR","F","POP","TOTAL","OC7","L","Y65-84","2011","12","u","" +"FR","F","POP","TOTAL","OC7","L","Y_GE85","2011","5","u","" +"FR","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","M","Y15-29","2011","590","","" +"FR","F","POP","TOTAL","OC7","M","Y30-49","2011","1562","","" +"FR","F","POP","TOTAL","OC7","M","Y50-64","2011","687","","" +"FR","F","POP","TOTAL","OC7","M","Y65-84","2011","38","u","" +"FR","F","POP","TOTAL","OC7","M","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","N","Y15-29","2011","2974","","" +"FR","F","POP","TOTAL","OC7","N","Y30-49","2011","5384","","" +"FR","F","POP","TOTAL","OC7","N","Y50-64","2011","1713","","" +"FR","F","POP","TOTAL","OC7","N","Y65-84","2011","60","","" +"FR","F","POP","TOTAL","OC7","N","Y_GE85","2011","20","u","" +"FR","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","O","Y15-29","2011","1257","","" +"FR","F","POP","TOTAL","OC7","O","Y30-49","2011","5850","","" +"FR","F","POP","TOTAL","OC7","O","Y50-64","2011","4475","","" +"FR","F","POP","TOTAL","OC7","O","Y65-84","2011","39","u","" +"FR","F","POP","TOTAL","OC7","O","Y_GE85","2011","16","u","" +"FR","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","P","Y15-29","2011","1183","","" +"FR","F","POP","TOTAL","OC7","P","Y30-49","2011","3163","","" +"FR","F","POP","TOTAL","OC7","P","Y50-64","2011","1716","","" +"FR","F","POP","TOTAL","OC7","P","Y65-84","2011","48","u","" +"FR","F","POP","TOTAL","OC7","P","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","Q","Y15-29","2011","5988","","" +"FR","F","POP","TOTAL","OC7","Q","Y30-49","2011","18102","","" +"FR","F","POP","TOTAL","OC7","Q","Y50-64","2011","8605","","" +"FR","F","POP","TOTAL","OC7","Q","Y65-84","2011","109","","" +"FR","F","POP","TOTAL","OC7","Q","Y_GE85","2011","54","","" +"FR","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","R","Y15-29","2011","737","","" +"FR","F","POP","TOTAL","OC7","R","Y30-49","2011","2264","","" +"FR","F","POP","TOTAL","OC7","R","Y50-64","2011","1118","","" +"FR","F","POP","TOTAL","OC7","R","Y65-84","2011","82","","" +"FR","F","POP","TOTAL","OC7","R","Y_GE85","2011","9","u","" +"FR","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","S","Y15-29","2011","3582","","" +"FR","F","POP","TOTAL","OC7","S","Y30-49","2011","11793","","" +"FR","F","POP","TOTAL","OC7","S","Y50-64","2011","6115","","" +"FR","F","POP","TOTAL","OC7","S","Y65-84","2011","268","","" +"FR","F","POP","TOTAL","OC7","S","Y_GE85","2011","90","","" +"FR","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","T","Y15-29","2011","33","u","" +"FR","F","POP","TOTAL","OC7","T","Y30-49","2011","189","","" +"FR","F","POP","TOTAL","OC7","T","Y50-64","2011","238","","" +"FR","F","POP","TOTAL","OC7","T","Y65-84","2011","6","u","" +"FR","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","U","Y15-29","2011","10","u","" +"FR","F","POP","TOTAL","OC7","U","Y30-49","2011","68","","" +"FR","F","POP","TOTAL","OC7","U","Y50-64","2011","32","u","" +"FR","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC7","UNK","Y15-29","2011","18999","","" +"FR","F","POP","TOTAL","OC7","UNK","Y30-49","2011","30140","","" +"FR","F","POP","TOTAL","OC7","UNK","Y50-64","2011","17193","","" +"FR","F","POP","TOTAL","OC7","UNK","Y65-84","2011","1265","","" +"FR","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","A","Y15-29","2011","734","","" +"FR","F","POP","TOTAL","OC8","A","Y30-49","2011","2553","","" +"FR","F","POP","TOTAL","OC8","A","Y50-64","2011","1032","","" +"FR","F","POP","TOTAL","OC8","A","Y65-84","2011","34","u","" +"FR","F","POP","TOTAL","OC8","A","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","B","Y15-29","2011","30","u","" +"FR","F","POP","TOTAL","OC8","B","Y30-49","2011","141","","" +"FR","F","POP","TOTAL","OC8","B","Y50-64","2011","49","u","" +"FR","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","C","Y15-29","2011","29341","","" +"FR","F","POP","TOTAL","OC8","C","Y30-49","2011","138280","","" +"FR","F","POP","TOTAL","OC8","C","Y50-64","2011","72013","","" +"FR","F","POP","TOTAL","OC8","C","Y65-84","2011","1069","","" +"FR","F","POP","TOTAL","OC8","C","Y_GE85","2011","263","","" +"FR","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","D","Y15-29","2011","159","","" +"FR","F","POP","TOTAL","OC8","D","Y30-49","2011","363","","" +"FR","F","POP","TOTAL","OC8","D","Y50-64","2011","174","","" +"FR","F","POP","TOTAL","OC8","D","Y65-84","2011","7","u","" +"FR","F","POP","TOTAL","OC8","D","Y_GE85","2011","12","u","" +"FR","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","E","Y15-29","2011","360","","" +"FR","F","POP","TOTAL","OC8","E","Y30-49","2011","1512","","" +"FR","F","POP","TOTAL","OC8","E","Y50-64","2011","511","","" +"FR","F","POP","TOTAL","OC8","E","Y65-84","2011","45","u","" +"FR","F","POP","TOTAL","OC8","E","Y_GE85","2011","7","u","" +"FR","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","F","Y15-29","2011","593","","" +"FR","F","POP","TOTAL","OC8","F","Y30-49","2011","1517","","" +"FR","F","POP","TOTAL","OC8","F","Y50-64","2011","653","","" +"FR","F","POP","TOTAL","OC8","F","Y65-84","2011","127","","" +"FR","F","POP","TOTAL","OC8","F","Y_GE85","2011","27","u","" +"FR","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","G","Y15-29","2011","7981","","" +"FR","F","POP","TOTAL","OC8","G","Y30-49","2011","23828","","" +"FR","F","POP","TOTAL","OC8","G","Y50-64","2011","9419","","" +"FR","F","POP","TOTAL","OC8","G","Y65-84","2011","354","","" +"FR","F","POP","TOTAL","OC8","G","Y_GE85","2011","89","","" +"FR","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","H","Y15-29","2011","8244","","" +"FR","F","POP","TOTAL","OC8","H","Y30-49","2011","29706","","" +"FR","F","POP","TOTAL","OC8","H","Y50-64","2011","11368","","" +"FR","F","POP","TOTAL","OC8","H","Y65-84","2011","314","","" +"FR","F","POP","TOTAL","OC8","H","Y_GE85","2011","59","","" +"FR","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","I","Y15-29","2011","1701","","" +"FR","F","POP","TOTAL","OC8","I","Y30-49","2011","2754","","" +"FR","F","POP","TOTAL","OC8","I","Y50-64","2011","1029","","" +"FR","F","POP","TOTAL","OC8","I","Y65-84","2011","16","u","" +"FR","F","POP","TOTAL","OC8","I","Y_GE85","2011","7","u","" +"FR","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","J","Y15-29","2011","452","","" +"FR","F","POP","TOTAL","OC8","J","Y30-49","2011","1519","","" +"FR","F","POP","TOTAL","OC8","J","Y50-64","2011","887","","" +"FR","F","POP","TOTAL","OC8","J","Y65-84","2011","37","u","" +"FR","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","K","Y15-29","2011","330","","" +"FR","F","POP","TOTAL","OC8","K","Y30-49","2011","1401","","" +"FR","F","POP","TOTAL","OC8","K","Y50-64","2011","760","","" +"FR","F","POP","TOTAL","OC8","K","Y65-84","2011","32","u","" +"FR","F","POP","TOTAL","OC8","K","Y_GE85","2011","3","u","" +"FR","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","L","Y15-29","2011","127","","" +"FR","F","POP","TOTAL","OC8","L","Y30-49","2011","418","","" +"FR","F","POP","TOTAL","OC8","L","Y50-64","2011","220","","" +"FR","F","POP","TOTAL","OC8","L","Y65-84","2011","15","u","" +"FR","F","POP","TOTAL","OC8","L","Y_GE85","2011","1","u","" +"FR","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","M","Y15-29","2011","2121","","" +"FR","F","POP","TOTAL","OC8","M","Y30-49","2011","6645","","" +"FR","F","POP","TOTAL","OC8","M","Y50-64","2011","3253","","" +"FR","F","POP","TOTAL","OC8","M","Y65-84","2011","93","","" +"FR","F","POP","TOTAL","OC8","M","Y_GE85","2011","13","u","" +"FR","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","N","Y15-29","2011","15124","","" +"FR","F","POP","TOTAL","OC8","N","Y30-49","2011","22988","","" +"FR","F","POP","TOTAL","OC8","N","Y50-64","2011","6565","","" +"FR","F","POP","TOTAL","OC8","N","Y65-84","2011","151","","" +"FR","F","POP","TOTAL","OC8","N","Y_GE85","2011","54","","" +"FR","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","O","Y15-29","2011","517","","" +"FR","F","POP","TOTAL","OC8","O","Y30-49","2011","1521","","" +"FR","F","POP","TOTAL","OC8","O","Y50-64","2011","1072","","" +"FR","F","POP","TOTAL","OC8","O","Y65-84","2011","16","u","" +"FR","F","POP","TOTAL","OC8","O","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","P","Y15-29","2011","612","","" +"FR","F","POP","TOTAL","OC8","P","Y30-49","2011","1953","","" +"FR","F","POP","TOTAL","OC8","P","Y50-64","2011","957","","" +"FR","F","POP","TOTAL","OC8","P","Y65-84","2011","3","u","" +"FR","F","POP","TOTAL","OC8","P","Y_GE85","2011","15","u","" +"FR","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","Q","Y15-29","2011","2145","","" +"FR","F","POP","TOTAL","OC8","Q","Y30-49","2011","7786","","" +"FR","F","POP","TOTAL","OC8","Q","Y50-64","2011","3559","","" +"FR","F","POP","TOTAL","OC8","Q","Y65-84","2011","83","","" +"FR","F","POP","TOTAL","OC8","Q","Y_GE85","2011","15","u","" +"FR","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","R","Y15-29","2011","144","","" +"FR","F","POP","TOTAL","OC8","R","Y30-49","2011","357","","" +"FR","F","POP","TOTAL","OC8","R","Y50-64","2011","177","","" +"FR","F","POP","TOTAL","OC8","R","Y65-84","2011","4","u","" +"FR","F","POP","TOTAL","OC8","R","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","S","Y15-29","2011","1132","","" +"FR","F","POP","TOTAL","OC8","S","Y30-49","2011","4361","","" +"FR","F","POP","TOTAL","OC8","S","Y50-64","2011","2573","","" +"FR","F","POP","TOTAL","OC8","S","Y65-84","2011","121","","" +"FR","F","POP","TOTAL","OC8","S","Y_GE85","2011","49","u","" +"FR","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","T","Y15-29","2011","33","u","" +"FR","F","POP","TOTAL","OC8","T","Y30-49","2011","170","","" +"FR","F","POP","TOTAL","OC8","T","Y50-64","2011","171","","" +"FR","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC8","T","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC8","U","Y30-49","2011","11","u","" +"FR","F","POP","TOTAL","OC8","U","Y50-64","2011","11","u","" +"FR","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC8","UNK","Y15-29","2011","21215","","" +"FR","F","POP","TOTAL","OC8","UNK","Y30-49","2011","31866","","" +"FR","F","POP","TOTAL","OC8","UNK","Y50-64","2011","22750","","" +"FR","F","POP","TOTAL","OC8","UNK","Y65-84","2011","1548","","" +"FR","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","A","Y15-29","2011","575","","" +"FR","F","POP","TOTAL","OC9","A","Y30-49","2011","3011","","" +"FR","F","POP","TOTAL","OC9","A","Y50-64","2011","2642","","" +"FR","F","POP","TOTAL","OC9","A","Y65-84","2011","80","","" +"FR","F","POP","TOTAL","OC9","A","Y_GE85","2011","19","u","" +"FR","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","B","Y15-29","2011","77","","" +"FR","F","POP","TOTAL","OC9","B","Y30-49","2011","230","","" +"FR","F","POP","TOTAL","OC9","B","Y50-64","2011","96","","" +"FR","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","C","Y15-29","2011","3956","","" +"FR","F","POP","TOTAL","OC9","C","Y30-49","2011","18808","","" +"FR","F","POP","TOTAL","OC9","C","Y50-64","2011","11104","","" +"FR","F","POP","TOTAL","OC9","C","Y65-84","2011","132","","" +"FR","F","POP","TOTAL","OC9","C","Y_GE85","2011","32","u","" +"FR","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","D","Y15-29","2011","119","","" +"FR","F","POP","TOTAL","OC9","D","Y30-49","2011","410","","" +"FR","F","POP","TOTAL","OC9","D","Y50-64","2011","382","","" +"FR","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","E","Y15-29","2011","841","","" +"FR","F","POP","TOTAL","OC9","E","Y30-49","2011","3140","","" +"FR","F","POP","TOTAL","OC9","E","Y50-64","2011","1616","","" +"FR","F","POP","TOTAL","OC9","E","Y65-84","2011","29","u","" +"FR","F","POP","TOTAL","OC9","E","Y_GE85","2011","4","u","" +"FR","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","F","Y15-29","2011","794","","" +"FR","F","POP","TOTAL","OC9","F","Y30-49","2011","2925","","" +"FR","F","POP","TOTAL","OC9","F","Y50-64","2011","1920","","" +"FR","F","POP","TOTAL","OC9","F","Y65-84","2011","73","","" +"FR","F","POP","TOTAL","OC9","F","Y_GE85","2011","19","u","" +"FR","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","G","Y15-29","2011","21458","","" +"FR","F","POP","TOTAL","OC9","G","Y30-49","2011","46838","","" +"FR","F","POP","TOTAL","OC9","G","Y50-64","2011","19218","","" +"FR","F","POP","TOTAL","OC9","G","Y65-84","2011","286","","" +"FR","F","POP","TOTAL","OC9","G","Y_GE85","2011","53","","" +"FR","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","H","Y15-29","2011","2852","","" +"FR","F","POP","TOTAL","OC9","H","Y30-49","2011","8545","","" +"FR","F","POP","TOTAL","OC9","H","Y50-64","2011","4130","","" +"FR","F","POP","TOTAL","OC9","H","Y65-84","2011","71","","" +"FR","F","POP","TOTAL","OC9","H","Y_GE85","2011","5","u","" +"FR","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","I","Y15-29","2011","20997","","" +"FR","F","POP","TOTAL","OC9","I","Y30-49","2011","48743","","" +"FR","F","POP","TOTAL","OC9","I","Y50-64","2011","21412","","" +"FR","F","POP","TOTAL","OC9","I","Y65-84","2011","333","","" +"FR","F","POP","TOTAL","OC9","I","Y_GE85","2011","50","","" +"FR","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","J","Y15-29","2011","445","","" +"FR","F","POP","TOTAL","OC9","J","Y30-49","2011","1844","","" +"FR","F","POP","TOTAL","OC9","J","Y50-64","2011","1323","","" +"FR","F","POP","TOTAL","OC9","J","Y65-84","2011","47","u","" +"FR","F","POP","TOTAL","OC9","J","Y_GE85","2011","7","u","" +"FR","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","K","Y15-29","2011","1027","","" +"FR","F","POP","TOTAL","OC9","K","Y30-49","2011","3592","","" +"FR","F","POP","TOTAL","OC9","K","Y50-64","2011","3408","","" +"FR","F","POP","TOTAL","OC9","K","Y65-84","2011","46","u","" +"FR","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","L","Y15-29","2011","2248","","" +"FR","F","POP","TOTAL","OC9","L","Y30-49","2011","9186","","" +"FR","F","POP","TOTAL","OC9","L","Y50-64","2011","7546","","" +"FR","F","POP","TOTAL","OC9","L","Y65-84","2011","159","","" +"FR","F","POP","TOTAL","OC9","L","Y_GE85","2011","13","u","" +"FR","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","M","Y15-29","2011","1805","","" +"FR","F","POP","TOTAL","OC9","M","Y30-49","2011","6681","","" +"FR","F","POP","TOTAL","OC9","M","Y50-64","2011","4668","","" +"FR","F","POP","TOTAL","OC9","M","Y65-84","2011","138","","" +"FR","F","POP","TOTAL","OC9","M","Y_GE85","2011","6","u","" +"FR","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","N","Y15-29","2011","24418","","" +"FR","F","POP","TOTAL","OC9","N","Y30-49","2011","93221","","" +"FR","F","POP","TOTAL","OC9","N","Y50-64","2011","51816","","" +"FR","F","POP","TOTAL","OC9","N","Y65-84","2011","713","","" +"FR","F","POP","TOTAL","OC9","N","Y_GE85","2011","93","","" +"FR","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","O","Y15-29","2011","19383","","" +"FR","F","POP","TOTAL","OC9","O","Y30-49","2011","104844","","" +"FR","F","POP","TOTAL","OC9","O","Y50-64","2011","69872","","" +"FR","F","POP","TOTAL","OC9","O","Y65-84","2011","869","","" +"FR","F","POP","TOTAL","OC9","O","Y_GE85","2011","155","","" +"FR","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","P","Y15-29","2011","19932","","" +"FR","F","POP","TOTAL","OC9","P","Y30-49","2011","85781","","" +"FR","F","POP","TOTAL","OC9","P","Y50-64","2011","51979","","" +"FR","F","POP","TOTAL","OC9","P","Y65-84","2011","491","","" +"FR","F","POP","TOTAL","OC9","P","Y_GE85","2011","61","","" +"FR","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","Q","Y15-29","2011","88871","","" +"FR","F","POP","TOTAL","OC9","Q","Y30-49","2011","338328","","" +"FR","F","POP","TOTAL","OC9","Q","Y50-64","2011","217823","","" +"FR","F","POP","TOTAL","OC9","Q","Y65-84","2011","3951","","" +"FR","F","POP","TOTAL","OC9","Q","Y_GE85","2011","949","","" +"FR","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","R","Y15-29","2011","1518","","" +"FR","F","POP","TOTAL","OC9","R","Y30-49","2011","4435","","" +"FR","F","POP","TOTAL","OC9","R","Y50-64","2011","2849","","" +"FR","F","POP","TOTAL","OC9","R","Y65-84","2011","37","u","" +"FR","F","POP","TOTAL","OC9","R","Y_GE85","2011","8","u","" +"FR","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","S","Y15-29","2011","5703","","" +"FR","F","POP","TOTAL","OC9","S","Y30-49","2011","19858","","" +"FR","F","POP","TOTAL","OC9","S","Y50-64","2011","11743","","" +"FR","F","POP","TOTAL","OC9","S","Y65-84","2011","432","","" +"FR","F","POP","TOTAL","OC9","S","Y_GE85","2011","279","","" +"FR","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","T","Y15-29","2011","5722","","" +"FR","F","POP","TOTAL","OC9","T","Y30-49","2011","52081","","" +"FR","F","POP","TOTAL","OC9","T","Y50-64","2011","46528","","" +"FR","F","POP","TOTAL","OC9","T","Y65-84","2011","1088","","" +"FR","F","POP","TOTAL","OC9","T","Y_GE85","2011","300","","" +"FR","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","U","Y15-29","2011","28","u","" +"FR","F","POP","TOTAL","OC9","U","Y30-49","2011","231","","" +"FR","F","POP","TOTAL","OC9","U","Y50-64","2011","174","","" +"FR","F","POP","TOTAL","OC9","U","Y65-84","2011","3","u","" +"FR","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","OC9","UNK","Y15-29","2011","72641","","" +"FR","F","POP","TOTAL","OC9","UNK","Y30-49","2011","97891","","" +"FR","F","POP","TOTAL","OC9","UNK","Y50-64","2011","49624","","" +"FR","F","POP","TOTAL","OC9","UNK","Y65-84","2011","3318","","" +"FR","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"FR","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"FR","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"FR","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"FR","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"FR","F","POP","TOTAL","UNK","UNK","Y15-29","2011","408442","","" +"FR","F","POP","TOTAL","UNK","UNK","Y30-49","2011","114490","","" +"FR","F","POP","TOTAL","UNK","UNK","Y50-64","2011","79205","","" +"FR","F","POP","TOTAL","UNK","UNK","Y65-84","2011","11759","","" +"FR","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"FR","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","79","","" +"FR","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","NAP","Y15-29","2011","2217733","","" +"FR","M","POP","TOTAL","NAP","NAP","Y30-49","2011","694330","","" +"FR","M","POP","TOTAL","NAP","NAP","Y50-64","2011","2471558","","" +"FR","M","POP","TOTAL","NAP","NAP","Y65-84","2011","3935517","","" +"FR","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","480113","","" +"FR","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","6154521","","" +"FR","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","A","Y15-29","2011","108","","" +"FR","M","POP","TOTAL","OC0","A","Y30-49","2011","242","","" +"FR","M","POP","TOTAL","OC0","A","Y50-64","2011","54","","" +"FR","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC0","B","Y30-49","2011","16","u","" +"FR","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","C","Y15-29","2011","444","","" +"FR","M","POP","TOTAL","OC0","C","Y30-49","2011","1089","","" +"FR","M","POP","TOTAL","OC0","C","Y50-64","2011","224","","" +"FR","M","POP","TOTAL","OC0","C","Y65-84","2011","10","u","" +"FR","M","POP","TOTAL","OC0","C","Y_GE85","2011","3","u","" +"FR","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","D","Y15-29","2011","10","u","" +"FR","M","POP","TOTAL","OC0","D","Y30-49","2011","27","u","" +"FR","M","POP","TOTAL","OC0","D","Y50-64","2011","24","u","" +"FR","M","POP","TOTAL","OC0","D","Y65-84","2011","3","u","" +"FR","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","E","Y15-29","2011","17","u","" +"FR","M","POP","TOTAL","OC0","E","Y30-49","2011","47","u","" +"FR","M","POP","TOTAL","OC0","E","Y50-64","2011","26","u","" +"FR","M","POP","TOTAL","OC0","E","Y65-84","2011","3","u","" +"FR","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","F","Y15-29","2011","364","","" +"FR","M","POP","TOTAL","OC0","F","Y30-49","2011","443","","" +"FR","M","POP","TOTAL","OC0","F","Y50-64","2011","124","","" +"FR","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","G","Y15-29","2011","332","","" +"FR","M","POP","TOTAL","OC0","G","Y30-49","2011","432","","" +"FR","M","POP","TOTAL","OC0","G","Y50-64","2011","89","","" +"FR","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","H","Y15-29","2011","153","","" +"FR","M","POP","TOTAL","OC0","H","Y30-49","2011","474","","" +"FR","M","POP","TOTAL","OC0","H","Y50-64","2011","129","","" +"FR","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","I","Y15-29","2011","1635","","" +"FR","M","POP","TOTAL","OC0","I","Y30-49","2011","1538","","" +"FR","M","POP","TOTAL","OC0","I","Y50-64","2011","301","","" +"FR","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","J","Y15-29","2011","94","","" +"FR","M","POP","TOTAL","OC0","J","Y30-49","2011","205","","" +"FR","M","POP","TOTAL","OC0","J","Y50-64","2011","33","u","" +"FR","M","POP","TOTAL","OC0","J","Y65-84","2011","4","u","" +"FR","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","K","Y15-29","2011","43","u","" +"FR","M","POP","TOTAL","OC0","K","Y30-49","2011","162","","" +"FR","M","POP","TOTAL","OC0","K","Y50-64","2011","41","u","" +"FR","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","L","Y15-29","2011","35","u","" +"FR","M","POP","TOTAL","OC0","L","Y30-49","2011","111","","" +"FR","M","POP","TOTAL","OC0","L","Y50-64","2011","20","u","" +"FR","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","M","Y15-29","2011","135","","" +"FR","M","POP","TOTAL","OC0","M","Y30-49","2011","377","","" +"FR","M","POP","TOTAL","OC0","M","Y50-64","2011","76","","" +"FR","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","M","Y_GE85","2011","3","u","" +"FR","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","N","Y15-29","2011","453","","" +"FR","M","POP","TOTAL","OC0","N","Y30-49","2011","491","","" +"FR","M","POP","TOTAL","OC0","N","Y50-64","2011","151","","" +"FR","M","POP","TOTAL","OC0","N","Y65-84","2011","13","u","" +"FR","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","O","Y15-29","2011","77273","","" +"FR","M","POP","TOTAL","OC0","O","Y30-49","2011","118822","","" +"FR","M","POP","TOTAL","OC0","O","Y50-64","2011","19202","","" +"FR","M","POP","TOTAL","OC0","O","Y65-84","2011","457","","" +"FR","M","POP","TOTAL","OC0","O","Y_GE85","2011","233","","" +"FR","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","P","Y15-29","2011","925","","" +"FR","M","POP","TOTAL","OC0","P","Y30-49","2011","1218","","" +"FR","M","POP","TOTAL","OC0","P","Y50-64","2011","233","","" +"FR","M","POP","TOTAL","OC0","P","Y65-84","2011","4","u","" +"FR","M","POP","TOTAL","OC0","P","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","Q","Y15-29","2011","584","","" +"FR","M","POP","TOTAL","OC0","Q","Y30-49","2011","1129","","" +"FR","M","POP","TOTAL","OC0","Q","Y50-64","2011","229","","" +"FR","M","POP","TOTAL","OC0","Q","Y65-84","2011","5","u","" +"FR","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","R","Y15-29","2011","353","","" +"FR","M","POP","TOTAL","OC0","R","Y30-49","2011","511","","" +"FR","M","POP","TOTAL","OC0","R","Y50-64","2011","150","","" +"FR","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","S","Y15-29","2011","576","","" +"FR","M","POP","TOTAL","OC0","S","Y30-49","2011","958","","" +"FR","M","POP","TOTAL","OC0","S","Y50-64","2011","257","","" +"FR","M","POP","TOTAL","OC0","S","Y65-84","2011","6","u","" +"FR","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC0","T","Y30-49","2011","8","u","" +"FR","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC0","T","Y65-84","2011","3","u","" +"FR","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC0","U","Y30-49","2011","87","","" +"FR","M","POP","TOTAL","OC0","U","Y50-64","2011","3","u","" +"FR","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC0","UNK","Y15-29","2011","4197","","" +"FR","M","POP","TOTAL","OC0","UNK","Y30-49","2011","5335","","" +"FR","M","POP","TOTAL","OC0","UNK","Y50-64","2011","3213","","" +"FR","M","POP","TOTAL","OC0","UNK","Y65-84","2011","223","","" +"FR","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","A","Y15-29","2011","924","u","" +"FR","M","POP","TOTAL","OC1","A","Y30-49","2011","5500","u","" +"FR","M","POP","TOTAL","OC1","A","Y50-64","2011","3690","u","" +"FR","M","POP","TOTAL","OC1","A","Y65-84","2011","135","u","" +"FR","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","B","Y15-29","2011","164","u","" +"FR","M","POP","TOTAL","OC1","B","Y30-49","2011","1023","u","" +"FR","M","POP","TOTAL","OC1","B","Y50-64","2011","648","u","" +"FR","M","POP","TOTAL","OC1","B","Y65-84","2011","35","u","" +"FR","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","C","Y15-29","2011","18599","u","" +"FR","M","POP","TOTAL","OC1","C","Y30-49","2011","115981","u","" +"FR","M","POP","TOTAL","OC1","C","Y50-64","2011","55837","u","" +"FR","M","POP","TOTAL","OC1","C","Y65-84","2011","846","u","" +"FR","M","POP","TOTAL","OC1","C","Y_GE85","2011","110","u","" +"FR","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","D","Y15-29","2011","1685","u","" +"FR","M","POP","TOTAL","OC1","D","Y30-49","2011","8195","u","" +"FR","M","POP","TOTAL","OC1","D","Y50-64","2011","5817","u","" +"FR","M","POP","TOTAL","OC1","D","Y65-84","2011","30","u","" +"FR","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","E","Y15-29","2011","768","u","" +"FR","M","POP","TOTAL","OC1","E","Y30-49","2011","5034","u","" +"FR","M","POP","TOTAL","OC1","E","Y50-64","2011","2263","u","" +"FR","M","POP","TOTAL","OC1","E","Y65-84","2011","22","u","" +"FR","M","POP","TOTAL","OC1","E","Y_GE85","2011","9","u","" +"FR","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","F","Y15-29","2011","10204","u","" +"FR","M","POP","TOTAL","OC1","F","Y30-49","2011","45031","u","" +"FR","M","POP","TOTAL","OC1","F","Y50-64","2011","23401","u","" +"FR","M","POP","TOTAL","OC1","F","Y65-84","2011","341","u","" +"FR","M","POP","TOTAL","OC1","F","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","G","Y15-29","2011","8723","u","" +"FR","M","POP","TOTAL","OC1","G","Y30-49","2011","68195","u","" +"FR","M","POP","TOTAL","OC1","G","Y50-64","2011","29722","u","" +"FR","M","POP","TOTAL","OC1","G","Y65-84","2011","649","u","" +"FR","M","POP","TOTAL","OC1","G","Y_GE85","2011","35","u","" +"FR","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","H","Y15-29","2011","3496","u","" +"FR","M","POP","TOTAL","OC1","H","Y30-49","2011","34466","u","" +"FR","M","POP","TOTAL","OC1","H","Y50-64","2011","20268","u","" +"FR","M","POP","TOTAL","OC1","H","Y65-84","2011","360","u","" +"FR","M","POP","TOTAL","OC1","H","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","I","Y15-29","2011","6650","u","" +"FR","M","POP","TOTAL","OC1","I","Y30-49","2011","37302","u","" +"FR","M","POP","TOTAL","OC1","I","Y50-64","2011","14727","u","" +"FR","M","POP","TOTAL","OC1","I","Y65-84","2011","426","u","" +"FR","M","POP","TOTAL","OC1","I","Y_GE85","2011","22","u","" +"FR","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","J","Y15-29","2011","17194","u","" +"FR","M","POP","TOTAL","OC1","J","Y30-49","2011","53564","u","" +"FR","M","POP","TOTAL","OC1","J","Y50-64","2011","14969","u","" +"FR","M","POP","TOTAL","OC1","J","Y65-84","2011","194","u","" +"FR","M","POP","TOTAL","OC1","J","Y_GE85","2011","5","u","" +"FR","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","K","Y15-29","2011","9723","u","" +"FR","M","POP","TOTAL","OC1","K","Y30-49","2011","64353","u","" +"FR","M","POP","TOTAL","OC1","K","Y50-64","2011","35030","u","" +"FR","M","POP","TOTAL","OC1","K","Y65-84","2011","435","u","" +"FR","M","POP","TOTAL","OC1","K","Y_GE85","2011","37","u","" +"FR","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","L","Y15-29","2011","851","u","" +"FR","M","POP","TOTAL","OC1","L","Y30-49","2011","5476","u","" +"FR","M","POP","TOTAL","OC1","L","Y50-64","2011","3224","u","" +"FR","M","POP","TOTAL","OC1","L","Y65-84","2011","125","u","" +"FR","M","POP","TOTAL","OC1","L","Y_GE85","2011","7","u","" +"FR","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","M","Y15-29","2011","17154","u","" +"FR","M","POP","TOTAL","OC1","M","Y30-49","2011","61601","u","" +"FR","M","POP","TOTAL","OC1","M","Y50-64","2011","25999","u","" +"FR","M","POP","TOTAL","OC1","M","Y65-84","2011","557","u","" +"FR","M","POP","TOTAL","OC1","M","Y_GE85","2011","64","u","" +"FR","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","N","Y15-29","2011","4377","u","" +"FR","M","POP","TOTAL","OC1","N","Y30-49","2011","23255","u","" +"FR","M","POP","TOTAL","OC1","N","Y50-64","2011","10342","u","" +"FR","M","POP","TOTAL","OC1","N","Y65-84","2011","300","u","" +"FR","M","POP","TOTAL","OC1","N","Y_GE85","2011","35","u","" +"FR","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","O","Y15-29","2011","6154","u","" +"FR","M","POP","TOTAL","OC1","O","Y30-49","2011","44346","u","" +"FR","M","POP","TOTAL","OC1","O","Y50-64","2011","37889","u","" +"FR","M","POP","TOTAL","OC1","O","Y65-84","2011","467","u","" +"FR","M","POP","TOTAL","OC1","O","Y_GE85","2011","38","u","" +"FR","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","P","Y15-29","2011","2711","u","" +"FR","M","POP","TOTAL","OC1","P","Y30-49","2011","17311","u","" +"FR","M","POP","TOTAL","OC1","P","Y50-64","2011","15253","u","" +"FR","M","POP","TOTAL","OC1","P","Y65-84","2011","276","u","" +"FR","M","POP","TOTAL","OC1","P","Y_GE85","2011","1","u","" +"FR","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","Q","Y15-29","2011","2964","u","" +"FR","M","POP","TOTAL","OC1","Q","Y30-49","2011","37195","u","" +"FR","M","POP","TOTAL","OC1","Q","Y50-64","2011","43202","u","" +"FR","M","POP","TOTAL","OC1","Q","Y65-84","2011","2372","u","" +"FR","M","POP","TOTAL","OC1","Q","Y_GE85","2011","86","u","" +"FR","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","R","Y15-29","2011","1700","u","" +"FR","M","POP","TOTAL","OC1","R","Y30-49","2011","9619","u","" +"FR","M","POP","TOTAL","OC1","R","Y50-64","2011","4375","u","" +"FR","M","POP","TOTAL","OC1","R","Y65-84","2011","213","u","" +"FR","M","POP","TOTAL","OC1","R","Y_GE85","2011","25","u","" +"FR","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","S","Y15-29","2011","2331","u","" +"FR","M","POP","TOTAL","OC1","S","Y30-49","2011","15072","u","" +"FR","M","POP","TOTAL","OC1","S","Y50-64","2011","9198","u","" +"FR","M","POP","TOTAL","OC1","S","Y65-84","2011","214","u","" +"FR","M","POP","TOTAL","OC1","S","Y_GE85","2011","14","u","" +"FR","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","T","Y15-29","2011","5","u","" +"FR","M","POP","TOTAL","OC1","T","Y30-49","2011","59","u","" +"FR","M","POP","TOTAL","OC1","T","Y50-64","2011","32","u","" +"FR","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","U","Y15-29","2011","144","u","" +"FR","M","POP","TOTAL","OC1","U","Y30-49","2011","1368","u","" +"FR","M","POP","TOTAL","OC1","U","Y50-64","2011","879","u","" +"FR","M","POP","TOTAL","OC1","U","Y65-84","2011","161","u","" +"FR","M","POP","TOTAL","OC1","U","Y_GE85","2011","53","u","" +"FR","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC1","UNK","Y15-29","2011","8186","u","" +"FR","M","POP","TOTAL","OC1","UNK","Y30-49","2011","17840","u","" +"FR","M","POP","TOTAL","OC1","UNK","Y50-64","2011","12855","u","" +"FR","M","POP","TOTAL","OC1","UNK","Y65-84","2011","1288","u","" +"FR","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","A","Y15-29","2011","524","","" +"FR","M","POP","TOTAL","OC2","A","Y30-49","2011","3142","","" +"FR","M","POP","TOTAL","OC2","A","Y50-64","2011","2272","","" +"FR","M","POP","TOTAL","OC2","A","Y65-84","2011","98","","" +"FR","M","POP","TOTAL","OC2","A","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","B","Y15-29","2011","187","","" +"FR","M","POP","TOTAL","OC2","B","Y30-49","2011","846","","" +"FR","M","POP","TOTAL","OC2","B","Y50-64","2011","578","","" +"FR","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","C","Y15-29","2011","32989","","" +"FR","M","POP","TOTAL","OC2","C","Y30-49","2011","145592","","" +"FR","M","POP","TOTAL","OC2","C","Y50-64","2011","60449","","" +"FR","M","POP","TOTAL","OC2","C","Y65-84","2011","642","","" +"FR","M","POP","TOTAL","OC2","C","Y_GE85","2011","102","","" +"FR","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","D","Y15-29","2011","3885","","" +"FR","M","POP","TOTAL","OC2","D","Y30-49","2011","15367","","" +"FR","M","POP","TOTAL","OC2","D","Y50-64","2011","10233","","" +"FR","M","POP","TOTAL","OC2","D","Y65-84","2011","15","u","" +"FR","M","POP","TOTAL","OC2","D","Y_GE85","2011","7","u","" +"FR","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","E","Y15-29","2011","1166","","" +"FR","M","POP","TOTAL","OC2","E","Y30-49","2011","5029","","" +"FR","M","POP","TOTAL","OC2","E","Y50-64","2011","2245","","" +"FR","M","POP","TOTAL","OC2","E","Y65-84","2011","30","u","" +"FR","M","POP","TOTAL","OC2","E","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","F","Y15-29","2011","13495","","" +"FR","M","POP","TOTAL","OC2","F","Y30-49","2011","36248","","" +"FR","M","POP","TOTAL","OC2","F","Y50-64","2011","14621","","" +"FR","M","POP","TOTAL","OC2","F","Y65-84","2011","323","","" +"FR","M","POP","TOTAL","OC2","F","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","G","Y15-29","2011","31223","","" +"FR","M","POP","TOTAL","OC2","G","Y30-49","2011","111286","","" +"FR","M","POP","TOTAL","OC2","G","Y50-64","2011","42301","","" +"FR","M","POP","TOTAL","OC2","G","Y65-84","2011","886","","" +"FR","M","POP","TOTAL","OC2","G","Y_GE85","2011","55","","" +"FR","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","H","Y15-29","2011","3742","","" +"FR","M","POP","TOTAL","OC2","H","Y30-49","2011","24857","","" +"FR","M","POP","TOTAL","OC2","H","Y50-64","2011","14924","","" +"FR","M","POP","TOTAL","OC2","H","Y65-84","2011","209","","" +"FR","M","POP","TOTAL","OC2","H","Y_GE85","2011","6","u","" +"FR","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","I","Y15-29","2011","2316","","" +"FR","M","POP","TOTAL","OC2","I","Y30-49","2011","5833","","" +"FR","M","POP","TOTAL","OC2","I","Y50-64","2011","2454","","" +"FR","M","POP","TOTAL","OC2","I","Y65-84","2011","108","","" +"FR","M","POP","TOTAL","OC2","I","Y_GE85","2011","22","u","" +"FR","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","J","Y15-29","2011","54266","","" +"FR","M","POP","TOTAL","OC2","J","Y30-49","2011","143139","","" +"FR","M","POP","TOTAL","OC2","J","Y50-64","2011","37439","","" +"FR","M","POP","TOTAL","OC2","J","Y65-84","2011","947","","" +"FR","M","POP","TOTAL","OC2","J","Y_GE85","2011","106","","" +"FR","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","K","Y15-29","2011","9888","","" +"FR","M","POP","TOTAL","OC2","K","Y30-49","2011","41463","","" +"FR","M","POP","TOTAL","OC2","K","Y50-64","2011","18517","","" +"FR","M","POP","TOTAL","OC2","K","Y65-84","2011","389","","" +"FR","M","POP","TOTAL","OC2","K","Y_GE85","2011","36","u","" +"FR","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","L","Y15-29","2011","1451","","" +"FR","M","POP","TOTAL","OC2","L","Y30-49","2011","5293","","" +"FR","M","POP","TOTAL","OC2","L","Y50-64","2011","2865","","" +"FR","M","POP","TOTAL","OC2","L","Y65-84","2011","84","","" +"FR","M","POP","TOTAL","OC2","L","Y_GE85","2011","13","u","" +"FR","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","M","Y15-29","2011","55590","","" +"FR","M","POP","TOTAL","OC2","M","Y30-49","2011","177518","","" +"FR","M","POP","TOTAL","OC2","M","Y50-64","2011","88973","","" +"FR","M","POP","TOTAL","OC2","M","Y65-84","2011","5860","","" +"FR","M","POP","TOTAL","OC2","M","Y_GE85","2011","290","","" +"FR","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","N","Y15-29","2011","7991","","" +"FR","M","POP","TOTAL","OC2","N","Y30-49","2011","23854","","" +"FR","M","POP","TOTAL","OC2","N","Y50-64","2011","9682","","" +"FR","M","POP","TOTAL","OC2","N","Y65-84","2011","434","","" +"FR","M","POP","TOTAL","OC2","N","Y_GE85","2011","24","u","" +"FR","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","O","Y15-29","2011","9419","","" +"FR","M","POP","TOTAL","OC2","O","Y30-49","2011","53288","","" +"FR","M","POP","TOTAL","OC2","O","Y50-64","2011","38673","","" +"FR","M","POP","TOTAL","OC2","O","Y65-84","2011","551","","" +"FR","M","POP","TOTAL","OC2","O","Y_GE85","2011","52","","" +"FR","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","P","Y15-29","2011","43289","","" +"FR","M","POP","TOTAL","OC2","P","Y30-49","2011","226161","","" +"FR","M","POP","TOTAL","OC2","P","Y50-64","2011","123992","","" +"FR","M","POP","TOTAL","OC2","P","Y65-84","2011","2466","","" +"FR","M","POP","TOTAL","OC2","P","Y_GE85","2011","154","","" +"FR","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","Q","Y15-29","2011","18957","","" +"FR","M","POP","TOTAL","OC2","Q","Y30-49","2011","66436","","" +"FR","M","POP","TOTAL","OC2","Q","Y50-64","2011","62203","","" +"FR","M","POP","TOTAL","OC2","Q","Y65-84","2011","3725","","" +"FR","M","POP","TOTAL","OC2","Q","Y_GE85","2011","218","","" +"FR","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","R","Y15-29","2011","8078","","" +"FR","M","POP","TOTAL","OC2","R","Y30-49","2011","31645","","" +"FR","M","POP","TOTAL","OC2","R","Y50-64","2011","14632","","" +"FR","M","POP","TOTAL","OC2","R","Y65-84","2011","1258","","" +"FR","M","POP","TOTAL","OC2","R","Y_GE85","2011","91","","" +"FR","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","S","Y15-29","2011","6488","","" +"FR","M","POP","TOTAL","OC2","S","Y30-49","2011","29063","","" +"FR","M","POP","TOTAL","OC2","S","Y50-64","2011","15486","","" +"FR","M","POP","TOTAL","OC2","S","Y65-84","2011","3178","","" +"FR","M","POP","TOTAL","OC2","S","Y_GE85","2011","746","","" +"FR","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","T","Y15-29","2011","35","u","" +"FR","M","POP","TOTAL","OC2","T","Y30-49","2011","208","","" +"FR","M","POP","TOTAL","OC2","T","Y50-64","2011","104","","" +"FR","M","POP","TOTAL","OC2","T","Y65-84","2011","12","u","" +"FR","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","U","Y15-29","2011","135","","" +"FR","M","POP","TOTAL","OC2","U","Y30-49","2011","1439","","" +"FR","M","POP","TOTAL","OC2","U","Y50-64","2011","894","","" +"FR","M","POP","TOTAL","OC2","U","Y65-84","2011","36","u","" +"FR","M","POP","TOTAL","OC2","U","Y_GE85","2011","3","u","" +"FR","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC2","UNK","Y15-29","2011","30219","","" +"FR","M","POP","TOTAL","OC2","UNK","Y30-49","2011","48918","","" +"FR","M","POP","TOTAL","OC2","UNK","Y50-64","2011","26693","","" +"FR","M","POP","TOTAL","OC2","UNK","Y65-84","2011","3056","","" +"FR","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","A","Y15-29","2011","4834","","" +"FR","M","POP","TOTAL","OC3","A","Y30-49","2011","12655","","" +"FR","M","POP","TOTAL","OC3","A","Y50-64","2011","6302","","" +"FR","M","POP","TOTAL","OC3","A","Y65-84","2011","75","","" +"FR","M","POP","TOTAL","OC3","A","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","B","Y15-29","2011","372","","" +"FR","M","POP","TOTAL","OC3","B","Y30-49","2011","1884","","" +"FR","M","POP","TOTAL","OC3","B","Y50-64","2011","992","","" +"FR","M","POP","TOTAL","OC3","B","Y65-84","2011","4","u","" +"FR","M","POP","TOTAL","OC3","B","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","C","Y15-29","2011","70005","","" +"FR","M","POP","TOTAL","OC3","C","Y30-49","2011","250226","","" +"FR","M","POP","TOTAL","OC3","C","Y50-64","2011","108040","","" +"FR","M","POP","TOTAL","OC3","C","Y65-84","2011","568","","" +"FR","M","POP","TOTAL","OC3","C","Y_GE85","2011","73","","" +"FR","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","D","Y15-29","2011","8805","","" +"FR","M","POP","TOTAL","OC3","D","Y30-49","2011","31587","","" +"FR","M","POP","TOTAL","OC3","D","Y50-64","2011","15883","","" +"FR","M","POP","TOTAL","OC3","D","Y65-84","2011","48","u","" +"FR","M","POP","TOTAL","OC3","D","Y_GE85","2011","39","u","" +"FR","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","E","Y15-29","2011","5519","","" +"FR","M","POP","TOTAL","OC3","E","Y30-49","2011","18676","","" +"FR","M","POP","TOTAL","OC3","E","Y50-64","2011","7606","","" +"FR","M","POP","TOTAL","OC3","E","Y65-84","2011","55","","" +"FR","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","F","Y15-29","2011","42698","","" +"FR","M","POP","TOTAL","OC3","F","Y30-49","2011","103633","","" +"FR","M","POP","TOTAL","OC3","F","Y50-64","2011","38917","","" +"FR","M","POP","TOTAL","OC3","F","Y65-84","2011","394","","" +"FR","M","POP","TOTAL","OC3","F","Y_GE85","2011","42","u","" +"FR","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","G","Y15-29","2011","59348","","" +"FR","M","POP","TOTAL","OC3","G","Y30-49","2011","141332","","" +"FR","M","POP","TOTAL","OC3","G","Y50-64","2011","50730","","" +"FR","M","POP","TOTAL","OC3","G","Y65-84","2011","780","","" +"FR","M","POP","TOTAL","OC3","G","Y_GE85","2011","84","","" +"FR","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","H","Y15-29","2011","16110","","" +"FR","M","POP","TOTAL","OC3","H","Y30-49","2011","66997","","" +"FR","M","POP","TOTAL","OC3","H","Y50-64","2011","33015","","" +"FR","M","POP","TOTAL","OC3","H","Y65-84","2011","208","","" +"FR","M","POP","TOTAL","OC3","H","Y_GE85","2011","28","u","" +"FR","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","I","Y15-29","2011","9990","","" +"FR","M","POP","TOTAL","OC3","I","Y30-49","2011","25702","","" +"FR","M","POP","TOTAL","OC3","I","Y50-64","2011","7379","","" +"FR","M","POP","TOTAL","OC3","I","Y65-84","2011","151","","" +"FR","M","POP","TOTAL","OC3","I","Y_GE85","2011","20","u","" +"FR","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","J","Y15-29","2011","23197","","" +"FR","M","POP","TOTAL","OC3","J","Y30-49","2011","47064","","" +"FR","M","POP","TOTAL","OC3","J","Y50-64","2011","24084","","" +"FR","M","POP","TOTAL","OC3","J","Y65-84","2011","136","","" +"FR","M","POP","TOTAL","OC3","J","Y_GE85","2011","18","u","" +"FR","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","K","Y15-29","2011","22743","","" +"FR","M","POP","TOTAL","OC3","K","Y30-49","2011","64669","","" +"FR","M","POP","TOTAL","OC3","K","Y50-64","2011","38804","","" +"FR","M","POP","TOTAL","OC3","K","Y65-84","2011","505","","" +"FR","M","POP","TOTAL","OC3","K","Y_GE85","2011","53","","" +"FR","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","L","Y15-29","2011","12257","","" +"FR","M","POP","TOTAL","OC3","L","Y30-49","2011","38007","","" +"FR","M","POP","TOTAL","OC3","L","Y50-64","2011","20014","","" +"FR","M","POP","TOTAL","OC3","L","Y65-84","2011","727","","" +"FR","M","POP","TOTAL","OC3","L","Y_GE85","2011","57","","" +"FR","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","M","Y15-29","2011","46134","","" +"FR","M","POP","TOTAL","OC3","M","Y30-49","2011","88261","","" +"FR","M","POP","TOTAL","OC3","M","Y50-64","2011","31328","","" +"FR","M","POP","TOTAL","OC3","M","Y65-84","2011","678","","" +"FR","M","POP","TOTAL","OC3","M","Y_GE85","2011","90","","" +"FR","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","N","Y15-29","2011","29222","","" +"FR","M","POP","TOTAL","OC3","N","Y30-49","2011","49510","","" +"FR","M","POP","TOTAL","OC3","N","Y50-64","2011","13955","","" +"FR","M","POP","TOTAL","OC3","N","Y65-84","2011","217","","" +"FR","M","POP","TOTAL","OC3","N","Y_GE85","2011","40","u","" +"FR","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","O","Y15-29","2011","29454","","" +"FR","M","POP","TOTAL","OC3","O","Y30-49","2011","140283","","" +"FR","M","POP","TOTAL","OC3","O","Y50-64","2011","79742","","" +"FR","M","POP","TOTAL","OC3","O","Y65-84","2011","378","","" +"FR","M","POP","TOTAL","OC3","O","Y_GE85","2011","83","","" +"FR","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","P","Y15-29","2011","25018","","" +"FR","M","POP","TOTAL","OC3","P","Y30-49","2011","35034","","" +"FR","M","POP","TOTAL","OC3","P","Y50-64","2011","13352","","" +"FR","M","POP","TOTAL","OC3","P","Y65-84","2011","222","","" +"FR","M","POP","TOTAL","OC3","P","Y_GE85","2011","43","u","" +"FR","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","Q","Y15-29","2011","34291","","" +"FR","M","POP","TOTAL","OC3","Q","Y30-49","2011","109230","","" +"FR","M","POP","TOTAL","OC3","Q","Y50-64","2011","47347","","" +"FR","M","POP","TOTAL","OC3","Q","Y65-84","2011","374","","" +"FR","M","POP","TOTAL","OC3","Q","Y_GE85","2011","77","","" +"FR","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","R","Y15-29","2011","19083","","" +"FR","M","POP","TOTAL","OC3","R","Y30-49","2011","32033","","" +"FR","M","POP","TOTAL","OC3","R","Y50-64","2011","8940","","" +"FR","M","POP","TOTAL","OC3","R","Y65-84","2011","156","","" +"FR","M","POP","TOTAL","OC3","R","Y_GE85","2011","21","u","" +"FR","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","S","Y15-29","2011","12541","","" +"FR","M","POP","TOTAL","OC3","S","Y30-49","2011","31825","","" +"FR","M","POP","TOTAL","OC3","S","Y50-64","2011","13213","","" +"FR","M","POP","TOTAL","OC3","S","Y65-84","2011","381","","" +"FR","M","POP","TOTAL","OC3","S","Y_GE85","2011","194","","" +"FR","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","T","Y15-29","2011","58","","" +"FR","M","POP","TOTAL","OC3","T","Y30-49","2011","222","","" +"FR","M","POP","TOTAL","OC3","T","Y50-64","2011","154","","" +"FR","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","U","Y15-29","2011","167","","" +"FR","M","POP","TOTAL","OC3","U","Y30-49","2011","1202","","" +"FR","M","POP","TOTAL","OC3","U","Y50-64","2011","689","","" +"FR","M","POP","TOTAL","OC3","U","Y65-84","2011","15","u","" +"FR","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC3","UNK","Y15-29","2011","72037","","" +"FR","M","POP","TOTAL","OC3","UNK","Y30-49","2011","88627","","" +"FR","M","POP","TOTAL","OC3","UNK","Y50-64","2011","46405","","" +"FR","M","POP","TOTAL","OC3","UNK","Y65-84","2011","3518","","" +"FR","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","A","Y15-29","2011","428","","" +"FR","M","POP","TOTAL","OC4","A","Y30-49","2011","1229","","" +"FR","M","POP","TOTAL","OC4","A","Y50-64","2011","699","","" +"FR","M","POP","TOTAL","OC4","A","Y65-84","2011","22","u","" +"FR","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","B","Y15-29","2011","77","","" +"FR","M","POP","TOTAL","OC4","B","Y30-49","2011","176","","" +"FR","M","POP","TOTAL","OC4","B","Y50-64","2011","112","","" +"FR","M","POP","TOTAL","OC4","B","Y65-84","2011","7","u","" +"FR","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","C","Y15-29","2011","7080","","" +"FR","M","POP","TOTAL","OC4","C","Y30-49","2011","21428","","" +"FR","M","POP","TOTAL","OC4","C","Y50-64","2011","10014","","" +"FR","M","POP","TOTAL","OC4","C","Y65-84","2011","79","","" +"FR","M","POP","TOTAL","OC4","C","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","D","Y15-29","2011","675","","" +"FR","M","POP","TOTAL","OC4","D","Y30-49","2011","1906","","" +"FR","M","POP","TOTAL","OC4","D","Y50-64","2011","1069","","" +"FR","M","POP","TOTAL","OC4","D","Y65-84","2011","16","u","" +"FR","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","E","Y15-29","2011","985","","" +"FR","M","POP","TOTAL","OC4","E","Y30-49","2011","3596","","" +"FR","M","POP","TOTAL","OC4","E","Y50-64","2011","1441","","" +"FR","M","POP","TOTAL","OC4","E","Y65-84","2011","13","u","" +"FR","M","POP","TOTAL","OC4","E","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","F","Y15-29","2011","3180","","" +"FR","M","POP","TOTAL","OC4","F","Y30-49","2011","5930","","" +"FR","M","POP","TOTAL","OC4","F","Y50-64","2011","2174","","" +"FR","M","POP","TOTAL","OC4","F","Y65-84","2011","27","u","" +"FR","M","POP","TOTAL","OC4","F","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","G","Y15-29","2011","12221","","" +"FR","M","POP","TOTAL","OC4","G","Y30-49","2011","34653","","" +"FR","M","POP","TOTAL","OC4","G","Y50-64","2011","11274","","" +"FR","M","POP","TOTAL","OC4","G","Y65-84","2011","153","","" +"FR","M","POP","TOTAL","OC4","G","Y_GE85","2011","26","u","" +"FR","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","H","Y15-29","2011","21681","","" +"FR","M","POP","TOTAL","OC4","H","Y30-49","2011","73818","","" +"FR","M","POP","TOTAL","OC4","H","Y50-64","2011","37736","","" +"FR","M","POP","TOTAL","OC4","H","Y65-84","2011","310","","" +"FR","M","POP","TOTAL","OC4","H","Y_GE85","2011","61","","" +"FR","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","I","Y15-29","2011","8169","","" +"FR","M","POP","TOTAL","OC4","I","Y30-49","2011","15466","","" +"FR","M","POP","TOTAL","OC4","I","Y50-64","2011","4613","","" +"FR","M","POP","TOTAL","OC4","I","Y65-84","2011","122","","" +"FR","M","POP","TOTAL","OC4","I","Y_GE85","2011","21","u","" +"FR","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","J","Y15-29","2011","5194","","" +"FR","M","POP","TOTAL","OC4","J","Y30-49","2011","7394","","" +"FR","M","POP","TOTAL","OC4","J","Y50-64","2011","4028","","" +"FR","M","POP","TOTAL","OC4","J","Y65-84","2011","47","u","" +"FR","M","POP","TOTAL","OC4","J","Y_GE85","2011","5","u","" +"FR","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","K","Y15-29","2011","14917","","" +"FR","M","POP","TOTAL","OC4","K","Y30-49","2011","22874","","" +"FR","M","POP","TOTAL","OC4","K","Y50-64","2011","13574","","" +"FR","M","POP","TOTAL","OC4","K","Y65-84","2011","114","","" +"FR","M","POP","TOTAL","OC4","K","Y_GE85","2011","21","u","" +"FR","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","L","Y15-29","2011","2511","","" +"FR","M","POP","TOTAL","OC4","L","Y30-49","2011","4665","","" +"FR","M","POP","TOTAL","OC4","L","Y50-64","2011","2233","","" +"FR","M","POP","TOTAL","OC4","L","Y65-84","2011","30","u","" +"FR","M","POP","TOTAL","OC4","L","Y_GE85","2011","5","u","" +"FR","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","M","Y15-29","2011","11820","","" +"FR","M","POP","TOTAL","OC4","M","Y30-49","2011","15949","","" +"FR","M","POP","TOTAL","OC4","M","Y50-64","2011","4940","","" +"FR","M","POP","TOTAL","OC4","M","Y65-84","2011","100","","" +"FR","M","POP","TOTAL","OC4","M","Y_GE85","2011","44","u","" +"FR","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","N","Y15-29","2011","9634","","" +"FR","M","POP","TOTAL","OC4","N","Y30-49","2011","13203","","" +"FR","M","POP","TOTAL","OC4","N","Y50-64","2011","3250","","" +"FR","M","POP","TOTAL","OC4","N","Y65-84","2011","53","","" +"FR","M","POP","TOTAL","OC4","N","Y_GE85","2011","12","u","" +"FR","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","O","Y15-29","2011","16631","","" +"FR","M","POP","TOTAL","OC4","O","Y30-49","2011","77438","","" +"FR","M","POP","TOTAL","OC4","O","Y50-64","2011","40023","","" +"FR","M","POP","TOTAL","OC4","O","Y65-84","2011","233","","" +"FR","M","POP","TOTAL","OC4","O","Y_GE85","2011","33","u","" +"FR","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","P","Y15-29","2011","3808","","" +"FR","M","POP","TOTAL","OC4","P","Y30-49","2011","11669","","" +"FR","M","POP","TOTAL","OC4","P","Y50-64","2011","5518","","" +"FR","M","POP","TOTAL","OC4","P","Y65-84","2011","53","","" +"FR","M","POP","TOTAL","OC4","P","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","Q","Y15-29","2011","3605","","" +"FR","M","POP","TOTAL","OC4","Q","Y30-49","2011","11843","","" +"FR","M","POP","TOTAL","OC4","Q","Y50-64","2011","6729","","" +"FR","M","POP","TOTAL","OC4","Q","Y65-84","2011","90","","" +"FR","M","POP","TOTAL","OC4","Q","Y_GE85","2011","34","u","" +"FR","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","R","Y15-29","2011","2789","","" +"FR","M","POP","TOTAL","OC4","R","Y30-49","2011","5794","","" +"FR","M","POP","TOTAL","OC4","R","Y50-64","2011","2344","","" +"FR","M","POP","TOTAL","OC4","R","Y65-84","2011","29","u","" +"FR","M","POP","TOTAL","OC4","R","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","S","Y15-29","2011","3074","","" +"FR","M","POP","TOTAL","OC4","S","Y30-49","2011","8169","","" +"FR","M","POP","TOTAL","OC4","S","Y50-64","2011","3763","","" +"FR","M","POP","TOTAL","OC4","S","Y65-84","2011","80","","" +"FR","M","POP","TOTAL","OC4","S","Y_GE85","2011","12","u","" +"FR","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","T","Y15-29","2011","57","","" +"FR","M","POP","TOTAL","OC4","T","Y30-49","2011","118","","" +"FR","M","POP","TOTAL","OC4","T","Y50-64","2011","55","","" +"FR","M","POP","TOTAL","OC4","T","Y65-84","2011","3","u","" +"FR","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","U","Y15-29","2011","107","","" +"FR","M","POP","TOTAL","OC4","U","Y30-49","2011","917","","" +"FR","M","POP","TOTAL","OC4","U","Y50-64","2011","528","","" +"FR","M","POP","TOTAL","OC4","U","Y65-84","2011","29","u","" +"FR","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC4","UNK","Y15-29","2011","23956","","" +"FR","M","POP","TOTAL","OC4","UNK","Y30-49","2011","23539","","" +"FR","M","POP","TOTAL","OC4","UNK","Y50-64","2011","13728","","" +"FR","M","POP","TOTAL","OC4","UNK","Y65-84","2011","1120","","" +"FR","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","A","Y15-29","2011","1471","","" +"FR","M","POP","TOTAL","OC5","A","Y30-49","2011","3693","","" +"FR","M","POP","TOTAL","OC5","A","Y50-64","2011","2020","","" +"FR","M","POP","TOTAL","OC5","A","Y65-84","2011","107","","" +"FR","M","POP","TOTAL","OC5","A","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","B","Y15-29","2011","56","","" +"FR","M","POP","TOTAL","OC5","B","Y30-49","2011","152","","" +"FR","M","POP","TOTAL","OC5","B","Y50-64","2011","58","","" +"FR","M","POP","TOTAL","OC5","B","Y65-84","2011","7","u","" +"FR","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","C","Y15-29","2011","7064","","" +"FR","M","POP","TOTAL","OC5","C","Y30-49","2011","14110","","" +"FR","M","POP","TOTAL","OC5","C","Y50-64","2011","6491","","" +"FR","M","POP","TOTAL","OC5","C","Y65-84","2011","150","","" +"FR","M","POP","TOTAL","OC5","C","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","D","Y15-29","2011","300","","" +"FR","M","POP","TOTAL","OC5","D","Y30-49","2011","746","","" +"FR","M","POP","TOTAL","OC5","D","Y50-64","2011","420","","" +"FR","M","POP","TOTAL","OC5","D","Y65-84","2011","21","u","" +"FR","M","POP","TOTAL","OC5","D","Y_GE85","2011","1","u","" +"FR","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","E","Y15-29","2011","441","","" +"FR","M","POP","TOTAL","OC5","E","Y30-49","2011","1097","","" +"FR","M","POP","TOTAL","OC5","E","Y50-64","2011","449","","" +"FR","M","POP","TOTAL","OC5","E","Y65-84","2011","19","u","" +"FR","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","F","Y15-29","2011","3799","","" +"FR","M","POP","TOTAL","OC5","F","Y30-49","2011","5814","","" +"FR","M","POP","TOTAL","OC5","F","Y50-64","2011","2522","","" +"FR","M","POP","TOTAL","OC5","F","Y65-84","2011","74","","" +"FR","M","POP","TOTAL","OC5","F","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","G","Y15-29","2011","119268","","" +"FR","M","POP","TOTAL","OC5","G","Y30-49","2011","246326","","" +"FR","M","POP","TOTAL","OC5","G","Y50-64","2011","94591","","" +"FR","M","POP","TOTAL","OC5","G","Y65-84","2011","3282","","" +"FR","M","POP","TOTAL","OC5","G","Y_GE85","2011","192","","" +"FR","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","H","Y15-29","2011","4173","","" +"FR","M","POP","TOTAL","OC5","H","Y30-49","2011","16993","","" +"FR","M","POP","TOTAL","OC5","H","Y50-64","2011","4873","","" +"FR","M","POP","TOTAL","OC5","H","Y65-84","2011","83","","" +"FR","M","POP","TOTAL","OC5","H","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","I","Y15-29","2011","86469","","" +"FR","M","POP","TOTAL","OC5","I","Y30-49","2011","116490","","" +"FR","M","POP","TOTAL","OC5","I","Y50-64","2011","40356","","" +"FR","M","POP","TOTAL","OC5","I","Y65-84","2011","1243","","" +"FR","M","POP","TOTAL","OC5","I","Y_GE85","2011","107","","" +"FR","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","J","Y15-29","2011","3870","","" +"FR","M","POP","TOTAL","OC5","J","Y30-49","2011","9896","","" +"FR","M","POP","TOTAL","OC5","J","Y50-64","2011","3566","","" +"FR","M","POP","TOTAL","OC5","J","Y65-84","2011","191","","" +"FR","M","POP","TOTAL","OC5","J","Y_GE85","2011","30","u","" +"FR","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","K","Y15-29","2011","3397","","" +"FR","M","POP","TOTAL","OC5","K","Y30-49","2011","7749","","" +"FR","M","POP","TOTAL","OC5","K","Y50-64","2011","4257","","" +"FR","M","POP","TOTAL","OC5","K","Y65-84","2011","157","","" +"FR","M","POP","TOTAL","OC5","K","Y_GE85","2011","13","u","" +"FR","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","L","Y15-29","2011","4743","","" +"FR","M","POP","TOTAL","OC5","L","Y30-49","2011","13991","","" +"FR","M","POP","TOTAL","OC5","L","Y50-64","2011","9123","","" +"FR","M","POP","TOTAL","OC5","L","Y65-84","2011","322","","" +"FR","M","POP","TOTAL","OC5","L","Y_GE85","2011","16","u","" +"FR","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","M","Y15-29","2011","4327","","" +"FR","M","POP","TOTAL","OC5","M","Y30-49","2011","16866","","" +"FR","M","POP","TOTAL","OC5","M","Y50-64","2011","8798","","" +"FR","M","POP","TOTAL","OC5","M","Y65-84","2011","533","","" +"FR","M","POP","TOTAL","OC5","M","Y_GE85","2011","29","u","" +"FR","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","N","Y15-29","2011","29774","","" +"FR","M","POP","TOTAL","OC5","N","Y30-49","2011","63873","","" +"FR","M","POP","TOTAL","OC5","N","Y50-64","2011","19714","","" +"FR","M","POP","TOTAL","OC5","N","Y65-84","2011","469","","" +"FR","M","POP","TOTAL","OC5","N","Y_GE85","2011","39","u","" +"FR","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","O","Y15-29","2011","37883","","" +"FR","M","POP","TOTAL","OC5","O","Y30-49","2011","101494","","" +"FR","M","POP","TOTAL","OC5","O","Y50-64","2011","22336","","" +"FR","M","POP","TOTAL","OC5","O","Y65-84","2011","228","","" +"FR","M","POP","TOTAL","OC5","O","Y_GE85","2011","57","","" +"FR","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","P","Y15-29","2011","7690","","" +"FR","M","POP","TOTAL","OC5","P","Y30-49","2011","16824","","" +"FR","M","POP","TOTAL","OC5","P","Y50-64","2011","7764","","" +"FR","M","POP","TOTAL","OC5","P","Y65-84","2011","270","","" +"FR","M","POP","TOTAL","OC5","P","Y_GE85","2011","6","u","" +"FR","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","Q","Y15-29","2011","13203","","" +"FR","M","POP","TOTAL","OC5","Q","Y30-49","2011","44250","","" +"FR","M","POP","TOTAL","OC5","Q","Y50-64","2011","17073","","" +"FR","M","POP","TOTAL","OC5","Q","Y65-84","2011","279","","" +"FR","M","POP","TOTAL","OC5","Q","Y_GE85","2011","47","u","" +"FR","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","R","Y15-29","2011","5615","","" +"FR","M","POP","TOTAL","OC5","R","Y30-49","2011","8897","","" +"FR","M","POP","TOTAL","OC5","R","Y50-64","2011","2843","","" +"FR","M","POP","TOTAL","OC5","R","Y65-84","2011","127","","" +"FR","M","POP","TOTAL","OC5","R","Y_GE85","2011","15","u","" +"FR","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","S","Y15-29","2011","9707","","" +"FR","M","POP","TOTAL","OC5","S","Y30-49","2011","24731","","" +"FR","M","POP","TOTAL","OC5","S","Y50-64","2011","11557","","" +"FR","M","POP","TOTAL","OC5","S","Y65-84","2011","592","","" +"FR","M","POP","TOTAL","OC5","S","Y_GE85","2011","52","","" +"FR","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","T","Y15-29","2011","134","","" +"FR","M","POP","TOTAL","OC5","T","Y30-49","2011","639","","" +"FR","M","POP","TOTAL","OC5","T","Y50-64","2011","433","","" +"FR","M","POP","TOTAL","OC5","T","Y65-84","2011","23","u","" +"FR","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","U","Y15-29","2011","62","","" +"FR","M","POP","TOTAL","OC5","U","Y30-49","2011","315","","" +"FR","M","POP","TOTAL","OC5","U","Y50-64","2011","171","","" +"FR","M","POP","TOTAL","OC5","U","Y65-84","2011","19","u","" +"FR","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC5","UNK","Y15-29","2011","83907","","" +"FR","M","POP","TOTAL","OC5","UNK","Y30-49","2011","77030","","" +"FR","M","POP","TOTAL","OC5","UNK","Y50-64","2011","37191","","" +"FR","M","POP","TOTAL","OC5","UNK","Y65-84","2011","2471","","" +"FR","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","A","Y15-29","2011","62676","","" +"FR","M","POP","TOTAL","OC6","A","Y30-49","2011","206599","","" +"FR","M","POP","TOTAL","OC6","A","Y50-64","2011","126447","","" +"FR","M","POP","TOTAL","OC6","A","Y65-84","2011","5786","","" +"FR","M","POP","TOTAL","OC6","A","Y_GE85","2011","627","","" +"FR","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","B","Y15-29","2011","36","u","" +"FR","M","POP","TOTAL","OC6","B","Y30-49","2011","249","","" +"FR","M","POP","TOTAL","OC6","B","Y50-64","2011","86","","" +"FR","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","C","Y15-29","2011","1798","","" +"FR","M","POP","TOTAL","OC6","C","Y30-49","2011","4519","","" +"FR","M","POP","TOTAL","OC6","C","Y50-64","2011","2619","","" +"FR","M","POP","TOTAL","OC6","C","Y65-84","2011","90","","" +"FR","M","POP","TOTAL","OC6","C","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","D","Y15-29","2011","46","u","" +"FR","M","POP","TOTAL","OC6","D","Y30-49","2011","107","","" +"FR","M","POP","TOTAL","OC6","D","Y50-64","2011","101","","" +"FR","M","POP","TOTAL","OC6","D","Y65-84","2011","8","u","" +"FR","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","E","Y15-29","2011","164","","" +"FR","M","POP","TOTAL","OC6","E","Y30-49","2011","373","","" +"FR","M","POP","TOTAL","OC6","E","Y50-64","2011","236","","" +"FR","M","POP","TOTAL","OC6","E","Y65-84","2011","17","u","" +"FR","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","F","Y15-29","2011","2257","","" +"FR","M","POP","TOTAL","OC6","F","Y30-49","2011","2741","","" +"FR","M","POP","TOTAL","OC6","F","Y50-64","2011","1260","","" +"FR","M","POP","TOTAL","OC6","F","Y65-84","2011","53","","" +"FR","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","G","Y15-29","2011","3015","","" +"FR","M","POP","TOTAL","OC6","G","Y30-49","2011","4981","","" +"FR","M","POP","TOTAL","OC6","G","Y50-64","2011","2590","","" +"FR","M","POP","TOTAL","OC6","G","Y65-84","2011","82","","" +"FR","M","POP","TOTAL","OC6","G","Y_GE85","2011","10","u","" +"FR","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","H","Y15-29","2011","303","","" +"FR","M","POP","TOTAL","OC6","H","Y30-49","2011","887","","" +"FR","M","POP","TOTAL","OC6","H","Y50-64","2011","628","","" +"FR","M","POP","TOTAL","OC6","H","Y65-84","2011","19","u","" +"FR","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","I","Y15-29","2011","637","","" +"FR","M","POP","TOTAL","OC6","I","Y30-49","2011","1156","","" +"FR","M","POP","TOTAL","OC6","I","Y50-64","2011","678","","" +"FR","M","POP","TOTAL","OC6","I","Y65-84","2011","13","u","" +"FR","M","POP","TOTAL","OC6","I","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","J","Y15-29","2011","55","","" +"FR","M","POP","TOTAL","OC6","J","Y30-49","2011","198","","" +"FR","M","POP","TOTAL","OC6","J","Y50-64","2011","120","","" +"FR","M","POP","TOTAL","OC6","J","Y65-84","2011","3","u","" +"FR","M","POP","TOTAL","OC6","J","Y_GE85","2011","3","u","" +"FR","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","K","Y15-29","2011","196","","" +"FR","M","POP","TOTAL","OC6","K","Y30-49","2011","281","","" +"FR","M","POP","TOTAL","OC6","K","Y50-64","2011","255","","" +"FR","M","POP","TOTAL","OC6","K","Y65-84","2011","17","u","" +"FR","M","POP","TOTAL","OC6","K","Y_GE85","2011","1","u","" +"FR","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","L","Y15-29","2011","516","","" +"FR","M","POP","TOTAL","OC6","L","Y30-49","2011","1284","","" +"FR","M","POP","TOTAL","OC6","L","Y50-64","2011","674","","" +"FR","M","POP","TOTAL","OC6","L","Y65-84","2011","25","u","" +"FR","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","M","Y15-29","2011","542","","" +"FR","M","POP","TOTAL","OC6","M","Y30-49","2011","2186","","" +"FR","M","POP","TOTAL","OC6","M","Y50-64","2011","1393","","" +"FR","M","POP","TOTAL","OC6","M","Y65-84","2011","106","","" +"FR","M","POP","TOTAL","OC6","M","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","N","Y15-29","2011","28814","","" +"FR","M","POP","TOTAL","OC6","N","Y30-49","2011","33466","","" +"FR","M","POP","TOTAL","OC6","N","Y50-64","2011","10671","","" +"FR","M","POP","TOTAL","OC6","N","Y65-84","2011","211","","" +"FR","M","POP","TOTAL","OC6","N","Y_GE85","2011","16","u","" +"FR","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","O","Y15-29","2011","7004","","" +"FR","M","POP","TOTAL","OC6","O","Y30-49","2011","13099","","" +"FR","M","POP","TOTAL","OC6","O","Y50-64","2011","6402","","" +"FR","M","POP","TOTAL","OC6","O","Y65-84","2011","72","","" +"FR","M","POP","TOTAL","OC6","O","Y_GE85","2011","12","u","" +"FR","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","P","Y15-29","2011","2328","","" +"FR","M","POP","TOTAL","OC6","P","Y30-49","2011","2171","","" +"FR","M","POP","TOTAL","OC6","P","Y50-64","2011","1077","","" +"FR","M","POP","TOTAL","OC6","P","Y65-84","2011","35","u","" +"FR","M","POP","TOTAL","OC6","P","Y_GE85","2011","16","u","" +"FR","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","Q","Y15-29","2011","5100","","" +"FR","M","POP","TOTAL","OC6","Q","Y30-49","2011","9976","","" +"FR","M","POP","TOTAL","OC6","Q","Y50-64","2011","3374","","" +"FR","M","POP","TOTAL","OC6","Q","Y65-84","2011","48","u","" +"FR","M","POP","TOTAL","OC6","Q","Y_GE85","2011","13","u","" +"FR","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","R","Y15-29","2011","1594","","" +"FR","M","POP","TOTAL","OC6","R","Y30-49","2011","2690","","" +"FR","M","POP","TOTAL","OC6","R","Y50-64","2011","1077","","" +"FR","M","POP","TOTAL","OC6","R","Y65-84","2011","40","u","" +"FR","M","POP","TOTAL","OC6","R","Y_GE85","2011","3","u","" +"FR","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","S","Y15-29","2011","1532","","" +"FR","M","POP","TOTAL","OC6","S","Y30-49","2011","2455","","" +"FR","M","POP","TOTAL","OC6","S","Y50-64","2011","1265","","" +"FR","M","POP","TOTAL","OC6","S","Y65-84","2011","30","u","" +"FR","M","POP","TOTAL","OC6","S","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","T","Y15-29","2011","389","","" +"FR","M","POP","TOTAL","OC6","T","Y30-49","2011","2151","","" +"FR","M","POP","TOTAL","OC6","T","Y50-64","2011","1156","","" +"FR","M","POP","TOTAL","OC6","T","Y65-84","2011","19","u","" +"FR","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","U","Y15-29","2011","13","u","" +"FR","M","POP","TOTAL","OC6","U","Y30-49","2011","43","u","" +"FR","M","POP","TOTAL","OC6","U","Y50-64","2011","42","u","" +"FR","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC6","UNK","Y15-29","2011","32839","","" +"FR","M","POP","TOTAL","OC6","UNK","Y30-49","2011","25569","","" +"FR","M","POP","TOTAL","OC6","UNK","Y50-64","2011","15487","","" +"FR","M","POP","TOTAL","OC6","UNK","Y65-84","2011","2043","","" +"FR","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","A","Y15-29","2011","3656","","" +"FR","M","POP","TOTAL","OC7","A","Y30-49","2011","5479","","" +"FR","M","POP","TOTAL","OC7","A","Y50-64","2011","2719","","" +"FR","M","POP","TOTAL","OC7","A","Y65-84","2011","51","","" +"FR","M","POP","TOTAL","OC7","A","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","B","Y15-29","2011","439","","" +"FR","M","POP","TOTAL","OC7","B","Y30-49","2011","1640","","" +"FR","M","POP","TOTAL","OC7","B","Y50-64","2011","799","","" +"FR","M","POP","TOTAL","OC7","B","Y65-84","2011","16","u","" +"FR","M","POP","TOTAL","OC7","B","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","C","Y15-29","2011","138114","","" +"FR","M","POP","TOTAL","OC7","C","Y30-49","2011","325867","","" +"FR","M","POP","TOTAL","OC7","C","Y50-64","2011","142168","","" +"FR","M","POP","TOTAL","OC7","C","Y65-84","2011","2014","","" +"FR","M","POP","TOTAL","OC7","C","Y_GE85","2011","268","","" +"FR","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","D","Y15-29","2011","3452","","" +"FR","M","POP","TOTAL","OC7","D","Y30-49","2011","6922","","" +"FR","M","POP","TOTAL","OC7","D","Y50-64","2011","3147","","" +"FR","M","POP","TOTAL","OC7","D","Y65-84","2011","20","u","" +"FR","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","E","Y15-29","2011","3070","","" +"FR","M","POP","TOTAL","OC7","E","Y30-49","2011","8108","","" +"FR","M","POP","TOTAL","OC7","E","Y50-64","2011","3049","","" +"FR","M","POP","TOTAL","OC7","E","Y65-84","2011","39","u","" +"FR","M","POP","TOTAL","OC7","E","Y_GE85","2011","3","u","" +"FR","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","F","Y15-29","2011","312696","","" +"FR","M","POP","TOTAL","OC7","F","Y30-49","2011","544668","","" +"FR","M","POP","TOTAL","OC7","F","Y50-64","2011","209055","","" +"FR","M","POP","TOTAL","OC7","F","Y65-84","2011","3591","","" +"FR","M","POP","TOTAL","OC7","F","Y_GE85","2011","410","","" +"FR","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","G","Y15-29","2011","121711","","" +"FR","M","POP","TOTAL","OC7","G","Y30-49","2011","171966","","" +"FR","M","POP","TOTAL","OC7","G","Y50-64","2011","68729","","" +"FR","M","POP","TOTAL","OC7","G","Y65-84","2011","1259","","" +"FR","M","POP","TOTAL","OC7","G","Y_GE85","2011","143","","" +"FR","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","H","Y15-29","2011","12464","","" +"FR","M","POP","TOTAL","OC7","H","Y30-49","2011","34892","","" +"FR","M","POP","TOTAL","OC7","H","Y50-64","2011","15560","","" +"FR","M","POP","TOTAL","OC7","H","Y65-84","2011","95","","" +"FR","M","POP","TOTAL","OC7","H","Y_GE85","2011","20","u","" +"FR","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","I","Y15-29","2011","6272","","" +"FR","M","POP","TOTAL","OC7","I","Y30-49","2011","9704","","" +"FR","M","POP","TOTAL","OC7","I","Y50-64","2011","5181","","" +"FR","M","POP","TOTAL","OC7","I","Y65-84","2011","143","","" +"FR","M","POP","TOTAL","OC7","I","Y_GE85","2011","41","u","" +"FR","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","J","Y15-29","2011","5098","","" +"FR","M","POP","TOTAL","OC7","J","Y30-49","2011","9611","","" +"FR","M","POP","TOTAL","OC7","J","Y50-64","2011","4542","","" +"FR","M","POP","TOTAL","OC7","J","Y65-84","2011","71","","" +"FR","M","POP","TOTAL","OC7","J","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","K","Y15-29","2011","1906","","" +"FR","M","POP","TOTAL","OC7","K","Y30-49","2011","4434","","" +"FR","M","POP","TOTAL","OC7","K","Y50-64","2011","2220","","" +"FR","M","POP","TOTAL","OC7","K","Y65-84","2011","29","u","" +"FR","M","POP","TOTAL","OC7","K","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","L","Y15-29","2011","2225","","" +"FR","M","POP","TOTAL","OC7","L","Y30-49","2011","5535","","" +"FR","M","POP","TOTAL","OC7","L","Y50-64","2011","2823","","" +"FR","M","POP","TOTAL","OC7","L","Y65-84","2011","54","","" +"FR","M","POP","TOTAL","OC7","L","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","M","Y15-29","2011","6245","","" +"FR","M","POP","TOTAL","OC7","M","Y30-49","2011","14573","","" +"FR","M","POP","TOTAL","OC7","M","Y50-64","2011","6027","","" +"FR","M","POP","TOTAL","OC7","M","Y65-84","2011","68","","" +"FR","M","POP","TOTAL","OC7","M","Y_GE85","2011","15","u","" +"FR","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","N","Y15-29","2011","47252","","" +"FR","M","POP","TOTAL","OC7","N","Y30-49","2011","59579","","" +"FR","M","POP","TOTAL","OC7","N","Y50-64","2011","17520","","" +"FR","M","POP","TOTAL","OC7","N","Y65-84","2011","244","","" +"FR","M","POP","TOTAL","OC7","N","Y_GE85","2011","60","","" +"FR","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","O","Y15-29","2011","19590","","" +"FR","M","POP","TOTAL","OC7","O","Y30-49","2011","60248","","" +"FR","M","POP","TOTAL","OC7","O","Y50-64","2011","31763","","" +"FR","M","POP","TOTAL","OC7","O","Y65-84","2011","368","","" +"FR","M","POP","TOTAL","OC7","O","Y_GE85","2011","54","","" +"FR","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","P","Y15-29","2011","11779","","" +"FR","M","POP","TOTAL","OC7","P","Y30-49","2011","12321","","" +"FR","M","POP","TOTAL","OC7","P","Y50-64","2011","6744","","" +"FR","M","POP","TOTAL","OC7","P","Y65-84","2011","68","","" +"FR","M","POP","TOTAL","OC7","P","Y_GE85","2011","3","u","" +"FR","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","Q","Y15-29","2011","13072","","" +"FR","M","POP","TOTAL","OC7","Q","Y30-49","2011","36911","","" +"FR","M","POP","TOTAL","OC7","Q","Y50-64","2011","18980","","" +"FR","M","POP","TOTAL","OC7","Q","Y65-84","2011","230","","" +"FR","M","POP","TOTAL","OC7","Q","Y_GE85","2011","63","","" +"FR","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","R","Y15-29","2011","2956","","" +"FR","M","POP","TOTAL","OC7","R","Y30-49","2011","6928","","" +"FR","M","POP","TOTAL","OC7","R","Y50-64","2011","3661","","" +"FR","M","POP","TOTAL","OC7","R","Y65-84","2011","99","","" +"FR","M","POP","TOTAL","OC7","R","Y_GE85","2011","15","u","" +"FR","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","S","Y15-29","2011","7652","","" +"FR","M","POP","TOTAL","OC7","S","Y30-49","2011","21283","","" +"FR","M","POP","TOTAL","OC7","S","Y50-64","2011","11342","","" +"FR","M","POP","TOTAL","OC7","S","Y65-84","2011","357","","" +"FR","M","POP","TOTAL","OC7","S","Y_GE85","2011","32","u","" +"FR","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","T","Y15-29","2011","126","","" +"FR","M","POP","TOTAL","OC7","T","Y30-49","2011","672","","" +"FR","M","POP","TOTAL","OC7","T","Y50-64","2011","485","","" +"FR","M","POP","TOTAL","OC7","T","Y65-84","2011","4","u","" +"FR","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","U","Y15-29","2011","42","u","" +"FR","M","POP","TOTAL","OC7","U","Y30-49","2011","171","","" +"FR","M","POP","TOTAL","OC7","U","Y50-64","2011","126","","" +"FR","M","POP","TOTAL","OC7","U","Y65-84","2011","6","u","" +"FR","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC7","UNK","Y15-29","2011","119370","","" +"FR","M","POP","TOTAL","OC7","UNK","Y30-49","2011","130718","","" +"FR","M","POP","TOTAL","OC7","UNK","Y50-64","2011","65992","","" +"FR","M","POP","TOTAL","OC7","UNK","Y65-84","2011","4110","","" +"FR","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","A","Y15-29","2011","6864","","" +"FR","M","POP","TOTAL","OC8","A","Y30-49","2011","12782","","" +"FR","M","POP","TOTAL","OC8","A","Y50-64","2011","5179","","" +"FR","M","POP","TOTAL","OC8","A","Y65-84","2011","62","","" +"FR","M","POP","TOTAL","OC8","A","Y_GE85","2011","18","u","" +"FR","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","B","Y15-29","2011","1166","","" +"FR","M","POP","TOTAL","OC8","B","Y30-49","2011","4956","","" +"FR","M","POP","TOTAL","OC8","B","Y50-64","2011","2302","","" +"FR","M","POP","TOTAL","OC8","B","Y65-84","2011","35","u","" +"FR","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","C","Y15-29","2011","120636","","" +"FR","M","POP","TOTAL","OC8","C","Y30-49","2011","360852","","" +"FR","M","POP","TOTAL","OC8","C","Y50-64","2011","142563","","" +"FR","M","POP","TOTAL","OC8","C","Y65-84","2011","1268","","" +"FR","M","POP","TOTAL","OC8","C","Y_GE85","2011","246","","" +"FR","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","D","Y15-29","2011","2769","","" +"FR","M","POP","TOTAL","OC8","D","Y30-49","2011","5361","","" +"FR","M","POP","TOTAL","OC8","D","Y50-64","2011","2411","","" +"FR","M","POP","TOTAL","OC8","D","Y65-84","2011","43","u","" +"FR","M","POP","TOTAL","OC8","D","Y_GE85","2011","5","u","" +"FR","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","E","Y15-29","2011","6373","","" +"FR","M","POP","TOTAL","OC8","E","Y30-49","2011","27303","","" +"FR","M","POP","TOTAL","OC8","E","Y50-64","2011","9701","","" +"FR","M","POP","TOTAL","OC8","E","Y65-84","2011","120","","" +"FR","M","POP","TOTAL","OC8","E","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","F","Y15-29","2011","30212","","" +"FR","M","POP","TOTAL","OC8","F","Y30-49","2011","57340","","" +"FR","M","POP","TOTAL","OC8","F","Y50-64","2011","22677","","" +"FR","M","POP","TOTAL","OC8","F","Y65-84","2011","351","","" +"FR","M","POP","TOTAL","OC8","F","Y_GE85","2011","42","u","" +"FR","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","G","Y15-29","2011","42028","","" +"FR","M","POP","TOTAL","OC8","G","Y30-49","2011","105989","","" +"FR","M","POP","TOTAL","OC8","G","Y50-64","2011","37769","","" +"FR","M","POP","TOTAL","OC8","G","Y65-84","2011","557","","" +"FR","M","POP","TOTAL","OC8","G","Y_GE85","2011","80","","" +"FR","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","H","Y15-29","2011","75802","","" +"FR","M","POP","TOTAL","OC8","H","Y30-49","2011","290732","","" +"FR","M","POP","TOTAL","OC8","H","Y50-64","2011","115699","","" +"FR","M","POP","TOTAL","OC8","H","Y65-84","2011","2159","","" +"FR","M","POP","TOTAL","OC8","H","Y_GE85","2011","219","","" +"FR","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","I","Y15-29","2011","8350","","" +"FR","M","POP","TOTAL","OC8","I","Y30-49","2011","8880","","" +"FR","M","POP","TOTAL","OC8","I","Y50-64","2011","2735","","" +"FR","M","POP","TOTAL","OC8","I","Y65-84","2011","81","","" +"FR","M","POP","TOTAL","OC8","I","Y_GE85","2011","11","u","" +"FR","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","J","Y15-29","2011","1843","","" +"FR","M","POP","TOTAL","OC8","J","Y30-49","2011","3960","","" +"FR","M","POP","TOTAL","OC8","J","Y50-64","2011","2013","","" +"FR","M","POP","TOTAL","OC8","J","Y65-84","2011","43","u","" +"FR","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","K","Y15-29","2011","1627","","" +"FR","M","POP","TOTAL","OC8","K","Y30-49","2011","4553","","" +"FR","M","POP","TOTAL","OC8","K","Y50-64","2011","2211","","" +"FR","M","POP","TOTAL","OC8","K","Y65-84","2011","61","","" +"FR","M","POP","TOTAL","OC8","K","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","L","Y15-29","2011","1010","","" +"FR","M","POP","TOTAL","OC8","L","Y30-49","2011","2796","","" +"FR","M","POP","TOTAL","OC8","L","Y50-64","2011","1155","","" +"FR","M","POP","TOTAL","OC8","L","Y65-84","2011","10","u","" +"FR","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","M","Y15-29","2011","5703","","" +"FR","M","POP","TOTAL","OC8","M","Y30-49","2011","13696","","" +"FR","M","POP","TOTAL","OC8","M","Y50-64","2011","6511","","" +"FR","M","POP","TOTAL","OC8","M","Y65-84","2011","208","","" +"FR","M","POP","TOTAL","OC8","M","Y_GE85","2011","24","u","" +"FR","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","N","Y15-29","2011","57619","","" +"FR","M","POP","TOTAL","OC8","N","Y30-49","2011","68142","","" +"FR","M","POP","TOTAL","OC8","N","Y50-64","2011","16124","","" +"FR","M","POP","TOTAL","OC8","N","Y65-84","2011","311","","" +"FR","M","POP","TOTAL","OC8","N","Y_GE85","2011","26","u","" +"FR","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","O","Y15-29","2011","4162","","" +"FR","M","POP","TOTAL","OC8","O","Y30-49","2011","13211","","" +"FR","M","POP","TOTAL","OC8","O","Y50-64","2011","7677","","" +"FR","M","POP","TOTAL","OC8","O","Y65-84","2011","113","","" +"FR","M","POP","TOTAL","OC8","O","Y_GE85","2011","7","u","" +"FR","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","P","Y15-29","2011","2780","","" +"FR","M","POP","TOTAL","OC8","P","Y30-49","2011","3122","","" +"FR","M","POP","TOTAL","OC8","P","Y50-64","2011","1494","","" +"FR","M","POP","TOTAL","OC8","P","Y65-84","2011","31","u","" +"FR","M","POP","TOTAL","OC8","P","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","Q","Y15-29","2011","4210","","" +"FR","M","POP","TOTAL","OC8","Q","Y30-49","2011","13887","","" +"FR","M","POP","TOTAL","OC8","Q","Y50-64","2011","6641","","" +"FR","M","POP","TOTAL","OC8","Q","Y65-84","2011","111","","" +"FR","M","POP","TOTAL","OC8","Q","Y_GE85","2011","21","u","" +"FR","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","R","Y15-29","2011","654","","" +"FR","M","POP","TOTAL","OC8","R","Y30-49","2011","1851","","" +"FR","M","POP","TOTAL","OC8","R","Y50-64","2011","843","","" +"FR","M","POP","TOTAL","OC8","R","Y65-84","2011","22","u","" +"FR","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","S","Y15-29","2011","2646","","" +"FR","M","POP","TOTAL","OC8","S","Y30-49","2011","9001","","" +"FR","M","POP","TOTAL","OC8","S","Y50-64","2011","4698","","" +"FR","M","POP","TOTAL","OC8","S","Y65-84","2011","202","","" +"FR","M","POP","TOTAL","OC8","S","Y_GE85","2011","19","u","" +"FR","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","T","Y15-29","2011","80","","" +"FR","M","POP","TOTAL","OC8","T","Y30-49","2011","197","","" +"FR","M","POP","TOTAL","OC8","T","Y50-64","2011","151","","" +"FR","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","U","Y15-29","2011","22","u","" +"FR","M","POP","TOTAL","OC8","U","Y30-49","2011","316","","" +"FR","M","POP","TOTAL","OC8","U","Y50-64","2011","242","","" +"FR","M","POP","TOTAL","OC8","U","Y65-84","2011","13","u","" +"FR","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC8","UNK","Y15-29","2011","94893","","" +"FR","M","POP","TOTAL","OC8","UNK","Y30-49","2011","110576","","" +"FR","M","POP","TOTAL","OC8","UNK","Y50-64","2011","56229","","" +"FR","M","POP","TOTAL","OC8","UNK","Y65-84","2011","3269","","" +"FR","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","A","Y15-29","2011","1067","","" +"FR","M","POP","TOTAL","OC9","A","Y30-49","2011","2016","","" +"FR","M","POP","TOTAL","OC9","A","Y50-64","2011","837","","" +"FR","M","POP","TOTAL","OC9","A","Y65-84","2011","3","u","" +"FR","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","B","Y15-29","2011","1432","","" +"FR","M","POP","TOTAL","OC9","B","Y30-49","2011","3277","","" +"FR","M","POP","TOTAL","OC9","B","Y50-64","2011","976","","" +"FR","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC9","B","Y_GE85","2011","4","u","" +"FR","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","C","Y15-29","2011","11744","","" +"FR","M","POP","TOTAL","OC9","C","Y30-49","2011","35191","","" +"FR","M","POP","TOTAL","OC9","C","Y50-64","2011","16075","","" +"FR","M","POP","TOTAL","OC9","C","Y65-84","2011","155","","" +"FR","M","POP","TOTAL","OC9","C","Y_GE85","2011","27","u","" +"FR","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","D","Y15-29","2011","277","","" +"FR","M","POP","TOTAL","OC9","D","Y30-49","2011","834","","" +"FR","M","POP","TOTAL","OC9","D","Y50-64","2011","435","","" +"FR","M","POP","TOTAL","OC9","D","Y65-84","2011","11","u","" +"FR","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","E","Y15-29","2011","4884","","" +"FR","M","POP","TOTAL","OC9","E","Y30-49","2011","15422","","" +"FR","M","POP","TOTAL","OC9","E","Y50-64","2011","5395","","" +"FR","M","POP","TOTAL","OC9","E","Y65-84","2011","104","","" +"FR","M","POP","TOTAL","OC9","E","Y_GE85","2011","1","u","" +"FR","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","F","Y15-29","2011","25017","","" +"FR","M","POP","TOTAL","OC9","F","Y30-49","2011","33406","","" +"FR","M","POP","TOTAL","OC9","F","Y50-64","2011","11455","","" +"FR","M","POP","TOTAL","OC9","F","Y65-84","2011","223","","" +"FR","M","POP","TOTAL","OC9","F","Y_GE85","2011","49","u","" +"FR","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","G","Y15-29","2011","37962","","" +"FR","M","POP","TOTAL","OC9","G","Y30-49","2011","67936","","" +"FR","M","POP","TOTAL","OC9","G","Y50-64","2011","21249","","" +"FR","M","POP","TOTAL","OC9","G","Y65-84","2011","225","","" +"FR","M","POP","TOTAL","OC9","G","Y_GE85","2011","50","","" +"FR","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","H","Y15-29","2011","13106","","" +"FR","M","POP","TOTAL","OC9","H","Y30-49","2011","29477","","" +"FR","M","POP","TOTAL","OC9","H","Y50-64","2011","9668","","" +"FR","M","POP","TOTAL","OC9","H","Y65-84","2011","128","","" +"FR","M","POP","TOTAL","OC9","H","Y_GE85","2011","32","u","" +"FR","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","I","Y15-29","2011","21889","","" +"FR","M","POP","TOTAL","OC9","I","Y30-49","2011","27907","","" +"FR","M","POP","TOTAL","OC9","I","Y50-64","2011","10129","","" +"FR","M","POP","TOTAL","OC9","I","Y65-84","2011","250","","" +"FR","M","POP","TOTAL","OC9","I","Y_GE85","2011","24","u","" +"FR","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","J","Y15-29","2011","648","","" +"FR","M","POP","TOTAL","OC9","J","Y30-49","2011","1451","","" +"FR","M","POP","TOTAL","OC9","J","Y50-64","2011","754","","" +"FR","M","POP","TOTAL","OC9","J","Y65-84","2011","8","u","" +"FR","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","K","Y15-29","2011","772","","" +"FR","M","POP","TOTAL","OC9","K","Y30-49","2011","1973","","" +"FR","M","POP","TOTAL","OC9","K","Y50-64","2011","1122","","" +"FR","M","POP","TOTAL","OC9","K","Y65-84","2011","24","u","" +"FR","M","POP","TOTAL","OC9","K","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","L","Y15-29","2011","2369","","" +"FR","M","POP","TOTAL","OC9","L","Y30-49","2011","7500","","" +"FR","M","POP","TOTAL","OC9","L","Y50-64","2011","4450","","" +"FR","M","POP","TOTAL","OC9","L","Y65-84","2011","55","","" +"FR","M","POP","TOTAL","OC9","L","Y_GE85","2011","5","u","" +"FR","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","M","Y15-29","2011","2384","","" +"FR","M","POP","TOTAL","OC9","M","Y30-49","2011","5043","","" +"FR","M","POP","TOTAL","OC9","M","Y50-64","2011","2317","","" +"FR","M","POP","TOTAL","OC9","M","Y65-84","2011","19","u","" +"FR","M","POP","TOTAL","OC9","M","Y_GE85","2011","15","u","" +"FR","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","N","Y15-29","2011","30416","","" +"FR","M","POP","TOTAL","OC9","N","Y30-49","2011","50357","","" +"FR","M","POP","TOTAL","OC9","N","Y50-64","2011","17538","","" +"FR","M","POP","TOTAL","OC9","N","Y65-84","2011","330","","" +"FR","M","POP","TOTAL","OC9","N","Y_GE85","2011","17","u","" +"FR","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","O","Y15-29","2011","15403","","" +"FR","M","POP","TOTAL","OC9","O","Y30-49","2011","62349","","" +"FR","M","POP","TOTAL","OC9","O","Y50-64","2011","31073","","" +"FR","M","POP","TOTAL","OC9","O","Y65-84","2011","248","","" +"FR","M","POP","TOTAL","OC9","O","Y_GE85","2011","39","u","" +"FR","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","P","Y15-29","2011","5247","","" +"FR","M","POP","TOTAL","OC9","P","Y30-49","2011","16794","","" +"FR","M","POP","TOTAL","OC9","P","Y50-64","2011","10039","","" +"FR","M","POP","TOTAL","OC9","P","Y65-84","2011","130","","" +"FR","M","POP","TOTAL","OC9","P","Y_GE85","2011","8","u","" +"FR","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","Q","Y15-29","2011","14693","","" +"FR","M","POP","TOTAL","OC9","Q","Y30-49","2011","42224","","" +"FR","M","POP","TOTAL","OC9","Q","Y50-64","2011","22042","","" +"FR","M","POP","TOTAL","OC9","Q","Y65-84","2011","266","","" +"FR","M","POP","TOTAL","OC9","Q","Y_GE85","2011","42","u","" +"FR","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","R","Y15-29","2011","1130","","" +"FR","M","POP","TOTAL","OC9","R","Y30-49","2011","2962","","" +"FR","M","POP","TOTAL","OC9","R","Y50-64","2011","1306","","" +"FR","M","POP","TOTAL","OC9","R","Y65-84","2011","36","u","" +"FR","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","S","Y15-29","2011","1934","","" +"FR","M","POP","TOTAL","OC9","S","Y30-49","2011","5284","","" +"FR","M","POP","TOTAL","OC9","S","Y50-64","2011","2439","","" +"FR","M","POP","TOTAL","OC9","S","Y65-84","2011","48","u","" +"FR","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","T","Y15-29","2011","303","","" +"FR","M","POP","TOTAL","OC9","T","Y30-49","2011","1826","","" +"FR","M","POP","TOTAL","OC9","T","Y50-64","2011","1106","","" +"FR","M","POP","TOTAL","OC9","T","Y65-84","2011","21","u","" +"FR","M","POP","TOTAL","OC9","T","Y_GE85","2011","3","u","" +"FR","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","U","Y15-29","2011","21","u","" +"FR","M","POP","TOTAL","OC9","U","Y30-49","2011","143","","" +"FR","M","POP","TOTAL","OC9","U","Y50-64","2011","72","","" +"FR","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","OC9","UNK","Y15-29","2011","71960","","" +"FR","M","POP","TOTAL","OC9","UNK","Y30-49","2011","61992","","" +"FR","M","POP","TOTAL","OC9","UNK","Y50-64","2011","25993","","" +"FR","M","POP","TOTAL","OC9","UNK","Y65-84","2011","1333","","" +"FR","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"FR","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"FR","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"FR","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"FR","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"FR","M","POP","TOTAL","UNK","UNK","Y15-29","2011","421968","","" +"FR","M","POP","TOTAL","UNK","UNK","Y30-49","2011","65744","","" +"FR","M","POP","TOTAL","UNK","UNK","Y50-64","2011","59823","","" +"FR","M","POP","TOTAL","UNK","UNK","Y65-84","2011","9821","","" +"FR","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"FR","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","95","","" +"HR","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","NAP","Y15-29","2011","223491","","" +"HR","F","POP","TOTAL","NAP","NAP","Y30-49","2011","125326","","" +"HR","F","POP","TOTAL","NAP","NAP","Y50-64","2011","291649","","" +"HR","F","POP","TOTAL","NAP","NAP","Y65-84","2011","413178","","" +"HR","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","45087","","" +"HR","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","317703","","" +"HR","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","H","Y30-49","2011","1","","" +"HR","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","O","Y15-29","2011","272","","" +"HR","F","POP","TOTAL","OC0","O","Y30-49","2011","803","","" +"HR","F","POP","TOTAL","OC0","O","Y50-64","2011","77","","" +"HR","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","A","Y15-29","2011","16","","" +"HR","F","POP","TOTAL","OC1","A","Y30-49","2011","153","","" +"HR","F","POP","TOTAL","OC1","A","Y50-64","2011","57","","" +"HR","F","POP","TOTAL","OC1","A","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","B","Y15-29","2011","6","","" +"HR","F","POP","TOTAL","OC1","B","Y30-49","2011","16","","" +"HR","F","POP","TOTAL","OC1","B","Y50-64","2011","12","","" +"HR","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","C","Y15-29","2011","140","","" +"HR","F","POP","TOTAL","OC1","C","Y30-49","2011","1546","","" +"HR","F","POP","TOTAL","OC1","C","Y50-64","2011","720","","" +"HR","F","POP","TOTAL","OC1","C","Y65-84","2011","17","","" +"HR","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","D","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","OC1","D","Y30-49","2011","14","","" +"HR","F","POP","TOTAL","OC1","D","Y50-64","2011","9","","" +"HR","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","E","Y15-29","2011","6","","" +"HR","F","POP","TOTAL","OC1","E","Y30-49","2011","60","","" +"HR","F","POP","TOTAL","OC1","E","Y50-64","2011","42","","" +"HR","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","F","Y15-29","2011","98","","" +"HR","F","POP","TOTAL","OC1","F","Y30-49","2011","610","","" +"HR","F","POP","TOTAL","OC1","F","Y50-64","2011","261","","" +"HR","F","POP","TOTAL","OC1","F","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","G","Y15-29","2011","344","","" +"HR","F","POP","TOTAL","OC1","G","Y30-49","2011","3134","","" +"HR","F","POP","TOTAL","OC1","G","Y50-64","2011","1399","","" +"HR","F","POP","TOTAL","OC1","G","Y65-84","2011","17","","" +"HR","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","H","Y15-29","2011","25","","" +"HR","F","POP","TOTAL","OC1","H","Y30-49","2011","334","","" +"HR","F","POP","TOTAL","OC1","H","Y50-64","2011","147","","" +"HR","F","POP","TOTAL","OC1","H","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","I","Y15-29","2011","263","","" +"HR","F","POP","TOTAL","OC1","I","Y30-49","2011","1181","","" +"HR","F","POP","TOTAL","OC1","I","Y50-64","2011","463","","" +"HR","F","POP","TOTAL","OC1","I","Y65-84","2011","15","","" +"HR","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","J","Y15-29","2011","55","","" +"HR","F","POP","TOTAL","OC1","J","Y30-49","2011","528","","" +"HR","F","POP","TOTAL","OC1","J","Y50-64","2011","124","","" +"HR","F","POP","TOTAL","OC1","J","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","K","Y15-29","2011","47","","" +"HR","F","POP","TOTAL","OC1","K","Y30-49","2011","834","","" +"HR","F","POP","TOTAL","OC1","K","Y50-64","2011","305","","" +"HR","F","POP","TOTAL","OC1","K","Y65-84","2011","3","","" +"HR","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","L","Y15-29","2011","19","","" +"HR","F","POP","TOTAL","OC1","L","Y30-49","2011","163","","" +"HR","F","POP","TOTAL","OC1","L","Y50-64","2011","84","","" +"HR","F","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","M","Y15-29","2011","122","","" +"HR","F","POP","TOTAL","OC1","M","Y30-49","2011","1239","","" +"HR","F","POP","TOTAL","OC1","M","Y50-64","2011","601","","" +"HR","F","POP","TOTAL","OC1","M","Y65-84","2011","20","","" +"HR","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","N","Y15-29","2011","78","","" +"HR","F","POP","TOTAL","OC1","N","Y30-49","2011","516","","" +"HR","F","POP","TOTAL","OC1","N","Y50-64","2011","140","","" +"HR","F","POP","TOTAL","OC1","N","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","O","Y15-29","2011","26","","" +"HR","F","POP","TOTAL","OC1","O","Y30-49","2011","404","","" +"HR","F","POP","TOTAL","OC1","O","Y50-64","2011","280","","" +"HR","F","POP","TOTAL","OC1","O","Y65-84","2011","11","","" +"HR","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","P","Y15-29","2011","36","","" +"HR","F","POP","TOTAL","OC1","P","Y30-49","2011","655","","" +"HR","F","POP","TOTAL","OC1","P","Y50-64","2011","583","","" +"HR","F","POP","TOTAL","OC1","P","Y65-84","2011","13","","" +"HR","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","Q","Y15-29","2011","48","","" +"HR","F","POP","TOTAL","OC1","Q","Y30-49","2011","421","","" +"HR","F","POP","TOTAL","OC1","Q","Y50-64","2011","377","","" +"HR","F","POP","TOTAL","OC1","Q","Y65-84","2011","11","","" +"HR","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","R","Y15-29","2011","36","","" +"HR","F","POP","TOTAL","OC1","R","Y30-49","2011","249","","" +"HR","F","POP","TOTAL","OC1","R","Y50-64","2011","140","","" +"HR","F","POP","TOTAL","OC1","R","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","S","Y15-29","2011","111","","" +"HR","F","POP","TOTAL","OC1","S","Y30-49","2011","659","","" +"HR","F","POP","TOTAL","OC1","S","Y50-64","2011","268","","" +"HR","F","POP","TOTAL","OC1","S","Y65-84","2011","11","","" +"HR","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC1","U","Y30-49","2011","7","","" +"HR","F","POP","TOTAL","OC1","U","Y50-64","2011","4","","" +"HR","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC1","UNK","Y15-29","2011","2","","" +"HR","F","POP","TOTAL","OC1","UNK","Y30-49","2011","12","","" +"HR","F","POP","TOTAL","OC1","UNK","Y50-64","2011","2","","" +"HR","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","A","Y15-29","2011","148","","" +"HR","F","POP","TOTAL","OC2","A","Y30-49","2011","583","","" +"HR","F","POP","TOTAL","OC2","A","Y50-64","2011","162","","" +"HR","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","B","Y15-29","2011","39","","" +"HR","F","POP","TOTAL","OC2","B","Y30-49","2011","217","","" +"HR","F","POP","TOTAL","OC2","B","Y50-64","2011","81","","" +"HR","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","C","Y15-29","2011","1335","","" +"HR","F","POP","TOTAL","OC2","C","Y30-49","2011","4107","","" +"HR","F","POP","TOTAL","OC2","C","Y50-64","2011","1361","","" +"HR","F","POP","TOTAL","OC2","C","Y65-84","2011","10","","" +"HR","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","D","Y15-29","2011","84","","" +"HR","F","POP","TOTAL","OC2","D","Y30-49","2011","340","","" +"HR","F","POP","TOTAL","OC2","D","Y50-64","2011","238","","" +"HR","F","POP","TOTAL","OC2","D","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","E","Y15-29","2011","94","","" +"HR","F","POP","TOTAL","OC2","E","Y30-49","2011","384","","" +"HR","F","POP","TOTAL","OC2","E","Y50-64","2011","145","","" +"HR","F","POP","TOTAL","OC2","E","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","F","Y15-29","2011","325","","" +"HR","F","POP","TOTAL","OC2","F","Y30-49","2011","1025","","" +"HR","F","POP","TOTAL","OC2","F","Y50-64","2011","326","","" +"HR","F","POP","TOTAL","OC2","F","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","G","Y15-29","2011","1649","","" +"HR","F","POP","TOTAL","OC2","G","Y30-49","2011","4054","","" +"HR","F","POP","TOTAL","OC2","G","Y50-64","2011","1329","","" +"HR","F","POP","TOTAL","OC2","G","Y65-84","2011","22","","" +"HR","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","H","Y15-29","2011","149","","" +"HR","F","POP","TOTAL","OC2","H","Y30-49","2011","891","","" +"HR","F","POP","TOTAL","OC2","H","Y50-64","2011","409","","" +"HR","F","POP","TOTAL","OC2","H","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","I","Y15-29","2011","272","","" +"HR","F","POP","TOTAL","OC2","I","Y30-49","2011","575","","" +"HR","F","POP","TOTAL","OC2","I","Y50-64","2011","212","","" +"HR","F","POP","TOTAL","OC2","I","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","J","Y15-29","2011","1560","","" +"HR","F","POP","TOTAL","OC2","J","Y30-49","2011","4696","","" +"HR","F","POP","TOTAL","OC2","J","Y50-64","2011","861","","" +"HR","F","POP","TOTAL","OC2","J","Y65-84","2011","30","","" +"HR","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","K","Y15-29","2011","1559","","" +"HR","F","POP","TOTAL","OC2","K","Y30-49","2011","4246","","" +"HR","F","POP","TOTAL","OC2","K","Y50-64","2011","1075","","" +"HR","F","POP","TOTAL","OC2","K","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","L","Y15-29","2011","51","","" +"HR","F","POP","TOTAL","OC2","L","Y30-49","2011","194","","" +"HR","F","POP","TOTAL","OC2","L","Y50-64","2011","67","","" +"HR","F","POP","TOTAL","OC2","L","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","M","Y15-29","2011","3082","","" +"HR","F","POP","TOTAL","OC2","M","Y30-49","2011","7993","","" +"HR","F","POP","TOTAL","OC2","M","Y50-64","2011","2201","","" +"HR","F","POP","TOTAL","OC2","M","Y65-84","2011","92","","" +"HR","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","N","Y15-29","2011","368","","" +"HR","F","POP","TOTAL","OC2","N","Y30-49","2011","883","","" +"HR","F","POP","TOTAL","OC2","N","Y50-64","2011","238","","" +"HR","F","POP","TOTAL","OC2","N","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","O","Y15-29","2011","1553","","" +"HR","F","POP","TOTAL","OC2","O","Y30-49","2011","9345","","" +"HR","F","POP","TOTAL","OC2","O","Y50-64","2011","4530","","" +"HR","F","POP","TOTAL","OC2","O","Y65-84","2011","115","","" +"HR","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","P","Y15-29","2011","11536","","" +"HR","F","POP","TOTAL","OC2","P","Y30-49","2011","34178","","" +"HR","F","POP","TOTAL","OC2","P","Y50-64","2011","15472","","" +"HR","F","POP","TOTAL","OC2","P","Y65-84","2011","339","","" +"HR","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","Q","Y15-29","2011","3739","","" +"HR","F","POP","TOTAL","OC2","Q","Y30-49","2011","11950","","" +"HR","F","POP","TOTAL","OC2","Q","Y50-64","2011","7114","","" +"HR","F","POP","TOTAL","OC2","Q","Y65-84","2011","208","","" +"HR","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","R","Y15-29","2011","603","","" +"HR","F","POP","TOTAL","OC2","R","Y30-49","2011","2261","","" +"HR","F","POP","TOTAL","OC2","R","Y50-64","2011","984","","" +"HR","F","POP","TOTAL","OC2","R","Y65-84","2011","41","","" +"HR","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","S","Y15-29","2011","269","","" +"HR","F","POP","TOTAL","OC2","S","Y30-49","2011","817","","" +"HR","F","POP","TOTAL","OC2","S","Y50-64","2011","279","","" +"HR","F","POP","TOTAL","OC2","S","Y65-84","2011","24","","" +"HR","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","U","Y15-29","2011","17","","" +"HR","F","POP","TOTAL","OC2","U","Y30-49","2011","111","","" +"HR","F","POP","TOTAL","OC2","U","Y50-64","2011","27","","" +"HR","F","POP","TOTAL","OC2","U","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC2","UNK","Y15-29","2011","29","","" +"HR","F","POP","TOTAL","OC2","UNK","Y30-49","2011","64","","" +"HR","F","POP","TOTAL","OC2","UNK","Y50-64","2011","23","","" +"HR","F","POP","TOTAL","OC2","UNK","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","A","Y15-29","2011","166","","" +"HR","F","POP","TOTAL","OC3","A","Y30-49","2011","610","","" +"HR","F","POP","TOTAL","OC3","A","Y50-64","2011","216","","" +"HR","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","B","Y15-29","2011","41","","" +"HR","F","POP","TOTAL","OC3","B","Y30-49","2011","199","","" +"HR","F","POP","TOTAL","OC3","B","Y50-64","2011","80","","" +"HR","F","POP","TOTAL","OC3","B","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","C","Y15-29","2011","2231","","" +"HR","F","POP","TOTAL","OC3","C","Y30-49","2011","8823","","" +"HR","F","POP","TOTAL","OC3","C","Y50-64","2011","3655","","" +"HR","F","POP","TOTAL","OC3","C","Y65-84","2011","8","","" +"HR","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","D","Y15-29","2011","34","","" +"HR","F","POP","TOTAL","OC3","D","Y30-49","2011","370","","" +"HR","F","POP","TOTAL","OC3","D","Y50-64","2011","335","","" +"HR","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","E","Y15-29","2011","99","","" +"HR","F","POP","TOTAL","OC3","E","Y30-49","2011","442","","" +"HR","F","POP","TOTAL","OC3","E","Y50-64","2011","275","","" +"HR","F","POP","TOTAL","OC3","E","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","F","Y15-29","2011","603","","" +"HR","F","POP","TOTAL","OC3","F","Y30-49","2011","1888","","" +"HR","F","POP","TOTAL","OC3","F","Y50-64","2011","778","","" +"HR","F","POP","TOTAL","OC3","F","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","G","Y15-29","2011","3915","","" +"HR","F","POP","TOTAL","OC3","G","Y30-49","2011","10145","","" +"HR","F","POP","TOTAL","OC3","G","Y50-64","2011","2621","","" +"HR","F","POP","TOTAL","OC3","G","Y65-84","2011","22","","" +"HR","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","H","Y15-29","2011","411","","" +"HR","F","POP","TOTAL","OC3","H","Y30-49","2011","2320","","" +"HR","F","POP","TOTAL","OC3","H","Y50-64","2011","862","","" +"HR","F","POP","TOTAL","OC3","H","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","I","Y15-29","2011","377","","" +"HR","F","POP","TOTAL","OC3","I","Y30-49","2011","1029","","" +"HR","F","POP","TOTAL","OC3","I","Y50-64","2011","462","","" +"HR","F","POP","TOTAL","OC3","I","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","J","Y15-29","2011","936","","" +"HR","F","POP","TOTAL","OC3","J","Y30-49","2011","2380","","" +"HR","F","POP","TOTAL","OC3","J","Y50-64","2011","537","","" +"HR","F","POP","TOTAL","OC3","J","Y65-84","2011","6","","" +"HR","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","K","Y15-29","2011","2247","","" +"HR","F","POP","TOTAL","OC3","K","Y30-49","2011","6623","","" +"HR","F","POP","TOTAL","OC3","K","Y50-64","2011","1882","","" +"HR","F","POP","TOTAL","OC3","K","Y65-84","2011","11","","" +"HR","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","L","Y15-29","2011","167","","" +"HR","F","POP","TOTAL","OC3","L","Y30-49","2011","690","","" +"HR","F","POP","TOTAL","OC3","L","Y50-64","2011","189","","" +"HR","F","POP","TOTAL","OC3","L","Y65-84","2011","3","","" +"HR","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","M","Y15-29","2011","1645","","" +"HR","F","POP","TOTAL","OC3","M","Y30-49","2011","4417","","" +"HR","F","POP","TOTAL","OC3","M","Y50-64","2011","1652","","" +"HR","F","POP","TOTAL","OC3","M","Y65-84","2011","19","","" +"HR","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","N","Y15-29","2011","382","","" +"HR","F","POP","TOTAL","OC3","N","Y30-49","2011","994","","" +"HR","F","POP","TOTAL","OC3","N","Y50-64","2011","298","","" +"HR","F","POP","TOTAL","OC3","N","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","O","Y15-29","2011","1343","","" +"HR","F","POP","TOTAL","OC3","O","Y30-49","2011","7475","","" +"HR","F","POP","TOTAL","OC3","O","Y50-64","2011","3340","","" +"HR","F","POP","TOTAL","OC3","O","Y65-84","2011","34","","" +"HR","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","P","Y15-29","2011","368","","" +"HR","F","POP","TOTAL","OC3","P","Y30-49","2011","1673","","" +"HR","F","POP","TOTAL","OC3","P","Y50-64","2011","1177","","" +"HR","F","POP","TOTAL","OC3","P","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","Q","Y15-29","2011","8288","","" +"HR","F","POP","TOTAL","OC3","Q","Y30-49","2011","18277","","" +"HR","F","POP","TOTAL","OC3","Q","Y50-64","2011","8624","","" +"HR","F","POP","TOTAL","OC3","Q","Y65-84","2011","31","","" +"HR","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","R","Y15-29","2011","528","","" +"HR","F","POP","TOTAL","OC3","R","Y30-49","2011","1118","","" +"HR","F","POP","TOTAL","OC3","R","Y50-64","2011","369","","" +"HR","F","POP","TOTAL","OC3","R","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC3","R","Y_GE85","2011","1","","" +"HR","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","S","Y15-29","2011","279","","" +"HR","F","POP","TOTAL","OC3","S","Y30-49","2011","736","","" +"HR","F","POP","TOTAL","OC3","S","Y50-64","2011","355","","" +"HR","F","POP","TOTAL","OC3","S","Y65-84","2011","59","","" +"HR","F","POP","TOTAL","OC3","S","Y_GE85","2011","1","","" +"HR","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","T","Y15-29","2011","5","","" +"HR","F","POP","TOTAL","OC3","T","Y30-49","2011","9","","" +"HR","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","U","Y15-29","2011","4","","" +"HR","F","POP","TOTAL","OC3","U","Y30-49","2011","28","","" +"HR","F","POP","TOTAL","OC3","U","Y50-64","2011","12","","" +"HR","F","POP","TOTAL","OC3","U","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC3","UNK","Y15-29","2011","49","","" +"HR","F","POP","TOTAL","OC3","UNK","Y30-49","2011","103","","" +"HR","F","POP","TOTAL","OC3","UNK","Y50-64","2011","46","","" +"HR","F","POP","TOTAL","OC3","UNK","Y65-84","2011","3","","" +"HR","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","A","Y15-29","2011","224","","" +"HR","F","POP","TOTAL","OC4","A","Y30-49","2011","1048","","" +"HR","F","POP","TOTAL","OC4","A","Y50-64","2011","585","","" +"HR","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","B","Y15-29","2011","40","","" +"HR","F","POP","TOTAL","OC4","B","Y30-49","2011","248","","" +"HR","F","POP","TOTAL","OC4","B","Y50-64","2011","130","","" +"HR","F","POP","TOTAL","OC4","B","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","C","Y15-29","2011","1665","","" +"HR","F","POP","TOTAL","OC4","C","Y30-49","2011","6770","","" +"HR","F","POP","TOTAL","OC4","C","Y50-64","2011","3724","","" +"HR","F","POP","TOTAL","OC4","C","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","D","Y15-29","2011","78","","" +"HR","F","POP","TOTAL","OC4","D","Y30-49","2011","869","","" +"HR","F","POP","TOTAL","OC4","D","Y50-64","2011","820","","" +"HR","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","E","Y15-29","2011","185","","" +"HR","F","POP","TOTAL","OC4","E","Y30-49","2011","915","","" +"HR","F","POP","TOTAL","OC4","E","Y50-64","2011","576","","" +"HR","F","POP","TOTAL","OC4","E","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","F","Y15-29","2011","1035","","" +"HR","F","POP","TOTAL","OC4","F","Y30-49","2011","3316","","" +"HR","F","POP","TOTAL","OC4","F","Y50-64","2011","1217","","" +"HR","F","POP","TOTAL","OC4","F","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","G","Y15-29","2011","2812","","" +"HR","F","POP","TOTAL","OC4","G","Y30-49","2011","8398","","" +"HR","F","POP","TOTAL","OC4","G","Y50-64","2011","2666","","" +"HR","F","POP","TOTAL","OC4","G","Y65-84","2011","7","","" +"HR","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","H","Y15-29","2011","1048","","" +"HR","F","POP","TOTAL","OC4","H","Y30-49","2011","6066","","" +"HR","F","POP","TOTAL","OC4","H","Y50-64","2011","2302","","" +"HR","F","POP","TOTAL","OC4","H","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","I","Y15-29","2011","1587","","" +"HR","F","POP","TOTAL","OC4","I","Y30-49","2011","2551","","" +"HR","F","POP","TOTAL","OC4","I","Y50-64","2011","1030","","" +"HR","F","POP","TOTAL","OC4","I","Y65-84","2011","6","","" +"HR","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","J","Y15-29","2011","1062","","" +"HR","F","POP","TOTAL","OC4","J","Y30-49","2011","2198","","" +"HR","F","POP","TOTAL","OC4","J","Y50-64","2011","669","","" +"HR","F","POP","TOTAL","OC4","J","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","K","Y15-29","2011","2544","","" +"HR","F","POP","TOTAL","OC4","K","Y30-49","2011","7669","","" +"HR","F","POP","TOTAL","OC4","K","Y50-64","2011","3232","","" +"HR","F","POP","TOTAL","OC4","K","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","L","Y15-29","2011","133","","" +"HR","F","POP","TOTAL","OC4","L","Y30-49","2011","427","","" +"HR","F","POP","TOTAL","OC4","L","Y50-64","2011","161","","" +"HR","F","POP","TOTAL","OC4","L","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","M","Y15-29","2011","2613","","" +"HR","F","POP","TOTAL","OC4","M","Y30-49","2011","7202","","" +"HR","F","POP","TOTAL","OC4","M","Y50-64","2011","2698","","" +"HR","F","POP","TOTAL","OC4","M","Y65-84","2011","23","","" +"HR","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","N","Y15-29","2011","1187","","" +"HR","F","POP","TOTAL","OC4","N","Y30-49","2011","2127","","" +"HR","F","POP","TOTAL","OC4","N","Y50-64","2011","603","","" +"HR","F","POP","TOTAL","OC4","N","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","O","Y15-29","2011","5181","","" +"HR","F","POP","TOTAL","OC4","O","Y30-49","2011","12749","","" +"HR","F","POP","TOTAL","OC4","O","Y50-64","2011","5633","","" +"HR","F","POP","TOTAL","OC4","O","Y65-84","2011","33","","" +"HR","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","P","Y15-29","2011","458","","" +"HR","F","POP","TOTAL","OC4","P","Y30-49","2011","1721","","" +"HR","F","POP","TOTAL","OC4","P","Y50-64","2011","1398","","" +"HR","F","POP","TOTAL","OC4","P","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","Q","Y15-29","2011","464","","" +"HR","F","POP","TOTAL","OC4","Q","Y30-49","2011","2559","","" +"HR","F","POP","TOTAL","OC4","Q","Y50-64","2011","1919","","" +"HR","F","POP","TOTAL","OC4","Q","Y65-84","2011","7","","" +"HR","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","R","Y15-29","2011","3005","","" +"HR","F","POP","TOTAL","OC4","R","Y30-49","2011","2946","","" +"HR","F","POP","TOTAL","OC4","R","Y50-64","2011","678","","" +"HR","F","POP","TOTAL","OC4","R","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","S","Y15-29","2011","331","","" +"HR","F","POP","TOTAL","OC4","S","Y30-49","2011","1041","","" +"HR","F","POP","TOTAL","OC4","S","Y50-64","2011","466","","" +"HR","F","POP","TOTAL","OC4","S","Y65-84","2011","13","","" +"HR","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC4","T","Y30-49","2011","1","","" +"HR","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","U","Y15-29","2011","11","","" +"HR","F","POP","TOTAL","OC4","U","Y30-49","2011","79","","" +"HR","F","POP","TOTAL","OC4","U","Y50-64","2011","20","","" +"HR","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC4","UNK","Y15-29","2011","103","","" +"HR","F","POP","TOTAL","OC4","UNK","Y30-49","2011","219","","" +"HR","F","POP","TOTAL","OC4","UNK","Y50-64","2011","98","","" +"HR","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","A","Y15-29","2011","81","","" +"HR","F","POP","TOTAL","OC5","A","Y30-49","2011","296","","" +"HR","F","POP","TOTAL","OC5","A","Y50-64","2011","150","","" +"HR","F","POP","TOTAL","OC5","A","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","B","Y15-29","2011","9","","" +"HR","F","POP","TOTAL","OC5","B","Y30-49","2011","39","","" +"HR","F","POP","TOTAL","OC5","B","Y50-64","2011","17","","" +"HR","F","POP","TOTAL","OC5","B","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","C","Y15-29","2011","2014","","" +"HR","F","POP","TOTAL","OC5","C","Y30-49","2011","3901","","" +"HR","F","POP","TOTAL","OC5","C","Y50-64","2011","903","","" +"HR","F","POP","TOTAL","OC5","C","Y65-84","2011","11","","" +"HR","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","D","Y15-29","2011","4","","" +"HR","F","POP","TOTAL","OC5","D","Y30-49","2011","65","","" +"HR","F","POP","TOTAL","OC5","D","Y50-64","2011","77","","" +"HR","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","E","Y15-29","2011","14","","" +"HR","F","POP","TOTAL","OC5","E","Y30-49","2011","102","","" +"HR","F","POP","TOTAL","OC5","E","Y50-64","2011","59","","" +"HR","F","POP","TOTAL","OC5","E","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","F","Y15-29","2011","65","","" +"HR","F","POP","TOTAL","OC5","F","Y30-49","2011","328","","" +"HR","F","POP","TOTAL","OC5","F","Y50-64","2011","139","","" +"HR","F","POP","TOTAL","OC5","F","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","G","Y15-29","2011","33179","","" +"HR","F","POP","TOTAL","OC5","G","Y30-49","2011","64806","","" +"HR","F","POP","TOTAL","OC5","G","Y50-64","2011","13744","","" +"HR","F","POP","TOTAL","OC5","G","Y65-84","2011","51","","" +"HR","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","H","Y15-29","2011","375","","" +"HR","F","POP","TOTAL","OC5","H","Y30-49","2011","778","","" +"HR","F","POP","TOTAL","OC5","H","Y50-64","2011","214","","" +"HR","F","POP","TOTAL","OC5","H","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","I","Y15-29","2011","18279","","" +"HR","F","POP","TOTAL","OC5","I","Y30-49","2011","26380","","" +"HR","F","POP","TOTAL","OC5","I","Y50-64","2011","8267","","" +"HR","F","POP","TOTAL","OC5","I","Y65-84","2011","218","","" +"HR","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","J","Y15-29","2011","369","","" +"HR","F","POP","TOTAL","OC5","J","Y30-49","2011","466","","" +"HR","F","POP","TOTAL","OC5","J","Y50-64","2011","92","","" +"HR","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","K","Y15-29","2011","97","","" +"HR","F","POP","TOTAL","OC5","K","Y30-49","2011","216","","" +"HR","F","POP","TOTAL","OC5","K","Y50-64","2011","76","","" +"HR","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","L","Y15-29","2011","26","","" +"HR","F","POP","TOTAL","OC5","L","Y30-49","2011","142","","" +"HR","F","POP","TOTAL","OC5","L","Y50-64","2011","86","","" +"HR","F","POP","TOTAL","OC5","L","Y65-84","2011","32","","" +"HR","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","M","Y15-29","2011","223","","" +"HR","F","POP","TOTAL","OC5","M","Y30-49","2011","333","","" +"HR","F","POP","TOTAL","OC5","M","Y50-64","2011","132","","" +"HR","F","POP","TOTAL","OC5","M","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","N","Y15-29","2011","951","","" +"HR","F","POP","TOTAL","OC5","N","Y30-49","2011","2064","","" +"HR","F","POP","TOTAL","OC5","N","Y50-64","2011","612","","" +"HR","F","POP","TOTAL","OC5","N","Y65-84","2011","21","","" +"HR","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","O","Y15-29","2011","1312","","" +"HR","F","POP","TOTAL","OC5","O","Y30-49","2011","2256","","" +"HR","F","POP","TOTAL","OC5","O","Y50-64","2011","702","","" +"HR","F","POP","TOTAL","OC5","O","Y65-84","2011","26","","" +"HR","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","P","Y15-29","2011","375","","" +"HR","F","POP","TOTAL","OC5","P","Y30-49","2011","3140","","" +"HR","F","POP","TOTAL","OC5","P","Y50-64","2011","1862","","" +"HR","F","POP","TOTAL","OC5","P","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","Q","Y15-29","2011","1097","","" +"HR","F","POP","TOTAL","OC5","Q","Y30-49","2011","7459","","" +"HR","F","POP","TOTAL","OC5","Q","Y50-64","2011","3322","","" +"HR","F","POP","TOTAL","OC5","Q","Y65-84","2011","31","","" +"HR","F","POP","TOTAL","OC5","Q","Y_GE85","2011","1","","" +"HR","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","R","Y15-29","2011","441","","" +"HR","F","POP","TOTAL","OC5","R","Y30-49","2011","653","","" +"HR","F","POP","TOTAL","OC5","R","Y50-64","2011","213","","" +"HR","F","POP","TOTAL","OC5","R","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","S","Y15-29","2011","6392","","" +"HR","F","POP","TOTAL","OC5","S","Y30-49","2011","6645","","" +"HR","F","POP","TOTAL","OC5","S","Y50-64","2011","1414","","" +"HR","F","POP","TOTAL","OC5","S","Y65-84","2011","60","","" +"HR","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","T","Y15-29","2011","123","","" +"HR","F","POP","TOTAL","OC5","T","Y30-49","2011","291","","" +"HR","F","POP","TOTAL","OC5","T","Y50-64","2011","128","","" +"HR","F","POP","TOTAL","OC5","T","Y65-84","2011","10","","" +"HR","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","U","Y15-29","2011","2","","" +"HR","F","POP","TOTAL","OC5","U","Y30-49","2011","23","","" +"HR","F","POP","TOTAL","OC5","U","Y50-64","2011","8","","" +"HR","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC5","UNK","Y15-29","2011","38","","" +"HR","F","POP","TOTAL","OC5","UNK","Y30-49","2011","71","","" +"HR","F","POP","TOTAL","OC5","UNK","Y50-64","2011","30","","" +"HR","F","POP","TOTAL","OC5","UNK","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","A","Y15-29","2011","1046","","" +"HR","F","POP","TOTAL","OC6","A","Y30-49","2011","8234","","" +"HR","F","POP","TOTAL","OC6","A","Y50-64","2011","6558","","" +"HR","F","POP","TOTAL","OC6","A","Y65-84","2011","1949","","" +"HR","F","POP","TOTAL","OC6","A","Y_GE85","2011","25","","" +"HR","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","C","Y15-29","2011","12","","" +"HR","F","POP","TOTAL","OC6","C","Y30-49","2011","51","","" +"HR","F","POP","TOTAL","OC6","C","Y50-64","2011","25","","" +"HR","F","POP","TOTAL","OC6","C","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","E","Y30-49","2011","1","","" +"HR","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","F","Y30-49","2011","3","","" +"HR","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","G","Y15-29","2011","17","","" +"HR","F","POP","TOTAL","OC6","G","Y30-49","2011","30","","" +"HR","F","POP","TOTAL","OC6","G","Y50-64","2011","11","","" +"HR","F","POP","TOTAL","OC6","G","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","H","Y30-49","2011","3","","" +"HR","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","I","Y15-29","2011","4","","" +"HR","F","POP","TOTAL","OC6","I","Y30-49","2011","40","","" +"HR","F","POP","TOTAL","OC6","I","Y50-64","2011","19","","" +"HR","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","J","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","M","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","OC6","M","Y30-49","2011","6","","" +"HR","F","POP","TOTAL","OC6","M","Y50-64","2011","4","","" +"HR","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","N","Y15-29","2011","26","","" +"HR","F","POP","TOTAL","OC6","N","Y30-49","2011","241","","" +"HR","F","POP","TOTAL","OC6","N","Y50-64","2011","91","","" +"HR","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","O","Y30-49","2011","17","","" +"HR","F","POP","TOTAL","OC6","O","Y50-64","2011","5","","" +"HR","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","P","Y30-49","2011","6","","" +"HR","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","Q","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","OC6","Q","Y30-49","2011","6","","" +"HR","F","POP","TOTAL","OC6","Q","Y50-64","2011","2","","" +"HR","F","POP","TOTAL","OC6","Q","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","R","Y15-29","2011","2","","" +"HR","F","POP","TOTAL","OC6","R","Y30-49","2011","12","","" +"HR","F","POP","TOTAL","OC6","R","Y50-64","2011","5","","" +"HR","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","S","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","OC6","S","Y30-49","2011","3","","" +"HR","F","POP","TOTAL","OC6","S","Y50-64","2011","2","","" +"HR","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","T","Y15-29","2011","2","","" +"HR","F","POP","TOTAL","OC6","T","Y30-49","2011","1","","" +"HR","F","POP","TOTAL","OC6","T","Y50-64","2011","1","","" +"HR","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","A","Y15-29","2011","30","","" +"HR","F","POP","TOTAL","OC7","A","Y30-49","2011","147","","" +"HR","F","POP","TOTAL","OC7","A","Y50-64","2011","50","","" +"HR","F","POP","TOTAL","OC7","A","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC7","B","Y50-64","2011","3","","" +"HR","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","C","Y15-29","2011","3118","","" +"HR","F","POP","TOTAL","OC7","C","Y30-49","2011","13241","","" +"HR","F","POP","TOTAL","OC7","C","Y50-64","2011","4146","","" +"HR","F","POP","TOTAL","OC7","C","Y65-84","2011","29","","" +"HR","F","POP","TOTAL","OC7","C","Y_GE85","2011","5","","" +"HR","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","D","Y15-29","2011","3","","" +"HR","F","POP","TOTAL","OC7","D","Y30-49","2011","16","","" +"HR","F","POP","TOTAL","OC7","D","Y50-64","2011","10","","" +"HR","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","E","Y15-29","2011","7","","" +"HR","F","POP","TOTAL","OC7","E","Y30-49","2011","12","","" +"HR","F","POP","TOTAL","OC7","E","Y50-64","2011","4","","" +"HR","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","F","Y15-29","2011","54","","" +"HR","F","POP","TOTAL","OC7","F","Y30-49","2011","161","","" +"HR","F","POP","TOTAL","OC7","F","Y50-64","2011","63","","" +"HR","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","G","Y15-29","2011","576","","" +"HR","F","POP","TOTAL","OC7","G","Y30-49","2011","1759","","" +"HR","F","POP","TOTAL","OC7","G","Y50-64","2011","491","","" +"HR","F","POP","TOTAL","OC7","G","Y65-84","2011","11","","" +"HR","F","POP","TOTAL","OC7","G","Y_GE85","2011","1","","" +"HR","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","H","Y15-29","2011","10","","" +"HR","F","POP","TOTAL","OC7","H","Y30-49","2011","34","","" +"HR","F","POP","TOTAL","OC7","H","Y50-64","2011","7","","" +"HR","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","I","Y15-29","2011","385","","" +"HR","F","POP","TOTAL","OC7","I","Y30-49","2011","868","","" +"HR","F","POP","TOTAL","OC7","I","Y50-64","2011","245","","" +"HR","F","POP","TOTAL","OC7","I","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","J","Y15-29","2011","42","","" +"HR","F","POP","TOTAL","OC7","J","Y30-49","2011","149","","" +"HR","F","POP","TOTAL","OC7","J","Y50-64","2011","61","","" +"HR","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC7","K","Y30-49","2011","5","","" +"HR","F","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","L","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","OC7","L","Y30-49","2011","2","","" +"HR","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","M","Y15-29","2011","15","","" +"HR","F","POP","TOTAL","OC7","M","Y30-49","2011","57","","" +"HR","F","POP","TOTAL","OC7","M","Y50-64","2011","33","","" +"HR","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","N","Y15-29","2011","17","","" +"HR","F","POP","TOTAL","OC7","N","Y30-49","2011","62","","" +"HR","F","POP","TOTAL","OC7","N","Y50-64","2011","14","","" +"HR","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","O","Y15-29","2011","8","","" +"HR","F","POP","TOTAL","OC7","O","Y30-49","2011","57","","" +"HR","F","POP","TOTAL","OC7","O","Y50-64","2011","27","","" +"HR","F","POP","TOTAL","OC7","O","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","P","Y15-29","2011","3","","" +"HR","F","POP","TOTAL","OC7","P","Y30-49","2011","32","","" +"HR","F","POP","TOTAL","OC7","P","Y50-64","2011","31","","" +"HR","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","Q","Y15-29","2011","12","","" +"HR","F","POP","TOTAL","OC7","Q","Y30-49","2011","109","","" +"HR","F","POP","TOTAL","OC7","Q","Y50-64","2011","107","","" +"HR","F","POP","TOTAL","OC7","Q","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","R","Y15-29","2011","14","","" +"HR","F","POP","TOTAL","OC7","R","Y30-49","2011","70","","" +"HR","F","POP","TOTAL","OC7","R","Y50-64","2011","47","","" +"HR","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","S","Y15-29","2011","34","","" +"HR","F","POP","TOTAL","OC7","S","Y30-49","2011","195","","" +"HR","F","POP","TOTAL","OC7","S","Y50-64","2011","73","","" +"HR","F","POP","TOTAL","OC7","S","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC7","T","Y50-64","2011","4","","" +"HR","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC7","UNK","Y15-29","2011","12","","" +"HR","F","POP","TOTAL","OC7","UNK","Y30-49","2011","17","","" +"HR","F","POP","TOTAL","OC7","UNK","Y50-64","2011","12","","" +"HR","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","A","Y15-29","2011","56","","" +"HR","F","POP","TOTAL","OC8","A","Y30-49","2011","210","","" +"HR","F","POP","TOTAL","OC8","A","Y50-64","2011","74","","" +"HR","F","POP","TOTAL","OC8","A","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","B","Y15-29","2011","4","","" +"HR","F","POP","TOTAL","OC8","B","Y30-49","2011","15","","" +"HR","F","POP","TOTAL","OC8","B","Y50-64","2011","5","","" +"HR","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","C","Y15-29","2011","4346","","" +"HR","F","POP","TOTAL","OC8","C","Y30-49","2011","19740","","" +"HR","F","POP","TOTAL","OC8","C","Y50-64","2011","5566","","" +"HR","F","POP","TOTAL","OC8","C","Y65-84","2011","12","","" +"HR","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","D","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","OC8","D","Y30-49","2011","1","","" +"HR","F","POP","TOTAL","OC8","D","Y50-64","2011","1","","" +"HR","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","E","Y15-29","2011","14","","" +"HR","F","POP","TOTAL","OC8","E","Y30-49","2011","36","","" +"HR","F","POP","TOTAL","OC8","E","Y50-64","2011","20","","" +"HR","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","F","Y15-29","2011","11","","" +"HR","F","POP","TOTAL","OC8","F","Y30-49","2011","52","","" +"HR","F","POP","TOTAL","OC8","F","Y50-64","2011","11","","" +"HR","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","G","Y15-29","2011","109","","" +"HR","F","POP","TOTAL","OC8","G","Y30-49","2011","373","","" +"HR","F","POP","TOTAL","OC8","G","Y50-64","2011","95","","" +"HR","F","POP","TOTAL","OC8","G","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","H","Y15-29","2011","68","","" +"HR","F","POP","TOTAL","OC8","H","Y30-49","2011","367","","" +"HR","F","POP","TOTAL","OC8","H","Y50-64","2011","96","","" +"HR","F","POP","TOTAL","OC8","H","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","I","Y15-29","2011","49","","" +"HR","F","POP","TOTAL","OC8","I","Y30-49","2011","209","","" +"HR","F","POP","TOTAL","OC8","I","Y50-64","2011","116","","" +"HR","F","POP","TOTAL","OC8","I","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","J","Y15-29","2011","7","","" +"HR","F","POP","TOTAL","OC8","J","Y30-49","2011","13","","" +"HR","F","POP","TOTAL","OC8","J","Y50-64","2011","9","","" +"HR","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","K","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","OC8","K","Y30-49","2011","2","","" +"HR","F","POP","TOTAL","OC8","K","Y50-64","2011","3","","" +"HR","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","M","Y15-29","2011","21","","" +"HR","F","POP","TOTAL","OC8","M","Y30-49","2011","38","","" +"HR","F","POP","TOTAL","OC8","M","Y50-64","2011","10","","" +"HR","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","N","Y15-29","2011","16","","" +"HR","F","POP","TOTAL","OC8","N","Y30-49","2011","45","","" +"HR","F","POP","TOTAL","OC8","N","Y50-64","2011","14","","" +"HR","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","O","Y15-29","2011","7","","" +"HR","F","POP","TOTAL","OC8","O","Y30-49","2011","60","","" +"HR","F","POP","TOTAL","OC8","O","Y50-64","2011","20","","" +"HR","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","P","Y15-29","2011","2","","" +"HR","F","POP","TOTAL","OC8","P","Y30-49","2011","46","","" +"HR","F","POP","TOTAL","OC8","P","Y50-64","2011","38","","" +"HR","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","Q","Y15-29","2011","27","","" +"HR","F","POP","TOTAL","OC8","Q","Y30-49","2011","333","","" +"HR","F","POP","TOTAL","OC8","Q","Y50-64","2011","286","","" +"HR","F","POP","TOTAL","OC8","Q","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","R","Y15-29","2011","8","","" +"HR","F","POP","TOTAL","OC8","R","Y30-49","2011","15","","" +"HR","F","POP","TOTAL","OC8","R","Y50-64","2011","7","","" +"HR","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","S","Y15-29","2011","91","","" +"HR","F","POP","TOTAL","OC8","S","Y30-49","2011","429","","" +"HR","F","POP","TOTAL","OC8","S","Y50-64","2011","174","","" +"HR","F","POP","TOTAL","OC8","S","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC8","T","Y30-49","2011","1","","" +"HR","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC8","UNK","Y15-29","2011","4","","" +"HR","F","POP","TOTAL","OC8","UNK","Y30-49","2011","12","","" +"HR","F","POP","TOTAL","OC8","UNK","Y50-64","2011","5","","" +"HR","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","A","Y15-29","2011","648","","" +"HR","F","POP","TOTAL","OC9","A","Y30-49","2011","2953","","" +"HR","F","POP","TOTAL","OC9","A","Y50-64","2011","1192","","" +"HR","F","POP","TOTAL","OC9","A","Y65-84","2011","40","","" +"HR","F","POP","TOTAL","OC9","A","Y_GE85","2011","2","","" +"HR","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","B","Y15-29","2011","5","","" +"HR","F","POP","TOTAL","OC9","B","Y30-49","2011","44","","" +"HR","F","POP","TOTAL","OC9","B","Y50-64","2011","22","","" +"HR","F","POP","TOTAL","OC9","B","Y65-84","2011","2","","" +"HR","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","C","Y15-29","2011","2359","","" +"HR","F","POP","TOTAL","OC9","C","Y30-49","2011","10907","","" +"HR","F","POP","TOTAL","OC9","C","Y50-64","2011","3880","","" +"HR","F","POP","TOTAL","OC9","C","Y65-84","2011","9","","" +"HR","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","D","Y15-29","2011","12","","" +"HR","F","POP","TOTAL","OC9","D","Y30-49","2011","132","","" +"HR","F","POP","TOTAL","OC9","D","Y50-64","2011","121","","" +"HR","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","E","Y15-29","2011","116","","" +"HR","F","POP","TOTAL","OC9","E","Y30-49","2011","843","","" +"HR","F","POP","TOTAL","OC9","E","Y50-64","2011","394","","" +"HR","F","POP","TOTAL","OC9","E","Y65-84","2011","3","","" +"HR","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","F","Y15-29","2011","189","","" +"HR","F","POP","TOTAL","OC9","F","Y30-49","2011","855","","" +"HR","F","POP","TOTAL","OC9","F","Y50-64","2011","286","","" +"HR","F","POP","TOTAL","OC9","F","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","G","Y15-29","2011","689","","" +"HR","F","POP","TOTAL","OC9","G","Y30-49","2011","2200","","" +"HR","F","POP","TOTAL","OC9","G","Y50-64","2011","875","","" +"HR","F","POP","TOTAL","OC9","G","Y65-84","2011","3","","" +"HR","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","H","Y15-29","2011","153","","" +"HR","F","POP","TOTAL","OC9","H","Y30-49","2011","831","","" +"HR","F","POP","TOTAL","OC9","H","Y50-64","2011","468","","" +"HR","F","POP","TOTAL","OC9","H","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","I","Y15-29","2011","1214","","" +"HR","F","POP","TOTAL","OC9","I","Y30-49","2011","3859","","" +"HR","F","POP","TOTAL","OC9","I","Y50-64","2011","1595","","" +"HR","F","POP","TOTAL","OC9","I","Y65-84","2011","9","","" +"HR","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","J","Y15-29","2011","50","","" +"HR","F","POP","TOTAL","OC9","J","Y30-49","2011","176","","" +"HR","F","POP","TOTAL","OC9","J","Y50-64","2011","112","","" +"HR","F","POP","TOTAL","OC9","J","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","K","Y15-29","2011","33","","" +"HR","F","POP","TOTAL","OC9","K","Y30-49","2011","293","","" +"HR","F","POP","TOTAL","OC9","K","Y50-64","2011","161","","" +"HR","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","L","Y15-29","2011","12","","" +"HR","F","POP","TOTAL","OC9","L","Y30-49","2011","121","","" +"HR","F","POP","TOTAL","OC9","L","Y50-64","2011","70","","" +"HR","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","M","Y15-29","2011","117","","" +"HR","F","POP","TOTAL","OC9","M","Y30-49","2011","456","","" +"HR","F","POP","TOTAL","OC9","M","Y50-64","2011","241","","" +"HR","F","POP","TOTAL","OC9","M","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","N","Y15-29","2011","803","","" +"HR","F","POP","TOTAL","OC9","N","Y30-49","2011","5292","","" +"HR","F","POP","TOTAL","OC9","N","Y50-64","2011","2171","","" +"HR","F","POP","TOTAL","OC9","N","Y65-84","2011","17","","" +"HR","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","O","Y15-29","2011","181","","" +"HR","F","POP","TOTAL","OC9","O","Y30-49","2011","1698","","" +"HR","F","POP","TOTAL","OC9","O","Y50-64","2011","1143","","" +"HR","F","POP","TOTAL","OC9","O","Y65-84","2011","11","","" +"HR","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","P","Y15-29","2011","389","","" +"HR","F","POP","TOTAL","OC9","P","Y30-49","2011","5811","","" +"HR","F","POP","TOTAL","OC9","P","Y50-64","2011","3675","","" +"HR","F","POP","TOTAL","OC9","P","Y65-84","2011","9","","" +"HR","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","Q","Y15-29","2011","348","","" +"HR","F","POP","TOTAL","OC9","Q","Y30-49","2011","4557","","" +"HR","F","POP","TOTAL","OC9","Q","Y50-64","2011","2675","","" +"HR","F","POP","TOTAL","OC9","Q","Y65-84","2011","7","","" +"HR","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","R","Y15-29","2011","84","","" +"HR","F","POP","TOTAL","OC9","R","Y30-49","2011","698","","" +"HR","F","POP","TOTAL","OC9","R","Y50-64","2011","417","","" +"HR","F","POP","TOTAL","OC9","R","Y65-84","2011","7","","" +"HR","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","S","Y15-29","2011","92","","" +"HR","F","POP","TOTAL","OC9","S","Y30-49","2011","522","","" +"HR","F","POP","TOTAL","OC9","S","Y50-64","2011","230","","" +"HR","F","POP","TOTAL","OC9","S","Y65-84","2011","8","","" +"HR","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","T","Y15-29","2011","523","","" +"HR","F","POP","TOTAL","OC9","T","Y30-49","2011","1125","","" +"HR","F","POP","TOTAL","OC9","T","Y50-64","2011","139","","" +"HR","F","POP","TOTAL","OC9","T","Y65-84","2011","9","","" +"HR","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","OC9","U","Y30-49","2011","5","","" +"HR","F","POP","TOTAL","OC9","U","Y50-64","2011","6","","" +"HR","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","OC9","UNK","Y15-29","2011","45","","" +"HR","F","POP","TOTAL","OC9","UNK","Y30-49","2011","130","","" +"HR","F","POP","TOTAL","OC9","UNK","Y50-64","2011","83","","" +"HR","F","POP","TOTAL","OC9","UNK","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","A","Y15-29","2011","7","","" +"HR","F","POP","TOTAL","UNK","A","Y30-49","2011","33","","" +"HR","F","POP","TOTAL","UNK","A","Y50-64","2011","21","","" +"HR","F","POP","TOTAL","UNK","A","Y65-84","2011","6","","" +"HR","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","B","Y15-29","2011","1","","" +"HR","F","POP","TOTAL","UNK","B","Y30-49","2011","5","","" +"HR","F","POP","TOTAL","UNK","B","Y50-64","2011","4","","" +"HR","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","C","Y15-29","2011","66","","" +"HR","F","POP","TOTAL","UNK","C","Y30-49","2011","173","","" +"HR","F","POP","TOTAL","UNK","C","Y50-64","2011","78","","" +"HR","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","D","Y15-29","2011","2","","" +"HR","F","POP","TOTAL","UNK","D","Y30-49","2011","7","","" +"HR","F","POP","TOTAL","UNK","D","Y50-64","2011","9","","" +"HR","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","E","Y15-29","2011","2","","" +"HR","F","POP","TOTAL","UNK","E","Y30-49","2011","9","","" +"HR","F","POP","TOTAL","UNK","E","Y50-64","2011","8","","" +"HR","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","F","Y15-29","2011","6","","" +"HR","F","POP","TOTAL","UNK","F","Y30-49","2011","17","","" +"HR","F","POP","TOTAL","UNK","F","Y50-64","2011","18","","" +"HR","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","G","Y15-29","2011","88","","" +"HR","F","POP","TOTAL","UNK","G","Y30-49","2011","191","","" +"HR","F","POP","TOTAL","UNK","G","Y50-64","2011","64","","" +"HR","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","H","Y15-29","2011","10","","" +"HR","F","POP","TOTAL","UNK","H","Y30-49","2011","27","","" +"HR","F","POP","TOTAL","UNK","H","Y50-64","2011","13","","" +"HR","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","I","Y15-29","2011","32","","" +"HR","F","POP","TOTAL","UNK","I","Y30-49","2011","66","","" +"HR","F","POP","TOTAL","UNK","I","Y50-64","2011","24","","" +"HR","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","J","Y15-29","2011","28","","" +"HR","F","POP","TOTAL","UNK","J","Y30-49","2011","50","","" +"HR","F","POP","TOTAL","UNK","J","Y50-64","2011","9","","" +"HR","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","K","Y15-29","2011","22","","" +"HR","F","POP","TOTAL","UNK","K","Y30-49","2011","56","","" +"HR","F","POP","TOTAL","UNK","K","Y50-64","2011","31","","" +"HR","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","L","Y15-29","2011","6","","" +"HR","F","POP","TOTAL","UNK","L","Y30-49","2011","7","","" +"HR","F","POP","TOTAL","UNK","L","Y50-64","2011","2","","" +"HR","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","M","Y15-29","2011","47","","" +"HR","F","POP","TOTAL","UNK","M","Y30-49","2011","77","","" +"HR","F","POP","TOTAL","UNK","M","Y50-64","2011","25","","" +"HR","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","N","Y15-29","2011","18","","" +"HR","F","POP","TOTAL","UNK","N","Y30-49","2011","36","","" +"HR","F","POP","TOTAL","UNK","N","Y50-64","2011","23","","" +"HR","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"HR","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","O","Y15-29","2011","35","","" +"HR","F","POP","TOTAL","UNK","O","Y30-49","2011","166","","" +"HR","F","POP","TOTAL","UNK","O","Y50-64","2011","91","","" +"HR","F","POP","TOTAL","UNK","O","Y65-84","2011","5","","" +"HR","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","P","Y15-29","2011","203","","" +"HR","F","POP","TOTAL","UNK","P","Y30-49","2011","299","","" +"HR","F","POP","TOTAL","UNK","P","Y50-64","2011","119","","" +"HR","F","POP","TOTAL","UNK","P","Y65-84","2011","4","","" +"HR","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","Q","Y15-29","2011","87","","" +"HR","F","POP","TOTAL","UNK","Q","Y30-49","2011","170","","" +"HR","F","POP","TOTAL","UNK","Q","Y50-64","2011","109","","" +"HR","F","POP","TOTAL","UNK","Q","Y65-84","2011","1","","" +"HR","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","R","Y15-29","2011","44","","" +"HR","F","POP","TOTAL","UNK","R","Y30-49","2011","39","","" +"HR","F","POP","TOTAL","UNK","R","Y50-64","2011","10","","" +"HR","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","S","Y15-29","2011","33","","" +"HR","F","POP","TOTAL","UNK","S","Y30-49","2011","59","","" +"HR","F","POP","TOTAL","UNK","S","Y50-64","2011","15","","" +"HR","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","UNK","T","Y30-49","2011","3","","" +"HR","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"HR","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"HR","F","POP","TOTAL","UNK","U","Y30-49","2011","2","","" +"HR","F","POP","TOTAL","UNK","U","Y50-64","2011","1","","" +"HR","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"HR","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"HR","F","POP","TOTAL","UNK","UNK","Y15-29","2011","964","","" +"HR","F","POP","TOTAL","UNK","UNK","Y30-49","2011","1491","","" +"HR","F","POP","TOTAL","UNK","UNK","Y50-64","2011","632","","" +"HR","F","POP","TOTAL","UNK","UNK","Y65-84","2011","88","","" +"HR","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"HR","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","NAP","Y15-29","2011","202579","","" +"HR","M","POP","TOTAL","NAP","NAP","Y30-49","2011","102309","","" +"HR","M","POP","TOTAL","NAP","NAP","Y50-64","2011","196436","","" +"HR","M","POP","TOTAL","NAP","NAP","Y65-84","2011","272563","","" +"HR","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","15412","","" +"HR","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","334725","","" +"HR","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","N","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","O","Y15-29","2011","2757","","" +"HR","M","POP","TOTAL","OC0","O","Y30-49","2011","9261","","" +"HR","M","POP","TOTAL","OC0","O","Y50-64","2011","595","","" +"HR","M","POP","TOTAL","OC0","O","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","P","Y30-49","2011","7","","" +"HR","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC0","UNK","Y30-49","2011","2","","" +"HR","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","A","Y15-29","2011","65","","" +"HR","M","POP","TOTAL","OC1","A","Y30-49","2011","646","","" +"HR","M","POP","TOTAL","OC1","A","Y50-64","2011","442","","" +"HR","M","POP","TOTAL","OC1","A","Y65-84","2011","12","","" +"HR","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","B","Y15-29","2011","12","","" +"HR","M","POP","TOTAL","OC1","B","Y30-49","2011","81","","" +"HR","M","POP","TOTAL","OC1","B","Y50-64","2011","92","","" +"HR","M","POP","TOTAL","OC1","B","Y65-84","2011","7","","" +"HR","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","C","Y15-29","2011","507","","" +"HR","M","POP","TOTAL","OC1","C","Y30-49","2011","4591","","" +"HR","M","POP","TOTAL","OC1","C","Y50-64","2011","3520","","" +"HR","M","POP","TOTAL","OC1","C","Y65-84","2011","117","","" +"HR","M","POP","TOTAL","OC1","C","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","D","Y15-29","2011","4","","" +"HR","M","POP","TOTAL","OC1","D","Y30-49","2011","116","","" +"HR","M","POP","TOTAL","OC1","D","Y50-64","2011","106","","" +"HR","M","POP","TOTAL","OC1","D","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","E","Y15-29","2011","18","","" +"HR","M","POP","TOTAL","OC1","E","Y30-49","2011","278","","" +"HR","M","POP","TOTAL","OC1","E","Y50-64","2011","236","","" +"HR","M","POP","TOTAL","OC1","E","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","F","Y15-29","2011","410","","" +"HR","M","POP","TOTAL","OC1","F","Y30-49","2011","3797","","" +"HR","M","POP","TOTAL","OC1","F","Y50-64","2011","2516","","" +"HR","M","POP","TOTAL","OC1","F","Y65-84","2011","80","","" +"HR","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","G","Y15-29","2011","649","","" +"HR","M","POP","TOTAL","OC1","G","Y30-49","2011","6661","","" +"HR","M","POP","TOTAL","OC1","G","Y50-64","2011","3982","","" +"HR","M","POP","TOTAL","OC1","G","Y65-84","2011","101","","" +"HR","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","H","Y15-29","2011","98","","" +"HR","M","POP","TOTAL","OC1","H","Y30-49","2011","1110","","" +"HR","M","POP","TOTAL","OC1","H","Y50-64","2011","908","","" +"HR","M","POP","TOTAL","OC1","H","Y65-84","2011","28","","" +"HR","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","I","Y15-29","2011","400","","" +"HR","M","POP","TOTAL","OC1","I","Y30-49","2011","2240","","" +"HR","M","POP","TOTAL","OC1","I","Y50-64","2011","1427","","" +"HR","M","POP","TOTAL","OC1","I","Y65-84","2011","44","","" +"HR","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","J","Y15-29","2011","146","","" +"HR","M","POP","TOTAL","OC1","J","Y30-49","2011","1373","","" +"HR","M","POP","TOTAL","OC1","J","Y50-64","2011","510","","" +"HR","M","POP","TOTAL","OC1","J","Y65-84","2011","11","","" +"HR","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","K","Y15-29","2011","51","","" +"HR","M","POP","TOTAL","OC1","K","Y30-49","2011","1015","","" +"HR","M","POP","TOTAL","OC1","K","Y50-64","2011","427","","" +"HR","M","POP","TOTAL","OC1","K","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","L","Y15-29","2011","30","","" +"HR","M","POP","TOTAL","OC1","L","Y30-49","2011","305","","" +"HR","M","POP","TOTAL","OC1","L","Y50-64","2011","203","","" +"HR","M","POP","TOTAL","OC1","L","Y65-84","2011","7","","" +"HR","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","M","Y15-29","2011","166","","" +"HR","M","POP","TOTAL","OC1","M","Y30-49","2011","1887","","" +"HR","M","POP","TOTAL","OC1","M","Y50-64","2011","1402","","" +"HR","M","POP","TOTAL","OC1","M","Y65-84","2011","107","","" +"HR","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","N","Y15-29","2011","95","","" +"HR","M","POP","TOTAL","OC1","N","Y30-49","2011","807","","" +"HR","M","POP","TOTAL","OC1","N","Y50-64","2011","440","","" +"HR","M","POP","TOTAL","OC1","N","Y65-84","2011","19","","" +"HR","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","O","Y15-29","2011","53","","" +"HR","M","POP","TOTAL","OC1","O","Y30-49","2011","769","","" +"HR","M","POP","TOTAL","OC1","O","Y50-64","2011","718","","" +"HR","M","POP","TOTAL","OC1","O","Y65-84","2011","73","","" +"HR","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","P","Y15-29","2011","20","","" +"HR","M","POP","TOTAL","OC1","P","Y30-49","2011","435","","" +"HR","M","POP","TOTAL","OC1","P","Y50-64","2011","635","","" +"HR","M","POP","TOTAL","OC1","P","Y65-84","2011","39","","" +"HR","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","Q","Y15-29","2011","34","","" +"HR","M","POP","TOTAL","OC1","Q","Y30-49","2011","237","","" +"HR","M","POP","TOTAL","OC1","Q","Y50-64","2011","282","","" +"HR","M","POP","TOTAL","OC1","Q","Y65-84","2011","26","","" +"HR","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","R","Y15-29","2011","40","","" +"HR","M","POP","TOTAL","OC1","R","Y30-49","2011","500","","" +"HR","M","POP","TOTAL","OC1","R","Y50-64","2011","358","","" +"HR","M","POP","TOTAL","OC1","R","Y65-84","2011","19","","" +"HR","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","S","Y15-29","2011","60","","" +"HR","M","POP","TOTAL","OC1","S","Y30-49","2011","482","","" +"HR","M","POP","TOTAL","OC1","S","Y50-64","2011","386","","" +"HR","M","POP","TOTAL","OC1","S","Y65-84","2011","25","","" +"HR","M","POP","TOTAL","OC1","S","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","U","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC1","U","Y30-49","2011","2","","" +"HR","M","POP","TOTAL","OC1","U","Y50-64","2011","4","","" +"HR","M","POP","TOTAL","OC1","U","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC1","UNK","Y15-29","2011","4","","" +"HR","M","POP","TOTAL","OC1","UNK","Y30-49","2011","28","","" +"HR","M","POP","TOTAL","OC1","UNK","Y50-64","2011","16","","" +"HR","M","POP","TOTAL","OC1","UNK","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","A","Y15-29","2011","208","","" +"HR","M","POP","TOTAL","OC2","A","Y30-49","2011","990","","" +"HR","M","POP","TOTAL","OC2","A","Y50-64","2011","459","","" +"HR","M","POP","TOTAL","OC2","A","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","B","Y15-29","2011","82","","" +"HR","M","POP","TOTAL","OC2","B","Y30-49","2011","328","","" +"HR","M","POP","TOTAL","OC2","B","Y50-64","2011","251","","" +"HR","M","POP","TOTAL","OC2","B","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","C","Y15-29","2011","1540","","" +"HR","M","POP","TOTAL","OC2","C","Y30-49","2011","4399","","" +"HR","M","POP","TOTAL","OC2","C","Y50-64","2011","2708","","" +"HR","M","POP","TOTAL","OC2","C","Y65-84","2011","40","","" +"HR","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","D","Y15-29","2011","223","","" +"HR","M","POP","TOTAL","OC2","D","Y30-49","2011","683","","" +"HR","M","POP","TOTAL","OC2","D","Y50-64","2011","648","","" +"HR","M","POP","TOTAL","OC2","D","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","E","Y15-29","2011","70","","" +"HR","M","POP","TOTAL","OC2","E","Y30-49","2011","308","","" +"HR","M","POP","TOTAL","OC2","E","Y50-64","2011","259","","" +"HR","M","POP","TOTAL","OC2","E","Y65-84","2011","7","","" +"HR","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","F","Y15-29","2011","641","","" +"HR","M","POP","TOTAL","OC2","F","Y30-49","2011","1934","","" +"HR","M","POP","TOTAL","OC2","F","Y50-64","2011","1063","","" +"HR","M","POP","TOTAL","OC2","F","Y65-84","2011","51","","" +"HR","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","G","Y15-29","2011","767","","" +"HR","M","POP","TOTAL","OC2","G","Y30-49","2011","2152","","" +"HR","M","POP","TOTAL","OC2","G","Y50-64","2011","828","","" +"HR","M","POP","TOTAL","OC2","G","Y65-84","2011","23","","" +"HR","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","H","Y15-29","2011","199","","" +"HR","M","POP","TOTAL","OC2","H","Y30-49","2011","1083","","" +"HR","M","POP","TOTAL","OC2","H","Y50-64","2011","708","","" +"HR","M","POP","TOTAL","OC2","H","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","I","Y15-29","2011","144","","" +"HR","M","POP","TOTAL","OC2","I","Y30-49","2011","286","","" +"HR","M","POP","TOTAL","OC2","I","Y50-64","2011","213","","" +"HR","M","POP","TOTAL","OC2","I","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","J","Y15-29","2011","2098","","" +"HR","M","POP","TOTAL","OC2","J","Y30-49","2011","6283","","" +"HR","M","POP","TOTAL","OC2","J","Y50-64","2011","1508","","" +"HR","M","POP","TOTAL","OC2","J","Y65-84","2011","55","","" +"HR","M","POP","TOTAL","OC2","J","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","K","Y15-29","2011","812","","" +"HR","M","POP","TOTAL","OC2","K","Y30-49","2011","2334","","" +"HR","M","POP","TOTAL","OC2","K","Y50-64","2011","543","","" +"HR","M","POP","TOTAL","OC2","K","Y65-84","2011","13","","" +"HR","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","L","Y15-29","2011","36","","" +"HR","M","POP","TOTAL","OC2","L","Y30-49","2011","125","","" +"HR","M","POP","TOTAL","OC2","L","Y50-64","2011","77","","" +"HR","M","POP","TOTAL","OC2","L","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","M","Y15-29","2011","2254","","" +"HR","M","POP","TOTAL","OC2","M","Y30-49","2011","7605","","" +"HR","M","POP","TOTAL","OC2","M","Y50-64","2011","3874","","" +"HR","M","POP","TOTAL","OC2","M","Y65-84","2011","478","","" +"HR","M","POP","TOTAL","OC2","M","Y_GE85","2011","2","","" +"HR","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","N","Y15-29","2011","157","","" +"HR","M","POP","TOTAL","OC2","N","Y30-49","2011","332","","" +"HR","M","POP","TOTAL","OC2","N","Y50-64","2011","154","","" +"HR","M","POP","TOTAL","OC2","N","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","O","Y15-29","2011","674","","" +"HR","M","POP","TOTAL","OC2","O","Y30-49","2011","5500","","" +"HR","M","POP","TOTAL","OC2","O","Y50-64","2011","3616","","" +"HR","M","POP","TOTAL","OC2","O","Y65-84","2011","163","","" +"HR","M","POP","TOTAL","OC2","O","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","P","Y15-29","2011","2647","","" +"HR","M","POP","TOTAL","OC2","P","Y30-49","2011","8116","","" +"HR","M","POP","TOTAL","OC2","P","Y50-64","2011","6241","","" +"HR","M","POP","TOTAL","OC2","P","Y65-84","2011","511","","" +"HR","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","Q","Y15-29","2011","1122","","" +"HR","M","POP","TOTAL","OC2","Q","Y30-49","2011","4126","","" +"HR","M","POP","TOTAL","OC2","Q","Y50-64","2011","3119","","" +"HR","M","POP","TOTAL","OC2","Q","Y65-84","2011","290","","" +"HR","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","R","Y15-29","2011","389","","" +"HR","M","POP","TOTAL","OC2","R","Y30-49","2011","1890","","" +"HR","M","POP","TOTAL","OC2","R","Y50-64","2011","1094","","" +"HR","M","POP","TOTAL","OC2","R","Y65-84","2011","81","","" +"HR","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","S","Y15-29","2011","261","","" +"HR","M","POP","TOTAL","OC2","S","Y30-49","2011","1130","","" +"HR","M","POP","TOTAL","OC2","S","Y50-64","2011","831","","" +"HR","M","POP","TOTAL","OC2","S","Y65-84","2011","352","","" +"HR","M","POP","TOTAL","OC2","S","Y_GE85","2011","10","","" +"HR","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","U","Y15-29","2011","12","","" +"HR","M","POP","TOTAL","OC2","U","Y30-49","2011","58","","" +"HR","M","POP","TOTAL","OC2","U","Y50-64","2011","16","","" +"HR","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC2","UNK","Y15-29","2011","26","","" +"HR","M","POP","TOTAL","OC2","UNK","Y30-49","2011","53","","" +"HR","M","POP","TOTAL","OC2","UNK","Y50-64","2011","38","","" +"HR","M","POP","TOTAL","OC2","UNK","Y65-84","2011","10","","" +"HR","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","A","Y15-29","2011","656","","" +"HR","M","POP","TOTAL","OC3","A","Y30-49","2011","2005","","" +"HR","M","POP","TOTAL","OC3","A","Y50-64","2011","929","","" +"HR","M","POP","TOTAL","OC3","A","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","B","Y15-29","2011","146","","" +"HR","M","POP","TOTAL","OC3","B","Y30-49","2011","888","","" +"HR","M","POP","TOTAL","OC3","B","Y50-64","2011","760","","" +"HR","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","C","Y15-29","2011","4245","","" +"HR","M","POP","TOTAL","OC3","C","Y30-49","2011","13989","","" +"HR","M","POP","TOTAL","OC3","C","Y50-64","2011","9876","","" +"HR","M","POP","TOTAL","OC3","C","Y65-84","2011","55","","" +"HR","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","D","Y15-29","2011","182","","" +"HR","M","POP","TOTAL","OC3","D","Y30-49","2011","1827","","" +"HR","M","POP","TOTAL","OC3","D","Y50-64","2011","1977","","" +"HR","M","POP","TOTAL","OC3","D","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","E","Y15-29","2011","233","","" +"HR","M","POP","TOTAL","OC3","E","Y30-49","2011","1102","","" +"HR","M","POP","TOTAL","OC3","E","Y50-64","2011","1112","","" +"HR","M","POP","TOTAL","OC3","E","Y65-84","2011","3","","" +"HR","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","F","Y15-29","2011","2415","","" +"HR","M","POP","TOTAL","OC3","F","Y30-49","2011","6938","","" +"HR","M","POP","TOTAL","OC3","F","Y50-64","2011","4551","","" +"HR","M","POP","TOTAL","OC3","F","Y65-84","2011","47","","" +"HR","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","G","Y15-29","2011","3874","","" +"HR","M","POP","TOTAL","OC3","G","Y30-49","2011","12132","","" +"HR","M","POP","TOTAL","OC3","G","Y50-64","2011","3334","","" +"HR","M","POP","TOTAL","OC3","G","Y65-84","2011","45","","" +"HR","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","H","Y15-29","2011","2403","","" +"HR","M","POP","TOTAL","OC3","H","Y30-49","2011","9195","","" +"HR","M","POP","TOTAL","OC3","H","Y50-64","2011","5121","","" +"HR","M","POP","TOTAL","OC3","H","Y65-84","2011","38","","" +"HR","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","I","Y15-29","2011","396","","" +"HR","M","POP","TOTAL","OC3","I","Y30-49","2011","973","","" +"HR","M","POP","TOTAL","OC3","I","Y50-64","2011","593","","" +"HR","M","POP","TOTAL","OC3","I","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","J","Y15-29","2011","2850","","" +"HR","M","POP","TOTAL","OC3","J","Y30-49","2011","7061","","" +"HR","M","POP","TOTAL","OC3","J","Y50-64","2011","1733","","" +"HR","M","POP","TOTAL","OC3","J","Y65-84","2011","13","","" +"HR","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","K","Y15-29","2011","1373","","" +"HR","M","POP","TOTAL","OC3","K","Y30-49","2011","3358","","" +"HR","M","POP","TOTAL","OC3","K","Y50-64","2011","1276","","" +"HR","M","POP","TOTAL","OC3","K","Y65-84","2011","19","","" +"HR","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","L","Y15-29","2011","146","","" +"HR","M","POP","TOTAL","OC3","L","Y30-49","2011","635","","" +"HR","M","POP","TOTAL","OC3","L","Y50-64","2011","324","","" +"HR","M","POP","TOTAL","OC3","L","Y65-84","2011","7","","" +"HR","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","M","Y15-29","2011","2195","","" +"HR","M","POP","TOTAL","OC3","M","Y30-49","2011","4617","","" +"HR","M","POP","TOTAL","OC3","M","Y50-64","2011","2301","","" +"HR","M","POP","TOTAL","OC3","M","Y65-84","2011","88","","" +"HR","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","N","Y15-29","2011","477","","" +"HR","M","POP","TOTAL","OC3","N","Y30-49","2011","1144","","" +"HR","M","POP","TOTAL","OC3","N","Y50-64","2011","406","","" +"HR","M","POP","TOTAL","OC3","N","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","O","Y15-29","2011","1071","","" +"HR","M","POP","TOTAL","OC3","O","Y30-49","2011","6593","","" +"HR","M","POP","TOTAL","OC3","O","Y50-64","2011","2653","","" +"HR","M","POP","TOTAL","OC3","O","Y65-84","2011","54","","" +"HR","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","P","Y15-29","2011","252","","" +"HR","M","POP","TOTAL","OC3","P","Y30-49","2011","646","","" +"HR","M","POP","TOTAL","OC3","P","Y50-64","2011","383","","" +"HR","M","POP","TOTAL","OC3","P","Y65-84","2011","8","","" +"HR","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","Q","Y15-29","2011","2090","","" +"HR","M","POP","TOTAL","OC3","Q","Y30-49","2011","2486","","" +"HR","M","POP","TOTAL","OC3","Q","Y50-64","2011","1029","","" +"HR","M","POP","TOTAL","OC3","Q","Y65-84","2011","11","","" +"HR","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","R","Y15-29","2011","1465","","" +"HR","M","POP","TOTAL","OC3","R","Y30-49","2011","2196","","" +"HR","M","POP","TOTAL","OC3","R","Y50-64","2011","753","","" +"HR","M","POP","TOTAL","OC3","R","Y65-84","2011","31","","" +"HR","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","S","Y15-29","2011","354","","" +"HR","M","POP","TOTAL","OC3","S","Y30-49","2011","831","","" +"HR","M","POP","TOTAL","OC3","S","Y50-64","2011","359","","" +"HR","M","POP","TOTAL","OC3","S","Y65-84","2011","18","","" +"HR","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","T","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","U","Y15-29","2011","5","","" +"HR","M","POP","TOTAL","OC3","U","Y30-49","2011","35","","" +"HR","M","POP","TOTAL","OC3","U","Y50-64","2011","10","","" +"HR","M","POP","TOTAL","OC3","U","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC3","UNK","Y15-29","2011","77","","" +"HR","M","POP","TOTAL","OC3","UNK","Y30-49","2011","139","","" +"HR","M","POP","TOTAL","OC3","UNK","Y50-64","2011","75","","" +"HR","M","POP","TOTAL","OC3","UNK","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","A","Y15-29","2011","111","","" +"HR","M","POP","TOTAL","OC4","A","Y30-49","2011","282","","" +"HR","M","POP","TOTAL","OC4","A","Y50-64","2011","249","","" +"HR","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","B","Y15-29","2011","24","","" +"HR","M","POP","TOTAL","OC4","B","Y30-49","2011","98","","" +"HR","M","POP","TOTAL","OC4","B","Y50-64","2011","117","","" +"HR","M","POP","TOTAL","OC4","B","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","C","Y15-29","2011","1723","","" +"HR","M","POP","TOTAL","OC4","C","Y30-49","2011","3432","","" +"HR","M","POP","TOTAL","OC4","C","Y50-64","2011","2166","","" +"HR","M","POP","TOTAL","OC4","C","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","D","Y15-29","2011","62","","" +"HR","M","POP","TOTAL","OC4","D","Y30-49","2011","329","","" +"HR","M","POP","TOTAL","OC4","D","Y50-64","2011","407","","" +"HR","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","E","Y15-29","2011","124","","" +"HR","M","POP","TOTAL","OC4","E","Y30-49","2011","436","","" +"HR","M","POP","TOTAL","OC4","E","Y50-64","2011","363","","" +"HR","M","POP","TOTAL","OC4","E","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","F","Y15-29","2011","371","","" +"HR","M","POP","TOTAL","OC4","F","Y30-49","2011","801","","" +"HR","M","POP","TOTAL","OC4","F","Y50-64","2011","589","","" +"HR","M","POP","TOTAL","OC4","F","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","G","Y15-29","2011","4001","","" +"HR","M","POP","TOTAL","OC4","G","Y30-49","2011","5367","","" +"HR","M","POP","TOTAL","OC4","G","Y50-64","2011","1613","","" +"HR","M","POP","TOTAL","OC4","G","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","H","Y15-29","2011","2056","","" +"HR","M","POP","TOTAL","OC4","H","Y30-49","2011","6224","","" +"HR","M","POP","TOTAL","OC4","H","Y50-64","2011","3258","","" +"HR","M","POP","TOTAL","OC4","H","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","I","Y15-29","2011","783","","" +"HR","M","POP","TOTAL","OC4","I","Y30-49","2011","1112","","" +"HR","M","POP","TOTAL","OC4","I","Y50-64","2011","690","","" +"HR","M","POP","TOTAL","OC4","I","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","J","Y15-29","2011","692","","" +"HR","M","POP","TOTAL","OC4","J","Y30-49","2011","714","","" +"HR","M","POP","TOTAL","OC4","J","Y50-64","2011","259","","" +"HR","M","POP","TOTAL","OC4","J","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","K","Y15-29","2011","794","","" +"HR","M","POP","TOTAL","OC4","K","Y30-49","2011","1556","","" +"HR","M","POP","TOTAL","OC4","K","Y50-64","2011","930","","" +"HR","M","POP","TOTAL","OC4","K","Y65-84","2011","3","","" +"HR","M","POP","TOTAL","OC4","K","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","L","Y15-29","2011","36","","" +"HR","M","POP","TOTAL","OC4","L","Y30-49","2011","109","","" +"HR","M","POP","TOTAL","OC4","L","Y50-64","2011","76","","" +"HR","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","M","Y15-29","2011","655","","" +"HR","M","POP","TOTAL","OC4","M","Y30-49","2011","985","","" +"HR","M","POP","TOTAL","OC4","M","Y50-64","2011","489","","" +"HR","M","POP","TOTAL","OC4","M","Y65-84","2011","9","","" +"HR","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","N","Y15-29","2011","481","","" +"HR","M","POP","TOTAL","OC4","N","Y30-49","2011","759","","" +"HR","M","POP","TOTAL","OC4","N","Y50-64","2011","289","","" +"HR","M","POP","TOTAL","OC4","N","Y65-84","2011","8","","" +"HR","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","O","Y15-29","2011","2619","","" +"HR","M","POP","TOTAL","OC4","O","Y30-49","2011","2989","","" +"HR","M","POP","TOTAL","OC4","O","Y50-64","2011","1729","","" +"HR","M","POP","TOTAL","OC4","O","Y65-84","2011","19","","" +"HR","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","P","Y15-29","2011","111","","" +"HR","M","POP","TOTAL","OC4","P","Y30-49","2011","209","","" +"HR","M","POP","TOTAL","OC4","P","Y50-64","2011","191","","" +"HR","M","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","Q","Y15-29","2011","131","","" +"HR","M","POP","TOTAL","OC4","Q","Y30-49","2011","353","","" +"HR","M","POP","TOTAL","OC4","Q","Y50-64","2011","355","","" +"HR","M","POP","TOTAL","OC4","Q","Y65-84","2011","3","","" +"HR","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","R","Y15-29","2011","678","","" +"HR","M","POP","TOTAL","OC4","R","Y30-49","2011","966","","" +"HR","M","POP","TOTAL","OC4","R","Y50-64","2011","332","","" +"HR","M","POP","TOTAL","OC4","R","Y65-84","2011","10","","" +"HR","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","S","Y15-29","2011","119","","" +"HR","M","POP","TOTAL","OC4","S","Y30-49","2011","244","","" +"HR","M","POP","TOTAL","OC4","S","Y50-64","2011","128","","" +"HR","M","POP","TOTAL","OC4","S","Y65-84","2011","11","","" +"HR","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","T","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","U","Y15-29","2011","3","","" +"HR","M","POP","TOTAL","OC4","U","Y30-49","2011","50","","" +"HR","M","POP","TOTAL","OC4","U","Y50-64","2011","10","","" +"HR","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC4","UNK","Y15-29","2011","62","","" +"HR","M","POP","TOTAL","OC4","UNK","Y30-49","2011","55","","" +"HR","M","POP","TOTAL","OC4","UNK","Y50-64","2011","26","","" +"HR","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","A","Y15-29","2011","105","","" +"HR","M","POP","TOTAL","OC5","A","Y30-49","2011","386","","" +"HR","M","POP","TOTAL","OC5","A","Y50-64","2011","335","","" +"HR","M","POP","TOTAL","OC5","A","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","B","Y15-29","2011","23","","" +"HR","M","POP","TOTAL","OC5","B","Y30-49","2011","116","","" +"HR","M","POP","TOTAL","OC5","B","Y50-64","2011","102","","" +"HR","M","POP","TOTAL","OC5","B","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","C","Y15-29","2011","648","","" +"HR","M","POP","TOTAL","OC5","C","Y30-49","2011","2028","","" +"HR","M","POP","TOTAL","OC5","C","Y50-64","2011","1320","","" +"HR","M","POP","TOTAL","OC5","C","Y65-84","2011","9","","" +"HR","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","D","Y15-29","2011","22","","" +"HR","M","POP","TOTAL","OC5","D","Y30-49","2011","97","","" +"HR","M","POP","TOTAL","OC5","D","Y50-64","2011","137","","" +"HR","M","POP","TOTAL","OC5","D","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","E","Y15-29","2011","96","","" +"HR","M","POP","TOTAL","OC5","E","Y30-49","2011","487","","" +"HR","M","POP","TOTAL","OC5","E","Y50-64","2011","364","","" +"HR","M","POP","TOTAL","OC5","E","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","F","Y15-29","2011","185","","" +"HR","M","POP","TOTAL","OC5","F","Y30-49","2011","712","","" +"HR","M","POP","TOTAL","OC5","F","Y50-64","2011","537","","" +"HR","M","POP","TOTAL","OC5","F","Y65-84","2011","7","","" +"HR","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","G","Y15-29","2011","10887","","" +"HR","M","POP","TOTAL","OC5","G","Y30-49","2011","21220","","" +"HR","M","POP","TOTAL","OC5","G","Y50-64","2011","7055","","" +"HR","M","POP","TOTAL","OC5","G","Y65-84","2011","77","","" +"HR","M","POP","TOTAL","OC5","G","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","H","Y15-29","2011","660","","" +"HR","M","POP","TOTAL","OC5","H","Y30-49","2011","1934","","" +"HR","M","POP","TOTAL","OC5","H","Y50-64","2011","1222","","" +"HR","M","POP","TOTAL","OC5","H","Y65-84","2011","3","","" +"HR","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","I","Y15-29","2011","17364","","" +"HR","M","POP","TOTAL","OC5","I","Y30-49","2011","18636","","" +"HR","M","POP","TOTAL","OC5","I","Y50-64","2011","6024","","" +"HR","M","POP","TOTAL","OC5","I","Y65-84","2011","143","","" +"HR","M","POP","TOTAL","OC5","I","Y_GE85","2011","3","","" +"HR","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","J","Y15-29","2011","343","","" +"HR","M","POP","TOTAL","OC5","J","Y30-49","2011","391","","" +"HR","M","POP","TOTAL","OC5","J","Y50-64","2011","115","","" +"HR","M","POP","TOTAL","OC5","J","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","K","Y15-29","2011","149","","" +"HR","M","POP","TOTAL","OC5","K","Y30-49","2011","326","","" +"HR","M","POP","TOTAL","OC5","K","Y50-64","2011","178","","" +"HR","M","POP","TOTAL","OC5","K","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","L","Y15-29","2011","55","","" +"HR","M","POP","TOTAL","OC5","L","Y30-49","2011","206","","" +"HR","M","POP","TOTAL","OC5","L","Y50-64","2011","175","","" +"HR","M","POP","TOTAL","OC5","L","Y65-84","2011","30","","" +"HR","M","POP","TOTAL","OC5","L","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","M","Y15-29","2011","126","","" +"HR","M","POP","TOTAL","OC5","M","Y30-49","2011","309","","" +"HR","M","POP","TOTAL","OC5","M","Y50-64","2011","201","","" +"HR","M","POP","TOTAL","OC5","M","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","N","Y15-29","2011","3563","","" +"HR","M","POP","TOTAL","OC5","N","Y30-49","2011","7193","","" +"HR","M","POP","TOTAL","OC5","N","Y50-64","2011","3273","","" +"HR","M","POP","TOTAL","OC5","N","Y65-84","2011","34","","" +"HR","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","O","Y15-29","2011","4078","","" +"HR","M","POP","TOTAL","OC5","O","Y30-49","2011","13201","","" +"HR","M","POP","TOTAL","OC5","O","Y50-64","2011","1932","","" +"HR","M","POP","TOTAL","OC5","O","Y65-84","2011","17","","" +"HR","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","P","Y15-29","2011","452","","" +"HR","M","POP","TOTAL","OC5","P","Y30-49","2011","1920","","" +"HR","M","POP","TOTAL","OC5","P","Y50-64","2011","1619","","" +"HR","M","POP","TOTAL","OC5","P","Y65-84","2011","12","","" +"HR","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","Q","Y15-29","2011","343","","" +"HR","M","POP","TOTAL","OC5","Q","Y30-49","2011","1074","","" +"HR","M","POP","TOTAL","OC5","Q","Y50-64","2011","714","","" +"HR","M","POP","TOTAL","OC5","Q","Y65-84","2011","8","","" +"HR","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","R","Y15-29","2011","336","","" +"HR","M","POP","TOTAL","OC5","R","Y30-49","2011","683","","" +"HR","M","POP","TOTAL","OC5","R","Y50-64","2011","427","","" +"HR","M","POP","TOTAL","OC5","R","Y65-84","2011","8","","" +"HR","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","S","Y15-29","2011","520","","" +"HR","M","POP","TOTAL","OC5","S","Y30-49","2011","908","","" +"HR","M","POP","TOTAL","OC5","S","Y50-64","2011","441","","" +"HR","M","POP","TOTAL","OC5","S","Y65-84","2011","20","","" +"HR","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","T","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC5","T","Y30-49","2011","9","","" +"HR","M","POP","TOTAL","OC5","T","Y50-64","2011","10","","" +"HR","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC5","U","Y30-49","2011","43","","" +"HR","M","POP","TOTAL","OC5","U","Y50-64","2011","4","","" +"HR","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC5","UNK","Y15-29","2011","29","","" +"HR","M","POP","TOTAL","OC5","UNK","Y30-49","2011","39","","" +"HR","M","POP","TOTAL","OC5","UNK","Y50-64","2011","32","","" +"HR","M","POP","TOTAL","OC5","UNK","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","A","Y15-29","2011","4004","","" +"HR","M","POP","TOTAL","OC6","A","Y30-49","2011","15454","","" +"HR","M","POP","TOTAL","OC6","A","Y50-64","2011","13430","","" +"HR","M","POP","TOTAL","OC6","A","Y65-84","2011","3570","","" +"HR","M","POP","TOTAL","OC6","A","Y_GE85","2011","40","","" +"HR","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC6","B","Y30-49","2011","1","","" +"HR","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","C","Y15-29","2011","56","","" +"HR","M","POP","TOTAL","OC6","C","Y30-49","2011","164","","" +"HR","M","POP","TOTAL","OC6","C","Y50-64","2011","93","","" +"HR","M","POP","TOTAL","OC6","C","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC6","D","Y50-64","2011","1","","" +"HR","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","E","Y15-29","2011","5","","" +"HR","M","POP","TOTAL","OC6","E","Y30-49","2011","10","","" +"HR","M","POP","TOTAL","OC6","E","Y50-64","2011","6","","" +"HR","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","F","Y15-29","2011","5","","" +"HR","M","POP","TOTAL","OC6","F","Y30-49","2011","22","","" +"HR","M","POP","TOTAL","OC6","F","Y50-64","2011","3","","" +"HR","M","POP","TOTAL","OC6","F","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","G","Y15-29","2011","12","","" +"HR","M","POP","TOTAL","OC6","G","Y30-49","2011","30","","" +"HR","M","POP","TOTAL","OC6","G","Y50-64","2011","16","","" +"HR","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","H","Y15-29","2011","2","","" +"HR","M","POP","TOTAL","OC6","H","Y30-49","2011","7","","" +"HR","M","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","I","Y15-29","2011","42","","" +"HR","M","POP","TOTAL","OC6","I","Y30-49","2011","114","","" +"HR","M","POP","TOTAL","OC6","I","Y50-64","2011","111","","" +"HR","M","POP","TOTAL","OC6","I","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","M","Y15-29","2011","4","","" +"HR","M","POP","TOTAL","OC6","M","Y30-49","2011","9","","" +"HR","M","POP","TOTAL","OC6","M","Y50-64","2011","9","","" +"HR","M","POP","TOTAL","OC6","M","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","N","Y15-29","2011","168","","" +"HR","M","POP","TOTAL","OC6","N","Y30-49","2011","460","","" +"HR","M","POP","TOTAL","OC6","N","Y50-64","2011","210","","" +"HR","M","POP","TOTAL","OC6","N","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","O","Y15-29","2011","7","","" +"HR","M","POP","TOTAL","OC6","O","Y30-49","2011","22","","" +"HR","M","POP","TOTAL","OC6","O","Y50-64","2011","6","","" +"HR","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC6","P","Y30-49","2011","12","","" +"HR","M","POP","TOTAL","OC6","P","Y50-64","2011","7","","" +"HR","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","Q","Y15-29","2011","3","","" +"HR","M","POP","TOTAL","OC6","Q","Y30-49","2011","12","","" +"HR","M","POP","TOTAL","OC6","Q","Y50-64","2011","9","","" +"HR","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","R","Y15-29","2011","5","","" +"HR","M","POP","TOTAL","OC6","R","Y30-49","2011","11","","" +"HR","M","POP","TOTAL","OC6","R","Y50-64","2011","14","","" +"HR","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","S","Y15-29","2011","4","","" +"HR","M","POP","TOTAL","OC6","S","Y30-49","2011","3","","" +"HR","M","POP","TOTAL","OC6","S","Y50-64","2011","3","","" +"HR","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","T","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC6","T","Y30-49","2011","4","","" +"HR","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","U","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC6","UNK","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC6","UNK","Y30-49","2011","4","","" +"HR","M","POP","TOTAL","OC6","UNK","Y50-64","2011","2","","" +"HR","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","A","Y15-29","2011","237","","" +"HR","M","POP","TOTAL","OC7","A","Y30-49","2011","688","","" +"HR","M","POP","TOTAL","OC7","A","Y50-64","2011","595","","" +"HR","M","POP","TOTAL","OC7","A","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","B","Y15-29","2011","183","","" +"HR","M","POP","TOTAL","OC7","B","Y30-49","2011","581","","" +"HR","M","POP","TOTAL","OC7","B","Y50-64","2011","428","","" +"HR","M","POP","TOTAL","OC7","B","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","C","Y15-29","2011","19585","","" +"HR","M","POP","TOTAL","OC7","C","Y30-49","2011","42484","","" +"HR","M","POP","TOTAL","OC7","C","Y50-64","2011","21225","","" +"HR","M","POP","TOTAL","OC7","C","Y65-84","2011","141","","" +"HR","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","D","Y15-29","2011","478","","" +"HR","M","POP","TOTAL","OC7","D","Y30-49","2011","2676","","" +"HR","M","POP","TOTAL","OC7","D","Y50-64","2011","1998","","" +"HR","M","POP","TOTAL","OC7","D","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","E","Y15-29","2011","681","","" +"HR","M","POP","TOTAL","OC7","E","Y30-49","2011","2141","","" +"HR","M","POP","TOTAL","OC7","E","Y50-64","2011","1214","","" +"HR","M","POP","TOTAL","OC7","E","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","F","Y15-29","2011","18072","","" +"HR","M","POP","TOTAL","OC7","F","Y30-49","2011","35443","","" +"HR","M","POP","TOTAL","OC7","F","Y50-64","2011","16239","","" +"HR","M","POP","TOTAL","OC7","F","Y65-84","2011","97","","" +"HR","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","G","Y15-29","2011","6044","","" +"HR","M","POP","TOTAL","OC7","G","Y30-49","2011","9087","","" +"HR","M","POP","TOTAL","OC7","G","Y50-64","2011","3818","","" +"HR","M","POP","TOTAL","OC7","G","Y65-84","2011","31","","" +"HR","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","H","Y15-29","2011","680","","" +"HR","M","POP","TOTAL","OC7","H","Y30-49","2011","2615","","" +"HR","M","POP","TOTAL","OC7","H","Y50-64","2011","2082","","" +"HR","M","POP","TOTAL","OC7","H","Y65-84","2011","8","","" +"HR","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","I","Y15-29","2011","408","","" +"HR","M","POP","TOTAL","OC7","I","Y30-49","2011","795","","" +"HR","M","POP","TOTAL","OC7","I","Y50-64","2011","457","","" +"HR","M","POP","TOTAL","OC7","I","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","J","Y15-29","2011","469","","" +"HR","M","POP","TOTAL","OC7","J","Y30-49","2011","1123","","" +"HR","M","POP","TOTAL","OC7","J","Y50-64","2011","499","","" +"HR","M","POP","TOTAL","OC7","J","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","K","Y15-29","2011","17","","" +"HR","M","POP","TOTAL","OC7","K","Y30-49","2011","54","","" +"HR","M","POP","TOTAL","OC7","K","Y50-64","2011","45","","" +"HR","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","L","Y15-29","2011","18","","" +"HR","M","POP","TOTAL","OC7","L","Y30-49","2011","40","","" +"HR","M","POP","TOTAL","OC7","L","Y50-64","2011","43","","" +"HR","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","M","Y15-29","2011","339","","" +"HR","M","POP","TOTAL","OC7","M","Y30-49","2011","786","","" +"HR","M","POP","TOTAL","OC7","M","Y50-64","2011","345","","" +"HR","M","POP","TOTAL","OC7","M","Y65-84","2011","9","","" +"HR","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","N","Y15-29","2011","374","","" +"HR","M","POP","TOTAL","OC7","N","Y30-49","2011","679","","" +"HR","M","POP","TOTAL","OC7","N","Y50-64","2011","291","","" +"HR","M","POP","TOTAL","OC7","N","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","O","Y15-29","2011","183","","" +"HR","M","POP","TOTAL","OC7","O","Y30-49","2011","811","","" +"HR","M","POP","TOTAL","OC7","O","Y50-64","2011","481","","" +"HR","M","POP","TOTAL","OC7","O","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","P","Y15-29","2011","33","","" +"HR","M","POP","TOTAL","OC7","P","Y30-49","2011","71","","" +"HR","M","POP","TOTAL","OC7","P","Y50-64","2011","102","","" +"HR","M","POP","TOTAL","OC7","P","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","Q","Y15-29","2011","67","","" +"HR","M","POP","TOTAL","OC7","Q","Y30-49","2011","282","","" +"HR","M","POP","TOTAL","OC7","Q","Y50-64","2011","356","","" +"HR","M","POP","TOTAL","OC7","Q","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","R","Y15-29","2011","140","","" +"HR","M","POP","TOTAL","OC7","R","Y30-49","2011","446","","" +"HR","M","POP","TOTAL","OC7","R","Y50-64","2011","214","","" +"HR","M","POP","TOTAL","OC7","R","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","S","Y15-29","2011","786","","" +"HR","M","POP","TOTAL","OC7","S","Y30-49","2011","1516","","" +"HR","M","POP","TOTAL","OC7","S","Y50-64","2011","761","","" +"HR","M","POP","TOTAL","OC7","S","Y65-84","2011","32","","" +"HR","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC7","T","Y30-49","2011","1","","" +"HR","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC7","U","Y30-49","2011","4","","" +"HR","M","POP","TOTAL","OC7","U","Y50-64","2011","1","","" +"HR","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC7","UNK","Y15-29","2011","89","","" +"HR","M","POP","TOTAL","OC7","UNK","Y30-49","2011","227","","" +"HR","M","POP","TOTAL","OC7","UNK","Y50-64","2011","162","","" +"HR","M","POP","TOTAL","OC7","UNK","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","A","Y15-29","2011","842","","" +"HR","M","POP","TOTAL","OC8","A","Y30-49","2011","2439","","" +"HR","M","POP","TOTAL","OC8","A","Y50-64","2011","1362","","" +"HR","M","POP","TOTAL","OC8","A","Y65-84","2011","13","","" +"HR","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","B","Y15-29","2011","407","","" +"HR","M","POP","TOTAL","OC8","B","Y30-49","2011","1333","","" +"HR","M","POP","TOTAL","OC8","B","Y50-64","2011","809","","" +"HR","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","C","Y15-29","2011","9801","","" +"HR","M","POP","TOTAL","OC8","C","Y30-49","2011","19607","","" +"HR","M","POP","TOTAL","OC8","C","Y50-64","2011","8870","","" +"HR","M","POP","TOTAL","OC8","C","Y65-84","2011","22","","" +"HR","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","D","Y15-29","2011","57","","" +"HR","M","POP","TOTAL","OC8","D","Y30-49","2011","362","","" +"HR","M","POP","TOTAL","OC8","D","Y50-64","2011","390","","" +"HR","M","POP","TOTAL","OC8","D","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","E","Y15-29","2011","600","","" +"HR","M","POP","TOTAL","OC8","E","Y30-49","2011","2154","","" +"HR","M","POP","TOTAL","OC8","E","Y50-64","2011","1175","","" +"HR","M","POP","TOTAL","OC8","E","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","F","Y15-29","2011","3353","","" +"HR","M","POP","TOTAL","OC8","F","Y30-49","2011","8384","","" +"HR","M","POP","TOTAL","OC8","F","Y50-64","2011","3490","","" +"HR","M","POP","TOTAL","OC8","F","Y65-84","2011","14","","" +"HR","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","G","Y15-29","2011","2984","","" +"HR","M","POP","TOTAL","OC8","G","Y30-49","2011","6154","","" +"HR","M","POP","TOTAL","OC8","G","Y50-64","2011","1895","","" +"HR","M","POP","TOTAL","OC8","G","Y65-84","2011","13","","" +"HR","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","H","Y15-29","2011","5367","","" +"HR","M","POP","TOTAL","OC8","H","Y30-49","2011","20619","","" +"HR","M","POP","TOTAL","OC8","H","Y50-64","2011","11506","","" +"HR","M","POP","TOTAL","OC8","H","Y65-84","2011","142","","" +"HR","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","I","Y15-29","2011","239","","" +"HR","M","POP","TOTAL","OC8","I","Y30-49","2011","341","","" +"HR","M","POP","TOTAL","OC8","I","Y50-64","2011","238","","" +"HR","M","POP","TOTAL","OC8","I","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","J","Y15-29","2011","61","","" +"HR","M","POP","TOTAL","OC8","J","Y30-49","2011","213","","" +"HR","M","POP","TOTAL","OC8","J","Y50-64","2011","120","","" +"HR","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","K","Y15-29","2011","13","","" +"HR","M","POP","TOTAL","OC8","K","Y30-49","2011","74","","" +"HR","M","POP","TOTAL","OC8","K","Y50-64","2011","54","","" +"HR","M","POP","TOTAL","OC8","K","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","L","Y15-29","2011","6","","" +"HR","M","POP","TOTAL","OC8","L","Y30-49","2011","25","","" +"HR","M","POP","TOTAL","OC8","L","Y50-64","2011","25","","" +"HR","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","M","Y15-29","2011","98","","" +"HR","M","POP","TOTAL","OC8","M","Y30-49","2011","283","","" +"HR","M","POP","TOTAL","OC8","M","Y50-64","2011","145","","" +"HR","M","POP","TOTAL","OC8","M","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","N","Y15-29","2011","257","","" +"HR","M","POP","TOTAL","OC8","N","Y30-49","2011","461","","" +"HR","M","POP","TOTAL","OC8","N","Y50-64","2011","227","","" +"HR","M","POP","TOTAL","OC8","N","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","O","Y15-29","2011","231","","" +"HR","M","POP","TOTAL","OC8","O","Y30-49","2011","1063","","" +"HR","M","POP","TOTAL","OC8","O","Y50-64","2011","457","","" +"HR","M","POP","TOTAL","OC8","O","Y65-84","2011","5","","" +"HR","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","P","Y15-29","2011","13","","" +"HR","M","POP","TOTAL","OC8","P","Y30-49","2011","124","","" +"HR","M","POP","TOTAL","OC8","P","Y50-64","2011","137","","" +"HR","M","POP","TOTAL","OC8","P","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","Q","Y15-29","2011","194","","" +"HR","M","POP","TOTAL","OC8","Q","Y30-49","2011","1027","","" +"HR","M","POP","TOTAL","OC8","Q","Y50-64","2011","774","","" +"HR","M","POP","TOTAL","OC8","Q","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","R","Y15-29","2011","162","","" +"HR","M","POP","TOTAL","OC8","R","Y30-49","2011","344","","" +"HR","M","POP","TOTAL","OC8","R","Y50-64","2011","133","","" +"HR","M","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","S","Y15-29","2011","109","","" +"HR","M","POP","TOTAL","OC8","S","Y30-49","2011","354","","" +"HR","M","POP","TOTAL","OC8","S","Y50-64","2011","180","","" +"HR","M","POP","TOTAL","OC8","S","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","T","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","OC8","T","Y30-49","2011","1","","" +"HR","M","POP","TOTAL","OC8","T","Y50-64","2011","1","","" +"HR","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","U","Y15-29","2011","3","","" +"HR","M","POP","TOTAL","OC8","U","Y30-49","2011","37","","" +"HR","M","POP","TOTAL","OC8","U","Y50-64","2011","9","","" +"HR","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC8","UNK","Y15-29","2011","67","","" +"HR","M","POP","TOTAL","OC8","UNK","Y30-49","2011","111","","" +"HR","M","POP","TOTAL","OC8","UNK","Y50-64","2011","82","","" +"HR","M","POP","TOTAL","OC8","UNK","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","A","Y15-29","2011","2191","","" +"HR","M","POP","TOTAL","OC9","A","Y30-49","2011","4141","","" +"HR","M","POP","TOTAL","OC9","A","Y50-64","2011","2030","","" +"HR","M","POP","TOTAL","OC9","A","Y65-84","2011","82","","" +"HR","M","POP","TOTAL","OC9","A","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","B","Y15-29","2011","54","","" +"HR","M","POP","TOTAL","OC9","B","Y30-49","2011","171","","" +"HR","M","POP","TOTAL","OC9","B","Y50-64","2011","113","","" +"HR","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","C","Y15-29","2011","4896","","" +"HR","M","POP","TOTAL","OC9","C","Y30-49","2011","7639","","" +"HR","M","POP","TOTAL","OC9","C","Y50-64","2011","3571","","" +"HR","M","POP","TOTAL","OC9","C","Y65-84","2011","12","","" +"HR","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","D","Y15-29","2011","48","","" +"HR","M","POP","TOTAL","OC9","D","Y30-49","2011","205","","" +"HR","M","POP","TOTAL","OC9","D","Y50-64","2011","234","","" +"HR","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","E","Y15-29","2011","1238","","" +"HR","M","POP","TOTAL","OC9","E","Y30-49","2011","3289","","" +"HR","M","POP","TOTAL","OC9","E","Y50-64","2011","1716","","" +"HR","M","POP","TOTAL","OC9","E","Y65-84","2011","8","","" +"HR","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","F","Y15-29","2011","6424","","" +"HR","M","POP","TOTAL","OC9","F","Y30-49","2011","11584","","" +"HR","M","POP","TOTAL","OC9","F","Y50-64","2011","4379","","" +"HR","M","POP","TOTAL","OC9","F","Y65-84","2011","9","","" +"HR","M","POP","TOTAL","OC9","F","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","G","Y15-29","2011","2000","","" +"HR","M","POP","TOTAL","OC9","G","Y30-49","2011","2034","","" +"HR","M","POP","TOTAL","OC9","G","Y50-64","2011","700","","" +"HR","M","POP","TOTAL","OC9","G","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","H","Y15-29","2011","809","","" +"HR","M","POP","TOTAL","OC9","H","Y30-49","2011","1274","","" +"HR","M","POP","TOTAL","OC9","H","Y50-64","2011","726","","" +"HR","M","POP","TOTAL","OC9","H","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","I","Y15-29","2011","768","","" +"HR","M","POP","TOTAL","OC9","I","Y30-49","2011","736","","" +"HR","M","POP","TOTAL","OC9","I","Y50-64","2011","410","","" +"HR","M","POP","TOTAL","OC9","I","Y65-84","2011","3","","" +"HR","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","J","Y15-29","2011","111","","" +"HR","M","POP","TOTAL","OC9","J","Y30-49","2011","154","","" +"HR","M","POP","TOTAL","OC9","J","Y50-64","2011","64","","" +"HR","M","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","K","Y15-29","2011","19","","" +"HR","M","POP","TOTAL","OC9","K","Y30-49","2011","30","","" +"HR","M","POP","TOTAL","OC9","K","Y50-64","2011","24","","" +"HR","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","L","Y15-29","2011","25","","" +"HR","M","POP","TOTAL","OC9","L","Y30-49","2011","83","","" +"HR","M","POP","TOTAL","OC9","L","Y50-64","2011","56","","" +"HR","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","M","Y15-29","2011","190","","" +"HR","M","POP","TOTAL","OC9","M","Y30-49","2011","340","","" +"HR","M","POP","TOTAL","OC9","M","Y50-64","2011","131","","" +"HR","M","POP","TOTAL","OC9","M","Y65-84","2011","2","","" +"HR","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","N","Y15-29","2011","856","","" +"HR","M","POP","TOTAL","OC9","N","Y30-49","2011","1729","","" +"HR","M","POP","TOTAL","OC9","N","Y50-64","2011","851","","" +"HR","M","POP","TOTAL","OC9","N","Y65-84","2011","3","","" +"HR","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","O","Y15-29","2011","293","","" +"HR","M","POP","TOTAL","OC9","O","Y30-49","2011","793","","" +"HR","M","POP","TOTAL","OC9","O","Y50-64","2011","484","","" +"HR","M","POP","TOTAL","OC9","O","Y65-84","2011","8","","" +"HR","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","P","Y15-29","2011","39","","" +"HR","M","POP","TOTAL","OC9","P","Y30-49","2011","136","","" +"HR","M","POP","TOTAL","OC9","P","Y50-64","2011","153","","" +"HR","M","POP","TOTAL","OC9","P","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","Q","Y15-29","2011","121","","" +"HR","M","POP","TOTAL","OC9","Q","Y30-49","2011","402","","" +"HR","M","POP","TOTAL","OC9","Q","Y50-64","2011","256","","" +"HR","M","POP","TOTAL","OC9","Q","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","R","Y15-29","2011","166","","" +"HR","M","POP","TOTAL","OC9","R","Y30-49","2011","287","","" +"HR","M","POP","TOTAL","OC9","R","Y50-64","2011","161","","" +"HR","M","POP","TOTAL","OC9","R","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","S","Y15-29","2011","108","","" +"HR","M","POP","TOTAL","OC9","S","Y30-49","2011","276","","" +"HR","M","POP","TOTAL","OC9","S","Y50-64","2011","142","","" +"HR","M","POP","TOTAL","OC9","S","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","T","Y15-29","2011","13","","" +"HR","M","POP","TOTAL","OC9","T","Y30-49","2011","43","","" +"HR","M","POP","TOTAL","OC9","T","Y50-64","2011","23","","" +"HR","M","POP","TOTAL","OC9","T","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","OC9","U","Y30-49","2011","3","","" +"HR","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","OC9","UNK","Y15-29","2011","65","","" +"HR","M","POP","TOTAL","OC9","UNK","Y30-49","2011","108","","" +"HR","M","POP","TOTAL","OC9","UNK","Y50-64","2011","51","","" +"HR","M","POP","TOTAL","OC9","UNK","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","A","Y15-29","2011","18","","" +"HR","M","POP","TOTAL","UNK","A","Y30-49","2011","58","","" +"HR","M","POP","TOTAL","UNK","A","Y50-64","2011","40","","" +"HR","M","POP","TOTAL","UNK","A","Y65-84","2011","4","","" +"HR","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","B","Y15-29","2011","11","","" +"HR","M","POP","TOTAL","UNK","B","Y30-49","2011","17","","" +"HR","M","POP","TOTAL","UNK","B","Y50-64","2011","13","","" +"HR","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","C","Y15-29","2011","165","","" +"HR","M","POP","TOTAL","UNK","C","Y30-49","2011","323","","" +"HR","M","POP","TOTAL","UNK","C","Y50-64","2011","198","","" +"HR","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","D","Y15-29","2011","4","","" +"HR","M","POP","TOTAL","UNK","D","Y30-49","2011","19","","" +"HR","M","POP","TOTAL","UNK","D","Y50-64","2011","23","","" +"HR","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","E","Y15-29","2011","11","","" +"HR","M","POP","TOTAL","UNK","E","Y30-49","2011","50","","" +"HR","M","POP","TOTAL","UNK","E","Y50-64","2011","49","","" +"HR","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","F","Y15-29","2011","80","","" +"HR","M","POP","TOTAL","UNK","F","Y30-49","2011","209","","" +"HR","M","POP","TOTAL","UNK","F","Y50-64","2011","96","","" +"HR","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","G","Y15-29","2011","80","","" +"HR","M","POP","TOTAL","UNK","G","Y30-49","2011","143","","" +"HR","M","POP","TOTAL","UNK","G","Y50-64","2011","61","","" +"HR","M","POP","TOTAL","UNK","G","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","H","Y15-29","2011","32","","" +"HR","M","POP","TOTAL","UNK","H","Y30-49","2011","94","","" +"HR","M","POP","TOTAL","UNK","H","Y50-64","2011","43","","" +"HR","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","I","Y15-29","2011","31","","" +"HR","M","POP","TOTAL","UNK","I","Y30-49","2011","58","","" +"HR","M","POP","TOTAL","UNK","I","Y50-64","2011","36","","" +"HR","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","J","Y15-29","2011","45","","" +"HR","M","POP","TOTAL","UNK","J","Y30-49","2011","119","","" +"HR","M","POP","TOTAL","UNK","J","Y50-64","2011","19","","" +"HR","M","POP","TOTAL","UNK","J","Y65-84","2011","1","","" +"HR","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","K","Y15-29","2011","19","","" +"HR","M","POP","TOTAL","UNK","K","Y30-49","2011","24","","" +"HR","M","POP","TOTAL","UNK","K","Y50-64","2011","10","","" +"HR","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","L","Y15-29","2011","1","","" +"HR","M","POP","TOTAL","UNK","L","Y30-49","2011","12","","" +"HR","M","POP","TOTAL","UNK","L","Y50-64","2011","3","","" +"HR","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","M","Y15-29","2011","48","","" +"HR","M","POP","TOTAL","UNK","M","Y30-49","2011","109","","" +"HR","M","POP","TOTAL","UNK","M","Y50-64","2011","47","","" +"HR","M","POP","TOTAL","UNK","M","Y65-84","2011","3","","" +"HR","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","N","Y15-29","2011","29","","" +"HR","M","POP","TOTAL","UNK","N","Y30-49","2011","50","","" +"HR","M","POP","TOTAL","UNK","N","Y50-64","2011","28","","" +"HR","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","O","Y15-29","2011","70","","" +"HR","M","POP","TOTAL","UNK","O","Y30-49","2011","229","","" +"HR","M","POP","TOTAL","UNK","O","Y50-64","2011","109","","" +"HR","M","POP","TOTAL","UNK","O","Y65-84","2011","13","","" +"HR","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","P","Y15-29","2011","104","","" +"HR","M","POP","TOTAL","UNK","P","Y30-49","2011","129","","" +"HR","M","POP","TOTAL","UNK","P","Y50-64","2011","74","","" +"HR","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","Q","Y15-29","2011","33","","" +"HR","M","POP","TOTAL","UNK","Q","Y30-49","2011","59","","" +"HR","M","POP","TOTAL","UNK","Q","Y50-64","2011","51","","" +"HR","M","POP","TOTAL","UNK","Q","Y65-84","2011","6","","" +"HR","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","R","Y15-29","2011","15","","" +"HR","M","POP","TOTAL","UNK","R","Y30-49","2011","27","","" +"HR","M","POP","TOTAL","UNK","R","Y50-64","2011","11","","" +"HR","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","S","Y15-29","2011","14","","" +"HR","M","POP","TOTAL","UNK","S","Y30-49","2011","27","","" +"HR","M","POP","TOTAL","UNK","S","Y50-64","2011","18","","" +"HR","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"HR","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"HR","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"HR","M","POP","TOTAL","UNK","U","Y50-64","2011","3","","" +"HR","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"HR","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"HR","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"HR","M","POP","TOTAL","UNK","UNK","Y15-29","2011","1387","","" +"HR","M","POP","TOTAL","UNK","UNK","Y30-49","2011","1987","","" +"HR","M","POP","TOTAL","UNK","UNK","Y50-64","2011","1093","","" +"HR","M","POP","TOTAL","UNK","UNK","Y65-84","2011","69","","" +"HR","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","1","","" +"HR","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","NAP","Y15-29","2011","535753","","" +"HU","F","POP","TOTAL","NAP","NAP","Y30-49","2011","300781","","" +"HU","F","POP","TOTAL","NAP","NAP","Y50-64","2011","566322","","" +"HU","F","POP","TOTAL","NAP","NAP","Y65-84","2011","912298","","" +"HU","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","121218","","" +"HU","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","704414","","" +"HU","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","O","Y15-29","2011","531","","" +"HU","F","POP","TOTAL","OC0","O","Y30-49","2011","2778","","" +"HU","F","POP","TOTAL","OC0","O","Y50-64","2011","388","","" +"HU","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","A","Y15-29","2011","81","","" +"HU","F","POP","TOTAL","OC1","A","Y30-49","2011","610","","" +"HU","F","POP","TOTAL","OC1","A","Y50-64","2011","544","","" +"HU","F","POP","TOTAL","OC1","A","Y65-84","2011","40","","" +"HU","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","B","Y15-29","2011","5","","" +"HU","F","POP","TOTAL","OC1","B","Y30-49","2011","22","","" +"HU","F","POP","TOTAL","OC1","B","Y50-64","2011","20","","" +"HU","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","C","Y15-29","2011","609","","" +"HU","F","POP","TOTAL","OC1","C","Y30-49","2011","5179","","" +"HU","F","POP","TOTAL","OC1","C","Y50-64","2011","2941","","" +"HU","F","POP","TOTAL","OC1","C","Y65-84","2011","145","","" +"HU","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","D","Y15-29","2011","20","","" +"HU","F","POP","TOTAL","OC1","D","Y30-49","2011","294","","" +"HU","F","POP","TOTAL","OC1","D","Y50-64","2011","177","","" +"HU","F","POP","TOTAL","OC1","D","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","E","Y15-29","2011","37","","" +"HU","F","POP","TOTAL","OC1","E","Y30-49","2011","437","","" +"HU","F","POP","TOTAL","OC1","E","Y50-64","2011","254","","" +"HU","F","POP","TOTAL","OC1","E","Y65-84","2011","7","","" +"HU","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","F","Y15-29","2011","102","","" +"HU","F","POP","TOTAL","OC1","F","Y30-49","2011","870","","" +"HU","F","POP","TOTAL","OC1","F","Y50-64","2011","529","","" +"HU","F","POP","TOTAL","OC1","F","Y65-84","2011","25","","" +"HU","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","G","Y15-29","2011","1890","","" +"HU","F","POP","TOTAL","OC1","G","Y30-49","2011","11059","","" +"HU","F","POP","TOTAL","OC1","G","Y50-64","2011","4684","","" +"HU","F","POP","TOTAL","OC1","G","Y65-84","2011","287","","" +"HU","F","POP","TOTAL","OC1","G","Y_GE85","2011","4","","" +"HU","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","H","Y15-29","2011","152","","" +"HU","F","POP","TOTAL","OC1","H","Y30-49","2011","1713","","" +"HU","F","POP","TOTAL","OC1","H","Y50-64","2011","818","","" +"HU","F","POP","TOTAL","OC1","H","Y65-84","2011","14","","" +"HU","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","I","Y15-29","2011","589","","" +"HU","F","POP","TOTAL","OC1","I","Y30-49","2011","2408","","" +"HU","F","POP","TOTAL","OC1","I","Y50-64","2011","1182","","" +"HU","F","POP","TOTAL","OC1","I","Y65-84","2011","67","","" +"HU","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","J","Y15-29","2011","210","","" +"HU","F","POP","TOTAL","OC1","J","Y30-49","2011","1341","","" +"HU","F","POP","TOTAL","OC1","J","Y50-64","2011","419","","" +"HU","F","POP","TOTAL","OC1","J","Y65-84","2011","35","","" +"HU","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","K","Y15-29","2011","328","","" +"HU","F","POP","TOTAL","OC1","K","Y30-49","2011","3002","","" +"HU","F","POP","TOTAL","OC1","K","Y50-64","2011","1262","","" +"HU","F","POP","TOTAL","OC1","K","Y65-84","2011","34","","" +"HU","F","POP","TOTAL","OC1","K","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","L","Y15-29","2011","46","","" +"HU","F","POP","TOTAL","OC1","L","Y30-49","2011","452","","" +"HU","F","POP","TOTAL","OC1","L","Y50-64","2011","279","","" +"HU","F","POP","TOTAL","OC1","L","Y65-84","2011","35","","" +"HU","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","M","Y15-29","2011","230","","" +"HU","F","POP","TOTAL","OC1","M","Y30-49","2011","1735","","" +"HU","F","POP","TOTAL","OC1","M","Y50-64","2011","999","","" +"HU","F","POP","TOTAL","OC1","M","Y65-84","2011","116","","" +"HU","F","POP","TOTAL","OC1","M","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","N","Y15-29","2011","183","","" +"HU","F","POP","TOTAL","OC1","N","Y30-49","2011","1184","","" +"HU","F","POP","TOTAL","OC1","N","Y50-64","2011","567","","" +"HU","F","POP","TOTAL","OC1","N","Y65-84","2011","36","","" +"HU","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","O","Y15-29","2011","333","","" +"HU","F","POP","TOTAL","OC1","O","Y30-49","2011","4973","","" +"HU","F","POP","TOTAL","OC1","O","Y50-64","2011","3377","","" +"HU","F","POP","TOTAL","OC1","O","Y65-84","2011","96","","" +"HU","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","P","Y15-29","2011","128","","" +"HU","F","POP","TOTAL","OC1","P","Y30-49","2011","3764","","" +"HU","F","POP","TOTAL","OC1","P","Y50-64","2011","4204","","" +"HU","F","POP","TOTAL","OC1","P","Y65-84","2011","97","","" +"HU","F","POP","TOTAL","OC1","P","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","Q","Y15-29","2011","228","","" +"HU","F","POP","TOTAL","OC1","Q","Y30-49","2011","4451","","" +"HU","F","POP","TOTAL","OC1","Q","Y50-64","2011","2949","","" +"HU","F","POP","TOTAL","OC1","Q","Y65-84","2011","142","","" +"HU","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","R","Y15-29","2011","90","","" +"HU","F","POP","TOTAL","OC1","R","Y30-49","2011","678","","" +"HU","F","POP","TOTAL","OC1","R","Y50-64","2011","514","","" +"HU","F","POP","TOTAL","OC1","R","Y65-84","2011","29","","" +"HU","F","POP","TOTAL","OC1","R","Y_GE85","2011","2","","" +"HU","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","S","Y15-29","2011","146","","" +"HU","F","POP","TOTAL","OC1","S","Y30-49","2011","912","","" +"HU","F","POP","TOTAL","OC1","S","Y50-64","2011","567","","" +"HU","F","POP","TOTAL","OC1","S","Y65-84","2011","71","","" +"HU","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","T","Y15-29","2011","1","","" +"HU","F","POP","TOTAL","OC1","T","Y30-49","2011","2","","" +"HU","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","U","Y15-29","2011","6","","" +"HU","F","POP","TOTAL","OC1","U","Y30-49","2011","30","","" +"HU","F","POP","TOTAL","OC1","U","Y50-64","2011","7","","" +"HU","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","A","Y15-29","2011","331","","" +"HU","F","POP","TOTAL","OC2","A","Y30-49","2011","750","","" +"HU","F","POP","TOTAL","OC2","A","Y50-64","2011","310","","" +"HU","F","POP","TOTAL","OC2","A","Y65-84","2011","32","","" +"HU","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","B","Y15-29","2011","36","","" +"HU","F","POP","TOTAL","OC2","B","Y30-49","2011","62","","" +"HU","F","POP","TOTAL","OC2","B","Y50-64","2011","26","","" +"HU","F","POP","TOTAL","OC2","B","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","C","Y15-29","2011","4458","","" +"HU","F","POP","TOTAL","OC2","C","Y30-49","2011","10415","","" +"HU","F","POP","TOTAL","OC2","C","Y50-64","2011","2814","","" +"HU","F","POP","TOTAL","OC2","C","Y65-84","2011","182","","" +"HU","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","D","Y15-29","2011","357","","" +"HU","F","POP","TOTAL","OC2","D","Y30-49","2011","962","","" +"HU","F","POP","TOTAL","OC2","D","Y50-64","2011","317","","" +"HU","F","POP","TOTAL","OC2","D","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","E","Y15-29","2011","236","","" +"HU","F","POP","TOTAL","OC2","E","Y30-49","2011","591","","" +"HU","F","POP","TOTAL","OC2","E","Y50-64","2011","207","","" +"HU","F","POP","TOTAL","OC2","E","Y65-84","2011","11","","" +"HU","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","F","Y15-29","2011","603","","" +"HU","F","POP","TOTAL","OC2","F","Y30-49","2011","1535","","" +"HU","F","POP","TOTAL","OC2","F","Y50-64","2011","578","","" +"HU","F","POP","TOTAL","OC2","F","Y65-84","2011","32","","" +"HU","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","G","Y15-29","2011","3609","","" +"HU","F","POP","TOTAL","OC2","G","Y30-49","2011","8673","","" +"HU","F","POP","TOTAL","OC2","G","Y50-64","2011","2603","","" +"HU","F","POP","TOTAL","OC2","G","Y65-84","2011","500","","" +"HU","F","POP","TOTAL","OC2","G","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","H","Y15-29","2011","619","","" +"HU","F","POP","TOTAL","OC2","H","Y30-49","2011","2354","","" +"HU","F","POP","TOTAL","OC2","H","Y50-64","2011","774","","" +"HU","F","POP","TOTAL","OC2","H","Y65-84","2011","21","","" +"HU","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","I","Y15-29","2011","644","","" +"HU","F","POP","TOTAL","OC2","I","Y30-49","2011","1318","","" +"HU","F","POP","TOTAL","OC2","I","Y50-64","2011","621","","" +"HU","F","POP","TOTAL","OC2","I","Y65-84","2011","23","","" +"HU","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","J","Y15-29","2011","3821","","" +"HU","F","POP","TOTAL","OC2","J","Y30-49","2011","8678","","" +"HU","F","POP","TOTAL","OC2","J","Y50-64","2011","2152","","" +"HU","F","POP","TOTAL","OC2","J","Y65-84","2011","192","","" +"HU","F","POP","TOTAL","OC2","J","Y_GE85","2011","4","","" +"HU","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","K","Y15-29","2011","3395","","" +"HU","F","POP","TOTAL","OC2","K","Y30-49","2011","8184","","" +"HU","F","POP","TOTAL","OC2","K","Y50-64","2011","2248","","" +"HU","F","POP","TOTAL","OC2","K","Y65-84","2011","129","","" +"HU","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","L","Y15-29","2011","289","","" +"HU","F","POP","TOTAL","OC2","L","Y30-49","2011","798","","" +"HU","F","POP","TOTAL","OC2","L","Y50-64","2011","272","","" +"HU","F","POP","TOTAL","OC2","L","Y65-84","2011","34","","" +"HU","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","M","Y15-29","2011","7784","","" +"HU","F","POP","TOTAL","OC2","M","Y30-49","2011","17608","","" +"HU","F","POP","TOTAL","OC2","M","Y50-64","2011","7435","","" +"HU","F","POP","TOTAL","OC2","M","Y65-84","2011","1244","","" +"HU","F","POP","TOTAL","OC2","M","Y_GE85","2011","7","","" +"HU","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","N","Y15-29","2011","1290","","" +"HU","F","POP","TOTAL","OC2","N","Y30-49","2011","2159","","" +"HU","F","POP","TOTAL","OC2","N","Y50-64","2011","533","","" +"HU","F","POP","TOTAL","OC2","N","Y65-84","2011","45","","" +"HU","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","O","Y15-29","2011","5617","","" +"HU","F","POP","TOTAL","OC2","O","Y30-49","2011","19577","","" +"HU","F","POP","TOTAL","OC2","O","Y50-64","2011","8062","","" +"HU","F","POP","TOTAL","OC2","O","Y65-84","2011","358","","" +"HU","F","POP","TOTAL","OC2","O","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","P","Y15-29","2011","15522","","" +"HU","F","POP","TOTAL","OC2","P","Y30-49","2011","89793","","" +"HU","F","POP","TOTAL","OC2","P","Y50-64","2011","49744","","" +"HU","F","POP","TOTAL","OC2","P","Y65-84","2011","1858","","" +"HU","F","POP","TOTAL","OC2","P","Y_GE85","2011","14","","" +"HU","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","Q","Y15-29","2011","5736","","" +"HU","F","POP","TOTAL","OC2","Q","Y30-49","2011","19918","","" +"HU","F","POP","TOTAL","OC2","Q","Y50-64","2011","10961","","" +"HU","F","POP","TOTAL","OC2","Q","Y65-84","2011","1971","","" +"HU","F","POP","TOTAL","OC2","Q","Y_GE85","2011","4","","" +"HU","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","R","Y15-29","2011","1774","","" +"HU","F","POP","TOTAL","OC2","R","Y30-49","2011","5389","","" +"HU","F","POP","TOTAL","OC2","R","Y50-64","2011","2649","","" +"HU","F","POP","TOTAL","OC2","R","Y65-84","2011","281","","" +"HU","F","POP","TOTAL","OC2","R","Y_GE85","2011","5","","" +"HU","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","S","Y15-29","2011","1025","","" +"HU","F","POP","TOTAL","OC2","S","Y30-49","2011","3036","","" +"HU","F","POP","TOTAL","OC2","S","Y50-64","2011","1075","","" +"HU","F","POP","TOTAL","OC2","S","Y65-84","2011","121","","" +"HU","F","POP","TOTAL","OC2","S","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","T","Y15-29","2011","34","","" +"HU","F","POP","TOTAL","OC2","T","Y30-49","2011","33","","" +"HU","F","POP","TOTAL","OC2","T","Y50-64","2011","10","","" +"HU","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","U","Y15-29","2011","140","","" +"HU","F","POP","TOTAL","OC2","U","Y30-49","2011","277","","" +"HU","F","POP","TOTAL","OC2","U","Y50-64","2011","57","","" +"HU","F","POP","TOTAL","OC2","U","Y65-84","2011","6","","" +"HU","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","A","Y15-29","2011","499","","" +"HU","F","POP","TOTAL","OC3","A","Y30-49","2011","1655","","" +"HU","F","POP","TOTAL","OC3","A","Y50-64","2011","1358","","" +"HU","F","POP","TOTAL","OC3","A","Y65-84","2011","49","","" +"HU","F","POP","TOTAL","OC3","A","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","B","Y15-29","2011","25","","" +"HU","F","POP","TOTAL","OC3","B","Y30-49","2011","107","","" +"HU","F","POP","TOTAL","OC3","B","Y50-64","2011","72","","" +"HU","F","POP","TOTAL","OC3","B","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","C","Y15-29","2011","8525","","" +"HU","F","POP","TOTAL","OC3","C","Y30-49","2011","22300","","" +"HU","F","POP","TOTAL","OC3","C","Y50-64","2011","8939","","" +"HU","F","POP","TOTAL","OC3","C","Y65-84","2011","255","","" +"HU","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","D","Y15-29","2011","575","","" +"HU","F","POP","TOTAL","OC3","D","Y30-49","2011","1763","","" +"HU","F","POP","TOTAL","OC3","D","Y50-64","2011","1030","","" +"HU","F","POP","TOTAL","OC3","D","Y65-84","2011","9","","" +"HU","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","E","Y15-29","2011","415","","" +"HU","F","POP","TOTAL","OC3","E","Y30-49","2011","1615","","" +"HU","F","POP","TOTAL","OC3","E","Y50-64","2011","1030","","" +"HU","F","POP","TOTAL","OC3","E","Y65-84","2011","25","","" +"HU","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","F","Y15-29","2011","1168","","" +"HU","F","POP","TOTAL","OC3","F","Y30-49","2011","4037","","" +"HU","F","POP","TOTAL","OC3","F","Y50-64","2011","1849","","" +"HU","F","POP","TOTAL","OC3","F","Y65-84","2011","67","","" +"HU","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","G","Y15-29","2011","8167","","" +"HU","F","POP","TOTAL","OC3","G","Y30-49","2011","25676","","" +"HU","F","POP","TOTAL","OC3","G","Y50-64","2011","9988","","" +"HU","F","POP","TOTAL","OC3","G","Y65-84","2011","525","","" +"HU","F","POP","TOTAL","OC3","G","Y_GE85","2011","2","","" +"HU","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","H","Y15-29","2011","2202","","" +"HU","F","POP","TOTAL","OC3","H","Y30-49","2011","6815","","" +"HU","F","POP","TOTAL","OC3","H","Y50-64","2011","2877","","" +"HU","F","POP","TOTAL","OC3","H","Y65-84","2011","43","","" +"HU","F","POP","TOTAL","OC3","H","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","I","Y15-29","2011","1232","","" +"HU","F","POP","TOTAL","OC3","I","Y30-49","2011","2114","","" +"HU","F","POP","TOTAL","OC3","I","Y50-64","2011","855","","" +"HU","F","POP","TOTAL","OC3","I","Y65-84","2011","40","","" +"HU","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","J","Y15-29","2011","2938","","" +"HU","F","POP","TOTAL","OC3","J","Y30-49","2011","5896","","" +"HU","F","POP","TOTAL","OC3","J","Y50-64","2011","1714","","" +"HU","F","POP","TOTAL","OC3","J","Y65-84","2011","101","","" +"HU","F","POP","TOTAL","OC3","J","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","K","Y15-29","2011","8062","","" +"HU","F","POP","TOTAL","OC3","K","Y30-49","2011","22168","","" +"HU","F","POP","TOTAL","OC3","K","Y50-64","2011","8255","","" +"HU","F","POP","TOTAL","OC3","K","Y65-84","2011","320","","" +"HU","F","POP","TOTAL","OC3","K","Y_GE85","2011","2","","" +"HU","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","L","Y15-29","2011","996","","" +"HU","F","POP","TOTAL","OC3","L","Y30-49","2011","4147","","" +"HU","F","POP","TOTAL","OC3","L","Y50-64","2011","2076","","" +"HU","F","POP","TOTAL","OC3","L","Y65-84","2011","191","","" +"HU","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","M","Y15-29","2011","5103","","" +"HU","F","POP","TOTAL","OC3","M","Y30-49","2011","14412","","" +"HU","F","POP","TOTAL","OC3","M","Y50-64","2011","7414","","" +"HU","F","POP","TOTAL","OC3","M","Y65-84","2011","856","","" +"HU","F","POP","TOTAL","OC3","M","Y_GE85","2011","8","","" +"HU","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","N","Y15-29","2011","2644","","" +"HU","F","POP","TOTAL","OC3","N","Y30-49","2011","4639","","" +"HU","F","POP","TOTAL","OC3","N","Y50-64","2011","1536","","" +"HU","F","POP","TOTAL","OC3","N","Y65-84","2011","84","","" +"HU","F","POP","TOTAL","OC3","N","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","O","Y15-29","2011","9650","","" +"HU","F","POP","TOTAL","OC3","O","Y30-49","2011","39244","","" +"HU","F","POP","TOTAL","OC3","O","Y50-64","2011","20415","","" +"HU","F","POP","TOTAL","OC3","O","Y65-84","2011","323","","" +"HU","F","POP","TOTAL","OC3","O","Y_GE85","2011","5","","" +"HU","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","P","Y15-29","2011","1419","","" +"HU","F","POP","TOTAL","OC3","P","Y30-49","2011","5975","","" +"HU","F","POP","TOTAL","OC3","P","Y50-64","2011","3791","","" +"HU","F","POP","TOTAL","OC3","P","Y65-84","2011","161","","" +"HU","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","Q","Y15-29","2011","10784","","" +"HU","F","POP","TOTAL","OC3","Q","Y30-49","2011","71341","","" +"HU","F","POP","TOTAL","OC3","Q","Y50-64","2011","30698","","" +"HU","F","POP","TOTAL","OC3","Q","Y65-84","2011","1003","","" +"HU","F","POP","TOTAL","OC3","Q","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","R","Y15-29","2011","2091","","" +"HU","F","POP","TOTAL","OC3","R","Y30-49","2011","4340","","" +"HU","F","POP","TOTAL","OC3","R","Y50-64","2011","1894","","" +"HU","F","POP","TOTAL","OC3","R","Y65-84","2011","154","","" +"HU","F","POP","TOTAL","OC3","R","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","S","Y15-29","2011","1623","","" +"HU","F","POP","TOTAL","OC3","S","Y30-49","2011","5013","","" +"HU","F","POP","TOTAL","OC3","S","Y50-64","2011","2148","","" +"HU","F","POP","TOTAL","OC3","S","Y65-84","2011","177","","" +"HU","F","POP","TOTAL","OC3","S","Y_GE85","2011","12","","" +"HU","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","T","Y15-29","2011","26","","" +"HU","F","POP","TOTAL","OC3","T","Y30-49","2011","74","","" +"HU","F","POP","TOTAL","OC3","T","Y50-64","2011","47","","" +"HU","F","POP","TOTAL","OC3","T","Y65-84","2011","4","","" +"HU","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","U","Y15-29","2011","91","","" +"HU","F","POP","TOTAL","OC3","U","Y30-49","2011","195","","" +"HU","F","POP","TOTAL","OC3","U","Y50-64","2011","63","","" +"HU","F","POP","TOTAL","OC3","U","Y65-84","2011","3","","" +"HU","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","A","Y15-29","2011","565","","" +"HU","F","POP","TOTAL","OC4","A","Y30-49","2011","2288","","" +"HU","F","POP","TOTAL","OC4","A","Y50-64","2011","2122","","" +"HU","F","POP","TOTAL","OC4","A","Y65-84","2011","92","","" +"HU","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","B","Y15-29","2011","33","","" +"HU","F","POP","TOTAL","OC4","B","Y30-49","2011","124","","" +"HU","F","POP","TOTAL","OC4","B","Y50-64","2011","112","","" +"HU","F","POP","TOTAL","OC4","B","Y65-84","2011","4","","" +"HU","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","C","Y15-29","2011","4961","","" +"HU","F","POP","TOTAL","OC4","C","Y30-49","2011","14252","","" +"HU","F","POP","TOTAL","OC4","C","Y50-64","2011","7422","","" +"HU","F","POP","TOTAL","OC4","C","Y65-84","2011","216","","" +"HU","F","POP","TOTAL","OC4","C","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","D","Y15-29","2011","539","","" +"HU","F","POP","TOTAL","OC4","D","Y30-49","2011","1348","","" +"HU","F","POP","TOTAL","OC4","D","Y50-64","2011","872","","" +"HU","F","POP","TOTAL","OC4","D","Y65-84","2011","16","","" +"HU","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","E","Y15-29","2011","514","","" +"HU","F","POP","TOTAL","OC4","E","Y30-49","2011","1782","","" +"HU","F","POP","TOTAL","OC4","E","Y50-64","2011","1105","","" +"HU","F","POP","TOTAL","OC4","E","Y65-84","2011","17","","" +"HU","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","F","Y15-29","2011","1206","","" +"HU","F","POP","TOTAL","OC4","F","Y30-49","2011","4634","","" +"HU","F","POP","TOTAL","OC4","F","Y50-64","2011","2220","","" +"HU","F","POP","TOTAL","OC4","F","Y65-84","2011","66","","" +"HU","F","POP","TOTAL","OC4","F","Y_GE85","2011","2","","" +"HU","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","G","Y15-29","2011","5261","","" +"HU","F","POP","TOTAL","OC4","G","Y30-49","2011","14116","","" +"HU","F","POP","TOTAL","OC4","G","Y50-64","2011","5253","","" +"HU","F","POP","TOTAL","OC4","G","Y65-84","2011","188","","" +"HU","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","H","Y15-29","2011","4614","","" +"HU","F","POP","TOTAL","OC4","H","Y30-49","2011","20847","","" +"HU","F","POP","TOTAL","OC4","H","Y50-64","2011","9134","","" +"HU","F","POP","TOTAL","OC4","H","Y65-84","2011","124","","" +"HU","F","POP","TOTAL","OC4","H","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","I","Y15-29","2011","3282","","" +"HU","F","POP","TOTAL","OC4","I","Y30-49","2011","3074","","" +"HU","F","POP","TOTAL","OC4","I","Y50-64","2011","1132","","" +"HU","F","POP","TOTAL","OC4","I","Y65-84","2011","55","","" +"HU","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","J","Y15-29","2011","3125","","" +"HU","F","POP","TOTAL","OC4","J","Y30-49","2011","4973","","" +"HU","F","POP","TOTAL","OC4","J","Y50-64","2011","1526","","" +"HU","F","POP","TOTAL","OC4","J","Y65-84","2011","70","","" +"HU","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","K","Y15-29","2011","2434","","" +"HU","F","POP","TOTAL","OC4","K","Y30-49","2011","5268","","" +"HU","F","POP","TOTAL","OC4","K","Y50-64","2011","2246","","" +"HU","F","POP","TOTAL","OC4","K","Y65-84","2011","58","","" +"HU","F","POP","TOTAL","OC4","K","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","L","Y15-29","2011","701","","" +"HU","F","POP","TOTAL","OC4","L","Y30-49","2011","1802","","" +"HU","F","POP","TOTAL","OC4","L","Y50-64","2011","976","","" +"HU","F","POP","TOTAL","OC4","L","Y65-84","2011","99","","" +"HU","F","POP","TOTAL","OC4","L","Y_GE85","2011","2","","" +"HU","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","M","Y15-29","2011","4171","","" +"HU","F","POP","TOTAL","OC4","M","Y30-49","2011","11381","","" +"HU","F","POP","TOTAL","OC4","M","Y50-64","2011","5704","","" +"HU","F","POP","TOTAL","OC4","M","Y65-84","2011","530","","" +"HU","F","POP","TOTAL","OC4","M","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","N","Y15-29","2011","4243","","" +"HU","F","POP","TOTAL","OC4","N","Y30-49","2011","6968","","" +"HU","F","POP","TOTAL","OC4","N","Y50-64","2011","2647","","" +"HU","F","POP","TOTAL","OC4","N","Y65-84","2011","126","","" +"HU","F","POP","TOTAL","OC4","N","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","O","Y15-29","2011","5714","","" +"HU","F","POP","TOTAL","OC4","O","Y30-49","2011","15291","","" +"HU","F","POP","TOTAL","OC4","O","Y50-64","2011","8692","","" +"HU","F","POP","TOTAL","OC4","O","Y65-84","2011","405","","" +"HU","F","POP","TOTAL","OC4","O","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","P","Y15-29","2011","1666","","" +"HU","F","POP","TOTAL","OC4","P","Y30-49","2011","6768","","" +"HU","F","POP","TOTAL","OC4","P","Y50-64","2011","4320","","" +"HU","F","POP","TOTAL","OC4","P","Y65-84","2011","156","","" +"HU","F","POP","TOTAL","OC4","P","Y_GE85","2011","2","","" +"HU","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","Q","Y15-29","2011","1490","","" +"HU","F","POP","TOTAL","OC4","Q","Y30-49","2011","5115","","" +"HU","F","POP","TOTAL","OC4","Q","Y50-64","2011","3275","","" +"HU","F","POP","TOTAL","OC4","Q","Y65-84","2011","131","","" +"HU","F","POP","TOTAL","OC4","Q","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","R","Y15-29","2011","1464","","" +"HU","F","POP","TOTAL","OC4","R","Y30-49","2011","2145","","" +"HU","F","POP","TOTAL","OC4","R","Y50-64","2011","1061","","" +"HU","F","POP","TOTAL","OC4","R","Y65-84","2011","72","","" +"HU","F","POP","TOTAL","OC4","R","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","S","Y15-29","2011","1206","","" +"HU","F","POP","TOTAL","OC4","S","Y30-49","2011","2436","","" +"HU","F","POP","TOTAL","OC4","S","Y50-64","2011","1230","","" +"HU","F","POP","TOTAL","OC4","S","Y65-84","2011","85","","" +"HU","F","POP","TOTAL","OC4","S","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","T","Y15-29","2011","18","","" +"HU","F","POP","TOTAL","OC4","T","Y30-49","2011","21","","" +"HU","F","POP","TOTAL","OC4","T","Y50-64","2011","7","","" +"HU","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","U","Y15-29","2011","68","","" +"HU","F","POP","TOTAL","OC4","U","Y30-49","2011","157","","" +"HU","F","POP","TOTAL","OC4","U","Y50-64","2011","40","","" +"HU","F","POP","TOTAL","OC4","U","Y65-84","2011","5","","" +"HU","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","A","Y15-29","2011","235","","" +"HU","F","POP","TOTAL","OC5","A","Y30-49","2011","806","","" +"HU","F","POP","TOTAL","OC5","A","Y50-64","2011","624","","" +"HU","F","POP","TOTAL","OC5","A","Y65-84","2011","39","","" +"HU","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","B","Y15-29","2011","3","","" +"HU","F","POP","TOTAL","OC5","B","Y30-49","2011","30","","" +"HU","F","POP","TOTAL","OC5","B","Y50-64","2011","26","","" +"HU","F","POP","TOTAL","OC5","B","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","C","Y15-29","2011","2622","","" +"HU","F","POP","TOTAL","OC5","C","Y30-49","2011","6566","","" +"HU","F","POP","TOTAL","OC5","C","Y50-64","2011","2700","","" +"HU","F","POP","TOTAL","OC5","C","Y65-84","2011","133","","" +"HU","F","POP","TOTAL","OC5","C","Y_GE85","2011","4","","" +"HU","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","D","Y15-29","2011","22","","" +"HU","F","POP","TOTAL","OC5","D","Y30-49","2011","88","","" +"HU","F","POP","TOTAL","OC5","D","Y50-64","2011","77","","" +"HU","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","E","Y15-29","2011","75","","" +"HU","F","POP","TOTAL","OC5","E","Y30-49","2011","238","","" +"HU","F","POP","TOTAL","OC5","E","Y50-64","2011","167","","" +"HU","F","POP","TOTAL","OC5","E","Y65-84","2011","11","","" +"HU","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","F","Y15-29","2011","213","","" +"HU","F","POP","TOTAL","OC5","F","Y30-49","2011","746","","" +"HU","F","POP","TOTAL","OC5","F","Y50-64","2011","291","","" +"HU","F","POP","TOTAL","OC5","F","Y65-84","2011","14","","" +"HU","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","G","Y15-29","2011","43501","","" +"HU","F","POP","TOTAL","OC5","G","Y30-49","2011","122165","","" +"HU","F","POP","TOTAL","OC5","G","Y50-64","2011","44075","","" +"HU","F","POP","TOTAL","OC5","G","Y65-84","2011","2234","","" +"HU","F","POP","TOTAL","OC5","G","Y_GE85","2011","18","","" +"HU","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","H","Y15-29","2011","1097","","" +"HU","F","POP","TOTAL","OC5","H","Y30-49","2011","3571","","" +"HU","F","POP","TOTAL","OC5","H","Y50-64","2011","1499","","" +"HU","F","POP","TOTAL","OC5","H","Y65-84","2011","32","","" +"HU","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","I","Y15-29","2011","25953","","" +"HU","F","POP","TOTAL","OC5","I","Y30-49","2011","32515","","" +"HU","F","POP","TOTAL","OC5","I","Y50-64","2011","11047","","" +"HU","F","POP","TOTAL","OC5","I","Y65-84","2011","556","","" +"HU","F","POP","TOTAL","OC5","I","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","J","Y15-29","2011","898","","" +"HU","F","POP","TOTAL","OC5","J","Y30-49","2011","1118","","" +"HU","F","POP","TOTAL","OC5","J","Y50-64","2011","356","","" +"HU","F","POP","TOTAL","OC5","J","Y65-84","2011","34","","" +"HU","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","K","Y15-29","2011","467","","" +"HU","F","POP","TOTAL","OC5","K","Y30-49","2011","747","","" +"HU","F","POP","TOTAL","OC5","K","Y50-64","2011","309","","" +"HU","F","POP","TOTAL","OC5","K","Y65-84","2011","30","","" +"HU","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","L","Y15-29","2011","353","","" +"HU","F","POP","TOTAL","OC5","L","Y30-49","2011","1400","","" +"HU","F","POP","TOTAL","OC5","L","Y50-64","2011","1304","","" +"HU","F","POP","TOTAL","OC5","L","Y65-84","2011","280","","" +"HU","F","POP","TOTAL","OC5","L","Y_GE85","2011","7","","" +"HU","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","M","Y15-29","2011","788","","" +"HU","F","POP","TOTAL","OC5","M","Y30-49","2011","1402","","" +"HU","F","POP","TOTAL","OC5","M","Y50-64","2011","528","","" +"HU","F","POP","TOTAL","OC5","M","Y65-84","2011","63","","" +"HU","F","POP","TOTAL","OC5","M","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","N","Y15-29","2011","1672","","" +"HU","F","POP","TOTAL","OC5","N","Y30-49","2011","4228","","" +"HU","F","POP","TOTAL","OC5","N","Y50-64","2011","2254","","" +"HU","F","POP","TOTAL","OC5","N","Y65-84","2011","163","","" +"HU","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","O","Y15-29","2011","2971","","" +"HU","F","POP","TOTAL","OC5","O","Y30-49","2011","8179","","" +"HU","F","POP","TOTAL","OC5","O","Y50-64","2011","3141","","" +"HU","F","POP","TOTAL","OC5","O","Y65-84","2011","108","","" +"HU","F","POP","TOTAL","OC5","O","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","P","Y15-29","2011","2868","","" +"HU","F","POP","TOTAL","OC5","P","Y30-49","2011","15643","","" +"HU","F","POP","TOTAL","OC5","P","Y50-64","2011","10371","","" +"HU","F","POP","TOTAL","OC5","P","Y65-84","2011","221","","" +"HU","F","POP","TOTAL","OC5","P","Y_GE85","2011","2","","" +"HU","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","Q","Y15-29","2011","2280","","" +"HU","F","POP","TOTAL","OC5","Q","Y30-49","2011","12025","","" +"HU","F","POP","TOTAL","OC5","Q","Y50-64","2011","7376","","" +"HU","F","POP","TOTAL","OC5","Q","Y65-84","2011","146","","" +"HU","F","POP","TOTAL","OC5","Q","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","R","Y15-29","2011","1191","","" +"HU","F","POP","TOTAL","OC5","R","Y30-49","2011","2235","","" +"HU","F","POP","TOTAL","OC5","R","Y50-64","2011","1567","","" +"HU","F","POP","TOTAL","OC5","R","Y65-84","2011","297","","" +"HU","F","POP","TOTAL","OC5","R","Y_GE85","2011","4","","" +"HU","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","S","Y15-29","2011","9791","","" +"HU","F","POP","TOTAL","OC5","S","Y30-49","2011","21345","","" +"HU","F","POP","TOTAL","OC5","S","Y50-64","2011","6916","","" +"HU","F","POP","TOTAL","OC5","S","Y65-84","2011","809","","" +"HU","F","POP","TOTAL","OC5","S","Y_GE85","2011","6","","" +"HU","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","T","Y15-29","2011","561","","" +"HU","F","POP","TOTAL","OC5","T","Y30-49","2011","1062","","" +"HU","F","POP","TOTAL","OC5","T","Y50-64","2011","754","","" +"HU","F","POP","TOTAL","OC5","T","Y65-84","2011","55","","" +"HU","F","POP","TOTAL","OC5","T","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","U","Y15-29","2011","154","","" +"HU","F","POP","TOTAL","OC5","U","Y30-49","2011","130","","" +"HU","F","POP","TOTAL","OC5","U","Y50-64","2011","38","","" +"HU","F","POP","TOTAL","OC5","U","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","A","Y15-29","2011","2212","","" +"HU","F","POP","TOTAL","OC6","A","Y30-49","2011","13783","","" +"HU","F","POP","TOTAL","OC6","A","Y50-64","2011","10855","","" +"HU","F","POP","TOTAL","OC6","A","Y65-84","2011","833","","" +"HU","F","POP","TOTAL","OC6","A","Y_GE85","2011","17","","" +"HU","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC6","B","Y30-49","2011","1","","" +"HU","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","C","Y15-29","2011","87","","" +"HU","F","POP","TOTAL","OC6","C","Y30-49","2011","493","","" +"HU","F","POP","TOTAL","OC6","C","Y50-64","2011","385","","" +"HU","F","POP","TOTAL","OC6","C","Y65-84","2011","19","","" +"HU","F","POP","TOTAL","OC6","C","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC6","D","Y30-49","2011","8","","" +"HU","F","POP","TOTAL","OC6","D","Y50-64","2011","12","","" +"HU","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","E","Y15-29","2011","43","","" +"HU","F","POP","TOTAL","OC6","E","Y30-49","2011","197","","" +"HU","F","POP","TOTAL","OC6","E","Y50-64","2011","79","","" +"HU","F","POP","TOTAL","OC6","E","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","F","Y15-29","2011","19","","" +"HU","F","POP","TOTAL","OC6","F","Y30-49","2011","48","","" +"HU","F","POP","TOTAL","OC6","F","Y50-64","2011","38","","" +"HU","F","POP","TOTAL","OC6","F","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","G","Y15-29","2011","79","","" +"HU","F","POP","TOTAL","OC6","G","Y30-49","2011","333","","" +"HU","F","POP","TOTAL","OC6","G","Y50-64","2011","188","","" +"HU","F","POP","TOTAL","OC6","G","Y65-84","2011","14","","" +"HU","F","POP","TOTAL","OC6","G","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","H","Y15-29","2011","12","","" +"HU","F","POP","TOTAL","OC6","H","Y30-49","2011","24","","" +"HU","F","POP","TOTAL","OC6","H","Y50-64","2011","17","","" +"HU","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","I","Y15-29","2011","20","","" +"HU","F","POP","TOTAL","OC6","I","Y30-49","2011","52","","" +"HU","F","POP","TOTAL","OC6","I","Y50-64","2011","28","","" +"HU","F","POP","TOTAL","OC6","I","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC6","I","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","J","Y15-29","2011","8","","" +"HU","F","POP","TOTAL","OC6","J","Y30-49","2011","52","","" +"HU","F","POP","TOTAL","OC6","J","Y50-64","2011","43","","" +"HU","F","POP","TOTAL","OC6","J","Y65-84","2011","4","","" +"HU","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","K","Y15-29","2011","3","","" +"HU","F","POP","TOTAL","OC6","K","Y30-49","2011","39","","" +"HU","F","POP","TOTAL","OC6","K","Y50-64","2011","41","","" +"HU","F","POP","TOTAL","OC6","K","Y65-84","2011","5","","" +"HU","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","L","Y15-29","2011","12","","" +"HU","F","POP","TOTAL","OC6","L","Y30-49","2011","48","","" +"HU","F","POP","TOTAL","OC6","L","Y50-64","2011","23","","" +"HU","F","POP","TOTAL","OC6","L","Y65-84","2011","5","","" +"HU","F","POP","TOTAL","OC6","L","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","M","Y15-29","2011","33","","" +"HU","F","POP","TOTAL","OC6","M","Y30-49","2011","147","","" +"HU","F","POP","TOTAL","OC6","M","Y50-64","2011","97","","" +"HU","F","POP","TOTAL","OC6","M","Y65-84","2011","10","","" +"HU","F","POP","TOTAL","OC6","M","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","N","Y15-29","2011","131","","" +"HU","F","POP","TOTAL","OC6","N","Y30-49","2011","472","","" +"HU","F","POP","TOTAL","OC6","N","Y50-64","2011","249","","" +"HU","F","POP","TOTAL","OC6","N","Y65-84","2011","4","","" +"HU","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","O","Y15-29","2011","662","","" +"HU","F","POP","TOTAL","OC6","O","Y30-49","2011","2337","","" +"HU","F","POP","TOTAL","OC6","O","Y50-64","2011","929","","" +"HU","F","POP","TOTAL","OC6","O","Y65-84","2011","7","","" +"HU","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","P","Y15-29","2011","37","","" +"HU","F","POP","TOTAL","OC6","P","Y30-49","2011","121","","" +"HU","F","POP","TOTAL","OC6","P","Y50-64","2011","94","","" +"HU","F","POP","TOTAL","OC6","P","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","Q","Y15-29","2011","40","","" +"HU","F","POP","TOTAL","OC6","Q","Y30-49","2011","138","","" +"HU","F","POP","TOTAL","OC6","Q","Y50-64","2011","80","","" +"HU","F","POP","TOTAL","OC6","Q","Y65-84","2011","3","","" +"HU","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","R","Y15-29","2011","54","","" +"HU","F","POP","TOTAL","OC6","R","Y30-49","2011","137","","" +"HU","F","POP","TOTAL","OC6","R","Y50-64","2011","51","","" +"HU","F","POP","TOTAL","OC6","R","Y65-84","2011","4","","" +"HU","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","S","Y15-29","2011","35","","" +"HU","F","POP","TOTAL","OC6","S","Y30-49","2011","63","","" +"HU","F","POP","TOTAL","OC6","S","Y50-64","2011","26","","" +"HU","F","POP","TOTAL","OC6","S","Y65-84","2011","4","","" +"HU","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","T","Y15-29","2011","5","","" +"HU","F","POP","TOTAL","OC6","T","Y30-49","2011","32","","" +"HU","F","POP","TOTAL","OC6","T","Y50-64","2011","15","","" +"HU","F","POP","TOTAL","OC6","T","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","U","Y15-29","2011","3","","" +"HU","F","POP","TOTAL","OC6","U","Y30-49","2011","2","","" +"HU","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","A","Y15-29","2011","108","","" +"HU","F","POP","TOTAL","OC7","A","Y30-49","2011","498","","" +"HU","F","POP","TOTAL","OC7","A","Y50-64","2011","265","","" +"HU","F","POP","TOTAL","OC7","A","Y65-84","2011","10","","" +"HU","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","B","Y15-29","2011","1","","" +"HU","F","POP","TOTAL","OC7","B","Y30-49","2011","11","","" +"HU","F","POP","TOTAL","OC7","B","Y50-64","2011","11","","" +"HU","F","POP","TOTAL","OC7","B","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","C","Y15-29","2011","9146","","" +"HU","F","POP","TOTAL","OC7","C","Y30-49","2011","39995","","" +"HU","F","POP","TOTAL","OC7","C","Y50-64","2011","18188","","" +"HU","F","POP","TOTAL","OC7","C","Y65-84","2011","393","","" +"HU","F","POP","TOTAL","OC7","C","Y_GE85","2011","11","","" +"HU","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","D","Y15-29","2011","11","","" +"HU","F","POP","TOTAL","OC7","D","Y30-49","2011","83","","" +"HU","F","POP","TOTAL","OC7","D","Y50-64","2011","76","","" +"HU","F","POP","TOTAL","OC7","D","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","E","Y15-29","2011","17","","" +"HU","F","POP","TOTAL","OC7","E","Y30-49","2011","97","","" +"HU","F","POP","TOTAL","OC7","E","Y50-64","2011","86","","" +"HU","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","F","Y15-29","2011","359","","" +"HU","F","POP","TOTAL","OC7","F","Y30-49","2011","1386","","" +"HU","F","POP","TOTAL","OC7","F","Y50-64","2011","738","","" +"HU","F","POP","TOTAL","OC7","F","Y65-84","2011","34","","" +"HU","F","POP","TOTAL","OC7","F","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","G","Y15-29","2011","1413","","" +"HU","F","POP","TOTAL","OC7","G","Y30-49","2011","4998","","" +"HU","F","POP","TOTAL","OC7","G","Y50-64","2011","1944","","" +"HU","F","POP","TOTAL","OC7","G","Y65-84","2011","116","","" +"HU","F","POP","TOTAL","OC7","G","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","H","Y15-29","2011","81","","" +"HU","F","POP","TOTAL","OC7","H","Y30-49","2011","420","","" +"HU","F","POP","TOTAL","OC7","H","Y50-64","2011","231","","" +"HU","F","POP","TOTAL","OC7","H","Y65-84","2011","6","","" +"HU","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","I","Y15-29","2011","887","","" +"HU","F","POP","TOTAL","OC7","I","Y30-49","2011","1466","","" +"HU","F","POP","TOTAL","OC7","I","Y50-64","2011","469","","" +"HU","F","POP","TOTAL","OC7","I","Y65-84","2011","24","","" +"HU","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","J","Y15-29","2011","135","","" +"HU","F","POP","TOTAL","OC7","J","Y30-49","2011","491","","" +"HU","F","POP","TOTAL","OC7","J","Y50-64","2011","232","","" +"HU","F","POP","TOTAL","OC7","J","Y65-84","2011","16","","" +"HU","F","POP","TOTAL","OC7","J","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","K","Y15-29","2011","18","","" +"HU","F","POP","TOTAL","OC7","K","Y30-49","2011","91","","" +"HU","F","POP","TOTAL","OC7","K","Y50-64","2011","56","","" +"HU","F","POP","TOTAL","OC7","K","Y65-84","2011","8","","" +"HU","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","L","Y15-29","2011","30","","" +"HU","F","POP","TOTAL","OC7","L","Y30-49","2011","121","","" +"HU","F","POP","TOTAL","OC7","L","Y50-64","2011","65","","" +"HU","F","POP","TOTAL","OC7","L","Y65-84","2011","3","","" +"HU","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","M","Y15-29","2011","129","","" +"HU","F","POP","TOTAL","OC7","M","Y30-49","2011","509","","" +"HU","F","POP","TOTAL","OC7","M","Y50-64","2011","243","","" +"HU","F","POP","TOTAL","OC7","M","Y65-84","2011","22","","" +"HU","F","POP","TOTAL","OC7","M","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","N","Y15-29","2011","199","","" +"HU","F","POP","TOTAL","OC7","N","Y30-49","2011","667","","" +"HU","F","POP","TOTAL","OC7","N","Y50-64","2011","347","","" +"HU","F","POP","TOTAL","OC7","N","Y65-84","2011","20","","" +"HU","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","O","Y15-29","2011","67","","" +"HU","F","POP","TOTAL","OC7","O","Y30-49","2011","354","","" +"HU","F","POP","TOTAL","OC7","O","Y50-64","2011","198","","" +"HU","F","POP","TOTAL","OC7","O","Y65-84","2011","6","","" +"HU","F","POP","TOTAL","OC7","O","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","P","Y15-29","2011","22","","" +"HU","F","POP","TOTAL","OC7","P","Y30-49","2011","235","","" +"HU","F","POP","TOTAL","OC7","P","Y50-64","2011","191","","" +"HU","F","POP","TOTAL","OC7","P","Y65-84","2011","7","","" +"HU","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","Q","Y15-29","2011","113","","" +"HU","F","POP","TOTAL","OC7","Q","Y30-49","2011","620","","" +"HU","F","POP","TOTAL","OC7","Q","Y50-64","2011","502","","" +"HU","F","POP","TOTAL","OC7","Q","Y65-84","2011","9","","" +"HU","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","R","Y15-29","2011","56","","" +"HU","F","POP","TOTAL","OC7","R","Y30-49","2011","282","","" +"HU","F","POP","TOTAL","OC7","R","Y50-64","2011","197","","" +"HU","F","POP","TOTAL","OC7","R","Y65-84","2011","12","","" +"HU","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","S","Y15-29","2011","133","","" +"HU","F","POP","TOTAL","OC7","S","Y30-49","2011","639","","" +"HU","F","POP","TOTAL","OC7","S","Y50-64","2011","405","","" +"HU","F","POP","TOTAL","OC7","S","Y65-84","2011","57","","" +"HU","F","POP","TOTAL","OC7","S","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","T","Y15-29","2011","8","","" +"HU","F","POP","TOTAL","OC7","T","Y30-49","2011","18","","" +"HU","F","POP","TOTAL","OC7","T","Y50-64","2011","3","","" +"HU","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","U","Y15-29","2011","13","","" +"HU","F","POP","TOTAL","OC7","U","Y30-49","2011","16","","" +"HU","F","POP","TOTAL","OC7","U","Y50-64","2011","3","","" +"HU","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","A","Y15-29","2011","117","","" +"HU","F","POP","TOTAL","OC8","A","Y30-49","2011","506","","" +"HU","F","POP","TOTAL","OC8","A","Y50-64","2011","279","","" +"HU","F","POP","TOTAL","OC8","A","Y65-84","2011","10","","" +"HU","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","B","Y15-29","2011","2","","" +"HU","F","POP","TOTAL","OC8","B","Y30-49","2011","23","","" +"HU","F","POP","TOTAL","OC8","B","Y50-64","2011","24","","" +"HU","F","POP","TOTAL","OC8","B","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","C","Y15-29","2011","27172","","" +"HU","F","POP","TOTAL","OC8","C","Y30-49","2011","82538","","" +"HU","F","POP","TOTAL","OC8","C","Y50-64","2011","38566","","" +"HU","F","POP","TOTAL","OC8","C","Y65-84","2011","293","","" +"HU","F","POP","TOTAL","OC8","C","Y_GE85","2011","8","","" +"HU","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","D","Y15-29","2011","9","","" +"HU","F","POP","TOTAL","OC8","D","Y30-49","2011","100","","" +"HU","F","POP","TOTAL","OC8","D","Y50-64","2011","91","","" +"HU","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","E","Y15-29","2011","42","","" +"HU","F","POP","TOTAL","OC8","E","Y30-49","2011","182","","" +"HU","F","POP","TOTAL","OC8","E","Y50-64","2011","177","","" +"HU","F","POP","TOTAL","OC8","E","Y65-84","2011","5","","" +"HU","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","F","Y15-29","2011","70","","" +"HU","F","POP","TOTAL","OC8","F","Y30-49","2011","260","","" +"HU","F","POP","TOTAL","OC8","F","Y50-64","2011","128","","" +"HU","F","POP","TOTAL","OC8","F","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","G","Y15-29","2011","779","","" +"HU","F","POP","TOTAL","OC8","G","Y30-49","2011","2326","","" +"HU","F","POP","TOTAL","OC8","G","Y50-64","2011","1128","","" +"HU","F","POP","TOTAL","OC8","G","Y65-84","2011","29","","" +"HU","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","H","Y15-29","2011","323","","" +"HU","F","POP","TOTAL","OC8","H","Y30-49","2011","1737","","" +"HU","F","POP","TOTAL","OC8","H","Y50-64","2011","689","","" +"HU","F","POP","TOTAL","OC8","H","Y65-84","2011","15","","" +"HU","F","POP","TOTAL","OC8","H","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","I","Y15-29","2011","56","","" +"HU","F","POP","TOTAL","OC8","I","Y30-49","2011","183","","" +"HU","F","POP","TOTAL","OC8","I","Y50-64","2011","107","","" +"HU","F","POP","TOTAL","OC8","I","Y65-84","2011","3","","" +"HU","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","J","Y15-29","2011","88","","" +"HU","F","POP","TOTAL","OC8","J","Y30-49","2011","183","","" +"HU","F","POP","TOTAL","OC8","J","Y50-64","2011","111","","" +"HU","F","POP","TOTAL","OC8","J","Y65-84","2011","4","","" +"HU","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","K","Y15-29","2011","30","","" +"HU","F","POP","TOTAL","OC8","K","Y30-49","2011","79","","" +"HU","F","POP","TOTAL","OC8","K","Y50-64","2011","36","","" +"HU","F","POP","TOTAL","OC8","K","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","L","Y15-29","2011","48","","" +"HU","F","POP","TOTAL","OC8","L","Y30-49","2011","155","","" +"HU","F","POP","TOTAL","OC8","L","Y50-64","2011","100","","" +"HU","F","POP","TOTAL","OC8","L","Y65-84","2011","11","","" +"HU","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","M","Y15-29","2011","99","","" +"HU","F","POP","TOTAL","OC8","M","Y30-49","2011","267","","" +"HU","F","POP","TOTAL","OC8","M","Y50-64","2011","175","","" +"HU","F","POP","TOTAL","OC8","M","Y65-84","2011","5","","" +"HU","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","N","Y15-29","2011","833","","" +"HU","F","POP","TOTAL","OC8","N","Y30-49","2011","1846","","" +"HU","F","POP","TOTAL","OC8","N","Y50-64","2011","1487","","" +"HU","F","POP","TOTAL","OC8","N","Y65-84","2011","10","","" +"HU","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","O","Y15-29","2011","117","","" +"HU","F","POP","TOTAL","OC8","O","Y30-49","2011","398","","" +"HU","F","POP","TOTAL","OC8","O","Y50-64","2011","134","","" +"HU","F","POP","TOTAL","OC8","O","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","P","Y15-29","2011","18","","" +"HU","F","POP","TOTAL","OC8","P","Y30-49","2011","96","","" +"HU","F","POP","TOTAL","OC8","P","Y50-64","2011","124","","" +"HU","F","POP","TOTAL","OC8","P","Y65-84","2011","3","","" +"HU","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","Q","Y15-29","2011","133","","" +"HU","F","POP","TOTAL","OC8","Q","Y30-49","2011","1039","","" +"HU","F","POP","TOTAL","OC8","Q","Y50-64","2011","962","","" +"HU","F","POP","TOTAL","OC8","Q","Y65-84","2011","17","","" +"HU","F","POP","TOTAL","OC8","Q","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","R","Y15-29","2011","28","","" +"HU","F","POP","TOTAL","OC8","R","Y30-49","2011","71","","" +"HU","F","POP","TOTAL","OC8","R","Y50-64","2011","54","","" +"HU","F","POP","TOTAL","OC8","R","Y65-84","2011","5","","" +"HU","F","POP","TOTAL","OC8","R","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","S","Y15-29","2011","223","","" +"HU","F","POP","TOTAL","OC8","S","Y30-49","2011","1011","","" +"HU","F","POP","TOTAL","OC8","S","Y50-64","2011","817","","" +"HU","F","POP","TOTAL","OC8","S","Y65-84","2011","23","","" +"HU","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","T","Y15-29","2011","4","","" +"HU","F","POP","TOTAL","OC8","T","Y30-49","2011","12","","" +"HU","F","POP","TOTAL","OC8","T","Y50-64","2011","2","","" +"HU","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","U","Y15-29","2011","23","","" +"HU","F","POP","TOTAL","OC8","U","Y30-49","2011","37","","" +"HU","F","POP","TOTAL","OC8","U","Y50-64","2011","4","","" +"HU","F","POP","TOTAL","OC8","U","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","A","Y15-29","2011","1438","","" +"HU","F","POP","TOTAL","OC9","A","Y30-49","2011","5193","","" +"HU","F","POP","TOTAL","OC9","A","Y50-64","2011","3253","","" +"HU","F","POP","TOTAL","OC9","A","Y65-84","2011","182","","" +"HU","F","POP","TOTAL","OC9","A","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","B","Y15-29","2011","7","","" +"HU","F","POP","TOTAL","OC9","B","Y30-49","2011","38","","" +"HU","F","POP","TOTAL","OC9","B","Y50-64","2011","50","","" +"HU","F","POP","TOTAL","OC9","B","Y65-84","2011","1","","" +"HU","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","C","Y15-29","2011","3239","","" +"HU","F","POP","TOTAL","OC9","C","Y30-49","2011","12365","","" +"HU","F","POP","TOTAL","OC9","C","Y50-64","2011","8863","","" +"HU","F","POP","TOTAL","OC9","C","Y65-84","2011","289","","" +"HU","F","POP","TOTAL","OC9","C","Y_GE85","2011","8","","" +"HU","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","D","Y15-29","2011","46","","" +"HU","F","POP","TOTAL","OC9","D","Y30-49","2011","326","","" +"HU","F","POP","TOTAL","OC9","D","Y50-64","2011","309","","" +"HU","F","POP","TOTAL","OC9","D","Y65-84","2011","12","","" +"HU","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","E","Y15-29","2011","380","","" +"HU","F","POP","TOTAL","OC9","E","Y30-49","2011","1903","","" +"HU","F","POP","TOTAL","OC9","E","Y50-64","2011","1227","","" +"HU","F","POP","TOTAL","OC9","E","Y65-84","2011","15","","" +"HU","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","F","Y15-29","2011","274","","" +"HU","F","POP","TOTAL","OC9","F","Y30-49","2011","1209","","" +"HU","F","POP","TOTAL","OC9","F","Y50-64","2011","846","","" +"HU","F","POP","TOTAL","OC9","F","Y65-84","2011","38","","" +"HU","F","POP","TOTAL","OC9","F","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","G","Y15-29","2011","3530","","" +"HU","F","POP","TOTAL","OC9","G","Y30-49","2011","9205","","" +"HU","F","POP","TOTAL","OC9","G","Y50-64","2011","5431","","" +"HU","F","POP","TOTAL","OC9","G","Y65-84","2011","321","","" +"HU","F","POP","TOTAL","OC9","G","Y_GE85","2011","2","","" +"HU","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","H","Y15-29","2011","553","","" +"HU","F","POP","TOTAL","OC9","H","Y30-49","2011","2266","","" +"HU","F","POP","TOTAL","OC9","H","Y50-64","2011","1614","","" +"HU","F","POP","TOTAL","OC9","H","Y65-84","2011","56","","" +"HU","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","I","Y15-29","2011","5782","","" +"HU","F","POP","TOTAL","OC9","I","Y30-49","2011","15644","","" +"HU","F","POP","TOTAL","OC9","I","Y50-64","2011","9959","","" +"HU","F","POP","TOTAL","OC9","I","Y65-84","2011","269","","" +"HU","F","POP","TOTAL","OC9","I","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","J","Y15-29","2011","519","","" +"HU","F","POP","TOTAL","OC9","J","Y30-49","2011","1175","","" +"HU","F","POP","TOTAL","OC9","J","Y50-64","2011","756","","" +"HU","F","POP","TOTAL","OC9","J","Y65-84","2011","65","","" +"HU","F","POP","TOTAL","OC9","J","Y_GE85","2011","5","","" +"HU","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","K","Y15-29","2011","347","","" +"HU","F","POP","TOTAL","OC9","K","Y30-49","2011","1034","","" +"HU","F","POP","TOTAL","OC9","K","Y50-64","2011","889","","" +"HU","F","POP","TOTAL","OC9","K","Y65-84","2011","107","","" +"HU","F","POP","TOTAL","OC9","K","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","L","Y15-29","2011","341","","" +"HU","F","POP","TOTAL","OC9","L","Y30-49","2011","1350","","" +"HU","F","POP","TOTAL","OC9","L","Y50-64","2011","989","","" +"HU","F","POP","TOTAL","OC9","L","Y65-84","2011","105","","" +"HU","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","M","Y15-29","2011","874","","" +"HU","F","POP","TOTAL","OC9","M","Y30-49","2011","1956","","" +"HU","F","POP","TOTAL","OC9","M","Y50-64","2011","1354","","" +"HU","F","POP","TOTAL","OC9","M","Y65-84","2011","111","","" +"HU","F","POP","TOTAL","OC9","M","Y_GE85","2011","7","","" +"HU","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","N","Y15-29","2011","3099","","" +"HU","F","POP","TOTAL","OC9","N","Y30-49","2011","12745","","" +"HU","F","POP","TOTAL","OC9","N","Y50-64","2011","10435","","" +"HU","F","POP","TOTAL","OC9","N","Y65-84","2011","560","","" +"HU","F","POP","TOTAL","OC9","N","Y_GE85","2011","3","","" +"HU","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","O","Y15-29","2011","8543","","" +"HU","F","POP","TOTAL","OC9","O","Y30-49","2011","30703","","" +"HU","F","POP","TOTAL","OC9","O","Y50-64","2011","14820","","" +"HU","F","POP","TOTAL","OC9","O","Y65-84","2011","219","","" +"HU","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","P","Y15-29","2011","1425","","" +"HU","F","POP","TOTAL","OC9","P","Y30-49","2011","12516","","" +"HU","F","POP","TOTAL","OC9","P","Y50-64","2011","12815","","" +"HU","F","POP","TOTAL","OC9","P","Y65-84","2011","352","","" +"HU","F","POP","TOTAL","OC9","P","Y_GE85","2011","4","","" +"HU","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","Q","Y15-29","2011","1262","","" +"HU","F","POP","TOTAL","OC9","Q","Y30-49","2011","9819","","" +"HU","F","POP","TOTAL","OC9","Q","Y50-64","2011","9411","","" +"HU","F","POP","TOTAL","OC9","Q","Y65-84","2011","286","","" +"HU","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","R","Y15-29","2011","451","","" +"HU","F","POP","TOTAL","OC9","R","Y30-49","2011","1748","","" +"HU","F","POP","TOTAL","OC9","R","Y50-64","2011","1541","","" +"HU","F","POP","TOTAL","OC9","R","Y65-84","2011","138","","" +"HU","F","POP","TOTAL","OC9","R","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","S","Y15-29","2011","375","","" +"HU","F","POP","TOTAL","OC9","S","Y30-49","2011","1401","","" +"HU","F","POP","TOTAL","OC9","S","Y50-64","2011","1166","","" +"HU","F","POP","TOTAL","OC9","S","Y65-84","2011","82","","" +"HU","F","POP","TOTAL","OC9","S","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","T","Y15-29","2011","227","","" +"HU","F","POP","TOTAL","OC9","T","Y30-49","2011","713","","" +"HU","F","POP","TOTAL","OC9","T","Y50-64","2011","343","","" +"HU","F","POP","TOTAL","OC9","T","Y65-84","2011","18","","" +"HU","F","POP","TOTAL","OC9","T","Y_GE85","2011","1","","" +"HU","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","U","Y15-29","2011","108","","" +"HU","F","POP","TOTAL","OC9","U","Y30-49","2011","189","","" +"HU","F","POP","TOTAL","OC9","U","Y50-64","2011","60","","" +"HU","F","POP","TOTAL","OC9","U","Y65-84","2011","2","","" +"HU","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"HU","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"HU","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"HU","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"HU","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"HU","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"HU","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","NAP","Y15-29","2011","476030","","" +"HU","M","POP","TOTAL","NAP","NAP","Y30-49","2011","129660","","" +"HU","M","POP","TOTAL","NAP","NAP","Y50-64","2011","408532","","" +"HU","M","POP","TOTAL","NAP","NAP","Y65-84","2011","537280","","" +"HU","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","42893","","" +"HU","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","743245","","" +"HU","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","O","Y15-29","2011","4256","","" +"HU","M","POP","TOTAL","OC0","O","Y30-49","2011","11181","","" +"HU","M","POP","TOTAL","OC0","O","Y50-64","2011","814","","" +"HU","M","POP","TOTAL","OC0","O","Y65-84","2011","47","","" +"HU","M","POP","TOTAL","OC0","O","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","A","Y15-29","2011","393","","" +"HU","M","POP","TOTAL","OC1","A","Y30-49","2011","2584","","" +"HU","M","POP","TOTAL","OC1","A","Y50-64","2011","2550","","" +"HU","M","POP","TOTAL","OC1","A","Y65-84","2011","255","","" +"HU","M","POP","TOTAL","OC1","A","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","B","Y15-29","2011","9","","" +"HU","M","POP","TOTAL","OC1","B","Y30-49","2011","133","","" +"HU","M","POP","TOTAL","OC1","B","Y50-64","2011","123","","" +"HU","M","POP","TOTAL","OC1","B","Y65-84","2011","10","","" +"HU","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","C","Y15-29","2011","1787","","" +"HU","M","POP","TOTAL","OC1","C","Y30-49","2011","17065","","" +"HU","M","POP","TOTAL","OC1","C","Y50-64","2011","8523","","" +"HU","M","POP","TOTAL","OC1","C","Y65-84","2011","742","","" +"HU","M","POP","TOTAL","OC1","C","Y_GE85","2011","5","","" +"HU","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","D","Y15-29","2011","41","","" +"HU","M","POP","TOTAL","OC1","D","Y30-49","2011","955","","" +"HU","M","POP","TOTAL","OC1","D","Y50-64","2011","648","","" +"HU","M","POP","TOTAL","OC1","D","Y65-84","2011","21","","" +"HU","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","E","Y15-29","2011","174","","" +"HU","M","POP","TOTAL","OC1","E","Y30-49","2011","1338","","" +"HU","M","POP","TOTAL","OC1","E","Y50-64","2011","1032","","" +"HU","M","POP","TOTAL","OC1","E","Y65-84","2011","52","","" +"HU","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","F","Y15-29","2011","813","","" +"HU","M","POP","TOTAL","OC1","F","Y30-49","2011","7190","","" +"HU","M","POP","TOTAL","OC1","F","Y50-64","2011","4220","","" +"HU","M","POP","TOTAL","OC1","F","Y65-84","2011","294","","" +"HU","M","POP","TOTAL","OC1","F","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","G","Y15-29","2011","1909","","" +"HU","M","POP","TOTAL","OC1","G","Y30-49","2011","16213","","" +"HU","M","POP","TOTAL","OC1","G","Y50-64","2011","5934","","" +"HU","M","POP","TOTAL","OC1","G","Y65-84","2011","483","","" +"HU","M","POP","TOTAL","OC1","G","Y_GE85","2011","10","","" +"HU","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","H","Y15-29","2011","378","","" +"HU","M","POP","TOTAL","OC1","H","Y30-49","2011","4355","","" +"HU","M","POP","TOTAL","OC1","H","Y50-64","2011","2258","","" +"HU","M","POP","TOTAL","OC1","H","Y65-84","2011","78","","" +"HU","M","POP","TOTAL","OC1","H","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","I","Y15-29","2011","634","","" +"HU","M","POP","TOTAL","OC1","I","Y30-49","2011","3839","","" +"HU","M","POP","TOTAL","OC1","I","Y50-64","2011","1678","","" +"HU","M","POP","TOTAL","OC1","I","Y65-84","2011","162","","" +"HU","M","POP","TOTAL","OC1","I","Y_GE85","2011","2","","" +"HU","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","J","Y15-29","2011","373","","" +"HU","M","POP","TOTAL","OC1","J","Y30-49","2011","4281","","" +"HU","M","POP","TOTAL","OC1","J","Y50-64","2011","1115","","" +"HU","M","POP","TOTAL","OC1","J","Y65-84","2011","86","","" +"HU","M","POP","TOTAL","OC1","J","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","K","Y15-29","2011","248","","" +"HU","M","POP","TOTAL","OC1","K","Y30-49","2011","3385","","" +"HU","M","POP","TOTAL","OC1","K","Y50-64","2011","840","","" +"HU","M","POP","TOTAL","OC1","K","Y65-84","2011","53","","" +"HU","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","L","Y15-29","2011","63","","" +"HU","M","POP","TOTAL","OC1","L","Y30-49","2011","957","","" +"HU","M","POP","TOTAL","OC1","L","Y50-64","2011","620","","" +"HU","M","POP","TOTAL","OC1","L","Y65-84","2011","99","","" +"HU","M","POP","TOTAL","OC1","L","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","M","Y15-29","2011","266","","" +"HU","M","POP","TOTAL","OC1","M","Y30-49","2011","3233","","" +"HU","M","POP","TOTAL","OC1","M","Y50-64","2011","1663","","" +"HU","M","POP","TOTAL","OC1","M","Y65-84","2011","344","","" +"HU","M","POP","TOTAL","OC1","M","Y_GE85","2011","2","","" +"HU","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","N","Y15-29","2011","337","","" +"HU","M","POP","TOTAL","OC1","N","Y30-49","2011","2930","","" +"HU","M","POP","TOTAL","OC1","N","Y50-64","2011","1196","","" +"HU","M","POP","TOTAL","OC1","N","Y65-84","2011","114","","" +"HU","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","O","Y15-29","2011","379","","" +"HU","M","POP","TOTAL","OC1","O","Y30-49","2011","6274","","" +"HU","M","POP","TOTAL","OC1","O","Y50-64","2011","3647","","" +"HU","M","POP","TOTAL","OC1","O","Y65-84","2011","307","","" +"HU","M","POP","TOTAL","OC1","O","Y_GE85","2011","9","","" +"HU","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","P","Y15-29","2011","70","","" +"HU","M","POP","TOTAL","OC1","P","Y30-49","2011","1794","","" +"HU","M","POP","TOTAL","OC1","P","Y50-64","2011","1752","","" +"HU","M","POP","TOTAL","OC1","P","Y65-84","2011","185","","" +"HU","M","POP","TOTAL","OC1","P","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","Q","Y15-29","2011","84","","" +"HU","M","POP","TOTAL","OC1","Q","Y30-49","2011","1227","","" +"HU","M","POP","TOTAL","OC1","Q","Y50-64","2011","1329","","" +"HU","M","POP","TOTAL","OC1","Q","Y65-84","2011","203","","" +"HU","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","R","Y15-29","2011","81","","" +"HU","M","POP","TOTAL","OC1","R","Y30-49","2011","1043","","" +"HU","M","POP","TOTAL","OC1","R","Y50-64","2011","653","","" +"HU","M","POP","TOTAL","OC1","R","Y65-84","2011","76","","" +"HU","M","POP","TOTAL","OC1","R","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","S","Y15-29","2011","93","","" +"HU","M","POP","TOTAL","OC1","S","Y30-49","2011","1079","","" +"HU","M","POP","TOTAL","OC1","S","Y50-64","2011","756","","" +"HU","M","POP","TOTAL","OC1","S","Y65-84","2011","159","","" +"HU","M","POP","TOTAL","OC1","S","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC1","T","Y30-49","2011","14","","" +"HU","M","POP","TOTAL","OC1","T","Y50-64","2011","7","","" +"HU","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","U","Y15-29","2011","11","","" +"HU","M","POP","TOTAL","OC1","U","Y30-49","2011","81","","" +"HU","M","POP","TOTAL","OC1","U","Y50-64","2011","24","","" +"HU","M","POP","TOTAL","OC1","U","Y65-84","2011","3","","" +"HU","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","A","Y15-29","2011","578","","" +"HU","M","POP","TOTAL","OC2","A","Y30-49","2011","1696","","" +"HU","M","POP","TOTAL","OC2","A","Y50-64","2011","1093","","" +"HU","M","POP","TOTAL","OC2","A","Y65-84","2011","191","","" +"HU","M","POP","TOTAL","OC2","A","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","B","Y15-29","2011","60","","" +"HU","M","POP","TOTAL","OC2","B","Y30-49","2011","186","","" +"HU","M","POP","TOTAL","OC2","B","Y50-64","2011","90","","" +"HU","M","POP","TOTAL","OC2","B","Y65-84","2011","14","","" +"HU","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","C","Y15-29","2011","8065","","" +"HU","M","POP","TOTAL","OC2","C","Y30-49","2011","20177","","" +"HU","M","POP","TOTAL","OC2","C","Y50-64","2011","5826","","" +"HU","M","POP","TOTAL","OC2","C","Y65-84","2011","688","","" +"HU","M","POP","TOTAL","OC2","C","Y_GE85","2011","9","","" +"HU","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","D","Y15-29","2011","574","","" +"HU","M","POP","TOTAL","OC2","D","Y30-49","2011","2182","","" +"HU","M","POP","TOTAL","OC2","D","Y50-64","2011","757","","" +"HU","M","POP","TOTAL","OC2","D","Y65-84","2011","56","","" +"HU","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","E","Y15-29","2011","293","","" +"HU","M","POP","TOTAL","OC2","E","Y30-49","2011","794","","" +"HU","M","POP","TOTAL","OC2","E","Y50-64","2011","383","","" +"HU","M","POP","TOTAL","OC2","E","Y65-84","2011","41","","" +"HU","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","F","Y15-29","2011","1282","","" +"HU","M","POP","TOTAL","OC2","F","Y30-49","2011","4324","","" +"HU","M","POP","TOTAL","OC2","F","Y50-64","2011","2078","","" +"HU","M","POP","TOTAL","OC2","F","Y65-84","2011","269","","" +"HU","M","POP","TOTAL","OC2","F","Y_GE85","2011","2","","" +"HU","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","G","Y15-29","2011","3252","","" +"HU","M","POP","TOTAL","OC2","G","Y30-49","2011","9839","","" +"HU","M","POP","TOTAL","OC2","G","Y50-64","2011","2412","","" +"HU","M","POP","TOTAL","OC2","G","Y65-84","2011","475","","" +"HU","M","POP","TOTAL","OC2","G","Y_GE85","2011","9","","" +"HU","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","H","Y15-29","2011","747","","" +"HU","M","POP","TOTAL","OC2","H","Y30-49","2011","2803","","" +"HU","M","POP","TOTAL","OC2","H","Y50-64","2011","1195","","" +"HU","M","POP","TOTAL","OC2","H","Y65-84","2011","81","","" +"HU","M","POP","TOTAL","OC2","H","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","I","Y15-29","2011","346","","" +"HU","M","POP","TOTAL","OC2","I","Y30-49","2011","955","","" +"HU","M","POP","TOTAL","OC2","I","Y50-64","2011","479","","" +"HU","M","POP","TOTAL","OC2","I","Y65-84","2011","47","","" +"HU","M","POP","TOTAL","OC2","I","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","J","Y15-29","2011","9722","","" +"HU","M","POP","TOTAL","OC2","J","Y30-49","2011","25273","","" +"HU","M","POP","TOTAL","OC2","J","Y50-64","2011","4839","","" +"HU","M","POP","TOTAL","OC2","J","Y65-84","2011","460","","" +"HU","M","POP","TOTAL","OC2","J","Y_GE85","2011","8","","" +"HU","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","K","Y15-29","2011","3033","","" +"HU","M","POP","TOTAL","OC2","K","Y30-49","2011","7621","","" +"HU","M","POP","TOTAL","OC2","K","Y50-64","2011","1660","","" +"HU","M","POP","TOTAL","OC2","K","Y65-84","2011","187","","" +"HU","M","POP","TOTAL","OC2","K","Y_GE85","2011","6","","" +"HU","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","L","Y15-29","2011","250","","" +"HU","M","POP","TOTAL","OC2","L","Y30-49","2011","861","","" +"HU","M","POP","TOTAL","OC2","L","Y50-64","2011","338","","" +"HU","M","POP","TOTAL","OC2","L","Y65-84","2011","73","","" +"HU","M","POP","TOTAL","OC2","L","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","M","Y15-29","2011","7009","","" +"HU","M","POP","TOTAL","OC2","M","Y30-49","2011","23255","","" +"HU","M","POP","TOTAL","OC2","M","Y50-64","2011","10449","","" +"HU","M","POP","TOTAL","OC2","M","Y65-84","2011","3293","","" +"HU","M","POP","TOTAL","OC2","M","Y_GE85","2011","63","","" +"HU","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","N","Y15-29","2011","806","","" +"HU","M","POP","TOTAL","OC2","N","Y30-49","2011","2242","","" +"HU","M","POP","TOTAL","OC2","N","Y50-64","2011","788","","" +"HU","M","POP","TOTAL","OC2","N","Y65-84","2011","103","","" +"HU","M","POP","TOTAL","OC2","N","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","O","Y15-29","2011","3110","","" +"HU","M","POP","TOTAL","OC2","O","Y30-49","2011","12759","","" +"HU","M","POP","TOTAL","OC2","O","Y50-64","2011","5231","","" +"HU","M","POP","TOTAL","OC2","O","Y65-84","2011","481","","" +"HU","M","POP","TOTAL","OC2","O","Y_GE85","2011","7","","" +"HU","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","P","Y15-29","2011","5712","","" +"HU","M","POP","TOTAL","OC2","P","Y30-49","2011","25699","","" +"HU","M","POP","TOTAL","OC2","P","Y50-64","2011","15216","","" +"HU","M","POP","TOTAL","OC2","P","Y65-84","2011","2604","","" +"HU","M","POP","TOTAL","OC2","P","Y_GE85","2011","34","","" +"HU","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","Q","Y15-29","2011","1777","","" +"HU","M","POP","TOTAL","OC2","Q","Y30-49","2011","8657","","" +"HU","M","POP","TOTAL","OC2","Q","Y50-64","2011","5971","","" +"HU","M","POP","TOTAL","OC2","Q","Y65-84","2011","2494","","" +"HU","M","POP","TOTAL","OC2","Q","Y_GE85","2011","26","","" +"HU","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","R","Y15-29","2011","1495","","" +"HU","M","POP","TOTAL","OC2","R","Y30-49","2011","5090","","" +"HU","M","POP","TOTAL","OC2","R","Y50-64","2011","2220","","" +"HU","M","POP","TOTAL","OC2","R","Y65-84","2011","476","","" +"HU","M","POP","TOTAL","OC2","R","Y_GE85","2011","17","","" +"HU","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","S","Y15-29","2011","786","","" +"HU","M","POP","TOTAL","OC2","S","Y30-49","2011","3395","","" +"HU","M","POP","TOTAL","OC2","S","Y50-64","2011","1537","","" +"HU","M","POP","TOTAL","OC2","S","Y65-84","2011","474","","" +"HU","M","POP","TOTAL","OC2","S","Y_GE85","2011","17","","" +"HU","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","T","Y15-29","2011","19","","" +"HU","M","POP","TOTAL","OC2","T","Y30-49","2011","36","","" +"HU","M","POP","TOTAL","OC2","T","Y50-64","2011","7","","" +"HU","M","POP","TOTAL","OC2","T","Y65-84","2011","2","","" +"HU","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","U","Y15-29","2011","120","","" +"HU","M","POP","TOTAL","OC2","U","Y30-49","2011","293","","" +"HU","M","POP","TOTAL","OC2","U","Y50-64","2011","89","","" +"HU","M","POP","TOTAL","OC2","U","Y65-84","2011","5","","" +"HU","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","A","Y15-29","2011","726","","" +"HU","M","POP","TOTAL","OC3","A","Y30-49","2011","2101","","" +"HU","M","POP","TOTAL","OC3","A","Y50-64","2011","1416","","" +"HU","M","POP","TOTAL","OC3","A","Y65-84","2011","96","","" +"HU","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","B","Y15-29","2011","78","","" +"HU","M","POP","TOTAL","OC3","B","Y30-49","2011","297","","" +"HU","M","POP","TOTAL","OC3","B","Y50-64","2011","183","","" +"HU","M","POP","TOTAL","OC3","B","Y65-84","2011","15","","" +"HU","M","POP","TOTAL","OC3","B","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","C","Y15-29","2011","12049","","" +"HU","M","POP","TOTAL","OC3","C","Y30-49","2011","27819","","" +"HU","M","POP","TOTAL","OC3","C","Y50-64","2011","9859","","" +"HU","M","POP","TOTAL","OC3","C","Y65-84","2011","518","","" +"HU","M","POP","TOTAL","OC3","C","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","D","Y15-29","2011","526","","" +"HU","M","POP","TOTAL","OC3","D","Y30-49","2011","2541","","" +"HU","M","POP","TOTAL","OC3","D","Y50-64","2011","1277","","" +"HU","M","POP","TOTAL","OC3","D","Y65-84","2011","22","","" +"HU","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","E","Y15-29","2011","447","","" +"HU","M","POP","TOTAL","OC3","E","Y30-49","2011","1365","","" +"HU","M","POP","TOTAL","OC3","E","Y50-64","2011","937","","" +"HU","M","POP","TOTAL","OC3","E","Y65-84","2011","35","","" +"HU","M","POP","TOTAL","OC3","E","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","F","Y15-29","2011","2575","","" +"HU","M","POP","TOTAL","OC3","F","Y30-49","2011","8466","","" +"HU","M","POP","TOTAL","OC3","F","Y50-64","2011","3990","","" +"HU","M","POP","TOTAL","OC3","F","Y65-84","2011","312","","" +"HU","M","POP","TOTAL","OC3","F","Y_GE85","2011","2","","" +"HU","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","G","Y15-29","2011","7095","","" +"HU","M","POP","TOTAL","OC3","G","Y30-49","2011","23383","","" +"HU","M","POP","TOTAL","OC3","G","Y50-64","2011","5445","","" +"HU","M","POP","TOTAL","OC3","G","Y65-84","2011","346","","" +"HU","M","POP","TOTAL","OC3","G","Y_GE85","2011","8","","" +"HU","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","H","Y15-29","2011","2218","","" +"HU","M","POP","TOTAL","OC3","H","Y30-49","2011","6577","","" +"HU","M","POP","TOTAL","OC3","H","Y50-64","2011","2738","","" +"HU","M","POP","TOTAL","OC3","H","Y65-84","2011","88","","" +"HU","M","POP","TOTAL","OC3","H","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","I","Y15-29","2011","710","","" +"HU","M","POP","TOTAL","OC3","I","Y30-49","2011","2111","","" +"HU","M","POP","TOTAL","OC3","I","Y50-64","2011","532","","" +"HU","M","POP","TOTAL","OC3","I","Y65-84","2011","21","","" +"HU","M","POP","TOTAL","OC3","I","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","J","Y15-29","2011","4115","","" +"HU","M","POP","TOTAL","OC3","J","Y30-49","2011","8806","","" +"HU","M","POP","TOTAL","OC3","J","Y50-64","2011","1635","","" +"HU","M","POP","TOTAL","OC3","J","Y65-84","2011","102","","" +"HU","M","POP","TOTAL","OC3","J","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","K","Y15-29","2011","4182","","" +"HU","M","POP","TOTAL","OC3","K","Y30-49","2011","8896","","" +"HU","M","POP","TOTAL","OC3","K","Y50-64","2011","2955","","" +"HU","M","POP","TOTAL","OC3","K","Y65-84","2011","254","","" +"HU","M","POP","TOTAL","OC3","K","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","L","Y15-29","2011","809","","" +"HU","M","POP","TOTAL","OC3","L","Y30-49","2011","3506","","" +"HU","M","POP","TOTAL","OC3","L","Y50-64","2011","1674","","" +"HU","M","POP","TOTAL","OC3","L","Y65-84","2011","245","","" +"HU","M","POP","TOTAL","OC3","L","Y_GE85","2011","2","","" +"HU","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","M","Y15-29","2011","3381","","" +"HU","M","POP","TOTAL","OC3","M","Y30-49","2011","8325","","" +"HU","M","POP","TOTAL","OC3","M","Y50-64","2011","3555","","" +"HU","M","POP","TOTAL","OC3","M","Y65-84","2011","707","","" +"HU","M","POP","TOTAL","OC3","M","Y_GE85","2011","6","","" +"HU","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","N","Y15-29","2011","1839","","" +"HU","M","POP","TOTAL","OC3","N","Y30-49","2011","4347","","" +"HU","M","POP","TOTAL","OC3","N","Y50-64","2011","1464","","" +"HU","M","POP","TOTAL","OC3","N","Y65-84","2011","125","","" +"HU","M","POP","TOTAL","OC3","N","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","O","Y15-29","2011","5156","","" +"HU","M","POP","TOTAL","OC3","O","Y30-49","2011","16232","","" +"HU","M","POP","TOTAL","OC3","O","Y50-64","2011","5616","","" +"HU","M","POP","TOTAL","OC3","O","Y65-84","2011","285","","" +"HU","M","POP","TOTAL","OC3","O","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","P","Y15-29","2011","663","","" +"HU","M","POP","TOTAL","OC3","P","Y30-49","2011","1597","","" +"HU","M","POP","TOTAL","OC3","P","Y50-64","2011","870","","" +"HU","M","POP","TOTAL","OC3","P","Y65-84","2011","111","","" +"HU","M","POP","TOTAL","OC3","P","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","Q","Y15-29","2011","2369","","" +"HU","M","POP","TOTAL","OC3","Q","Y30-49","2011","7224","","" +"HU","M","POP","TOTAL","OC3","Q","Y50-64","2011","2470","","" +"HU","M","POP","TOTAL","OC3","Q","Y65-84","2011","127","","" +"HU","M","POP","TOTAL","OC3","Q","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","R","Y15-29","2011","2774","","" +"HU","M","POP","TOTAL","OC3","R","Y30-49","2011","5210","","" +"HU","M","POP","TOTAL","OC3","R","Y50-64","2011","1838","","" +"HU","M","POP","TOTAL","OC3","R","Y65-84","2011","245","","" +"HU","M","POP","TOTAL","OC3","R","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","S","Y15-29","2011","894","","" +"HU","M","POP","TOTAL","OC3","S","Y30-49","2011","2445","","" +"HU","M","POP","TOTAL","OC3","S","Y50-64","2011","936","","" +"HU","M","POP","TOTAL","OC3","S","Y65-84","2011","105","","" +"HU","M","POP","TOTAL","OC3","S","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","T","Y15-29","2011","22","","" +"HU","M","POP","TOTAL","OC3","T","Y30-49","2011","41","","" +"HU","M","POP","TOTAL","OC3","T","Y50-64","2011","18","","" +"HU","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","U","Y15-29","2011","89","","" +"HU","M","POP","TOTAL","OC3","U","Y30-49","2011","242","","" +"HU","M","POP","TOTAL","OC3","U","Y50-64","2011","64","","" +"HU","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","A","Y15-29","2011","188","","" +"HU","M","POP","TOTAL","OC4","A","Y30-49","2011","515","","" +"HU","M","POP","TOTAL","OC4","A","Y50-64","2011","435","","" +"HU","M","POP","TOTAL","OC4","A","Y65-84","2011","18","","" +"HU","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","B","Y15-29","2011","19","","" +"HU","M","POP","TOTAL","OC4","B","Y30-49","2011","55","","" +"HU","M","POP","TOTAL","OC4","B","Y50-64","2011","42","","" +"HU","M","POP","TOTAL","OC4","B","Y65-84","2011","1","","" +"HU","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","C","Y15-29","2011","4193","","" +"HU","M","POP","TOTAL","OC4","C","Y30-49","2011","9366","","" +"HU","M","POP","TOTAL","OC4","C","Y50-64","2011","3062","","" +"HU","M","POP","TOTAL","OC4","C","Y65-84","2011","75","","" +"HU","M","POP","TOTAL","OC4","C","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","D","Y15-29","2011","237","","" +"HU","M","POP","TOTAL","OC4","D","Y30-49","2011","593","","" +"HU","M","POP","TOTAL","OC4","D","Y50-64","2011","298","","" +"HU","M","POP","TOTAL","OC4","D","Y65-84","2011","5","","" +"HU","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","E","Y15-29","2011","190","","" +"HU","M","POP","TOTAL","OC4","E","Y30-49","2011","576","","" +"HU","M","POP","TOTAL","OC4","E","Y50-64","2011","421","","" +"HU","M","POP","TOTAL","OC4","E","Y65-84","2011","9","","" +"HU","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","F","Y15-29","2011","450","","" +"HU","M","POP","TOTAL","OC4","F","Y30-49","2011","1401","","" +"HU","M","POP","TOTAL","OC4","F","Y50-64","2011","626","","" +"HU","M","POP","TOTAL","OC4","F","Y65-84","2011","22","","" +"HU","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","G","Y15-29","2011","3966","","" +"HU","M","POP","TOTAL","OC4","G","Y30-49","2011","8226","","" +"HU","M","POP","TOTAL","OC4","G","Y50-64","2011","1974","","" +"HU","M","POP","TOTAL","OC4","G","Y65-84","2011","69","","" +"HU","M","POP","TOTAL","OC4","G","Y_GE85","2011","8","","" +"HU","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","H","Y15-29","2011","3772","","" +"HU","M","POP","TOTAL","OC4","H","Y30-49","2011","13883","","" +"HU","M","POP","TOTAL","OC4","H","Y50-64","2011","5741","","" +"HU","M","POP","TOTAL","OC4","H","Y65-84","2011","97","","" +"HU","M","POP","TOTAL","OC4","H","Y_GE85","2011","5","","" +"HU","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","I","Y15-29","2011","1373","","" +"HU","M","POP","TOTAL","OC4","I","Y30-49","2011","1712","","" +"HU","M","POP","TOTAL","OC4","I","Y50-64","2011","417","","" +"HU","M","POP","TOTAL","OC4","I","Y65-84","2011","28","","" +"HU","M","POP","TOTAL","OC4","I","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","J","Y15-29","2011","1505","","" +"HU","M","POP","TOTAL","OC4","J","Y30-49","2011","2004","","" +"HU","M","POP","TOTAL","OC4","J","Y50-64","2011","334","","" +"HU","M","POP","TOTAL","OC4","J","Y65-84","2011","27","","" +"HU","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","K","Y15-29","2011","699","","" +"HU","M","POP","TOTAL","OC4","K","Y30-49","2011","934","","" +"HU","M","POP","TOTAL","OC4","K","Y50-64","2011","197","","" +"HU","M","POP","TOTAL","OC4","K","Y65-84","2011","17","","" +"HU","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","L","Y15-29","2011","225","","" +"HU","M","POP","TOTAL","OC4","L","Y30-49","2011","445","","" +"HU","M","POP","TOTAL","OC4","L","Y50-64","2011","182","","" +"HU","M","POP","TOTAL","OC4","L","Y65-84","2011","14","","" +"HU","M","POP","TOTAL","OC4","L","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","M","Y15-29","2011","1111","","" +"HU","M","POP","TOTAL","OC4","M","Y30-49","2011","2004","","" +"HU","M","POP","TOTAL","OC4","M","Y50-64","2011","660","","" +"HU","M","POP","TOTAL","OC4","M","Y65-84","2011","79","","" +"HU","M","POP","TOTAL","OC4","M","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","N","Y15-29","2011","1693","","" +"HU","M","POP","TOTAL","OC4","N","Y30-49","2011","2663","","" +"HU","M","POP","TOTAL","OC4","N","Y50-64","2011","788","","" +"HU","M","POP","TOTAL","OC4","N","Y65-84","2011","61","","" +"HU","M","POP","TOTAL","OC4","N","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","O","Y15-29","2011","1809","","" +"HU","M","POP","TOTAL","OC4","O","Y30-49","2011","3041","","" +"HU","M","POP","TOTAL","OC4","O","Y50-64","2011","1327","","" +"HU","M","POP","TOTAL","OC4","O","Y65-84","2011","103","","" +"HU","M","POP","TOTAL","OC4","O","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","P","Y15-29","2011","330","","" +"HU","M","POP","TOTAL","OC4","P","Y30-49","2011","497","","" +"HU","M","POP","TOTAL","OC4","P","Y50-64","2011","236","","" +"HU","M","POP","TOTAL","OC4","P","Y65-84","2011","17","","" +"HU","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","Q","Y15-29","2011","309","","" +"HU","M","POP","TOTAL","OC4","Q","Y30-49","2011","627","","" +"HU","M","POP","TOTAL","OC4","Q","Y50-64","2011","417","","" +"HU","M","POP","TOTAL","OC4","Q","Y65-84","2011","16","","" +"HU","M","POP","TOTAL","OC4","Q","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","R","Y15-29","2011","545","","" +"HU","M","POP","TOTAL","OC4","R","Y30-49","2011","1014","","" +"HU","M","POP","TOTAL","OC4","R","Y50-64","2011","281","","" +"HU","M","POP","TOTAL","OC4","R","Y65-84","2011","34","","" +"HU","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","S","Y15-29","2011","279","","" +"HU","M","POP","TOTAL","OC4","S","Y30-49","2011","536","","" +"HU","M","POP","TOTAL","OC4","S","Y50-64","2011","214","","" +"HU","M","POP","TOTAL","OC4","S","Y65-84","2011","22","","" +"HU","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","T","Y15-29","2011","9","","" +"HU","M","POP","TOTAL","OC4","T","Y30-49","2011","22","","" +"HU","M","POP","TOTAL","OC4","T","Y50-64","2011","3","","" +"HU","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","U","Y15-29","2011","44","","" +"HU","M","POP","TOTAL","OC4","U","Y30-49","2011","81","","" +"HU","M","POP","TOTAL","OC4","U","Y50-64","2011","24","","" +"HU","M","POP","TOTAL","OC4","U","Y65-84","2011","2","","" +"HU","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","A","Y15-29","2011","355","","" +"HU","M","POP","TOTAL","OC5","A","Y30-49","2011","1485","","" +"HU","M","POP","TOTAL","OC5","A","Y50-64","2011","1731","","" +"HU","M","POP","TOTAL","OC5","A","Y65-84","2011","110","","" +"HU","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","B","Y15-29","2011","14","","" +"HU","M","POP","TOTAL","OC5","B","Y30-49","2011","55","","" +"HU","M","POP","TOTAL","OC5","B","Y50-64","2011","73","","" +"HU","M","POP","TOTAL","OC5","B","Y65-84","2011","9","","" +"HU","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","C","Y15-29","2011","1475","","" +"HU","M","POP","TOTAL","OC5","C","Y30-49","2011","4228","","" +"HU","M","POP","TOTAL","OC5","C","Y50-64","2011","2777","","" +"HU","M","POP","TOTAL","OC5","C","Y65-84","2011","224","","" +"HU","M","POP","TOTAL","OC5","C","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","D","Y15-29","2011","63","","" +"HU","M","POP","TOTAL","OC5","D","Y30-49","2011","222","","" +"HU","M","POP","TOTAL","OC5","D","Y50-64","2011","150","","" +"HU","M","POP","TOTAL","OC5","D","Y65-84","2011","8","","" +"HU","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","E","Y15-29","2011","221","","" +"HU","M","POP","TOTAL","OC5","E","Y30-49","2011","839","","" +"HU","M","POP","TOTAL","OC5","E","Y50-64","2011","566","","" +"HU","M","POP","TOTAL","OC5","E","Y65-84","2011","33","","" +"HU","M","POP","TOTAL","OC5","E","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","F","Y15-29","2011","281","","" +"HU","M","POP","TOTAL","OC5","F","Y30-49","2011","984","","" +"HU","M","POP","TOTAL","OC5","F","Y50-64","2011","638","","" +"HU","M","POP","TOTAL","OC5","F","Y65-84","2011","57","","" +"HU","M","POP","TOTAL","OC5","F","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","G","Y15-29","2011","20712","","" +"HU","M","POP","TOTAL","OC5","G","Y30-49","2011","57800","","" +"HU","M","POP","TOTAL","OC5","G","Y50-64","2011","19804","","" +"HU","M","POP","TOTAL","OC5","G","Y65-84","2011","1713","","" +"HU","M","POP","TOTAL","OC5","G","Y_GE85","2011","32","","" +"HU","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","H","Y15-29","2011","1253","","" +"HU","M","POP","TOTAL","OC5","H","Y30-49","2011","3843","","" +"HU","M","POP","TOTAL","OC5","H","Y50-64","2011","1552","","" +"HU","M","POP","TOTAL","OC5","H","Y65-84","2011","58","","" +"HU","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","I","Y15-29","2011","19618","","" +"HU","M","POP","TOTAL","OC5","I","Y30-49","2011","28641","","" +"HU","M","POP","TOTAL","OC5","I","Y50-64","2011","7326","","" +"HU","M","POP","TOTAL","OC5","I","Y65-84","2011","492","","" +"HU","M","POP","TOTAL","OC5","I","Y_GE85","2011","7","","" +"HU","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","J","Y15-29","2011","656","","" +"HU","M","POP","TOTAL","OC5","J","Y30-49","2011","970","","" +"HU","M","POP","TOTAL","OC5","J","Y50-64","2011","290","","" +"HU","M","POP","TOTAL","OC5","J","Y65-84","2011","32","","" +"HU","M","POP","TOTAL","OC5","J","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","K","Y15-29","2011","371","","" +"HU","M","POP","TOTAL","OC5","K","Y30-49","2011","734","","" +"HU","M","POP","TOTAL","OC5","K","Y50-64","2011","387","","" +"HU","M","POP","TOTAL","OC5","K","Y65-84","2011","34","","" +"HU","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","L","Y15-29","2011","308","","" +"HU","M","POP","TOTAL","OC5","L","Y30-49","2011","1285","","" +"HU","M","POP","TOTAL","OC5","L","Y50-64","2011","1173","","" +"HU","M","POP","TOTAL","OC5","L","Y65-84","2011","258","","" +"HU","M","POP","TOTAL","OC5","L","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","M","Y15-29","2011","519","","" +"HU","M","POP","TOTAL","OC5","M","Y30-49","2011","1211","","" +"HU","M","POP","TOTAL","OC5","M","Y50-64","2011","627","","" +"HU","M","POP","TOTAL","OC5","M","Y65-84","2011","74","","" +"HU","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","N","Y15-29","2011","7884","","" +"HU","M","POP","TOTAL","OC5","N","Y30-49","2011","24386","","" +"HU","M","POP","TOTAL","OC5","N","Y50-64","2011","15194","","" +"HU","M","POP","TOTAL","OC5","N","Y65-84","2011","860","","" +"HU","M","POP","TOTAL","OC5","N","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","O","Y15-29","2011","13733","","" +"HU","M","POP","TOTAL","OC5","O","Y30-49","2011","29119","","" +"HU","M","POP","TOTAL","OC5","O","Y50-64","2011","4902","","" +"HU","M","POP","TOTAL","OC5","O","Y65-84","2011","211","","" +"HU","M","POP","TOTAL","OC5","O","Y_GE85","2011","5","","" +"HU","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","P","Y15-29","2011","1009","","" +"HU","M","POP","TOTAL","OC5","P","Y30-49","2011","3240","","" +"HU","M","POP","TOTAL","OC5","P","Y50-64","2011","3503","","" +"HU","M","POP","TOTAL","OC5","P","Y65-84","2011","358","","" +"HU","M","POP","TOTAL","OC5","P","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","Q","Y15-29","2011","1741","","" +"HU","M","POP","TOTAL","OC5","Q","Y30-49","2011","5451","","" +"HU","M","POP","TOTAL","OC5","Q","Y50-64","2011","2346","","" +"HU","M","POP","TOTAL","OC5","Q","Y65-84","2011","113","","" +"HU","M","POP","TOTAL","OC5","Q","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","R","Y15-29","2011","964","","" +"HU","M","POP","TOTAL","OC5","R","Y30-49","2011","2227","","" +"HU","M","POP","TOTAL","OC5","R","Y50-64","2011","1331","","" +"HU","M","POP","TOTAL","OC5","R","Y65-84","2011","190","","" +"HU","M","POP","TOTAL","OC5","R","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","S","Y15-29","2011","1362","","" +"HU","M","POP","TOTAL","OC5","S","Y30-49","2011","3078","","" +"HU","M","POP","TOTAL","OC5","S","Y50-64","2011","1473","","" +"HU","M","POP","TOTAL","OC5","S","Y65-84","2011","255","","" +"HU","M","POP","TOTAL","OC5","S","Y_GE85","2011","6","","" +"HU","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","T","Y15-29","2011","114","","" +"HU","M","POP","TOTAL","OC5","T","Y30-49","2011","422","","" +"HU","M","POP","TOTAL","OC5","T","Y50-64","2011","292","","" +"HU","M","POP","TOTAL","OC5","T","Y65-84","2011","53","","" +"HU","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","U","Y15-29","2011","91","","" +"HU","M","POP","TOTAL","OC5","U","Y30-49","2011","205","","" +"HU","M","POP","TOTAL","OC5","U","Y50-64","2011","26","","" +"HU","M","POP","TOTAL","OC5","U","Y65-84","2011","1","","" +"HU","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","A","Y15-29","2011","9801","","" +"HU","M","POP","TOTAL","OC6","A","Y30-49","2011","36075","","" +"HU","M","POP","TOTAL","OC6","A","Y50-64","2011","22573","","" +"HU","M","POP","TOTAL","OC6","A","Y65-84","2011","2176","","" +"HU","M","POP","TOTAL","OC6","A","Y_GE85","2011","42","","" +"HU","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","B","Y15-29","2011","1","","" +"HU","M","POP","TOTAL","OC6","B","Y30-49","2011","8","","" +"HU","M","POP","TOTAL","OC6","B","Y50-64","2011","1","","" +"HU","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","C","Y15-29","2011","421","","" +"HU","M","POP","TOTAL","OC6","C","Y30-49","2011","1272","","" +"HU","M","POP","TOTAL","OC6","C","Y50-64","2011","813","","" +"HU","M","POP","TOTAL","OC6","C","Y65-84","2011","53","","" +"HU","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","D","Y15-29","2011","9","","" +"HU","M","POP","TOTAL","OC6","D","Y30-49","2011","34","","" +"HU","M","POP","TOTAL","OC6","D","Y50-64","2011","17","","" +"HU","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","E","Y15-29","2011","140","","" +"HU","M","POP","TOTAL","OC6","E","Y30-49","2011","340","","" +"HU","M","POP","TOTAL","OC6","E","Y50-64","2011","174","","" +"HU","M","POP","TOTAL","OC6","E","Y65-84","2011","1","","" +"HU","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","F","Y15-29","2011","103","","" +"HU","M","POP","TOTAL","OC6","F","Y30-49","2011","258","","" +"HU","M","POP","TOTAL","OC6","F","Y50-64","2011","119","","" +"HU","M","POP","TOTAL","OC6","F","Y65-84","2011","2","","" +"HU","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","G","Y15-29","2011","221","","" +"HU","M","POP","TOTAL","OC6","G","Y30-49","2011","675","","" +"HU","M","POP","TOTAL","OC6","G","Y50-64","2011","335","","" +"HU","M","POP","TOTAL","OC6","G","Y65-84","2011","35","","" +"HU","M","POP","TOTAL","OC6","G","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","H","Y15-29","2011","42","","" +"HU","M","POP","TOTAL","OC6","H","Y30-49","2011","126","","" +"HU","M","POP","TOTAL","OC6","H","Y50-64","2011","59","","" +"HU","M","POP","TOTAL","OC6","H","Y65-84","2011","3","","" +"HU","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","I","Y15-29","2011","97","","" +"HU","M","POP","TOTAL","OC6","I","Y30-49","2011","267","","" +"HU","M","POP","TOTAL","OC6","I","Y50-64","2011","122","","" +"HU","M","POP","TOTAL","OC6","I","Y65-84","2011","7","","" +"HU","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","J","Y15-29","2011","40","","" +"HU","M","POP","TOTAL","OC6","J","Y30-49","2011","141","","" +"HU","M","POP","TOTAL","OC6","J","Y50-64","2011","74","","" +"HU","M","POP","TOTAL","OC6","J","Y65-84","2011","7","","" +"HU","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","K","Y15-29","2011","40","","" +"HU","M","POP","TOTAL","OC6","K","Y30-49","2011","91","","" +"HU","M","POP","TOTAL","OC6","K","Y50-64","2011","78","","" +"HU","M","POP","TOTAL","OC6","K","Y65-84","2011","8","","" +"HU","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","L","Y15-29","2011","63","","" +"HU","M","POP","TOTAL","OC6","L","Y30-49","2011","131","","" +"HU","M","POP","TOTAL","OC6","L","Y50-64","2011","85","","" +"HU","M","POP","TOTAL","OC6","L","Y65-84","2011","12","","" +"HU","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","M","Y15-29","2011","105","","" +"HU","M","POP","TOTAL","OC6","M","Y30-49","2011","327","","" +"HU","M","POP","TOTAL","OC6","M","Y50-64","2011","171","","" +"HU","M","POP","TOTAL","OC6","M","Y65-84","2011","15","","" +"HU","M","POP","TOTAL","OC6","M","Y_GE85","2011","2","","" +"HU","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","N","Y15-29","2011","797","","" +"HU","M","POP","TOTAL","OC6","N","Y30-49","2011","1893","","" +"HU","M","POP","TOTAL","OC6","N","Y50-64","2011","666","","" +"HU","M","POP","TOTAL","OC6","N","Y65-84","2011","33","","" +"HU","M","POP","TOTAL","OC6","N","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","O","Y15-29","2011","1391","","" +"HU","M","POP","TOTAL","OC6","O","Y30-49","2011","3050","","" +"HU","M","POP","TOTAL","OC6","O","Y50-64","2011","1502","","" +"HU","M","POP","TOTAL","OC6","O","Y65-84","2011","22","","" +"HU","M","POP","TOTAL","OC6","O","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","P","Y15-29","2011","103","","" +"HU","M","POP","TOTAL","OC6","P","Y30-49","2011","338","","" +"HU","M","POP","TOTAL","OC6","P","Y50-64","2011","290","","" +"HU","M","POP","TOTAL","OC6","P","Y65-84","2011","31","","" +"HU","M","POP","TOTAL","OC6","P","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","Q","Y15-29","2011","119","","" +"HU","M","POP","TOTAL","OC6","Q","Y30-49","2011","366","","" +"HU","M","POP","TOTAL","OC6","Q","Y50-64","2011","284","","" +"HU","M","POP","TOTAL","OC6","Q","Y65-84","2011","10","","" +"HU","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","R","Y15-29","2011","369","","" +"HU","M","POP","TOTAL","OC6","R","Y30-49","2011","807","","" +"HU","M","POP","TOTAL","OC6","R","Y50-64","2011","371","","" +"HU","M","POP","TOTAL","OC6","R","Y65-84","2011","26","","" +"HU","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","S","Y15-29","2011","77","","" +"HU","M","POP","TOTAL","OC6","S","Y30-49","2011","195","","" +"HU","M","POP","TOTAL","OC6","S","Y50-64","2011","100","","" +"HU","M","POP","TOTAL","OC6","S","Y65-84","2011","9","","" +"HU","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","T","Y15-29","2011","33","","" +"HU","M","POP","TOTAL","OC6","T","Y30-49","2011","92","","" +"HU","M","POP","TOTAL","OC6","T","Y50-64","2011","46","","" +"HU","M","POP","TOTAL","OC6","T","Y65-84","2011","7","","" +"HU","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","U","Y15-29","2011","11","","" +"HU","M","POP","TOTAL","OC6","U","Y30-49","2011","23","","" +"HU","M","POP","TOTAL","OC6","U","Y50-64","2011","14","","" +"HU","M","POP","TOTAL","OC6","U","Y65-84","2011","1","","" +"HU","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","A","Y15-29","2011","1608","","" +"HU","M","POP","TOTAL","OC7","A","Y30-49","2011","6628","","" +"HU","M","POP","TOTAL","OC7","A","Y50-64","2011","5286","","" +"HU","M","POP","TOTAL","OC7","A","Y65-84","2011","97","","" +"HU","M","POP","TOTAL","OC7","A","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","B","Y15-29","2011","78","","" +"HU","M","POP","TOTAL","OC7","B","Y30-49","2011","577","","" +"HU","M","POP","TOTAL","OC7","B","Y50-64","2011","466","","" +"HU","M","POP","TOTAL","OC7","B","Y65-84","2011","12","","" +"HU","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","C","Y15-29","2011","41193","","" +"HU","M","POP","TOTAL","OC7","C","Y30-49","2011","116754","","" +"HU","M","POP","TOTAL","OC7","C","Y50-64","2011","53895","","" +"HU","M","POP","TOTAL","OC7","C","Y65-84","2011","1744","","" +"HU","M","POP","TOTAL","OC7","C","Y_GE85","2011","43","","" +"HU","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","D","Y15-29","2011","718","","" +"HU","M","POP","TOTAL","OC7","D","Y30-49","2011","4812","","" +"HU","M","POP","TOTAL","OC7","D","Y50-64","2011","2426","","" +"HU","M","POP","TOTAL","OC7","D","Y65-84","2011","19","","" +"HU","M","POP","TOTAL","OC7","D","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","E","Y15-29","2011","811","","" +"HU","M","POP","TOTAL","OC7","E","Y30-49","2011","4919","","" +"HU","M","POP","TOTAL","OC7","E","Y50-64","2011","3485","","" +"HU","M","POP","TOTAL","OC7","E","Y65-84","2011","43","","" +"HU","M","POP","TOTAL","OC7","E","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","F","Y15-29","2011","29912","","" +"HU","M","POP","TOTAL","OC7","F","Y30-49","2011","104678","","" +"HU","M","POP","TOTAL","OC7","F","Y50-64","2011","40508","","" +"HU","M","POP","TOTAL","OC7","F","Y65-84","2011","1259","","" +"HU","M","POP","TOTAL","OC7","F","Y_GE85","2011","31","","" +"HU","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","G","Y15-29","2011","9720","","" +"HU","M","POP","TOTAL","OC7","G","Y30-49","2011","34396","","" +"HU","M","POP","TOTAL","OC7","G","Y50-64","2011","12004","","" +"HU","M","POP","TOTAL","OC7","G","Y65-84","2011","526","","" +"HU","M","POP","TOTAL","OC7","G","Y_GE85","2011","9","","" +"HU","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","H","Y15-29","2011","1783","","" +"HU","M","POP","TOTAL","OC7","H","Y30-49","2011","9634","","" +"HU","M","POP","TOTAL","OC7","H","Y50-64","2011","5879","","" +"HU","M","POP","TOTAL","OC7","H","Y65-84","2011","42","","" +"HU","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","I","Y15-29","2011","877","","" +"HU","M","POP","TOTAL","OC7","I","Y30-49","2011","2972","","" +"HU","M","POP","TOTAL","OC7","I","Y50-64","2011","1410","","" +"HU","M","POP","TOTAL","OC7","I","Y65-84","2011","65","","" +"HU","M","POP","TOTAL","OC7","I","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","J","Y15-29","2011","1192","","" +"HU","M","POP","TOTAL","OC7","J","Y30-49","2011","4468","","" +"HU","M","POP","TOTAL","OC7","J","Y50-64","2011","1469","","" +"HU","M","POP","TOTAL","OC7","J","Y65-84","2011","65","","" +"HU","M","POP","TOTAL","OC7","J","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","K","Y15-29","2011","180","","" +"HU","M","POP","TOTAL","OC7","K","Y30-49","2011","795","","" +"HU","M","POP","TOTAL","OC7","K","Y50-64","2011","377","","" +"HU","M","POP","TOTAL","OC7","K","Y65-84","2011","43","","" +"HU","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","L","Y15-29","2011","468","","" +"HU","M","POP","TOTAL","OC7","L","Y30-49","2011","2191","","" +"HU","M","POP","TOTAL","OC7","L","Y50-64","2011","1322","","" +"HU","M","POP","TOTAL","OC7","L","Y65-84","2011","66","","" +"HU","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","M","Y15-29","2011","1082","","" +"HU","M","POP","TOTAL","OC7","M","Y30-49","2011","3787","","" +"HU","M","POP","TOTAL","OC7","M","Y50-64","2011","1794","","" +"HU","M","POP","TOTAL","OC7","M","Y65-84","2011","151","","" +"HU","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","N","Y15-29","2011","1432","","" +"HU","M","POP","TOTAL","OC7","N","Y30-49","2011","5597","","" +"HU","M","POP","TOTAL","OC7","N","Y50-64","2011","2688","","" +"HU","M","POP","TOTAL","OC7","N","Y65-84","2011","110","","" +"HU","M","POP","TOTAL","OC7","N","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","O","Y15-29","2011","2097","","" +"HU","M","POP","TOTAL","OC7","O","Y30-49","2011","7827","","" +"HU","M","POP","TOTAL","OC7","O","Y50-64","2011","5574","","" +"HU","M","POP","TOTAL","OC7","O","Y65-84","2011","76","","" +"HU","M","POP","TOTAL","OC7","O","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","P","Y15-29","2011","549","","" +"HU","M","POP","TOTAL","OC7","P","Y30-49","2011","3127","","" +"HU","M","POP","TOTAL","OC7","P","Y50-64","2011","3629","","" +"HU","M","POP","TOTAL","OC7","P","Y65-84","2011","160","","" +"HU","M","POP","TOTAL","OC7","P","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","Q","Y15-29","2011","433","","" +"HU","M","POP","TOTAL","OC7","Q","Y30-49","2011","2552","","" +"HU","M","POP","TOTAL","OC7","Q","Y50-64","2011","2376","","" +"HU","M","POP","TOTAL","OC7","Q","Y65-84","2011","78","","" +"HU","M","POP","TOTAL","OC7","Q","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","R","Y15-29","2011","410","","" +"HU","M","POP","TOTAL","OC7","R","Y30-49","2011","1809","","" +"HU","M","POP","TOTAL","OC7","R","Y50-64","2011","1092","","" +"HU","M","POP","TOTAL","OC7","R","Y65-84","2011","58","","" +"HU","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","S","Y15-29","2011","1210","","" +"HU","M","POP","TOTAL","OC7","S","Y30-49","2011","4563","","" +"HU","M","POP","TOTAL","OC7","S","Y50-64","2011","2739","","" +"HU","M","POP","TOTAL","OC7","S","Y65-84","2011","335","","" +"HU","M","POP","TOTAL","OC7","S","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","T","Y15-29","2011","255","","" +"HU","M","POP","TOTAL","OC7","T","Y30-49","2011","838","","" +"HU","M","POP","TOTAL","OC7","T","Y50-64","2011","235","","" +"HU","M","POP","TOTAL","OC7","T","Y65-84","2011","1","","" +"HU","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","U","Y15-29","2011","368","","" +"HU","M","POP","TOTAL","OC7","U","Y30-49","2011","1438","","" +"HU","M","POP","TOTAL","OC7","U","Y50-64","2011","375","","" +"HU","M","POP","TOTAL","OC7","U","Y65-84","2011","6","","" +"HU","M","POP","TOTAL","OC7","U","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","A","Y15-29","2011","3527","","" +"HU","M","POP","TOTAL","OC8","A","Y30-49","2011","12477","","" +"HU","M","POP","TOTAL","OC8","A","Y50-64","2011","7742","","" +"HU","M","POP","TOTAL","OC8","A","Y65-84","2011","173","","" +"HU","M","POP","TOTAL","OC8","A","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","B","Y15-29","2011","263","","" +"HU","M","POP","TOTAL","OC8","B","Y30-49","2011","1592","","" +"HU","M","POP","TOTAL","OC8","B","Y50-64","2011","963","","" +"HU","M","POP","TOTAL","OC8","B","Y65-84","2011","10","","" +"HU","M","POP","TOTAL","OC8","B","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","C","Y15-29","2011","40805","","" +"HU","M","POP","TOTAL","OC8","C","Y30-49","2011","77019","","" +"HU","M","POP","TOTAL","OC8","C","Y50-64","2011","29548","","" +"HU","M","POP","TOTAL","OC8","C","Y65-84","2011","521","","" +"HU","M","POP","TOTAL","OC8","C","Y_GE85","2011","17","","" +"HU","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","D","Y15-29","2011","231","","" +"HU","M","POP","TOTAL","OC8","D","Y30-49","2011","2096","","" +"HU","M","POP","TOTAL","OC8","D","Y50-64","2011","1311","","" +"HU","M","POP","TOTAL","OC8","D","Y65-84","2011","23","","" +"HU","M","POP","TOTAL","OC8","D","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","E","Y15-29","2011","1053","","" +"HU","M","POP","TOTAL","OC8","E","Y30-49","2011","6566","","" +"HU","M","POP","TOTAL","OC8","E","Y50-64","2011","4678","","" +"HU","M","POP","TOTAL","OC8","E","Y65-84","2011","40","","" +"HU","M","POP","TOTAL","OC8","E","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","F","Y15-29","2011","2057","","" +"HU","M","POP","TOTAL","OC8","F","Y30-49","2011","9913","","" +"HU","M","POP","TOTAL","OC8","F","Y50-64","2011","5242","","" +"HU","M","POP","TOTAL","OC8","F","Y65-84","2011","80","","" +"HU","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","G","Y15-29","2011","4375","","" +"HU","M","POP","TOTAL","OC8","G","Y30-49","2011","14905","","" +"HU","M","POP","TOTAL","OC8","G","Y50-64","2011","4987","","" +"HU","M","POP","TOTAL","OC8","G","Y65-84","2011","126","","" +"HU","M","POP","TOTAL","OC8","G","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","H","Y15-29","2011","11026","","" +"HU","M","POP","TOTAL","OC8","H","Y30-49","2011","70418","","" +"HU","M","POP","TOTAL","OC8","H","Y50-64","2011","33880","","" +"HU","M","POP","TOTAL","OC8","H","Y65-84","2011","851","","" +"HU","M","POP","TOTAL","OC8","H","Y_GE85","2011","10","","" +"HU","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","I","Y15-29","2011","276","","" +"HU","M","POP","TOTAL","OC8","I","Y30-49","2011","919","","" +"HU","M","POP","TOTAL","OC8","I","Y50-64","2011","433","","" +"HU","M","POP","TOTAL","OC8","I","Y65-84","2011","26","","" +"HU","M","POP","TOTAL","OC8","I","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","J","Y15-29","2011","234","","" +"HU","M","POP","TOTAL","OC8","J","Y30-49","2011","624","","" +"HU","M","POP","TOTAL","OC8","J","Y50-64","2011","291","","" +"HU","M","POP","TOTAL","OC8","J","Y65-84","2011","16","","" +"HU","M","POP","TOTAL","OC8","J","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","K","Y15-29","2011","90","","" +"HU","M","POP","TOTAL","OC8","K","Y30-49","2011","384","","" +"HU","M","POP","TOTAL","OC8","K","Y50-64","2011","197","","" +"HU","M","POP","TOTAL","OC8","K","Y65-84","2011","5","","" +"HU","M","POP","TOTAL","OC8","K","Y_GE85","2011","2","","" +"HU","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","L","Y15-29","2011","146","","" +"HU","M","POP","TOTAL","OC8","L","Y30-49","2011","616","","" +"HU","M","POP","TOTAL","OC8","L","Y50-64","2011","442","","" +"HU","M","POP","TOTAL","OC8","L","Y65-84","2011","24","","" +"HU","M","POP","TOTAL","OC8","L","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","M","Y15-29","2011","374","","" +"HU","M","POP","TOTAL","OC8","M","Y30-49","2011","1325","","" +"HU","M","POP","TOTAL","OC8","M","Y50-64","2011","677","","" +"HU","M","POP","TOTAL","OC8","M","Y65-84","2011","29","","" +"HU","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","N","Y15-29","2011","1226","","" +"HU","M","POP","TOTAL","OC8","N","Y30-49","2011","2870","","" +"HU","M","POP","TOTAL","OC8","N","Y50-64","2011","1550","","" +"HU","M","POP","TOTAL","OC8","N","Y65-84","2011","39","","" +"HU","M","POP","TOTAL","OC8","N","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","O","Y15-29","2011","974","","" +"HU","M","POP","TOTAL","OC8","O","Y30-49","2011","4540","","" +"HU","M","POP","TOTAL","OC8","O","Y50-64","2011","2968","","" +"HU","M","POP","TOTAL","OC8","O","Y65-84","2011","55","","" +"HU","M","POP","TOTAL","OC8","O","Y_GE85","2011","2","","" +"HU","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","P","Y15-29","2011","81","","" +"HU","M","POP","TOTAL","OC8","P","Y30-49","2011","588","","" +"HU","M","POP","TOTAL","OC8","P","Y50-64","2011","759","","" +"HU","M","POP","TOTAL","OC8","P","Y65-84","2011","29","","" +"HU","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","Q","Y15-29","2011","544","","" +"HU","M","POP","TOTAL","OC8","Q","Y30-49","2011","3513","","" +"HU","M","POP","TOTAL","OC8","Q","Y50-64","2011","2419","","" +"HU","M","POP","TOTAL","OC8","Q","Y65-84","2011","68","","" +"HU","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","R","Y15-29","2011","92","","" +"HU","M","POP","TOTAL","OC8","R","Y30-49","2011","531","","" +"HU","M","POP","TOTAL","OC8","R","Y50-64","2011","384","","" +"HU","M","POP","TOTAL","OC8","R","Y65-84","2011","21","","" +"HU","M","POP","TOTAL","OC8","R","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","S","Y15-29","2011","302","","" +"HU","M","POP","TOTAL","OC8","S","Y30-49","2011","1081","","" +"HU","M","POP","TOTAL","OC8","S","Y50-64","2011","604","","" +"HU","M","POP","TOTAL","OC8","S","Y65-84","2011","33","","" +"HU","M","POP","TOTAL","OC8","S","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","T","Y15-29","2011","28","","" +"HU","M","POP","TOTAL","OC8","T","Y30-49","2011","90","","" +"HU","M","POP","TOTAL","OC8","T","Y50-64","2011","34","","" +"HU","M","POP","TOTAL","OC8","T","Y65-84","2011","2","","" +"HU","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","U","Y15-29","2011","60","","" +"HU","M","POP","TOTAL","OC8","U","Y30-49","2011","214","","" +"HU","M","POP","TOTAL","OC8","U","Y50-64","2011","78","","" +"HU","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","A","Y15-29","2011","4370","","" +"HU","M","POP","TOTAL","OC9","A","Y30-49","2011","9227","","" +"HU","M","POP","TOTAL","OC9","A","Y50-64","2011","4511","","" +"HU","M","POP","TOTAL","OC9","A","Y65-84","2011","162","","" +"HU","M","POP","TOTAL","OC9","A","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","B","Y15-29","2011","50","","" +"HU","M","POP","TOTAL","OC9","B","Y30-49","2011","120","","" +"HU","M","POP","TOTAL","OC9","B","Y50-64","2011","78","","" +"HU","M","POP","TOTAL","OC9","B","Y65-84","2011","2","","" +"HU","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","C","Y15-29","2011","8833","","" +"HU","M","POP","TOTAL","OC9","C","Y30-49","2011","17171","","" +"HU","M","POP","TOTAL","OC9","C","Y50-64","2011","6520","","" +"HU","M","POP","TOTAL","OC9","C","Y65-84","2011","145","","" +"HU","M","POP","TOTAL","OC9","C","Y_GE85","2011","5","","" +"HU","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","D","Y15-29","2011","143","","" +"HU","M","POP","TOTAL","OC9","D","Y30-49","2011","482","","" +"HU","M","POP","TOTAL","OC9","D","Y50-64","2011","269","","" +"HU","M","POP","TOTAL","OC9","D","Y65-84","2011","3","","" +"HU","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","E","Y15-29","2011","2559","","" +"HU","M","POP","TOTAL","OC9","E","Y30-49","2011","6346","","" +"HU","M","POP","TOTAL","OC9","E","Y50-64","2011","2887","","" +"HU","M","POP","TOTAL","OC9","E","Y65-84","2011","27","","" +"HU","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","F","Y15-29","2011","10450","","" +"HU","M","POP","TOTAL","OC9","F","Y30-49","2011","21498","","" +"HU","M","POP","TOTAL","OC9","F","Y50-64","2011","7047","","" +"HU","M","POP","TOTAL","OC9","F","Y65-84","2011","98","","" +"HU","M","POP","TOTAL","OC9","F","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","G","Y15-29","2011","8338","","" +"HU","M","POP","TOTAL","OC9","G","Y30-49","2011","12915","","" +"HU","M","POP","TOTAL","OC9","G","Y50-64","2011","3872","","" +"HU","M","POP","TOTAL","OC9","G","Y65-84","2011","146","","" +"HU","M","POP","TOTAL","OC9","G","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","H","Y15-29","2011","3285","","" +"HU","M","POP","TOTAL","OC9","H","Y30-49","2011","8204","","" +"HU","M","POP","TOTAL","OC9","H","Y50-64","2011","3044","","" +"HU","M","POP","TOTAL","OC9","H","Y65-84","2011","66","","" +"HU","M","POP","TOTAL","OC9","H","Y_GE85","2011","6","","" +"HU","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","I","Y15-29","2011","4266","","" +"HU","M","POP","TOTAL","OC9","I","Y30-49","2011","4241","","" +"HU","M","POP","TOTAL","OC9","I","Y50-64","2011","1002","","" +"HU","M","POP","TOTAL","OC9","I","Y65-84","2011","48","","" +"HU","M","POP","TOTAL","OC9","I","Y_GE85","2011","4","","" +"HU","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","J","Y15-29","2011","781","","" +"HU","M","POP","TOTAL","OC9","J","Y30-49","2011","1286","","" +"HU","M","POP","TOTAL","OC9","J","Y50-64","2011","538","","" +"HU","M","POP","TOTAL","OC9","J","Y65-84","2011","39","","" +"HU","M","POP","TOTAL","OC9","J","Y_GE85","2011","3","","" +"HU","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","K","Y15-29","2011","428","","" +"HU","M","POP","TOTAL","OC9","K","Y30-49","2011","687","","" +"HU","M","POP","TOTAL","OC9","K","Y50-64","2011","278","","" +"HU","M","POP","TOTAL","OC9","K","Y65-84","2011","12","","" +"HU","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","L","Y15-29","2011","584","","" +"HU","M","POP","TOTAL","OC9","L","Y30-49","2011","1148","","" +"HU","M","POP","TOTAL","OC9","L","Y50-64","2011","553","","" +"HU","M","POP","TOTAL","OC9","L","Y65-84","2011","45","","" +"HU","M","POP","TOTAL","OC9","L","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","M","Y15-29","2011","1470","","" +"HU","M","POP","TOTAL","OC9","M","Y30-49","2011","2422","","" +"HU","M","POP","TOTAL","OC9","M","Y50-64","2011","931","","" +"HU","M","POP","TOTAL","OC9","M","Y65-84","2011","72","","" +"HU","M","POP","TOTAL","OC9","M","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","N","Y15-29","2011","3217","","" +"HU","M","POP","TOTAL","OC9","N","Y30-49","2011","5754","","" +"HU","M","POP","TOTAL","OC9","N","Y50-64","2011","2944","","" +"HU","M","POP","TOTAL","OC9","N","Y65-84","2011","119","","" +"HU","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","O","Y15-29","2011","16020","","" +"HU","M","POP","TOTAL","OC9","O","Y30-49","2011","32612","","" +"HU","M","POP","TOTAL","OC9","O","Y50-64","2011","13208","","" +"HU","M","POP","TOTAL","OC9","O","Y65-84","2011","85","","" +"HU","M","POP","TOTAL","OC9","O","Y_GE85","2011","18","","" +"HU","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","P","Y15-29","2011","503","","" +"HU","M","POP","TOTAL","OC9","P","Y30-49","2011","943","","" +"HU","M","POP","TOTAL","OC9","P","Y50-64","2011","715","","" +"HU","M","POP","TOTAL","OC9","P","Y65-84","2011","64","","" +"HU","M","POP","TOTAL","OC9","P","Y_GE85","2011","1","","" +"HU","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","Q","Y15-29","2011","627","","" +"HU","M","POP","TOTAL","OC9","Q","Y30-49","2011","1735","","" +"HU","M","POP","TOTAL","OC9","Q","Y50-64","2011","1047","","" +"HU","M","POP","TOTAL","OC9","Q","Y65-84","2011","42","","" +"HU","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","R","Y15-29","2011","569","","" +"HU","M","POP","TOTAL","OC9","R","Y30-49","2011","993","","" +"HU","M","POP","TOTAL","OC9","R","Y50-64","2011","523","","" +"HU","M","POP","TOTAL","OC9","R","Y65-84","2011","56","","" +"HU","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","S","Y15-29","2011","466","","" +"HU","M","POP","TOTAL","OC9","S","Y30-49","2011","917","","" +"HU","M","POP","TOTAL","OC9","S","Y50-64","2011","444","","" +"HU","M","POP","TOTAL","OC9","S","Y65-84","2011","13","","" +"HU","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","T","Y15-29","2011","204","","" +"HU","M","POP","TOTAL","OC9","T","Y30-49","2011","423","","" +"HU","M","POP","TOTAL","OC9","T","Y50-64","2011","158","","" +"HU","M","POP","TOTAL","OC9","T","Y65-84","2011","2","","" +"HU","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","U","Y15-29","2011","194","","" +"HU","M","POP","TOTAL","OC9","U","Y30-49","2011","320","","" +"HU","M","POP","TOTAL","OC9","U","Y50-64","2011","68","","" +"HU","M","POP","TOTAL","OC9","U","Y65-84","2011","1","","" +"HU","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"HU","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"HU","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"HU","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"HU","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"HU","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"HU","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","NAP","Y15-29","2011","226149","","" +"IE","F","POP","TOTAL","NAP","NAP","Y30-49","2011","174279","","" +"IE","F","POP","TOTAL","NAP","NAP","Y50-64","2011","158129","","" +"IE","F","POP","TOTAL","NAP","NAP","Y65-84","2011","234682","","" +"IE","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","39355","","" +"IE","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","476789","","" +"IE","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","F","Y30-49","2011","1","d","" +"IE","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","H","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","OC0","H","Y30-49","2011","1","d","" +"IE","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","M","Y30-49","2011","1","d","" +"IE","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","O","Y15-29","2011","210","","" +"IE","F","POP","TOTAL","OC0","O","Y30-49","2011","263","","" +"IE","F","POP","TOTAL","OC0","O","Y50-64","2011","12","","" +"IE","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","P","Y15-29","2011","2","d","" +"IE","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","Q","Y30-49","2011","2","d","" +"IE","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC0","UNK","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","A","Y15-29","2011","33","","" +"IE","F","POP","TOTAL","OC1","A","Y30-49","2011","207","","" +"IE","F","POP","TOTAL","OC1","A","Y50-64","2011","87","","" +"IE","F","POP","TOTAL","OC1","A","Y65-84","2011","13","","" +"IE","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","B","Y15-29","2011","6","d","" +"IE","F","POP","TOTAL","OC1","B","Y30-49","2011","42","","" +"IE","F","POP","TOTAL","OC1","B","Y50-64","2011","9","d","" +"IE","F","POP","TOTAL","OC1","B","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","C","Y15-29","2011","356","","" +"IE","F","POP","TOTAL","OC1","C","Y30-49","2011","2645","","" +"IE","F","POP","TOTAL","OC1","C","Y50-64","2011","686","","" +"IE","F","POP","TOTAL","OC1","C","Y65-84","2011","53","","" +"IE","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","D","Y15-29","2011","16","","" +"IE","F","POP","TOTAL","OC1","D","Y30-49","2011","150","","" +"IE","F","POP","TOTAL","OC1","D","Y50-64","2011","31","","" +"IE","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","E","Y15-29","2011","18","","" +"IE","F","POP","TOTAL","OC1","E","Y30-49","2011","110","","" +"IE","F","POP","TOTAL","OC1","E","Y50-64","2011","30","","" +"IE","F","POP","TOTAL","OC1","E","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","F","Y15-29","2011","60","","" +"IE","F","POP","TOTAL","OC1","F","Y30-49","2011","459","","" +"IE","F","POP","TOTAL","OC1","F","Y50-64","2011","236","","" +"IE","F","POP","TOTAL","OC1","F","Y65-84","2011","25","","" +"IE","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","G","Y15-29","2011","4586","","" +"IE","F","POP","TOTAL","OC1","G","Y30-49","2011","9390","","" +"IE","F","POP","TOTAL","OC1","G","Y50-64","2011","2640","","" +"IE","F","POP","TOTAL","OC1","G","Y65-84","2011","335","","" +"IE","F","POP","TOTAL","OC1","G","Y_GE85","2011","6","d","" +"IE","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","H","Y15-29","2011","103","","" +"IE","F","POP","TOTAL","OC1","H","Y30-49","2011","731","","" +"IE","F","POP","TOTAL","OC1","H","Y50-64","2011","216","","" +"IE","F","POP","TOTAL","OC1","H","Y65-84","2011","13","","" +"IE","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","I","Y15-29","2011","2167","","" +"IE","F","POP","TOTAL","OC1","I","Y30-49","2011","6484","","" +"IE","F","POP","TOTAL","OC1","I","Y50-64","2011","2497","","" +"IE","F","POP","TOTAL","OC1","I","Y65-84","2011","372","","" +"IE","F","POP","TOTAL","OC1","I","Y_GE85","2011","9","d","" +"IE","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","J","Y15-29","2011","272","","" +"IE","F","POP","TOTAL","OC1","J","Y30-49","2011","1438","","" +"IE","F","POP","TOTAL","OC1","J","Y50-64","2011","212","","" +"IE","F","POP","TOTAL","OC1","J","Y65-84","2011","6","d","" +"IE","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","K","Y15-29","2011","650","","" +"IE","F","POP","TOTAL","OC1","K","Y30-49","2011","4342","","" +"IE","F","POP","TOTAL","OC1","K","Y50-64","2011","933","","" +"IE","F","POP","TOTAL","OC1","K","Y65-84","2011","16","","" +"IE","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","L","Y15-29","2011","24","","" +"IE","F","POP","TOTAL","OC1","L","Y30-49","2011","149","","" +"IE","F","POP","TOTAL","OC1","L","Y50-64","2011","57","","" +"IE","F","POP","TOTAL","OC1","L","Y65-84","2011","8","d","" +"IE","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","M","Y15-29","2011","243","","" +"IE","F","POP","TOTAL","OC1","M","Y30-49","2011","1494","","" +"IE","F","POP","TOTAL","OC1","M","Y50-64","2011","305","","" +"IE","F","POP","TOTAL","OC1","M","Y65-84","2011","32","","" +"IE","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","N","Y15-29","2011","273","","" +"IE","F","POP","TOTAL","OC1","N","Y30-49","2011","1194","","" +"IE","F","POP","TOTAL","OC1","N","Y50-64","2011","318","","" +"IE","F","POP","TOTAL","OC1","N","Y65-84","2011","27","","" +"IE","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","O","Y15-29","2011","66","","" +"IE","F","POP","TOTAL","OC1","O","Y30-49","2011","1382","","" +"IE","F","POP","TOTAL","OC1","O","Y50-64","2011","809","","" +"IE","F","POP","TOTAL","OC1","O","Y65-84","2011","26","","" +"IE","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","P","Y15-29","2011","323","","" +"IE","F","POP","TOTAL","OC1","P","Y30-49","2011","2323","","" +"IE","F","POP","TOTAL","OC1","P","Y50-64","2011","1389","","" +"IE","F","POP","TOTAL","OC1","P","Y65-84","2011","62","","" +"IE","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","Q","Y15-29","2011","282","","" +"IE","F","POP","TOTAL","OC1","Q","Y30-49","2011","2436","","" +"IE","F","POP","TOTAL","OC1","Q","Y50-64","2011","1334","","" +"IE","F","POP","TOTAL","OC1","Q","Y65-84","2011","63","","" +"IE","F","POP","TOTAL","OC1","Q","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","R","Y15-29","2011","588","","" +"IE","F","POP","TOTAL","OC1","R","Y30-49","2011","1223","","" +"IE","F","POP","TOTAL","OC1","R","Y50-64","2011","352","","" +"IE","F","POP","TOTAL","OC1","R","Y65-84","2011","22","","" +"IE","F","POP","TOTAL","OC1","R","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","S","Y15-29","2011","93","","" +"IE","F","POP","TOTAL","OC1","S","Y30-49","2011","469","","" +"IE","F","POP","TOTAL","OC1","S","Y50-64","2011","220","","" +"IE","F","POP","TOTAL","OC1","S","Y65-84","2011","18","","" +"IE","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC1","T","Y30-49","2011","3","d","" +"IE","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","U","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","OC1","U","Y30-49","2011","10","","" +"IE","F","POP","TOTAL","OC1","U","Y50-64","2011","8","d","" +"IE","F","POP","TOTAL","OC1","U","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC1","UNK","Y15-29","2011","132","","" +"IE","F","POP","TOTAL","OC1","UNK","Y30-49","2011","460","","" +"IE","F","POP","TOTAL","OC1","UNK","Y50-64","2011","338","","" +"IE","F","POP","TOTAL","OC1","UNK","Y65-84","2011","58","","" +"IE","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","A","Y15-29","2011","41","","" +"IE","F","POP","TOTAL","OC2","A","Y30-49","2011","173","","" +"IE","F","POP","TOTAL","OC2","A","Y50-64","2011","34","","" +"IE","F","POP","TOTAL","OC2","A","Y65-84","2011","5","d","" +"IE","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","B","Y15-29","2011","24","","" +"IE","F","POP","TOTAL","OC2","B","Y30-49","2011","71","","" +"IE","F","POP","TOTAL","OC2","B","Y50-64","2011","12","","" +"IE","F","POP","TOTAL","OC2","B","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","C","Y15-29","2011","2087","","" +"IE","F","POP","TOTAL","OC2","C","Y30-49","2011","7863","","" +"IE","F","POP","TOTAL","OC2","C","Y50-64","2011","849","","" +"IE","F","POP","TOTAL","OC2","C","Y65-84","2011","38","","" +"IE","F","POP","TOTAL","OC2","C","Y_GE85","2011","3","d","" +"IE","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","D","Y15-29","2011","173","","" +"IE","F","POP","TOTAL","OC2","D","Y30-49","2011","532","","" +"IE","F","POP","TOTAL","OC2","D","Y50-64","2011","52","","" +"IE","F","POP","TOTAL","OC2","D","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","E","Y15-29","2011","37","","" +"IE","F","POP","TOTAL","OC2","E","Y30-49","2011","150","","" +"IE","F","POP","TOTAL","OC2","E","Y50-64","2011","22","","" +"IE","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","F","Y15-29","2011","220","","" +"IE","F","POP","TOTAL","OC2","F","Y30-49","2011","890","","" +"IE","F","POP","TOTAL","OC2","F","Y50-64","2011","139","","" +"IE","F","POP","TOTAL","OC2","F","Y65-84","2011","6","d","" +"IE","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","G","Y15-29","2011","2034","","" +"IE","F","POP","TOTAL","OC2","G","Y30-49","2011","5480","","" +"IE","F","POP","TOTAL","OC2","G","Y50-64","2011","1011","","" +"IE","F","POP","TOTAL","OC2","G","Y65-84","2011","99","","" +"IE","F","POP","TOTAL","OC2","G","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","H","Y15-29","2011","187","","" +"IE","F","POP","TOTAL","OC2","H","Y30-49","2011","671","","" +"IE","F","POP","TOTAL","OC2","H","Y50-64","2011","102","","" +"IE","F","POP","TOTAL","OC2","H","Y65-84","2011","4","d","" +"IE","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","I","Y15-29","2011","359","","" +"IE","F","POP","TOTAL","OC2","I","Y30-49","2011","868","","" +"IE","F","POP","TOTAL","OC2","I","Y50-64","2011","171","","" +"IE","F","POP","TOTAL","OC2","I","Y65-84","2011","15","","" +"IE","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","J","Y15-29","2011","2671","","" +"IE","F","POP","TOTAL","OC2","J","Y30-49","2011","7618","","" +"IE","F","POP","TOTAL","OC2","J","Y50-64","2011","867","","" +"IE","F","POP","TOTAL","OC2","J","Y65-84","2011","30","","" +"IE","F","POP","TOTAL","OC2","J","Y_GE85","2011","4","d","" +"IE","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","K","Y15-29","2011","2308","","" +"IE","F","POP","TOTAL","OC2","K","Y30-49","2011","6513","","" +"IE","F","POP","TOTAL","OC2","K","Y50-64","2011","554","","" +"IE","F","POP","TOTAL","OC2","K","Y65-84","2011","15","","" +"IE","F","POP","TOTAL","OC2","K","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","L","Y15-29","2011","103","","" +"IE","F","POP","TOTAL","OC2","L","Y30-49","2011","286","","" +"IE","F","POP","TOTAL","OC2","L","Y50-64","2011","36","","" +"IE","F","POP","TOTAL","OC2","L","Y65-84","2011","3","d","" +"IE","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","M","Y15-29","2011","6473","","" +"IE","F","POP","TOTAL","OC2","M","Y30-49","2011","12066","","" +"IE","F","POP","TOTAL","OC2","M","Y50-64","2011","2058","","" +"IE","F","POP","TOTAL","OC2","M","Y65-84","2011","123","","" +"IE","F","POP","TOTAL","OC2","M","Y_GE85","2011","4","d","" +"IE","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","N","Y15-29","2011","809","","" +"IE","F","POP","TOTAL","OC2","N","Y30-49","2011","1972","","" +"IE","F","POP","TOTAL","OC2","N","Y50-64","2011","310","","" +"IE","F","POP","TOTAL","OC2","N","Y65-84","2011","24","","" +"IE","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","O","Y15-29","2011","864","","" +"IE","F","POP","TOTAL","OC2","O","Y30-49","2011","5165","","" +"IE","F","POP","TOTAL","OC2","O","Y50-64","2011","1814","","" +"IE","F","POP","TOTAL","OC2","O","Y65-84","2011","75","","" +"IE","F","POP","TOTAL","OC2","O","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","P","Y15-29","2011","17308","","" +"IE","F","POP","TOTAL","OC2","P","Y30-49","2011","40863","","" +"IE","F","POP","TOTAL","OC2","P","Y50-64","2011","15621","","" +"IE","F","POP","TOTAL","OC2","P","Y65-84","2011","746","","" +"IE","F","POP","TOTAL","OC2","P","Y_GE85","2011","17","","" +"IE","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","Q","Y15-29","2011","10485","","" +"IE","F","POP","TOTAL","OC2","Q","Y30-49","2011","39509","","" +"IE","F","POP","TOTAL","OC2","Q","Y50-64","2011","15578","","" +"IE","F","POP","TOTAL","OC2","Q","Y65-84","2011","811","","" +"IE","F","POP","TOTAL","OC2","Q","Y_GE85","2011","7","d","" +"IE","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","R","Y15-29","2011","589","","" +"IE","F","POP","TOTAL","OC2","R","Y30-49","2011","2272","","" +"IE","F","POP","TOTAL","OC2","R","Y50-64","2011","1011","","" +"IE","F","POP","TOTAL","OC2","R","Y65-84","2011","83","","" +"IE","F","POP","TOTAL","OC2","R","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","S","Y15-29","2011","219","","" +"IE","F","POP","TOTAL","OC2","S","Y30-49","2011","704","","" +"IE","F","POP","TOTAL","OC2","S","Y50-64","2011","390","","" +"IE","F","POP","TOTAL","OC2","S","Y65-84","2011","116","","" +"IE","F","POP","TOTAL","OC2","S","Y_GE85","2011","4","d","" +"IE","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","T","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","OC2","T","Y30-49","2011","4","d","" +"IE","F","POP","TOTAL","OC2","T","Y50-64","2011","11","","" +"IE","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","U","Y15-29","2011","10","","" +"IE","F","POP","TOTAL","OC2","U","Y30-49","2011","31","","" +"IE","F","POP","TOTAL","OC2","U","Y50-64","2011","12","","" +"IE","F","POP","TOTAL","OC2","U","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC2","UNK","Y15-29","2011","471","","" +"IE","F","POP","TOTAL","OC2","UNK","Y30-49","2011","1473","","" +"IE","F","POP","TOTAL","OC2","UNK","Y50-64","2011","971","","" +"IE","F","POP","TOTAL","OC2","UNK","Y65-84","2011","216","","" +"IE","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","9","d","" +"IE","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","A","Y15-29","2011","151","","" +"IE","F","POP","TOTAL","OC3","A","Y30-49","2011","376","","" +"IE","F","POP","TOTAL","OC3","A","Y50-64","2011","170","","" +"IE","F","POP","TOTAL","OC3","A","Y65-84","2011","7","d","" +"IE","F","POP","TOTAL","OC3","A","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","B","Y15-29","2011","28","","" +"IE","F","POP","TOTAL","OC3","B","Y30-49","2011","90","","" +"IE","F","POP","TOTAL","OC3","B","Y50-64","2011","25","","" +"IE","F","POP","TOTAL","OC3","B","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","C","Y15-29","2011","2268","","" +"IE","F","POP","TOTAL","OC3","C","Y30-49","2011","7429","","" +"IE","F","POP","TOTAL","OC3","C","Y50-64","2011","1472","","" +"IE","F","POP","TOTAL","OC3","C","Y65-84","2011","63","","" +"IE","F","POP","TOTAL","OC3","C","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","D","Y15-29","2011","95","","" +"IE","F","POP","TOTAL","OC3","D","Y30-49","2011","299","","" +"IE","F","POP","TOTAL","OC3","D","Y50-64","2011","78","","" +"IE","F","POP","TOTAL","OC3","D","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","E","Y15-29","2011","84","","" +"IE","F","POP","TOTAL","OC3","E","Y30-49","2011","228","","" +"IE","F","POP","TOTAL","OC3","E","Y50-64","2011","72","","" +"IE","F","POP","TOTAL","OC3","E","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","F","Y15-29","2011","298","","" +"IE","F","POP","TOTAL","OC3","F","Y30-49","2011","1493","","" +"IE","F","POP","TOTAL","OC3","F","Y50-64","2011","536","","" +"IE","F","POP","TOTAL","OC3","F","Y65-84","2011","39","","" +"IE","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","G","Y15-29","2011","3046","","" +"IE","F","POP","TOTAL","OC3","G","Y30-49","2011","7498","","" +"IE","F","POP","TOTAL","OC3","G","Y50-64","2011","2496","","" +"IE","F","POP","TOTAL","OC3","G","Y65-84","2011","176","","" +"IE","F","POP","TOTAL","OC3","G","Y_GE85","2011","6","d","" +"IE","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","H","Y15-29","2011","316","","" +"IE","F","POP","TOTAL","OC3","H","Y30-49","2011","1126","","" +"IE","F","POP","TOTAL","OC3","H","Y50-64","2011","285","","" +"IE","F","POP","TOTAL","OC3","H","Y65-84","2011","12","","" +"IE","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","I","Y15-29","2011","2026","","" +"IE","F","POP","TOTAL","OC3","I","Y30-49","2011","3919","","" +"IE","F","POP","TOTAL","OC3","I","Y50-64","2011","824","","" +"IE","F","POP","TOTAL","OC3","I","Y65-84","2011","32","","" +"IE","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","J","Y15-29","2011","1250","","" +"IE","F","POP","TOTAL","OC3","J","Y30-49","2011","2576","","" +"IE","F","POP","TOTAL","OC3","J","Y50-64","2011","453","","" +"IE","F","POP","TOTAL","OC3","J","Y65-84","2011","11","","" +"IE","F","POP","TOTAL","OC3","J","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","K","Y15-29","2011","2330","","" +"IE","F","POP","TOTAL","OC3","K","Y30-49","2011","5070","","" +"IE","F","POP","TOTAL","OC3","K","Y50-64","2011","846","","" +"IE","F","POP","TOTAL","OC3","K","Y65-84","2011","28","","" +"IE","F","POP","TOTAL","OC3","K","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","L","Y15-29","2011","278","","" +"IE","F","POP","TOTAL","OC3","L","Y30-49","2011","1048","","" +"IE","F","POP","TOTAL","OC3","L","Y50-64","2011","348","","" +"IE","F","POP","TOTAL","OC3","L","Y65-84","2011","28","","" +"IE","F","POP","TOTAL","OC3","L","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","M","Y15-29","2011","2888","","" +"IE","F","POP","TOTAL","OC3","M","Y30-49","2011","8192","","" +"IE","F","POP","TOTAL","OC3","M","Y50-64","2011","2681","","" +"IE","F","POP","TOTAL","OC3","M","Y65-84","2011","165","","" +"IE","F","POP","TOTAL","OC3","M","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","N","Y15-29","2011","688","","" +"IE","F","POP","TOTAL","OC3","N","Y30-49","2011","1737","","" +"IE","F","POP","TOTAL","OC3","N","Y50-64","2011","438","","" +"IE","F","POP","TOTAL","OC3","N","Y65-84","2011","27","","" +"IE","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","O","Y15-29","2011","2125","","" +"IE","F","POP","TOTAL","OC3","O","Y30-49","2011","12531","","" +"IE","F","POP","TOTAL","OC3","O","Y50-64","2011","6566","","" +"IE","F","POP","TOTAL","OC3","O","Y65-84","2011","80","","" +"IE","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","P","Y15-29","2011","754","","" +"IE","F","POP","TOTAL","OC3","P","Y30-49","2011","4611","","" +"IE","F","POP","TOTAL","OC3","P","Y50-64","2011","2534","","" +"IE","F","POP","TOTAL","OC3","P","Y65-84","2011","135","","" +"IE","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","Q","Y15-29","2011","3432","","" +"IE","F","POP","TOTAL","OC3","Q","Y30-49","2011","12649","","" +"IE","F","POP","TOTAL","OC3","Q","Y50-64","2011","5505","","" +"IE","F","POP","TOTAL","OC3","Q","Y65-84","2011","279","","" +"IE","F","POP","TOTAL","OC3","Q","Y_GE85","2011","3","d","" +"IE","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","R","Y15-29","2011","784","","" +"IE","F","POP","TOTAL","OC3","R","Y30-49","2011","1406","","" +"IE","F","POP","TOTAL","OC3","R","Y50-64","2011","426","","" +"IE","F","POP","TOTAL","OC3","R","Y65-84","2011","25","","" +"IE","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","S","Y15-29","2011","301","","" +"IE","F","POP","TOTAL","OC3","S","Y30-49","2011","1234","","" +"IE","F","POP","TOTAL","OC3","S","Y50-64","2011","681","","" +"IE","F","POP","TOTAL","OC3","S","Y65-84","2011","78","","" +"IE","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","T","Y15-29","2011","2","d","" +"IE","F","POP","TOTAL","OC3","T","Y30-49","2011","18","","" +"IE","F","POP","TOTAL","OC3","T","Y50-64","2011","3","d","" +"IE","F","POP","TOTAL","OC3","T","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","U","Y15-29","2011","17","","" +"IE","F","POP","TOTAL","OC3","U","Y30-49","2011","39","","" +"IE","F","POP","TOTAL","OC3","U","Y50-64","2011","21","","" +"IE","F","POP","TOTAL","OC3","U","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC3","UNK","Y15-29","2011","426","","" +"IE","F","POP","TOTAL","OC3","UNK","Y30-49","2011","1227","","" +"IE","F","POP","TOTAL","OC3","UNK","Y50-64","2011","807","","" +"IE","F","POP","TOTAL","OC3","UNK","Y65-84","2011","90","","" +"IE","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","4","d","" +"IE","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","A","Y15-29","2011","102","","" +"IE","F","POP","TOTAL","OC4","A","Y30-49","2011","373","","" +"IE","F","POP","TOTAL","OC4","A","Y50-64","2011","159","","" +"IE","F","POP","TOTAL","OC4","A","Y65-84","2011","13","","" +"IE","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","B","Y15-29","2011","39","","" +"IE","F","POP","TOTAL","OC4","B","Y30-49","2011","145","","" +"IE","F","POP","TOTAL","OC4","B","Y50-64","2011","61","","" +"IE","F","POP","TOTAL","OC4","B","Y65-84","2011","4","d","" +"IE","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","C","Y15-29","2011","1861","","" +"IE","F","POP","TOTAL","OC4","C","Y30-49","2011","5898","","" +"IE","F","POP","TOTAL","OC4","C","Y50-64","2011","1804","","" +"IE","F","POP","TOTAL","OC4","C","Y65-84","2011","95","","" +"IE","F","POP","TOTAL","OC4","C","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","D","Y15-29","2011","219","","" +"IE","F","POP","TOTAL","OC4","D","Y30-49","2011","644","","" +"IE","F","POP","TOTAL","OC4","D","Y50-64","2011","315","","" +"IE","F","POP","TOTAL","OC4","D","Y65-84","2011","9","d","" +"IE","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","E","Y15-29","2011","220","","" +"IE","F","POP","TOTAL","OC4","E","Y30-49","2011","421","","" +"IE","F","POP","TOTAL","OC4","E","Y50-64","2011","115","","" +"IE","F","POP","TOTAL","OC4","E","Y65-84","2011","6","d","" +"IE","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","F","Y15-29","2011","553","","" +"IE","F","POP","TOTAL","OC4","F","Y30-49","2011","1940","","" +"IE","F","POP","TOTAL","OC4","F","Y50-64","2011","717","","" +"IE","F","POP","TOTAL","OC4","F","Y65-84","2011","33","","" +"IE","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","G","Y15-29","2011","3495","","" +"IE","F","POP","TOTAL","OC4","G","Y30-49","2011","8152","","" +"IE","F","POP","TOTAL","OC4","G","Y50-64","2011","3309","","" +"IE","F","POP","TOTAL","OC4","G","Y65-84","2011","217","","" +"IE","F","POP","TOTAL","OC4","G","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","H","Y15-29","2011","1575","","" +"IE","F","POP","TOTAL","OC4","H","Y30-49","2011","4493","","" +"IE","F","POP","TOTAL","OC4","H","Y50-64","2011","1778","","" +"IE","F","POP","TOTAL","OC4","H","Y65-84","2011","119","","" +"IE","F","POP","TOTAL","OC4","H","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","I","Y15-29","2011","1798","","" +"IE","F","POP","TOTAL","OC4","I","Y30-49","2011","2251","","" +"IE","F","POP","TOTAL","OC4","I","Y50-64","2011","655","","" +"IE","F","POP","TOTAL","OC4","I","Y65-84","2011","43","","" +"IE","F","POP","TOTAL","OC4","I","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","J","Y15-29","2011","1456","","" +"IE","F","POP","TOTAL","OC4","J","Y30-49","2011","2452","","" +"IE","F","POP","TOTAL","OC4","J","Y50-64","2011","849","","" +"IE","F","POP","TOTAL","OC4","J","Y65-84","2011","28","","" +"IE","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","K","Y15-29","2011","8061","","" +"IE","F","POP","TOTAL","OC4","K","Y30-49","2011","14689","","" +"IE","F","POP","TOTAL","OC4","K","Y50-64","2011","4883","","" +"IE","F","POP","TOTAL","OC4","K","Y65-84","2011","93","","" +"IE","F","POP","TOTAL","OC4","K","Y_GE85","2011","3","d","" +"IE","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","L","Y15-29","2011","252","","" +"IE","F","POP","TOTAL","OC4","L","Y30-49","2011","654","","" +"IE","F","POP","TOTAL","OC4","L","Y50-64","2011","251","","" +"IE","F","POP","TOTAL","OC4","L","Y65-84","2011","20","","" +"IE","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","M","Y15-29","2011","1844","","" +"IE","F","POP","TOTAL","OC4","M","Y30-49","2011","4732","","" +"IE","F","POP","TOTAL","OC4","M","Y50-64","2011","1989","","" +"IE","F","POP","TOTAL","OC4","M","Y65-84","2011","162","","" +"IE","F","POP","TOTAL","OC4","M","Y_GE85","2011","4","d","" +"IE","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","N","Y15-29","2011","2051","","" +"IE","F","POP","TOTAL","OC4","N","Y30-49","2011","3513","","" +"IE","F","POP","TOTAL","OC4","N","Y50-64","2011","985","","" +"IE","F","POP","TOTAL","OC4","N","Y65-84","2011","43","","" +"IE","F","POP","TOTAL","OC4","N","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","O","Y15-29","2011","1307","","" +"IE","F","POP","TOTAL","OC4","O","Y30-49","2011","8197","","" +"IE","F","POP","TOTAL","OC4","O","Y50-64","2011","3418","","" +"IE","F","POP","TOTAL","OC4","O","Y65-84","2011","58","","" +"IE","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","P","Y15-29","2011","646","","" +"IE","F","POP","TOTAL","OC4","P","Y30-49","2011","3963","","" +"IE","F","POP","TOTAL","OC4","P","Y50-64","2011","2106","","" +"IE","F","POP","TOTAL","OC4","P","Y65-84","2011","102","","" +"IE","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","Q","Y15-29","2011","1879","","" +"IE","F","POP","TOTAL","OC4","Q","Y30-49","2011","8932","","" +"IE","F","POP","TOTAL","OC4","Q","Y50-64","2011","4837","","" +"IE","F","POP","TOTAL","OC4","Q","Y65-84","2011","201","","" +"IE","F","POP","TOTAL","OC4","Q","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","R","Y15-29","2011","1421","","" +"IE","F","POP","TOTAL","OC4","R","Y30-49","2011","2111","","" +"IE","F","POP","TOTAL","OC4","R","Y50-64","2011","975","","" +"IE","F","POP","TOTAL","OC4","R","Y65-84","2011","65","","" +"IE","F","POP","TOTAL","OC4","R","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","S","Y15-29","2011","404","","" +"IE","F","POP","TOTAL","OC4","S","Y30-49","2011","1194","","" +"IE","F","POP","TOTAL","OC4","S","Y50-64","2011","676","","" +"IE","F","POP","TOTAL","OC4","S","Y65-84","2011","66","","" +"IE","F","POP","TOTAL","OC4","S","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC4","T","Y30-49","2011","9","d","" +"IE","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","U","Y15-29","2011","23","","" +"IE","F","POP","TOTAL","OC4","U","Y30-49","2011","114","","" +"IE","F","POP","TOTAL","OC4","U","Y50-64","2011","40","","" +"IE","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC4","UNK","Y15-29","2011","586","","" +"IE","F","POP","TOTAL","OC4","UNK","Y30-49","2011","1277","","" +"IE","F","POP","TOTAL","OC4","UNK","Y50-64","2011","893","","" +"IE","F","POP","TOTAL","OC4","UNK","Y65-84","2011","115","","" +"IE","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","5","d","" +"IE","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","A","Y15-29","2011","111","","" +"IE","F","POP","TOTAL","OC5","A","Y30-49","2011","230","","" +"IE","F","POP","TOTAL","OC5","A","Y50-64","2011","135","","" +"IE","F","POP","TOTAL","OC5","A","Y65-84","2011","13","","" +"IE","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","B","Y15-29","2011","5","d","" +"IE","F","POP","TOTAL","OC5","B","Y30-49","2011","11","","" +"IE","F","POP","TOTAL","OC5","B","Y50-64","2011","1","d","" +"IE","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","C","Y15-29","2011","778","","" +"IE","F","POP","TOTAL","OC5","C","Y30-49","2011","1401","","" +"IE","F","POP","TOTAL","OC5","C","Y50-64","2011","571","","" +"IE","F","POP","TOTAL","OC5","C","Y65-84","2011","38","","" +"IE","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","D","Y15-29","2011","32","","" +"IE","F","POP","TOTAL","OC5","D","Y30-49","2011","33","","" +"IE","F","POP","TOTAL","OC5","D","Y50-64","2011","9","d","" +"IE","F","POP","TOTAL","OC5","D","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","E","Y15-29","2011","18","","" +"IE","F","POP","TOTAL","OC5","E","Y30-49","2011","31","","" +"IE","F","POP","TOTAL","OC5","E","Y50-64","2011","9","d","" +"IE","F","POP","TOTAL","OC5","E","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","F","Y15-29","2011","96","","" +"IE","F","POP","TOTAL","OC5","F","Y30-49","2011","244","","" +"IE","F","POP","TOTAL","OC5","F","Y50-64","2011","83","","" +"IE","F","POP","TOTAL","OC5","F","Y65-84","2011","6","d","" +"IE","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","G","Y15-29","2011","29766","","" +"IE","F","POP","TOTAL","OC5","G","Y30-49","2011","34496","","" +"IE","F","POP","TOTAL","OC5","G","Y50-64","2011","14524","","" +"IE","F","POP","TOTAL","OC5","G","Y65-84","2011","923","","" +"IE","F","POP","TOTAL","OC5","G","Y_GE85","2011","15","","" +"IE","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","H","Y15-29","2011","808","","" +"IE","F","POP","TOTAL","OC5","H","Y30-49","2011","1453","","" +"IE","F","POP","TOTAL","OC5","H","Y50-64","2011","303","","" +"IE","F","POP","TOTAL","OC5","H","Y65-84","2011","24","","" +"IE","F","POP","TOTAL","OC5","H","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","I","Y15-29","2011","11083","","" +"IE","F","POP","TOTAL","OC5","I","Y30-49","2011","9001","","" +"IE","F","POP","TOTAL","OC5","I","Y50-64","2011","3169","","" +"IE","F","POP","TOTAL","OC5","I","Y65-84","2011","208","","" +"IE","F","POP","TOTAL","OC5","I","Y_GE85","2011","10","","" +"IE","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","J","Y15-29","2011","496","","" +"IE","F","POP","TOTAL","OC5","J","Y30-49","2011","560","","" +"IE","F","POP","TOTAL","OC5","J","Y50-64","2011","104","","" +"IE","F","POP","TOTAL","OC5","J","Y65-84","2011","6","d","" +"IE","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","K","Y15-29","2011","711","","" +"IE","F","POP","TOTAL","OC5","K","Y30-49","2011","1047","","" +"IE","F","POP","TOTAL","OC5","K","Y50-64","2011","156","","" +"IE","F","POP","TOTAL","OC5","K","Y65-84","2011","6","d","" +"IE","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","L","Y15-29","2011","125","","" +"IE","F","POP","TOTAL","OC5","L","Y30-49","2011","336","","" +"IE","F","POP","TOTAL","OC5","L","Y50-64","2011","152","","" +"IE","F","POP","TOTAL","OC5","L","Y65-84","2011","18","","" +"IE","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","M","Y15-29","2011","597","","" +"IE","F","POP","TOTAL","OC5","M","Y30-49","2011","786","","" +"IE","F","POP","TOTAL","OC5","M","Y50-64","2011","355","","" +"IE","F","POP","TOTAL","OC5","M","Y65-84","2011","33","","" +"IE","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","N","Y15-29","2011","1008","","" +"IE","F","POP","TOTAL","OC5","N","Y30-49","2011","1767","","" +"IE","F","POP","TOTAL","OC5","N","Y50-64","2011","863","","" +"IE","F","POP","TOTAL","OC5","N","Y65-84","2011","82","","" +"IE","F","POP","TOTAL","OC5","N","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","O","Y15-29","2011","1640","","" +"IE","F","POP","TOTAL","OC5","O","Y30-49","2011","3909","","" +"IE","F","POP","TOTAL","OC5","O","Y50-64","2011","1594","","" +"IE","F","POP","TOTAL","OC5","O","Y65-84","2011","101","","" +"IE","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","P","Y15-29","2011","6715","","" +"IE","F","POP","TOTAL","OC5","P","Y30-49","2011","15379","","" +"IE","F","POP","TOTAL","OC5","P","Y50-64","2011","6275","","" +"IE","F","POP","TOTAL","OC5","P","Y65-84","2011","200","","" +"IE","F","POP","TOTAL","OC5","P","Y_GE85","2011","4","d","" +"IE","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","Q","Y15-29","2011","8580","","" +"IE","F","POP","TOTAL","OC5","Q","Y30-49","2011","23810","","" +"IE","F","POP","TOTAL","OC5","Q","Y50-64","2011","13977","","" +"IE","F","POP","TOTAL","OC5","Q","Y65-84","2011","799","","" +"IE","F","POP","TOTAL","OC5","Q","Y_GE85","2011","7","d","" +"IE","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","R","Y15-29","2011","761","","" +"IE","F","POP","TOTAL","OC5","R","Y30-49","2011","745","","" +"IE","F","POP","TOTAL","OC5","R","Y50-64","2011","301","","" +"IE","F","POP","TOTAL","OC5","R","Y65-84","2011","24","","" +"IE","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","S","Y15-29","2011","10130","","" +"IE","F","POP","TOTAL","OC5","S","Y30-49","2011","9701","","" +"IE","F","POP","TOTAL","OC5","S","Y50-64","2011","2069","","" +"IE","F","POP","TOTAL","OC5","S","Y65-84","2011","223","","" +"IE","F","POP","TOTAL","OC5","S","Y_GE85","2011","4","d","" +"IE","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","T","Y15-29","2011","535","","" +"IE","F","POP","TOTAL","OC5","T","Y30-49","2011","690","","" +"IE","F","POP","TOTAL","OC5","T","Y50-64","2011","377","","" +"IE","F","POP","TOTAL","OC5","T","Y65-84","2011","32","","" +"IE","F","POP","TOTAL","OC5","T","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","U","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","OC5","U","Y30-49","2011","17","","" +"IE","F","POP","TOTAL","OC5","U","Y50-64","2011","10","","" +"IE","F","POP","TOTAL","OC5","U","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC5","UNK","Y15-29","2011","2114","","" +"IE","F","POP","TOTAL","OC5","UNK","Y30-49","2011","3605","","" +"IE","F","POP","TOTAL","OC5","UNK","Y50-64","2011","2652","","" +"IE","F","POP","TOTAL","OC5","UNK","Y65-84","2011","257","","" +"IE","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","11","","" +"IE","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","A","Y15-29","2011","181","","" +"IE","F","POP","TOTAL","OC6","A","Y30-49","2011","1718","","" +"IE","F","POP","TOTAL","OC6","A","Y50-64","2011","3066","","" +"IE","F","POP","TOTAL","OC6","A","Y65-84","2011","1691","","" +"IE","F","POP","TOTAL","OC6","A","Y_GE85","2011","116","","" +"IE","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","B","Y30-49","2011","2","d","" +"IE","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","C","Y15-29","2011","2","d","" +"IE","F","POP","TOTAL","OC6","C","Y30-49","2011","15","","" +"IE","F","POP","TOTAL","OC6","C","Y50-64","2011","8","d","" +"IE","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","D","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","F","Y15-29","2011","2","d","" +"IE","F","POP","TOTAL","OC6","F","Y30-49","2011","7","d","" +"IE","F","POP","TOTAL","OC6","F","Y50-64","2011","2","d","" +"IE","F","POP","TOTAL","OC6","F","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","G","Y15-29","2011","24","","" +"IE","F","POP","TOTAL","OC6","G","Y30-49","2011","114","","" +"IE","F","POP","TOTAL","OC6","G","Y50-64","2011","57","","" +"IE","F","POP","TOTAL","OC6","G","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","H","Y30-49","2011","1","d","" +"IE","F","POP","TOTAL","OC6","H","Y50-64","2011","1","d","" +"IE","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","I","Y15-29","2011","4","d","" +"IE","F","POP","TOTAL","OC6","I","Y30-49","2011","19","","" +"IE","F","POP","TOTAL","OC6","I","Y50-64","2011","5","d","" +"IE","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","J","Y30-49","2011","4","d","" +"IE","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","L","Y30-49","2011","2","d","" +"IE","F","POP","TOTAL","OC6","L","Y50-64","2011","2","d","" +"IE","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","M","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","OC6","M","Y30-49","2011","13","","" +"IE","F","POP","TOTAL","OC6","M","Y50-64","2011","6","d","" +"IE","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","N","Y15-29","2011","20","","" +"IE","F","POP","TOTAL","OC6","N","Y30-49","2011","166","","" +"IE","F","POP","TOTAL","OC6","N","Y50-64","2011","86","","" +"IE","F","POP","TOTAL","OC6","N","Y65-84","2011","5","d","" +"IE","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","O","Y15-29","2011","5","d","" +"IE","F","POP","TOTAL","OC6","O","Y30-49","2011","32","","" +"IE","F","POP","TOTAL","OC6","O","Y50-64","2011","13","","" +"IE","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","P","Y15-29","2011","3","d","" +"IE","F","POP","TOTAL","OC6","P","Y30-49","2011","22","","" +"IE","F","POP","TOTAL","OC6","P","Y50-64","2011","18","","" +"IE","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","Q","Y15-29","2011","5","d","" +"IE","F","POP","TOTAL","OC6","Q","Y30-49","2011","26","","" +"IE","F","POP","TOTAL","OC6","Q","Y50-64","2011","14","","" +"IE","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","R","Y15-29","2011","8","d","" +"IE","F","POP","TOTAL","OC6","R","Y30-49","2011","25","","" +"IE","F","POP","TOTAL","OC6","R","Y50-64","2011","6","d","" +"IE","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","S","Y30-49","2011","4","d","" +"IE","F","POP","TOTAL","OC6","S","Y50-64","2011","2","d","" +"IE","F","POP","TOTAL","OC6","S","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","T","Y30-49","2011","5","d","" +"IE","F","POP","TOTAL","OC6","T","Y50-64","2011","2","d","" +"IE","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC6","U","Y30-49","2011","1","d","" +"IE","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC6","UNK","Y15-29","2011","8","d","" +"IE","F","POP","TOTAL","OC6","UNK","Y30-49","2011","44","","" +"IE","F","POP","TOTAL","OC6","UNK","Y50-64","2011","67","","" +"IE","F","POP","TOTAL","OC6","UNK","Y65-84","2011","30","","" +"IE","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","A","Y15-29","2011","15","","" +"IE","F","POP","TOTAL","OC7","A","Y30-49","2011","25","","" +"IE","F","POP","TOTAL","OC7","A","Y50-64","2011","15","","" +"IE","F","POP","TOTAL","OC7","A","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","B","Y15-29","2011","3","d","" +"IE","F","POP","TOTAL","OC7","B","Y30-49","2011","7","d","" +"IE","F","POP","TOTAL","OC7","B","Y50-64","2011","2","d","" +"IE","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","C","Y15-29","2011","980","","" +"IE","F","POP","TOTAL","OC7","C","Y30-49","2011","3340","","" +"IE","F","POP","TOTAL","OC7","C","Y50-64","2011","1201","","" +"IE","F","POP","TOTAL","OC7","C","Y65-84","2011","67","","" +"IE","F","POP","TOTAL","OC7","C","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","D","Y15-29","2011","12","","" +"IE","F","POP","TOTAL","OC7","D","Y30-49","2011","31","","" +"IE","F","POP","TOTAL","OC7","D","Y50-64","2011","2","d","" +"IE","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","E","Y15-29","2011","9","d","" +"IE","F","POP","TOTAL","OC7","E","Y30-49","2011","15","","" +"IE","F","POP","TOTAL","OC7","E","Y50-64","2011","3","d","" +"IE","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","F","Y15-29","2011","120","","" +"IE","F","POP","TOTAL","OC7","F","Y30-49","2011","266","","" +"IE","F","POP","TOTAL","OC7","F","Y50-64","2011","68","","" +"IE","F","POP","TOTAL","OC7","F","Y65-84","2011","10","","" +"IE","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","G","Y15-29","2011","495","","" +"IE","F","POP","TOTAL","OC7","G","Y30-49","2011","1336","","" +"IE","F","POP","TOTAL","OC7","G","Y50-64","2011","510","","" +"IE","F","POP","TOTAL","OC7","G","Y65-84","2011","35","","" +"IE","F","POP","TOTAL","OC7","G","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","H","Y15-29","2011","25","","" +"IE","F","POP","TOTAL","OC7","H","Y30-49","2011","61","","" +"IE","F","POP","TOTAL","OC7","H","Y50-64","2011","11","","" +"IE","F","POP","TOTAL","OC7","H","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","I","Y15-29","2011","33","","" +"IE","F","POP","TOTAL","OC7","I","Y30-49","2011","94","","" +"IE","F","POP","TOTAL","OC7","I","Y50-64","2011","34","","" +"IE","F","POP","TOTAL","OC7","I","Y65-84","2011","5","d","" +"IE","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","J","Y15-29","2011","125","","" +"IE","F","POP","TOTAL","OC7","J","Y30-49","2011","216","","" +"IE","F","POP","TOTAL","OC7","J","Y50-64","2011","30","","" +"IE","F","POP","TOTAL","OC7","J","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","K","Y15-29","2011","37","","" +"IE","F","POP","TOTAL","OC7","K","Y30-49","2011","96","","" +"IE","F","POP","TOTAL","OC7","K","Y50-64","2011","24","","" +"IE","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","L","Y15-29","2011","3","d","" +"IE","F","POP","TOTAL","OC7","L","Y30-49","2011","5","d","" +"IE","F","POP","TOTAL","OC7","L","Y50-64","2011","1","d","" +"IE","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","M","Y15-29","2011","54","","" +"IE","F","POP","TOTAL","OC7","M","Y30-49","2011","169","","" +"IE","F","POP","TOTAL","OC7","M","Y50-64","2011","46","","" +"IE","F","POP","TOTAL","OC7","M","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","N","Y15-29","2011","51","","" +"IE","F","POP","TOTAL","OC7","N","Y30-49","2011","93","","" +"IE","F","POP","TOTAL","OC7","N","Y50-64","2011","27","","" +"IE","F","POP","TOTAL","OC7","N","Y65-84","2011","3","d","" +"IE","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","O","Y15-29","2011","14","","" +"IE","F","POP","TOTAL","OC7","O","Y30-49","2011","65","","" +"IE","F","POP","TOTAL","OC7","O","Y50-64","2011","20","","" +"IE","F","POP","TOTAL","OC7","O","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","P","Y15-29","2011","17","","" +"IE","F","POP","TOTAL","OC7","P","Y30-49","2011","56","","" +"IE","F","POP","TOTAL","OC7","P","Y50-64","2011","33","","" +"IE","F","POP","TOTAL","OC7","P","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","Q","Y15-29","2011","26","","" +"IE","F","POP","TOTAL","OC7","Q","Y30-49","2011","89","","" +"IE","F","POP","TOTAL","OC7","Q","Y50-64","2011","27","","" +"IE","F","POP","TOTAL","OC7","Q","Y65-84","2011","5","d","" +"IE","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","R","Y15-29","2011","16","","" +"IE","F","POP","TOTAL","OC7","R","Y30-49","2011","47","","" +"IE","F","POP","TOTAL","OC7","R","Y50-64","2011","17","","" +"IE","F","POP","TOTAL","OC7","R","Y65-84","2011","4","d","" +"IE","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","S","Y15-29","2011","30","","" +"IE","F","POP","TOTAL","OC7","S","Y30-49","2011","178","","" +"IE","F","POP","TOTAL","OC7","S","Y50-64","2011","70","","" +"IE","F","POP","TOTAL","OC7","S","Y65-84","2011","6","d","" +"IE","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC7","T","Y30-49","2011","1","d","" +"IE","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC7","UNK","Y15-29","2011","72","","" +"IE","F","POP","TOTAL","OC7","UNK","Y30-49","2011","269","","" +"IE","F","POP","TOTAL","OC7","UNK","Y50-64","2011","200","","" +"IE","F","POP","TOTAL","OC7","UNK","Y65-84","2011","38","","" +"IE","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","A","Y15-29","2011","54","","" +"IE","F","POP","TOTAL","OC8","A","Y30-49","2011","101","","" +"IE","F","POP","TOTAL","OC8","A","Y50-64","2011","26","","" +"IE","F","POP","TOTAL","OC8","A","Y65-84","2011","4","d","" +"IE","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","B","Y15-29","2011","5","d","" +"IE","F","POP","TOTAL","OC8","B","Y30-49","2011","8","d","" +"IE","F","POP","TOTAL","OC8","B","Y50-64","2011","5","d","" +"IE","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","C","Y15-29","2011","3446","","" +"IE","F","POP","TOTAL","OC8","C","Y30-49","2011","9987","","" +"IE","F","POP","TOTAL","OC8","C","Y50-64","2011","3623","","" +"IE","F","POP","TOTAL","OC8","C","Y65-84","2011","98","","" +"IE","F","POP","TOTAL","OC8","C","Y_GE85","2011","6","d","" +"IE","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","D","Y15-29","2011","5","d","" +"IE","F","POP","TOTAL","OC8","D","Y30-49","2011","5","d","" +"IE","F","POP","TOTAL","OC8","D","Y50-64","2011","3","d","" +"IE","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","E","Y15-29","2011","7","d","" +"IE","F","POP","TOTAL","OC8","E","Y30-49","2011","20","","" +"IE","F","POP","TOTAL","OC8","E","Y50-64","2011","7","d","" +"IE","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","F","Y15-29","2011","13","","" +"IE","F","POP","TOTAL","OC8","F","Y30-49","2011","51","","" +"IE","F","POP","TOTAL","OC8","F","Y50-64","2011","21","","" +"IE","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","G","Y15-29","2011","604","","" +"IE","F","POP","TOTAL","OC8","G","Y30-49","2011","1190","","" +"IE","F","POP","TOTAL","OC8","G","Y50-64","2011","468","","" +"IE","F","POP","TOTAL","OC8","G","Y65-84","2011","27","","" +"IE","F","POP","TOTAL","OC8","G","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","H","Y15-29","2011","83","","" +"IE","F","POP","TOTAL","OC8","H","Y30-49","2011","777","","" +"IE","F","POP","TOTAL","OC8","H","Y50-64","2011","459","","" +"IE","F","POP","TOTAL","OC8","H","Y65-84","2011","47","","" +"IE","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","I","Y15-29","2011","85","","" +"IE","F","POP","TOTAL","OC8","I","Y30-49","2011","107","","" +"IE","F","POP","TOTAL","OC8","I","Y50-64","2011","44","","" +"IE","F","POP","TOTAL","OC8","I","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","J","Y15-29","2011","60","","" +"IE","F","POP","TOTAL","OC8","J","Y30-49","2011","110","","" +"IE","F","POP","TOTAL","OC8","J","Y50-64","2011","32","","" +"IE","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","K","Y15-29","2011","6","d","" +"IE","F","POP","TOTAL","OC8","K","Y30-49","2011","19","","" +"IE","F","POP","TOTAL","OC8","K","Y50-64","2011","6","d","" +"IE","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","L","Y15-29","2011","3","d","" +"IE","F","POP","TOTAL","OC8","L","Y30-49","2011","7","d","" +"IE","F","POP","TOTAL","OC8","L","Y50-64","2011","4","d","" +"IE","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","M","Y15-29","2011","32","","" +"IE","F","POP","TOTAL","OC8","M","Y30-49","2011","89","","" +"IE","F","POP","TOTAL","OC8","M","Y50-64","2011","40","","" +"IE","F","POP","TOTAL","OC8","M","Y65-84","2011","3","d","" +"IE","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","N","Y15-29","2011","57","","" +"IE","F","POP","TOTAL","OC8","N","Y30-49","2011","121","","" +"IE","F","POP","TOTAL","OC8","N","Y50-64","2011","46","","" +"IE","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","O","Y15-29","2011","23","","" +"IE","F","POP","TOTAL","OC8","O","Y30-49","2011","32","","" +"IE","F","POP","TOTAL","OC8","O","Y50-64","2011","25","","" +"IE","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","P","Y15-29","2011","8","d","" +"IE","F","POP","TOTAL","OC8","P","Y30-49","2011","45","","" +"IE","F","POP","TOTAL","OC8","P","Y50-64","2011","39","","" +"IE","F","POP","TOTAL","OC8","P","Y65-84","2011","4","d","" +"IE","F","POP","TOTAL","OC8","P","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","Q","Y15-29","2011","85","","" +"IE","F","POP","TOTAL","OC8","Q","Y30-49","2011","184","","" +"IE","F","POP","TOTAL","OC8","Q","Y50-64","2011","111","","" +"IE","F","POP","TOTAL","OC8","Q","Y65-84","2011","3","d","" +"IE","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","R","Y15-29","2011","6","d","" +"IE","F","POP","TOTAL","OC8","R","Y30-49","2011","19","","" +"IE","F","POP","TOTAL","OC8","R","Y50-64","2011","4","d","" +"IE","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","S","Y15-29","2011","50","","" +"IE","F","POP","TOTAL","OC8","S","Y30-49","2011","106","","" +"IE","F","POP","TOTAL","OC8","S","Y50-64","2011","92","","" +"IE","F","POP","TOTAL","OC8","S","Y65-84","2011","8","d","" +"IE","F","POP","TOTAL","OC8","S","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC8","T","Y30-49","2011","1","d","" +"IE","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC8","T","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC8","UNK","Y15-29","2011","168","","" +"IE","F","POP","TOTAL","OC8","UNK","Y30-49","2011","475","","" +"IE","F","POP","TOTAL","OC8","UNK","Y50-64","2011","417","","" +"IE","F","POP","TOTAL","OC8","UNK","Y65-84","2011","47","","" +"IE","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","A","Y15-29","2011","640","","" +"IE","F","POP","TOTAL","OC9","A","Y30-49","2011","1108","","" +"IE","F","POP","TOTAL","OC9","A","Y50-64","2011","420","","" +"IE","F","POP","TOTAL","OC9","A","Y65-84","2011","46","","" +"IE","F","POP","TOTAL","OC9","A","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","B","Y15-29","2011","3","d","" +"IE","F","POP","TOTAL","OC9","B","Y30-49","2011","17","","" +"IE","F","POP","TOTAL","OC9","B","Y50-64","2011","7","d","" +"IE","F","POP","TOTAL","OC9","B","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","C","Y15-29","2011","961","","" +"IE","F","POP","TOTAL","OC9","C","Y30-49","2011","2162","","" +"IE","F","POP","TOTAL","OC9","C","Y50-64","2011","968","","" +"IE","F","POP","TOTAL","OC9","C","Y65-84","2011","40","","" +"IE","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","D","Y15-29","2011","8","d","" +"IE","F","POP","TOTAL","OC9","D","Y30-49","2011","24","","" +"IE","F","POP","TOTAL","OC9","D","Y50-64","2011","28","","" +"IE","F","POP","TOTAL","OC9","D","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","E","Y15-29","2011","51","","" +"IE","F","POP","TOTAL","OC9","E","Y30-49","2011","109","","" +"IE","F","POP","TOTAL","OC9","E","Y50-64","2011","43","","" +"IE","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","F","Y15-29","2011","77","","" +"IE","F","POP","TOTAL","OC9","F","Y30-49","2011","199","","" +"IE","F","POP","TOTAL","OC9","F","Y50-64","2011","95","","" +"IE","F","POP","TOTAL","OC9","F","Y65-84","2011","12","","" +"IE","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","G","Y15-29","2011","1169","","" +"IE","F","POP","TOTAL","OC9","G","Y30-49","2011","1924","","" +"IE","F","POP","TOTAL","OC9","G","Y50-64","2011","1016","","" +"IE","F","POP","TOTAL","OC9","G","Y65-84","2011","49","","" +"IE","F","POP","TOTAL","OC9","G","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","H","Y15-29","2011","205","","" +"IE","F","POP","TOTAL","OC9","H","Y30-49","2011","438","","" +"IE","F","POP","TOTAL","OC9","H","Y50-64","2011","198","","" +"IE","F","POP","TOTAL","OC9","H","Y65-84","2011","10","","" +"IE","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","I","Y15-29","2011","5198","","" +"IE","F","POP","TOTAL","OC9","I","Y30-49","2011","6853","","" +"IE","F","POP","TOTAL","OC9","I","Y50-64","2011","3086","","" +"IE","F","POP","TOTAL","OC9","I","Y65-84","2011","152","","" +"IE","F","POP","TOTAL","OC9","I","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","J","Y15-29","2011","213","","" +"IE","F","POP","TOTAL","OC9","J","Y30-49","2011","244","","" +"IE","F","POP","TOTAL","OC9","J","Y50-64","2011","79","","" +"IE","F","POP","TOTAL","OC9","J","Y65-84","2011","10","","" +"IE","F","POP","TOTAL","OC9","J","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","K","Y15-29","2011","70","","" +"IE","F","POP","TOTAL","OC9","K","Y30-49","2011","201","","" +"IE","F","POP","TOTAL","OC9","K","Y50-64","2011","212","","" +"IE","F","POP","TOTAL","OC9","K","Y65-84","2011","9","d","" +"IE","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","L","Y15-29","2011","14","","" +"IE","F","POP","TOTAL","OC9","L","Y30-49","2011","38","","" +"IE","F","POP","TOTAL","OC9","L","Y50-64","2011","19","","" +"IE","F","POP","TOTAL","OC9","L","Y65-84","2011","4","d","" +"IE","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","M","Y15-29","2011","50","","" +"IE","F","POP","TOTAL","OC9","M","Y30-49","2011","177","","" +"IE","F","POP","TOTAL","OC9","M","Y50-64","2011","114","","" +"IE","F","POP","TOTAL","OC9","M","Y65-84","2011","13","","" +"IE","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","N","Y15-29","2011","2536","","" +"IE","F","POP","TOTAL","OC9","N","Y30-49","2011","5525","","" +"IE","F","POP","TOTAL","OC9","N","Y50-64","2011","3046","","" +"IE","F","POP","TOTAL","OC9","N","Y65-84","2011","161","","" +"IE","F","POP","TOTAL","OC9","N","Y_GE85","2011","5","d","" +"IE","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","O","Y15-29","2011","79","","" +"IE","F","POP","TOTAL","OC9","O","Y30-49","2011","653","","" +"IE","F","POP","TOTAL","OC9","O","Y50-64","2011","862","","" +"IE","F","POP","TOTAL","OC9","O","Y65-84","2011","72","","" +"IE","F","POP","TOTAL","OC9","O","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","P","Y15-29","2011","332","","" +"IE","F","POP","TOTAL","OC9","P","Y30-49","2011","1661","","" +"IE","F","POP","TOTAL","OC9","P","Y50-64","2011","1707","","" +"IE","F","POP","TOTAL","OC9","P","Y65-84","2011","164","","" +"IE","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","Q","Y15-29","2011","865","","" +"IE","F","POP","TOTAL","OC9","Q","Y30-49","2011","3381","","" +"IE","F","POP","TOTAL","OC9","Q","Y50-64","2011","2584","","" +"IE","F","POP","TOTAL","OC9","Q","Y65-84","2011","124","","" +"IE","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","R","Y15-29","2011","200","","" +"IE","F","POP","TOTAL","OC9","R","Y30-49","2011","396","","" +"IE","F","POP","TOTAL","OC9","R","Y50-64","2011","227","","" +"IE","F","POP","TOTAL","OC9","R","Y65-84","2011","14","","" +"IE","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","S","Y15-29","2011","302","","" +"IE","F","POP","TOTAL","OC9","S","Y30-49","2011","865","","" +"IE","F","POP","TOTAL","OC9","S","Y50-64","2011","530","","" +"IE","F","POP","TOTAL","OC9","S","Y65-84","2011","54","","" +"IE","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","T","Y15-29","2011","11","","" +"IE","F","POP","TOTAL","OC9","T","Y30-49","2011","11","","" +"IE","F","POP","TOTAL","OC9","T","Y50-64","2011","20","","" +"IE","F","POP","TOTAL","OC9","T","Y65-84","2011","4","d","" +"IE","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","U","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","OC9","U","Y30-49","2011","9","d","" +"IE","F","POP","TOTAL","OC9","U","Y50-64","2011","7","d","" +"IE","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","OC9","UNK","Y15-29","2011","532","","" +"IE","F","POP","TOTAL","OC9","UNK","Y30-49","2011","1273","","" +"IE","F","POP","TOTAL","OC9","UNK","Y50-64","2011","1147","","" +"IE","F","POP","TOTAL","OC9","UNK","Y65-84","2011","117","","" +"IE","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","11","","" +"IE","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","A","Y15-29","2011","29","","" +"IE","F","POP","TOTAL","UNK","A","Y30-49","2011","90","","" +"IE","F","POP","TOTAL","UNK","A","Y50-64","2011","48","","" +"IE","F","POP","TOTAL","UNK","A","Y65-84","2011","25","","" +"IE","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","B","Y15-29","2011","1","d","" +"IE","F","POP","TOTAL","UNK","B","Y30-49","2011","2","d","" +"IE","F","POP","TOTAL","UNK","B","Y50-64","2011","5","d","" +"IE","F","POP","TOTAL","UNK","B","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","C","Y15-29","2011","251","","" +"IE","F","POP","TOTAL","UNK","C","Y30-49","2011","478","","" +"IE","F","POP","TOTAL","UNK","C","Y50-64","2011","204","","" +"IE","F","POP","TOTAL","UNK","C","Y65-84","2011","19","","" +"IE","F","POP","TOTAL","UNK","C","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","D","Y15-29","2011","6","d","" +"IE","F","POP","TOTAL","UNK","D","Y30-49","2011","10","","" +"IE","F","POP","TOTAL","UNK","D","Y50-64","2011","6","d","" +"IE","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","E","Y15-29","2011","11","","" +"IE","F","POP","TOTAL","UNK","E","Y30-49","2011","13","","" +"IE","F","POP","TOTAL","UNK","E","Y50-64","2011","4","d","" +"IE","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","F","Y15-29","2011","18","","" +"IE","F","POP","TOTAL","UNK","F","Y30-49","2011","44","","" +"IE","F","POP","TOTAL","UNK","F","Y50-64","2011","23","","" +"IE","F","POP","TOTAL","UNK","F","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","G","Y15-29","2011","631","","" +"IE","F","POP","TOTAL","UNK","G","Y30-49","2011","726","","" +"IE","F","POP","TOTAL","UNK","G","Y50-64","2011","372","","" +"IE","F","POP","TOTAL","UNK","G","Y65-84","2011","49","","" +"IE","F","POP","TOTAL","UNK","G","Y_GE85","2011","2","d","" +"IE","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","H","Y15-29","2011","35","","" +"IE","F","POP","TOTAL","UNK","H","Y30-49","2011","63","","" +"IE","F","POP","TOTAL","UNK","H","Y50-64","2011","38","","" +"IE","F","POP","TOTAL","UNK","H","Y65-84","2011","7","d","" +"IE","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","I","Y15-29","2011","456","","" +"IE","F","POP","TOTAL","UNK","I","Y30-49","2011","455","","" +"IE","F","POP","TOTAL","UNK","I","Y50-64","2011","197","","" +"IE","F","POP","TOTAL","UNK","I","Y65-84","2011","24","","" +"IE","F","POP","TOTAL","UNK","I","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","J","Y15-29","2011","88","","" +"IE","F","POP","TOTAL","UNK","J","Y30-49","2011","96","","" +"IE","F","POP","TOTAL","UNK","J","Y50-64","2011","34","","" +"IE","F","POP","TOTAL","UNK","J","Y65-84","2011","4","d","" +"IE","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","K","Y15-29","2011","118","","" +"IE","F","POP","TOTAL","UNK","K","Y30-49","2011","143","","" +"IE","F","POP","TOTAL","UNK","K","Y50-64","2011","48","","" +"IE","F","POP","TOTAL","UNK","K","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","L","Y15-29","2011","8","d","" +"IE","F","POP","TOTAL","UNK","L","Y30-49","2011","18","","" +"IE","F","POP","TOTAL","UNK","L","Y50-64","2011","11","","" +"IE","F","POP","TOTAL","UNK","L","Y65-84","2011","1","d","" +"IE","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","M","Y15-29","2011","95","","" +"IE","F","POP","TOTAL","UNK","M","Y30-49","2011","135","","" +"IE","F","POP","TOTAL","UNK","M","Y50-64","2011","59","","" +"IE","F","POP","TOTAL","UNK","M","Y65-84","2011","10","","" +"IE","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","N","Y15-29","2011","147","","" +"IE","F","POP","TOTAL","UNK","N","Y30-49","2011","251","","" +"IE","F","POP","TOTAL","UNK","N","Y50-64","2011","188","","" +"IE","F","POP","TOTAL","UNK","N","Y65-84","2011","15","","" +"IE","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"IE","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"IE","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"IE","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","O","Y15-29","2011","73","","" +"IE","F","POP","TOTAL","UNK","O","Y30-49","2011","163","","" +"IE","F","POP","TOTAL","UNK","O","Y50-64","2011","138","","" +"IE","F","POP","TOTAL","UNK","O","Y65-84","2011","14","","" +"IE","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","P","Y15-29","2011","1330","","" +"IE","F","POP","TOTAL","UNK","P","Y30-49","2011","870","","" +"IE","F","POP","TOTAL","UNK","P","Y50-64","2011","333","","" +"IE","F","POP","TOTAL","UNK","P","Y65-84","2011","29","","" +"IE","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","Q","Y15-29","2011","329","","" +"IE","F","POP","TOTAL","UNK","Q","Y30-49","2011","815","","" +"IE","F","POP","TOTAL","UNK","Q","Y50-64","2011","521","","" +"IE","F","POP","TOTAL","UNK","Q","Y65-84","2011","44","","" +"IE","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","R","Y15-29","2011","86","","" +"IE","F","POP","TOTAL","UNK","R","Y30-49","2011","97","","" +"IE","F","POP","TOTAL","UNK","R","Y50-64","2011","40","","" +"IE","F","POP","TOTAL","UNK","R","Y65-84","2011","7","d","" +"IE","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","S","Y15-29","2011","208","","" +"IE","F","POP","TOTAL","UNK","S","Y30-49","2011","195","","" +"IE","F","POP","TOTAL","UNK","S","Y50-64","2011","88","","" +"IE","F","POP","TOTAL","UNK","S","Y65-84","2011","13","","" +"IE","F","POP","TOTAL","UNK","S","Y_GE85","2011","1","d","" +"IE","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","T","Y15-29","2011","10","","" +"IE","F","POP","TOTAL","UNK","T","Y30-49","2011","17","","" +"IE","F","POP","TOTAL","UNK","T","Y50-64","2011","15","","" +"IE","F","POP","TOTAL","UNK","T","Y65-84","2011","2","d","" +"IE","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","U","Y15-29","2011","4","d","" +"IE","F","POP","TOTAL","UNK","U","Y30-49","2011","9","d","" +"IE","F","POP","TOTAL","UNK","U","Y50-64","2011","2","d","" +"IE","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"IE","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"IE","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"IE","F","POP","TOTAL","UNK","UNK","Y15-29","2011","36799","","" +"IE","F","POP","TOTAL","UNK","UNK","Y30-49","2011","34783","","" +"IE","F","POP","TOTAL","UNK","UNK","Y50-64","2011","18398","","" +"IE","F","POP","TOTAL","UNK","UNK","Y65-84","2011","2666","","" +"IE","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","143","","" +"IE","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","NAP","Y15-29","2011","207324","","" +"IE","M","POP","TOTAL","NAP","NAP","Y30-49","2011","54002","","" +"IE","M","POP","TOTAL","NAP","NAP","Y50-64","2011","83668","","" +"IE","M","POP","TOTAL","NAP","NAP","Y65-84","2011","189877","","" +"IE","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","17692","","" +"IE","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","499927","","" +"IE","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","C","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","OC0","C","Y30-49","2011","3","d","" +"IE","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","H","Y15-29","2011","23","","" +"IE","M","POP","TOTAL","OC0","H","Y30-49","2011","43","","" +"IE","M","POP","TOTAL","OC0","H","Y50-64","2011","15","","" +"IE","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","I","Y50-64","2011","1","d","" +"IE","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","K","Y30-49","2011","1","d","" +"IE","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","N","Y30-49","2011","1","d","" +"IE","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","O","Y15-29","2011","2269","","" +"IE","M","POP","TOTAL","OC0","O","Y30-49","2011","3710","","" +"IE","M","POP","TOTAL","OC0","O","Y50-64","2011","1392","","" +"IE","M","POP","TOTAL","OC0","O","Y65-84","2011","42","","" +"IE","M","POP","TOTAL","OC0","O","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","Q","Y30-49","2011","1","d","" +"IE","M","POP","TOTAL","OC0","Q","Y50-64","2011","2","d","" +"IE","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","R","Y30-49","2011","1","d","" +"IE","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC0","UNK","Y15-29","2011","4","d","" +"IE","M","POP","TOTAL","OC0","UNK","Y30-49","2011","3","d","" +"IE","M","POP","TOTAL","OC0","UNK","Y50-64","2011","4","d","" +"IE","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","A","Y15-29","2011","201","","" +"IE","M","POP","TOTAL","OC1","A","Y30-49","2011","903","","" +"IE","M","POP","TOTAL","OC1","A","Y50-64","2011","527","","" +"IE","M","POP","TOTAL","OC1","A","Y65-84","2011","65","","" +"IE","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","B","Y15-29","2011","25","","" +"IE","M","POP","TOTAL","OC1","B","Y30-49","2011","246","","" +"IE","M","POP","TOTAL","OC1","B","Y50-64","2011","159","","" +"IE","M","POP","TOTAL","OC1","B","Y65-84","2011","24","","" +"IE","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","C","Y15-29","2011","627","","" +"IE","M","POP","TOTAL","OC1","C","Y30-49","2011","8661","","" +"IE","M","POP","TOTAL","OC1","C","Y50-64","2011","3962","","" +"IE","M","POP","TOTAL","OC1","C","Y65-84","2011","416","","" +"IE","M","POP","TOTAL","OC1","C","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","D","Y15-29","2011","33","","" +"IE","M","POP","TOTAL","OC1","D","Y30-49","2011","432","","" +"IE","M","POP","TOTAL","OC1","D","Y50-64","2011","248","","" +"IE","M","POP","TOTAL","OC1","D","Y65-84","2011","8","d","" +"IE","M","POP","TOTAL","OC1","D","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","E","Y15-29","2011","99","","" +"IE","M","POP","TOTAL","OC1","E","Y30-49","2011","613","","" +"IE","M","POP","TOTAL","OC1","E","Y50-64","2011","238","","" +"IE","M","POP","TOTAL","OC1","E","Y65-84","2011","19","","" +"IE","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","F","Y15-29","2011","404","","" +"IE","M","POP","TOTAL","OC1","F","Y30-49","2011","4101","","" +"IE","M","POP","TOTAL","OC1","F","Y50-64","2011","1726","","" +"IE","M","POP","TOTAL","OC1","F","Y65-84","2011","165","","" +"IE","M","POP","TOTAL","OC1","F","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","G","Y15-29","2011","4327","","" +"IE","M","POP","TOTAL","OC1","G","Y30-49","2011","17079","","" +"IE","M","POP","TOTAL","OC1","G","Y50-64","2011","6538","","" +"IE","M","POP","TOTAL","OC1","G","Y65-84","2011","1018","","" +"IE","M","POP","TOTAL","OC1","G","Y_GE85","2011","11","","" +"IE","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","H","Y15-29","2011","256","","" +"IE","M","POP","TOTAL","OC1","H","Y30-49","2011","2731","","" +"IE","M","POP","TOTAL","OC1","H","Y50-64","2011","1256","","" +"IE","M","POP","TOTAL","OC1","H","Y65-84","2011","107","","" +"IE","M","POP","TOTAL","OC1","H","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","I","Y15-29","2011","2271","","" +"IE","M","POP","TOTAL","OC1","I","Y30-49","2011","8484","","" +"IE","M","POP","TOTAL","OC1","I","Y50-64","2011","3430","","" +"IE","M","POP","TOTAL","OC1","I","Y65-84","2011","525","","" +"IE","M","POP","TOTAL","OC1","I","Y_GE85","2011","9","d","" +"IE","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","J","Y15-29","2011","330","","" +"IE","M","POP","TOTAL","OC1","J","Y30-49","2011","3114","","" +"IE","M","POP","TOTAL","OC1","J","Y50-64","2011","904","","" +"IE","M","POP","TOTAL","OC1","J","Y65-84","2011","59","","" +"IE","M","POP","TOTAL","OC1","J","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","K","Y15-29","2011","554","","" +"IE","M","POP","TOTAL","OC1","K","Y30-49","2011","4923","","" +"IE","M","POP","TOTAL","OC1","K","Y50-64","2011","2030","","" +"IE","M","POP","TOTAL","OC1","K","Y65-84","2011","102","","" +"IE","M","POP","TOTAL","OC1","K","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","L","Y15-29","2011","29","","" +"IE","M","POP","TOTAL","OC1","L","Y30-49","2011","303","","" +"IE","M","POP","TOTAL","OC1","L","Y50-64","2011","173","","" +"IE","M","POP","TOTAL","OC1","L","Y65-84","2011","26","","" +"IE","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","M","Y15-29","2011","266","","" +"IE","M","POP","TOTAL","OC1","M","Y30-49","2011","2450","","" +"IE","M","POP","TOTAL","OC1","M","Y50-64","2011","1075","","" +"IE","M","POP","TOTAL","OC1","M","Y65-84","2011","127","","" +"IE","M","POP","TOTAL","OC1","M","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","N","Y15-29","2011","350","","" +"IE","M","POP","TOTAL","OC1","N","Y30-49","2011","2293","","" +"IE","M","POP","TOTAL","OC1","N","Y50-64","2011","921","","" +"IE","M","POP","TOTAL","OC1","N","Y65-84","2011","111","","" +"IE","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","O","Y15-29","2011","78","","" +"IE","M","POP","TOTAL","OC1","O","Y30-49","2011","1777","","" +"IE","M","POP","TOTAL","OC1","O","Y50-64","2011","2060","","" +"IE","M","POP","TOTAL","OC1","O","Y65-84","2011","86","","" +"IE","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","P","Y15-29","2011","125","","" +"IE","M","POP","TOTAL","OC1","P","Y30-49","2011","1321","","" +"IE","M","POP","TOTAL","OC1","P","Y50-64","2011","1248","","" +"IE","M","POP","TOTAL","OC1","P","Y65-84","2011","61","","" +"IE","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","Q","Y15-29","2011","75","","" +"IE","M","POP","TOTAL","OC1","Q","Y30-49","2011","1046","","" +"IE","M","POP","TOTAL","OC1","Q","Y50-64","2011","765","","" +"IE","M","POP","TOTAL","OC1","Q","Y65-84","2011","45","","" +"IE","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","R","Y15-29","2011","486","","" +"IE","M","POP","TOTAL","OC1","R","Y30-49","2011","1545","","" +"IE","M","POP","TOTAL","OC1","R","Y50-64","2011","598","","" +"IE","M","POP","TOTAL","OC1","R","Y65-84","2011","71","","" +"IE","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","S","Y15-29","2011","51","","" +"IE","M","POP","TOTAL","OC1","S","Y30-49","2011","434","","" +"IE","M","POP","TOTAL","OC1","S","Y50-64","2011","267","","" +"IE","M","POP","TOTAL","OC1","S","Y65-84","2011","38","","" +"IE","M","POP","TOTAL","OC1","S","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","T","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC1","T","Y50-64","2011","1","d","" +"IE","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","U","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","OC1","U","Y30-49","2011","22","","" +"IE","M","POP","TOTAL","OC1","U","Y50-64","2011","26","","" +"IE","M","POP","TOTAL","OC1","U","Y65-84","2011","4","d","" +"IE","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC1","UNK","Y15-29","2011","203","","" +"IE","M","POP","TOTAL","OC1","UNK","Y30-49","2011","1019","","" +"IE","M","POP","TOTAL","OC1","UNK","Y50-64","2011","796","","" +"IE","M","POP","TOTAL","OC1","UNK","Y65-84","2011","189","","" +"IE","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","4","d","" +"IE","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","A","Y15-29","2011","60","","" +"IE","M","POP","TOTAL","OC2","A","Y30-49","2011","262","","" +"IE","M","POP","TOTAL","OC2","A","Y50-64","2011","126","","" +"IE","M","POP","TOTAL","OC2","A","Y65-84","2011","12","","" +"IE","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","B","Y15-29","2011","62","","" +"IE","M","POP","TOTAL","OC2","B","Y30-49","2011","218","","" +"IE","M","POP","TOTAL","OC2","B","Y50-64","2011","139","","" +"IE","M","POP","TOTAL","OC2","B","Y65-84","2011","10","","" +"IE","M","POP","TOTAL","OC2","B","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","C","Y15-29","2011","2949","","" +"IE","M","POP","TOTAL","OC2","C","Y30-49","2011","14613","","" +"IE","M","POP","TOTAL","OC2","C","Y50-64","2011","3064","","" +"IE","M","POP","TOTAL","OC2","C","Y65-84","2011","162","","" +"IE","M","POP","TOTAL","OC2","C","Y_GE85","2011","4","d","" +"IE","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","D","Y15-29","2011","345","","" +"IE","M","POP","TOTAL","OC2","D","Y30-49","2011","1313","","" +"IE","M","POP","TOTAL","OC2","D","Y50-64","2011","568","","" +"IE","M","POP","TOTAL","OC2","D","Y65-84","2011","15","","" +"IE","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","E","Y15-29","2011","93","","" +"IE","M","POP","TOTAL","OC2","E","Y30-49","2011","384","","" +"IE","M","POP","TOTAL","OC2","E","Y50-64","2011","130","","" +"IE","M","POP","TOTAL","OC2","E","Y65-84","2011","12","","" +"IE","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","F","Y15-29","2011","1771","","" +"IE","M","POP","TOTAL","OC2","F","Y30-49","2011","5071","","" +"IE","M","POP","TOTAL","OC2","F","Y50-64","2011","1347","","" +"IE","M","POP","TOTAL","OC2","F","Y65-84","2011","118","","" +"IE","M","POP","TOTAL","OC2","F","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","G","Y15-29","2011","1664","","" +"IE","M","POP","TOTAL","OC2","G","Y30-49","2011","7569","","" +"IE","M","POP","TOTAL","OC2","G","Y50-64","2011","2252","","" +"IE","M","POP","TOTAL","OC2","G","Y65-84","2011","203","","" +"IE","M","POP","TOTAL","OC2","G","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","H","Y15-29","2011","264","","" +"IE","M","POP","TOTAL","OC2","H","Y30-49","2011","1287","","" +"IE","M","POP","TOTAL","OC2","H","Y50-64","2011","451","","" +"IE","M","POP","TOTAL","OC2","H","Y65-84","2011","25","","" +"IE","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","I","Y15-29","2011","232","","" +"IE","M","POP","TOTAL","OC2","I","Y30-49","2011","725","","" +"IE","M","POP","TOTAL","OC2","I","Y50-64","2011","181","","" +"IE","M","POP","TOTAL","OC2","I","Y65-84","2011","24","","" +"IE","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","J","Y15-29","2011","4695","","" +"IE","M","POP","TOTAL","OC2","J","Y30-49","2011","18892","","" +"IE","M","POP","TOTAL","OC2","J","Y50-64","2011","5015","","" +"IE","M","POP","TOTAL","OC2","J","Y65-84","2011","205","","" +"IE","M","POP","TOTAL","OC2","J","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","K","Y15-29","2011","2490","","" +"IE","M","POP","TOTAL","OC2","K","Y30-49","2011","8776","","" +"IE","M","POP","TOTAL","OC2","K","Y50-64","2011","1645","","" +"IE","M","POP","TOTAL","OC2","K","Y65-84","2011","98","","" +"IE","M","POP","TOTAL","OC2","K","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","L","Y15-29","2011","106","","" +"IE","M","POP","TOTAL","OC2","L","Y30-49","2011","466","","" +"IE","M","POP","TOTAL","OC2","L","Y50-64","2011","148","","" +"IE","M","POP","TOTAL","OC2","L","Y65-84","2011","16","","" +"IE","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","M","Y15-29","2011","5835","","" +"IE","M","POP","TOTAL","OC2","M","Y30-49","2011","17165","","" +"IE","M","POP","TOTAL","OC2","M","Y50-64","2011","7174","","" +"IE","M","POP","TOTAL","OC2","M","Y65-84","2011","1122","","" +"IE","M","POP","TOTAL","OC2","M","Y_GE85","2011","14","","" +"IE","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","N","Y15-29","2011","629","","" +"IE","M","POP","TOTAL","OC2","N","Y30-49","2011","2028","","" +"IE","M","POP","TOTAL","OC2","N","Y50-64","2011","521","","" +"IE","M","POP","TOTAL","OC2","N","Y65-84","2011","46","","" +"IE","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","O","Y15-29","2011","411","","" +"IE","M","POP","TOTAL","OC2","O","Y30-49","2011","3613","","" +"IE","M","POP","TOTAL","OC2","O","Y50-64","2011","1963","","" +"IE","M","POP","TOTAL","OC2","O","Y65-84","2011","105","","" +"IE","M","POP","TOTAL","OC2","O","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","P","Y15-29","2011","4302","","" +"IE","M","POP","TOTAL","OC2","P","Y30-49","2011","14373","","" +"IE","M","POP","TOTAL","OC2","P","Y50-64","2011","7952","","" +"IE","M","POP","TOTAL","OC2","P","Y65-84","2011","462","","" +"IE","M","POP","TOTAL","OC2","P","Y_GE85","2011","6","d","" +"IE","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","Q","Y15-29","2011","1511","","" +"IE","M","POP","TOTAL","OC2","Q","Y30-49","2011","9211","","" +"IE","M","POP","TOTAL","OC2","Q","Y50-64","2011","4256","","" +"IE","M","POP","TOTAL","OC2","Q","Y65-84","2011","522","","" +"IE","M","POP","TOTAL","OC2","Q","Y_GE85","2011","10","","" +"IE","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","R","Y15-29","2011","657","","" +"IE","M","POP","TOTAL","OC2","R","Y30-49","2011","2592","","" +"IE","M","POP","TOTAL","OC2","R","Y50-64","2011","1043","","" +"IE","M","POP","TOTAL","OC2","R","Y65-84","2011","135","","" +"IE","M","POP","TOTAL","OC2","R","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","S","Y15-29","2011","171","","" +"IE","M","POP","TOTAL","OC2","S","Y30-49","2011","1138","","" +"IE","M","POP","TOTAL","OC2","S","Y50-64","2011","1163","","" +"IE","M","POP","TOTAL","OC2","S","Y65-84","2011","742","","" +"IE","M","POP","TOTAL","OC2","S","Y_GE85","2011","23","","" +"IE","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC2","T","Y30-49","2011","2","d","" +"IE","M","POP","TOTAL","OC2","T","Y50-64","2011","1","d","" +"IE","M","POP","TOTAL","OC2","T","Y65-84","2011","1","d","" +"IE","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","U","Y15-29","2011","9","d","" +"IE","M","POP","TOTAL","OC2","U","Y30-49","2011","28","","" +"IE","M","POP","TOTAL","OC2","U","Y50-64","2011","11","","" +"IE","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC2","UNK","Y15-29","2011","653","","" +"IE","M","POP","TOTAL","OC2","UNK","Y30-49","2011","2104","","" +"IE","M","POP","TOTAL","OC2","UNK","Y50-64","2011","1313","","" +"IE","M","POP","TOTAL","OC2","UNK","Y65-84","2011","347","","" +"IE","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","5","d","" +"IE","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","A","Y15-29","2011","324","","" +"IE","M","POP","TOTAL","OC3","A","Y30-49","2011","386","","" +"IE","M","POP","TOTAL","OC3","A","Y50-64","2011","154","","" +"IE","M","POP","TOTAL","OC3","A","Y65-84","2011","14","","" +"IE","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","B","Y15-29","2011","45","","" +"IE","M","POP","TOTAL","OC3","B","Y30-49","2011","173","","" +"IE","M","POP","TOTAL","OC3","B","Y50-64","2011","111","","" +"IE","M","POP","TOTAL","OC3","B","Y65-84","2011","7","d","" +"IE","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","C","Y15-29","2011","2756","","" +"IE","M","POP","TOTAL","OC3","C","Y30-49","2011","12137","","" +"IE","M","POP","TOTAL","OC3","C","Y50-64","2011","2991","","" +"IE","M","POP","TOTAL","OC3","C","Y65-84","2011","161","","" +"IE","M","POP","TOTAL","OC3","C","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","D","Y15-29","2011","268","","" +"IE","M","POP","TOTAL","OC3","D","Y30-49","2011","1213","","" +"IE","M","POP","TOTAL","OC3","D","Y50-64","2011","909","","" +"IE","M","POP","TOTAL","OC3","D","Y65-84","2011","15","","" +"IE","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","E","Y15-29","2011","111","","" +"IE","M","POP","TOTAL","OC3","E","Y30-49","2011","520","","" +"IE","M","POP","TOTAL","OC3","E","Y50-64","2011","309","","" +"IE","M","POP","TOTAL","OC3","E","Y65-84","2011","17","","" +"IE","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","F","Y15-29","2011","743","","" +"IE","M","POP","TOTAL","OC3","F","Y30-49","2011","3220","","" +"IE","M","POP","TOTAL","OC3","F","Y50-64","2011","1158","","" +"IE","M","POP","TOTAL","OC3","F","Y65-84","2011","44","","" +"IE","M","POP","TOTAL","OC3","F","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","G","Y15-29","2011","2362","","" +"IE","M","POP","TOTAL","OC3","G","Y30-49","2011","7666","","" +"IE","M","POP","TOTAL","OC3","G","Y50-64","2011","2638","","" +"IE","M","POP","TOTAL","OC3","G","Y65-84","2011","304","","" +"IE","M","POP","TOTAL","OC3","G","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","H","Y15-29","2011","382","","" +"IE","M","POP","TOTAL","OC3","H","Y30-49","2011","1934","","" +"IE","M","POP","TOTAL","OC3","H","Y50-64","2011","693","","" +"IE","M","POP","TOTAL","OC3","H","Y65-84","2011","35","","" +"IE","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","I","Y15-29","2011","3903","","" +"IE","M","POP","TOTAL","OC3","I","Y30-49","2011","8057","","" +"IE","M","POP","TOTAL","OC3","I","Y50-64","2011","1219","","" +"IE","M","POP","TOTAL","OC3","I","Y65-84","2011","50","","" +"IE","M","POP","TOTAL","OC3","I","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","J","Y15-29","2011","2126","","" +"IE","M","POP","TOTAL","OC3","J","Y30-49","2011","4724","","" +"IE","M","POP","TOTAL","OC3","J","Y50-64","2011","993","","" +"IE","M","POP","TOTAL","OC3","J","Y65-84","2011","49","","" +"IE","M","POP","TOTAL","OC3","J","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","K","Y15-29","2011","1831","","" +"IE","M","POP","TOTAL","OC3","K","Y30-49","2011","4652","","" +"IE","M","POP","TOTAL","OC3","K","Y50-64","2011","1087","","" +"IE","M","POP","TOTAL","OC3","K","Y65-84","2011","112","","" +"IE","M","POP","TOTAL","OC3","K","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","L","Y15-29","2011","188","","" +"IE","M","POP","TOTAL","OC3","L","Y30-49","2011","897","","" +"IE","M","POP","TOTAL","OC3","L","Y50-64","2011","500","","" +"IE","M","POP","TOTAL","OC3","L","Y65-84","2011","107","","" +"IE","M","POP","TOTAL","OC3","L","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","M","Y15-29","2011","1422","","" +"IE","M","POP","TOTAL","OC3","M","Y30-49","2011","4211","","" +"IE","M","POP","TOTAL","OC3","M","Y50-64","2011","1501","","" +"IE","M","POP","TOTAL","OC3","M","Y65-84","2011","136","","" +"IE","M","POP","TOTAL","OC3","M","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","N","Y15-29","2011","617","","" +"IE","M","POP","TOTAL","OC3","N","Y30-49","2011","1478","","" +"IE","M","POP","TOTAL","OC3","N","Y50-64","2011","396","","" +"IE","M","POP","TOTAL","OC3","N","Y65-84","2011","31","","" +"IE","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","O","Y15-29","2011","1196","","" +"IE","M","POP","TOTAL","OC3","O","Y30-49","2011","7286","","" +"IE","M","POP","TOTAL","OC3","O","Y50-64","2011","4970","","" +"IE","M","POP","TOTAL","OC3","O","Y65-84","2011","103","","" +"IE","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","P","Y15-29","2011","470","","" +"IE","M","POP","TOTAL","OC3","P","Y30-49","2011","1700","","" +"IE","M","POP","TOTAL","OC3","P","Y50-64","2011","852","","" +"IE","M","POP","TOTAL","OC3","P","Y65-84","2011","30","","" +"IE","M","POP","TOTAL","OC3","P","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","Q","Y15-29","2011","648","","" +"IE","M","POP","TOTAL","OC3","Q","Y30-49","2011","3344","","" +"IE","M","POP","TOTAL","OC3","Q","Y50-64","2011","1510","","" +"IE","M","POP","TOTAL","OC3","Q","Y65-84","2011","65","","" +"IE","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","R","Y15-29","2011","1201","","" +"IE","M","POP","TOTAL","OC3","R","Y30-49","2011","1574","","" +"IE","M","POP","TOTAL","OC3","R","Y50-64","2011","379","","" +"IE","M","POP","TOTAL","OC3","R","Y65-84","2011","16","","" +"IE","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","S","Y15-29","2011","209","","" +"IE","M","POP","TOTAL","OC3","S","Y30-49","2011","603","","" +"IE","M","POP","TOTAL","OC3","S","Y50-64","2011","256","","" +"IE","M","POP","TOTAL","OC3","S","Y65-84","2011","12","","" +"IE","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","T","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","OC3","T","Y30-49","2011","5","d","" +"IE","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC3","T","Y65-84","2011","1","d","" +"IE","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","U","Y15-29","2011","3","d","" +"IE","M","POP","TOTAL","OC3","U","Y30-49","2011","18","","" +"IE","M","POP","TOTAL","OC3","U","Y50-64","2011","7","d","" +"IE","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC3","UNK","Y15-29","2011","629","","" +"IE","M","POP","TOTAL","OC3","UNK","Y30-49","2011","1658","","" +"IE","M","POP","TOTAL","OC3","UNK","Y50-64","2011","863","","" +"IE","M","POP","TOTAL","OC3","UNK","Y65-84","2011","111","","" +"IE","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","A","Y15-29","2011","36","","" +"IE","M","POP","TOTAL","OC4","A","Y30-49","2011","79","","" +"IE","M","POP","TOTAL","OC4","A","Y50-64","2011","52","","" +"IE","M","POP","TOTAL","OC4","A","Y65-84","2011","5","d","" +"IE","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","B","Y15-29","2011","17","","" +"IE","M","POP","TOTAL","OC4","B","Y30-49","2011","37","","" +"IE","M","POP","TOTAL","OC4","B","Y50-64","2011","47","","" +"IE","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","C","Y15-29","2011","789","","" +"IE","M","POP","TOTAL","OC4","C","Y30-49","2011","2071","","" +"IE","M","POP","TOTAL","OC4","C","Y50-64","2011","612","","" +"IE","M","POP","TOTAL","OC4","C","Y65-84","2011","23","","" +"IE","M","POP","TOTAL","OC4","C","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","D","Y15-29","2011","127","","" +"IE","M","POP","TOTAL","OC4","D","Y30-49","2011","250","","" +"IE","M","POP","TOTAL","OC4","D","Y50-64","2011","190","","" +"IE","M","POP","TOTAL","OC4","D","Y65-84","2011","19","","" +"IE","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","E","Y15-29","2011","55","","" +"IE","M","POP","TOTAL","OC4","E","Y30-49","2011","112","","" +"IE","M","POP","TOTAL","OC4","E","Y50-64","2011","52","","" +"IE","M","POP","TOTAL","OC4","E","Y65-84","2011","5","d","" +"IE","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","F","Y15-29","2011","115","","" +"IE","M","POP","TOTAL","OC4","F","Y30-49","2011","289","","" +"IE","M","POP","TOTAL","OC4","F","Y50-64","2011","163","","" +"IE","M","POP","TOTAL","OC4","F","Y65-84","2011","10","","" +"IE","M","POP","TOTAL","OC4","F","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","G","Y15-29","2011","1281","","" +"IE","M","POP","TOTAL","OC4","G","Y30-49","2011","1990","","" +"IE","M","POP","TOTAL","OC4","G","Y50-64","2011","657","","" +"IE","M","POP","TOTAL","OC4","G","Y65-84","2011","49","","" +"IE","M","POP","TOTAL","OC4","G","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","H","Y15-29","2011","1456","","" +"IE","M","POP","TOTAL","OC4","H","Y30-49","2011","6164","","" +"IE","M","POP","TOTAL","OC4","H","Y50-64","2011","3326","","" +"IE","M","POP","TOTAL","OC4","H","Y65-84","2011","113","","" +"IE","M","POP","TOTAL","OC4","H","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","I","Y15-29","2011","348","","" +"IE","M","POP","TOTAL","OC4","I","Y30-49","2011","417","","" +"IE","M","POP","TOTAL","OC4","I","Y50-64","2011","94","","" +"IE","M","POP","TOTAL","OC4","I","Y65-84","2011","14","","" +"IE","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","J","Y15-29","2011","1003","","" +"IE","M","POP","TOTAL","OC4","J","Y30-49","2011","1255","","" +"IE","M","POP","TOTAL","OC4","J","Y50-64","2011","323","","" +"IE","M","POP","TOTAL","OC4","J","Y65-84","2011","10","","" +"IE","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","K","Y15-29","2011","4007","","" +"IE","M","POP","TOTAL","OC4","K","Y30-49","2011","5246","","" +"IE","M","POP","TOTAL","OC4","K","Y50-64","2011","1299","","" +"IE","M","POP","TOTAL","OC4","K","Y65-84","2011","43","","" +"IE","M","POP","TOTAL","OC4","K","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","L","Y15-29","2011","43","","" +"IE","M","POP","TOTAL","OC4","L","Y30-49","2011","59","","" +"IE","M","POP","TOTAL","OC4","L","Y50-64","2011","17","","" +"IE","M","POP","TOTAL","OC4","L","Y65-84","2011","6","d","" +"IE","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","M","Y15-29","2011","652","","" +"IE","M","POP","TOTAL","OC4","M","Y30-49","2011","905","","" +"IE","M","POP","TOTAL","OC4","M","Y50-64","2011","392","","" +"IE","M","POP","TOTAL","OC4","M","Y65-84","2011","48","","" +"IE","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","N","Y15-29","2011","759","","" +"IE","M","POP","TOTAL","OC4","N","Y30-49","2011","998","","" +"IE","M","POP","TOTAL","OC4","N","Y50-64","2011","281","","" +"IE","M","POP","TOTAL","OC4","N","Y65-84","2011","35","","" +"IE","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","O","Y15-29","2011","435","","" +"IE","M","POP","TOTAL","OC4","O","Y30-49","2011","2412","","" +"IE","M","POP","TOTAL","OC4","O","Y50-64","2011","1705","","" +"IE","M","POP","TOTAL","OC4","O","Y65-84","2011","43","","" +"IE","M","POP","TOTAL","OC4","O","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","P","Y15-29","2011","163","","" +"IE","M","POP","TOTAL","OC4","P","Y30-49","2011","454","","" +"IE","M","POP","TOTAL","OC4","P","Y50-64","2011","283","","" +"IE","M","POP","TOTAL","OC4","P","Y65-84","2011","17","","" +"IE","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","Q","Y15-29","2011","250","","" +"IE","M","POP","TOTAL","OC4","Q","Y30-49","2011","869","","" +"IE","M","POP","TOTAL","OC4","Q","Y50-64","2011","438","","" +"IE","M","POP","TOTAL","OC4","Q","Y65-84","2011","18","","" +"IE","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","R","Y15-29","2011","720","","" +"IE","M","POP","TOTAL","OC4","R","Y30-49","2011","861","","" +"IE","M","POP","TOTAL","OC4","R","Y50-64","2011","318","","" +"IE","M","POP","TOTAL","OC4","R","Y65-84","2011","23","","" +"IE","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","S","Y15-29","2011","84","","" +"IE","M","POP","TOTAL","OC4","S","Y30-49","2011","254","","" +"IE","M","POP","TOTAL","OC4","S","Y50-64","2011","213","","" +"IE","M","POP","TOTAL","OC4","S","Y65-84","2011","29","","" +"IE","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","U","Y15-29","2011","12","","" +"IE","M","POP","TOTAL","OC4","U","Y30-49","2011","95","","" +"IE","M","POP","TOTAL","OC4","U","Y50-64","2011","44","","" +"IE","M","POP","TOTAL","OC4","U","Y65-84","2011","1","d","" +"IE","M","POP","TOTAL","OC4","U","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC4","UNK","Y15-29","2011","316","","" +"IE","M","POP","TOTAL","OC4","UNK","Y30-49","2011","583","","" +"IE","M","POP","TOTAL","OC4","UNK","Y50-64","2011","354","","" +"IE","M","POP","TOTAL","OC4","UNK","Y65-84","2011","49","","" +"IE","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","A","Y15-29","2011","134","","" +"IE","M","POP","TOTAL","OC5","A","Y30-49","2011","459","","" +"IE","M","POP","TOTAL","OC5","A","Y50-64","2011","287","","" +"IE","M","POP","TOTAL","OC5","A","Y65-84","2011","49","","" +"IE","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","B","Y15-29","2011","9","d","" +"IE","M","POP","TOTAL","OC5","B","Y30-49","2011","18","","" +"IE","M","POP","TOTAL","OC5","B","Y50-64","2011","17","","" +"IE","M","POP","TOTAL","OC5","B","Y65-84","2011","3","d","" +"IE","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","C","Y15-29","2011","606","","" +"IE","M","POP","TOTAL","OC5","C","Y30-49","2011","1681","","" +"IE","M","POP","TOTAL","OC5","C","Y50-64","2011","777","","" +"IE","M","POP","TOTAL","OC5","C","Y65-84","2011","88","","" +"IE","M","POP","TOTAL","OC5","C","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","D","Y15-29","2011","44","","" +"IE","M","POP","TOTAL","OC5","D","Y30-49","2011","61","","" +"IE","M","POP","TOTAL","OC5","D","Y50-64","2011","49","","" +"IE","M","POP","TOTAL","OC5","D","Y65-84","2011","7","d","" +"IE","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","E","Y15-29","2011","25","","" +"IE","M","POP","TOTAL","OC5","E","Y30-49","2011","111","","" +"IE","M","POP","TOTAL","OC5","E","Y50-64","2011","59","","" +"IE","M","POP","TOTAL","OC5","E","Y65-84","2011","2","d","" +"IE","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","F","Y15-29","2011","183","","" +"IE","M","POP","TOTAL","OC5","F","Y30-49","2011","709","","" +"IE","M","POP","TOTAL","OC5","F","Y50-64","2011","347","","" +"IE","M","POP","TOTAL","OC5","F","Y65-84","2011","38","","" +"IE","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","G","Y15-29","2011","16426","","" +"IE","M","POP","TOTAL","OC5","G","Y30-49","2011","16586","","" +"IE","M","POP","TOTAL","OC5","G","Y50-64","2011","6048","","" +"IE","M","POP","TOTAL","OC5","G","Y65-84","2011","751","","" +"IE","M","POP","TOTAL","OC5","G","Y_GE85","2011","10","","" +"IE","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","H","Y15-29","2011","379","","" +"IE","M","POP","TOTAL","OC5","H","Y30-49","2011","1187","","" +"IE","M","POP","TOTAL","OC5","H","Y50-64","2011","492","","" +"IE","M","POP","TOTAL","OC5","H","Y65-84","2011","33","","" +"IE","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","I","Y15-29","2011","6529","","" +"IE","M","POP","TOTAL","OC5","I","Y30-49","2011","5523","","" +"IE","M","POP","TOTAL","OC5","I","Y50-64","2011","1414","","" +"IE","M","POP","TOTAL","OC5","I","Y65-84","2011","114","","" +"IE","M","POP","TOTAL","OC5","I","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","J","Y15-29","2011","461","","" +"IE","M","POP","TOTAL","OC5","J","Y30-49","2011","425","","" +"IE","M","POP","TOTAL","OC5","J","Y50-64","2011","126","","" +"IE","M","POP","TOTAL","OC5","J","Y65-84","2011","13","","" +"IE","M","POP","TOTAL","OC5","J","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","K","Y15-29","2011","525","","" +"IE","M","POP","TOTAL","OC5","K","Y30-49","2011","1046","","" +"IE","M","POP","TOTAL","OC5","K","Y50-64","2011","419","","" +"IE","M","POP","TOTAL","OC5","K","Y65-84","2011","36","","" +"IE","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","L","Y15-29","2011","133","","" +"IE","M","POP","TOTAL","OC5","L","Y30-49","2011","606","","" +"IE","M","POP","TOTAL","OC5","L","Y50-64","2011","405","","" +"IE","M","POP","TOTAL","OC5","L","Y65-84","2011","79","","" +"IE","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","M","Y15-29","2011","326","","" +"IE","M","POP","TOTAL","OC5","M","Y30-49","2011","533","","" +"IE","M","POP","TOTAL","OC5","M","Y50-64","2011","238","","" +"IE","M","POP","TOTAL","OC5","M","Y65-84","2011","29","","" +"IE","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","N","Y15-29","2011","2440","","" +"IE","M","POP","TOTAL","OC5","N","Y30-49","2011","5665","","" +"IE","M","POP","TOTAL","OC5","N","Y50-64","2011","2484","","" +"IE","M","POP","TOTAL","OC5","N","Y65-84","2011","239","","" +"IE","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","O","Y15-29","2011","2853","","" +"IE","M","POP","TOTAL","OC5","O","Y30-49","2011","9880","","" +"IE","M","POP","TOTAL","OC5","O","Y50-64","2011","2761","","" +"IE","M","POP","TOTAL","OC5","O","Y65-84","2011","100","","" +"IE","M","POP","TOTAL","OC5","O","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","P","Y15-29","2011","499","","" +"IE","M","POP","TOTAL","OC5","P","Y30-49","2011","1886","","" +"IE","M","POP","TOTAL","OC5","P","Y50-64","2011","2010","","" +"IE","M","POP","TOTAL","OC5","P","Y65-84","2011","251","","" +"IE","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","Q","Y15-29","2011","1088","","" +"IE","M","POP","TOTAL","OC5","Q","Y30-49","2011","4512","","" +"IE","M","POP","TOTAL","OC5","Q","Y50-64","2011","1941","","" +"IE","M","POP","TOTAL","OC5","Q","Y65-84","2011","81","","" +"IE","M","POP","TOTAL","OC5","Q","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","R","Y15-29","2011","644","","" +"IE","M","POP","TOTAL","OC5","R","Y30-49","2011","672","","" +"IE","M","POP","TOTAL","OC5","R","Y50-64","2011","402","","" +"IE","M","POP","TOTAL","OC5","R","Y65-84","2011","42","","" +"IE","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","S","Y15-29","2011","719","","" +"IE","M","POP","TOTAL","OC5","S","Y30-49","2011","1588","","" +"IE","M","POP","TOTAL","OC5","S","Y50-64","2011","690","","" +"IE","M","POP","TOTAL","OC5","S","Y65-84","2011","157","","" +"IE","M","POP","TOTAL","OC5","S","Y_GE85","2011","4","d","" +"IE","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","T","Y15-29","2011","19","","" +"IE","M","POP","TOTAL","OC5","T","Y30-49","2011","58","","" +"IE","M","POP","TOTAL","OC5","T","Y50-64","2011","43","","" +"IE","M","POP","TOTAL","OC5","T","Y65-84","2011","3","d","" +"IE","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","U","Y15-29","2011","3","d","" +"IE","M","POP","TOTAL","OC5","U","Y30-49","2011","19","","" +"IE","M","POP","TOTAL","OC5","U","Y50-64","2011","12","","" +"IE","M","POP","TOTAL","OC5","U","Y65-84","2011","1","d","" +"IE","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC5","UNK","Y15-29","2011","789","","" +"IE","M","POP","TOTAL","OC5","UNK","Y30-49","2011","1607","","" +"IE","M","POP","TOTAL","OC5","UNK","Y50-64","2011","1094","","" +"IE","M","POP","TOTAL","OC5","UNK","Y65-84","2011","196","","" +"IE","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","4","d","" +"IE","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","A","Y15-29","2011","3393","","" +"IE","M","POP","TOTAL","OC6","A","Y30-49","2011","26533","","" +"IE","M","POP","TOTAL","OC6","A","Y50-64","2011","28655","","" +"IE","M","POP","TOTAL","OC6","A","Y65-84","2011","11940","","" +"IE","M","POP","TOTAL","OC6","A","Y_GE85","2011","358","","" +"IE","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","B","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","OC6","B","Y30-49","2011","7","d","" +"IE","M","POP","TOTAL","OC6","B","Y50-64","2011","4","d","" +"IE","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","C","Y15-29","2011","42","","" +"IE","M","POP","TOTAL","OC6","C","Y30-49","2011","155","","" +"IE","M","POP","TOTAL","OC6","C","Y50-64","2011","87","","" +"IE","M","POP","TOTAL","OC6","C","Y65-84","2011","5","d","" +"IE","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","D","Y15-29","2011","2","d","" +"IE","M","POP","TOTAL","OC6","D","Y30-49","2011","9","d","" +"IE","M","POP","TOTAL","OC6","D","Y50-64","2011","1","d","" +"IE","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","E","Y15-29","2011","2","d","" +"IE","M","POP","TOTAL","OC6","E","Y30-49","2011","7","d","" +"IE","M","POP","TOTAL","OC6","E","Y50-64","2011","8","d","" +"IE","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","F","Y15-29","2011","48","","" +"IE","M","POP","TOTAL","OC6","F","Y30-49","2011","141","","" +"IE","M","POP","TOTAL","OC6","F","Y50-64","2011","59","","" +"IE","M","POP","TOTAL","OC6","F","Y65-84","2011","3","d","" +"IE","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","G","Y15-29","2011","91","","" +"IE","M","POP","TOTAL","OC6","G","Y30-49","2011","254","","" +"IE","M","POP","TOTAL","OC6","G","Y50-64","2011","118","","" +"IE","M","POP","TOTAL","OC6","G","Y65-84","2011","12","","" +"IE","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","H","Y15-29","2011","6","d","" +"IE","M","POP","TOTAL","OC6","H","Y30-49","2011","20","","" +"IE","M","POP","TOTAL","OC6","H","Y50-64","2011","8","d","" +"IE","M","POP","TOTAL","OC6","H","Y65-84","2011","2","d","" +"IE","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","I","Y15-29","2011","53","","" +"IE","M","POP","TOTAL","OC6","I","Y30-49","2011","156","","" +"IE","M","POP","TOTAL","OC6","I","Y50-64","2011","103","","" +"IE","M","POP","TOTAL","OC6","I","Y65-84","2011","5","d","" +"IE","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","J","Y15-29","2011","5","d","" +"IE","M","POP","TOTAL","OC6","J","Y30-49","2011","11","","" +"IE","M","POP","TOTAL","OC6","J","Y50-64","2011","7","d","" +"IE","M","POP","TOTAL","OC6","J","Y65-84","2011","1","d","" +"IE","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","K","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","OC6","K","Y30-49","2011","9","d","" +"IE","M","POP","TOTAL","OC6","K","Y50-64","2011","10","","" +"IE","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","L","Y15-29","2011","6","d","" +"IE","M","POP","TOTAL","OC6","L","Y30-49","2011","17","","" +"IE","M","POP","TOTAL","OC6","L","Y50-64","2011","4","d","" +"IE","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","M","Y15-29","2011","11","","" +"IE","M","POP","TOTAL","OC6","M","Y30-49","2011","48","","" +"IE","M","POP","TOTAL","OC6","M","Y50-64","2011","19","","" +"IE","M","POP","TOTAL","OC6","M","Y65-84","2011","3","d","" +"IE","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","N","Y15-29","2011","705","","" +"IE","M","POP","TOTAL","OC6","N","Y30-49","2011","2258","","" +"IE","M","POP","TOTAL","OC6","N","Y50-64","2011","931","","" +"IE","M","POP","TOTAL","OC6","N","Y65-84","2011","68","","" +"IE","M","POP","TOTAL","OC6","N","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","O","Y15-29","2011","16","","" +"IE","M","POP","TOTAL","OC6","O","Y30-49","2011","133","","" +"IE","M","POP","TOTAL","OC6","O","Y50-64","2011","105","","" +"IE","M","POP","TOTAL","OC6","O","Y65-84","2011","3","d","" +"IE","M","POP","TOTAL","OC6","O","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","P","Y15-29","2011","41","","" +"IE","M","POP","TOTAL","OC6","P","Y30-49","2011","165","","" +"IE","M","POP","TOTAL","OC6","P","Y50-64","2011","149","","" +"IE","M","POP","TOTAL","OC6","P","Y65-84","2011","12","","" +"IE","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","Q","Y15-29","2011","22","","" +"IE","M","POP","TOTAL","OC6","Q","Y30-49","2011","125","","" +"IE","M","POP","TOTAL","OC6","Q","Y50-64","2011","125","","" +"IE","M","POP","TOTAL","OC6","Q","Y65-84","2011","7","d","" +"IE","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","R","Y15-29","2011","405","","" +"IE","M","POP","TOTAL","OC6","R","Y30-49","2011","859","","" +"IE","M","POP","TOTAL","OC6","R","Y50-64","2011","499","","" +"IE","M","POP","TOTAL","OC6","R","Y65-84","2011","35","","" +"IE","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","S","Y15-29","2011","4","d","" +"IE","M","POP","TOTAL","OC6","S","Y30-49","2011","42","","" +"IE","M","POP","TOTAL","OC6","S","Y50-64","2011","54","","" +"IE","M","POP","TOTAL","OC6","S","Y65-84","2011","3","d","" +"IE","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","T","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","OC6","T","Y30-49","2011","11","","" +"IE","M","POP","TOTAL","OC6","T","Y50-64","2011","8","d","" +"IE","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","U","Y15-29","2011","2","d","" +"IE","M","POP","TOTAL","OC6","U","Y30-49","2011","3","d","" +"IE","M","POP","TOTAL","OC6","U","Y50-64","2011","1","d","" +"IE","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC6","UNK","Y15-29","2011","189","","" +"IE","M","POP","TOTAL","OC6","UNK","Y30-49","2011","936","","" +"IE","M","POP","TOTAL","OC6","UNK","Y50-64","2011","852","","" +"IE","M","POP","TOTAL","OC6","UNK","Y65-84","2011","232","","" +"IE","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","8","d","" +"IE","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","A","Y15-29","2011","269","","" +"IE","M","POP","TOTAL","OC7","A","Y30-49","2011","503","","" +"IE","M","POP","TOTAL","OC7","A","Y50-64","2011","240","","" +"IE","M","POP","TOTAL","OC7","A","Y65-84","2011","18","","" +"IE","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","B","Y15-29","2011","173","","" +"IE","M","POP","TOTAL","OC7","B","Y30-49","2011","380","","" +"IE","M","POP","TOTAL","OC7","B","Y50-64","2011","324","","" +"IE","M","POP","TOTAL","OC7","B","Y65-84","2011","9","d","" +"IE","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","C","Y15-29","2011","8650","","" +"IE","M","POP","TOTAL","OC7","C","Y30-49","2011","25580","","" +"IE","M","POP","TOTAL","OC7","C","Y50-64","2011","9328","","" +"IE","M","POP","TOTAL","OC7","C","Y65-84","2011","451","","" +"IE","M","POP","TOTAL","OC7","C","Y_GE85","2011","10","","" +"IE","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","D","Y15-29","2011","446","","" +"IE","M","POP","TOTAL","OC7","D","Y30-49","2011","904","","" +"IE","M","POP","TOTAL","OC7","D","Y50-64","2011","574","","" +"IE","M","POP","TOTAL","OC7","D","Y65-84","2011","16","","" +"IE","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","E","Y15-29","2011","144","","" +"IE","M","POP","TOTAL","OC7","E","Y30-49","2011","377","","" +"IE","M","POP","TOTAL","OC7","E","Y50-64","2011","164","","" +"IE","M","POP","TOTAL","OC7","E","Y65-84","2011","9","d","" +"IE","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","F","Y15-29","2011","24542","","" +"IE","M","POP","TOTAL","OC7","F","Y30-49","2011","46220","","" +"IE","M","POP","TOTAL","OC7","F","Y50-64","2011","16777","","" +"IE","M","POP","TOTAL","OC7","F","Y65-84","2011","835","","" +"IE","M","POP","TOTAL","OC7","F","Y_GE85","2011","16","","" +"IE","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","G","Y15-29","2011","7740","","" +"IE","M","POP","TOTAL","OC7","G","Y30-49","2011","14120","","" +"IE","M","POP","TOTAL","OC7","G","Y50-64","2011","5630","","" +"IE","M","POP","TOTAL","OC7","G","Y65-84","2011","494","","" +"IE","M","POP","TOTAL","OC7","G","Y_GE85","2011","8","d","" +"IE","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","H","Y15-29","2011","711","","" +"IE","M","POP","TOTAL","OC7","H","Y30-49","2011","1683","","" +"IE","M","POP","TOTAL","OC7","H","Y50-64","2011","846","","" +"IE","M","POP","TOTAL","OC7","H","Y65-84","2011","28","","" +"IE","M","POP","TOTAL","OC7","H","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","I","Y15-29","2011","206","","" +"IE","M","POP","TOTAL","OC7","I","Y30-49","2011","513","","" +"IE","M","POP","TOTAL","OC7","I","Y50-64","2011","251","","" +"IE","M","POP","TOTAL","OC7","I","Y65-84","2011","19","","" +"IE","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","J","Y15-29","2011","503","","" +"IE","M","POP","TOTAL","OC7","J","Y30-49","2011","1482","","" +"IE","M","POP","TOTAL","OC7","J","Y50-64","2011","351","","" +"IE","M","POP","TOTAL","OC7","J","Y65-84","2011","15","","" +"IE","M","POP","TOTAL","OC7","J","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","K","Y15-29","2011","91","","" +"IE","M","POP","TOTAL","OC7","K","Y30-49","2011","299","","" +"IE","M","POP","TOTAL","OC7","K","Y50-64","2011","89","","" +"IE","M","POP","TOTAL","OC7","K","Y65-84","2011","2","d","" +"IE","M","POP","TOTAL","OC7","K","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","L","Y15-29","2011","45","","" +"IE","M","POP","TOTAL","OC7","L","Y30-49","2011","90","","" +"IE","M","POP","TOTAL","OC7","L","Y50-64","2011","49","","" +"IE","M","POP","TOTAL","OC7","L","Y65-84","2011","1","d","" +"IE","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","M","Y15-29","2011","1361","","" +"IE","M","POP","TOTAL","OC7","M","Y30-49","2011","2640","","" +"IE","M","POP","TOTAL","OC7","M","Y50-64","2011","936","","" +"IE","M","POP","TOTAL","OC7","M","Y65-84","2011","48","","" +"IE","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","N","Y15-29","2011","633","","" +"IE","M","POP","TOTAL","OC7","N","Y30-49","2011","1865","","" +"IE","M","POP","TOTAL","OC7","N","Y50-64","2011","572","","" +"IE","M","POP","TOTAL","OC7","N","Y65-84","2011","22","","" +"IE","M","POP","TOTAL","OC7","N","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","O","Y15-29","2011","245","","" +"IE","M","POP","TOTAL","OC7","O","Y30-49","2011","958","","" +"IE","M","POP","TOTAL","OC7","O","Y50-64","2011","987","","" +"IE","M","POP","TOTAL","OC7","O","Y65-84","2011","28","","" +"IE","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","P","Y15-29","2011","254","","" +"IE","M","POP","TOTAL","OC7","P","Y30-49","2011","468","","" +"IE","M","POP","TOTAL","OC7","P","Y50-64","2011","350","","" +"IE","M","POP","TOTAL","OC7","P","Y65-84","2011","24","","" +"IE","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","Q","Y15-29","2011","128","","" +"IE","M","POP","TOTAL","OC7","Q","Y30-49","2011","619","","" +"IE","M","POP","TOTAL","OC7","Q","Y50-64","2011","560","","" +"IE","M","POP","TOTAL","OC7","Q","Y65-84","2011","23","","" +"IE","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","R","Y15-29","2011","81","","" +"IE","M","POP","TOTAL","OC7","R","Y30-49","2011","263","","" +"IE","M","POP","TOTAL","OC7","R","Y50-64","2011","172","","" +"IE","M","POP","TOTAL","OC7","R","Y65-84","2011","20","","" +"IE","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","S","Y15-29","2011","198","","" +"IE","M","POP","TOTAL","OC7","S","Y30-49","2011","839","","" +"IE","M","POP","TOTAL","OC7","S","Y50-64","2011","440","","" +"IE","M","POP","TOTAL","OC7","S","Y65-84","2011","50","","" +"IE","M","POP","TOTAL","OC7","S","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC7","T","Y30-49","2011","3","d","" +"IE","M","POP","TOTAL","OC7","T","Y50-64","2011","3","d","" +"IE","M","POP","TOTAL","OC7","T","Y65-84","2011","1","d","" +"IE","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC7","U","Y30-49","2011","3","d","" +"IE","M","POP","TOTAL","OC7","U","Y50-64","2011","3","d","" +"IE","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC7","UNK","Y15-29","2011","4117","","" +"IE","M","POP","TOTAL","OC7","UNK","Y30-49","2011","9590","","" +"IE","M","POP","TOTAL","OC7","UNK","Y50-64","2011","5719","","" +"IE","M","POP","TOTAL","OC7","UNK","Y65-84","2011","402","","" +"IE","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","9","d","" +"IE","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","A","Y15-29","2011","554","","" +"IE","M","POP","TOTAL","OC8","A","Y30-49","2011","770","","" +"IE","M","POP","TOTAL","OC8","A","Y50-64","2011","324","","" +"IE","M","POP","TOTAL","OC8","A","Y65-84","2011","21","","" +"IE","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","B","Y15-29","2011","349","","" +"IE","M","POP","TOTAL","OC8","B","Y30-49","2011","1606","","" +"IE","M","POP","TOTAL","OC8","B","Y50-64","2011","992","","" +"IE","M","POP","TOTAL","OC8","B","Y65-84","2011","47","","" +"IE","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","C","Y15-29","2011","6428","","" +"IE","M","POP","TOTAL","OC8","C","Y30-49","2011","19840","","" +"IE","M","POP","TOTAL","OC8","C","Y50-64","2011","6827","","" +"IE","M","POP","TOTAL","OC8","C","Y65-84","2011","218","","" +"IE","M","POP","TOTAL","OC8","C","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","D","Y15-29","2011","30","","" +"IE","M","POP","TOTAL","OC8","D","Y30-49","2011","192","","" +"IE","M","POP","TOTAL","OC8","D","Y50-64","2011","131","","" +"IE","M","POP","TOTAL","OC8","D","Y65-84","2011","4","d","" +"IE","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","E","Y15-29","2011","320","","" +"IE","M","POP","TOTAL","OC8","E","Y30-49","2011","1489","","" +"IE","M","POP","TOTAL","OC8","E","Y50-64","2011","542","","" +"IE","M","POP","TOTAL","OC8","E","Y65-84","2011","20","","" +"IE","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","F","Y15-29","2011","1243","","" +"IE","M","POP","TOTAL","OC8","F","Y30-49","2011","4086","","" +"IE","M","POP","TOTAL","OC8","F","Y50-64","2011","1664","","" +"IE","M","POP","TOTAL","OC8","F","Y65-84","2011","72","","" +"IE","M","POP","TOTAL","OC8","F","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","G","Y15-29","2011","2465","","" +"IE","M","POP","TOTAL","OC8","G","Y30-49","2011","7943","","" +"IE","M","POP","TOTAL","OC8","G","Y50-64","2011","3301","","" +"IE","M","POP","TOTAL","OC8","G","Y65-84","2011","180","","" +"IE","M","POP","TOTAL","OC8","G","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","H","Y15-29","2011","2450","","" +"IE","M","POP","TOTAL","OC8","H","Y30-49","2011","20751","","" +"IE","M","POP","TOTAL","OC8","H","Y50-64","2011","12821","","" +"IE","M","POP","TOTAL","OC8","H","Y65-84","2011","1349","","" +"IE","M","POP","TOTAL","OC8","H","Y_GE85","2011","9","d","" +"IE","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","I","Y15-29","2011","237","","" +"IE","M","POP","TOTAL","OC8","I","Y30-49","2011","415","","" +"IE","M","POP","TOTAL","OC8","I","Y50-64","2011","124","","" +"IE","M","POP","TOTAL","OC8","I","Y65-84","2011","12","","" +"IE","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","J","Y15-29","2011","98","","" +"IE","M","POP","TOTAL","OC8","J","Y30-49","2011","258","","" +"IE","M","POP","TOTAL","OC8","J","Y50-64","2011","102","","" +"IE","M","POP","TOTAL","OC8","J","Y65-84","2011","7","d","" +"IE","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","K","Y15-29","2011","9","d","" +"IE","M","POP","TOTAL","OC8","K","Y30-49","2011","53","","" +"IE","M","POP","TOTAL","OC8","K","Y50-64","2011","32","","" +"IE","M","POP","TOTAL","OC8","K","Y65-84","2011","1","d","" +"IE","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","L","Y15-29","2011","8","d","" +"IE","M","POP","TOTAL","OC8","L","Y30-49","2011","25","","" +"IE","M","POP","TOTAL","OC8","L","Y50-64","2011","13","","" +"IE","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","M","Y15-29","2011","135","","" +"IE","M","POP","TOTAL","OC8","M","Y30-49","2011","376","","" +"IE","M","POP","TOTAL","OC8","M","Y50-64","2011","159","","" +"IE","M","POP","TOTAL","OC8","M","Y65-84","2011","5","d","" +"IE","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","N","Y15-29","2011","859","","" +"IE","M","POP","TOTAL","OC8","N","Y30-49","2011","2376","","" +"IE","M","POP","TOTAL","OC8","N","Y50-64","2011","1087","","" +"IE","M","POP","TOTAL","OC8","N","Y65-84","2011","76","","" +"IE","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","O","Y15-29","2011","151","","" +"IE","M","POP","TOTAL","OC8","O","Y30-49","2011","829","","" +"IE","M","POP","TOTAL","OC8","O","Y50-64","2011","877","","" +"IE","M","POP","TOTAL","OC8","O","Y65-84","2011","35","","" +"IE","M","POP","TOTAL","OC8","O","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","P","Y15-29","2011","32","","" +"IE","M","POP","TOTAL","OC8","P","Y30-49","2011","149","","" +"IE","M","POP","TOTAL","OC8","P","Y50-64","2011","181","","" +"IE","M","POP","TOTAL","OC8","P","Y65-84","2011","24","","" +"IE","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","Q","Y15-29","2011","80","","" +"IE","M","POP","TOTAL","OC8","Q","Y30-49","2011","353","","" +"IE","M","POP","TOTAL","OC8","Q","Y50-64","2011","501","","" +"IE","M","POP","TOTAL","OC8","Q","Y65-84","2011","54","","" +"IE","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","R","Y15-29","2011","34","","" +"IE","M","POP","TOTAL","OC8","R","Y30-49","2011","100","","" +"IE","M","POP","TOTAL","OC8","R","Y50-64","2011","88","","" +"IE","M","POP","TOTAL","OC8","R","Y65-84","2011","10","","" +"IE","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","S","Y15-29","2011","43","","" +"IE","M","POP","TOTAL","OC8","S","Y30-49","2011","202","","" +"IE","M","POP","TOTAL","OC8","S","Y50-64","2011","127","","" +"IE","M","POP","TOTAL","OC8","S","Y65-84","2011","18","","" +"IE","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC8","T","Y30-49","2011","2","d","" +"IE","M","POP","TOTAL","OC8","T","Y50-64","2011","2","d","" +"IE","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC8","U","Y30-49","2011","22","","" +"IE","M","POP","TOTAL","OC8","U","Y50-64","2011","24","","" +"IE","M","POP","TOTAL","OC8","U","Y65-84","2011","4","d","" +"IE","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC8","UNK","Y15-29","2011","966","","" +"IE","M","POP","TOTAL","OC8","UNK","Y30-49","2011","3240","","" +"IE","M","POP","TOTAL","OC8","UNK","Y50-64","2011","2275","","" +"IE","M","POP","TOTAL","OC8","UNK","Y65-84","2011","199","","" +"IE","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","5","d","" +"IE","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","A","Y15-29","2011","1907","","" +"IE","M","POP","TOTAL","OC9","A","Y30-49","2011","3130","","" +"IE","M","POP","TOTAL","OC9","A","Y50-64","2011","1660","","" +"IE","M","POP","TOTAL","OC9","A","Y65-84","2011","191","","" +"IE","M","POP","TOTAL","OC9","A","Y_GE85","2011","5","d","" +"IE","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","B","Y15-29","2011","72","","" +"IE","M","POP","TOTAL","OC9","B","Y30-49","2011","194","","" +"IE","M","POP","TOTAL","OC9","B","Y50-64","2011","180","","" +"IE","M","POP","TOTAL","OC9","B","Y65-84","2011","3","d","" +"IE","M","POP","TOTAL","OC9","B","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","C","Y15-29","2011","2366","","" +"IE","M","POP","TOTAL","OC9","C","Y30-49","2011","6044","","" +"IE","M","POP","TOTAL","OC9","C","Y50-64","2011","2183","","" +"IE","M","POP","TOTAL","OC9","C","Y65-84","2011","77","","" +"IE","M","POP","TOTAL","OC9","C","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","D","Y15-29","2011","38","","" +"IE","M","POP","TOTAL","OC9","D","Y30-49","2011","203","","" +"IE","M","POP","TOTAL","OC9","D","Y50-64","2011","124","","" +"IE","M","POP","TOTAL","OC9","D","Y65-84","2011","3","d","" +"IE","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","E","Y15-29","2011","616","","" +"IE","M","POP","TOTAL","OC9","E","Y30-49","2011","1228","","" +"IE","M","POP","TOTAL","OC9","E","Y50-64","2011","503","","" +"IE","M","POP","TOTAL","OC9","E","Y65-84","2011","22","","" +"IE","M","POP","TOTAL","OC9","E","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","F","Y15-29","2011","5093","","" +"IE","M","POP","TOTAL","OC9","F","Y30-49","2011","13548","","" +"IE","M","POP","TOTAL","OC9","F","Y50-64","2011","5721","","" +"IE","M","POP","TOTAL","OC9","F","Y65-84","2011","172","","" +"IE","M","POP","TOTAL","OC9","F","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","G","Y15-29","2011","4079","","" +"IE","M","POP","TOTAL","OC9","G","Y30-49","2011","6161","","" +"IE","M","POP","TOTAL","OC9","G","Y50-64","2011","1843","","" +"IE","M","POP","TOTAL","OC9","G","Y65-84","2011","92","","" +"IE","M","POP","TOTAL","OC9","G","Y_GE85","2011","3","d","" +"IE","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","H","Y15-29","2011","1356","","" +"IE","M","POP","TOTAL","OC9","H","Y30-49","2011","3239","","" +"IE","M","POP","TOTAL","OC9","H","Y50-64","2011","1177","","" +"IE","M","POP","TOTAL","OC9","H","Y65-84","2011","44","","" +"IE","M","POP","TOTAL","OC9","H","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","I","Y15-29","2011","3731","","" +"IE","M","POP","TOTAL","OC9","I","Y30-49","2011","4252","","" +"IE","M","POP","TOTAL","OC9","I","Y50-64","2011","1126","","" +"IE","M","POP","TOTAL","OC9","I","Y65-84","2011","54","","" +"IE","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","J","Y15-29","2011","368","","" +"IE","M","POP","TOTAL","OC9","J","Y30-49","2011","403","","" +"IE","M","POP","TOTAL","OC9","J","Y50-64","2011","119","","" +"IE","M","POP","TOTAL","OC9","J","Y65-84","2011","4","d","" +"IE","M","POP","TOTAL","OC9","J","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","K","Y15-29","2011","66","","" +"IE","M","POP","TOTAL","OC9","K","Y30-49","2011","158","","" +"IE","M","POP","TOTAL","OC9","K","Y50-64","2011","182","","" +"IE","M","POP","TOTAL","OC9","K","Y65-84","2011","5","d","" +"IE","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","L","Y15-29","2011","28","","" +"IE","M","POP","TOTAL","OC9","L","Y30-49","2011","83","","" +"IE","M","POP","TOTAL","OC9","L","Y50-64","2011","49","","" +"IE","M","POP","TOTAL","OC9","L","Y65-84","2011","7","d","" +"IE","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","M","Y15-29","2011","231","","" +"IE","M","POP","TOTAL","OC9","M","Y30-49","2011","515","","" +"IE","M","POP","TOTAL","OC9","M","Y50-64","2011","259","","" +"IE","M","POP","TOTAL","OC9","M","Y65-84","2011","20","","" +"IE","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","N","Y15-29","2011","1676","","" +"IE","M","POP","TOTAL","OC9","N","Y30-49","2011","3411","","" +"IE","M","POP","TOTAL","OC9","N","Y50-64","2011","1282","","" +"IE","M","POP","TOTAL","OC9","N","Y65-84","2011","68","","" +"IE","M","POP","TOTAL","OC9","N","Y_GE85","2011","5","d","" +"IE","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","O","Y15-29","2011","226","","" +"IE","M","POP","TOTAL","OC9","O","Y30-49","2011","2208","","" +"IE","M","POP","TOTAL","OC9","O","Y50-64","2011","2452","","" +"IE","M","POP","TOTAL","OC9","O","Y65-84","2011","83","","" +"IE","M","POP","TOTAL","OC9","O","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","P","Y15-29","2011","248","","" +"IE","M","POP","TOTAL","OC9","P","Y30-49","2011","607","","" +"IE","M","POP","TOTAL","OC9","P","Y50-64","2011","619","","" +"IE","M","POP","TOTAL","OC9","P","Y65-84","2011","34","","" +"IE","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","Q","Y15-29","2011","515","","" +"IE","M","POP","TOTAL","OC9","Q","Y30-49","2011","1811","","" +"IE","M","POP","TOTAL","OC9","Q","Y50-64","2011","1218","","" +"IE","M","POP","TOTAL","OC9","Q","Y65-84","2011","29","","" +"IE","M","POP","TOTAL","OC9","Q","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","R","Y15-29","2011","206","","" +"IE","M","POP","TOTAL","OC9","R","Y30-49","2011","386","","" +"IE","M","POP","TOTAL","OC9","R","Y50-64","2011","270","","" +"IE","M","POP","TOTAL","OC9","R","Y65-84","2011","18","","" +"IE","M","POP","TOTAL","OC9","R","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","S","Y15-29","2011","224","","" +"IE","M","POP","TOTAL","OC9","S","Y30-49","2011","585","","" +"IE","M","POP","TOTAL","OC9","S","Y50-64","2011","296","","" +"IE","M","POP","TOTAL","OC9","S","Y65-84","2011","34","","" +"IE","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","T","Y15-29","2011","5","d","" +"IE","M","POP","TOTAL","OC9","T","Y30-49","2011","4","d","" +"IE","M","POP","TOTAL","OC9","T","Y50-64","2011","3","d","" +"IE","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","U","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","OC9","U","Y30-49","2011","8","d","" +"IE","M","POP","TOTAL","OC9","U","Y50-64","2011","5","d","" +"IE","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","OC9","UNK","Y15-29","2011","1594","","" +"IE","M","POP","TOTAL","OC9","UNK","Y30-49","2011","3832","","" +"IE","M","POP","TOTAL","OC9","UNK","Y50-64","2011","2764","","" +"IE","M","POP","TOTAL","OC9","UNK","Y65-84","2011","191","","" +"IE","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","7","d","" +"IE","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","A","Y15-29","2011","107","","" +"IE","M","POP","TOTAL","UNK","A","Y30-49","2011","234","","" +"IE","M","POP","TOTAL","UNK","A","Y50-64","2011","205","","" +"IE","M","POP","TOTAL","UNK","A","Y65-84","2011","94","","" +"IE","M","POP","TOTAL","UNK","A","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","B","Y15-29","2011","15","","" +"IE","M","POP","TOTAL","UNK","B","Y30-49","2011","36","","" +"IE","M","POP","TOTAL","UNK","B","Y50-64","2011","35","","" +"IE","M","POP","TOTAL","UNK","B","Y65-84","2011","5","d","" +"IE","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","C","Y15-29","2011","580","","" +"IE","M","POP","TOTAL","UNK","C","Y30-49","2011","1238","","" +"IE","M","POP","TOTAL","UNK","C","Y50-64","2011","437","","" +"IE","M","POP","TOTAL","UNK","C","Y65-84","2011","32","","" +"IE","M","POP","TOTAL","UNK","C","Y_GE85","2011","4","d","" +"IE","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","D","Y15-29","2011","20","","" +"IE","M","POP","TOTAL","UNK","D","Y30-49","2011","45","","" +"IE","M","POP","TOTAL","UNK","D","Y50-64","2011","37","","" +"IE","M","POP","TOTAL","UNK","D","Y65-84","2011","2","d","" +"IE","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","E","Y15-29","2011","56","","" +"IE","M","POP","TOTAL","UNK","E","Y30-49","2011","87","","" +"IE","M","POP","TOTAL","UNK","E","Y50-64","2011","44","","" +"IE","M","POP","TOTAL","UNK","E","Y65-84","2011","6","d","" +"IE","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","F","Y15-29","2011","416","","" +"IE","M","POP","TOTAL","UNK","F","Y30-49","2011","707","","" +"IE","M","POP","TOTAL","UNK","F","Y50-64","2011","273","","" +"IE","M","POP","TOTAL","UNK","F","Y65-84","2011","34","","" +"IE","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","G","Y15-29","2011","749","","" +"IE","M","POP","TOTAL","UNK","G","Y30-49","2011","982","","" +"IE","M","POP","TOTAL","UNK","G","Y50-64","2011","377","","" +"IE","M","POP","TOTAL","UNK","G","Y65-84","2011","60","","" +"IE","M","POP","TOTAL","UNK","G","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","H","Y15-29","2011","106","","" +"IE","M","POP","TOTAL","UNK","H","Y30-49","2011","356","","" +"IE","M","POP","TOTAL","UNK","H","Y50-64","2011","220","","" +"IE","M","POP","TOTAL","UNK","H","Y65-84","2011","31","","" +"IE","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","I","Y15-29","2011","332","","" +"IE","M","POP","TOTAL","UNK","I","Y30-49","2011","419","","" +"IE","M","POP","TOTAL","UNK","I","Y50-64","2011","111","","" +"IE","M","POP","TOTAL","UNK","I","Y65-84","2011","19","","" +"IE","M","POP","TOTAL","UNK","I","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","J","Y15-29","2011","110","","" +"IE","M","POP","TOTAL","UNK","J","Y30-49","2011","181","","" +"IE","M","POP","TOTAL","UNK","J","Y50-64","2011","65","","" +"IE","M","POP","TOTAL","UNK","J","Y65-84","2011","5","d","" +"IE","M","POP","TOTAL","UNK","J","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","K","Y15-29","2011","88","","" +"IE","M","POP","TOTAL","UNK","K","Y30-49","2011","131","","" +"IE","M","POP","TOTAL","UNK","K","Y50-64","2011","42","","" +"IE","M","POP","TOTAL","UNK","K","Y65-84","2011","7","d","" +"IE","M","POP","TOTAL","UNK","K","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","L","Y15-29","2011","6","d","" +"IE","M","POP","TOTAL","UNK","L","Y30-49","2011","16","","" +"IE","M","POP","TOTAL","UNK","L","Y50-64","2011","12","","" +"IE","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","M","Y15-29","2011","120","","" +"IE","M","POP","TOTAL","UNK","M","Y30-49","2011","176","","" +"IE","M","POP","TOTAL","UNK","M","Y50-64","2011","103","","" +"IE","M","POP","TOTAL","UNK","M","Y65-84","2011","17","","" +"IE","M","POP","TOTAL","UNK","M","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","N","Y15-29","2011","153","","" +"IE","M","POP","TOTAL","UNK","N","Y30-49","2011","274","","" +"IE","M","POP","TOTAL","UNK","N","Y50-64","2011","129","","" +"IE","M","POP","TOTAL","UNK","N","Y65-84","2011","12","","" +"IE","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"IE","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"IE","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","O","Y15-29","2011","71","","" +"IE","M","POP","TOTAL","UNK","O","Y30-49","2011","238","","" +"IE","M","POP","TOTAL","UNK","O","Y50-64","2011","224","","" +"IE","M","POP","TOTAL","UNK","O","Y65-84","2011","18","","" +"IE","M","POP","TOTAL","UNK","O","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","P","Y15-29","2011","1229","","" +"IE","M","POP","TOTAL","UNK","P","Y30-49","2011","551","","" +"IE","M","POP","TOTAL","UNK","P","Y50-64","2011","226","","" +"IE","M","POP","TOTAL","UNK","P","Y65-84","2011","15","","" +"IE","M","POP","TOTAL","UNK","P","Y_GE85","2011","2","d","" +"IE","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","Q","Y15-29","2011","154","","" +"IE","M","POP","TOTAL","UNK","Q","Y30-49","2011","274","","" +"IE","M","POP","TOTAL","UNK","Q","Y50-64","2011","167","","" +"IE","M","POP","TOTAL","UNK","Q","Y65-84","2011","14","","" +"IE","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","R","Y15-29","2011","74","","" +"IE","M","POP","TOTAL","UNK","R","Y30-49","2011","96","","" +"IE","M","POP","TOTAL","UNK","R","Y50-64","2011","63","","" +"IE","M","POP","TOTAL","UNK","R","Y65-84","2011","9","d","" +"IE","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","S","Y15-29","2011","44","","" +"IE","M","POP","TOTAL","UNK","S","Y30-49","2011","91","","" +"IE","M","POP","TOTAL","UNK","S","Y50-64","2011","57","","" +"IE","M","POP","TOTAL","UNK","S","Y65-84","2011","14","","" +"IE","M","POP","TOTAL","UNK","S","Y_GE85","2011","1","d","" +"IE","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"IE","M","POP","TOTAL","UNK","T","Y30-49","2011","4","d","" +"IE","M","POP","TOTAL","UNK","T","Y50-64","2011","1","d","" +"IE","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","U","Y15-29","2011","1","d","" +"IE","M","POP","TOTAL","UNK","U","Y30-49","2011","6","d","" +"IE","M","POP","TOTAL","UNK","U","Y50-64","2011","5","d","" +"IE","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"IE","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"IE","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"IE","M","POP","TOTAL","UNK","UNK","Y15-29","2011","48010","","" +"IE","M","POP","TOTAL","UNK","UNK","Y30-49","2011","48655","","" +"IE","M","POP","TOTAL","UNK","UNK","Y50-64","2011","21424","","" +"IE","M","POP","TOTAL","UNK","UNK","Y65-84","2011","2551","","" +"IE","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","74","","" +"IE","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","NAP","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","NAP","NAP","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","NAP","NAP","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","NAP","NAP","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","c","" +"IS","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","A","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","A","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","C","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","C","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC1","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","D","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC1","D","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","E","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC1","F","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","H","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","J","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","K","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","M","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","P","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","Q","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","R","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC1","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","A","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","B","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","C","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","D","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","E","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","E","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","F","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","F","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","I","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","K","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","K","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","L","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","L","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","M","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","M","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","P","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","P","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","R","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","R","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","R","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC2","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC2","U","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC2","U","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","C","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","D","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","E","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","F","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","F","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","F","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","F","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","H","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","H","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","K","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","K","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","L","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","L","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","M","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","M","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","N","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","R","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC3","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","S","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC3","U","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC3","U","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC4","B","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","D","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","E","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","E","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","E","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","F","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","F","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","F","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","G","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","H","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","H","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","I","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","K","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","K","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","M","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","M","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","R","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","S","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC4","U","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC4","U","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","A","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC5","B","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","C","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","D","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","E","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","F","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","F","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","G","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","H","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","L","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","M","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","O","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","P","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","P","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","R","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC5","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC5","S","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC5","U","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","A","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","C","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","G","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","H","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","J","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","K","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","K","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","L","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","M","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","O","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","O","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","P","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","Q","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","R","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC6","S","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","C","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC7","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","F","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","F","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","F","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","G","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","H","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","K","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","K","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","L","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","M","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","R","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC7","U","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","C","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC8","E","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","F","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","F","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","F","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","H","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","K","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","P","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","R","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","A","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC9","B","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","C","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","C","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","C","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","D","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","D","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","E","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","E","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","E","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","F","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","F","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","F","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","G","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","G","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","G","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","H","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","I","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","I","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","J","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","J","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","K","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","K","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","L","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","M","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","M","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","M","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","M","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","N","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","N","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","O","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","O","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","O","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","O","Y_GE85","2011",":","c","" +"IS","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","P","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","Q","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","Q","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","Q","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","R","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","R","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","R","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","OC9","S","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","S","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC9","T","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"IS","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"IS","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"IS","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"IS","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"IS","F","POP","TOTAL","UNK","UNK","Y15-29","2011",":","c","" +"IS","F","POP","TOTAL","UNK","UNK","Y30-49","2011",":","c","" +"IS","F","POP","TOTAL","UNK","UNK","Y50-64","2011",":","c","" +"IS","F","POP","TOTAL","UNK","UNK","Y65-84","2011",":","c","" +"IS","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"IS","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","NAP","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","NAP","NAP","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","NAP","NAP","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","NAP","NAP","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","c","" +"IS","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","B","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","B","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","D","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","E","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","J","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","J","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","K","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC1","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC1","S","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","B","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","B","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","E","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","E","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","E","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","G","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","I","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","J","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","L","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","R","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC2","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC2","U","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC2","U","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC3","B","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","B","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","C","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","J","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","M","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC3","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC3","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC3","S","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC3","U","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","B","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","E","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","P","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC4","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC4","U","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","B","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","E","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","L","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC5","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC5","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC5","U","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","A","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","B","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","B","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","B","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","E","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","E","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","F","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","J","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","K","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","L","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","R","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC6","S","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC7","B","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","B","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","B","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","E","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","E","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","G","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","J","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","L","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","L","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","R","Y_GE85","2011",":","c","" +"IS","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC7","T","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC7","U","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","B","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","B","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","B","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","E","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","E","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","J","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","L","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC8","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC8","U","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","A","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","B","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","B","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","B","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","C","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","C","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","C","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","D","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","D","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","E","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","E","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","E","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","F","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","F","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","F","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","G","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","G","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","G","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","H","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","I","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","I","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","J","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","J","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","K","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","K","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","L","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","M","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","M","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","M","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","M","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","N","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","N","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","O","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","O","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","O","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","P","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","Q","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","Q","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","Q","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","R","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","R","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","R","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","OC9","S","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","S","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC9","U","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"IS","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"IS","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"IS","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"IS","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"IS","M","POP","TOTAL","UNK","UNK","Y15-29","2011",":","c","" +"IS","M","POP","TOTAL","UNK","UNK","Y30-49","2011",":","c","" +"IS","M","POP","TOTAL","UNK","UNK","Y50-64","2011",":","c","" +"IS","M","POP","TOTAL","UNK","UNK","Y65-84","2011",":","c","" +"IS","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"IS","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","NAP","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","NAP","NAP","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","NAP","NAP","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","NAP","NAP","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC0","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC0","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC0","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC0","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","D","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","E","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","T","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","E","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","K","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","U","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","D","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","K","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","N","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","T","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","U","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","T","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","U","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"IT","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"IT","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"IT","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"IT","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"IT","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"IT","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","NAP","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","NAP","NAP","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","NAP","NAP","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","NAP","NAP","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","D","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","E","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","K","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","N","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","U","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","K","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","N","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","T","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","U","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","E","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","K","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","N","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","E","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","K","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","D","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","E","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","K","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","L","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","T","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","D","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","E","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","J","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","M","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","N","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","U","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","D","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","A","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","A","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","A","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","A","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","A","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","B","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","B","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","B","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","B","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","B","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","C","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","C","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","C","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","C","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","C","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","D","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","D","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","D","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","D","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","E","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","E","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","E","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","E","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","E","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","F","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","F","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","F","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","F","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","F","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","G","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","G","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","G","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","G","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","G","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","H","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","H","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","H","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","H","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","H","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","I","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","I","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","I","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","I","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","I","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","J","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","J","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","J","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","J","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","K","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","K","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","K","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","K","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","L","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","L","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","L","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","L","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","M","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","M","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","M","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","M","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","N","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","N","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","N","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","N","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","N","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","O","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","O","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","O","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","O","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","O","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","P","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","P","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","P","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","P","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","P","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","Q","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","Q","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","Q","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","Q","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","Q","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","R","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","R","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","R","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","R","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","R","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","S","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","S","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","S","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","S","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","S","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","T","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","T","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","T","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","T","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","T","Y_GE85","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","U","Y15-29","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","U","Y30-49","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","U","Y50-64","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","U","Y65-84","2011",":","du","Data included in the secondary cells are not provided, because they have not been validated by Istat." +"IT","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"IT","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"IT","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"IT","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"IT","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"IT","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"IT","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","NAP","Y15-29","2011","1192","","" +"LI","F","POP","TOTAL","NAP","NAP","Y30-49","2011","1271","","" +"LI","F","POP","TOTAL","NAP","NAP","Y50-64","2011","1554","","" +"LI","F","POP","TOTAL","NAP","NAP","Y65-84","2011","2290","","" +"LI","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","376","","" +"LI","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","2829","","" +"LI","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","C","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC1","C","Y30-49","2011","41","","" +"LI","F","POP","TOTAL","OC1","C","Y50-64","2011","6","","" +"LI","F","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","F","Y30-49","2011","4","","" +"LI","F","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","G","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC1","G","Y30-49","2011","20","","" +"LI","F","POP","TOTAL","OC1","G","Y50-64","2011","16","","" +"LI","F","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC1","H","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","I","Y15-29","2011","8","","" +"LI","F","POP","TOTAL","OC1","I","Y30-49","2011","28","","" +"LI","F","POP","TOTAL","OC1","I","Y50-64","2011","15","","" +"LI","F","POP","TOTAL","OC1","I","Y65-84","2011","4","","" +"LI","F","POP","TOTAL","OC1","I","Y_GE85","2011",":","c","" +"LI","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC1","J","Y30-49","2011","4","","" +"LI","F","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC1","K","Y30-49","2011","17","","" +"LI","F","POP","TOTAL","OC1","K","Y50-64","2011","5","","" +"LI","F","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","M","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC1","M","Y30-49","2011","14","","" +"LI","F","POP","TOTAL","OC1","M","Y50-64","2011","17","","" +"LI","F","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","N","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","O","Y30-49","2011","15","","" +"LI","F","POP","TOTAL","OC1","O","Y50-64","2011","5","","" +"LI","F","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","P","Y30-49","2011","8","","" +"LI","F","POP","TOTAL","OC1","P","Y50-64","2011","8","","" +"LI","F","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC1","Q","Y30-49","2011","23","","" +"LI","F","POP","TOTAL","OC1","Q","Y50-64","2011","13","","" +"LI","F","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","S","Y30-49","2011","9","","" +"LI","F","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC1","UNK","Y15-29","2011","11","","" +"LI","F","POP","TOTAL","OC1","UNK","Y30-49","2011","21","","" +"LI","F","POP","TOTAL","OC1","UNK","Y50-64","2011","8","","" +"LI","F","POP","TOTAL","OC1","UNK","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","C","Y15-29","2011","17","","" +"LI","F","POP","TOTAL","OC2","C","Y30-49","2011","39","","" +"LI","F","POP","TOTAL","OC2","C","Y50-64","2011","9","","" +"LI","F","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC2","F","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","G","Y15-29","2011","6","","" +"LI","F","POP","TOTAL","OC2","G","Y30-49","2011","20","","" +"LI","F","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","J","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC2","J","Y30-49","2011","22","","" +"LI","F","POP","TOTAL","OC2","J","Y50-64","2011","7","","" +"LI","F","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","K","Y15-29","2011","9","","" +"LI","F","POP","TOTAL","OC2","K","Y30-49","2011","25","","" +"LI","F","POP","TOTAL","OC2","K","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","M","Y15-29","2011","50","","" +"LI","F","POP","TOTAL","OC2","M","Y30-49","2011","134","","" +"LI","F","POP","TOTAL","OC2","M","Y50-64","2011","51","","" +"LI","F","POP","TOTAL","OC2","M","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC2","N","Y30-49","2011","9","","" +"LI","F","POP","TOTAL","OC2","N","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","O","Y15-29","2011","12","","" +"LI","F","POP","TOTAL","OC2","O","Y30-49","2011","59","","" +"LI","F","POP","TOTAL","OC2","O","Y50-64","2011","18","","" +"LI","F","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","P","Y15-29","2011","69","","" +"LI","F","POP","TOTAL","OC2","P","Y30-49","2011","246","","" +"LI","F","POP","TOTAL","OC2","P","Y50-64","2011","100","","" +"LI","F","POP","TOTAL","OC2","P","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","Q","Y15-29","2011","49","","" +"LI","F","POP","TOTAL","OC2","Q","Y30-49","2011","113","","" +"LI","F","POP","TOTAL","OC2","Q","Y50-64","2011","38","","" +"LI","F","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","R","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC2","R","Y30-49","2011","19","","" +"LI","F","POP","TOTAL","OC2","R","Y50-64","2011","6","","" +"LI","F","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC2","S","Y30-49","2011","19","","" +"LI","F","POP","TOTAL","OC2","S","Y50-64","2011","12","","" +"LI","F","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","T","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC2","T","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC2","UNK","Y15-29","2011","47","","" +"LI","F","POP","TOTAL","OC2","UNK","Y30-49","2011","98","","" +"LI","F","POP","TOTAL","OC2","UNK","Y50-64","2011","30","","" +"LI","F","POP","TOTAL","OC2","UNK","Y65-84","2011","4","","" +"LI","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","C","Y15-29","2011","69","","" +"LI","F","POP","TOTAL","OC3","C","Y30-49","2011","75","","" +"LI","F","POP","TOTAL","OC3","C","Y50-64","2011","22","","" +"LI","F","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","F","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC3","F","Y30-49","2011","6","","" +"LI","F","POP","TOTAL","OC3","F","Y50-64","2011","5","","" +"LI","F","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","G","Y15-29","2011","39","","" +"LI","F","POP","TOTAL","OC3","G","Y30-49","2011","38","","" +"LI","F","POP","TOTAL","OC3","G","Y50-64","2011","21","","" +"LI","F","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC3","H","Y30-49","2011","6","","" +"LI","F","POP","TOTAL","OC3","H","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","I","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC3","I","Y30-49","2011","4","","" +"LI","F","POP","TOTAL","OC3","I","Y50-64","2011","3","","" +"LI","F","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","J","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC3","J","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","K","Y15-29","2011","122","","" +"LI","F","POP","TOTAL","OC3","K","Y30-49","2011","124","","" +"LI","F","POP","TOTAL","OC3","K","Y50-64","2011","48","","" +"LI","F","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC3","L","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC3","L","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","M","Y15-29","2011","76","","" +"LI","F","POP","TOTAL","OC3","M","Y30-49","2011","111","","" +"LI","F","POP","TOTAL","OC3","M","Y50-64","2011","34","","" +"LI","F","POP","TOTAL","OC3","M","Y65-84","2011","5","","" +"LI","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC3","N","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","OC3","N","Y50-64","2011","6","","" +"LI","F","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","O","Y15-29","2011","33","","" +"LI","F","POP","TOTAL","OC3","O","Y30-49","2011","45","","" +"LI","F","POP","TOTAL","OC3","O","Y50-64","2011","34","","" +"LI","F","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","P","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC3","P","Y30-49","2011","17","","" +"LI","F","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","Q","Y15-29","2011","75","","" +"LI","F","POP","TOTAL","OC3","Q","Y30-49","2011","148","","" +"LI","F","POP","TOTAL","OC3","Q","Y50-64","2011","79","","" +"LI","F","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC3","R","Y30-49","2011","10","","" +"LI","F","POP","TOTAL","OC3","R","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","S","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC3","S","Y30-49","2011","16","","" +"LI","F","POP","TOTAL","OC3","S","Y50-64","2011","8","","" +"LI","F","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC3","T","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC3","T","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC3","U","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC3","UNK","Y15-29","2011","35","","" +"LI","F","POP","TOTAL","OC3","UNK","Y30-49","2011","57","","" +"LI","F","POP","TOTAL","OC3","UNK","Y50-64","2011","9","","" +"LI","F","POP","TOTAL","OC3","UNK","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC4","B","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","C","Y15-29","2011","61","","" +"LI","F","POP","TOTAL","OC4","C","Y30-49","2011","132","","" +"LI","F","POP","TOTAL","OC4","C","Y50-64","2011","85","","" +"LI","F","POP","TOTAL","OC4","C","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC4","D","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC4","D","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC4","E","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC4","E","Y50-64","2011","3","","" +"LI","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","F","Y15-29","2011","8","","" +"LI","F","POP","TOTAL","OC4","F","Y30-49","2011","44","","" +"LI","F","POP","TOTAL","OC4","F","Y50-64","2011","26","","" +"LI","F","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","G","Y15-29","2011","19","","" +"LI","F","POP","TOTAL","OC4","G","Y30-49","2011","64","","" +"LI","F","POP","TOTAL","OC4","G","Y50-64","2011","47","","" +"LI","F","POP","TOTAL","OC4","G","Y65-84","2011","5","","" +"LI","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","H","Y15-29","2011","13","","" +"LI","F","POP","TOTAL","OC4","H","Y30-49","2011","58","","" +"LI","F","POP","TOTAL","OC4","H","Y50-64","2011","20","","" +"LI","F","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","I","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC4","I","Y30-49","2011","11","","" +"LI","F","POP","TOTAL","OC4","I","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC4","I","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","J","Y15-29","2011","9","","" +"LI","F","POP","TOTAL","OC4","J","Y30-49","2011","25","","" +"LI","F","POP","TOTAL","OC4","J","Y50-64","2011","6","","" +"LI","F","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","K","Y15-29","2011","55","","" +"LI","F","POP","TOTAL","OC4","K","Y30-49","2011","111","","" +"LI","F","POP","TOTAL","OC4","K","Y50-64","2011","83","","" +"LI","F","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC4","L","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","M","Y15-29","2011","71","","" +"LI","F","POP","TOTAL","OC4","M","Y30-49","2011","171","","" +"LI","F","POP","TOTAL","OC4","M","Y50-64","2011","122","","" +"LI","F","POP","TOTAL","OC4","M","Y65-84","2011","9","","" +"LI","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","N","Y15-29","2011","11","","" +"LI","F","POP","TOTAL","OC4","N","Y30-49","2011","43","","" +"LI","F","POP","TOTAL","OC4","N","Y50-64","2011","16","","" +"LI","F","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","O","Y15-29","2011","42","","" +"LI","F","POP","TOTAL","OC4","O","Y30-49","2011","122","","" +"LI","F","POP","TOTAL","OC4","O","Y50-64","2011","60","","" +"LI","F","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","P","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC4","P","Y30-49","2011","18","","" +"LI","F","POP","TOTAL","OC4","P","Y50-64","2011","3","","" +"LI","F","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","Q","Y15-29","2011","6","","" +"LI","F","POP","TOTAL","OC4","Q","Y30-49","2011","32","","" +"LI","F","POP","TOTAL","OC4","Q","Y50-64","2011","25","","" +"LI","F","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC4","R","Y30-49","2011","9","","" +"LI","F","POP","TOTAL","OC4","R","Y50-64","2011","6","","" +"LI","F","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","S","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC4","S","Y30-49","2011","13","","" +"LI","F","POP","TOTAL","OC4","S","Y50-64","2011","12","","" +"LI","F","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC4","T","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC4","T","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC4","UNK","Y15-29","2011","16","","" +"LI","F","POP","TOTAL","OC4","UNK","Y30-49","2011","22","","" +"LI","F","POP","TOTAL","OC4","UNK","Y50-64","2011","13","","" +"LI","F","POP","TOTAL","OC4","UNK","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC5","A","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","C","Y15-29","2011","20","","" +"LI","F","POP","TOTAL","OC5","C","Y30-49","2011","27","","" +"LI","F","POP","TOTAL","OC5","C","Y50-64","2011","17","","" +"LI","F","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","D","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","G","Y15-29","2011","73","","" +"LI","F","POP","TOTAL","OC5","G","Y30-49","2011","98","","" +"LI","F","POP","TOTAL","OC5","G","Y50-64","2011","64","","" +"LI","F","POP","TOTAL","OC5","G","Y65-84","2011","4","","" +"LI","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","H","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC5","H","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","OC5","H","Y50-64","2011","3","","" +"LI","F","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","I","Y15-29","2011","32","","" +"LI","F","POP","TOTAL","OC5","I","Y30-49","2011","73","","" +"LI","F","POP","TOTAL","OC5","I","Y50-64","2011","28","","" +"LI","F","POP","TOTAL","OC5","I","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","K","Y15-29","2011","6","","" +"LI","F","POP","TOTAL","OC5","K","Y30-49","2011","6","","" +"LI","F","POP","TOTAL","OC5","K","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","M","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC5","M","Y30-49","2011","6","","" +"LI","F","POP","TOTAL","OC5","M","Y50-64","2011","5","","" +"LI","F","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC5","N","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","OC5","N","Y50-64","2011","3","","" +"LI","F","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","O","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC5","O","Y30-49","2011","14","","" +"LI","F","POP","TOTAL","OC5","O","Y50-64","2011","10","","" +"LI","F","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","P","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC5","P","Y30-49","2011","9","","" +"LI","F","POP","TOTAL","OC5","P","Y50-64","2011","10","","" +"LI","F","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","Q","Y15-29","2011","95","","" +"LI","F","POP","TOTAL","OC5","Q","Y30-49","2011","101","","" +"LI","F","POP","TOTAL","OC5","Q","Y50-64","2011","54","","" +"LI","F","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC5","R","Y30-49","2011","7","","" +"LI","F","POP","TOTAL","OC5","R","Y50-64","2011","8","","" +"LI","F","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","S","Y15-29","2011","39","","" +"LI","F","POP","TOTAL","OC5","S","Y30-49","2011","67","","" +"LI","F","POP","TOTAL","OC5","S","Y50-64","2011","28","","" +"LI","F","POP","TOTAL","OC5","S","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","T","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC5","T","Y30-49","2011","8","","" +"LI","F","POP","TOTAL","OC5","T","Y50-64","2011","11","","" +"LI","F","POP","TOTAL","OC5","T","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC5","UNK","Y15-29","2011","48","","" +"LI","F","POP","TOTAL","OC5","UNK","Y30-49","2011","52","","" +"LI","F","POP","TOTAL","OC5","UNK","Y50-64","2011","38","","" +"LI","F","POP","TOTAL","OC5","UNK","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","A","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC6","A","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","N","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","T","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC6","UNK","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC6","UNK","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC6","UNK","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","A","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","C","Y15-29","2011","29","","" +"LI","F","POP","TOTAL","OC7","C","Y30-49","2011","69","","" +"LI","F","POP","TOTAL","OC7","C","Y50-64","2011","16","","" +"LI","F","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","F","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC7","F","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC7","G","Y30-49","2011","12","","" +"LI","F","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","H","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","K","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC7","M","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","N","Y15-29","2011","7","","" +"LI","F","POP","TOTAL","OC7","N","Y30-49","2011","7","","" +"LI","F","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC7","S","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC7","UNK","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC7","UNK","Y30-49","2011","17","","" +"LI","F","POP","TOTAL","OC7","UNK","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","C","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC8","C","Y30-49","2011","31","","" +"LI","F","POP","TOTAL","OC8","C","Y50-64","2011","17","","" +"LI","F","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC8","H","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","S","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC8","S","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC8","UNK","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC8","UNK","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC8","UNK","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","A","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC9","A","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","C","Y15-29","2011","47","","" +"LI","F","POP","TOTAL","OC9","C","Y30-49","2011","119","","" +"LI","F","POP","TOTAL","OC9","C","Y50-64","2011","51","","" +"LI","F","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","F","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC9","F","Y30-49","2011","3","","" +"LI","F","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC9","G","Y30-49","2011","29","","" +"LI","F","POP","TOTAL","OC9","G","Y50-64","2011","10","","" +"LI","F","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC9","H","Y30-49","2011","8","","" +"LI","F","POP","TOTAL","OC9","H","Y50-64","2011","6","","" +"LI","F","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","I","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC9","I","Y30-49","2011","21","","" +"LI","F","POP","TOTAL","OC9","I","Y50-64","2011","4","","" +"LI","F","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC9","J","Y30-49","2011","6","","" +"LI","F","POP","TOTAL","OC9","J","Y50-64","2011","3","","" +"LI","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC9","K","Y30-49","2011","12","","" +"LI","F","POP","TOTAL","OC9","K","Y50-64","2011","11","","" +"LI","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","M","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC9","M","Y30-49","2011","30","","" +"LI","F","POP","TOTAL","OC9","M","Y50-64","2011","16","","" +"LI","F","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","N","Y15-29","2011","21","","" +"LI","F","POP","TOTAL","OC9","N","Y30-49","2011","54","","" +"LI","F","POP","TOTAL","OC9","N","Y50-64","2011","14","","" +"LI","F","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","O","Y15-29","2011","4","","" +"LI","F","POP","TOTAL","OC9","O","Y30-49","2011","46","","" +"LI","F","POP","TOTAL","OC9","O","Y50-64","2011","35","","" +"LI","F","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC9","P","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","OC9","P","Y50-64","2011","9","","" +"LI","F","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","Q","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","OC9","Q","Y30-49","2011","22","","" +"LI","F","POP","TOTAL","OC9","Q","Y50-64","2011","19","","" +"LI","F","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","R","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","OC9","R","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","OC9","R","Y50-64","2011","5","","" +"LI","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC9","S","Y30-49","2011","10","","" +"LI","F","POP","TOTAL","OC9","S","Y50-64","2011","8","","" +"LI","F","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","T","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","OC9","T","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","OC9","T","Y50-64","2011","5","","" +"LI","F","POP","TOTAL","OC9","T","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","OC9","UNK","Y15-29","2011","9","","" +"LI","F","POP","TOTAL","OC9","UNK","Y30-49","2011","13","","" +"LI","F","POP","TOTAL","OC9","UNK","Y50-64","2011","8","","" +"LI","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","A","Y15-29","2011","3","","" +"LI","F","POP","TOTAL","UNK","A","Y30-49","2011","8","","" +"LI","F","POP","TOTAL","UNK","A","Y50-64","2011","5","","" +"LI","F","POP","TOTAL","UNK","A","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","C","Y15-29","2011","74","","" +"LI","F","POP","TOTAL","UNK","C","Y30-49","2011","151","","" +"LI","F","POP","TOTAL","UNK","C","Y50-64","2011","75","","" +"LI","F","POP","TOTAL","UNK","C","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","D","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","UNK","D","Y30-49","2011",":","c","" +"LI","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","UNK","E","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","F","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","UNK","F","Y30-49","2011","10","","" +"LI","F","POP","TOTAL","UNK","F","Y50-64","2011","20","","" +"LI","F","POP","TOTAL","UNK","F","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","G","Y15-29","2011","25","","" +"LI","F","POP","TOTAL","UNK","G","Y30-49","2011","53","","" +"LI","F","POP","TOTAL","UNK","G","Y50-64","2011","56","","" +"LI","F","POP","TOTAL","UNK","G","Y65-84","2011","7","","" +"LI","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","H","Y15-29","2011","6","","" +"LI","F","POP","TOTAL","UNK","H","Y30-49","2011","27","","" +"LI","F","POP","TOTAL","UNK","H","Y50-64","2011","10","","" +"LI","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","I","Y15-29","2011","37","","" +"LI","F","POP","TOTAL","UNK","I","Y30-49","2011","47","","" +"LI","F","POP","TOTAL","UNK","I","Y50-64","2011","28","","" +"LI","F","POP","TOTAL","UNK","I","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","J","Y15-29","2011","7","","" +"LI","F","POP","TOTAL","UNK","J","Y30-49","2011","10","","" +"LI","F","POP","TOTAL","UNK","J","Y50-64","2011",":","c","" +"LI","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","K","Y15-29","2011","21","","" +"LI","F","POP","TOTAL","UNK","K","Y30-49","2011","24","","" +"LI","F","POP","TOTAL","UNK","K","Y50-64","2011","20","","" +"LI","F","POP","TOTAL","UNK","K","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","L","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","UNK","L","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","UNK","L","Y50-64","2011","6","","" +"LI","F","POP","TOTAL","UNK","L","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","M","Y15-29","2011","36","","" +"LI","F","POP","TOTAL","UNK","M","Y30-49","2011","73","","" +"LI","F","POP","TOTAL","UNK","M","Y50-64","2011","45","","" +"LI","F","POP","TOTAL","UNK","M","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","N","Y15-29","2011","22","","" +"LI","F","POP","TOTAL","UNK","N","Y30-49","2011","67","","" +"LI","F","POP","TOTAL","UNK","N","Y50-64","2011","20","","" +"LI","F","POP","TOTAL","UNK","N","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","O","Y15-29","2011","10","","" +"LI","F","POP","TOTAL","UNK","O","Y30-49","2011","29","","" +"LI","F","POP","TOTAL","UNK","O","Y50-64","2011","33","","" +"LI","F","POP","TOTAL","UNK","O","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","P","Y15-29","2011","15","","" +"LI","F","POP","TOTAL","UNK","P","Y30-49","2011","30","","" +"LI","F","POP","TOTAL","UNK","P","Y50-64","2011","9","","" +"LI","F","POP","TOTAL","UNK","P","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","Q","Y15-29","2011","47","","" +"LI","F","POP","TOTAL","UNK","Q","Y30-49","2011","68","","" +"LI","F","POP","TOTAL","UNK","Q","Y50-64","2011","48","","" +"LI","F","POP","TOTAL","UNK","Q","Y65-84","2011","9","","" +"LI","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","R","Y15-29","2011","5","","" +"LI","F","POP","TOTAL","UNK","R","Y30-49","2011","5","","" +"LI","F","POP","TOTAL","UNK","R","Y50-64","2011","3","","" +"LI","F","POP","TOTAL","UNK","R","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","S","Y15-29","2011","18","","" +"LI","F","POP","TOTAL","UNK","S","Y30-49","2011","25","","" +"LI","F","POP","TOTAL","UNK","S","Y50-64","2011","11","","" +"LI","F","POP","TOTAL","UNK","S","Y65-84","2011","3","","" +"LI","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","T","Y15-29","2011",":","c","" +"LI","F","POP","TOTAL","UNK","T","Y30-49","2011","14","","" +"LI","F","POP","TOTAL","UNK","T","Y50-64","2011","10","","" +"LI","F","POP","TOTAL","UNK","T","Y65-84","2011",":","c","" +"LI","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"LI","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"LI","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"LI","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"LI","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"LI","F","POP","TOTAL","UNK","UNK","Y15-29","2011","56","","" +"LI","F","POP","TOTAL","UNK","UNK","Y30-49","2011","81","","" +"LI","F","POP","TOTAL","UNK","UNK","Y50-64","2011","45","","" +"LI","F","POP","TOTAL","UNK","UNK","Y65-84","2011","9","","" +"LI","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"LI","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","NAP","Y15-29","2011","1003","","" +"LI","M","POP","TOTAL","NAP","NAP","Y30-49","2011","263","","" +"LI","M","POP","TOTAL","NAP","NAP","Y50-64","2011","838","","" +"LI","M","POP","TOTAL","NAP","NAP","Y65-84","2011","1769","","" +"LI","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","158","","" +"LI","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","2946","","" +"LI","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC0","UNK","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC0","UNK","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","B","Y30-49","2011","5","","" +"LI","M","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","C","Y15-29","2011","14","","" +"LI","M","POP","TOTAL","OC1","C","Y30-49","2011","274","","" +"LI","M","POP","TOTAL","OC1","C","Y50-64","2011","130","","" +"LI","M","POP","TOTAL","OC1","C","Y65-84","2011","8","","" +"LI","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC1","D","Y30-49","2011","11","","" +"LI","M","POP","TOTAL","OC1","D","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","E","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC1","E","Y30-49","2011","6","","" +"LI","M","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","F","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC1","F","Y30-49","2011","44","","" +"LI","M","POP","TOTAL","OC1","F","Y50-64","2011","30","","" +"LI","M","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","G","Y15-29","2011","9","","" +"LI","M","POP","TOTAL","OC1","G","Y30-49","2011","84","","" +"LI","M","POP","TOTAL","OC1","G","Y50-64","2011","51","","" +"LI","M","POP","TOTAL","OC1","G","Y65-84","2011","8","","" +"LI","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC1","H","Y30-49","2011","21","","" +"LI","M","POP","TOTAL","OC1","H","Y50-64","2011","15","","" +"LI","M","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","I","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","OC1","I","Y30-49","2011","30","","" +"LI","M","POP","TOTAL","OC1","I","Y50-64","2011","30","","" +"LI","M","POP","TOTAL","OC1","I","Y65-84","2011","3","","" +"LI","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC1","J","Y30-49","2011","40","","" +"LI","M","POP","TOTAL","OC1","J","Y50-64","2011","12","","" +"LI","M","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","K","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","OC1","K","Y30-49","2011","68","","" +"LI","M","POP","TOTAL","OC1","K","Y50-64","2011","31","","" +"LI","M","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","M","Y15-29","2011","10","","" +"LI","M","POP","TOTAL","OC1","M","Y30-49","2011","66","","" +"LI","M","POP","TOTAL","OC1","M","Y50-64","2011","47","","" +"LI","M","POP","TOTAL","OC1","M","Y65-84","2011","8","","" +"LI","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","N","Y15-29","2011","6","","" +"LI","M","POP","TOTAL","OC1","N","Y30-49","2011","15","","" +"LI","M","POP","TOTAL","OC1","N","Y50-64","2011","7","","" +"LI","M","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC1","O","Y30-49","2011","43","","" +"LI","M","POP","TOTAL","OC1","O","Y50-64","2011","34","","" +"LI","M","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","P","Y30-49","2011","16","","" +"LI","M","POP","TOTAL","OC1","P","Y50-64","2011","8","","" +"LI","M","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","Q","Y30-49","2011","14","","" +"LI","M","POP","TOTAL","OC1","Q","Y50-64","2011","8","","" +"LI","M","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","R","Y30-49","2011","11","","" +"LI","M","POP","TOTAL","OC1","R","Y50-64","2011","6","","" +"LI","M","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC1","S","Y30-49","2011","12","","" +"LI","M","POP","TOTAL","OC1","S","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC1","T","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC1","UNK","Y15-29","2011","12","","" +"LI","M","POP","TOTAL","OC1","UNK","Y30-49","2011","44","","" +"LI","M","POP","TOTAL","OC1","UNK","Y50-64","2011","21","","" +"LI","M","POP","TOTAL","OC1","UNK","Y65-84","2011","4","","" +"LI","M","POP","TOTAL","OC1","UNK","Y_GE85","2011",":","c","" +"LI","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","C","Y15-29","2011","61","","" +"LI","M","POP","TOTAL","OC2","C","Y30-49","2011","173","","" +"LI","M","POP","TOTAL","OC2","C","Y50-64","2011","78","","" +"LI","M","POP","TOTAL","OC2","C","Y65-84","2011","3","","" +"LI","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC2","D","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC2","D","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","F","Y15-29","2011","5","","" +"LI","M","POP","TOTAL","OC2","F","Y30-49","2011","17","","" +"LI","M","POP","TOTAL","OC2","F","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","G","Y15-29","2011","13","","" +"LI","M","POP","TOTAL","OC2","G","Y30-49","2011","34","","" +"LI","M","POP","TOTAL","OC2","G","Y50-64","2011","18","","" +"LI","M","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","H","Y15-29","2011","7","","" +"LI","M","POP","TOTAL","OC2","H","Y30-49","2011","8","","" +"LI","M","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","J","Y15-29","2011","31","","" +"LI","M","POP","TOTAL","OC2","J","Y30-49","2011","81","","" +"LI","M","POP","TOTAL","OC2","J","Y50-64","2011","22","","" +"LI","M","POP","TOTAL","OC2","J","Y65-84","2011","4","","" +"LI","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","K","Y15-29","2011","30","","" +"LI","M","POP","TOTAL","OC2","K","Y30-49","2011","119","","" +"LI","M","POP","TOTAL","OC2","K","Y50-64","2011","32","","" +"LI","M","POP","TOTAL","OC2","K","Y65-84","2011","4","","" +"LI","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","M","Y15-29","2011","48","","" +"LI","M","POP","TOTAL","OC2","M","Y30-49","2011","311","","" +"LI","M","POP","TOTAL","OC2","M","Y50-64","2011","209","","" +"LI","M","POP","TOTAL","OC2","M","Y65-84","2011","44","","" +"LI","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","N","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","OC2","N","Y30-49","2011","12","","" +"LI","M","POP","TOTAL","OC2","N","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","O","Y15-29","2011","16","","" +"LI","M","POP","TOTAL","OC2","O","Y30-49","2011","62","","" +"LI","M","POP","TOTAL","OC2","O","Y50-64","2011","48","","" +"LI","M","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","P","Y15-29","2011","13","","" +"LI","M","POP","TOTAL","OC2","P","Y30-49","2011","98","","" +"LI","M","POP","TOTAL","OC2","P","Y50-64","2011","94","","" +"LI","M","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","Q","Y15-29","2011","5","","" +"LI","M","POP","TOTAL","OC2","Q","Y30-49","2011","62","","" +"LI","M","POP","TOTAL","OC2","Q","Y50-64","2011","55","","" +"LI","M","POP","TOTAL","OC2","Q","Y65-84","2011","6","","" +"LI","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","R","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","OC2","R","Y30-49","2011","16","","" +"LI","M","POP","TOTAL","OC2","R","Y50-64","2011","8","","" +"LI","M","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","S","Y30-49","2011","19","","" +"LI","M","POP","TOTAL","OC2","S","Y50-64","2011","8","","" +"LI","M","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC2","UNK","Y15-29","2011","44","","" +"LI","M","POP","TOTAL","OC2","UNK","Y30-49","2011","59","","" +"LI","M","POP","TOTAL","OC2","UNK","Y50-64","2011","31","","" +"LI","M","POP","TOTAL","OC2","UNK","Y65-84","2011","9","","" +"LI","M","POP","TOTAL","OC2","UNK","Y_GE85","2011",":","c","" +"LI","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC3","A","Y30-49","2011","7","","" +"LI","M","POP","TOTAL","OC3","A","Y50-64","2011","5","","" +"LI","M","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC3","B","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","C","Y15-29","2011","101","","" +"LI","M","POP","TOTAL","OC3","C","Y30-49","2011","209","","" +"LI","M","POP","TOTAL","OC3","C","Y50-64","2011","135","","" +"LI","M","POP","TOTAL","OC3","C","Y65-84","2011","3","","" +"LI","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","D","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","OC3","D","Y30-49","2011","19","","" +"LI","M","POP","TOTAL","OC3","D","Y50-64","2011","7","","" +"LI","M","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC3","E","Y30-49","2011","10","","" +"LI","M","POP","TOTAL","OC3","E","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","F","Y15-29","2011","18","","" +"LI","M","POP","TOTAL","OC3","F","Y30-49","2011","70","","" +"LI","M","POP","TOTAL","OC3","F","Y50-64","2011","33","","" +"LI","M","POP","TOTAL","OC3","F","Y65-84","2011","4","","" +"LI","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","G","Y15-29","2011","34","","" +"LI","M","POP","TOTAL","OC3","G","Y30-49","2011","61","","" +"LI","M","POP","TOTAL","OC3","G","Y50-64","2011","38","","" +"LI","M","POP","TOTAL","OC3","G","Y65-84","2011","6","","" +"LI","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","H","Y15-29","2011","7","","" +"LI","M","POP","TOTAL","OC3","H","Y30-49","2011","10","","" +"LI","M","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC3","I","Y30-49","2011","6","","" +"LI","M","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","J","Y15-29","2011","13","","" +"LI","M","POP","TOTAL","OC3","J","Y30-49","2011","22","","" +"LI","M","POP","TOTAL","OC3","J","Y50-64","2011","6","","" +"LI","M","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","K","Y15-29","2011","94","","" +"LI","M","POP","TOTAL","OC3","K","Y30-49","2011","205","","" +"LI","M","POP","TOTAL","OC3","K","Y50-64","2011","77","","" +"LI","M","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC3","L","Y30-49","2011","10","","" +"LI","M","POP","TOTAL","OC3","L","Y50-64","2011","8","","" +"LI","M","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","M","Y15-29","2011","80","","" +"LI","M","POP","TOTAL","OC3","M","Y30-49","2011","128","","" +"LI","M","POP","TOTAL","OC3","M","Y50-64","2011","68","","" +"LI","M","POP","TOTAL","OC3","M","Y65-84","2011","6","","" +"LI","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","N","Y15-29","2011","5","","" +"LI","M","POP","TOTAL","OC3","N","Y30-49","2011","14","","" +"LI","M","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC3","N","Y65-84","2011","3","","" +"LI","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","O","Y15-29","2011","34","","" +"LI","M","POP","TOTAL","OC3","O","Y30-49","2011","116","","" +"LI","M","POP","TOTAL","OC3","O","Y50-64","2011","74","","" +"LI","M","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC3","P","Y30-49","2011","7","","" +"LI","M","POP","TOTAL","OC3","P","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC3","Q","Y30-49","2011","21","","" +"LI","M","POP","TOTAL","OC3","Q","Y50-64","2011","12","","" +"LI","M","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","R","Y15-29","2011","14","","" +"LI","M","POP","TOTAL","OC3","R","Y30-49","2011","15","","" +"LI","M","POP","TOTAL","OC3","R","Y50-64","2011","12","","" +"LI","M","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC3","S","Y30-49","2011","5","","" +"LI","M","POP","TOTAL","OC3","S","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC3","T","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","U","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC3","U","Y30-49","2011","9","","" +"LI","M","POP","TOTAL","OC3","U","Y50-64","2011","9","","" +"LI","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC3","UNK","Y15-29","2011","32","","" +"LI","M","POP","TOTAL","OC3","UNK","Y30-49","2011","47","","" +"LI","M","POP","TOTAL","OC3","UNK","Y50-64","2011","19","","" +"LI","M","POP","TOTAL","OC3","UNK","Y65-84","2011","5","","" +"LI","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","B","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","C","Y15-29","2011","27","","" +"LI","M","POP","TOTAL","OC4","C","Y30-49","2011","75","","" +"LI","M","POP","TOTAL","OC4","C","Y50-64","2011","60","","" +"LI","M","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","D","Y30-49","2011","7","","" +"LI","M","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","F","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","OC4","F","Y30-49","2011","12","","" +"LI","M","POP","TOTAL","OC4","F","Y50-64","2011","5","","" +"LI","M","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","G","Y15-29","2011","11","","" +"LI","M","POP","TOTAL","OC4","G","Y30-49","2011","26","","" +"LI","M","POP","TOTAL","OC4","G","Y50-64","2011","9","","" +"LI","M","POP","TOTAL","OC4","G","Y65-84","2011","3","","" +"LI","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","H","Y15-29","2011","8","","" +"LI","M","POP","TOTAL","OC4","H","Y30-49","2011","27","","" +"LI","M","POP","TOTAL","OC4","H","Y50-64","2011","14","","" +"LI","M","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC4","J","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC4","J","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","K","Y15-29","2011","36","","" +"LI","M","POP","TOTAL","OC4","K","Y30-49","2011","53","","" +"LI","M","POP","TOTAL","OC4","K","Y50-64","2011","31","","" +"LI","M","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","M","Y15-29","2011","25","","" +"LI","M","POP","TOTAL","OC4","M","Y30-49","2011","33","","" +"LI","M","POP","TOTAL","OC4","M","Y50-64","2011","29","","" +"LI","M","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","N","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","OC4","N","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC4","N","Y50-64","2011","5","","" +"LI","M","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","O","Y15-29","2011","14","","" +"LI","M","POP","TOTAL","OC4","O","Y30-49","2011","45","","" +"LI","M","POP","TOTAL","OC4","O","Y50-64","2011","29","","" +"LI","M","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","Q","Y30-49","2011","4","","" +"LI","M","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","R","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","T","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC4","UNK","Y15-29","2011","9","","" +"LI","M","POP","TOTAL","OC4","UNK","Y30-49","2011","5","","" +"LI","M","POP","TOTAL","OC4","UNK","Y50-64","2011","5","","" +"LI","M","POP","TOTAL","OC4","UNK","Y65-84","2011","3","","" +"LI","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","C","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","OC5","C","Y30-49","2011","20","","" +"LI","M","POP","TOTAL","OC5","C","Y50-64","2011","11","","" +"LI","M","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC5","D","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC5","F","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","G","Y15-29","2011","16","","" +"LI","M","POP","TOTAL","OC5","G","Y30-49","2011","31","","" +"LI","M","POP","TOTAL","OC5","G","Y50-64","2011","28","","" +"LI","M","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC5","H","Y30-49","2011","4","","" +"LI","M","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","I","Y15-29","2011","21","","" +"LI","M","POP","TOTAL","OC5","I","Y30-49","2011","62","","" +"LI","M","POP","TOTAL","OC5","I","Y50-64","2011","14","","" +"LI","M","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC5","K","Y30-49","2011","9","","" +"LI","M","POP","TOTAL","OC5","K","Y50-64","2011","6","","" +"LI","M","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","M","Y15-29","2011","6","","" +"LI","M","POP","TOTAL","OC5","M","Y30-49","2011","14","","" +"LI","M","POP","TOTAL","OC5","M","Y50-64","2011","10","","" +"LI","M","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","N","Y15-29","2011","8","","" +"LI","M","POP","TOTAL","OC5","N","Y30-49","2011","13","","" +"LI","M","POP","TOTAL","OC5","N","Y50-64","2011","11","","" +"LI","M","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","O","Y15-29","2011","14","","" +"LI","M","POP","TOTAL","OC5","O","Y30-49","2011","83","","" +"LI","M","POP","TOTAL","OC5","O","Y50-64","2011","52","","" +"LI","M","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","P","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","OC5","P","Y30-49","2011","12","","" +"LI","M","POP","TOTAL","OC5","P","Y50-64","2011","6","","" +"LI","M","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","Q","Y15-29","2011","7","","" +"LI","M","POP","TOTAL","OC5","Q","Y30-49","2011","10","","" +"LI","M","POP","TOTAL","OC5","Q","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","R","Y30-49","2011","7","","" +"LI","M","POP","TOTAL","OC5","R","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","S","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","OC5","S","Y30-49","2011","16","","" +"LI","M","POP","TOTAL","OC5","S","Y50-64","2011","12","","" +"LI","M","POP","TOTAL","OC5","S","Y65-84","2011","6","","" +"LI","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","T","Y30-49","2011","5","","" +"LI","M","POP","TOTAL","OC5","T","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC5","U","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC5","UNK","Y15-29","2011","21","","" +"LI","M","POP","TOTAL","OC5","UNK","Y30-49","2011","15","","" +"LI","M","POP","TOTAL","OC5","UNK","Y50-64","2011","13","","" +"LI","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","A","Y15-29","2011","19","","" +"LI","M","POP","TOTAL","OC6","A","Y30-49","2011","51","","" +"LI","M","POP","TOTAL","OC6","A","Y50-64","2011","31","","" +"LI","M","POP","TOTAL","OC6","A","Y65-84","2011","3","","" +"LI","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","F","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC6","F","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","G","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","K","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC6","M","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","N","Y15-29","2011","13","","" +"LI","M","POP","TOTAL","OC6","N","Y30-49","2011","20","","" +"LI","M","POP","TOTAL","OC6","N","Y50-64","2011","11","","" +"LI","M","POP","TOTAL","OC6","N","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC6","O","Y30-49","2011","7","","" +"LI","M","POP","TOTAL","OC6","O","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","T","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC6","UNK","Y15-29","2011","15","","" +"LI","M","POP","TOTAL","OC6","UNK","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC6","UNK","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC6","UNK","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC6","UNK","Y_GE85","2011",":","c","" +"LI","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","B","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC7","B","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","C","Y15-29","2011","226","","" +"LI","M","POP","TOTAL","OC7","C","Y30-49","2011","279","","" +"LI","M","POP","TOTAL","OC7","C","Y50-64","2011","161","","" +"LI","M","POP","TOTAL","OC7","C","Y65-84","2011","7","","" +"LI","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","D","Y15-29","2011","25","","" +"LI","M","POP","TOTAL","OC7","D","Y30-49","2011","15","","" +"LI","M","POP","TOTAL","OC7","D","Y50-64","2011","11","","" +"LI","M","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC7","E","Y30-49","2011","4","","" +"LI","M","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","F","Y15-29","2011","275","","" +"LI","M","POP","TOTAL","OC7","F","Y30-49","2011","296","","" +"LI","M","POP","TOTAL","OC7","F","Y50-64","2011","134","","" +"LI","M","POP","TOTAL","OC7","F","Y65-84","2011","11","","" +"LI","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","G","Y15-29","2011","67","","" +"LI","M","POP","TOTAL","OC7","G","Y30-49","2011","73","","" +"LI","M","POP","TOTAL","OC7","G","Y50-64","2011","42","","" +"LI","M","POP","TOTAL","OC7","G","Y65-84","2011","11","","" +"LI","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC7","H","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC7","H","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC7","J","Y30-49","2011","5","","" +"LI","M","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","K","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC7","K","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC7","M","Y30-49","2011","11","","" +"LI","M","POP","TOTAL","OC7","M","Y50-64","2011","6","","" +"LI","M","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","N","Y15-29","2011","8","","" +"LI","M","POP","TOTAL","OC7","N","Y30-49","2011","16","","" +"LI","M","POP","TOTAL","OC7","N","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","O","Y30-49","2011","6","","" +"LI","M","POP","TOTAL","OC7","O","Y50-64","2011","7","","" +"LI","M","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","Q","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","OC7","Q","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","S","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC7","UNK","Y15-29","2011","41","","" +"LI","M","POP","TOTAL","OC7","UNK","Y30-49","2011","23","","" +"LI","M","POP","TOTAL","OC7","UNK","Y50-64","2011","5","","" +"LI","M","POP","TOTAL","OC7","UNK","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","B","Y30-49","2011","6","","" +"LI","M","POP","TOTAL","OC8","B","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","C","Y15-29","2011","23","","" +"LI","M","POP","TOTAL","OC8","C","Y30-49","2011","57","","" +"LI","M","POP","TOTAL","OC8","C","Y50-64","2011","40","","" +"LI","M","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC8","D","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC8","E","Y30-49","2011","8","","" +"LI","M","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","F","Y15-29","2011","11","","" +"LI","M","POP","TOTAL","OC8","F","Y30-49","2011","42","","" +"LI","M","POP","TOTAL","OC8","F","Y50-64","2011","26","","" +"LI","M","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC8","G","Y30-49","2011","23","","" +"LI","M","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","H","Y15-29","2011","6","","" +"LI","M","POP","TOTAL","OC8","H","Y30-49","2011","70","","" +"LI","M","POP","TOTAL","OC8","H","Y50-64","2011","50","","" +"LI","M","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC8","N","Y30-49","2011","4","","" +"LI","M","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","S","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","T","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC8","T","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC8","UNK","Y15-29","2011","5","","" +"LI","M","POP","TOTAL","OC8","UNK","Y30-49","2011","14","","" +"LI","M","POP","TOTAL","OC8","UNK","Y50-64","2011","8","","" +"LI","M","POP","TOTAL","OC8","UNK","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","A","Y15-29","2011","7","","" +"LI","M","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC9","A","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","C","Y15-29","2011","50","","" +"LI","M","POP","TOTAL","OC9","C","Y30-49","2011","104","","" +"LI","M","POP","TOTAL","OC9","C","Y50-64","2011","41","","" +"LI","M","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","E","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","OC9","E","Y30-49","2011","5","","" +"LI","M","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","F","Y15-29","2011","41","","" +"LI","M","POP","TOTAL","OC9","F","Y30-49","2011","57","","" +"LI","M","POP","TOTAL","OC9","F","Y50-64","2011","23","","" +"LI","M","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","G","Y15-29","2011","6","","" +"LI","M","POP","TOTAL","OC9","G","Y30-49","2011","13","","" +"LI","M","POP","TOTAL","OC9","G","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC9","H","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC9","K","Y30-49","2011","4","","" +"LI","M","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","M","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","N","Y15-29","2011","5","","" +"LI","M","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC9","N","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","O","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","OC9","O","Y30-49","2011","31","","" +"LI","M","POP","TOTAL","OC9","O","Y50-64","2011","24","","" +"LI","M","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC9","P","Y30-49","2011","4","","" +"LI","M","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","Q","Y15-29","2011","5","","" +"LI","M","POP","TOTAL","OC9","Q","Y30-49","2011","5","","" +"LI","M","POP","TOTAL","OC9","Q","Y50-64","2011","7","","" +"LI","M","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","OC9","S","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC9","S","Y50-64","2011","3","","" +"LI","M","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC9","T","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","OC9","UNK","Y15-29","2011","5","","" +"LI","M","POP","TOTAL","OC9","UNK","Y30-49","2011","3","","" +"LI","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","OC9","UNK","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","A","Y15-29","2011","13","","" +"LI","M","POP","TOTAL","UNK","A","Y30-49","2011","13","","" +"LI","M","POP","TOTAL","UNK","A","Y50-64","2011","6","","" +"LI","M","POP","TOTAL","UNK","A","Y65-84","2011","5","","" +"LI","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","UNK","B","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","UNK","B","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","C","Y15-29","2011","120","","" +"LI","M","POP","TOTAL","UNK","C","Y30-49","2011","173","","" +"LI","M","POP","TOTAL","UNK","C","Y50-64","2011","86","","" +"LI","M","POP","TOTAL","UNK","C","Y65-84","2011","10","","" +"LI","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","D","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","UNK","D","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","UNK","D","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","E","Y15-29","2011",":","c","" +"LI","M","POP","TOTAL","UNK","E","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","UNK","E","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","F","Y15-29","2011","94","","" +"LI","M","POP","TOTAL","UNK","F","Y30-49","2011","99","","" +"LI","M","POP","TOTAL","UNK","F","Y50-64","2011","60","","" +"LI","M","POP","TOTAL","UNK","F","Y65-84","2011","9","","" +"LI","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","G","Y15-29","2011","30","","" +"LI","M","POP","TOTAL","UNK","G","Y30-49","2011","46","","" +"LI","M","POP","TOTAL","UNK","G","Y50-64","2011","26","","" +"LI","M","POP","TOTAL","UNK","G","Y65-84","2011","16","","" +"LI","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","H","Y15-29","2011","11","","" +"LI","M","POP","TOTAL","UNK","H","Y30-49","2011","23","","" +"LI","M","POP","TOTAL","UNK","H","Y50-64","2011","12","","" +"LI","M","POP","TOTAL","UNK","H","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","I","Y15-29","2011","6","","" +"LI","M","POP","TOTAL","UNK","I","Y30-49","2011","20","","" +"LI","M","POP","TOTAL","UNK","I","Y50-64","2011","9","","" +"LI","M","POP","TOTAL","UNK","I","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","J","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","UNK","J","Y30-49","2011","9","","" +"LI","M","POP","TOTAL","UNK","J","Y50-64","2011","5","","" +"LI","M","POP","TOTAL","UNK","J","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","K","Y15-29","2011","22","","" +"LI","M","POP","TOTAL","UNK","K","Y30-49","2011","14","","" +"LI","M","POP","TOTAL","UNK","K","Y50-64","2011","11","","" +"LI","M","POP","TOTAL","UNK","K","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","UNK","L","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","M","Y15-29","2011","27","","" +"LI","M","POP","TOTAL","UNK","M","Y30-49","2011","19","","" +"LI","M","POP","TOTAL","UNK","M","Y50-64","2011","30","","" +"LI","M","POP","TOTAL","UNK","M","Y65-84","2011","13","","" +"LI","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","N","Y15-29","2011","15","","" +"LI","M","POP","TOTAL","UNK","N","Y30-49","2011","14","","" +"LI","M","POP","TOTAL","UNK","N","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","O","Y15-29","2011","17","","" +"LI","M","POP","TOTAL","UNK","O","Y30-49","2011","14","","" +"LI","M","POP","TOTAL","UNK","O","Y50-64","2011","26","","" +"LI","M","POP","TOTAL","UNK","O","Y65-84","2011","4","","" +"LI","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","P","Y15-29","2011","8","","" +"LI","M","POP","TOTAL","UNK","P","Y30-49","2011","10","","" +"LI","M","POP","TOTAL","UNK","P","Y50-64","2011","6","","" +"LI","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","Q","Y15-29","2011","11","","" +"LI","M","POP","TOTAL","UNK","Q","Y30-49","2011","12","","" +"LI","M","POP","TOTAL","UNK","Q","Y50-64","2011","9","","" +"LI","M","POP","TOTAL","UNK","Q","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","R","Y15-29","2011","4","","" +"LI","M","POP","TOTAL","UNK","R","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","UNK","R","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","UNK","R","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","S","Y15-29","2011","3","","" +"LI","M","POP","TOTAL","UNK","S","Y30-49","2011","6","","" +"LI","M","POP","TOTAL","UNK","S","Y50-64","2011","4","","" +"LI","M","POP","TOTAL","UNK","S","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","UNK","T","Y30-49","2011",":","c","" +"LI","M","POP","TOTAL","UNK","T","Y50-64","2011",":","c","" +"LI","M","POP","TOTAL","UNK","T","Y65-84","2011",":","c","" +"LI","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"LI","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"LI","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"LI","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"LI","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"LI","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"LI","M","POP","TOTAL","UNK","UNK","Y15-29","2011","36","","" +"LI","M","POP","TOTAL","UNK","UNK","Y30-49","2011","16","","" +"LI","M","POP","TOTAL","UNK","UNK","Y50-64","2011","11","","" +"LI","M","POP","TOTAL","UNK","UNK","Y65-84","2011","10","","" +"LI","M","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","c","" +"LI","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"LT","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"LT","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"LT","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"LT","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"LT","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"LT","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"LT","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"LT","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"LT","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"LT","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"LT","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"LT","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","NAP","Y15-29","2011","28312","","" +"LU","F","POP","TOTAL","NAP","NAP","Y30-49","2011","20922","","" +"LU","F","POP","TOTAL","NAP","NAP","Y50-64","2011","25978","","" +"LU","F","POP","TOTAL","NAP","NAP","Y65-84","2011","34635","","" +"LU","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","5991","","" +"LU","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","43170","","" +"LU","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","G","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","O","Y15-29","2011","40","","" +"LU","F","POP","TOTAL","OC0","O","Y30-49","2011","15","","" +"LU","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","S","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC0","UNK","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC0","UNK","Y30-49","2011","2","","" +"LU","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","A","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC1","A","Y30-49","2011","7","","" +"LU","F","POP","TOTAL","OC1","A","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC1","B","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","C","Y15-29","2011","8","","" +"LU","F","POP","TOTAL","OC1","C","Y30-49","2011","104","","" +"LU","F","POP","TOTAL","OC1","C","Y50-64","2011","19","","" +"LU","F","POP","TOTAL","OC1","C","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","D","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC1","D","Y30-49","2011","2","","" +"LU","F","POP","TOTAL","OC1","D","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC1","E","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","F","Y15-29","2011","4","","" +"LU","F","POP","TOTAL","OC1","F","Y30-49","2011","56","","" +"LU","F","POP","TOTAL","OC1","F","Y50-64","2011","28","","" +"LU","F","POP","TOTAL","OC1","F","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","G","Y15-29","2011","29","","" +"LU","F","POP","TOTAL","OC1","G","Y30-49","2011","215","","" +"LU","F","POP","TOTAL","OC1","G","Y50-64","2011","123","","" +"LU","F","POP","TOTAL","OC1","G","Y65-84","2011","14","","" +"LU","F","POP","TOTAL","OC1","G","Y_GE85","2011","1","","" +"LU","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","H","Y15-29","2011","5","","" +"LU","F","POP","TOTAL","OC1","H","Y30-49","2011","49","","" +"LU","F","POP","TOTAL","OC1","H","Y50-64","2011","10","","" +"LU","F","POP","TOTAL","OC1","H","Y65-84","2011","3","","" +"LU","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","I","Y15-29","2011","48","","" +"LU","F","POP","TOTAL","OC1","I","Y30-49","2011","335","","" +"LU","F","POP","TOTAL","OC1","I","Y50-64","2011","168","","" +"LU","F","POP","TOTAL","OC1","I","Y65-84","2011","16","","" +"LU","F","POP","TOTAL","OC1","I","Y_GE85","2011","1","","" +"LU","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","J","Y15-29","2011","16","","" +"LU","F","POP","TOTAL","OC1","J","Y30-49","2011","75","","" +"LU","F","POP","TOTAL","OC1","J","Y50-64","2011","20","","" +"LU","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","K","Y15-29","2011","80","","" +"LU","F","POP","TOTAL","OC1","K","Y30-49","2011","651","","" +"LU","F","POP","TOTAL","OC1","K","Y50-64","2011","112","","" +"LU","F","POP","TOTAL","OC1","K","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","L","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC1","L","Y30-49","2011","39","","" +"LU","F","POP","TOTAL","OC1","L","Y50-64","2011","13","","" +"LU","F","POP","TOTAL","OC1","L","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","M","Y15-29","2011","82","","" +"LU","F","POP","TOTAL","OC1","M","Y30-49","2011","242","","" +"LU","F","POP","TOTAL","OC1","M","Y50-64","2011","49","","" +"LU","F","POP","TOTAL","OC1","M","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","N","Y15-29","2011","12","","" +"LU","F","POP","TOTAL","OC1","N","Y30-49","2011","47","","" +"LU","F","POP","TOTAL","OC1","N","Y50-64","2011","23","","" +"LU","F","POP","TOTAL","OC1","N","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","O","Y15-29","2011","22","","" +"LU","F","POP","TOTAL","OC1","O","Y30-49","2011","137","","" +"LU","F","POP","TOTAL","OC1","O","Y50-64","2011","45","","" +"LU","F","POP","TOTAL","OC1","O","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","P","Y15-29","2011","10","","" +"LU","F","POP","TOTAL","OC1","P","Y30-49","2011","47","","" +"LU","F","POP","TOTAL","OC1","P","Y50-64","2011","17","","" +"LU","F","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","Q","Y15-29","2011","17","","" +"LU","F","POP","TOTAL","OC1","Q","Y30-49","2011","122","","" +"LU","F","POP","TOTAL","OC1","Q","Y50-64","2011","39","","" +"LU","F","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","R","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC1","R","Y30-49","2011","25","","" +"LU","F","POP","TOTAL","OC1","R","Y50-64","2011","14","","" +"LU","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","S","Y15-29","2011","12","","" +"LU","F","POP","TOTAL","OC1","S","Y30-49","2011","75","","" +"LU","F","POP","TOTAL","OC1","S","Y50-64","2011","26","","" +"LU","F","POP","TOTAL","OC1","S","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","U","Y15-29","2011","20","","" +"LU","F","POP","TOTAL","OC1","U","Y30-49","2011","188","","" +"LU","F","POP","TOTAL","OC1","U","Y50-64","2011","78","","" +"LU","F","POP","TOTAL","OC1","U","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC1","UNK","Y15-29","2011","32","","" +"LU","F","POP","TOTAL","OC1","UNK","Y30-49","2011","280","","" +"LU","F","POP","TOTAL","OC1","UNK","Y50-64","2011","120","","" +"LU","F","POP","TOTAL","OC1","UNK","Y65-84","2011","8","","" +"LU","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","A","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC2","A","Y30-49","2011","16","","" +"LU","F","POP","TOTAL","OC2","A","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC2","B","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","C","Y15-29","2011","55","","" +"LU","F","POP","TOTAL","OC2","C","Y30-49","2011","210","","" +"LU","F","POP","TOTAL","OC2","C","Y50-64","2011","37","","" +"LU","F","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","D","Y15-29","2011","11","","" +"LU","F","POP","TOTAL","OC2","D","Y30-49","2011","14","","" +"LU","F","POP","TOTAL","OC2","D","Y50-64","2011","4","","" +"LU","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","E","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC2","E","Y30-49","2011","10","","" +"LU","F","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","F","Y15-29","2011","12","","" +"LU","F","POP","TOTAL","OC2","F","Y30-49","2011","51","","" +"LU","F","POP","TOTAL","OC2","F","Y50-64","2011","14","","" +"LU","F","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","G","Y15-29","2011","77","","" +"LU","F","POP","TOTAL","OC2","G","Y30-49","2011","273","","" +"LU","F","POP","TOTAL","OC2","G","Y50-64","2011","89","","" +"LU","F","POP","TOTAL","OC2","G","Y65-84","2011","7","","" +"LU","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","H","Y15-29","2011","15","","" +"LU","F","POP","TOTAL","OC2","H","Y30-49","2011","71","","" +"LU","F","POP","TOTAL","OC2","H","Y50-64","2011","13","","" +"LU","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","I","Y15-29","2011","24","","" +"LU","F","POP","TOTAL","OC2","I","Y30-49","2011","28","","" +"LU","F","POP","TOTAL","OC2","I","Y50-64","2011","6","","" +"LU","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","J","Y15-29","2011","100","","" +"LU","F","POP","TOTAL","OC2","J","Y30-49","2011","305","","" +"LU","F","POP","TOTAL","OC2","J","Y50-64","2011","44","","" +"LU","F","POP","TOTAL","OC2","J","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","K","Y15-29","2011","430","","" +"LU","F","POP","TOTAL","OC2","K","Y30-49","2011","1787","","" +"LU","F","POP","TOTAL","OC2","K","Y50-64","2011","196","","" +"LU","F","POP","TOTAL","OC2","K","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","L","Y15-29","2011","7","","" +"LU","F","POP","TOTAL","OC2","L","Y30-49","2011","18","","" +"LU","F","POP","TOTAL","OC2","L","Y50-64","2011","5","","" +"LU","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","M","Y15-29","2011","739","","" +"LU","F","POP","TOTAL","OC2","M","Y30-49","2011","1203","","" +"LU","F","POP","TOTAL","OC2","M","Y50-64","2011","168","","" +"LU","F","POP","TOTAL","OC2","M","Y65-84","2011","4","","" +"LU","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","N","Y15-29","2011","33","","" +"LU","F","POP","TOTAL","OC2","N","Y30-49","2011","85","","" +"LU","F","POP","TOTAL","OC2","N","Y50-64","2011","10","","" +"LU","F","POP","TOTAL","OC2","N","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","O","Y15-29","2011","941","","" +"LU","F","POP","TOTAL","OC2","O","Y30-49","2011","2437","","" +"LU","F","POP","TOTAL","OC2","O","Y50-64","2011","907","","" +"LU","F","POP","TOTAL","OC2","O","Y65-84","2011","6","","" +"LU","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","P","Y15-29","2011","759","","" +"LU","F","POP","TOTAL","OC2","P","Y30-49","2011","1945","","" +"LU","F","POP","TOTAL","OC2","P","Y50-64","2011","577","","" +"LU","F","POP","TOTAL","OC2","P","Y65-84","2011","8","","" +"LU","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","Q","Y15-29","2011","547","","" +"LU","F","POP","TOTAL","OC2","Q","Y30-49","2011","1733","","" +"LU","F","POP","TOTAL","OC2","Q","Y50-64","2011","479","","" +"LU","F","POP","TOTAL","OC2","Q","Y65-84","2011","4","","" +"LU","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","R","Y15-29","2011","24","","" +"LU","F","POP","TOTAL","OC2","R","Y30-49","2011","91","","" +"LU","F","POP","TOTAL","OC2","R","Y50-64","2011","21","","" +"LU","F","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","S","Y15-29","2011","59","","" +"LU","F","POP","TOTAL","OC2","S","Y30-49","2011","247","","" +"LU","F","POP","TOTAL","OC2","S","Y50-64","2011","71","","" +"LU","F","POP","TOTAL","OC2","S","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","T","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC2","T","Y30-49","2011","2","","" +"LU","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","U","Y15-29","2011","200","","" +"LU","F","POP","TOTAL","OC2","U","Y30-49","2011","2105","","" +"LU","F","POP","TOTAL","OC2","U","Y50-64","2011","641","","" +"LU","F","POP","TOTAL","OC2","U","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC2","UNK","Y15-29","2011","417","","" +"LU","F","POP","TOTAL","OC2","UNK","Y30-49","2011","1270","","" +"LU","F","POP","TOTAL","OC2","UNK","Y50-64","2011","427","","" +"LU","F","POP","TOTAL","OC2","UNK","Y65-84","2011","21","","" +"LU","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","A","Y15-29","2011","6","","" +"LU","F","POP","TOTAL","OC3","A","Y30-49","2011","8","","" +"LU","F","POP","TOTAL","OC3","A","Y50-64","2011","6","","" +"LU","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","C","Y15-29","2011","45","","" +"LU","F","POP","TOTAL","OC3","C","Y30-49","2011","174","","" +"LU","F","POP","TOTAL","OC3","C","Y50-64","2011","60","","" +"LU","F","POP","TOTAL","OC3","C","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","D","Y15-29","2011","6","","" +"LU","F","POP","TOTAL","OC3","D","Y30-49","2011","19","","" +"LU","F","POP","TOTAL","OC3","D","Y50-64","2011","6","","" +"LU","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","E","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC3","E","Y30-49","2011","10","","" +"LU","F","POP","TOTAL","OC3","E","Y50-64","2011","6","","" +"LU","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","F","Y15-29","2011","38","","" +"LU","F","POP","TOTAL","OC3","F","Y30-49","2011","131","","" +"LU","F","POP","TOTAL","OC3","F","Y50-64","2011","62","","" +"LU","F","POP","TOTAL","OC3","F","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","G","Y15-29","2011","175","","" +"LU","F","POP","TOTAL","OC3","G","Y30-49","2011","407","","" +"LU","F","POP","TOTAL","OC3","G","Y50-64","2011","130","","" +"LU","F","POP","TOTAL","OC3","G","Y65-84","2011","7","","" +"LU","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","H","Y15-29","2011","32","","" +"LU","F","POP","TOTAL","OC3","H","Y30-49","2011","142","","" +"LU","F","POP","TOTAL","OC3","H","Y50-64","2011","38","","" +"LU","F","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","I","Y15-29","2011","26","","" +"LU","F","POP","TOTAL","OC3","I","Y30-49","2011","50","","" +"LU","F","POP","TOTAL","OC3","I","Y50-64","2011","10","","" +"LU","F","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","J","Y15-29","2011","34","","" +"LU","F","POP","TOTAL","OC3","J","Y30-49","2011","144","","" +"LU","F","POP","TOTAL","OC3","J","Y50-64","2011","34","","" +"LU","F","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","K","Y15-29","2011","241","","" +"LU","F","POP","TOTAL","OC3","K","Y30-49","2011","1068","","" +"LU","F","POP","TOTAL","OC3","K","Y50-64","2011","278","","" +"LU","F","POP","TOTAL","OC3","K","Y65-84","2011","12","","" +"LU","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","L","Y15-29","2011","43","","" +"LU","F","POP","TOTAL","OC3","L","Y30-49","2011","110","","" +"LU","F","POP","TOTAL","OC3","L","Y50-64","2011","57","","" +"LU","F","POP","TOTAL","OC3","L","Y65-84","2011","3","","" +"LU","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","M","Y15-29","2011","289","","" +"LU","F","POP","TOTAL","OC3","M","Y30-49","2011","574","","" +"LU","F","POP","TOTAL","OC3","M","Y50-64","2011","153","","" +"LU","F","POP","TOTAL","OC3","M","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","N","Y15-29","2011","34","","" +"LU","F","POP","TOTAL","OC3","N","Y30-49","2011","106","","" +"LU","F","POP","TOTAL","OC3","N","Y50-64","2011","32","","" +"LU","F","POP","TOTAL","OC3","N","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","O","Y15-29","2011","423","","" +"LU","F","POP","TOTAL","OC3","O","Y30-49","2011","1195","","" +"LU","F","POP","TOTAL","OC3","O","Y50-64","2011","354","","" +"LU","F","POP","TOTAL","OC3","O","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","P","Y15-29","2011","80","","" +"LU","F","POP","TOTAL","OC3","P","Y30-49","2011","114","","" +"LU","F","POP","TOTAL","OC3","P","Y50-64","2011","40","","" +"LU","F","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","Q","Y15-29","2011","1320","","" +"LU","F","POP","TOTAL","OC3","Q","Y30-49","2011","2429","","" +"LU","F","POP","TOTAL","OC3","Q","Y50-64","2011","797","","" +"LU","F","POP","TOTAL","OC3","Q","Y65-84","2011","5","","" +"LU","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","R","Y15-29","2011","21","","" +"LU","F","POP","TOTAL","OC3","R","Y30-49","2011","63","","" +"LU","F","POP","TOTAL","OC3","R","Y50-64","2011","13","","" +"LU","F","POP","TOTAL","OC3","R","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","S","Y15-29","2011","101","","" +"LU","F","POP","TOTAL","OC3","S","Y30-49","2011","216","","" +"LU","F","POP","TOTAL","OC3","S","Y50-64","2011","93","","" +"LU","F","POP","TOTAL","OC3","S","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC3","T","Y30-49","2011","3","","" +"LU","F","POP","TOTAL","OC3","T","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","U","Y15-29","2011","62","","" +"LU","F","POP","TOTAL","OC3","U","Y30-49","2011","566","","" +"LU","F","POP","TOTAL","OC3","U","Y50-64","2011","340","","" +"LU","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC3","UNK","Y15-29","2011","316","","" +"LU","F","POP","TOTAL","OC3","UNK","Y30-49","2011","822","","" +"LU","F","POP","TOTAL","OC3","UNK","Y50-64","2011","322","","" +"LU","F","POP","TOTAL","OC3","UNK","Y65-84","2011","8","","" +"LU","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","A","Y15-29","2011","5","","" +"LU","F","POP","TOTAL","OC4","A","Y30-49","2011","15","","" +"LU","F","POP","TOTAL","OC4","A","Y50-64","2011","5","","" +"LU","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC4","B","Y30-49","2011","9","","" +"LU","F","POP","TOTAL","OC4","B","Y50-64","2011","4","","" +"LU","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","C","Y15-29","2011","79","","" +"LU","F","POP","TOTAL","OC4","C","Y30-49","2011","299","","" +"LU","F","POP","TOTAL","OC4","C","Y50-64","2011","133","","" +"LU","F","POP","TOTAL","OC4","C","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","D","Y15-29","2011","24","","" +"LU","F","POP","TOTAL","OC4","D","Y30-49","2011","37","","" +"LU","F","POP","TOTAL","OC4","D","Y50-64","2011","10","","" +"LU","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","E","Y15-29","2011","7","","" +"LU","F","POP","TOTAL","OC4","E","Y30-49","2011","17","","" +"LU","F","POP","TOTAL","OC4","E","Y50-64","2011","6","","" +"LU","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","F","Y15-29","2011","162","","" +"LU","F","POP","TOTAL","OC4","F","Y30-49","2011","442","","" +"LU","F","POP","TOTAL","OC4","F","Y50-64","2011","165","","" +"LU","F","POP","TOTAL","OC4","F","Y65-84","2011","6","","" +"LU","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","G","Y15-29","2011","348","","" +"LU","F","POP","TOTAL","OC4","G","Y30-49","2011","754","","" +"LU","F","POP","TOTAL","OC4","G","Y50-64","2011","285","","" +"LU","F","POP","TOTAL","OC4","G","Y65-84","2011","13","","" +"LU","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","H","Y15-29","2011","140","","" +"LU","F","POP","TOTAL","OC4","H","Y30-49","2011","373","","" +"LU","F","POP","TOTAL","OC4","H","Y50-64","2011","101","","" +"LU","F","POP","TOTAL","OC4","H","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","I","Y15-29","2011","54","","" +"LU","F","POP","TOTAL","OC4","I","Y30-49","2011","81","","" +"LU","F","POP","TOTAL","OC4","I","Y50-64","2011","19","","" +"LU","F","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","I","Y_GE85","2011","1","","" +"LU","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","J","Y15-29","2011","113","","" +"LU","F","POP","TOTAL","OC4","J","Y30-49","2011","386","","" +"LU","F","POP","TOTAL","OC4","J","Y50-64","2011","134","","" +"LU","F","POP","TOTAL","OC4","J","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","K","Y15-29","2011","433","","" +"LU","F","POP","TOTAL","OC4","K","Y30-49","2011","2451","","" +"LU","F","POP","TOTAL","OC4","K","Y50-64","2011","631","","" +"LU","F","POP","TOTAL","OC4","K","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","L","Y15-29","2011","39","","" +"LU","F","POP","TOTAL","OC4","L","Y30-49","2011","89","","" +"LU","F","POP","TOTAL","OC4","L","Y50-64","2011","41","","" +"LU","F","POP","TOTAL","OC4","L","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","M","Y15-29","2011","286","","" +"LU","F","POP","TOTAL","OC4","M","Y30-49","2011","602","","" +"LU","F","POP","TOTAL","OC4","M","Y50-64","2011","200","","" +"LU","F","POP","TOTAL","OC4","M","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","N","Y15-29","2011","175","","" +"LU","F","POP","TOTAL","OC4","N","Y30-49","2011","251","","" +"LU","F","POP","TOTAL","OC4","N","Y50-64","2011","75","","" +"LU","F","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","O","Y15-29","2011","314","","" +"LU","F","POP","TOTAL","OC4","O","Y30-49","2011","1155","","" +"LU","F","POP","TOTAL","OC4","O","Y50-64","2011","438","","" +"LU","F","POP","TOTAL","OC4","O","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","P","Y15-29","2011","35","","" +"LU","F","POP","TOTAL","OC4","P","Y30-49","2011","111","","" +"LU","F","POP","TOTAL","OC4","P","Y50-64","2011","32","","" +"LU","F","POP","TOTAL","OC4","P","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","Q","Y15-29","2011","210","","" +"LU","F","POP","TOTAL","OC4","Q","Y30-49","2011","664","","" +"LU","F","POP","TOTAL","OC4","Q","Y50-64","2011","250","","" +"LU","F","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","R","Y15-29","2011","27","","" +"LU","F","POP","TOTAL","OC4","R","Y30-49","2011","83","","" +"LU","F","POP","TOTAL","OC4","R","Y50-64","2011","28","","" +"LU","F","POP","TOTAL","OC4","R","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","S","Y15-29","2011","47","","" +"LU","F","POP","TOTAL","OC4","S","Y30-49","2011","178","","" +"LU","F","POP","TOTAL","OC4","S","Y50-64","2011","77","","" +"LU","F","POP","TOTAL","OC4","S","Y65-84","2011","3","","" +"LU","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC4","T","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","U","Y15-29","2011","42","","" +"LU","F","POP","TOTAL","OC4","U","Y30-49","2011","446","","" +"LU","F","POP","TOTAL","OC4","U","Y50-64","2011","344","","" +"LU","F","POP","TOTAL","OC4","U","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC4","UNK","Y15-29","2011","247","","" +"LU","F","POP","TOTAL","OC4","UNK","Y30-49","2011","712","","" +"LU","F","POP","TOTAL","OC4","UNK","Y50-64","2011","269","","" +"LU","F","POP","TOTAL","OC4","UNK","Y65-84","2011","9","","" +"LU","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","A","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC5","A","Y30-49","2011","2","","" +"LU","F","POP","TOTAL","OC5","A","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","C","Y15-29","2011","100","","" +"LU","F","POP","TOTAL","OC5","C","Y30-49","2011","291","","" +"LU","F","POP","TOTAL","OC5","C","Y50-64","2011","73","","" +"LU","F","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","D","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC5","D","Y30-49","2011","5","","" +"LU","F","POP","TOTAL","OC5","D","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","F","Y15-29","2011","20","","" +"LU","F","POP","TOTAL","OC5","F","Y30-49","2011","57","","" +"LU","F","POP","TOTAL","OC5","F","Y50-64","2011","28","","" +"LU","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","G","Y15-29","2011","1180","","" +"LU","F","POP","TOTAL","OC5","G","Y30-49","2011","2140","","" +"LU","F","POP","TOTAL","OC5","G","Y50-64","2011","760","","" +"LU","F","POP","TOTAL","OC5","G","Y65-84","2011","25","","" +"LU","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","H","Y15-29","2011","92","","" +"LU","F","POP","TOTAL","OC5","H","Y30-49","2011","196","","" +"LU","F","POP","TOTAL","OC5","H","Y50-64","2011","32","","" +"LU","F","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","I","Y15-29","2011","664","","" +"LU","F","POP","TOTAL","OC5","I","Y30-49","2011","1194","","" +"LU","F","POP","TOTAL","OC5","I","Y50-64","2011","266","","" +"LU","F","POP","TOTAL","OC5","I","Y65-84","2011","3","","" +"LU","F","POP","TOTAL","OC5","I","Y_GE85","2011","1","","" +"LU","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","J","Y15-29","2011","18","","" +"LU","F","POP","TOTAL","OC5","J","Y30-49","2011","32","","" +"LU","F","POP","TOTAL","OC5","J","Y50-64","2011","10","","" +"LU","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","K","Y15-29","2011","46","","" +"LU","F","POP","TOTAL","OC5","K","Y30-49","2011","94","","" +"LU","F","POP","TOTAL","OC5","K","Y50-64","2011","27","","" +"LU","F","POP","TOTAL","OC5","K","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","L","Y15-29","2011","10","","" +"LU","F","POP","TOTAL","OC5","L","Y30-49","2011","16","","" +"LU","F","POP","TOTAL","OC5","L","Y50-64","2011","8","","" +"LU","F","POP","TOTAL","OC5","L","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","M","Y15-29","2011","23","","" +"LU","F","POP","TOTAL","OC5","M","Y30-49","2011","53","","" +"LU","F","POP","TOTAL","OC5","M","Y50-64","2011","19","","" +"LU","F","POP","TOTAL","OC5","M","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","N","Y15-29","2011","60","","" +"LU","F","POP","TOTAL","OC5","N","Y30-49","2011","160","","" +"LU","F","POP","TOTAL","OC5","N","Y50-64","2011","62","","" +"LU","F","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","O","Y15-29","2011","159","","" +"LU","F","POP","TOTAL","OC5","O","Y30-49","2011","474","","" +"LU","F","POP","TOTAL","OC5","O","Y50-64","2011","225","","" +"LU","F","POP","TOTAL","OC5","O","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","P","Y15-29","2011","34","","" +"LU","F","POP","TOTAL","OC5","P","Y30-49","2011","50","","" +"LU","F","POP","TOTAL","OC5","P","Y50-64","2011","18","","" +"LU","F","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","Q","Y15-29","2011","874","","" +"LU","F","POP","TOTAL","OC5","Q","Y30-49","2011","1778","","" +"LU","F","POP","TOTAL","OC5","Q","Y50-64","2011","624","","" +"LU","F","POP","TOTAL","OC5","Q","Y65-84","2011","3","","" +"LU","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","R","Y15-29","2011","30","","" +"LU","F","POP","TOTAL","OC5","R","Y30-49","2011","33","","" +"LU","F","POP","TOTAL","OC5","R","Y50-64","2011","21","","" +"LU","F","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","S","Y15-29","2011","562","","" +"LU","F","POP","TOTAL","OC5","S","Y30-49","2011","766","","" +"LU","F","POP","TOTAL","OC5","S","Y50-64","2011","155","","" +"LU","F","POP","TOTAL","OC5","S","Y65-84","2011","5","","" +"LU","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","T","Y15-29","2011","6","","" +"LU","F","POP","TOTAL","OC5","T","Y30-49","2011","59","","" +"LU","F","POP","TOTAL","OC5","T","Y50-64","2011","21","","" +"LU","F","POP","TOTAL","OC5","T","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","U","Y15-29","2011","7","","" +"LU","F","POP","TOTAL","OC5","U","Y30-49","2011","18","","" +"LU","F","POP","TOTAL","OC5","U","Y50-64","2011","13","","" +"LU","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC5","UNK","Y15-29","2011","599","","" +"LU","F","POP","TOTAL","OC5","UNK","Y30-49","2011","1203","","" +"LU","F","POP","TOTAL","OC5","UNK","Y50-64","2011","414","","" +"LU","F","POP","TOTAL","OC5","UNK","Y65-84","2011","20","","" +"LU","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","1","","" +"LU","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","A","Y15-29","2011","43","","" +"LU","F","POP","TOTAL","OC6","A","Y30-49","2011","314","","" +"LU","F","POP","TOTAL","OC6","A","Y50-64","2011","295","","" +"LU","F","POP","TOTAL","OC6","A","Y65-84","2011","41","","" +"LU","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","C","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC6","C","Y30-49","2011","6","","" +"LU","F","POP","TOTAL","OC6","C","Y50-64","2011","7","","" +"LU","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","D","Y30-49","2011","2","","" +"LU","F","POP","TOTAL","OC6","D","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","F","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC6","F","Y30-49","2011","3","","" +"LU","F","POP","TOTAL","OC6","F","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC6","F","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","G","Y15-29","2011","60","","" +"LU","F","POP","TOTAL","OC6","G","Y30-49","2011","68","","" +"LU","F","POP","TOTAL","OC6","G","Y50-64","2011","21","","" +"LU","F","POP","TOTAL","OC6","G","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","H","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","I","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC6","I","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC6","I","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","K","Y30-49","2011","3","","" +"LU","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC6","L","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","M","Y30-49","2011","6","","" +"LU","F","POP","TOTAL","OC6","M","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC6","M","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","N","Y15-29","2011","14","","" +"LU","F","POP","TOTAL","OC6","N","Y30-49","2011","7","","" +"LU","F","POP","TOTAL","OC6","N","Y50-64","2011","5","","" +"LU","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","O","Y15-29","2011","27","","" +"LU","F","POP","TOTAL","OC6","O","Y30-49","2011","27","","" +"LU","F","POP","TOTAL","OC6","O","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","P","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","Q","Y15-29","2011","22","","" +"LU","F","POP","TOTAL","OC6","Q","Y30-49","2011","9","","" +"LU","F","POP","TOTAL","OC6","Q","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","R","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","S","Y15-29","2011","2","","" +"LU","F","POP","TOTAL","OC6","S","Y30-49","2011","2","","" +"LU","F","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC6","T","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC6","UNK","Y15-29","2011","30","","" +"LU","F","POP","TOTAL","OC6","UNK","Y30-49","2011","84","","" +"LU","F","POP","TOTAL","OC6","UNK","Y50-64","2011","59","","" +"LU","F","POP","TOTAL","OC6","UNK","Y65-84","2011","10","","" +"LU","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","A","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC7","A","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","C","Y15-29","2011","65","","" +"LU","F","POP","TOTAL","OC7","C","Y30-49","2011","176","","" +"LU","F","POP","TOTAL","OC7","C","Y50-64","2011","47","","" +"LU","F","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC7","D","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","F","Y15-29","2011","41","","" +"LU","F","POP","TOTAL","OC7","F","Y30-49","2011","84","","" +"LU","F","POP","TOTAL","OC7","F","Y50-64","2011","26","","" +"LU","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","G","Y15-29","2011","39","","" +"LU","F","POP","TOTAL","OC7","G","Y30-49","2011","97","","" +"LU","F","POP","TOTAL","OC7","G","Y50-64","2011","45","","" +"LU","F","POP","TOTAL","OC7","G","Y65-84","2011","4","","" +"LU","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","H","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC7","H","Y30-49","2011","11","","" +"LU","F","POP","TOTAL","OC7","H","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","I","Y15-29","2011","5","","" +"LU","F","POP","TOTAL","OC7","I","Y30-49","2011","7","","" +"LU","F","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","J","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC7","J","Y30-49","2011","9","","" +"LU","F","POP","TOTAL","OC7","J","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","K","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC7","K","Y30-49","2011","12","","" +"LU","F","POP","TOTAL","OC7","K","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC7","L","Y30-49","2011","2","","" +"LU","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","M","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC7","M","Y30-49","2011","17","","" +"LU","F","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","N","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC7","N","Y30-49","2011","16","","" +"LU","F","POP","TOTAL","OC7","N","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","O","Y15-29","2011","6","","" +"LU","F","POP","TOTAL","OC7","O","Y30-49","2011","21","","" +"LU","F","POP","TOTAL","OC7","O","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC7","P","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC7","P","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","Q","Y15-29","2011","9","","" +"LU","F","POP","TOTAL","OC7","Q","Y30-49","2011","25","","" +"LU","F","POP","TOTAL","OC7","Q","Y50-64","2011","14","","" +"LU","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","R","Y15-29","2011","2","","" +"LU","F","POP","TOTAL","OC7","R","Y30-49","2011","6","","" +"LU","F","POP","TOTAL","OC7","R","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","S","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC7","S","Y30-49","2011","44","","" +"LU","F","POP","TOTAL","OC7","S","Y50-64","2011","21","","" +"LU","F","POP","TOTAL","OC7","S","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC7","T","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC7","U","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC7","U","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC7","UNK","Y15-29","2011","37","","" +"LU","F","POP","TOTAL","OC7","UNK","Y30-49","2011","82","","" +"LU","F","POP","TOTAL","OC7","UNK","Y50-64","2011","37","","" +"LU","F","POP","TOTAL","OC7","UNK","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","C","Y15-29","2011","23","","" +"LU","F","POP","TOTAL","OC8","C","Y30-49","2011","94","","" +"LU","F","POP","TOTAL","OC8","C","Y50-64","2011","35","","" +"LU","F","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","F","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC8","F","Y30-49","2011","14","","" +"LU","F","POP","TOTAL","OC8","F","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","G","Y15-29","2011","9","","" +"LU","F","POP","TOTAL","OC8","G","Y30-49","2011","35","","" +"LU","F","POP","TOTAL","OC8","G","Y50-64","2011","3","","" +"LU","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","H","Y15-29","2011","49","","" +"LU","F","POP","TOTAL","OC8","H","Y30-49","2011","111","","" +"LU","F","POP","TOTAL","OC8","H","Y50-64","2011","26","","" +"LU","F","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","I","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC8","I","Y30-49","2011","5","","" +"LU","F","POP","TOTAL","OC8","I","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","J","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC8","J","Y30-49","2011","4","","" +"LU","F","POP","TOTAL","OC8","J","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","K","Y30-49","2011","3","","" +"LU","F","POP","TOTAL","OC8","K","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","M","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC8","M","Y30-49","2011","9","","" +"LU","F","POP","TOTAL","OC8","M","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","N","Y15-29","2011","8","","" +"LU","F","POP","TOTAL","OC8","N","Y30-49","2011","18","","" +"LU","F","POP","TOTAL","OC8","N","Y50-64","2011","5","","" +"LU","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","O","Y15-29","2011","2","","" +"LU","F","POP","TOTAL","OC8","O","Y30-49","2011","31","","" +"LU","F","POP","TOTAL","OC8","O","Y50-64","2011","9","","" +"LU","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","P","Y30-49","2011","3","","" +"LU","F","POP","TOTAL","OC8","P","Y50-64","2011","1","","" +"LU","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","Q","Y15-29","2011","7","","" +"LU","F","POP","TOTAL","OC8","Q","Y30-49","2011","49","","" +"LU","F","POP","TOTAL","OC8","Q","Y50-64","2011","13","","" +"LU","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","S","Y15-29","2011","3","","" +"LU","F","POP","TOTAL","OC8","S","Y30-49","2011","19","","" +"LU","F","POP","TOTAL","OC8","S","Y50-64","2011","6","","" +"LU","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","U","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","OC8","U","Y30-49","2011","1","","" +"LU","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC8","UNK","Y15-29","2011","10","","" +"LU","F","POP","TOTAL","OC8","UNK","Y30-49","2011","39","","" +"LU","F","POP","TOTAL","OC8","UNK","Y50-64","2011","7","","" +"LU","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","A","Y15-29","2011","5","","" +"LU","F","POP","TOTAL","OC9","A","Y30-49","2011","36","","" +"LU","F","POP","TOTAL","OC9","A","Y50-64","2011","20","","" +"LU","F","POP","TOTAL","OC9","A","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC9","B","Y30-49","2011","4","","" +"LU","F","POP","TOTAL","OC9","B","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","C","Y15-29","2011","53","","" +"LU","F","POP","TOTAL","OC9","C","Y30-49","2011","303","","" +"LU","F","POP","TOTAL","OC9","C","Y50-64","2011","78","","" +"LU","F","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","D","Y15-29","2011","2","","" +"LU","F","POP","TOTAL","OC9","D","Y30-49","2011","7","","" +"LU","F","POP","TOTAL","OC9","D","Y50-64","2011","5","","" +"LU","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC9","E","Y30-49","2011","13","","" +"LU","F","POP","TOTAL","OC9","E","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","F","Y15-29","2011","32","","" +"LU","F","POP","TOTAL","OC9","F","Y30-49","2011","250","","" +"LU","F","POP","TOTAL","OC9","F","Y50-64","2011","80","","" +"LU","F","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","G","Y15-29","2011","140","","" +"LU","F","POP","TOTAL","OC9","G","Y30-49","2011","610","","" +"LU","F","POP","TOTAL","OC9","G","Y50-64","2011","189","","" +"LU","F","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","H","Y15-29","2011","18","","" +"LU","F","POP","TOTAL","OC9","H","Y30-49","2011","82","","" +"LU","F","POP","TOTAL","OC9","H","Y50-64","2011","18","","" +"LU","F","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","I","Y15-29","2011","238","","" +"LU","F","POP","TOTAL","OC9","I","Y30-49","2011","919","","" +"LU","F","POP","TOTAL","OC9","I","Y50-64","2011","223","","" +"LU","F","POP","TOTAL","OC9","I","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","J","Y15-29","2011","14","","" +"LU","F","POP","TOTAL","OC9","J","Y30-49","2011","144","","" +"LU","F","POP","TOTAL","OC9","J","Y50-64","2011","89","","" +"LU","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","K","Y15-29","2011","9","","" +"LU","F","POP","TOTAL","OC9","K","Y30-49","2011","70","","" +"LU","F","POP","TOTAL","OC9","K","Y50-64","2011","33","","" +"LU","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","L","Y15-29","2011","7","","" +"LU","F","POP","TOTAL","OC9","L","Y30-49","2011","68","","" +"LU","F","POP","TOTAL","OC9","L","Y50-64","2011","26","","" +"LU","F","POP","TOTAL","OC9","L","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","M","Y15-29","2011","43","","" +"LU","F","POP","TOTAL","OC9","M","Y30-49","2011","226","","" +"LU","F","POP","TOTAL","OC9","M","Y50-64","2011","90","","" +"LU","F","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","N","Y15-29","2011","723","","" +"LU","F","POP","TOTAL","OC9","N","Y30-49","2011","2495","","" +"LU","F","POP","TOTAL","OC9","N","Y50-64","2011","527","","" +"LU","F","POP","TOTAL","OC9","N","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","O","Y15-29","2011","155","","" +"LU","F","POP","TOTAL","OC9","O","Y30-49","2011","1084","","" +"LU","F","POP","TOTAL","OC9","O","Y50-64","2011","578","","" +"LU","F","POP","TOTAL","OC9","O","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","P","Y15-29","2011","28","","" +"LU","F","POP","TOTAL","OC9","P","Y30-49","2011","194","","" +"LU","F","POP","TOTAL","OC9","P","Y50-64","2011","107","","" +"LU","F","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","Q","Y15-29","2011","217","","" +"LU","F","POP","TOTAL","OC9","Q","Y30-49","2011","1375","","" +"LU","F","POP","TOTAL","OC9","Q","Y50-64","2011","519","","" +"LU","F","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","R","Y15-29","2011","9","","" +"LU","F","POP","TOTAL","OC9","R","Y30-49","2011","45","","" +"LU","F","POP","TOTAL","OC9","R","Y50-64","2011","12","","" +"LU","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","S","Y15-29","2011","37","","" +"LU","F","POP","TOTAL","OC9","S","Y30-49","2011","189","","" +"LU","F","POP","TOTAL","OC9","S","Y50-64","2011","74","","" +"LU","F","POP","TOTAL","OC9","S","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","T","Y15-29","2011","53","","" +"LU","F","POP","TOTAL","OC9","T","Y30-49","2011","563","","" +"LU","F","POP","TOTAL","OC9","T","Y50-64","2011","230","","" +"LU","F","POP","TOTAL","OC9","T","Y65-84","2011","4","","" +"LU","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","U","Y15-29","2011","2","","" +"LU","F","POP","TOTAL","OC9","U","Y30-49","2011","11","","" +"LU","F","POP","TOTAL","OC9","U","Y50-64","2011","11","","" +"LU","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","OC9","UNK","Y15-29","2011","366","","" +"LU","F","POP","TOTAL","OC9","UNK","Y30-49","2011","2588","","" +"LU","F","POP","TOTAL","OC9","UNK","Y50-64","2011","932","","" +"LU","F","POP","TOTAL","OC9","UNK","Y65-84","2011","12","","" +"LU","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","A","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","UNK","A","Y30-49","2011","15","","" +"LU","F","POP","TOTAL","UNK","A","Y50-64","2011","26","","" +"LU","F","POP","TOTAL","UNK","A","Y65-84","2011","3","","" +"LU","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","UNK","B","Y30-49","2011","2","","" +"LU","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","C","Y15-29","2011","26","","" +"LU","F","POP","TOTAL","UNK","C","Y30-49","2011","147","","" +"LU","F","POP","TOTAL","UNK","C","Y50-64","2011","49","","" +"LU","F","POP","TOTAL","UNK","C","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","D","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","UNK","D","Y30-49","2011","7","","" +"LU","F","POP","TOTAL","UNK","D","Y50-64","2011","4","","" +"LU","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","E","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","UNK","E","Y30-49","2011","4","","" +"LU","F","POP","TOTAL","UNK","E","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","F","Y15-29","2011","11","","" +"LU","F","POP","TOTAL","UNK","F","Y30-49","2011","48","","" +"LU","F","POP","TOTAL","UNK","F","Y50-64","2011","27","","" +"LU","F","POP","TOTAL","UNK","F","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","G","Y15-29","2011","78","","" +"LU","F","POP","TOTAL","UNK","G","Y30-49","2011","200","","" +"LU","F","POP","TOTAL","UNK","G","Y50-64","2011","68","","" +"LU","F","POP","TOTAL","UNK","G","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","H","Y15-29","2011","17","","" +"LU","F","POP","TOTAL","UNK","H","Y30-49","2011","54","","" +"LU","F","POP","TOTAL","UNK","H","Y50-64","2011","23","","" +"LU","F","POP","TOTAL","UNK","H","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","I","Y15-29","2011","42","","" +"LU","F","POP","TOTAL","UNK","I","Y30-49","2011","111","","" +"LU","F","POP","TOTAL","UNK","I","Y50-64","2011","35","","" +"LU","F","POP","TOTAL","UNK","I","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","UNK","I","Y_GE85","2011","1","","" +"LU","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","J","Y15-29","2011","6","","" +"LU","F","POP","TOTAL","UNK","J","Y30-49","2011","77","","" +"LU","F","POP","TOTAL","UNK","J","Y50-64","2011","24","","" +"LU","F","POP","TOTAL","UNK","J","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","K","Y15-29","2011","33","","" +"LU","F","POP","TOTAL","UNK","K","Y30-49","2011","131","","" +"LU","F","POP","TOTAL","UNK","K","Y50-64","2011","37","","" +"LU","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","L","Y15-29","2011","4","","" +"LU","F","POP","TOTAL","UNK","L","Y30-49","2011","11","","" +"LU","F","POP","TOTAL","UNK","L","Y50-64","2011","5","","" +"LU","F","POP","TOTAL","UNK","L","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","M","Y15-29","2011","40","","" +"LU","F","POP","TOTAL","UNK","M","Y30-49","2011","71","","" +"LU","F","POP","TOTAL","UNK","M","Y50-64","2011","21","","" +"LU","F","POP","TOTAL","UNK","M","Y65-84","2011","2","","" +"LU","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","N","Y15-29","2011","35","","" +"LU","F","POP","TOTAL","UNK","N","Y30-49","2011","78","","" +"LU","F","POP","TOTAL","UNK","N","Y50-64","2011","21","","" +"LU","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"LU","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"LU","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"LU","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","O","Y15-29","2011","119","","" +"LU","F","POP","TOTAL","UNK","O","Y30-49","2011","408","","" +"LU","F","POP","TOTAL","UNK","O","Y50-64","2011","211","","" +"LU","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","P","Y15-29","2011","15","","" +"LU","F","POP","TOTAL","UNK","P","Y30-49","2011","40","","" +"LU","F","POP","TOTAL","UNK","P","Y50-64","2011","21","","" +"LU","F","POP","TOTAL","UNK","P","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","Q","Y15-29","2011","131","","" +"LU","F","POP","TOTAL","UNK","Q","Y30-49","2011","345","","" +"LU","F","POP","TOTAL","UNK","Q","Y50-64","2011","148","","" +"LU","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","R","Y15-29","2011","10","","" +"LU","F","POP","TOTAL","UNK","R","Y30-49","2011","26","","" +"LU","F","POP","TOTAL","UNK","R","Y50-64","2011","11","","" +"LU","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","S","Y15-29","2011","26","","" +"LU","F","POP","TOTAL","UNK","S","Y30-49","2011","61","","" +"LU","F","POP","TOTAL","UNK","S","Y50-64","2011","15","","" +"LU","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","T","Y15-29","2011","1","","" +"LU","F","POP","TOTAL","UNK","T","Y30-49","2011","20","","" +"LU","F","POP","TOTAL","UNK","T","Y50-64","2011","2","","" +"LU","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"LU","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","U","Y15-29","2011","18","","" +"LU","F","POP","TOTAL","UNK","U","Y30-49","2011","122","","" +"LU","F","POP","TOTAL","UNK","U","Y50-64","2011","93","","" +"LU","F","POP","TOTAL","UNK","U","Y65-84","2011","1","","" +"LU","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"LU","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"LU","F","POP","TOTAL","UNK","UNK","Y15-29","2011","635","","" +"LU","F","POP","TOTAL","UNK","UNK","Y30-49","2011","1505","","" +"LU","F","POP","TOTAL","UNK","UNK","Y50-64","2011","593","","" +"LU","F","POP","TOTAL","UNK","UNK","Y65-84","2011","29","","" +"LU","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","1","","" +"LU","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","NAP","Y15-29","2011","27676","","" +"LU","M","POP","TOTAL","NAP","NAP","Y30-49","2011","12616","","" +"LU","M","POP","TOTAL","NAP","NAP","Y50-64","2011","19858","","" +"LU","M","POP","TOTAL","NAP","NAP","Y65-84","2011","27596","","" +"LU","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","2179","","" +"LU","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","45467","","" +"LU","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","G","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC0","G","Y30-49","2011","1","","" +"LU","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","H","Y30-49","2011","2","","" +"LU","M","POP","TOTAL","OC0","H","Y50-64","2011","3","","" +"LU","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","K","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","O","Y15-29","2011","809","","" +"LU","M","POP","TOTAL","OC0","O","Y30-49","2011","182","","" +"LU","M","POP","TOTAL","OC0","O","Y50-64","2011","41","","" +"LU","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","Q","Y15-29","2011","6","","" +"LU","M","POP","TOTAL","OC0","Q","Y30-49","2011","6","","" +"LU","M","POP","TOTAL","OC0","Q","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","S","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC0","S","Y30-49","2011","1","","" +"LU","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC0","U","Y30-49","2011","10","","" +"LU","M","POP","TOTAL","OC0","U","Y50-64","2011","3","","" +"LU","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC0","UNK","Y15-29","2011","25","","" +"LU","M","POP","TOTAL","OC0","UNK","Y30-49","2011","16","","" +"LU","M","POP","TOTAL","OC0","UNK","Y50-64","2011","6","","" +"LU","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","A","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC1","A","Y30-49","2011","14","","" +"LU","M","POP","TOTAL","OC1","A","Y50-64","2011","6","","" +"LU","M","POP","TOTAL","OC1","A","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC1","B","Y30-49","2011","4","","" +"LU","M","POP","TOTAL","OC1","B","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","C","Y15-29","2011","22","","" +"LU","M","POP","TOTAL","OC1","C","Y30-49","2011","348","","" +"LU","M","POP","TOTAL","OC1","C","Y50-64","2011","200","","" +"LU","M","POP","TOTAL","OC1","C","Y65-84","2011","5","","" +"LU","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","D","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC1","D","Y30-49","2011","16","","" +"LU","M","POP","TOTAL","OC1","D","Y50-64","2011","7","","" +"LU","M","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC1","E","Y30-49","2011","13","","" +"LU","M","POP","TOTAL","OC1","E","Y50-64","2011","3","","" +"LU","M","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","F","Y15-29","2011","10","","" +"LU","M","POP","TOTAL","OC1","F","Y30-49","2011","290","","" +"LU","M","POP","TOTAL","OC1","F","Y50-64","2011","186","","" +"LU","M","POP","TOTAL","OC1","F","Y65-84","2011","16","","" +"LU","M","POP","TOTAL","OC1","F","Y_GE85","2011","1","","" +"LU","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","G","Y15-29","2011","48","","" +"LU","M","POP","TOTAL","OC1","G","Y30-49","2011","628","","" +"LU","M","POP","TOTAL","OC1","G","Y50-64","2011","353","","" +"LU","M","POP","TOTAL","OC1","G","Y65-84","2011","34","","" +"LU","M","POP","TOTAL","OC1","G","Y_GE85","2011","2","","" +"LU","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","H","Y15-29","2011","22","","" +"LU","M","POP","TOTAL","OC1","H","Y30-49","2011","153","","" +"LU","M","POP","TOTAL","OC1","H","Y50-64","2011","99","","" +"LU","M","POP","TOTAL","OC1","H","Y65-84","2011","15","","" +"LU","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","I","Y15-29","2011","62","","" +"LU","M","POP","TOTAL","OC1","I","Y30-49","2011","454","","" +"LU","M","POP","TOTAL","OC1","I","Y50-64","2011","256","","" +"LU","M","POP","TOTAL","OC1","I","Y65-84","2011","8","","" +"LU","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","J","Y15-29","2011","17","","" +"LU","M","POP","TOTAL","OC1","J","Y30-49","2011","267","","" +"LU","M","POP","TOTAL","OC1","J","Y50-64","2011","79","","" +"LU","M","POP","TOTAL","OC1","J","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","K","Y15-29","2011","109","","" +"LU","M","POP","TOTAL","OC1","K","Y30-49","2011","1438","","" +"LU","M","POP","TOTAL","OC1","K","Y50-64","2011","591","","" +"LU","M","POP","TOTAL","OC1","K","Y65-84","2011","17","","" +"LU","M","POP","TOTAL","OC1","K","Y_GE85","2011","1","","" +"LU","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","L","Y15-29","2011","8","","" +"LU","M","POP","TOTAL","OC1","L","Y30-49","2011","54","","" +"LU","M","POP","TOTAL","OC1","L","Y50-64","2011","33","","" +"LU","M","POP","TOTAL","OC1","L","Y65-84","2011","6","","" +"LU","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","M","Y15-29","2011","93","","" +"LU","M","POP","TOTAL","OC1","M","Y30-49","2011","464","","" +"LU","M","POP","TOTAL","OC1","M","Y50-64","2011","197","","" +"LU","M","POP","TOTAL","OC1","M","Y65-84","2011","8","","" +"LU","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","N","Y15-29","2011","12","","" +"LU","M","POP","TOTAL","OC1","N","Y30-49","2011","139","","" +"LU","M","POP","TOTAL","OC1","N","Y50-64","2011","55","","" +"LU","M","POP","TOTAL","OC1","N","Y65-84","2011","9","","" +"LU","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","O","Y15-29","2011","21","","" +"LU","M","POP","TOTAL","OC1","O","Y30-49","2011","206","","" +"LU","M","POP","TOTAL","OC1","O","Y50-64","2011","159","","" +"LU","M","POP","TOTAL","OC1","O","Y65-84","2011","8","","" +"LU","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","P","Y15-29","2011","6","","" +"LU","M","POP","TOTAL","OC1","P","Y30-49","2011","51","","" +"LU","M","POP","TOTAL","OC1","P","Y50-64","2011","38","","" +"LU","M","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","Q","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC1","Q","Y30-49","2011","110","","" +"LU","M","POP","TOTAL","OC1","Q","Y50-64","2011","70","","" +"LU","M","POP","TOTAL","OC1","Q","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","R","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC1","R","Y30-49","2011","50","","" +"LU","M","POP","TOTAL","OC1","R","Y50-64","2011","30","","" +"LU","M","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","S","Y15-29","2011","8","","" +"LU","M","POP","TOTAL","OC1","S","Y30-49","2011","67","","" +"LU","M","POP","TOTAL","OC1","S","Y50-64","2011","49","","" +"LU","M","POP","TOTAL","OC1","S","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC1","T","Y30-49","2011","1","","" +"LU","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","U","Y15-29","2011","14","","" +"LU","M","POP","TOTAL","OC1","U","Y30-49","2011","288","","" +"LU","M","POP","TOTAL","OC1","U","Y50-64","2011","230","","" +"LU","M","POP","TOTAL","OC1","U","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC1","UNK","Y15-29","2011","58","","" +"LU","M","POP","TOTAL","OC1","UNK","Y30-49","2011","652","","" +"LU","M","POP","TOTAL","OC1","UNK","Y50-64","2011","370","","" +"LU","M","POP","TOTAL","OC1","UNK","Y65-84","2011","37","","" +"LU","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","A","Y15-29","2011","9","","" +"LU","M","POP","TOTAL","OC2","A","Y30-49","2011","10","","" +"LU","M","POP","TOTAL","OC2","A","Y50-64","2011","8","","" +"LU","M","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","B","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC2","B","Y30-49","2011","3","","" +"LU","M","POP","TOTAL","OC2","B","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","C","Y15-29","2011","104","","" +"LU","M","POP","TOTAL","OC2","C","Y30-49","2011","648","","" +"LU","M","POP","TOTAL","OC2","C","Y50-64","2011","301","","" +"LU","M","POP","TOTAL","OC2","C","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","D","Y15-29","2011","23","","" +"LU","M","POP","TOTAL","OC2","D","Y30-49","2011","99","","" +"LU","M","POP","TOTAL","OC2","D","Y50-64","2011","37","","" +"LU","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","E","Y15-29","2011","5","","" +"LU","M","POP","TOTAL","OC2","E","Y30-49","2011","26","","" +"LU","M","POP","TOTAL","OC2","E","Y50-64","2011","7","","" +"LU","M","POP","TOTAL","OC2","E","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","F","Y15-29","2011","43","","" +"LU","M","POP","TOTAL","OC2","F","Y30-49","2011","133","","" +"LU","M","POP","TOTAL","OC2","F","Y50-64","2011","77","","" +"LU","M","POP","TOTAL","OC2","F","Y65-84","2011","8","","" +"LU","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","G","Y15-29","2011","88","","" +"LU","M","POP","TOTAL","OC2","G","Y30-49","2011","429","","" +"LU","M","POP","TOTAL","OC2","G","Y50-64","2011","154","","" +"LU","M","POP","TOTAL","OC2","G","Y65-84","2011","18","","" +"LU","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","H","Y15-29","2011","39","","" +"LU","M","POP","TOTAL","OC2","H","Y30-49","2011","210","","" +"LU","M","POP","TOTAL","OC2","H","Y50-64","2011","94","","" +"LU","M","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","I","Y15-29","2011","17","","" +"LU","M","POP","TOTAL","OC2","I","Y30-49","2011","44","","" +"LU","M","POP","TOTAL","OC2","I","Y50-64","2011","11","","" +"LU","M","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","J","Y15-29","2011","230","","" +"LU","M","POP","TOTAL","OC2","J","Y30-49","2011","1018","","" +"LU","M","POP","TOTAL","OC2","J","Y50-64","2011","246","","" +"LU","M","POP","TOTAL","OC2","J","Y65-84","2011","4","","" +"LU","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","K","Y15-29","2011","520","","" +"LU","M","POP","TOTAL","OC2","K","Y30-49","2011","2703","","" +"LU","M","POP","TOTAL","OC2","K","Y50-64","2011","609","","" +"LU","M","POP","TOTAL","OC2","K","Y65-84","2011","10","","" +"LU","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","L","Y15-29","2011","7","","" +"LU","M","POP","TOTAL","OC2","L","Y30-49","2011","28","","" +"LU","M","POP","TOTAL","OC2","L","Y50-64","2011","14","","" +"LU","M","POP","TOTAL","OC2","L","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","M","Y15-29","2011","698","","" +"LU","M","POP","TOTAL","OC2","M","Y30-49","2011","1885","","" +"LU","M","POP","TOTAL","OC2","M","Y50-64","2011","556","","" +"LU","M","POP","TOTAL","OC2","M","Y65-84","2011","67","","" +"LU","M","POP","TOTAL","OC2","M","Y_GE85","2011","1","","" +"LU","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","N","Y15-29","2011","24","","" +"LU","M","POP","TOTAL","OC2","N","Y30-49","2011","93","","" +"LU","M","POP","TOTAL","OC2","N","Y50-64","2011","20","","" +"LU","M","POP","TOTAL","OC2","N","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","O","Y15-29","2011","328","","" +"LU","M","POP","TOTAL","OC2","O","Y30-49","2011","1717","","" +"LU","M","POP","TOTAL","OC2","O","Y50-64","2011","747","","" +"LU","M","POP","TOTAL","OC2","O","Y65-84","2011","8","","" +"LU","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","P","Y15-29","2011","320","","" +"LU","M","POP","TOTAL","OC2","P","Y30-49","2011","1231","","" +"LU","M","POP","TOTAL","OC2","P","Y50-64","2011","539","","" +"LU","M","POP","TOTAL","OC2","P","Y65-84","2011","8","","" +"LU","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","Q","Y15-29","2011","171","","" +"LU","M","POP","TOTAL","OC2","Q","Y30-49","2011","830","","" +"LU","M","POP","TOTAL","OC2","Q","Y50-64","2011","539","","" +"LU","M","POP","TOTAL","OC2","Q","Y65-84","2011","43","","" +"LU","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","R","Y15-29","2011","22","","" +"LU","M","POP","TOTAL","OC2","R","Y30-49","2011","94","","" +"LU","M","POP","TOTAL","OC2","R","Y50-64","2011","49","","" +"LU","M","POP","TOTAL","OC2","R","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","S","Y15-29","2011","28","","" +"LU","M","POP","TOTAL","OC2","S","Y30-49","2011","201","","" +"LU","M","POP","TOTAL","OC2","S","Y50-64","2011","71","","" +"LU","M","POP","TOTAL","OC2","S","Y65-84","2011","30","","" +"LU","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC2","T","Y30-49","2011","1","","" +"LU","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","U","Y15-29","2011","71","","" +"LU","M","POP","TOTAL","OC2","U","Y30-49","2011","1599","","" +"LU","M","POP","TOTAL","OC2","U","Y50-64","2011","829","","" +"LU","M","POP","TOTAL","OC2","U","Y65-84","2011","10","","" +"LU","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC2","UNK","Y15-29","2011","272","","" +"LU","M","POP","TOTAL","OC2","UNK","Y30-49","2011","1300","","" +"LU","M","POP","TOTAL","OC2","UNK","Y50-64","2011","720","","" +"LU","M","POP","TOTAL","OC2","UNK","Y65-84","2011","94","","" +"LU","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","3","","" +"LU","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","A","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC3","A","Y30-49","2011","10","","" +"LU","M","POP","TOTAL","OC3","A","Y50-64","2011","7","","" +"LU","M","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC3","B","Y30-49","2011","2","","" +"LU","M","POP","TOTAL","OC3","B","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","C","Y15-29","2011","143","","" +"LU","M","POP","TOTAL","OC3","C","Y30-49","2011","633","","" +"LU","M","POP","TOTAL","OC3","C","Y50-64","2011","337","","" +"LU","M","POP","TOTAL","OC3","C","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","D","Y15-29","2011","36","","" +"LU","M","POP","TOTAL","OC3","D","Y30-49","2011","85","","" +"LU","M","POP","TOTAL","OC3","D","Y50-64","2011","44","","" +"LU","M","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","E","Y15-29","2011","13","","" +"LU","M","POP","TOTAL","OC3","E","Y30-49","2011","42","","" +"LU","M","POP","TOTAL","OC3","E","Y50-64","2011","14","","" +"LU","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","F","Y15-29","2011","143","","" +"LU","M","POP","TOTAL","OC3","F","Y30-49","2011","566","","" +"LU","M","POP","TOTAL","OC3","F","Y50-64","2011","243","","" +"LU","M","POP","TOTAL","OC3","F","Y65-84","2011","4","","" +"LU","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","G","Y15-29","2011","151","","" +"LU","M","POP","TOTAL","OC3","G","Y30-49","2011","552","","" +"LU","M","POP","TOTAL","OC3","G","Y50-64","2011","202","","" +"LU","M","POP","TOTAL","OC3","G","Y65-84","2011","7","","" +"LU","M","POP","TOTAL","OC3","G","Y_GE85","2011","1","","" +"LU","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","H","Y15-29","2011","125","","" +"LU","M","POP","TOTAL","OC3","H","Y30-49","2011","454","","" +"LU","M","POP","TOTAL","OC3","H","Y50-64","2011","198","","" +"LU","M","POP","TOTAL","OC3","H","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","I","Y15-29","2011","38","","" +"LU","M","POP","TOTAL","OC3","I","Y30-49","2011","149","","" +"LU","M","POP","TOTAL","OC3","I","Y50-64","2011","30","","" +"LU","M","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","J","Y15-29","2011","142","","" +"LU","M","POP","TOTAL","OC3","J","Y30-49","2011","403","","" +"LU","M","POP","TOTAL","OC3","J","Y50-64","2011","169","","" +"LU","M","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","K","Y15-29","2011","266","","" +"LU","M","POP","TOTAL","OC3","K","Y30-49","2011","1248","","" +"LU","M","POP","TOTAL","OC3","K","Y50-64","2011","457","","" +"LU","M","POP","TOTAL","OC3","K","Y65-84","2011","19","","" +"LU","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","L","Y15-29","2011","34","","" +"LU","M","POP","TOTAL","OC3","L","Y30-49","2011","170","","" +"LU","M","POP","TOTAL","OC3","L","Y50-64","2011","84","","" +"LU","M","POP","TOTAL","OC3","L","Y65-84","2011","7","","" +"LU","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","M","Y15-29","2011","192","","" +"LU","M","POP","TOTAL","OC3","M","Y30-49","2011","442","","" +"LU","M","POP","TOTAL","OC3","M","Y50-64","2011","180","","" +"LU","M","POP","TOTAL","OC3","M","Y65-84","2011","4","","" +"LU","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","N","Y15-29","2011","29","","" +"LU","M","POP","TOTAL","OC3","N","Y30-49","2011","114","","" +"LU","M","POP","TOTAL","OC3","N","Y50-64","2011","35","","" +"LU","M","POP","TOTAL","OC3","N","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","O","Y15-29","2011","445","","" +"LU","M","POP","TOTAL","OC3","O","Y30-49","2011","1577","","" +"LU","M","POP","TOTAL","OC3","O","Y50-64","2011","670","","" +"LU","M","POP","TOTAL","OC3","O","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","P","Y15-29","2011","35","","" +"LU","M","POP","TOTAL","OC3","P","Y30-49","2011","66","","" +"LU","M","POP","TOTAL","OC3","P","Y50-64","2011","27","","" +"LU","M","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","Q","Y15-29","2011","254","","" +"LU","M","POP","TOTAL","OC3","Q","Y30-49","2011","662","","" +"LU","M","POP","TOTAL","OC3","Q","Y50-64","2011","225","","" +"LU","M","POP","TOTAL","OC3","Q","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","R","Y15-29","2011","52","","" +"LU","M","POP","TOTAL","OC3","R","Y30-49","2011","107","","" +"LU","M","POP","TOTAL","OC3","R","Y50-64","2011","34","","" +"LU","M","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","S","Y15-29","2011","31","","" +"LU","M","POP","TOTAL","OC3","S","Y30-49","2011","100","","" +"LU","M","POP","TOTAL","OC3","S","Y50-64","2011","39","","" +"LU","M","POP","TOTAL","OC3","S","Y65-84","2011","7","","" +"LU","M","POP","TOTAL","OC3","S","Y_GE85","2011","2","","" +"LU","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","T","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC3","T","Y30-49","2011","3","","" +"LU","M","POP","TOTAL","OC3","T","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","U","Y15-29","2011","26","","" +"LU","M","POP","TOTAL","OC3","U","Y30-49","2011","309","","" +"LU","M","POP","TOTAL","OC3","U","Y50-64","2011","280","","" +"LU","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC3","UNK","Y15-29","2011","242","","" +"LU","M","POP","TOTAL","OC3","UNK","Y30-49","2011","720","","" +"LU","M","POP","TOTAL","OC3","UNK","Y50-64","2011","343","","" +"LU","M","POP","TOTAL","OC3","UNK","Y65-84","2011","25","","" +"LU","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","A","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC4","A","Y30-49","2011","3","","" +"LU","M","POP","TOTAL","OC4","A","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC4","B","Y30-49","2011","4","","" +"LU","M","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","C","Y15-29","2011","67","","" +"LU","M","POP","TOTAL","OC4","C","Y30-49","2011","295","","" +"LU","M","POP","TOTAL","OC4","C","Y50-64","2011","154","","" +"LU","M","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","D","Y15-29","2011","23","","" +"LU","M","POP","TOTAL","OC4","D","Y30-49","2011","49","","" +"LU","M","POP","TOTAL","OC4","D","Y50-64","2011","17","","" +"LU","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","E","Y15-29","2011","3","","" +"LU","M","POP","TOTAL","OC4","E","Y30-49","2011","18","","" +"LU","M","POP","TOTAL","OC4","E","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","F","Y15-29","2011","68","","" +"LU","M","POP","TOTAL","OC4","F","Y30-49","2011","189","","" +"LU","M","POP","TOTAL","OC4","F","Y50-64","2011","62","","" +"LU","M","POP","TOTAL","OC4","F","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","G","Y15-29","2011","345","","" +"LU","M","POP","TOTAL","OC4","G","Y30-49","2011","664","","" +"LU","M","POP","TOTAL","OC4","G","Y50-64","2011","185","","" +"LU","M","POP","TOTAL","OC4","G","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","H","Y15-29","2011","212","","" +"LU","M","POP","TOTAL","OC4","H","Y30-49","2011","761","","" +"LU","M","POP","TOTAL","OC4","H","Y50-64","2011","317","","" +"LU","M","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","I","Y15-29","2011","38","","" +"LU","M","POP","TOTAL","OC4","I","Y30-49","2011","49","","" +"LU","M","POP","TOTAL","OC4","I","Y50-64","2011","23","","" +"LU","M","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","J","Y15-29","2011","151","","" +"LU","M","POP","TOTAL","OC4","J","Y30-49","2011","572","","" +"LU","M","POP","TOTAL","OC4","J","Y50-64","2011","242","","" +"LU","M","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","K","Y15-29","2011","324","","" +"LU","M","POP","TOTAL","OC4","K","Y30-49","2011","1391","","" +"LU","M","POP","TOTAL","OC4","K","Y50-64","2011","615","","" +"LU","M","POP","TOTAL","OC4","K","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","L","Y15-29","2011","8","","" +"LU","M","POP","TOTAL","OC4","L","Y30-49","2011","22","","" +"LU","M","POP","TOTAL","OC4","L","Y50-64","2011","4","","" +"LU","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","M","Y15-29","2011","122","","" +"LU","M","POP","TOTAL","OC4","M","Y30-49","2011","161","","" +"LU","M","POP","TOTAL","OC4","M","Y50-64","2011","76","","" +"LU","M","POP","TOTAL","OC4","M","Y65-84","2011","4","","" +"LU","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","N","Y15-29","2011","60","","" +"LU","M","POP","TOTAL","OC4","N","Y30-49","2011","119","","" +"LU","M","POP","TOTAL","OC4","N","Y50-64","2011","32","","" +"LU","M","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","O","Y15-29","2011","288","","" +"LU","M","POP","TOTAL","OC4","O","Y30-49","2011","978","","" +"LU","M","POP","TOTAL","OC4","O","Y50-64","2011","466","","" +"LU","M","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","P","Y15-29","2011","16","","" +"LU","M","POP","TOTAL","OC4","P","Y30-49","2011","33","","" +"LU","M","POP","TOTAL","OC4","P","Y50-64","2011","13","","" +"LU","M","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","Q","Y15-29","2011","77","","" +"LU","M","POP","TOTAL","OC4","Q","Y30-49","2011","138","","" +"LU","M","POP","TOTAL","OC4","Q","Y50-64","2011","69","","" +"LU","M","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","R","Y15-29","2011","14","","" +"LU","M","POP","TOTAL","OC4","R","Y30-49","2011","48","","" +"LU","M","POP","TOTAL","OC4","R","Y50-64","2011","17","","" +"LU","M","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","S","Y15-29","2011","19","","" +"LU","M","POP","TOTAL","OC4","S","Y30-49","2011","55","","" +"LU","M","POP","TOTAL","OC4","S","Y50-64","2011","24","","" +"LU","M","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC4","T","Y30-49","2011","3","","" +"LU","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","U","Y15-29","2011","19","","" +"LU","M","POP","TOTAL","OC4","U","Y30-49","2011","201","","" +"LU","M","POP","TOTAL","OC4","U","Y50-64","2011","211","","" +"LU","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC4","UNK","Y15-29","2011","155","","" +"LU","M","POP","TOTAL","OC4","UNK","Y30-49","2011","347","","" +"LU","M","POP","TOTAL","OC4","UNK","Y50-64","2011","118","","" +"LU","M","POP","TOTAL","OC4","UNK","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","A","Y15-29","2011","3","","" +"LU","M","POP","TOTAL","OC5","A","Y30-49","2011","6","","" +"LU","M","POP","TOTAL","OC5","A","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","C","Y15-29","2011","28","","" +"LU","M","POP","TOTAL","OC5","C","Y30-49","2011","81","","" +"LU","M","POP","TOTAL","OC5","C","Y50-64","2011","65","","" +"LU","M","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","D","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC5","D","Y30-49","2011","7","","" +"LU","M","POP","TOTAL","OC5","D","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","E","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC5","E","Y30-49","2011","5","","" +"LU","M","POP","TOTAL","OC5","E","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","F","Y15-29","2011","30","","" +"LU","M","POP","TOTAL","OC5","F","Y30-49","2011","97","","" +"LU","M","POP","TOTAL","OC5","F","Y50-64","2011","22","","" +"LU","M","POP","TOTAL","OC5","F","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","G","Y15-29","2011","618","","" +"LU","M","POP","TOTAL","OC5","G","Y30-49","2011","991","","" +"LU","M","POP","TOTAL","OC5","G","Y50-64","2011","365","","" +"LU","M","POP","TOTAL","OC5","G","Y65-84","2011","24","","" +"LU","M","POP","TOTAL","OC5","G","Y_GE85","2011","1","","" +"LU","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","H","Y15-29","2011","79","","" +"LU","M","POP","TOTAL","OC5","H","Y30-49","2011","232","","" +"LU","M","POP","TOTAL","OC5","H","Y50-64","2011","103","","" +"LU","M","POP","TOTAL","OC5","H","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","I","Y15-29","2011","546","","" +"LU","M","POP","TOTAL","OC5","I","Y30-49","2011","1202","","" +"LU","M","POP","TOTAL","OC5","I","Y50-64","2011","297","","" +"LU","M","POP","TOTAL","OC5","I","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","J","Y15-29","2011","38","","" +"LU","M","POP","TOTAL","OC5","J","Y30-49","2011","57","","" +"LU","M","POP","TOTAL","OC5","J","Y50-64","2011","10","","" +"LU","M","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","K","Y15-29","2011","24","","" +"LU","M","POP","TOTAL","OC5","K","Y30-49","2011","79","","" +"LU","M","POP","TOTAL","OC5","K","Y50-64","2011","57","","" +"LU","M","POP","TOTAL","OC5","K","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","L","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC5","L","Y30-49","2011","17","","" +"LU","M","POP","TOTAL","OC5","L","Y50-64","2011","8","","" +"LU","M","POP","TOTAL","OC5","L","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","M","Y15-29","2011","18","","" +"LU","M","POP","TOTAL","OC5","M","Y30-49","2011","57","","" +"LU","M","POP","TOTAL","OC5","M","Y50-64","2011","18","","" +"LU","M","POP","TOTAL","OC5","M","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","N","Y15-29","2011","181","","" +"LU","M","POP","TOTAL","OC5","N","Y30-49","2011","351","","" +"LU","M","POP","TOTAL","OC5","N","Y50-64","2011","83","","" +"LU","M","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","O","Y15-29","2011","405","","" +"LU","M","POP","TOTAL","OC5","O","Y30-49","2011","896","","" +"LU","M","POP","TOTAL","OC5","O","Y50-64","2011","232","","" +"LU","M","POP","TOTAL","OC5","O","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","P","Y15-29","2011","50","","" +"LU","M","POP","TOTAL","OC5","P","Y30-49","2011","131","","" +"LU","M","POP","TOTAL","OC5","P","Y50-64","2011","33","","" +"LU","M","POP","TOTAL","OC5","P","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","Q","Y15-29","2011","215","","" +"LU","M","POP","TOTAL","OC5","Q","Y30-49","2011","334","","" +"LU","M","POP","TOTAL","OC5","Q","Y50-64","2011","106","","" +"LU","M","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","R","Y15-29","2011","19","","" +"LU","M","POP","TOTAL","OC5","R","Y30-49","2011","51","","" +"LU","M","POP","TOTAL","OC5","R","Y50-64","2011","17","","" +"LU","M","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","S","Y15-29","2011","72","","" +"LU","M","POP","TOTAL","OC5","S","Y30-49","2011","148","","" +"LU","M","POP","TOTAL","OC5","S","Y50-64","2011","60","","" +"LU","M","POP","TOTAL","OC5","S","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","OC5","S","Y_GE85","2011","1","","" +"LU","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC5","T","Y30-49","2011","3","","" +"LU","M","POP","TOTAL","OC5","T","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","U","Y15-29","2011","5","","" +"LU","M","POP","TOTAL","OC5","U","Y30-49","2011","31","","" +"LU","M","POP","TOTAL","OC5","U","Y50-64","2011","35","","" +"LU","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC5","UNK","Y15-29","2011","279","","" +"LU","M","POP","TOTAL","OC5","UNK","Y30-49","2011","583","","" +"LU","M","POP","TOTAL","OC5","UNK","Y50-64","2011","269","","" +"LU","M","POP","TOTAL","OC5","UNK","Y65-84","2011","21","","" +"LU","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","1","","" +"LU","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","A","Y15-29","2011","228","","" +"LU","M","POP","TOTAL","OC6","A","Y30-49","2011","739","","" +"LU","M","POP","TOTAL","OC6","A","Y50-64","2011","597","","" +"LU","M","POP","TOTAL","OC6","A","Y65-84","2011","113","","" +"LU","M","POP","TOTAL","OC6","A","Y_GE85","2011","2","","" +"LU","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","C","Y15-29","2011","5","","" +"LU","M","POP","TOTAL","OC6","C","Y30-49","2011","18","","" +"LU","M","POP","TOTAL","OC6","C","Y50-64","2011","22","","" +"LU","M","POP","TOTAL","OC6","C","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","D","Y15-29","2011","5","","" +"LU","M","POP","TOTAL","OC6","D","Y30-49","2011","4","","" +"LU","M","POP","TOTAL","OC6","D","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","E","Y15-29","2011","3","","" +"LU","M","POP","TOTAL","OC6","E","Y30-49","2011","1","","" +"LU","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","F","Y15-29","2011","9","","" +"LU","M","POP","TOTAL","OC6","F","Y30-49","2011","15","","" +"LU","M","POP","TOTAL","OC6","F","Y50-64","2011","10","","" +"LU","M","POP","TOTAL","OC6","F","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","G","Y15-29","2011","16","","" +"LU","M","POP","TOTAL","OC6","G","Y30-49","2011","74","","" +"LU","M","POP","TOTAL","OC6","G","Y50-64","2011","32","","" +"LU","M","POP","TOTAL","OC6","G","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","H","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC6","H","Y30-49","2011","1","","" +"LU","M","POP","TOTAL","OC6","H","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","I","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC6","I","Y30-49","2011","7","","" +"LU","M","POP","TOTAL","OC6","I","Y50-64","2011","5","","" +"LU","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","J","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC6","J","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC6","K","Y30-49","2011","3","","" +"LU","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","L","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC6","L","Y30-49","2011","5","","" +"LU","M","POP","TOTAL","OC6","L","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","M","Y15-29","2011","3","","" +"LU","M","POP","TOTAL","OC6","M","Y30-49","2011","8","","" +"LU","M","POP","TOTAL","OC6","M","Y50-64","2011","9","","" +"LU","M","POP","TOTAL","OC6","M","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","N","Y15-29","2011","51","","" +"LU","M","POP","TOTAL","OC6","N","Y30-49","2011","105","","" +"LU","M","POP","TOTAL","OC6","N","Y50-64","2011","18","","" +"LU","M","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","O","Y15-29","2011","110","","" +"LU","M","POP","TOTAL","OC6","O","Y30-49","2011","262","","" +"LU","M","POP","TOTAL","OC6","O","Y50-64","2011","83","","" +"LU","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","P","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC6","P","Y30-49","2011","9","","" +"LU","M","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","Q","Y15-29","2011","53","","" +"LU","M","POP","TOTAL","OC6","Q","Y30-49","2011","88","","" +"LU","M","POP","TOTAL","OC6","Q","Y50-64","2011","33","","" +"LU","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","R","Y15-29","2011","5","","" +"LU","M","POP","TOTAL","OC6","R","Y30-49","2011","6","","" +"LU","M","POP","TOTAL","OC6","R","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","OC6","R","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","S","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC6","S","Y30-49","2011","10","","" +"LU","M","POP","TOTAL","OC6","S","Y50-64","2011","3","","" +"LU","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","T","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC6","T","Y30-49","2011","3","","" +"LU","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC6","UNK","Y15-29","2011","88","","" +"LU","M","POP","TOTAL","OC6","UNK","Y30-49","2011","147","","" +"LU","M","POP","TOTAL","OC6","UNK","Y50-64","2011","89","","" +"LU","M","POP","TOTAL","OC6","UNK","Y65-84","2011","20","","" +"LU","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","A","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC7","A","Y30-49","2011","12","","" +"LU","M","POP","TOTAL","OC7","A","Y50-64","2011","7","","" +"LU","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","B","Y15-29","2011","10","","" +"LU","M","POP","TOTAL","OC7","B","Y30-49","2011","19","","" +"LU","M","POP","TOTAL","OC7","B","Y50-64","2011","9","","" +"LU","M","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","C","Y15-29","2011","524","","" +"LU","M","POP","TOTAL","OC7","C","Y30-49","2011","1377","","" +"LU","M","POP","TOTAL","OC7","C","Y50-64","2011","690","","" +"LU","M","POP","TOTAL","OC7","C","Y65-84","2011","5","","" +"LU","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","D","Y15-29","2011","56","","" +"LU","M","POP","TOTAL","OC7","D","Y30-49","2011","146","","" +"LU","M","POP","TOTAL","OC7","D","Y50-64","2011","42","","" +"LU","M","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","E","Y15-29","2011","15","","" +"LU","M","POP","TOTAL","OC7","E","Y30-49","2011","66","","" +"LU","M","POP","TOTAL","OC7","E","Y50-64","2011","17","","" +"LU","M","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","F","Y15-29","2011","1811","","" +"LU","M","POP","TOTAL","OC7","F","Y30-49","2011","5703","","" +"LU","M","POP","TOTAL","OC7","F","Y50-64","2011","1681","","" +"LU","M","POP","TOTAL","OC7","F","Y65-84","2011","11","","" +"LU","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","G","Y15-29","2011","719","","" +"LU","M","POP","TOTAL","OC7","G","Y30-49","2011","1095","","" +"LU","M","POP","TOTAL","OC7","G","Y50-64","2011","388","","" +"LU","M","POP","TOTAL","OC7","G","Y65-84","2011","14","","" +"LU","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","H","Y15-29","2011","203","","" +"LU","M","POP","TOTAL","OC7","H","Y30-49","2011","400","","" +"LU","M","POP","TOTAL","OC7","H","Y50-64","2011","193","","" +"LU","M","POP","TOTAL","OC7","H","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","I","Y15-29","2011","9","","" +"LU","M","POP","TOTAL","OC7","I","Y30-49","2011","35","","" +"LU","M","POP","TOTAL","OC7","I","Y50-64","2011","11","","" +"LU","M","POP","TOTAL","OC7","I","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","J","Y15-29","2011","18","","" +"LU","M","POP","TOTAL","OC7","J","Y30-49","2011","69","","" +"LU","M","POP","TOTAL","OC7","J","Y50-64","2011","67","","" +"LU","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","K","Y15-29","2011","20","","" +"LU","M","POP","TOTAL","OC7","K","Y30-49","2011","114","","" +"LU","M","POP","TOTAL","OC7","K","Y50-64","2011","49","","" +"LU","M","POP","TOTAL","OC7","K","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","L","Y15-29","2011","16","","" +"LU","M","POP","TOTAL","OC7","L","Y30-49","2011","63","","" +"LU","M","POP","TOTAL","OC7","L","Y50-64","2011","25","","" +"LU","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","M","Y15-29","2011","36","","" +"LU","M","POP","TOTAL","OC7","M","Y30-49","2011","129","","" +"LU","M","POP","TOTAL","OC7","M","Y50-64","2011","47","","" +"LU","M","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","N","Y15-29","2011","79","","" +"LU","M","POP","TOTAL","OC7","N","Y30-49","2011","302","","" +"LU","M","POP","TOTAL","OC7","N","Y50-64","2011","77","","" +"LU","M","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","O","Y15-29","2011","135","","" +"LU","M","POP","TOTAL","OC7","O","Y30-49","2011","590","","" +"LU","M","POP","TOTAL","OC7","O","Y50-64","2011","241","","" +"LU","M","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","P","Y15-29","2011","9","","" +"LU","M","POP","TOTAL","OC7","P","Y30-49","2011","51","","" +"LU","M","POP","TOTAL","OC7","P","Y50-64","2011","13","","" +"LU","M","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","Q","Y15-29","2011","56","","" +"LU","M","POP","TOTAL","OC7","Q","Y30-49","2011","152","","" +"LU","M","POP","TOTAL","OC7","Q","Y50-64","2011","72","","" +"LU","M","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","R","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC7","R","Y30-49","2011","18","","" +"LU","M","POP","TOTAL","OC7","R","Y50-64","2011","5","","" +"LU","M","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","S","Y15-29","2011","12","","" +"LU","M","POP","TOTAL","OC7","S","Y30-49","2011","52","","" +"LU","M","POP","TOTAL","OC7","S","Y50-64","2011","16","","" +"LU","M","POP","TOTAL","OC7","S","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","T","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC7","T","Y30-49","2011","2","","" +"LU","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","U","Y15-29","2011","5","","" +"LU","M","POP","TOTAL","OC7","U","Y30-49","2011","13","","" +"LU","M","POP","TOTAL","OC7","U","Y50-64","2011","22","","" +"LU","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC7","UNK","Y15-29","2011","581","","" +"LU","M","POP","TOTAL","OC7","UNK","Y30-49","2011","1567","","" +"LU","M","POP","TOTAL","OC7","UNK","Y50-64","2011","503","","" +"LU","M","POP","TOTAL","OC7","UNK","Y65-84","2011","12","","" +"LU","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC8","A","Y30-49","2011","6","","" +"LU","M","POP","TOTAL","OC8","A","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","OC8","A","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","B","Y15-29","2011","5","","" +"LU","M","POP","TOTAL","OC8","B","Y30-49","2011","18","","" +"LU","M","POP","TOTAL","OC8","B","Y50-64","2011","6","","" +"LU","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","C","Y15-29","2011","387","","" +"LU","M","POP","TOTAL","OC8","C","Y30-49","2011","1329","","" +"LU","M","POP","TOTAL","OC8","C","Y50-64","2011","570","","" +"LU","M","POP","TOTAL","OC8","C","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","D","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC8","D","Y30-49","2011","4","","" +"LU","M","POP","TOTAL","OC8","D","Y50-64","2011","6","","" +"LU","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","E","Y15-29","2011","7","","" +"LU","M","POP","TOTAL","OC8","E","Y30-49","2011","48","","" +"LU","M","POP","TOTAL","OC8","E","Y50-64","2011","14","","" +"LU","M","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","F","Y15-29","2011","87","","" +"LU","M","POP","TOTAL","OC8","F","Y30-49","2011","615","","" +"LU","M","POP","TOTAL","OC8","F","Y50-64","2011","201","","" +"LU","M","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","G","Y15-29","2011","108","","" +"LU","M","POP","TOTAL","OC8","G","Y30-49","2011","443","","" +"LU","M","POP","TOTAL","OC8","G","Y50-64","2011","115","","" +"LU","M","POP","TOTAL","OC8","G","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","H","Y15-29","2011","452","","" +"LU","M","POP","TOTAL","OC8","H","Y30-49","2011","1662","","" +"LU","M","POP","TOTAL","OC8","H","Y50-64","2011","541","","" +"LU","M","POP","TOTAL","OC8","H","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","I","Y15-29","2011","13","","" +"LU","M","POP","TOTAL","OC8","I","Y30-49","2011","36","","" +"LU","M","POP","TOTAL","OC8","I","Y50-64","2011","8","","" +"LU","M","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","J","Y15-29","2011","2","","" +"LU","M","POP","TOTAL","OC8","J","Y30-49","2011","19","","" +"LU","M","POP","TOTAL","OC8","J","Y50-64","2011","6","","" +"LU","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","K","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC8","K","Y30-49","2011","42","","" +"LU","M","POP","TOTAL","OC8","K","Y50-64","2011","20","","" +"LU","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC8","L","Y30-49","2011","5","","" +"LU","M","POP","TOTAL","OC8","L","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","M","Y15-29","2011","9","","" +"LU","M","POP","TOTAL","OC8","M","Y30-49","2011","33","","" +"LU","M","POP","TOTAL","OC8","M","Y50-64","2011","15","","" +"LU","M","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","N","Y15-29","2011","109","","" +"LU","M","POP","TOTAL","OC8","N","Y30-49","2011","333","","" +"LU","M","POP","TOTAL","OC8","N","Y50-64","2011","55","","" +"LU","M","POP","TOTAL","OC8","N","Y65-84","2011","5","","" +"LU","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","O","Y15-29","2011","48","","" +"LU","M","POP","TOTAL","OC8","O","Y30-49","2011","455","","" +"LU","M","POP","TOTAL","OC8","O","Y50-64","2011","185","","" +"LU","M","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC8","P","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","Q","Y15-29","2011","19","","" +"LU","M","POP","TOTAL","OC8","Q","Y30-49","2011","66","","" +"LU","M","POP","TOTAL","OC8","Q","Y50-64","2011","49","","" +"LU","M","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","R","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC8","R","Y30-49","2011","3","","" +"LU","M","POP","TOTAL","OC8","R","Y50-64","2011","4","","" +"LU","M","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","S","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC8","S","Y30-49","2011","19","","" +"LU","M","POP","TOTAL","OC8","S","Y50-64","2011","8","","" +"LU","M","POP","TOTAL","OC8","S","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC8","T","Y30-49","2011","1","","" +"LU","M","POP","TOTAL","OC8","T","Y50-64","2011","1","","" +"LU","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","U","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC8","U","Y30-49","2011","52","","" +"LU","M","POP","TOTAL","OC8","U","Y50-64","2011","30","","" +"LU","M","POP","TOTAL","OC8","U","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC8","UNK","Y15-29","2011","113","","" +"LU","M","POP","TOTAL","OC8","UNK","Y30-49","2011","452","","" +"LU","M","POP","TOTAL","OC8","UNK","Y50-64","2011","172","","" +"LU","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","A","Y15-29","2011","11","","" +"LU","M","POP","TOTAL","OC9","A","Y30-49","2011","50","","" +"LU","M","POP","TOTAL","OC9","A","Y50-64","2011","16","","" +"LU","M","POP","TOTAL","OC9","A","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","B","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC9","B","Y30-49","2011","10","","" +"LU","M","POP","TOTAL","OC9","B","Y50-64","2011","5","","" +"LU","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","C","Y15-29","2011","97","","" +"LU","M","POP","TOTAL","OC9","C","Y30-49","2011","279","","" +"LU","M","POP","TOTAL","OC9","C","Y50-64","2011","129","","" +"LU","M","POP","TOTAL","OC9","C","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","D","Y15-29","2011","3","","" +"LU","M","POP","TOTAL","OC9","D","Y30-49","2011","6","","" +"LU","M","POP","TOTAL","OC9","D","Y50-64","2011","4","","" +"LU","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","E","Y15-29","2011","19","","" +"LU","M","POP","TOTAL","OC9","E","Y30-49","2011","78","","" +"LU","M","POP","TOTAL","OC9","E","Y50-64","2011","17","","" +"LU","M","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","F","Y15-29","2011","352","","" +"LU","M","POP","TOTAL","OC9","F","Y30-49","2011","944","","" +"LU","M","POP","TOTAL","OC9","F","Y50-64","2011","270","","" +"LU","M","POP","TOTAL","OC9","F","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","G","Y15-29","2011","162","","" +"LU","M","POP","TOTAL","OC9","G","Y30-49","2011","296","","" +"LU","M","POP","TOTAL","OC9","G","Y50-64","2011","73","","" +"LU","M","POP","TOTAL","OC9","G","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","H","Y15-29","2011","61","","" +"LU","M","POP","TOTAL","OC9","H","Y30-49","2011","207","","" +"LU","M","POP","TOTAL","OC9","H","Y50-64","2011","45","","" +"LU","M","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","I","Y15-29","2011","165","","" +"LU","M","POP","TOTAL","OC9","I","Y30-49","2011","274","","" +"LU","M","POP","TOTAL","OC9","I","Y50-64","2011","69","","" +"LU","M","POP","TOTAL","OC9","I","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","J","Y15-29","2011","18","","" +"LU","M","POP","TOTAL","OC9","J","Y30-49","2011","34","","" +"LU","M","POP","TOTAL","OC9","J","Y50-64","2011","11","","" +"LU","M","POP","TOTAL","OC9","J","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","K","Y15-29","2011","7","","" +"LU","M","POP","TOTAL","OC9","K","Y30-49","2011","34","","" +"LU","M","POP","TOTAL","OC9","K","Y50-64","2011","10","","" +"LU","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","L","Y15-29","2011","9","","" +"LU","M","POP","TOTAL","OC9","L","Y30-49","2011","20","","" +"LU","M","POP","TOTAL","OC9","L","Y50-64","2011","5","","" +"LU","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","M","Y15-29","2011","26","","" +"LU","M","POP","TOTAL","OC9","M","Y30-49","2011","56","","" +"LU","M","POP","TOTAL","OC9","M","Y50-64","2011","20","","" +"LU","M","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","N","Y15-29","2011","202","","" +"LU","M","POP","TOTAL","OC9","N","Y30-49","2011","371","","" +"LU","M","POP","TOTAL","OC9","N","Y50-64","2011","103","","" +"LU","M","POP","TOTAL","OC9","N","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","O","Y15-29","2011","284","","" +"LU","M","POP","TOTAL","OC9","O","Y30-49","2011","1192","","" +"LU","M","POP","TOTAL","OC9","O","Y50-64","2011","425","","" +"LU","M","POP","TOTAL","OC9","O","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","P","Y15-29","2011","12","","" +"LU","M","POP","TOTAL","OC9","P","Y30-49","2011","33","","" +"LU","M","POP","TOTAL","OC9","P","Y50-64","2011","5","","" +"LU","M","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","Q","Y15-29","2011","202","","" +"LU","M","POP","TOTAL","OC9","Q","Y30-49","2011","328","","" +"LU","M","POP","TOTAL","OC9","Q","Y50-64","2011","128","","" +"LU","M","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","R","Y15-29","2011","11","","" +"LU","M","POP","TOTAL","OC9","R","Y30-49","2011","13","","" +"LU","M","POP","TOTAL","OC9","R","Y50-64","2011","5","","" +"LU","M","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","S","Y15-29","2011","13","","" +"LU","M","POP","TOTAL","OC9","S","Y30-49","2011","17","","" +"LU","M","POP","TOTAL","OC9","S","Y50-64","2011","11","","" +"LU","M","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","T","Y15-29","2011","4","","" +"LU","M","POP","TOTAL","OC9","T","Y30-49","2011","15","","" +"LU","M","POP","TOTAL","OC9","T","Y50-64","2011","5","","" +"LU","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","U","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","OC9","U","Y30-49","2011","6","","" +"LU","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","OC9","UNK","Y15-29","2011","202","","" +"LU","M","POP","TOTAL","OC9","UNK","Y30-49","2011","532","","" +"LU","M","POP","TOTAL","OC9","UNK","Y50-64","2011","181","","" +"LU","M","POP","TOTAL","OC9","UNK","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","A","Y15-29","2011","10","","" +"LU","M","POP","TOTAL","UNK","A","Y30-49","2011","29","","" +"LU","M","POP","TOTAL","UNK","A","Y50-64","2011","29","","" +"LU","M","POP","TOTAL","UNK","A","Y65-84","2011","8","","" +"LU","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","B","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","UNK","B","Y30-49","2011","4","","" +"LU","M","POP","TOTAL","UNK","B","Y50-64","2011","2","","" +"LU","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","C","Y15-29","2011","110","","" +"LU","M","POP","TOTAL","UNK","C","Y30-49","2011","394","","" +"LU","M","POP","TOTAL","UNK","C","Y50-64","2011","173","","" +"LU","M","POP","TOTAL","UNK","C","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","D","Y15-29","2011","13","","" +"LU","M","POP","TOTAL","UNK","D","Y30-49","2011","25","","" +"LU","M","POP","TOTAL","UNK","D","Y50-64","2011","15","","" +"LU","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","E","Y15-29","2011","7","","" +"LU","M","POP","TOTAL","UNK","E","Y30-49","2011","24","","" +"LU","M","POP","TOTAL","UNK","E","Y50-64","2011","11","","" +"LU","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","F","Y15-29","2011","137","","" +"LU","M","POP","TOTAL","UNK","F","Y30-49","2011","388","","" +"LU","M","POP","TOTAL","UNK","F","Y50-64","2011","109","","" +"LU","M","POP","TOTAL","UNK","F","Y65-84","2011","8","","" +"LU","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","G","Y15-29","2011","128","","" +"LU","M","POP","TOTAL","UNK","G","Y30-49","2011","289","","" +"LU","M","POP","TOTAL","UNK","G","Y50-64","2011","113","","" +"LU","M","POP","TOTAL","UNK","G","Y65-84","2011","10","","" +"LU","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","H","Y15-29","2011","101","","" +"LU","M","POP","TOTAL","UNK","H","Y30-49","2011","334","","" +"LU","M","POP","TOTAL","UNK","H","Y50-64","2011","137","","" +"LU","M","POP","TOTAL","UNK","H","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","I","Y15-29","2011","42","","" +"LU","M","POP","TOTAL","UNK","I","Y30-49","2011","114","","" +"LU","M","POP","TOTAL","UNK","I","Y50-64","2011","33","","" +"LU","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","J","Y15-29","2011","33","","" +"LU","M","POP","TOTAL","UNK","J","Y30-49","2011","110","","" +"LU","M","POP","TOTAL","UNK","J","Y50-64","2011","50","","" +"LU","M","POP","TOTAL","UNK","J","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","K","Y15-29","2011","27","","" +"LU","M","POP","TOTAL","UNK","K","Y30-49","2011","165","","" +"LU","M","POP","TOTAL","UNK","K","Y50-64","2011","60","","" +"LU","M","POP","TOTAL","UNK","K","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","L","Y15-29","2011","6","","" +"LU","M","POP","TOTAL","UNK","L","Y30-49","2011","17","","" +"LU","M","POP","TOTAL","UNK","L","Y50-64","2011","6","","" +"LU","M","POP","TOTAL","UNK","L","Y65-84","2011","2","","" +"LU","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","M","Y15-29","2011","42","","" +"LU","M","POP","TOTAL","UNK","M","Y30-49","2011","105","","" +"LU","M","POP","TOTAL","UNK","M","Y50-64","2011","39","","" +"LU","M","POP","TOTAL","UNK","M","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","N","Y15-29","2011","58","","" +"LU","M","POP","TOTAL","UNK","N","Y30-49","2011","155","","" +"LU","M","POP","TOTAL","UNK","N","Y50-64","2011","36","","" +"LU","M","POP","TOTAL","UNK","N","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","UNK","N","Y_GE85","2011","1","","" +"LU","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"LU","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"LU","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","O","Y15-29","2011","185","","" +"LU","M","POP","TOTAL","UNK","O","Y30-49","2011","796","","" +"LU","M","POP","TOTAL","UNK","O","Y50-64","2011","347","","" +"LU","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","P","Y15-29","2011","21","","" +"LU","M","POP","TOTAL","UNK","P","Y30-49","2011","36","","" +"LU","M","POP","TOTAL","UNK","P","Y50-64","2011","14","","" +"LU","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","Q","Y15-29","2011","149","","" +"LU","M","POP","TOTAL","UNK","Q","Y30-49","2011","279","","" +"LU","M","POP","TOTAL","UNK","Q","Y50-64","2011","95","","" +"LU","M","POP","TOTAL","UNK","Q","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","R","Y15-29","2011","9","","" +"LU","M","POP","TOTAL","UNK","R","Y30-49","2011","29","","" +"LU","M","POP","TOTAL","UNK","R","Y50-64","2011","11","","" +"LU","M","POP","TOTAL","UNK","R","Y65-84","2011","1","","" +"LU","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","S","Y15-29","2011","6","","" +"LU","M","POP","TOTAL","UNK","S","Y30-49","2011","26","","" +"LU","M","POP","TOTAL","UNK","S","Y50-64","2011","11","","" +"LU","M","POP","TOTAL","UNK","S","Y65-84","2011","3","","" +"LU","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","T","Y15-29","2011","1","","" +"LU","M","POP","TOTAL","UNK","T","Y30-49","2011","4","","" +"LU","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"LU","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","U","Y15-29","2011","7","","" +"LU","M","POP","TOTAL","UNK","U","Y30-49","2011","103","","" +"LU","M","POP","TOTAL","UNK","U","Y50-64","2011","137","","" +"LU","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"LU","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"LU","M","POP","TOTAL","UNK","UNK","Y15-29","2011","993","","" +"LU","M","POP","TOTAL","UNK","UNK","Y30-49","2011","1971","","" +"LU","M","POP","TOTAL","UNK","UNK","Y50-64","2011","766","","" +"LU","M","POP","TOTAL","UNK","UNK","Y65-84","2011","37","","" +"LU","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"LU","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","NAP","Y15-29","2011","106865","","" +"LV","F","POP","TOTAL","NAP","NAP","Y30-49","2011","47278","","" +"LV","F","POP","TOTAL","NAP","NAP","Y50-64","2011","80989","","" +"LV","F","POP","TOTAL","NAP","NAP","Y65-84","2011","216518","","" +"LV","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","27215","","" +"LV","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","143644","","" +"LV","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","K","Y50-64","2011","1","","" +"LV","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","M","Y30-49","2011","1","","" +"LV","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","N","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","O","Y15-29","2011","121","","" +"LV","F","POP","TOTAL","OC0","O","Y30-49","2011","265","","" +"LV","F","POP","TOTAL","OC0","O","Y50-64","2011","10","","" +"LV","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","P","Y15-29","2011","26","","" +"LV","F","POP","TOTAL","OC0","P","Y30-49","2011","45","","" +"LV","F","POP","TOTAL","OC0","P","Y50-64","2011","2","","" +"LV","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","R","Y30-49","2011","1","","" +"LV","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","S","Y50-64","2011","1","","" +"LV","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","A","Y15-29","2011","103","","" +"LV","F","POP","TOTAL","OC1","A","Y30-49","2011","888","","" +"LV","F","POP","TOTAL","OC1","A","Y50-64","2011","799","","" +"LV","F","POP","TOTAL","OC1","A","Y65-84","2011","81","","" +"LV","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","B","Y15-29","2011","13","","" +"LV","F","POP","TOTAL","OC1","B","Y30-49","2011","34","","" +"LV","F","POP","TOTAL","OC1","B","Y50-64","2011","20","","" +"LV","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","C","Y15-29","2011","481","","" +"LV","F","POP","TOTAL","OC1","C","Y30-49","2011","2284","","" +"LV","F","POP","TOTAL","OC1","C","Y50-64","2011","1343","","" +"LV","F","POP","TOTAL","OC1","C","Y65-84","2011","76","","" +"LV","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","D","Y15-29","2011","13","","" +"LV","F","POP","TOTAL","OC1","D","Y30-49","2011","131","","" +"LV","F","POP","TOTAL","OC1","D","Y50-64","2011","106","","" +"LV","F","POP","TOTAL","OC1","D","Y65-84","2011","2","","" +"LV","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","E","Y15-29","2011","26","","" +"LV","F","POP","TOTAL","OC1","E","Y30-49","2011","129","","" +"LV","F","POP","TOTAL","OC1","E","Y50-64","2011","87","","" +"LV","F","POP","TOTAL","OC1","E","Y65-84","2011","4","","" +"LV","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","F","Y15-29","2011","177","","" +"LV","F","POP","TOTAL","OC1","F","Y30-49","2011","670","","" +"LV","F","POP","TOTAL","OC1","F","Y50-64","2011","335","","" +"LV","F","POP","TOTAL","OC1","F","Y65-84","2011","21","","" +"LV","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","G","Y15-29","2011","1775","","" +"LV","F","POP","TOTAL","OC1","G","Y30-49","2011","7330","","" +"LV","F","POP","TOTAL","OC1","G","Y50-64","2011","3312","","" +"LV","F","POP","TOTAL","OC1","G","Y65-84","2011","207","","" +"LV","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","H","Y15-29","2011","365","","" +"LV","F","POP","TOTAL","OC1","H","Y30-49","2011","1568","","" +"LV","F","POP","TOTAL","OC1","H","Y50-64","2011","889","","" +"LV","F","POP","TOTAL","OC1","H","Y65-84","2011","54","","" +"LV","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","I","Y15-29","2011","643","","" +"LV","F","POP","TOTAL","OC1","I","Y30-49","2011","1254","","" +"LV","F","POP","TOTAL","OC1","I","Y50-64","2011","553","","" +"LV","F","POP","TOTAL","OC1","I","Y65-84","2011","41","","" +"LV","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","J","Y15-29","2011","344","","" +"LV","F","POP","TOTAL","OC1","J","Y30-49","2011","727","","" +"LV","F","POP","TOTAL","OC1","J","Y50-64","2011","225","","" +"LV","F","POP","TOTAL","OC1","J","Y65-84","2011","14","","" +"LV","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","K","Y15-29","2011","731","","" +"LV","F","POP","TOTAL","OC1","K","Y30-49","2011","1720","","" +"LV","F","POP","TOTAL","OC1","K","Y50-64","2011","443","","" +"LV","F","POP","TOTAL","OC1","K","Y65-84","2011","17","","" +"LV","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","L","Y15-29","2011","135","","" +"LV","F","POP","TOTAL","OC1","L","Y30-49","2011","610","","" +"LV","F","POP","TOTAL","OC1","L","Y50-64","2011","427","","" +"LV","F","POP","TOTAL","OC1","L","Y65-84","2011","64","","" +"LV","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","M","Y15-29","2011","517","","" +"LV","F","POP","TOTAL","OC1","M","Y30-49","2011","1602","","" +"LV","F","POP","TOTAL","OC1","M","Y50-64","2011","564","","" +"LV","F","POP","TOTAL","OC1","M","Y65-84","2011","41","","" +"LV","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","N","Y15-29","2011","306","","" +"LV","F","POP","TOTAL","OC1","N","Y30-49","2011","736","","" +"LV","F","POP","TOTAL","OC1","N","Y50-64","2011","275","","" +"LV","F","POP","TOTAL","OC1","N","Y65-84","2011","20","","" +"LV","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","O","Y15-29","2011","466","","" +"LV","F","POP","TOTAL","OC1","O","Y30-49","2011","2566","","" +"LV","F","POP","TOTAL","OC1","O","Y50-64","2011","1309","","" +"LV","F","POP","TOTAL","OC1","O","Y65-84","2011","84","","" +"LV","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","P","Y15-29","2011","281","","" +"LV","F","POP","TOTAL","OC1","P","Y30-49","2011","1987","","" +"LV","F","POP","TOTAL","OC1","P","Y50-64","2011","1650","","" +"LV","F","POP","TOTAL","OC1","P","Y65-84","2011","202","","" +"LV","F","POP","TOTAL","OC1","P","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","Q","Y15-29","2011","163","","" +"LV","F","POP","TOTAL","OC1","Q","Y30-49","2011","889","","" +"LV","F","POP","TOTAL","OC1","Q","Y50-64","2011","624","","" +"LV","F","POP","TOTAL","OC1","Q","Y65-84","2011","93","","" +"LV","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","R","Y15-29","2011","345","","" +"LV","F","POP","TOTAL","OC1","R","Y30-49","2011","1085","","" +"LV","F","POP","TOTAL","OC1","R","Y50-64","2011","672","","" +"LV","F","POP","TOTAL","OC1","R","Y65-84","2011","60","","" +"LV","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","S","Y15-29","2011","442","","" +"LV","F","POP","TOTAL","OC1","S","Y30-49","2011","968","","" +"LV","F","POP","TOTAL","OC1","S","Y50-64","2011","410","","" +"LV","F","POP","TOTAL","OC1","S","Y65-84","2011","48","","" +"LV","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","T","Y15-29","2011","4","","" +"LV","F","POP","TOTAL","OC1","T","Y30-49","2011","4","","" +"LV","F","POP","TOTAL","OC1","T","Y50-64","2011","6","","" +"LV","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","U","Y15-29","2011","8","","" +"LV","F","POP","TOTAL","OC1","U","Y30-49","2011","23","","" +"LV","F","POP","TOTAL","OC1","U","Y50-64","2011","8","","" +"LV","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","A","Y15-29","2011","121","","" +"LV","F","POP","TOTAL","OC2","A","Y30-49","2011","602","","" +"LV","F","POP","TOTAL","OC2","A","Y50-64","2011","497","","" +"LV","F","POP","TOTAL","OC2","A","Y65-84","2011","54","","" +"LV","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","B","Y15-29","2011","14","","" +"LV","F","POP","TOTAL","OC2","B","Y30-49","2011","26","","" +"LV","F","POP","TOTAL","OC2","B","Y50-64","2011","29","","" +"LV","F","POP","TOTAL","OC2","B","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","C","Y15-29","2011","841","","" +"LV","F","POP","TOTAL","OC2","C","Y30-49","2011","2709","","" +"LV","F","POP","TOTAL","OC2","C","Y50-64","2011","2001","","" +"LV","F","POP","TOTAL","OC2","C","Y65-84","2011","130","","" +"LV","F","POP","TOTAL","OC2","C","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","D","Y15-29","2011","74","","" +"LV","F","POP","TOTAL","OC2","D","Y30-49","2011","421","","" +"LV","F","POP","TOTAL","OC2","D","Y50-64","2011","323","","" +"LV","F","POP","TOTAL","OC2","D","Y65-84","2011","20","","" +"LV","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","E","Y15-29","2011","55","","" +"LV","F","POP","TOTAL","OC2","E","Y30-49","2011","170","","" +"LV","F","POP","TOTAL","OC2","E","Y50-64","2011","115","","" +"LV","F","POP","TOTAL","OC2","E","Y65-84","2011","7","","" +"LV","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","F","Y15-29","2011","383","","" +"LV","F","POP","TOTAL","OC2","F","Y30-49","2011","1016","","" +"LV","F","POP","TOTAL","OC2","F","Y50-64","2011","723","","" +"LV","F","POP","TOTAL","OC2","F","Y65-84","2011","47","","" +"LV","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","G","Y15-29","2011","1421","","" +"LV","F","POP","TOTAL","OC2","G","Y30-49","2011","4063","","" +"LV","F","POP","TOTAL","OC2","G","Y50-64","2011","2203","","" +"LV","F","POP","TOTAL","OC2","G","Y65-84","2011","246","","" +"LV","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","H","Y15-29","2011","431","","" +"LV","F","POP","TOTAL","OC2","H","Y30-49","2011","1268","","" +"LV","F","POP","TOTAL","OC2","H","Y50-64","2011","911","","" +"LV","F","POP","TOTAL","OC2","H","Y65-84","2011","49","","" +"LV","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","I","Y15-29","2011","142","","" +"LV","F","POP","TOTAL","OC2","I","Y30-49","2011","331","","" +"LV","F","POP","TOTAL","OC2","I","Y50-64","2011","229","","" +"LV","F","POP","TOTAL","OC2","I","Y65-84","2011","13","","" +"LV","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","J","Y15-29","2011","1275","","" +"LV","F","POP","TOTAL","OC2","J","Y30-49","2011","2059","","" +"LV","F","POP","TOTAL","OC2","J","Y50-64","2011","787","","" +"LV","F","POP","TOTAL","OC2","J","Y65-84","2011","64","","" +"LV","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","K","Y15-29","2011","1074","","" +"LV","F","POP","TOTAL","OC2","K","Y30-49","2011","1626","","" +"LV","F","POP","TOTAL","OC2","K","Y50-64","2011","402","","" +"LV","F","POP","TOTAL","OC2","K","Y65-84","2011","17","","" +"LV","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","L","Y15-29","2011","222","","" +"LV","F","POP","TOTAL","OC2","L","Y30-49","2011","737","","" +"LV","F","POP","TOTAL","OC2","L","Y50-64","2011","539","","" +"LV","F","POP","TOTAL","OC2","L","Y65-84","2011","86","","" +"LV","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","M","Y15-29","2011","2787","","" +"LV","F","POP","TOTAL","OC2","M","Y30-49","2011","4435","","" +"LV","F","POP","TOTAL","OC2","M","Y50-64","2011","1949","","" +"LV","F","POP","TOTAL","OC2","M","Y65-84","2011","306","","" +"LV","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","N","Y15-29","2011","348","","" +"LV","F","POP","TOTAL","OC2","N","Y30-49","2011","604","","" +"LV","F","POP","TOTAL","OC2","N","Y50-64","2011","234","","" +"LV","F","POP","TOTAL","OC2","N","Y65-84","2011","14","","" +"LV","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","O","Y15-29","2011","2775","","" +"LV","F","POP","TOTAL","OC2","O","Y30-49","2011","6706","","" +"LV","F","POP","TOTAL","OC2","O","Y50-64","2011","3084","","" +"LV","F","POP","TOTAL","OC2","O","Y65-84","2011","277","","" +"LV","F","POP","TOTAL","OC2","O","Y_GE85","2011","2","","" +"LV","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","P","Y15-29","2011","4264","","" +"LV","F","POP","TOTAL","OC2","P","Y30-49","2011","21986","","" +"LV","F","POP","TOTAL","OC2","P","Y50-64","2011","13151","","" +"LV","F","POP","TOTAL","OC2","P","Y65-84","2011","1487","","" +"LV","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","Q","Y15-29","2011","1447","","" +"LV","F","POP","TOTAL","OC2","Q","Y30-49","2011","6476","","" +"LV","F","POP","TOTAL","OC2","Q","Y50-64","2011","4744","","" +"LV","F","POP","TOTAL","OC2","Q","Y65-84","2011","1123","","" +"LV","F","POP","TOTAL","OC2","Q","Y_GE85","2011","3","","" +"LV","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","R","Y15-29","2011","765","","" +"LV","F","POP","TOTAL","OC2","R","Y30-49","2011","1869","","" +"LV","F","POP","TOTAL","OC2","R","Y50-64","2011","1236","","" +"LV","F","POP","TOTAL","OC2","R","Y65-84","2011","172","","" +"LV","F","POP","TOTAL","OC2","R","Y_GE85","2011","2","","" +"LV","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","S","Y15-29","2011","327","","" +"LV","F","POP","TOTAL","OC2","S","Y30-49","2011","735","","" +"LV","F","POP","TOTAL","OC2","S","Y50-64","2011","341","","" +"LV","F","POP","TOTAL","OC2","S","Y65-84","2011","72","","" +"LV","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","T","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC2","T","Y30-49","2011","2","","" +"LV","F","POP","TOTAL","OC2","T","Y50-64","2011","2","","" +"LV","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","U","Y15-29","2011","13","","" +"LV","F","POP","TOTAL","OC2","U","Y30-49","2011","89","","" +"LV","F","POP","TOTAL","OC2","U","Y50-64","2011","20","","" +"LV","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","A","Y15-29","2011","160","","" +"LV","F","POP","TOTAL","OC3","A","Y30-49","2011","522","","" +"LV","F","POP","TOTAL","OC3","A","Y50-64","2011","341","","" +"LV","F","POP","TOTAL","OC3","A","Y65-84","2011","41","","" +"LV","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","B","Y15-29","2011","11","","" +"LV","F","POP","TOTAL","OC3","B","Y30-49","2011","47","","" +"LV","F","POP","TOTAL","OC3","B","Y50-64","2011","28","","" +"LV","F","POP","TOTAL","OC3","B","Y65-84","2011","2","","" +"LV","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","C","Y15-29","2011","1043","","" +"LV","F","POP","TOTAL","OC3","C","Y30-49","2011","2560","","" +"LV","F","POP","TOTAL","OC3","C","Y50-64","2011","1413","","" +"LV","F","POP","TOTAL","OC3","C","Y65-84","2011","70","","" +"LV","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","D","Y15-29","2011","76","","" +"LV","F","POP","TOTAL","OC3","D","Y30-49","2011","327","","" +"LV","F","POP","TOTAL","OC3","D","Y50-64","2011","307","","" +"LV","F","POP","TOTAL","OC3","D","Y65-84","2011","14","","" +"LV","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","E","Y15-29","2011","62","","" +"LV","F","POP","TOTAL","OC3","E","Y30-49","2011","129","","" +"LV","F","POP","TOTAL","OC3","E","Y50-64","2011","168","","" +"LV","F","POP","TOTAL","OC3","E","Y65-84","2011","19","","" +"LV","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","F","Y15-29","2011","460","","" +"LV","F","POP","TOTAL","OC3","F","Y30-49","2011","693","","" +"LV","F","POP","TOTAL","OC3","F","Y50-64","2011","338","","" +"LV","F","POP","TOTAL","OC3","F","Y65-84","2011","28","","" +"LV","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","G","Y15-29","2011","2983","","" +"LV","F","POP","TOTAL","OC3","G","Y30-49","2011","5553","","" +"LV","F","POP","TOTAL","OC3","G","Y50-64","2011","1914","","" +"LV","F","POP","TOTAL","OC3","G","Y65-84","2011","165","","" +"LV","F","POP","TOTAL","OC3","G","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","H","Y15-29","2011","797","","" +"LV","F","POP","TOTAL","OC3","H","Y30-49","2011","1367","","" +"LV","F","POP","TOTAL","OC3","H","Y50-64","2011","600","","" +"LV","F","POP","TOTAL","OC3","H","Y65-84","2011","36","","" +"LV","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","I","Y15-29","2011","335","","" +"LV","F","POP","TOTAL","OC3","I","Y30-49","2011","572","","" +"LV","F","POP","TOTAL","OC3","I","Y50-64","2011","281","","" +"LV","F","POP","TOTAL","OC3","I","Y65-84","2011","23","","" +"LV","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","J","Y15-29","2011","752","","" +"LV","F","POP","TOTAL","OC3","J","Y30-49","2011","730","","" +"LV","F","POP","TOTAL","OC3","J","Y50-64","2011","296","","" +"LV","F","POP","TOTAL","OC3","J","Y65-84","2011","12","","" +"LV","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","K","Y15-29","2011","2426","","" +"LV","F","POP","TOTAL","OC3","K","Y30-49","2011","2777","","" +"LV","F","POP","TOTAL","OC3","K","Y50-64","2011","766","","" +"LV","F","POP","TOTAL","OC3","K","Y65-84","2011","55","","" +"LV","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","L","Y15-29","2011","352","","" +"LV","F","POP","TOTAL","OC3","L","Y30-49","2011","666","","" +"LV","F","POP","TOTAL","OC3","L","Y50-64","2011","386","","" +"LV","F","POP","TOTAL","OC3","L","Y65-84","2011","55","","" +"LV","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","M","Y15-29","2011","1533","","" +"LV","F","POP","TOTAL","OC3","M","Y30-49","2011","1952","","" +"LV","F","POP","TOTAL","OC3","M","Y50-64","2011","751","","" +"LV","F","POP","TOTAL","OC3","M","Y65-84","2011","52","","" +"LV","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","N","Y15-29","2011","492","","" +"LV","F","POP","TOTAL","OC3","N","Y30-49","2011","544","","" +"LV","F","POP","TOTAL","OC3","N","Y50-64","2011","171","","" +"LV","F","POP","TOTAL","OC3","N","Y65-84","2011","17","","" +"LV","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","O","Y15-29","2011","2881","","" +"LV","F","POP","TOTAL","OC3","O","Y30-49","2011","5918","","" +"LV","F","POP","TOTAL","OC3","O","Y50-64","2011","2625","","" +"LV","F","POP","TOTAL","OC3","O","Y65-84","2011","174","","" +"LV","F","POP","TOTAL","OC3","O","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","P","Y15-29","2011","588","","" +"LV","F","POP","TOTAL","OC3","P","Y30-49","2011","1223","","" +"LV","F","POP","TOTAL","OC3","P","Y50-64","2011","942","","" +"LV","F","POP","TOTAL","OC3","P","Y65-84","2011","189","","" +"LV","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","Q","Y15-29","2011","1754","","" +"LV","F","POP","TOTAL","OC3","Q","Y30-49","2011","7785","","" +"LV","F","POP","TOTAL","OC3","Q","Y50-64","2011","5254","","" +"LV","F","POP","TOTAL","OC3","Q","Y65-84","2011","652","","" +"LV","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","R","Y15-29","2011","554","","" +"LV","F","POP","TOTAL","OC3","R","Y30-49","2011","978","","" +"LV","F","POP","TOTAL","OC3","R","Y50-64","2011","567","","" +"LV","F","POP","TOTAL","OC3","R","Y65-84","2011","103","","" +"LV","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","S","Y15-29","2011","412","","" +"LV","F","POP","TOTAL","OC3","S","Y30-49","2011","786","","" +"LV","F","POP","TOTAL","OC3","S","Y50-64","2011","297","","" +"LV","F","POP","TOTAL","OC3","S","Y65-84","2011","51","","" +"LV","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","T","Y15-29","2011","3","","" +"LV","F","POP","TOTAL","OC3","T","Y30-49","2011","4","","" +"LV","F","POP","TOTAL","OC3","T","Y50-64","2011","1","","" +"LV","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","U","Y15-29","2011","14","","" +"LV","F","POP","TOTAL","OC3","U","Y30-49","2011","33","","" +"LV","F","POP","TOTAL","OC3","U","Y50-64","2011","7","","" +"LV","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","A","Y15-29","2011","78","","" +"LV","F","POP","TOTAL","OC4","A","Y30-49","2011","232","","" +"LV","F","POP","TOTAL","OC4","A","Y50-64","2011","231","","" +"LV","F","POP","TOTAL","OC4","A","Y65-84","2011","22","","" +"LV","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","B","Y15-29","2011","12","","" +"LV","F","POP","TOTAL","OC4","B","Y30-49","2011","27","","" +"LV","F","POP","TOTAL","OC4","B","Y50-64","2011","28","","" +"LV","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","C","Y15-29","2011","617","","" +"LV","F","POP","TOTAL","OC4","C","Y30-49","2011","1525","","" +"LV","F","POP","TOTAL","OC4","C","Y50-64","2011","1189","","" +"LV","F","POP","TOTAL","OC4","C","Y65-84","2011","71","","" +"LV","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","D","Y15-29","2011","102","","" +"LV","F","POP","TOTAL","OC4","D","Y30-49","2011","267","","" +"LV","F","POP","TOTAL","OC4","D","Y50-64","2011","223","","" +"LV","F","POP","TOTAL","OC4","D","Y65-84","2011","13","","" +"LV","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","E","Y15-29","2011","48","","" +"LV","F","POP","TOTAL","OC4","E","Y30-49","2011","132","","" +"LV","F","POP","TOTAL","OC4","E","Y50-64","2011","104","","" +"LV","F","POP","TOTAL","OC4","E","Y65-84","2011","11","","" +"LV","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","F","Y15-29","2011","279","","" +"LV","F","POP","TOTAL","OC4","F","Y30-49","2011","437","","" +"LV","F","POP","TOTAL","OC4","F","Y50-64","2011","316","","" +"LV","F","POP","TOTAL","OC4","F","Y65-84","2011","16","","" +"LV","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","G","Y15-29","2011","2292","","" +"LV","F","POP","TOTAL","OC4","G","Y30-49","2011","3723","","" +"LV","F","POP","TOTAL","OC4","G","Y50-64","2011","1735","","" +"LV","F","POP","TOTAL","OC4","G","Y65-84","2011","86","","" +"LV","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","H","Y15-29","2011","1292","","" +"LV","F","POP","TOTAL","OC4","H","Y30-49","2011","3859","","" +"LV","F","POP","TOTAL","OC4","H","Y50-64","2011","3010","","" +"LV","F","POP","TOTAL","OC4","H","Y65-84","2011","162","","" +"LV","F","POP","TOTAL","OC4","H","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","I","Y15-29","2011","666","","" +"LV","F","POP","TOTAL","OC4","I","Y30-49","2011","395","","" +"LV","F","POP","TOTAL","OC4","I","Y50-64","2011","170","","" +"LV","F","POP","TOTAL","OC4","I","Y65-84","2011","12","","" +"LV","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","J","Y15-29","2011","643","","" +"LV","F","POP","TOTAL","OC4","J","Y30-49","2011","507","","" +"LV","F","POP","TOTAL","OC4","J","Y50-64","2011","200","","" +"LV","F","POP","TOTAL","OC4","J","Y65-84","2011","11","","" +"LV","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","K","Y15-29","2011","1500","","" +"LV","F","POP","TOTAL","OC4","K","Y30-49","2011","1397","","" +"LV","F","POP","TOTAL","OC4","K","Y50-64","2011","453","","" +"LV","F","POP","TOTAL","OC4","K","Y65-84","2011","22","","" +"LV","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","L","Y15-29","2011","178","","" +"LV","F","POP","TOTAL","OC4","L","Y30-49","2011","282","","" +"LV","F","POP","TOTAL","OC4","L","Y50-64","2011","269","","" +"LV","F","POP","TOTAL","OC4","L","Y65-84","2011","25","","" +"LV","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","M","Y15-29","2011","505","","" +"LV","F","POP","TOTAL","OC4","M","Y30-49","2011","583","","" +"LV","F","POP","TOTAL","OC4","M","Y50-64","2011","257","","" +"LV","F","POP","TOTAL","OC4","M","Y65-84","2011","32","","" +"LV","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","N","Y15-29","2011","1173","","" +"LV","F","POP","TOTAL","OC4","N","Y30-49","2011","869","","" +"LV","F","POP","TOTAL","OC4","N","Y50-64","2011","255","","" +"LV","F","POP","TOTAL","OC4","N","Y65-84","2011","17","","" +"LV","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","O","Y15-29","2011","503","","" +"LV","F","POP","TOTAL","OC4","O","Y30-49","2011","1217","","" +"LV","F","POP","TOTAL","OC4","O","Y50-64","2011","940","","" +"LV","F","POP","TOTAL","OC4","O","Y65-84","2011","125","","" +"LV","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","P","Y15-29","2011","391","","" +"LV","F","POP","TOTAL","OC4","P","Y30-49","2011","513","","" +"LV","F","POP","TOTAL","OC4","P","Y50-64","2011","459","","" +"LV","F","POP","TOTAL","OC4","P","Y65-84","2011","77","","" +"LV","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","Q","Y15-29","2011","230","","" +"LV","F","POP","TOTAL","OC4","Q","Y30-49","2011","481","","" +"LV","F","POP","TOTAL","OC4","Q","Y50-64","2011","442","","" +"LV","F","POP","TOTAL","OC4","Q","Y65-84","2011","64","","" +"LV","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","R","Y15-29","2011","910","","" +"LV","F","POP","TOTAL","OC4","R","Y30-49","2011","793","","" +"LV","F","POP","TOTAL","OC4","R","Y50-64","2011","212","","" +"LV","F","POP","TOTAL","OC4","R","Y65-84","2011","42","","" +"LV","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","S","Y15-29","2011","181","","" +"LV","F","POP","TOTAL","OC4","S","Y30-49","2011","295","","" +"LV","F","POP","TOTAL","OC4","S","Y50-64","2011","175","","" +"LV","F","POP","TOTAL","OC4","S","Y65-84","2011","42","","" +"LV","F","POP","TOTAL","OC4","S","Y_GE85","2011","2","","" +"LV","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","T","Y15-29","2011","2","","" +"LV","F","POP","TOTAL","OC4","T","Y30-49","2011","1","","" +"LV","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","U","Y15-29","2011","9","","" +"LV","F","POP","TOTAL","OC4","U","Y30-49","2011","18","","" +"LV","F","POP","TOTAL","OC4","U","Y50-64","2011","6","","" +"LV","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","A","Y15-29","2011","73","","" +"LV","F","POP","TOTAL","OC5","A","Y30-49","2011","371","","" +"LV","F","POP","TOTAL","OC5","A","Y50-64","2011","290","","" +"LV","F","POP","TOTAL","OC5","A","Y65-84","2011","13","","" +"LV","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","B","Y15-29","2011","6","","" +"LV","F","POP","TOTAL","OC5","B","Y30-49","2011","21","","" +"LV","F","POP","TOTAL","OC5","B","Y50-64","2011","25","","" +"LV","F","POP","TOTAL","OC5","B","Y65-84","2011","2","","" +"LV","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","C","Y15-29","2011","387","","" +"LV","F","POP","TOTAL","OC5","C","Y30-49","2011","1041","","" +"LV","F","POP","TOTAL","OC5","C","Y50-64","2011","707","","" +"LV","F","POP","TOTAL","OC5","C","Y65-84","2011","67","","" +"LV","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","D","Y15-29","2011","2","","" +"LV","F","POP","TOTAL","OC5","D","Y30-49","2011","36","","" +"LV","F","POP","TOTAL","OC5","D","Y50-64","2011","36","","" +"LV","F","POP","TOTAL","OC5","D","Y65-84","2011","3","","" +"LV","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","E","Y15-29","2011","10","","" +"LV","F","POP","TOTAL","OC5","E","Y30-49","2011","21","","" +"LV","F","POP","TOTAL","OC5","E","Y50-64","2011","40","","" +"LV","F","POP","TOTAL","OC5","E","Y65-84","2011","6","","" +"LV","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","F","Y15-29","2011","67","","" +"LV","F","POP","TOTAL","OC5","F","Y30-49","2011","144","","" +"LV","F","POP","TOTAL","OC5","F","Y50-64","2011","140","","" +"LV","F","POP","TOTAL","OC5","F","Y65-84","2011","21","","" +"LV","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","G","Y15-29","2011","16676","","" +"LV","F","POP","TOTAL","OC5","G","Y30-49","2011","28750","","" +"LV","F","POP","TOTAL","OC5","G","Y50-64","2011","13242","","" +"LV","F","POP","TOTAL","OC5","G","Y65-84","2011","720","","" +"LV","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","H","Y15-29","2011","701","","" +"LV","F","POP","TOTAL","OC5","H","Y30-49","2011","1097","","" +"LV","F","POP","TOTAL","OC5","H","Y50-64","2011","967","","" +"LV","F","POP","TOTAL","OC5","H","Y65-84","2011","65","","" +"LV","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","I","Y15-29","2011","6143","","" +"LV","F","POP","TOTAL","OC5","I","Y30-49","2011","6035","","" +"LV","F","POP","TOTAL","OC5","I","Y50-64","2011","2615","","" +"LV","F","POP","TOTAL","OC5","I","Y65-84","2011","99","","" +"LV","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","J","Y15-29","2011","124","","" +"LV","F","POP","TOTAL","OC5","J","Y30-49","2011","95","","" +"LV","F","POP","TOTAL","OC5","J","Y50-64","2011","48","","" +"LV","F","POP","TOTAL","OC5","J","Y65-84","2011","7","","" +"LV","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","K","Y15-29","2011","56","","" +"LV","F","POP","TOTAL","OC5","K","Y30-49","2011","89","","" +"LV","F","POP","TOTAL","OC5","K","Y50-64","2011","40","","" +"LV","F","POP","TOTAL","OC5","K","Y65-84","2011","4","","" +"LV","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","L","Y15-29","2011","70","","" +"LV","F","POP","TOTAL","OC5","L","Y30-49","2011","302","","" +"LV","F","POP","TOTAL","OC5","L","Y50-64","2011","352","","" +"LV","F","POP","TOTAL","OC5","L","Y65-84","2011","75","","" +"LV","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","M","Y15-29","2011","101","","" +"LV","F","POP","TOTAL","OC5","M","Y30-49","2011","140","","" +"LV","F","POP","TOTAL","OC5","M","Y50-64","2011","85","","" +"LV","F","POP","TOTAL","OC5","M","Y65-84","2011","16","","" +"LV","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","N","Y15-29","2011","442","","" +"LV","F","POP","TOTAL","OC5","N","Y30-49","2011","875","","" +"LV","F","POP","TOTAL","OC5","N","Y50-64","2011","537","","" +"LV","F","POP","TOTAL","OC5","N","Y65-84","2011","46","","" +"LV","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","O","Y15-29","2011","290","","" +"LV","F","POP","TOTAL","OC5","O","Y30-49","2011","764","","" +"LV","F","POP","TOTAL","OC5","O","Y50-64","2011","319","","" +"LV","F","POP","TOTAL","OC5","O","Y65-84","2011","63","","" +"LV","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","P","Y15-29","2011","1055","","" +"LV","F","POP","TOTAL","OC5","P","Y30-49","2011","3795","","" +"LV","F","POP","TOTAL","OC5","P","Y50-64","2011","3429","","" +"LV","F","POP","TOTAL","OC5","P","Y65-84","2011","441","","" +"LV","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","Q","Y15-29","2011","842","","" +"LV","F","POP","TOTAL","OC5","Q","Y30-49","2011","3697","","" +"LV","F","POP","TOTAL","OC5","Q","Y50-64","2011","3826","","" +"LV","F","POP","TOTAL","OC5","Q","Y65-84","2011","356","","" +"LV","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","R","Y15-29","2011","718","","" +"LV","F","POP","TOTAL","OC5","R","Y30-49","2011","822","","" +"LV","F","POP","TOTAL","OC5","R","Y50-64","2011","309","","" +"LV","F","POP","TOTAL","OC5","R","Y65-84","2011","99","","" +"LV","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","S","Y15-29","2011","1934","","" +"LV","F","POP","TOTAL","OC5","S","Y30-49","2011","4947","","" +"LV","F","POP","TOTAL","OC5","S","Y50-64","2011","1056","","" +"LV","F","POP","TOTAL","OC5","S","Y65-84","2011","88","","" +"LV","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","T","Y15-29","2011","165","","" +"LV","F","POP","TOTAL","OC5","T","Y30-49","2011","116","","" +"LV","F","POP","TOTAL","OC5","T","Y50-64","2011","68","","" +"LV","F","POP","TOTAL","OC5","T","Y65-84","2011","6","","" +"LV","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","U","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC5","U","Y30-49","2011","4","","" +"LV","F","POP","TOTAL","OC5","U","Y50-64","2011","8","","" +"LV","F","POP","TOTAL","OC5","U","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","A","Y15-29","2011","372","","" +"LV","F","POP","TOTAL","OC6","A","Y30-49","2011","2210","","" +"LV","F","POP","TOTAL","OC6","A","Y50-64","2011","1939","","" +"LV","F","POP","TOTAL","OC6","A","Y65-84","2011","98","","" +"LV","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC6","B","Y30-49","2011","1","","" +"LV","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","C","Y15-29","2011","16","","" +"LV","F","POP","TOTAL","OC6","C","Y30-49","2011","92","","" +"LV","F","POP","TOTAL","OC6","C","Y50-64","2011","45","","" +"LV","F","POP","TOTAL","OC6","C","Y65-84","2011","4","","" +"LV","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","D","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC6","D","Y30-49","2011","4","","" +"LV","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","E","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC6","E","Y30-49","2011","5","","" +"LV","F","POP","TOTAL","OC6","E","Y50-64","2011","3","","" +"LV","F","POP","TOTAL","OC6","E","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","F","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC6","F","Y30-49","2011","5","","" +"LV","F","POP","TOTAL","OC6","F","Y50-64","2011","7","","" +"LV","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","G","Y15-29","2011","6","","" +"LV","F","POP","TOTAL","OC6","G","Y30-49","2011","18","","" +"LV","F","POP","TOTAL","OC6","G","Y50-64","2011","5","","" +"LV","F","POP","TOTAL","OC6","G","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC6","H","Y30-49","2011","6","","" +"LV","F","POP","TOTAL","OC6","H","Y50-64","2011","3","","" +"LV","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","I","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC6","I","Y30-49","2011","7","","" +"LV","F","POP","TOTAL","OC6","I","Y50-64","2011","10","","" +"LV","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC6","J","Y50-64","2011","1","","" +"LV","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC6","K","Y30-49","2011","1","","" +"LV","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","L","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC6","L","Y30-49","2011","11","","" +"LV","F","POP","TOTAL","OC6","L","Y50-64","2011","7","","" +"LV","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","M","Y15-29","2011","3","","" +"LV","F","POP","TOTAL","OC6","M","Y30-49","2011","7","","" +"LV","F","POP","TOTAL","OC6","M","Y50-64","2011","7","","" +"LV","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","N","Y15-29","2011","25","","" +"LV","F","POP","TOTAL","OC6","N","Y30-49","2011","120","","" +"LV","F","POP","TOTAL","OC6","N","Y50-64","2011","79","","" +"LV","F","POP","TOTAL","OC6","N","Y65-84","2011","4","","" +"LV","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","O","Y15-29","2011","2","","" +"LV","F","POP","TOTAL","OC6","O","Y30-49","2011","8","","" +"LV","F","POP","TOTAL","OC6","O","Y50-64","2011","6","","" +"LV","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","P","Y15-29","2011","6","","" +"LV","F","POP","TOTAL","OC6","P","Y30-49","2011","71","","" +"LV","F","POP","TOTAL","OC6","P","Y50-64","2011","57","","" +"LV","F","POP","TOTAL","OC6","P","Y65-84","2011","11","","" +"LV","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","Q","Y15-29","2011","1","","" +"LV","F","POP","TOTAL","OC6","Q","Y30-49","2011","11","","" +"LV","F","POP","TOTAL","OC6","Q","Y50-64","2011","22","","" +"LV","F","POP","TOTAL","OC6","Q","Y65-84","2011","3","","" +"LV","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","R","Y15-29","2011","4","","" +"LV","F","POP","TOTAL","OC6","R","Y30-49","2011","15","","" +"LV","F","POP","TOTAL","OC6","R","Y50-64","2011","22","","" +"LV","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","S","Y15-29","2011","2","","" +"LV","F","POP","TOTAL","OC6","S","Y30-49","2011","4","","" +"LV","F","POP","TOTAL","OC6","S","Y50-64","2011","4","","" +"LV","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC6","T","Y30-49","2011","1","","" +"LV","F","POP","TOTAL","OC6","T","Y50-64","2011","1","","" +"LV","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC6","U","Y30-49","2011","1","","" +"LV","F","POP","TOTAL","OC6","U","Y50-64","2011","1","","" +"LV","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","A","Y15-29","2011","38","","" +"LV","F","POP","TOTAL","OC7","A","Y30-49","2011","77","","" +"LV","F","POP","TOTAL","OC7","A","Y50-64","2011","61","","" +"LV","F","POP","TOTAL","OC7","A","Y65-84","2011","3","","" +"LV","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","B","Y15-29","2011","3","","" +"LV","F","POP","TOTAL","OC7","B","Y30-49","2011","5","","" +"LV","F","POP","TOTAL","OC7","B","Y50-64","2011","4","","" +"LV","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","C","Y15-29","2011","3221","","" +"LV","F","POP","TOTAL","OC7","C","Y30-49","2011","12828","","" +"LV","F","POP","TOTAL","OC7","C","Y50-64","2011","7196","","" +"LV","F","POP","TOTAL","OC7","C","Y65-84","2011","260","","" +"LV","F","POP","TOTAL","OC7","C","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","D","Y15-29","2011","7","","" +"LV","F","POP","TOTAL","OC7","D","Y30-49","2011","50","","" +"LV","F","POP","TOTAL","OC7","D","Y50-64","2011","79","","" +"LV","F","POP","TOTAL","OC7","D","Y65-84","2011","7","","" +"LV","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","E","Y15-29","2011","6","","" +"LV","F","POP","TOTAL","OC7","E","Y30-49","2011","28","","" +"LV","F","POP","TOTAL","OC7","E","Y50-64","2011","41","","" +"LV","F","POP","TOTAL","OC7","E","Y65-84","2011","8","","" +"LV","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","F","Y15-29","2011","130","","" +"LV","F","POP","TOTAL","OC7","F","Y30-49","2011","605","","" +"LV","F","POP","TOTAL","OC7","F","Y50-64","2011","530","","" +"LV","F","POP","TOTAL","OC7","F","Y65-84","2011","23","","" +"LV","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","G","Y15-29","2011","459","","" +"LV","F","POP","TOTAL","OC7","G","Y30-49","2011","1188","","" +"LV","F","POP","TOTAL","OC7","G","Y50-64","2011","468","","" +"LV","F","POP","TOTAL","OC7","G","Y65-84","2011","12","","" +"LV","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","H","Y15-29","2011","44","","" +"LV","F","POP","TOTAL","OC7","H","Y30-49","2011","216","","" +"LV","F","POP","TOTAL","OC7","H","Y50-64","2011","254","","" +"LV","F","POP","TOTAL","OC7","H","Y65-84","2011","15","","" +"LV","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","I","Y15-29","2011","210","","" +"LV","F","POP","TOTAL","OC7","I","Y30-49","2011","521","","" +"LV","F","POP","TOTAL","OC7","I","Y50-64","2011","256","","" +"LV","F","POP","TOTAL","OC7","I","Y65-84","2011","8","","" +"LV","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","J","Y15-29","2011","43","","" +"LV","F","POP","TOTAL","OC7","J","Y30-49","2011","89","","" +"LV","F","POP","TOTAL","OC7","J","Y50-64","2011","62","","" +"LV","F","POP","TOTAL","OC7","J","Y65-84","2011","5","","" +"LV","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","K","Y15-29","2011","2","","" +"LV","F","POP","TOTAL","OC7","K","Y30-49","2011","8","","" +"LV","F","POP","TOTAL","OC7","K","Y50-64","2011","3","","" +"LV","F","POP","TOTAL","OC7","K","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","L","Y15-29","2011","16","","" +"LV","F","POP","TOTAL","OC7","L","Y30-49","2011","78","","" +"LV","F","POP","TOTAL","OC7","L","Y50-64","2011","64","","" +"LV","F","POP","TOTAL","OC7","L","Y65-84","2011","7","","" +"LV","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","M","Y15-29","2011","87","","" +"LV","F","POP","TOTAL","OC7","M","Y30-49","2011","89","","" +"LV","F","POP","TOTAL","OC7","M","Y50-64","2011","63","","" +"LV","F","POP","TOTAL","OC7","M","Y65-84","2011","13","","" +"LV","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","N","Y15-29","2011","31","","" +"LV","F","POP","TOTAL","OC7","N","Y30-49","2011","77","","" +"LV","F","POP","TOTAL","OC7","N","Y50-64","2011","68","","" +"LV","F","POP","TOTAL","OC7","N","Y65-84","2011","5","","" +"LV","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","O","Y15-29","2011","4","","" +"LV","F","POP","TOTAL","OC7","O","Y30-49","2011","28","","" +"LV","F","POP","TOTAL","OC7","O","Y50-64","2011","39","","" +"LV","F","POP","TOTAL","OC7","O","Y65-84","2011","2","","" +"LV","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","P","Y15-29","2011","108","","" +"LV","F","POP","TOTAL","OC7","P","Y30-49","2011","412","","" +"LV","F","POP","TOTAL","OC7","P","Y50-64","2011","476","","" +"LV","F","POP","TOTAL","OC7","P","Y65-84","2011","64","","" +"LV","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","Q","Y15-29","2011","15","","" +"LV","F","POP","TOTAL","OC7","Q","Y30-49","2011","135","","" +"LV","F","POP","TOTAL","OC7","Q","Y50-64","2011","169","","" +"LV","F","POP","TOTAL","OC7","Q","Y65-84","2011","31","","" +"LV","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","R","Y15-29","2011","21","","" +"LV","F","POP","TOTAL","OC7","R","Y30-49","2011","114","","" +"LV","F","POP","TOTAL","OC7","R","Y50-64","2011","82","","" +"LV","F","POP","TOTAL","OC7","R","Y65-84","2011","11","","" +"LV","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","S","Y15-29","2011","63","","" +"LV","F","POP","TOTAL","OC7","S","Y30-49","2011","305","","" +"LV","F","POP","TOTAL","OC7","S","Y50-64","2011","206","","" +"LV","F","POP","TOTAL","OC7","S","Y65-84","2011","13","","" +"LV","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","T","Y15-29","2011","3","","" +"LV","F","POP","TOTAL","OC7","T","Y30-49","2011","6","","" +"LV","F","POP","TOTAL","OC7","T","Y50-64","2011","5","","" +"LV","F","POP","TOTAL","OC7","T","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC7","U","Y30-49","2011","3","","" +"LV","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC7","U","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","A","Y15-29","2011","37","","" +"LV","F","POP","TOTAL","OC8","A","Y30-49","2011","126","","" +"LV","F","POP","TOTAL","OC8","A","Y50-64","2011","74","","" +"LV","F","POP","TOTAL","OC8","A","Y65-84","2011","5","","" +"LV","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","B","Y15-29","2011","16","","" +"LV","F","POP","TOTAL","OC8","B","Y30-49","2011","30","","" +"LV","F","POP","TOTAL","OC8","B","Y50-64","2011","30","","" +"LV","F","POP","TOTAL","OC8","B","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","C","Y15-29","2011","1282","","" +"LV","F","POP","TOTAL","OC8","C","Y30-49","2011","4526","","" +"LV","F","POP","TOTAL","OC8","C","Y50-64","2011","2995","","" +"LV","F","POP","TOTAL","OC8","C","Y65-84","2011","77","","" +"LV","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","D","Y15-29","2011","4","","" +"LV","F","POP","TOTAL","OC8","D","Y30-49","2011","38","","" +"LV","F","POP","TOTAL","OC8","D","Y50-64","2011","87","","" +"LV","F","POP","TOTAL","OC8","D","Y65-84","2011","5","","" +"LV","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","E","Y15-29","2011","20","","" +"LV","F","POP","TOTAL","OC8","E","Y30-49","2011","65","","" +"LV","F","POP","TOTAL","OC8","E","Y50-64","2011","68","","" +"LV","F","POP","TOTAL","OC8","E","Y65-84","2011","9","","" +"LV","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","F","Y15-29","2011","14","","" +"LV","F","POP","TOTAL","OC8","F","Y30-49","2011","37","","" +"LV","F","POP","TOTAL","OC8","F","Y50-64","2011","74","","" +"LV","F","POP","TOTAL","OC8","F","Y65-84","2011","7","","" +"LV","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","G","Y15-29","2011","97","","" +"LV","F","POP","TOTAL","OC8","G","Y30-49","2011","245","","" +"LV","F","POP","TOTAL","OC8","G","Y50-64","2011","150","","" +"LV","F","POP","TOTAL","OC8","G","Y65-84","2011","9","","" +"LV","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","H","Y15-29","2011","173","","" +"LV","F","POP","TOTAL","OC8","H","Y30-49","2011","918","","" +"LV","F","POP","TOTAL","OC8","H","Y50-64","2011","652","","" +"LV","F","POP","TOTAL","OC8","H","Y65-84","2011","29","","" +"LV","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","I","Y15-29","2011","8","","" +"LV","F","POP","TOTAL","OC8","I","Y30-49","2011","23","","" +"LV","F","POP","TOTAL","OC8","I","Y50-64","2011","11","","" +"LV","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","J","Y15-29","2011","21","","" +"LV","F","POP","TOTAL","OC8","J","Y30-49","2011","16","","" +"LV","F","POP","TOTAL","OC8","J","Y50-64","2011","4","","" +"LV","F","POP","TOTAL","OC8","J","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","K","Y15-29","2011","4","","" +"LV","F","POP","TOTAL","OC8","K","Y30-49","2011","1","","" +"LV","F","POP","TOTAL","OC8","K","Y50-64","2011","2","","" +"LV","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","L","Y15-29","2011","9","","" +"LV","F","POP","TOTAL","OC8","L","Y30-49","2011","35","","" +"LV","F","POP","TOTAL","OC8","L","Y50-64","2011","36","","" +"LV","F","POP","TOTAL","OC8","L","Y65-84","2011","7","","" +"LV","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","M","Y15-29","2011","18","","" +"LV","F","POP","TOTAL","OC8","M","Y30-49","2011","26","","" +"LV","F","POP","TOTAL","OC8","M","Y50-64","2011","19","","" +"LV","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","N","Y15-29","2011","34","","" +"LV","F","POP","TOTAL","OC8","N","Y30-49","2011","98","","" +"LV","F","POP","TOTAL","OC8","N","Y50-64","2011","63","","" +"LV","F","POP","TOTAL","OC8","N","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","O","Y15-29","2011","17","","" +"LV","F","POP","TOTAL","OC8","O","Y30-49","2011","105","","" +"LV","F","POP","TOTAL","OC8","O","Y50-64","2011","92","","" +"LV","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","P","Y15-29","2011","16","","" +"LV","F","POP","TOTAL","OC8","P","Y30-49","2011","87","","" +"LV","F","POP","TOTAL","OC8","P","Y50-64","2011","87","","" +"LV","F","POP","TOTAL","OC8","P","Y65-84","2011","12","","" +"LV","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","Q","Y15-29","2011","9","","" +"LV","F","POP","TOTAL","OC8","Q","Y30-49","2011","63","","" +"LV","F","POP","TOTAL","OC8","Q","Y50-64","2011","95","","" +"LV","F","POP","TOTAL","OC8","Q","Y65-84","2011","12","","" +"LV","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","R","Y15-29","2011","10","","" +"LV","F","POP","TOTAL","OC8","R","Y30-49","2011","19","","" +"LV","F","POP","TOTAL","OC8","R","Y50-64","2011","11","","" +"LV","F","POP","TOTAL","OC8","R","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","S","Y15-29","2011","31","","" +"LV","F","POP","TOTAL","OC8","S","Y30-49","2011","73","","" +"LV","F","POP","TOTAL","OC8","S","Y50-64","2011","45","","" +"LV","F","POP","TOTAL","OC8","S","Y65-84","2011","2","","" +"LV","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC8","T","Y50-64","2011","1","","" +"LV","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC8","U","Y50-64","2011","1","","" +"LV","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","A","Y15-29","2011","814","","" +"LV","F","POP","TOTAL","OC9","A","Y30-49","2011","2401","","" +"LV","F","POP","TOTAL","OC9","A","Y50-64","2011","1610","","" +"LV","F","POP","TOTAL","OC9","A","Y65-84","2011","46","","" +"LV","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","B","Y15-29","2011","80","","" +"LV","F","POP","TOTAL","OC9","B","Y30-49","2011","196","","" +"LV","F","POP","TOTAL","OC9","B","Y50-64","2011","100","","" +"LV","F","POP","TOTAL","OC9","B","Y65-84","2011","4","","" +"LV","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","C","Y15-29","2011","1269","","" +"LV","F","POP","TOTAL","OC9","C","Y30-49","2011","3250","","" +"LV","F","POP","TOTAL","OC9","C","Y50-64","2011","2787","","" +"LV","F","POP","TOTAL","OC9","C","Y65-84","2011","113","","" +"LV","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","D","Y15-29","2011","32","","" +"LV","F","POP","TOTAL","OC9","D","Y30-49","2011","167","","" +"LV","F","POP","TOTAL","OC9","D","Y50-64","2011","241","","" +"LV","F","POP","TOTAL","OC9","D","Y65-84","2011","41","","" +"LV","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","E","Y15-29","2011","231","","" +"LV","F","POP","TOTAL","OC9","E","Y30-49","2011","836","","" +"LV","F","POP","TOTAL","OC9","E","Y50-64","2011","861","","" +"LV","F","POP","TOTAL","OC9","E","Y65-84","2011","72","","" +"LV","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","F","Y15-29","2011","109","","" +"LV","F","POP","TOTAL","OC9","F","Y30-49","2011","342","","" +"LV","F","POP","TOTAL","OC9","F","Y50-64","2011","399","","" +"LV","F","POP","TOTAL","OC9","F","Y65-84","2011","57","","" +"LV","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","G","Y15-29","2011","1124","","" +"LV","F","POP","TOTAL","OC9","G","Y30-49","2011","2081","","" +"LV","F","POP","TOTAL","OC9","G","Y50-64","2011","2217","","" +"LV","F","POP","TOTAL","OC9","G","Y65-84","2011","185","","" +"LV","F","POP","TOTAL","OC9","G","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","H","Y15-29","2011","302","","" +"LV","F","POP","TOTAL","OC9","H","Y30-49","2011","930","","" +"LV","F","POP","TOTAL","OC9","H","Y50-64","2011","1038","","" +"LV","F","POP","TOTAL","OC9","H","Y65-84","2011","83","","" +"LV","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","I","Y15-29","2011","1035","","" +"LV","F","POP","TOTAL","OC9","I","Y30-49","2011","2093","","" +"LV","F","POP","TOTAL","OC9","I","Y50-64","2011","1681","","" +"LV","F","POP","TOTAL","OC9","I","Y65-84","2011","80","","" +"LV","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","J","Y15-29","2011","56","","" +"LV","F","POP","TOTAL","OC9","J","Y30-49","2011","77","","" +"LV","F","POP","TOTAL","OC9","J","Y50-64","2011","129","","" +"LV","F","POP","TOTAL","OC9","J","Y65-84","2011","15","","" +"LV","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","K","Y15-29","2011","27","","" +"LV","F","POP","TOTAL","OC9","K","Y30-49","2011","93","","" +"LV","F","POP","TOTAL","OC9","K","Y50-64","2011","151","","" +"LV","F","POP","TOTAL","OC9","K","Y65-84","2011","15","","" +"LV","F","POP","TOTAL","OC9","K","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","L","Y15-29","2011","360","","" +"LV","F","POP","TOTAL","OC9","L","Y30-49","2011","1998","","" +"LV","F","POP","TOTAL","OC9","L","Y50-64","2011","3006","","" +"LV","F","POP","TOTAL","OC9","L","Y65-84","2011","527","","" +"LV","F","POP","TOTAL","OC9","L","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","M","Y15-29","2011","69","","" +"LV","F","POP","TOTAL","OC9","M","Y30-49","2011","178","","" +"LV","F","POP","TOTAL","OC9","M","Y50-64","2011","202","","" +"LV","F","POP","TOTAL","OC9","M","Y65-84","2011","33","","" +"LV","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","N","Y15-29","2011","817","","" +"LV","F","POP","TOTAL","OC9","N","Y30-49","2011","2880","","" +"LV","F","POP","TOTAL","OC9","N","Y50-64","2011","2438","","" +"LV","F","POP","TOTAL","OC9","N","Y65-84","2011","137","","" +"LV","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","O","Y15-29","2011","283","","" +"LV","F","POP","TOTAL","OC9","O","Y30-49","2011","1190","","" +"LV","F","POP","TOTAL","OC9","O","Y50-64","2011","1295","","" +"LV","F","POP","TOTAL","OC9","O","Y65-84","2011","261","","" +"LV","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","P","Y15-29","2011","675","","" +"LV","F","POP","TOTAL","OC9","P","Y30-49","2011","3300","","" +"LV","F","POP","TOTAL","OC9","P","Y50-64","2011","4067","","" +"LV","F","POP","TOTAL","OC9","P","Y65-84","2011","676","","" +"LV","F","POP","TOTAL","OC9","P","Y_GE85","2011","1","","" +"LV","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","Q","Y15-29","2011","431","","" +"LV","F","POP","TOTAL","OC9","Q","Y30-49","2011","1298","","" +"LV","F","POP","TOTAL","OC9","Q","Y50-64","2011","1658","","" +"LV","F","POP","TOTAL","OC9","Q","Y65-84","2011","246","","" +"LV","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","R","Y15-29","2011","236","","" +"LV","F","POP","TOTAL","OC9","R","Y30-49","2011","634","","" +"LV","F","POP","TOTAL","OC9","R","Y50-64","2011","718","","" +"LV","F","POP","TOTAL","OC9","R","Y65-84","2011","154","","" +"LV","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","S","Y15-29","2011","200","","" +"LV","F","POP","TOTAL","OC9","S","Y30-49","2011","421","","" +"LV","F","POP","TOTAL","OC9","S","Y50-64","2011","411","","" +"LV","F","POP","TOTAL","OC9","S","Y65-84","2011","68","","" +"LV","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","T","Y15-29","2011","33","","" +"LV","F","POP","TOTAL","OC9","T","Y30-49","2011","71","","" +"LV","F","POP","TOTAL","OC9","T","Y50-64","2011","39","","" +"LV","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","U","Y15-29","2011","6","","" +"LV","F","POP","TOTAL","OC9","U","Y30-49","2011","13","","" +"LV","F","POP","TOTAL","OC9","U","Y50-64","2011","12","","" +"LV","F","POP","TOTAL","OC9","U","Y65-84","2011","1","","" +"LV","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"LV","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"LV","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"LV","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"LV","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"LV","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"LV","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","NAP","Y15-29","2011","101330","","" +"LV","M","POP","TOTAL","NAP","NAP","Y30-49","2011","44131","","" +"LV","M","POP","TOTAL","NAP","NAP","Y50-64","2011","61267","","" +"LV","M","POP","TOTAL","NAP","NAP","Y65-84","2011","104490","","" +"LV","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","6088","","" +"LV","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","150506","","" +"LV","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","A","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","C","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC0","C","Y30-49","2011","1","","" +"LV","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","F","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","G","Y30-49","2011","1","","" +"LV","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","J","Y30-49","2011","2","","" +"LV","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","K","Y30-49","2011","1","","" +"LV","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","L","Y30-49","2011","1","","" +"LV","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","N","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC0","N","Y30-49","2011","3","","" +"LV","M","POP","TOTAL","OC0","N","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","O","Y15-29","2011","1257","","" +"LV","M","POP","TOTAL","OC0","O","Y30-49","2011","1605","","" +"LV","M","POP","TOTAL","OC0","O","Y50-64","2011","56","","" +"LV","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","P","Y15-29","2011","213","","" +"LV","M","POP","TOTAL","OC0","P","Y30-49","2011","147","","" +"LV","M","POP","TOTAL","OC0","P","Y50-64","2011","5","","" +"LV","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","R","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","S","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","A","Y15-29","2011","393","","" +"LV","M","POP","TOTAL","OC1","A","Y30-49","2011","2702","","" +"LV","M","POP","TOTAL","OC1","A","Y50-64","2011","1480","","" +"LV","M","POP","TOTAL","OC1","A","Y65-84","2011","129","","" +"LV","M","POP","TOTAL","OC1","A","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","B","Y15-29","2011","37","","" +"LV","M","POP","TOTAL","OC1","B","Y30-49","2011","109","","" +"LV","M","POP","TOTAL","OC1","B","Y50-64","2011","85","","" +"LV","M","POP","TOTAL","OC1","B","Y65-84","2011","6","","" +"LV","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","C","Y15-29","2011","857","","" +"LV","M","POP","TOTAL","OC1","C","Y30-49","2011","4524","","" +"LV","M","POP","TOTAL","OC1","C","Y50-64","2011","2224","","" +"LV","M","POP","TOTAL","OC1","C","Y65-84","2011","201","","" +"LV","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","D","Y15-29","2011","67","","" +"LV","M","POP","TOTAL","OC1","D","Y30-49","2011","449","","" +"LV","M","POP","TOTAL","OC1","D","Y50-64","2011","314","","" +"LV","M","POP","TOTAL","OC1","D","Y65-84","2011","36","","" +"LV","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","E","Y15-29","2011","47","","" +"LV","M","POP","TOTAL","OC1","E","Y30-49","2011","264","","" +"LV","M","POP","TOTAL","OC1","E","Y50-64","2011","167","","" +"LV","M","POP","TOTAL","OC1","E","Y65-84","2011","21","","" +"LV","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","F","Y15-29","2011","1305","","" +"LV","M","POP","TOTAL","OC1","F","Y30-49","2011","4289","","" +"LV","M","POP","TOTAL","OC1","F","Y50-64","2011","1940","","" +"LV","M","POP","TOTAL","OC1","F","Y65-84","2011","178","","" +"LV","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","G","Y15-29","2011","1984","","" +"LV","M","POP","TOTAL","OC1","G","Y30-49","2011","9063","","" +"LV","M","POP","TOTAL","OC1","G","Y50-64","2011","3070","","" +"LV","M","POP","TOTAL","OC1","G","Y65-84","2011","150","","" +"LV","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","H","Y15-29","2011","638","","" +"LV","M","POP","TOTAL","OC1","H","Y30-49","2011","2801","","" +"LV","M","POP","TOTAL","OC1","H","Y50-64","2011","1322","","" +"LV","M","POP","TOTAL","OC1","H","Y65-84","2011","119","","" +"LV","M","POP","TOTAL","OC1","H","Y_GE85","2011","2","","" +"LV","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","I","Y15-29","2011","271","","" +"LV","M","POP","TOTAL","OC1","I","Y30-49","2011","725","","" +"LV","M","POP","TOTAL","OC1","I","Y50-64","2011","299","","" +"LV","M","POP","TOTAL","OC1","I","Y65-84","2011","20","","" +"LV","M","POP","TOTAL","OC1","I","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","J","Y15-29","2011","516","","" +"LV","M","POP","TOTAL","OC1","J","Y30-49","2011","1243","","" +"LV","M","POP","TOTAL","OC1","J","Y50-64","2011","294","","" +"LV","M","POP","TOTAL","OC1","J","Y65-84","2011","22","","" +"LV","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","K","Y15-29","2011","383","","" +"LV","M","POP","TOTAL","OC1","K","Y30-49","2011","1084","","" +"LV","M","POP","TOTAL","OC1","K","Y50-64","2011","225","","" +"LV","M","POP","TOTAL","OC1","K","Y65-84","2011","10","","" +"LV","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","L","Y15-29","2011","190","","" +"LV","M","POP","TOTAL","OC1","L","Y30-49","2011","985","","" +"LV","M","POP","TOTAL","OC1","L","Y50-64","2011","495","","" +"LV","M","POP","TOTAL","OC1","L","Y65-84","2011","69","","" +"LV","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","M","Y15-29","2011","505","","" +"LV","M","POP","TOTAL","OC1","M","Y30-49","2011","1699","","" +"LV","M","POP","TOTAL","OC1","M","Y50-64","2011","559","","" +"LV","M","POP","TOTAL","OC1","M","Y65-84","2011","73","","" +"LV","M","POP","TOTAL","OC1","M","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","N","Y15-29","2011","331","","" +"LV","M","POP","TOTAL","OC1","N","Y30-49","2011","1000","","" +"LV","M","POP","TOTAL","OC1","N","Y50-64","2011","377","","" +"LV","M","POP","TOTAL","OC1","N","Y65-84","2011","34","","" +"LV","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","O","Y15-29","2011","321","","" +"LV","M","POP","TOTAL","OC1","O","Y30-49","2011","1647","","" +"LV","M","POP","TOTAL","OC1","O","Y50-64","2011","738","","" +"LV","M","POP","TOTAL","OC1","O","Y65-84","2011","134","","" +"LV","M","POP","TOTAL","OC1","O","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","P","Y15-29","2011","105","","" +"LV","M","POP","TOTAL","OC1","P","Y30-49","2011","511","","" +"LV","M","POP","TOTAL","OC1","P","Y50-64","2011","497","","" +"LV","M","POP","TOTAL","OC1","P","Y65-84","2011","105","","" +"LV","M","POP","TOTAL","OC1","P","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","Q","Y15-29","2011","42","","" +"LV","M","POP","TOTAL","OC1","Q","Y30-49","2011","226","","" +"LV","M","POP","TOTAL","OC1","Q","Y50-64","2011","197","","" +"LV","M","POP","TOTAL","OC1","Q","Y65-84","2011","33","","" +"LV","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","R","Y15-29","2011","189","","" +"LV","M","POP","TOTAL","OC1","R","Y30-49","2011","499","","" +"LV","M","POP","TOTAL","OC1","R","Y50-64","2011","252","","" +"LV","M","POP","TOTAL","OC1","R","Y65-84","2011","38","","" +"LV","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","S","Y15-29","2011","169","","" +"LV","M","POP","TOTAL","OC1","S","Y30-49","2011","605","","" +"LV","M","POP","TOTAL","OC1","S","Y50-64","2011","319","","" +"LV","M","POP","TOTAL","OC1","S","Y65-84","2011","79","","" +"LV","M","POP","TOTAL","OC1","S","Y_GE85","2011","2","","" +"LV","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","T","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC1","T","Y30-49","2011","8","","" +"LV","M","POP","TOTAL","OC1","T","Y50-64","2011","2","","" +"LV","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","U","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC1","U","Y30-49","2011","11","","" +"LV","M","POP","TOTAL","OC1","U","Y50-64","2011","6","","" +"LV","M","POP","TOTAL","OC1","U","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","A","Y15-29","2011","111","","" +"LV","M","POP","TOTAL","OC2","A","Y30-49","2011","492","","" +"LV","M","POP","TOTAL","OC2","A","Y50-64","2011","380","","" +"LV","M","POP","TOTAL","OC2","A","Y65-84","2011","32","","" +"LV","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","B","Y15-29","2011","8","","" +"LV","M","POP","TOTAL","OC2","B","Y30-49","2011","34","","" +"LV","M","POP","TOTAL","OC2","B","Y50-64","2011","18","","" +"LV","M","POP","TOTAL","OC2","B","Y65-84","2011","3","","" +"LV","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","C","Y15-29","2011","928","","" +"LV","M","POP","TOTAL","OC2","C","Y30-49","2011","1813","","" +"LV","M","POP","TOTAL","OC2","C","Y50-64","2011","1262","","" +"LV","M","POP","TOTAL","OC2","C","Y65-84","2011","177","","" +"LV","M","POP","TOTAL","OC2","C","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","D","Y15-29","2011","194","","" +"LV","M","POP","TOTAL","OC2","D","Y30-49","2011","629","","" +"LV","M","POP","TOTAL","OC2","D","Y50-64","2011","443","","" +"LV","M","POP","TOTAL","OC2","D","Y65-84","2011","56","","" +"LV","M","POP","TOTAL","OC2","D","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","E","Y15-29","2011","44","","" +"LV","M","POP","TOTAL","OC2","E","Y30-49","2011","112","","" +"LV","M","POP","TOTAL","OC2","E","Y50-64","2011","90","","" +"LV","M","POP","TOTAL","OC2","E","Y65-84","2011","27","","" +"LV","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","F","Y15-29","2011","730","","" +"LV","M","POP","TOTAL","OC2","F","Y30-49","2011","1518","","" +"LV","M","POP","TOTAL","OC2","F","Y50-64","2011","805","","" +"LV","M","POP","TOTAL","OC2","F","Y65-84","2011","109","","" +"LV","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","G","Y15-29","2011","888","","" +"LV","M","POP","TOTAL","OC2","G","Y30-49","2011","1882","","" +"LV","M","POP","TOTAL","OC2","G","Y50-64","2011","572","","" +"LV","M","POP","TOTAL","OC2","G","Y65-84","2011","73","","" +"LV","M","POP","TOTAL","OC2","G","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","H","Y15-29","2011","326","","" +"LV","M","POP","TOTAL","OC2","H","Y30-49","2011","761","","" +"LV","M","POP","TOTAL","OC2","H","Y50-64","2011","508","","" +"LV","M","POP","TOTAL","OC2","H","Y65-84","2011","84","","" +"LV","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","I","Y15-29","2011","63","","" +"LV","M","POP","TOTAL","OC2","I","Y30-49","2011","95","","" +"LV","M","POP","TOTAL","OC2","I","Y50-64","2011","55","","" +"LV","M","POP","TOTAL","OC2","I","Y65-84","2011","7","","" +"LV","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","J","Y15-29","2011","2710","","" +"LV","M","POP","TOTAL","OC2","J","Y30-49","2011","2693","","" +"LV","M","POP","TOTAL","OC2","J","Y50-64","2011","626","","" +"LV","M","POP","TOTAL","OC2","J","Y65-84","2011","72","","" +"LV","M","POP","TOTAL","OC2","J","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","K","Y15-29","2011","725","","" +"LV","M","POP","TOTAL","OC2","K","Y30-49","2011","928","","" +"LV","M","POP","TOTAL","OC2","K","Y50-64","2011","190","","" +"LV","M","POP","TOTAL","OC2","K","Y65-84","2011","13","","" +"LV","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","L","Y15-29","2011","151","","" +"LV","M","POP","TOTAL","OC2","L","Y30-49","2011","459","","" +"LV","M","POP","TOTAL","OC2","L","Y50-64","2011","300","","" +"LV","M","POP","TOTAL","OC2","L","Y65-84","2011","74","","" +"LV","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","M","Y15-29","2011","1745","","" +"LV","M","POP","TOTAL","OC2","M","Y30-49","2011","2678","","" +"LV","M","POP","TOTAL","OC2","M","Y50-64","2011","1117","","" +"LV","M","POP","TOTAL","OC2","M","Y65-84","2011","418","","" +"LV","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","N","Y15-29","2011","252","","" +"LV","M","POP","TOTAL","OC2","N","Y30-49","2011","369","","" +"LV","M","POP","TOTAL","OC2","N","Y50-64","2011","164","","" +"LV","M","POP","TOTAL","OC2","N","Y65-84","2011","22","","" +"LV","M","POP","TOTAL","OC2","N","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","O","Y15-29","2011","994","","" +"LV","M","POP","TOTAL","OC2","O","Y30-49","2011","2018","","" +"LV","M","POP","TOTAL","OC2","O","Y50-64","2011","873","","" +"LV","M","POP","TOTAL","OC2","O","Y65-84","2011","141","","" +"LV","M","POP","TOTAL","OC2","O","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","P","Y15-29","2011","1125","","" +"LV","M","POP","TOTAL","OC2","P","Y30-49","2011","2643","","" +"LV","M","POP","TOTAL","OC2","P","Y50-64","2011","2232","","" +"LV","M","POP","TOTAL","OC2","P","Y65-84","2011","924","","" +"LV","M","POP","TOTAL","OC2","P","Y_GE85","2011","4","","" +"LV","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","Q","Y15-29","2011","301","","" +"LV","M","POP","TOTAL","OC2","Q","Y30-49","2011","1108","","" +"LV","M","POP","TOTAL","OC2","Q","Y50-64","2011","868","","" +"LV","M","POP","TOTAL","OC2","Q","Y65-84","2011","298","","" +"LV","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","R","Y15-29","2011","514","","" +"LV","M","POP","TOTAL","OC2","R","Y30-49","2011","953","","" +"LV","M","POP","TOTAL","OC2","R","Y50-64","2011","441","","" +"LV","M","POP","TOTAL","OC2","R","Y65-84","2011","81","","" +"LV","M","POP","TOTAL","OC2","R","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","S","Y15-29","2011","162","","" +"LV","M","POP","TOTAL","OC2","S","Y30-49","2011","495","","" +"LV","M","POP","TOTAL","OC2","S","Y50-64","2011","230","","" +"LV","M","POP","TOTAL","OC2","S","Y65-84","2011","41","","" +"LV","M","POP","TOTAL","OC2","S","Y_GE85","2011","3","","" +"LV","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","T","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC2","T","Y30-49","2011","4","","" +"LV","M","POP","TOTAL","OC2","T","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","U","Y15-29","2011","10","","" +"LV","M","POP","TOTAL","OC2","U","Y30-49","2011","22","","" +"LV","M","POP","TOTAL","OC2","U","Y50-64","2011","10","","" +"LV","M","POP","TOTAL","OC2","U","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","A","Y15-29","2011","199","","" +"LV","M","POP","TOTAL","OC3","A","Y30-49","2011","663","","" +"LV","M","POP","TOTAL","OC3","A","Y50-64","2011","306","","" +"LV","M","POP","TOTAL","OC3","A","Y65-84","2011","24","","" +"LV","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","B","Y15-29","2011","16","","" +"LV","M","POP","TOTAL","OC3","B","Y30-49","2011","38","","" +"LV","M","POP","TOTAL","OC3","B","Y50-64","2011","24","","" +"LV","M","POP","TOTAL","OC3","B","Y65-84","2011","4","","" +"LV","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","C","Y15-29","2011","1200","","" +"LV","M","POP","TOTAL","OC3","C","Y30-49","2011","2433","","" +"LV","M","POP","TOTAL","OC3","C","Y50-64","2011","1082","","" +"LV","M","POP","TOTAL","OC3","C","Y65-84","2011","130","","" +"LV","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","D","Y15-29","2011","158","","" +"LV","M","POP","TOTAL","OC3","D","Y30-49","2011","462","","" +"LV","M","POP","TOTAL","OC3","D","Y50-64","2011","376","","" +"LV","M","POP","TOTAL","OC3","D","Y65-84","2011","38","","" +"LV","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","E","Y15-29","2011","95","","" +"LV","M","POP","TOTAL","OC3","E","Y30-49","2011","225","","" +"LV","M","POP","TOTAL","OC3","E","Y50-64","2011","269","","" +"LV","M","POP","TOTAL","OC3","E","Y65-84","2011","41","","" +"LV","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","F","Y15-29","2011","847","","" +"LV","M","POP","TOTAL","OC3","F","Y30-49","2011","1439","","" +"LV","M","POP","TOTAL","OC3","F","Y50-64","2011","650","","" +"LV","M","POP","TOTAL","OC3","F","Y65-84","2011","64","","" +"LV","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","G","Y15-29","2011","2855","","" +"LV","M","POP","TOTAL","OC3","G","Y30-49","2011","4973","","" +"LV","M","POP","TOTAL","OC3","G","Y50-64","2011","1159","","" +"LV","M","POP","TOTAL","OC3","G","Y65-84","2011","99","","" +"LV","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","H","Y15-29","2011","1643","","" +"LV","M","POP","TOTAL","OC3","H","Y30-49","2011","3392","","" +"LV","M","POP","TOTAL","OC3","H","Y50-64","2011","1871","","" +"LV","M","POP","TOTAL","OC3","H","Y65-84","2011","162","","" +"LV","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","I","Y15-29","2011","270","","" +"LV","M","POP","TOTAL","OC3","I","Y30-49","2011","274","","" +"LV","M","POP","TOTAL","OC3","I","Y50-64","2011","80","","" +"LV","M","POP","TOTAL","OC3","I","Y65-84","2011","5","","" +"LV","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","J","Y15-29","2011","1143","","" +"LV","M","POP","TOTAL","OC3","J","Y30-49","2011","970","","" +"LV","M","POP","TOTAL","OC3","J","Y50-64","2011","294","","" +"LV","M","POP","TOTAL","OC3","J","Y65-84","2011","28","","" +"LV","M","POP","TOTAL","OC3","J","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","K","Y15-29","2011","896","","" +"LV","M","POP","TOTAL","OC3","K","Y30-49","2011","884","","" +"LV","M","POP","TOTAL","OC3","K","Y50-64","2011","198","","" +"LV","M","POP","TOTAL","OC3","K","Y65-84","2011","16","","" +"LV","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","L","Y15-29","2011","296","","" +"LV","M","POP","TOTAL","OC3","L","Y30-49","2011","475","","" +"LV","M","POP","TOTAL","OC3","L","Y50-64","2011","220","","" +"LV","M","POP","TOTAL","OC3","L","Y65-84","2011","66","","" +"LV","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","M","Y15-29","2011","1023","","" +"LV","M","POP","TOTAL","OC3","M","Y30-49","2011","1192","","" +"LV","M","POP","TOTAL","OC3","M","Y50-64","2011","398","","" +"LV","M","POP","TOTAL","OC3","M","Y65-84","2011","67","","" +"LV","M","POP","TOTAL","OC3","M","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","N","Y15-29","2011","355","","" +"LV","M","POP","TOTAL","OC3","N","Y30-49","2011","370","","" +"LV","M","POP","TOTAL","OC3","N","Y50-64","2011","146","","" +"LV","M","POP","TOTAL","OC3","N","Y65-84","2011","18","","" +"LV","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","O","Y15-29","2011","2377","","" +"LV","M","POP","TOTAL","OC3","O","Y30-49","2011","5286","","" +"LV","M","POP","TOTAL","OC3","O","Y50-64","2011","792","","" +"LV","M","POP","TOTAL","OC3","O","Y65-84","2011","75","","" +"LV","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","P","Y15-29","2011","304","","" +"LV","M","POP","TOTAL","OC3","P","Y30-49","2011","295","","" +"LV","M","POP","TOTAL","OC3","P","Y50-64","2011","189","","" +"LV","M","POP","TOTAL","OC3","P","Y65-84","2011","76","","" +"LV","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","Q","Y15-29","2011","200","","" +"LV","M","POP","TOTAL","OC3","Q","Y30-49","2011","344","","" +"LV","M","POP","TOTAL","OC3","Q","Y50-64","2011","238","","" +"LV","M","POP","TOTAL","OC3","Q","Y65-84","2011","63","","" +"LV","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","R","Y15-29","2011","904","","" +"LV","M","POP","TOTAL","OC3","R","Y30-49","2011","807","","" +"LV","M","POP","TOTAL","OC3","R","Y50-64","2011","305","","" +"LV","M","POP","TOTAL","OC3","R","Y65-84","2011","61","","" +"LV","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","S","Y15-29","2011","279","","" +"LV","M","POP","TOTAL","OC3","S","Y30-49","2011","389","","" +"LV","M","POP","TOTAL","OC3","S","Y50-64","2011","154","","" +"LV","M","POP","TOTAL","OC3","S","Y65-84","2011","15","","" +"LV","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","T","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC3","T","Y30-49","2011","5","","" +"LV","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","U","Y15-29","2011","5","","" +"LV","M","POP","TOTAL","OC3","U","Y30-49","2011","8","","" +"LV","M","POP","TOTAL","OC3","U","Y50-64","2011","4","","" +"LV","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","A","Y15-29","2011","47","","" +"LV","M","POP","TOTAL","OC4","A","Y30-49","2011","106","","" +"LV","M","POP","TOTAL","OC4","A","Y50-64","2011","60","","" +"LV","M","POP","TOTAL","OC4","A","Y65-84","2011","9","","" +"LV","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","B","Y15-29","2011","8","","" +"LV","M","POP","TOTAL","OC4","B","Y30-49","2011","7","","" +"LV","M","POP","TOTAL","OC4","B","Y50-64","2011","7","","" +"LV","M","POP","TOTAL","OC4","B","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","C","Y15-29","2011","454","","" +"LV","M","POP","TOTAL","OC4","C","Y30-49","2011","606","","" +"LV","M","POP","TOTAL","OC4","C","Y50-64","2011","235","","" +"LV","M","POP","TOTAL","OC4","C","Y65-84","2011","26","","" +"LV","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","D","Y15-29","2011","15","","" +"LV","M","POP","TOTAL","OC4","D","Y30-49","2011","30","","" +"LV","M","POP","TOTAL","OC4","D","Y50-64","2011","29","","" +"LV","M","POP","TOTAL","OC4","D","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","E","Y15-29","2011","13","","" +"LV","M","POP","TOTAL","OC4","E","Y30-49","2011","36","","" +"LV","M","POP","TOTAL","OC4","E","Y50-64","2011","30","","" +"LV","M","POP","TOTAL","OC4","E","Y65-84","2011","4","","" +"LV","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","F","Y15-29","2011","127","","" +"LV","M","POP","TOTAL","OC4","F","Y30-49","2011","173","","" +"LV","M","POP","TOTAL","OC4","F","Y50-64","2011","66","","" +"LV","M","POP","TOTAL","OC4","F","Y65-84","2011","10","","" +"LV","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","G","Y15-29","2011","1509","","" +"LV","M","POP","TOTAL","OC4","G","Y30-49","2011","1627","","" +"LV","M","POP","TOTAL","OC4","G","Y50-64","2011","504","","" +"LV","M","POP","TOTAL","OC4","G","Y65-84","2011","23","","" +"LV","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","H","Y15-29","2011","934","","" +"LV","M","POP","TOTAL","OC4","H","Y30-49","2011","1104","","" +"LV","M","POP","TOTAL","OC4","H","Y50-64","2011","554","","" +"LV","M","POP","TOTAL","OC4","H","Y65-84","2011","48","","" +"LV","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","I","Y15-29","2011","226","","" +"LV","M","POP","TOTAL","OC4","I","Y30-49","2011","72","","" +"LV","M","POP","TOTAL","OC4","I","Y50-64","2011","29","","" +"LV","M","POP","TOTAL","OC4","I","Y65-84","2011","2","","" +"LV","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","J","Y15-29","2011","280","","" +"LV","M","POP","TOTAL","OC4","J","Y30-49","2011","118","","" +"LV","M","POP","TOTAL","OC4","J","Y50-64","2011","33","","" +"LV","M","POP","TOTAL","OC4","J","Y65-84","2011","8","","" +"LV","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","K","Y15-29","2011","308","","" +"LV","M","POP","TOTAL","OC4","K","Y30-49","2011","236","","" +"LV","M","POP","TOTAL","OC4","K","Y50-64","2011","46","","" +"LV","M","POP","TOTAL","OC4","K","Y65-84","2011","2","","" +"LV","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","L","Y15-29","2011","28","","" +"LV","M","POP","TOTAL","OC4","L","Y30-49","2011","52","","" +"LV","M","POP","TOTAL","OC4","L","Y50-64","2011","48","","" +"LV","M","POP","TOTAL","OC4","L","Y65-84","2011","18","","" +"LV","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","M","Y15-29","2011","125","","" +"LV","M","POP","TOTAL","OC4","M","Y30-49","2011","99","","" +"LV","M","POP","TOTAL","OC4","M","Y50-64","2011","31","","" +"LV","M","POP","TOTAL","OC4","M","Y65-84","2011","9","","" +"LV","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","N","Y15-29","2011","306","","" +"LV","M","POP","TOTAL","OC4","N","Y30-49","2011","258","","" +"LV","M","POP","TOTAL","OC4","N","Y50-64","2011","58","","" +"LV","M","POP","TOTAL","OC4","N","Y65-84","2011","5","","" +"LV","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","O","Y15-29","2011","70","","" +"LV","M","POP","TOTAL","OC4","O","Y30-49","2011","140","","" +"LV","M","POP","TOTAL","OC4","O","Y50-64","2011","84","","" +"LV","M","POP","TOTAL","OC4","O","Y65-84","2011","13","","" +"LV","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","P","Y15-29","2011","33","","" +"LV","M","POP","TOTAL","OC4","P","Y30-49","2011","22","","" +"LV","M","POP","TOTAL","OC4","P","Y50-64","2011","31","","" +"LV","M","POP","TOTAL","OC4","P","Y65-84","2011","6","","" +"LV","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","Q","Y15-29","2011","35","","" +"LV","M","POP","TOTAL","OC4","Q","Y30-49","2011","28","","" +"LV","M","POP","TOTAL","OC4","Q","Y50-64","2011","28","","" +"LV","M","POP","TOTAL","OC4","Q","Y65-84","2011","5","","" +"LV","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","R","Y15-29","2011","281","","" +"LV","M","POP","TOTAL","OC4","R","Y30-49","2011","248","","" +"LV","M","POP","TOTAL","OC4","R","Y50-64","2011","45","","" +"LV","M","POP","TOTAL","OC4","R","Y65-84","2011","5","","" +"LV","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","S","Y15-29","2011","41","","" +"LV","M","POP","TOTAL","OC4","S","Y30-49","2011","45","","" +"LV","M","POP","TOTAL","OC4","S","Y50-64","2011","18","","" +"LV","M","POP","TOTAL","OC4","S","Y65-84","2011","3","","" +"LV","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","T","Y15-29","2011","3","","" +"LV","M","POP","TOTAL","OC4","T","Y30-49","2011","3","","" +"LV","M","POP","TOTAL","OC4","T","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","U","Y15-29","2011","3","","" +"LV","M","POP","TOTAL","OC4","U","Y30-49","2011","2","","" +"LV","M","POP","TOTAL","OC4","U","Y50-64","2011","2","","" +"LV","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","A","Y15-29","2011","112","","" +"LV","M","POP","TOTAL","OC5","A","Y30-49","2011","358","","" +"LV","M","POP","TOTAL","OC5","A","Y50-64","2011","271","","" +"LV","M","POP","TOTAL","OC5","A","Y65-84","2011","44","","" +"LV","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","B","Y15-29","2011","8","","" +"LV","M","POP","TOTAL","OC5","B","Y30-49","2011","37","","" +"LV","M","POP","TOTAL","OC5","B","Y50-64","2011","31","","" +"LV","M","POP","TOTAL","OC5","B","Y65-84","2011","3","","" +"LV","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","C","Y15-29","2011","259","","" +"LV","M","POP","TOTAL","OC5","C","Y30-49","2011","564","","" +"LV","M","POP","TOTAL","OC5","C","Y50-64","2011","538","","" +"LV","M","POP","TOTAL","OC5","C","Y65-84","2011","116","","" +"LV","M","POP","TOTAL","OC5","C","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","D","Y15-29","2011","12","","" +"LV","M","POP","TOTAL","OC5","D","Y30-49","2011","53","","" +"LV","M","POP","TOTAL","OC5","D","Y50-64","2011","38","","" +"LV","M","POP","TOTAL","OC5","D","Y65-84","2011","6","","" +"LV","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","E","Y15-29","2011","22","","" +"LV","M","POP","TOTAL","OC5","E","Y30-49","2011","72","","" +"LV","M","POP","TOTAL","OC5","E","Y50-64","2011","56","","" +"LV","M","POP","TOTAL","OC5","E","Y65-84","2011","7","","" +"LV","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","F","Y15-29","2011","133","","" +"LV","M","POP","TOTAL","OC5","F","Y30-49","2011","269","","" +"LV","M","POP","TOTAL","OC5","F","Y50-64","2011","273","","" +"LV","M","POP","TOTAL","OC5","F","Y65-84","2011","68","","" +"LV","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","G","Y15-29","2011","5055","","" +"LV","M","POP","TOTAL","OC5","G","Y30-49","2011","4792","","" +"LV","M","POP","TOTAL","OC5","G","Y50-64","2011","1631","","" +"LV","M","POP","TOTAL","OC5","G","Y65-84","2011","135","","" +"LV","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","H","Y15-29","2011","553","","" +"LV","M","POP","TOTAL","OC5","H","Y30-49","2011","930","","" +"LV","M","POP","TOTAL","OC5","H","Y50-64","2011","617","","" +"LV","M","POP","TOTAL","OC5","H","Y65-84","2011","240","","" +"LV","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","I","Y15-29","2011","3027","","" +"LV","M","POP","TOTAL","OC5","I","Y30-49","2011","1409","","" +"LV","M","POP","TOTAL","OC5","I","Y50-64","2011","255","","" +"LV","M","POP","TOTAL","OC5","I","Y65-84","2011","14","","" +"LV","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","J","Y15-29","2011","73","","" +"LV","M","POP","TOTAL","OC5","J","Y30-49","2011","73","","" +"LV","M","POP","TOTAL","OC5","J","Y50-64","2011","37","","" +"LV","M","POP","TOTAL","OC5","J","Y65-84","2011","12","","" +"LV","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","K","Y15-29","2011","105","","" +"LV","M","POP","TOTAL","OC5","K","Y30-49","2011","263","","" +"LV","M","POP","TOTAL","OC5","K","Y50-64","2011","71","","" +"LV","M","POP","TOTAL","OC5","K","Y65-84","2011","4","","" +"LV","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","L","Y15-29","2011","186","","" +"LV","M","POP","TOTAL","OC5","L","Y30-49","2011","451","","" +"LV","M","POP","TOTAL","OC5","L","Y50-64","2011","493","","" +"LV","M","POP","TOTAL","OC5","L","Y65-84","2011","120","","" +"LV","M","POP","TOTAL","OC5","L","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","M","Y15-29","2011","59","","" +"LV","M","POP","TOTAL","OC5","M","Y30-49","2011","93","","" +"LV","M","POP","TOTAL","OC5","M","Y50-64","2011","75","","" +"LV","M","POP","TOTAL","OC5","M","Y65-84","2011","23","","" +"LV","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","N","Y15-29","2011","2478","","" +"LV","M","POP","TOTAL","OC5","N","Y30-49","2011","4209","","" +"LV","M","POP","TOTAL","OC5","N","Y50-64","2011","2135","","" +"LV","M","POP","TOTAL","OC5","N","Y65-84","2011","228","","" +"LV","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","O","Y15-29","2011","1651","","" +"LV","M","POP","TOTAL","OC5","O","Y30-49","2011","3872","","" +"LV","M","POP","TOTAL","OC5","O","Y50-64","2011","570","","" +"LV","M","POP","TOTAL","OC5","O","Y65-84","2011","170","","" +"LV","M","POP","TOTAL","OC5","O","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","P","Y15-29","2011","319","","" +"LV","M","POP","TOTAL","OC5","P","Y30-49","2011","773","","" +"LV","M","POP","TOTAL","OC5","P","Y50-64","2011","794","","" +"LV","M","POP","TOTAL","OC5","P","Y65-84","2011","222","","" +"LV","M","POP","TOTAL","OC5","P","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","Q","Y15-29","2011","285","","" +"LV","M","POP","TOTAL","OC5","Q","Y30-49","2011","506","","" +"LV","M","POP","TOTAL","OC5","Q","Y50-64","2011","396","","" +"LV","M","POP","TOTAL","OC5","Q","Y65-84","2011","70","","" +"LV","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","R","Y15-29","2011","213","","" +"LV","M","POP","TOTAL","OC5","R","Y30-49","2011","250","","" +"LV","M","POP","TOTAL","OC5","R","Y50-64","2011","128","","" +"LV","M","POP","TOTAL","OC5","R","Y65-84","2011","43","","" +"LV","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","S","Y15-29","2011","189","","" +"LV","M","POP","TOTAL","OC5","S","Y30-49","2011","341","","" +"LV","M","POP","TOTAL","OC5","S","Y50-64","2011","142","","" +"LV","M","POP","TOTAL","OC5","S","Y65-84","2011","27","","" +"LV","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","T","Y15-29","2011","7","","" +"LV","M","POP","TOTAL","OC5","T","Y30-49","2011","10","","" +"LV","M","POP","TOTAL","OC5","T","Y50-64","2011","3","","" +"LV","M","POP","TOTAL","OC5","T","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","U","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC5","U","Y30-49","2011","14","","" +"LV","M","POP","TOTAL","OC5","U","Y50-64","2011","5","","" +"LV","M","POP","TOTAL","OC5","U","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","A","Y15-29","2011","984","","" +"LV","M","POP","TOTAL","OC6","A","Y30-49","2011","3001","","" +"LV","M","POP","TOTAL","OC6","A","Y50-64","2011","1836","","" +"LV","M","POP","TOTAL","OC6","A","Y65-84","2011","120","","" +"LV","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC6","B","Y30-49","2011","2","","" +"LV","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","C","Y15-29","2011","30","","" +"LV","M","POP","TOTAL","OC6","C","Y30-49","2011","79","","" +"LV","M","POP","TOTAL","OC6","C","Y50-64","2011","39","","" +"LV","M","POP","TOTAL","OC6","C","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","D","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC6","D","Y30-49","2011","2","","" +"LV","M","POP","TOTAL","OC6","D","Y50-64","2011","2","","" +"LV","M","POP","TOTAL","OC6","D","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","E","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC6","E","Y30-49","2011","2","","" +"LV","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","F","Y15-29","2011","5","","" +"LV","M","POP","TOTAL","OC6","F","Y30-49","2011","7","","" +"LV","M","POP","TOTAL","OC6","F","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","G","Y15-29","2011","7","","" +"LV","M","POP","TOTAL","OC6","G","Y30-49","2011","20","","" +"LV","M","POP","TOTAL","OC6","G","Y50-64","2011","9","","" +"LV","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","H","Y15-29","2011","11","","" +"LV","M","POP","TOTAL","OC6","H","Y30-49","2011","22","","" +"LV","M","POP","TOTAL","OC6","H","Y50-64","2011","4","","" +"LV","M","POP","TOTAL","OC6","H","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","I","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC6","I","Y30-49","2011","5","","" +"LV","M","POP","TOTAL","OC6","I","Y50-64","2011","6","","" +"LV","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","L","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC6","L","Y30-49","2011","7","","" +"LV","M","POP","TOTAL","OC6","L","Y50-64","2011","7","","" +"LV","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC6","M","Y30-49","2011","2","","" +"LV","M","POP","TOTAL","OC6","M","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC6","M","Y65-84","2011","3","","" +"LV","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","N","Y15-29","2011","34","","" +"LV","M","POP","TOTAL","OC6","N","Y30-49","2011","56","","" +"LV","M","POP","TOTAL","OC6","N","Y50-64","2011","16","","" +"LV","M","POP","TOTAL","OC6","N","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC6","O","Y30-49","2011","2","","" +"LV","M","POP","TOTAL","OC6","O","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC6","O","Y65-84","2011","2","","" +"LV","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","P","Y15-29","2011","4","","" +"LV","M","POP","TOTAL","OC6","P","Y30-49","2011","4","","" +"LV","M","POP","TOTAL","OC6","P","Y50-64","2011","8","","" +"LV","M","POP","TOTAL","OC6","P","Y65-84","2011","5","","" +"LV","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","Q","Y15-29","2011","4","","" +"LV","M","POP","TOTAL","OC6","Q","Y30-49","2011","8","","" +"LV","M","POP","TOTAL","OC6","Q","Y50-64","2011","4","","" +"LV","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","R","Y15-29","2011","8","","" +"LV","M","POP","TOTAL","OC6","R","Y30-49","2011","14","","" +"LV","M","POP","TOTAL","OC6","R","Y50-64","2011","5","","" +"LV","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","S","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC6","S","Y30-49","2011","3","","" +"LV","M","POP","TOTAL","OC6","S","Y50-64","2011","3","","" +"LV","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","U","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC6","U","Y30-49","2011","2","","" +"LV","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","A","Y15-29","2011","327","","" +"LV","M","POP","TOTAL","OC7","A","Y30-49","2011","934","","" +"LV","M","POP","TOTAL","OC7","A","Y50-64","2011","749","","" +"LV","M","POP","TOTAL","OC7","A","Y65-84","2011","49","","" +"LV","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","B","Y15-29","2011","59","","" +"LV","M","POP","TOTAL","OC7","B","Y30-49","2011","119","","" +"LV","M","POP","TOTAL","OC7","B","Y50-64","2011","93","","" +"LV","M","POP","TOTAL","OC7","B","Y65-84","2011","2","","" +"LV","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","C","Y15-29","2011","10005","","" +"LV","M","POP","TOTAL","OC7","C","Y30-49","2011","19361","","" +"LV","M","POP","TOTAL","OC7","C","Y50-64","2011","10365","","" +"LV","M","POP","TOTAL","OC7","C","Y65-84","2011","755","","" +"LV","M","POP","TOTAL","OC7","C","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","D","Y15-29","2011","469","","" +"LV","M","POP","TOTAL","OC7","D","Y30-49","2011","1614","","" +"LV","M","POP","TOTAL","OC7","D","Y50-64","2011","1497","","" +"LV","M","POP","TOTAL","OC7","D","Y65-84","2011","146","","" +"LV","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","E","Y15-29","2011","158","","" +"LV","M","POP","TOTAL","OC7","E","Y30-49","2011","571","","" +"LV","M","POP","TOTAL","OC7","E","Y50-64","2011","490","","" +"LV","M","POP","TOTAL","OC7","E","Y65-84","2011","100","","" +"LV","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","F","Y15-29","2011","9929","","" +"LV","M","POP","TOTAL","OC7","F","Y30-49","2011","19875","","" +"LV","M","POP","TOTAL","OC7","F","Y50-64","2011","8073","","" +"LV","M","POP","TOTAL","OC7","F","Y65-84","2011","305","","" +"LV","M","POP","TOTAL","OC7","F","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","G","Y15-29","2011","3588","","" +"LV","M","POP","TOTAL","OC7","G","Y30-49","2011","5619","","" +"LV","M","POP","TOTAL","OC7","G","Y50-64","2011","2046","","" +"LV","M","POP","TOTAL","OC7","G","Y65-84","2011","133","","" +"LV","M","POP","TOTAL","OC7","G","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","H","Y15-29","2011","1020","","" +"LV","M","POP","TOTAL","OC7","H","Y30-49","2011","2742","","" +"LV","M","POP","TOTAL","OC7","H","Y50-64","2011","2359","","" +"LV","M","POP","TOTAL","OC7","H","Y65-84","2011","296","","" +"LV","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","I","Y15-29","2011","145","","" +"LV","M","POP","TOTAL","OC7","I","Y30-49","2011","144","","" +"LV","M","POP","TOTAL","OC7","I","Y50-64","2011","80","","" +"LV","M","POP","TOTAL","OC7","I","Y65-84","2011","11","","" +"LV","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","J","Y15-29","2011","197","","" +"LV","M","POP","TOTAL","OC7","J","Y30-49","2011","288","","" +"LV","M","POP","TOTAL","OC7","J","Y50-64","2011","145","","" +"LV","M","POP","TOTAL","OC7","J","Y65-84","2011","11","","" +"LV","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","K","Y15-29","2011","15","","" +"LV","M","POP","TOTAL","OC7","K","Y30-49","2011","37","","" +"LV","M","POP","TOTAL","OC7","K","Y50-64","2011","22","","" +"LV","M","POP","TOTAL","OC7","K","Y65-84","2011","4","","" +"LV","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","L","Y15-29","2011","357","","" +"LV","M","POP","TOTAL","OC7","L","Y30-49","2011","1069","","" +"LV","M","POP","TOTAL","OC7","L","Y50-64","2011","1104","","" +"LV","M","POP","TOTAL","OC7","L","Y65-84","2011","196","","" +"LV","M","POP","TOTAL","OC7","L","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","M","Y15-29","2011","262","","" +"LV","M","POP","TOTAL","OC7","M","Y30-49","2011","345","","" +"LV","M","POP","TOTAL","OC7","M","Y50-64","2011","209","","" +"LV","M","POP","TOTAL","OC7","M","Y65-84","2011","49","","" +"LV","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","N","Y15-29","2011","435","","" +"LV","M","POP","TOTAL","OC7","N","Y30-49","2011","765","","" +"LV","M","POP","TOTAL","OC7","N","Y50-64","2011","391","","" +"LV","M","POP","TOTAL","OC7","N","Y65-84","2011","38","","" +"LV","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","O","Y15-29","2011","110","","" +"LV","M","POP","TOTAL","OC7","O","Y30-49","2011","385","","" +"LV","M","POP","TOTAL","OC7","O","Y50-64","2011","321","","" +"LV","M","POP","TOTAL","OC7","O","Y65-84","2011","66","","" +"LV","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","P","Y15-29","2011","210","","" +"LV","M","POP","TOTAL","OC7","P","Y30-49","2011","483","","" +"LV","M","POP","TOTAL","OC7","P","Y50-64","2011","565","","" +"LV","M","POP","TOTAL","OC7","P","Y65-84","2011","155","","" +"LV","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","Q","Y15-29","2011","94","","" +"LV","M","POP","TOTAL","OC7","Q","Y30-49","2011","374","","" +"LV","M","POP","TOTAL","OC7","Q","Y50-64","2011","374","","" +"LV","M","POP","TOTAL","OC7","Q","Y65-84","2011","90","","" +"LV","M","POP","TOTAL","OC7","Q","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","R","Y15-29","2011","127","","" +"LV","M","POP","TOTAL","OC7","R","Y30-49","2011","243","","" +"LV","M","POP","TOTAL","OC7","R","Y50-64","2011","189","","" +"LV","M","POP","TOTAL","OC7","R","Y65-84","2011","36","","" +"LV","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","S","Y15-29","2011","165","","" +"LV","M","POP","TOTAL","OC7","S","Y30-49","2011","654","","" +"LV","M","POP","TOTAL","OC7","S","Y50-64","2011","417","","" +"LV","M","POP","TOTAL","OC7","S","Y65-84","2011","50","","" +"LV","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","T","Y15-29","2011","6","","" +"LV","M","POP","TOTAL","OC7","T","Y30-49","2011","11","","" +"LV","M","POP","TOTAL","OC7","T","Y50-64","2011","5","","" +"LV","M","POP","TOTAL","OC7","T","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","U","Y15-29","2011","3","","" +"LV","M","POP","TOTAL","OC7","U","Y30-49","2011","3","","" +"LV","M","POP","TOTAL","OC7","U","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC7","U","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","A","Y15-29","2011","1381","","" +"LV","M","POP","TOTAL","OC8","A","Y30-49","2011","4835","","" +"LV","M","POP","TOTAL","OC8","A","Y50-64","2011","2713","","" +"LV","M","POP","TOTAL","OC8","A","Y65-84","2011","87","","" +"LV","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","B","Y15-29","2011","224","","" +"LV","M","POP","TOTAL","OC8","B","Y30-49","2011","699","","" +"LV","M","POP","TOTAL","OC8","B","Y50-64","2011","367","","" +"LV","M","POP","TOTAL","OC8","B","Y65-84","2011","19","","" +"LV","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","C","Y15-29","2011","4220","","" +"LV","M","POP","TOTAL","OC8","C","Y30-49","2011","9245","","" +"LV","M","POP","TOTAL","OC8","C","Y50-64","2011","4787","","" +"LV","M","POP","TOTAL","OC8","C","Y65-84","2011","254","","" +"LV","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","D","Y15-29","2011","127","","" +"LV","M","POP","TOTAL","OC8","D","Y30-49","2011","660","","" +"LV","M","POP","TOTAL","OC8","D","Y50-64","2011","801","","" +"LV","M","POP","TOTAL","OC8","D","Y65-84","2011","67","","" +"LV","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","E","Y15-29","2011","119","","" +"LV","M","POP","TOTAL","OC8","E","Y30-49","2011","733","","" +"LV","M","POP","TOTAL","OC8","E","Y50-64","2011","642","","" +"LV","M","POP","TOTAL","OC8","E","Y65-84","2011","59","","" +"LV","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","F","Y15-29","2011","916","","" +"LV","M","POP","TOTAL","OC8","F","Y30-49","2011","3444","","" +"LV","M","POP","TOTAL","OC8","F","Y50-64","2011","2651","","" +"LV","M","POP","TOTAL","OC8","F","Y65-84","2011","145","","" +"LV","M","POP","TOTAL","OC8","F","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","G","Y15-29","2011","920","","" +"LV","M","POP","TOTAL","OC8","G","Y30-49","2011","3333","","" +"LV","M","POP","TOTAL","OC8","G","Y50-64","2011","1990","","" +"LV","M","POP","TOTAL","OC8","G","Y65-84","2011","128","","" +"LV","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","H","Y15-29","2011","3498","","" +"LV","M","POP","TOTAL","OC8","H","Y30-49","2011","17093","","" +"LV","M","POP","TOTAL","OC8","H","Y50-64","2011","10734","","" +"LV","M","POP","TOTAL","OC8","H","Y65-84","2011","540","","" +"LV","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","I","Y15-29","2011","86","","" +"LV","M","POP","TOTAL","OC8","I","Y30-49","2011","140","","" +"LV","M","POP","TOTAL","OC8","I","Y50-64","2011","102","","" +"LV","M","POP","TOTAL","OC8","I","Y65-84","2011","6","","" +"LV","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","J","Y15-29","2011","82","","" +"LV","M","POP","TOTAL","OC8","J","Y30-49","2011","168","","" +"LV","M","POP","TOTAL","OC8","J","Y50-64","2011","108","","" +"LV","M","POP","TOTAL","OC8","J","Y65-84","2011","8","","" +"LV","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","K","Y15-29","2011","12","","" +"LV","M","POP","TOTAL","OC8","K","Y30-49","2011","50","","" +"LV","M","POP","TOTAL","OC8","K","Y50-64","2011","44","","" +"LV","M","POP","TOTAL","OC8","K","Y65-84","2011","2","","" +"LV","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","L","Y15-29","2011","94","","" +"LV","M","POP","TOTAL","OC8","L","Y30-49","2011","434","","" +"LV","M","POP","TOTAL","OC8","L","Y50-64","2011","427","","" +"LV","M","POP","TOTAL","OC8","L","Y65-84","2011","58","","" +"LV","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","M","Y15-29","2011","93","","" +"LV","M","POP","TOTAL","OC8","M","Y30-49","2011","234","","" +"LV","M","POP","TOTAL","OC8","M","Y50-64","2011","152","","" +"LV","M","POP","TOTAL","OC8","M","Y65-84","2011","12","","" +"LV","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","N","Y15-29","2011","286","","" +"LV","M","POP","TOTAL","OC8","N","Y30-49","2011","1007","","" +"LV","M","POP","TOTAL","OC8","N","Y50-64","2011","666","","" +"LV","M","POP","TOTAL","OC8","N","Y65-84","2011","32","","" +"LV","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","O","Y15-29","2011","299","","" +"LV","M","POP","TOTAL","OC8","O","Y30-49","2011","1185","","" +"LV","M","POP","TOTAL","OC8","O","Y50-64","2011","1031","","" +"LV","M","POP","TOTAL","OC8","O","Y65-84","2011","131","","" +"LV","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","P","Y15-29","2011","122","","" +"LV","M","POP","TOTAL","OC8","P","Y30-49","2011","598","","" +"LV","M","POP","TOTAL","OC8","P","Y50-64","2011","632","","" +"LV","M","POP","TOTAL","OC8","P","Y65-84","2011","75","","" +"LV","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","Q","Y15-29","2011","135","","" +"LV","M","POP","TOTAL","OC8","Q","Y30-49","2011","723","","" +"LV","M","POP","TOTAL","OC8","Q","Y50-64","2011","773","","" +"LV","M","POP","TOTAL","OC8","Q","Y65-84","2011","124","","" +"LV","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","R","Y15-29","2011","55","","" +"LV","M","POP","TOTAL","OC8","R","Y30-49","2011","131","","" +"LV","M","POP","TOTAL","OC8","R","Y50-64","2011","114","","" +"LV","M","POP","TOTAL","OC8","R","Y65-84","2011","9","","" +"LV","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","S","Y15-29","2011","84","","" +"LV","M","POP","TOTAL","OC8","S","Y30-49","2011","217","","" +"LV","M","POP","TOTAL","OC8","S","Y50-64","2011","142","","" +"LV","M","POP","TOTAL","OC8","S","Y65-84","2011","10","","" +"LV","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","T","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC8","T","Y30-49","2011","1","","" +"LV","M","POP","TOTAL","OC8","T","Y50-64","2011","3","","" +"LV","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","U","Y15-29","2011","1","","" +"LV","M","POP","TOTAL","OC8","U","Y30-49","2011","11","","" +"LV","M","POP","TOTAL","OC8","U","Y50-64","2011","18","","" +"LV","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","A","Y15-29","2011","2992","","" +"LV","M","POP","TOTAL","OC9","A","Y30-49","2011","5173","","" +"LV","M","POP","TOTAL","OC9","A","Y50-64","2011","2160","","" +"LV","M","POP","TOTAL","OC9","A","Y65-84","2011","53","","" +"LV","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","B","Y15-29","2011","265","","" +"LV","M","POP","TOTAL","OC9","B","Y30-49","2011","294","","" +"LV","M","POP","TOTAL","OC9","B","Y50-64","2011","123","","" +"LV","M","POP","TOTAL","OC9","B","Y65-84","2011","3","","" +"LV","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","C","Y15-29","2011","3145","","" +"LV","M","POP","TOTAL","OC9","C","Y30-49","2011","3487","","" +"LV","M","POP","TOTAL","OC9","C","Y50-64","2011","1691","","" +"LV","M","POP","TOTAL","OC9","C","Y65-84","2011","94","","" +"LV","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","D","Y15-29","2011","80","","" +"LV","M","POP","TOTAL","OC9","D","Y30-49","2011","147","","" +"LV","M","POP","TOTAL","OC9","D","Y50-64","2011","153","","" +"LV","M","POP","TOTAL","OC9","D","Y65-84","2011","8","","" +"LV","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","E","Y15-29","2011","373","","" +"LV","M","POP","TOTAL","OC9","E","Y30-49","2011","776","","" +"LV","M","POP","TOTAL","OC9","E","Y50-64","2011","628","","" +"LV","M","POP","TOTAL","OC9","E","Y65-84","2011","35","","" +"LV","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","F","Y15-29","2011","2390","","" +"LV","M","POP","TOTAL","OC9","F","Y30-49","2011","2633","","" +"LV","M","POP","TOTAL","OC9","F","Y50-64","2011","970","","" +"LV","M","POP","TOTAL","OC9","F","Y65-84","2011","52","","" +"LV","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","G","Y15-29","2011","2791","","" +"LV","M","POP","TOTAL","OC9","G","Y30-49","2011","2599","","" +"LV","M","POP","TOTAL","OC9","G","Y50-64","2011","1152","","" +"LV","M","POP","TOTAL","OC9","G","Y65-84","2011","91","","" +"LV","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","H","Y15-29","2011","1223","","" +"LV","M","POP","TOTAL","OC9","H","Y30-49","2011","1319","","" +"LV","M","POP","TOTAL","OC9","H","Y50-64","2011","664","","" +"LV","M","POP","TOTAL","OC9","H","Y65-84","2011","63","","" +"LV","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","I","Y15-29","2011","621","","" +"LV","M","POP","TOTAL","OC9","I","Y30-49","2011","340","","" +"LV","M","POP","TOTAL","OC9","I","Y50-64","2011","145","","" +"LV","M","POP","TOTAL","OC9","I","Y65-84","2011","12","","" +"LV","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","J","Y15-29","2011","44","","" +"LV","M","POP","TOTAL","OC9","J","Y30-49","2011","48","","" +"LV","M","POP","TOTAL","OC9","J","Y50-64","2011","25","","" +"LV","M","POP","TOTAL","OC9","J","Y65-84","2011","5","","" +"LV","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","K","Y15-29","2011","30","","" +"LV","M","POP","TOTAL","OC9","K","Y30-49","2011","27","","" +"LV","M","POP","TOTAL","OC9","K","Y50-64","2011","20","","" +"LV","M","POP","TOTAL","OC9","K","Y65-84","2011","4","","" +"LV","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","L","Y15-29","2011","449","","" +"LV","M","POP","TOTAL","OC9","L","Y30-49","2011","1107","","" +"LV","M","POP","TOTAL","OC9","L","Y50-64","2011","1091","","" +"LV","M","POP","TOTAL","OC9","L","Y65-84","2011","227","","" +"LV","M","POP","TOTAL","OC9","L","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","M","Y15-29","2011","147","","" +"LV","M","POP","TOTAL","OC9","M","Y30-49","2011","146","","" +"LV","M","POP","TOTAL","OC9","M","Y50-64","2011","90","","" +"LV","M","POP","TOTAL","OC9","M","Y65-84","2011","21","","" +"LV","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","N","Y15-29","2011","975","","" +"LV","M","POP","TOTAL","OC9","N","Y30-49","2011","2150","","" +"LV","M","POP","TOTAL","OC9","N","Y50-64","2011","1694","","" +"LV","M","POP","TOTAL","OC9","N","Y65-84","2011","48","","" +"LV","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","O","Y15-29","2011","166","","" +"LV","M","POP","TOTAL","OC9","O","Y30-49","2011","331","","" +"LV","M","POP","TOTAL","OC9","O","Y50-64","2011","266","","" +"LV","M","POP","TOTAL","OC9","O","Y65-84","2011","35","","" +"LV","M","POP","TOTAL","OC9","O","Y_GE85","2011","1","","" +"LV","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","P","Y15-29","2011","342","","" +"LV","M","POP","TOTAL","OC9","P","Y30-49","2011","725","","" +"LV","M","POP","TOTAL","OC9","P","Y50-64","2011","802","","" +"LV","M","POP","TOTAL","OC9","P","Y65-84","2011","191","","" +"LV","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","Q","Y15-29","2011","199","","" +"LV","M","POP","TOTAL","OC9","Q","Y30-49","2011","353","","" +"LV","M","POP","TOTAL","OC9","Q","Y50-64","2011","313","","" +"LV","M","POP","TOTAL","OC9","Q","Y65-84","2011","52","","" +"LV","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","R","Y15-29","2011","212","","" +"LV","M","POP","TOTAL","OC9","R","Y30-49","2011","220","","" +"LV","M","POP","TOTAL","OC9","R","Y50-64","2011","154","","" +"LV","M","POP","TOTAL","OC9","R","Y65-84","2011","44","","" +"LV","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","S","Y15-29","2011","185","","" +"LV","M","POP","TOTAL","OC9","S","Y30-49","2011","298","","" +"LV","M","POP","TOTAL","OC9","S","Y50-64","2011","166","","" +"LV","M","POP","TOTAL","OC9","S","Y65-84","2011","17","","" +"LV","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","T","Y15-29","2011","21","","" +"LV","M","POP","TOTAL","OC9","T","Y30-49","2011","25","","" +"LV","M","POP","TOTAL","OC9","T","Y50-64","2011","19","","" +"LV","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","U","Y15-29","2011","2","","" +"LV","M","POP","TOTAL","OC9","U","Y30-49","2011","7","","" +"LV","M","POP","TOTAL","OC9","U","Y50-64","2011","1","","" +"LV","M","POP","TOTAL","OC9","U","Y65-84","2011","1","","" +"LV","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"LV","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"LV","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"LV","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"LV","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"LV","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"LV","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","NAP","Y15-29","2011","17951","","" +"MT","F","POP","TOTAL","NAP","NAP","Y30-49","2011","22014","","" +"MT","F","POP","TOTAL","NAP","NAP","Y50-64","2011","33958","","" +"MT","F","POP","TOTAL","NAP","NAP","Y65-84","2011","33683","","" +"MT","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","4278","","" +"MT","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","30055","","" +"MT","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","H","Y30-49","2011","3","","" +"MT","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","N","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","O","Y15-29","2011","26","","" +"MT","F","POP","TOTAL","OC0","O","Y30-49","2011","35","","" +"MT","F","POP","TOTAL","OC0","O","Y50-64","2011","7","","" +"MT","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","A","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC1","A","Y30-49","2011","1","","" +"MT","F","POP","TOTAL","OC1","A","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC1","A","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC1","B","Y30-49","2011","3","","" +"MT","F","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","C","Y15-29","2011","40","","" +"MT","F","POP","TOTAL","OC1","C","Y30-49","2011","157","","" +"MT","F","POP","TOTAL","OC1","C","Y50-64","2011","51","","" +"MT","F","POP","TOTAL","OC1","C","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","D","Y15-29","2011","3","","" +"MT","F","POP","TOTAL","OC1","D","Y30-49","2011","2","","" +"MT","F","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC1","D","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","E","Y15-29","2011","4","","" +"MT","F","POP","TOTAL","OC1","E","Y30-49","2011","7","","" +"MT","F","POP","TOTAL","OC1","E","Y50-64","2011","2","","" +"MT","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","F","Y15-29","2011","8","","" +"MT","F","POP","TOTAL","OC1","F","Y30-49","2011","37","","" +"MT","F","POP","TOTAL","OC1","F","Y50-64","2011","9","","" +"MT","F","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","G","Y15-29","2011","259","","" +"MT","F","POP","TOTAL","OC1","G","Y30-49","2011","655","","" +"MT","F","POP","TOTAL","OC1","G","Y50-64","2011","284","","" +"MT","F","POP","TOTAL","OC1","G","Y65-84","2011","15","","" +"MT","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","H","Y15-29","2011","17","","" +"MT","F","POP","TOTAL","OC1","H","Y30-49","2011","83","","" +"MT","F","POP","TOTAL","OC1","H","Y50-64","2011","22","","" +"MT","F","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","I","Y15-29","2011","115","","" +"MT","F","POP","TOTAL","OC1","I","Y30-49","2011","293","","" +"MT","F","POP","TOTAL","OC1","I","Y50-64","2011","85","","" +"MT","F","POP","TOTAL","OC1","I","Y65-84","2011","10","","" +"MT","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","J","Y15-29","2011","65","","" +"MT","F","POP","TOTAL","OC1","J","Y30-49","2011","160","","" +"MT","F","POP","TOTAL","OC1","J","Y50-64","2011","18","","" +"MT","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","K","Y15-29","2011","82","","" +"MT","F","POP","TOTAL","OC1","K","Y30-49","2011","440","","" +"MT","F","POP","TOTAL","OC1","K","Y50-64","2011","76","","" +"MT","F","POP","TOTAL","OC1","K","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","L","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC1","L","Y30-49","2011","23","","" +"MT","F","POP","TOTAL","OC1","L","Y50-64","2011","9","","" +"MT","F","POP","TOTAL","OC1","L","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","M","Y15-29","2011","62","","" +"MT","F","POP","TOTAL","OC1","M","Y30-49","2011","218","","" +"MT","F","POP","TOTAL","OC1","M","Y50-64","2011","53","","" +"MT","F","POP","TOTAL","OC1","M","Y65-84","2011","4","","" +"MT","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","N","Y15-29","2011","44","","" +"MT","F","POP","TOTAL","OC1","N","Y30-49","2011","178","","" +"MT","F","POP","TOTAL","OC1","N","Y50-64","2011","53","","" +"MT","F","POP","TOTAL","OC1","N","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","O","Y15-29","2011","76","","" +"MT","F","POP","TOTAL","OC1","O","Y30-49","2011","214","","" +"MT","F","POP","TOTAL","OC1","O","Y50-64","2011","55","","" +"MT","F","POP","TOTAL","OC1","O","Y65-84","2011","4","","" +"MT","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","P","Y15-29","2011","25","","" +"MT","F","POP","TOTAL","OC1","P","Y30-49","2011","308","","" +"MT","F","POP","TOTAL","OC1","P","Y50-64","2011","196","","" +"MT","F","POP","TOTAL","OC1","P","Y65-84","2011","14","","" +"MT","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","Q","Y15-29","2011","19","","" +"MT","F","POP","TOTAL","OC1","Q","Y30-49","2011","99","","" +"MT","F","POP","TOTAL","OC1","Q","Y50-64","2011","56","","" +"MT","F","POP","TOTAL","OC1","Q","Y65-84","2011","5","","" +"MT","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","R","Y15-29","2011","46","","" +"MT","F","POP","TOTAL","OC1","R","Y30-49","2011","115","","" +"MT","F","POP","TOTAL","OC1","R","Y50-64","2011","12","","" +"MT","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","S","Y15-29","2011","20","","" +"MT","F","POP","TOTAL","OC1","S","Y30-49","2011","26","","" +"MT","F","POP","TOTAL","OC1","S","Y50-64","2011","16","","" +"MT","F","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","U","Y15-29","2011","3","","" +"MT","F","POP","TOTAL","OC1","U","Y30-49","2011","21","","" +"MT","F","POP","TOTAL","OC1","U","Y50-64","2011","6","","" +"MT","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","A","Y15-29","2011","4","","" +"MT","F","POP","TOTAL","OC2","A","Y30-49","2011","4","","" +"MT","F","POP","TOTAL","OC2","A","Y50-64","2011","2","","" +"MT","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","B","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC2","B","Y30-49","2011","1","","" +"MT","F","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","C","Y15-29","2011","185","","" +"MT","F","POP","TOTAL","OC2","C","Y30-49","2011","126","","" +"MT","F","POP","TOTAL","OC2","C","Y50-64","2011","9","","" +"MT","F","POP","TOTAL","OC2","C","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","D","Y15-29","2011","18","","" +"MT","F","POP","TOTAL","OC2","D","Y30-49","2011","13","","" +"MT","F","POP","TOTAL","OC2","D","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","E","Y15-29","2011","14","","" +"MT","F","POP","TOTAL","OC2","E","Y30-49","2011","10","","" +"MT","F","POP","TOTAL","OC2","E","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","F","Y15-29","2011","24","","" +"MT","F","POP","TOTAL","OC2","F","Y30-49","2011","21","","" +"MT","F","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","G","Y15-29","2011","204","","" +"MT","F","POP","TOTAL","OC2","G","Y30-49","2011","281","","" +"MT","F","POP","TOTAL","OC2","G","Y50-64","2011","61","","" +"MT","F","POP","TOTAL","OC2","G","Y65-84","2011","7","","" +"MT","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","H","Y15-29","2011","34","","" +"MT","F","POP","TOTAL","OC2","H","Y30-49","2011","55","","" +"MT","F","POP","TOTAL","OC2","H","Y50-64","2011","6","","" +"MT","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","I","Y15-29","2011","44","","" +"MT","F","POP","TOTAL","OC2","I","Y30-49","2011","38","","" +"MT","F","POP","TOTAL","OC2","I","Y50-64","2011","5","","" +"MT","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","J","Y15-29","2011","290","","" +"MT","F","POP","TOTAL","OC2","J","Y30-49","2011","205","","" +"MT","F","POP","TOTAL","OC2","J","Y50-64","2011","21","","" +"MT","F","POP","TOTAL","OC2","J","Y65-84","2011","9","","" +"MT","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","K","Y15-29","2011","188","","" +"MT","F","POP","TOTAL","OC2","K","Y30-49","2011","201","","" +"MT","F","POP","TOTAL","OC2","K","Y50-64","2011","16","","" +"MT","F","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","L","Y15-29","2011","8","","" +"MT","F","POP","TOTAL","OC2","L","Y30-49","2011","11","","" +"MT","F","POP","TOTAL","OC2","L","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","M","Y15-29","2011","822","","" +"MT","F","POP","TOTAL","OC2","M","Y30-49","2011","610","","" +"MT","F","POP","TOTAL","OC2","M","Y50-64","2011","65","","" +"MT","F","POP","TOTAL","OC2","M","Y65-84","2011","7","","" +"MT","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","N","Y15-29","2011","87","","" +"MT","F","POP","TOTAL","OC2","N","Y30-49","2011","94","","" +"MT","F","POP","TOTAL","OC2","N","Y50-64","2011","19","","" +"MT","F","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","O","Y15-29","2011","314","","" +"MT","F","POP","TOTAL","OC2","O","Y30-49","2011","600","","" +"MT","F","POP","TOTAL","OC2","O","Y50-64","2011","111","","" +"MT","F","POP","TOTAL","OC2","O","Y65-84","2011","5","","" +"MT","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","P","Y15-29","2011","1756","","" +"MT","F","POP","TOTAL","OC2","P","Y30-49","2011","3153","","" +"MT","F","POP","TOTAL","OC2","P","Y50-64","2011","1166","","" +"MT","F","POP","TOTAL","OC2","P","Y65-84","2011","79","","" +"MT","F","POP","TOTAL","OC2","P","Y_GE85","2011","1","","" +"MT","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","Q","Y15-29","2011","1027","","" +"MT","F","POP","TOTAL","OC2","Q","Y30-49","2011","1181","","" +"MT","F","POP","TOTAL","OC2","Q","Y50-64","2011","252","","" +"MT","F","POP","TOTAL","OC2","Q","Y65-84","2011","8","","" +"MT","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","R","Y15-29","2011","108","","" +"MT","F","POP","TOTAL","OC2","R","Y30-49","2011","148","","" +"MT","F","POP","TOTAL","OC2","R","Y50-64","2011","28","","" +"MT","F","POP","TOTAL","OC2","R","Y65-84","2011","5","","" +"MT","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","S","Y15-29","2011","35","","" +"MT","F","POP","TOTAL","OC2","S","Y30-49","2011","57","","" +"MT","F","POP","TOTAL","OC2","S","Y50-64","2011","20","","" +"MT","F","POP","TOTAL","OC2","S","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC2","T","Y30-49","2011","1","","" +"MT","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","U","Y15-29","2011","19","","" +"MT","F","POP","TOTAL","OC2","U","Y30-49","2011","25","","" +"MT","F","POP","TOTAL","OC2","U","Y50-64","2011","5","","" +"MT","F","POP","TOTAL","OC2","U","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","A","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC3","A","Y30-49","2011","5","","" +"MT","F","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC3","B","Y30-49","2011","2","","" +"MT","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","C","Y15-29","2011","215","","" +"MT","F","POP","TOTAL","OC3","C","Y30-49","2011","248","","" +"MT","F","POP","TOTAL","OC3","C","Y50-64","2011","57","","" +"MT","F","POP","TOTAL","OC3","C","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","D","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC3","D","Y30-49","2011","45","","" +"MT","F","POP","TOTAL","OC3","D","Y50-64","2011","2","","" +"MT","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","E","Y15-29","2011","8","","" +"MT","F","POP","TOTAL","OC3","E","Y30-49","2011","26","","" +"MT","F","POP","TOTAL","OC3","E","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","F","Y15-29","2011","21","","" +"MT","F","POP","TOTAL","OC3","F","Y30-49","2011","36","","" +"MT","F","POP","TOTAL","OC3","F","Y50-64","2011","9","","" +"MT","F","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","G","Y15-29","2011","167","","" +"MT","F","POP","TOTAL","OC3","G","Y30-49","2011","260","","" +"MT","F","POP","TOTAL","OC3","G","Y50-64","2011","56","","" +"MT","F","POP","TOTAL","OC3","G","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","H","Y15-29","2011","54","","" +"MT","F","POP","TOTAL","OC3","H","Y30-49","2011","162","","" +"MT","F","POP","TOTAL","OC3","H","Y50-64","2011","30","","" +"MT","F","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","I","Y15-29","2011","250","","" +"MT","F","POP","TOTAL","OC3","I","Y30-49","2011","202","","" +"MT","F","POP","TOTAL","OC3","I","Y50-64","2011","76","","" +"MT","F","POP","TOTAL","OC3","I","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","J","Y15-29","2011","122","","" +"MT","F","POP","TOTAL","OC3","J","Y30-49","2011","122","","" +"MT","F","POP","TOTAL","OC3","J","Y50-64","2011","24","","" +"MT","F","POP","TOTAL","OC3","J","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","K","Y15-29","2011","305","","" +"MT","F","POP","TOTAL","OC3","K","Y30-49","2011","609","","" +"MT","F","POP","TOTAL","OC3","K","Y50-64","2011","88","","" +"MT","F","POP","TOTAL","OC3","K","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","L","Y15-29","2011","47","","" +"MT","F","POP","TOTAL","OC3","L","Y30-49","2011","78","","" +"MT","F","POP","TOTAL","OC3","L","Y50-64","2011","35","","" +"MT","F","POP","TOTAL","OC3","L","Y65-84","2011","3","","" +"MT","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","M","Y15-29","2011","298","","" +"MT","F","POP","TOTAL","OC3","M","Y30-49","2011","242","","" +"MT","F","POP","TOTAL","OC3","M","Y50-64","2011","80","","" +"MT","F","POP","TOTAL","OC3","M","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","N","Y15-29","2011","103","","" +"MT","F","POP","TOTAL","OC3","N","Y30-49","2011","155","","" +"MT","F","POP","TOTAL","OC3","N","Y50-64","2011","31","","" +"MT","F","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","O","Y15-29","2011","125","","" +"MT","F","POP","TOTAL","OC3","O","Y30-49","2011","658","","" +"MT","F","POP","TOTAL","OC3","O","Y50-64","2011","144","","" +"MT","F","POP","TOTAL","OC3","O","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","P","Y15-29","2011","65","","" +"MT","F","POP","TOTAL","OC3","P","Y30-49","2011","175","","" +"MT","F","POP","TOTAL","OC3","P","Y50-64","2011","59","","" +"MT","F","POP","TOTAL","OC3","P","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","Q","Y15-29","2011","347","","" +"MT","F","POP","TOTAL","OC3","Q","Y30-49","2011","906","","" +"MT","F","POP","TOTAL","OC3","Q","Y50-64","2011","585","","" +"MT","F","POP","TOTAL","OC3","Q","Y65-84","2011","12","","" +"MT","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","R","Y15-29","2011","80","","" +"MT","F","POP","TOTAL","OC3","R","Y30-49","2011","95","","" +"MT","F","POP","TOTAL","OC3","R","Y50-64","2011","25","","" +"MT","F","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","S","Y15-29","2011","25","","" +"MT","F","POP","TOTAL","OC3","S","Y30-49","2011","53","","" +"MT","F","POP","TOTAL","OC3","S","Y50-64","2011","34","","" +"MT","F","POP","TOTAL","OC3","S","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC3","T","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC3","T","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","U","Y15-29","2011","3","","" +"MT","F","POP","TOTAL","OC3","U","Y30-49","2011","11","","" +"MT","F","POP","TOTAL","OC3","U","Y50-64","2011","6","","" +"MT","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","A","Y15-29","2011","4","","" +"MT","F","POP","TOTAL","OC4","A","Y30-49","2011","8","","" +"MT","F","POP","TOTAL","OC4","A","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","B","Y15-29","2011","10","","" +"MT","F","POP","TOTAL","OC4","B","Y30-49","2011","4","","" +"MT","F","POP","TOTAL","OC4","B","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","C","Y15-29","2011","302","","" +"MT","F","POP","TOTAL","OC4","C","Y30-49","2011","362","","" +"MT","F","POP","TOTAL","OC4","C","Y50-64","2011","89","","" +"MT","F","POP","TOTAL","OC4","C","Y65-84","2011","3","","" +"MT","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","D","Y15-29","2011","20","","" +"MT","F","POP","TOTAL","OC4","D","Y30-49","2011","33","","" +"MT","F","POP","TOTAL","OC4","D","Y50-64","2011","9","","" +"MT","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","E","Y15-29","2011","43","","" +"MT","F","POP","TOTAL","OC4","E","Y30-49","2011","71","","" +"MT","F","POP","TOTAL","OC4","E","Y50-64","2011","12","","" +"MT","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","F","Y15-29","2011","96","","" +"MT","F","POP","TOTAL","OC4","F","Y30-49","2011","94","","" +"MT","F","POP","TOTAL","OC4","F","Y50-64","2011","21","","" +"MT","F","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","G","Y15-29","2011","632","","" +"MT","F","POP","TOTAL","OC4","G","Y30-49","2011","643","","" +"MT","F","POP","TOTAL","OC4","G","Y50-64","2011","182","","" +"MT","F","POP","TOTAL","OC4","G","Y65-84","2011","9","","" +"MT","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","H","Y15-29","2011","347","","" +"MT","F","POP","TOTAL","OC4","H","Y30-49","2011","435","","" +"MT","F","POP","TOTAL","OC4","H","Y50-64","2011","92","","" +"MT","F","POP","TOTAL","OC4","H","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","I","Y15-29","2011","358","","" +"MT","F","POP","TOTAL","OC4","I","Y30-49","2011","256","","" +"MT","F","POP","TOTAL","OC4","I","Y50-64","2011","71","","" +"MT","F","POP","TOTAL","OC4","I","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","J","Y15-29","2011","274","","" +"MT","F","POP","TOTAL","OC4","J","Y30-49","2011","192","","" +"MT","F","POP","TOTAL","OC4","J","Y50-64","2011","47","","" +"MT","F","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","K","Y15-29","2011","759","","" +"MT","F","POP","TOTAL","OC4","K","Y30-49","2011","986","","" +"MT","F","POP","TOTAL","OC4","K","Y50-64","2011","126","","" +"MT","F","POP","TOTAL","OC4","K","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","L","Y15-29","2011","50","","" +"MT","F","POP","TOTAL","OC4","L","Y30-49","2011","38","","" +"MT","F","POP","TOTAL","OC4","L","Y50-64","2011","8","","" +"MT","F","POP","TOTAL","OC4","L","Y65-84","2011","3","","" +"MT","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","M","Y15-29","2011","434","","" +"MT","F","POP","TOTAL","OC4","M","Y30-49","2011","311","","" +"MT","F","POP","TOTAL","OC4","M","Y50-64","2011","128","","" +"MT","F","POP","TOTAL","OC4","M","Y65-84","2011","7","","" +"MT","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","N","Y15-29","2011","440","","" +"MT","F","POP","TOTAL","OC4","N","Y30-49","2011","376","","" +"MT","F","POP","TOTAL","OC4","N","Y50-64","2011","122","","" +"MT","F","POP","TOTAL","OC4","N","Y65-84","2011","5","","" +"MT","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","O","Y15-29","2011","368","","" +"MT","F","POP","TOTAL","OC4","O","Y30-49","2011","944","","" +"MT","F","POP","TOTAL","OC4","O","Y50-64","2011","235","","" +"MT","F","POP","TOTAL","OC4","O","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","P","Y15-29","2011","183","","" +"MT","F","POP","TOTAL","OC4","P","Y30-49","2011","359","","" +"MT","F","POP","TOTAL","OC4","P","Y50-64","2011","169","","" +"MT","F","POP","TOTAL","OC4","P","Y65-84","2011","10","","" +"MT","F","POP","TOTAL","OC4","P","Y_GE85","2011","1","","" +"MT","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","Q","Y15-29","2011","134","","" +"MT","F","POP","TOTAL","OC4","Q","Y30-49","2011","219","","" +"MT","F","POP","TOTAL","OC4","Q","Y50-64","2011","103","","" +"MT","F","POP","TOTAL","OC4","Q","Y65-84","2011","4","","" +"MT","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","R","Y15-29","2011","279","","" +"MT","F","POP","TOTAL","OC4","R","Y30-49","2011","198","","" +"MT","F","POP","TOTAL","OC4","R","Y50-64","2011","84","","" +"MT","F","POP","TOTAL","OC4","R","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","S","Y15-29","2011","31","","" +"MT","F","POP","TOTAL","OC4","S","Y30-49","2011","58","","" +"MT","F","POP","TOTAL","OC4","S","Y50-64","2011","46","","" +"MT","F","POP","TOTAL","OC4","S","Y65-84","2011","6","","" +"MT","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","U","Y15-29","2011","6","","" +"MT","F","POP","TOTAL","OC4","U","Y30-49","2011","9","","" +"MT","F","POP","TOTAL","OC4","U","Y50-64","2011","20","","" +"MT","F","POP","TOTAL","OC4","U","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","A","Y15-29","2011","3","","" +"MT","F","POP","TOTAL","OC5","A","Y30-49","2011","11","","" +"MT","F","POP","TOTAL","OC5","A","Y50-64","2011","5","","" +"MT","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","B","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC5","B","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","C","Y15-29","2011","118","","" +"MT","F","POP","TOTAL","OC5","C","Y30-49","2011","205","","" +"MT","F","POP","TOTAL","OC5","C","Y50-64","2011","93","","" +"MT","F","POP","TOTAL","OC5","C","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","D","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","E","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC5","E","Y30-49","2011","5","","" +"MT","F","POP","TOTAL","OC5","E","Y50-64","2011","4","","" +"MT","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","F","Y15-29","2011","3","","" +"MT","F","POP","TOTAL","OC5","F","Y30-49","2011","11","","" +"MT","F","POP","TOTAL","OC5","F","Y50-64","2011","4","","" +"MT","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","G","Y15-29","2011","2851","","" +"MT","F","POP","TOTAL","OC5","G","Y30-49","2011","2804","","" +"MT","F","POP","TOTAL","OC5","G","Y50-64","2011","1121","","" +"MT","F","POP","TOTAL","OC5","G","Y65-84","2011","53","","" +"MT","F","POP","TOTAL","OC5","G","Y_GE85","2011","3","","" +"MT","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","H","Y15-29","2011","102","","" +"MT","F","POP","TOTAL","OC5","H","Y30-49","2011","209","","" +"MT","F","POP","TOTAL","OC5","H","Y50-64","2011","56","","" +"MT","F","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","I","Y15-29","2011","1318","","" +"MT","F","POP","TOTAL","OC5","I","Y30-49","2011","850","","" +"MT","F","POP","TOTAL","OC5","I","Y50-64","2011","363","","" +"MT","F","POP","TOTAL","OC5","I","Y65-84","2011","11","","" +"MT","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","J","Y15-29","2011","109","","" +"MT","F","POP","TOTAL","OC5","J","Y30-49","2011","78","","" +"MT","F","POP","TOTAL","OC5","J","Y50-64","2011","22","","" +"MT","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","K","Y15-29","2011","35","","" +"MT","F","POP","TOTAL","OC5","K","Y30-49","2011","26","","" +"MT","F","POP","TOTAL","OC5","K","Y50-64","2011","17","","" +"MT","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","L","Y15-29","2011","4","","" +"MT","F","POP","TOTAL","OC5","L","Y30-49","2011","9","","" +"MT","F","POP","TOTAL","OC5","L","Y50-64","2011","6","","" +"MT","F","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","M","Y15-29","2011","39","","" +"MT","F","POP","TOTAL","OC5","M","Y30-49","2011","56","","" +"MT","F","POP","TOTAL","OC5","M","Y50-64","2011","17","","" +"MT","F","POP","TOTAL","OC5","M","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","N","Y15-29","2011","130","","" +"MT","F","POP","TOTAL","OC5","N","Y30-49","2011","239","","" +"MT","F","POP","TOTAL","OC5","N","Y50-64","2011","148","","" +"MT","F","POP","TOTAL","OC5","N","Y65-84","2011","14","","" +"MT","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","O","Y15-29","2011","201","","" +"MT","F","POP","TOTAL","OC5","O","Y30-49","2011","251","","" +"MT","F","POP","TOTAL","OC5","O","Y50-64","2011","61","","" +"MT","F","POP","TOTAL","OC5","O","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","P","Y15-29","2011","796","","" +"MT","F","POP","TOTAL","OC5","P","Y30-49","2011","939","","" +"MT","F","POP","TOTAL","OC5","P","Y50-64","2011","395","","" +"MT","F","POP","TOTAL","OC5","P","Y65-84","2011","6","","" +"MT","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","Q","Y15-29","2011","571","","" +"MT","F","POP","TOTAL","OC5","Q","Y30-49","2011","1399","","" +"MT","F","POP","TOTAL","OC5","Q","Y50-64","2011","839","","" +"MT","F","POP","TOTAL","OC5","Q","Y65-84","2011","18","","" +"MT","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","R","Y15-29","2011","74","","" +"MT","F","POP","TOTAL","OC5","R","Y30-49","2011","66","","" +"MT","F","POP","TOTAL","OC5","R","Y50-64","2011","27","","" +"MT","F","POP","TOTAL","OC5","R","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","S","Y15-29","2011","881","","" +"MT","F","POP","TOTAL","OC5","S","Y30-49","2011","670","","" +"MT","F","POP","TOTAL","OC5","S","Y50-64","2011","174","","" +"MT","F","POP","TOTAL","OC5","S","Y65-84","2011","10","","" +"MT","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","T","Y15-29","2011","14","","" +"MT","F","POP","TOTAL","OC5","T","Y30-49","2011","40","","" +"MT","F","POP","TOTAL","OC5","T","Y50-64","2011","13","","" +"MT","F","POP","TOTAL","OC5","T","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC5","U","Y30-49","2011","15","","" +"MT","F","POP","TOTAL","OC5","U","Y50-64","2011","8","","" +"MT","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","A","Y15-29","2011","15","","" +"MT","F","POP","TOTAL","OC6","A","Y30-49","2011","73","","" +"MT","F","POP","TOTAL","OC6","A","Y50-64","2011","65","","" +"MT","F","POP","TOTAL","OC6","A","Y65-84","2011","9","","" +"MT","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","C","Y50-64","2011","2","","" +"MT","F","POP","TOTAL","OC6","C","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","G","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC6","G","Y30-49","2011","6","","" +"MT","F","POP","TOTAL","OC6","G","Y50-64","2011","5","","" +"MT","F","POP","TOTAL","OC6","G","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","N","Y30-49","2011","5","","" +"MT","F","POP","TOTAL","OC6","N","Y50-64","2011","4","","" +"MT","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","O","Y30-49","2011","2","","" +"MT","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","P","Y30-49","2011","2","","" +"MT","F","POP","TOTAL","OC6","P","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","S","Y30-49","2011","1","","" +"MT","F","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC7","A","Y30-49","2011","2","","" +"MT","F","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","C","Y15-29","2011","235","","" +"MT","F","POP","TOTAL","OC7","C","Y30-49","2011","372","","" +"MT","F","POP","TOTAL","OC7","C","Y50-64","2011","99","","" +"MT","F","POP","TOTAL","OC7","C","Y65-84","2011","7","","" +"MT","F","POP","TOTAL","OC7","C","Y_GE85","2011","1","","" +"MT","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","D","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","F","Y15-29","2011","6","","" +"MT","F","POP","TOTAL","OC7","F","Y30-49","2011","6","","" +"MT","F","POP","TOTAL","OC7","F","Y50-64","2011","6","","" +"MT","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","G","Y15-29","2011","22","","" +"MT","F","POP","TOTAL","OC7","G","Y30-49","2011","54","","" +"MT","F","POP","TOTAL","OC7","G","Y50-64","2011","40","","" +"MT","F","POP","TOTAL","OC7","G","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","H","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC7","H","Y30-49","2011","3","","" +"MT","F","POP","TOTAL","OC7","H","Y50-64","2011","2","","" +"MT","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","I","Y15-29","2011","40","","" +"MT","F","POP","TOTAL","OC7","I","Y30-49","2011","29","","" +"MT","F","POP","TOTAL","OC7","I","Y50-64","2011","18","","" +"MT","F","POP","TOTAL","OC7","I","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","J","Y15-29","2011","6","","" +"MT","F","POP","TOTAL","OC7","J","Y30-49","2011","3","","" +"MT","F","POP","TOTAL","OC7","J","Y50-64","2011","2","","" +"MT","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","K","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","K","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","M","Y15-29","2011","23","","" +"MT","F","POP","TOTAL","OC7","M","Y30-49","2011","21","","" +"MT","F","POP","TOTAL","OC7","M","Y50-64","2011","2","","" +"MT","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","N","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC7","N","Y30-49","2011","4","","" +"MT","F","POP","TOTAL","OC7","N","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","O","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC7","O","Y30-49","2011","4","","" +"MT","F","POP","TOTAL","OC7","O","Y50-64","2011","4","","" +"MT","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","P","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC7","P","Y30-49","2011","10","","" +"MT","F","POP","TOTAL","OC7","P","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","Q","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC7","Q","Y30-49","2011","7","","" +"MT","F","POP","TOTAL","OC7","Q","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","R","Y15-29","2011","3","","" +"MT","F","POP","TOTAL","OC7","R","Y30-49","2011","11","","" +"MT","F","POP","TOTAL","OC7","R","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC7","R","Y65-84","2011","3","","" +"MT","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","S","Y15-29","2011","3","","" +"MT","F","POP","TOTAL","OC7","S","Y30-49","2011","5","","" +"MT","F","POP","TOTAL","OC7","S","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","T","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC7","U","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","A","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC8","A","Y30-49","2011","6","","" +"MT","F","POP","TOTAL","OC8","A","Y50-64","2011","3","","" +"MT","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","B","Y30-49","2011","1","","" +"MT","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","C","Y15-29","2011","1370","","" +"MT","F","POP","TOTAL","OC8","C","Y30-49","2011","1272","","" +"MT","F","POP","TOTAL","OC8","C","Y50-64","2011","212","","" +"MT","F","POP","TOTAL","OC8","C","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC8","D","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","E","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC8","E","Y30-49","2011","3","","" +"MT","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","F","Y15-29","2011","12","","" +"MT","F","POP","TOTAL","OC8","F","Y30-49","2011","8","","" +"MT","F","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","G","Y15-29","2011","11","","" +"MT","F","POP","TOTAL","OC8","G","Y30-49","2011","45","","" +"MT","F","POP","TOTAL","OC8","G","Y50-64","2011","19","","" +"MT","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","H","Y15-29","2011","24","","" +"MT","F","POP","TOTAL","OC8","H","Y30-49","2011","75","","" +"MT","F","POP","TOTAL","OC8","H","Y50-64","2011","31","","" +"MT","F","POP","TOTAL","OC8","H","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","I","Y15-29","2011","4","","" +"MT","F","POP","TOTAL","OC8","I","Y30-49","2011","11","","" +"MT","F","POP","TOTAL","OC8","I","Y50-64","2011","10","","" +"MT","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","J","Y30-49","2011","1","","" +"MT","F","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","K","Y30-49","2011","2","","" +"MT","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","M","Y15-29","2011","33","","" +"MT","F","POP","TOTAL","OC8","M","Y30-49","2011","16","","" +"MT","F","POP","TOTAL","OC8","M","Y50-64","2011","6","","" +"MT","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","N","Y15-29","2011","6","","" +"MT","F","POP","TOTAL","OC8","N","Y30-49","2011","9","","" +"MT","F","POP","TOTAL","OC8","N","Y50-64","2011","7","","" +"MT","F","POP","TOTAL","OC8","N","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","O","Y30-49","2011","7","","" +"MT","F","POP","TOTAL","OC8","O","Y50-64","2011","1","","" +"MT","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","Q","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC8","Q","Y30-49","2011","15","","" +"MT","F","POP","TOTAL","OC8","Q","Y50-64","2011","8","","" +"MT","F","POP","TOTAL","OC8","Q","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","R","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","S","Y15-29","2011","26","","" +"MT","F","POP","TOTAL","OC8","S","Y30-49","2011","23","","" +"MT","F","POP","TOTAL","OC8","S","Y50-64","2011","8","","" +"MT","F","POP","TOTAL","OC8","S","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","A","Y15-29","2011","6","","" +"MT","F","POP","TOTAL","OC9","A","Y30-49","2011","21","","" +"MT","F","POP","TOTAL","OC9","A","Y50-64","2011","7","","" +"MT","F","POP","TOTAL","OC9","A","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","B","Y15-29","2011","1","","" +"MT","F","POP","TOTAL","OC9","B","Y30-49","2011","2","","" +"MT","F","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","C","Y15-29","2011","165","","" +"MT","F","POP","TOTAL","OC9","C","Y30-49","2011","231","","" +"MT","F","POP","TOTAL","OC9","C","Y50-64","2011","100","","" +"MT","F","POP","TOTAL","OC9","C","Y65-84","2011","2","","" +"MT","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","D","Y15-29","2011","2","","" +"MT","F","POP","TOTAL","OC9","D","Y30-49","2011","4","","" +"MT","F","POP","TOTAL","OC9","D","Y50-64","2011","6","","" +"MT","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","E","Y15-29","2011","7","","" +"MT","F","POP","TOTAL","OC9","E","Y30-49","2011","14","","" +"MT","F","POP","TOTAL","OC9","E","Y50-64","2011","13","","" +"MT","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","F","Y15-29","2011","13","","" +"MT","F","POP","TOTAL","OC9","F","Y30-49","2011","23","","" +"MT","F","POP","TOTAL","OC9","F","Y50-64","2011","12","","" +"MT","F","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","G","Y15-29","2011","131","","" +"MT","F","POP","TOTAL","OC9","G","Y30-49","2011","298","","" +"MT","F","POP","TOTAL","OC9","G","Y50-64","2011","172","","" +"MT","F","POP","TOTAL","OC9","G","Y65-84","2011","3","","" +"MT","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","H","Y15-29","2011","23","","" +"MT","F","POP","TOTAL","OC9","H","Y30-49","2011","84","","" +"MT","F","POP","TOTAL","OC9","H","Y50-64","2011","28","","" +"MT","F","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","I","Y15-29","2011","570","","" +"MT","F","POP","TOTAL","OC9","I","Y30-49","2011","654","","" +"MT","F","POP","TOTAL","OC9","I","Y50-64","2011","400","","" +"MT","F","POP","TOTAL","OC9","I","Y65-84","2011","14","","" +"MT","F","POP","TOTAL","OC9","I","Y_GE85","2011","1","","" +"MT","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","J","Y15-29","2011","19","","" +"MT","F","POP","TOTAL","OC9","J","Y30-49","2011","23","","" +"MT","F","POP","TOTAL","OC9","J","Y50-64","2011","22","","" +"MT","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","K","Y15-29","2011","14","","" +"MT","F","POP","TOTAL","OC9","K","Y30-49","2011","47","","" +"MT","F","POP","TOTAL","OC9","K","Y50-64","2011","44","","" +"MT","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","L","Y15-29","2011","8","","" +"MT","F","POP","TOTAL","OC9","L","Y30-49","2011","13","","" +"MT","F","POP","TOTAL","OC9","L","Y50-64","2011","11","","" +"MT","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","M","Y15-29","2011","11","","" +"MT","F","POP","TOTAL","OC9","M","Y30-49","2011","32","","" +"MT","F","POP","TOTAL","OC9","M","Y50-64","2011","28","","" +"MT","F","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","N","Y15-29","2011","286","","" +"MT","F","POP","TOTAL","OC9","N","Y30-49","2011","414","","" +"MT","F","POP","TOTAL","OC9","N","Y50-64","2011","261","","" +"MT","F","POP","TOTAL","OC9","N","Y65-84","2011","7","","" +"MT","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","O","Y15-29","2011","14","","" +"MT","F","POP","TOTAL","OC9","O","Y30-49","2011","133","","" +"MT","F","POP","TOTAL","OC9","O","Y50-64","2011","105","","" +"MT","F","POP","TOTAL","OC9","O","Y65-84","2011","1","","" +"MT","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","P","Y15-29","2011","42","","" +"MT","F","POP","TOTAL","OC9","P","Y30-49","2011","318","","" +"MT","F","POP","TOTAL","OC9","P","Y50-64","2011","215","","" +"MT","F","POP","TOTAL","OC9","P","Y65-84","2011","4","","" +"MT","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","Q","Y15-29","2011","121","","" +"MT","F","POP","TOTAL","OC9","Q","Y30-49","2011","283","","" +"MT","F","POP","TOTAL","OC9","Q","Y50-64","2011","206","","" +"MT","F","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","R","Y15-29","2011","20","","" +"MT","F","POP","TOTAL","OC9","R","Y30-49","2011","47","","" +"MT","F","POP","TOTAL","OC9","R","Y50-64","2011","30","","" +"MT","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","S","Y15-29","2011","26","","" +"MT","F","POP","TOTAL","OC9","S","Y30-49","2011","35","","" +"MT","F","POP","TOTAL","OC9","S","Y50-64","2011","47","","" +"MT","F","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","T","Y15-29","2011","6","","" +"MT","F","POP","TOTAL","OC9","T","Y30-49","2011","20","","" +"MT","F","POP","TOTAL","OC9","T","Y50-64","2011","27","","" +"MT","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","U","Y15-29","2011","3","","" +"MT","F","POP","TOTAL","OC9","U","Y30-49","2011","6","","" +"MT","F","POP","TOTAL","OC9","U","Y50-64","2011","4","","" +"MT","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"MT","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"MT","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"MT","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"MT","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"MT","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"MT","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","NAP","Y15-29","2011","15999","","" +"MT","M","POP","TOTAL","NAP","NAP","Y30-49","2011","3994","","" +"MT","M","POP","TOTAL","NAP","NAP","Y50-64","2011","15698","","" +"MT","M","POP","TOTAL","NAP","NAP","Y65-84","2011","25570","","" +"MT","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","2160","","" +"MT","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","31673","","" +"MT","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","B","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","D","Y30-49","2011","1","","" +"MT","M","POP","TOTAL","OC0","D","Y50-64","2011","3","","" +"MT","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","H","Y15-29","2011","11","","" +"MT","M","POP","TOTAL","OC0","H","Y30-49","2011","11","","" +"MT","M","POP","TOTAL","OC0","H","Y50-64","2011","2","","" +"MT","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","I","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","M","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC0","M","Y30-49","2011","1","","" +"MT","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","O","Y15-29","2011","477","","" +"MT","M","POP","TOTAL","OC0","O","Y30-49","2011","851","","" +"MT","M","POP","TOTAL","OC0","O","Y50-64","2011","205","","" +"MT","M","POP","TOTAL","OC0","O","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","Q","Y50-64","2011","1","","" +"MT","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","S","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC0","S","Y30-49","2011","1","","" +"MT","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","U","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","A","Y15-29","2011","7","","" +"MT","M","POP","TOTAL","OC1","A","Y30-49","2011","24","","" +"MT","M","POP","TOTAL","OC1","A","Y50-64","2011","17","","" +"MT","M","POP","TOTAL","OC1","A","Y65-84","2011","6","","" +"MT","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","B","Y15-29","2011","4","","" +"MT","M","POP","TOTAL","OC1","B","Y30-49","2011","29","","" +"MT","M","POP","TOTAL","OC1","B","Y50-64","2011","32","","" +"MT","M","POP","TOTAL","OC1","B","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","C","Y15-29","2011","129","","" +"MT","M","POP","TOTAL","OC1","C","Y30-49","2011","730","","" +"MT","M","POP","TOTAL","OC1","C","Y50-64","2011","550","","" +"MT","M","POP","TOTAL","OC1","C","Y65-84","2011","47","","" +"MT","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","D","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC1","D","Y30-49","2011","19","","" +"MT","M","POP","TOTAL","OC1","D","Y50-64","2011","14","","" +"MT","M","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","E","Y15-29","2011","9","","" +"MT","M","POP","TOTAL","OC1","E","Y30-49","2011","28","","" +"MT","M","POP","TOTAL","OC1","E","Y50-64","2011","37","","" +"MT","M","POP","TOTAL","OC1","E","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","F","Y15-29","2011","79","","" +"MT","M","POP","TOTAL","OC1","F","Y30-49","2011","372","","" +"MT","M","POP","TOTAL","OC1","F","Y50-64","2011","272","","" +"MT","M","POP","TOTAL","OC1","F","Y65-84","2011","16","","" +"MT","M","POP","TOTAL","OC1","F","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","G","Y15-29","2011","301","","" +"MT","M","POP","TOTAL","OC1","G","Y30-49","2011","1719","","" +"MT","M","POP","TOTAL","OC1","G","Y50-64","2011","1066","","" +"MT","M","POP","TOTAL","OC1","G","Y65-84","2011","148","","" +"MT","M","POP","TOTAL","OC1","G","Y_GE85","2011","3","","" +"MT","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","H","Y15-29","2011","50","","" +"MT","M","POP","TOTAL","OC1","H","Y30-49","2011","328","","" +"MT","M","POP","TOTAL","OC1","H","Y50-64","2011","243","","" +"MT","M","POP","TOTAL","OC1","H","Y65-84","2011","19","","" +"MT","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","I","Y15-29","2011","208","","" +"MT","M","POP","TOTAL","OC1","I","Y30-49","2011","826","","" +"MT","M","POP","TOTAL","OC1","I","Y50-64","2011","474","","" +"MT","M","POP","TOTAL","OC1","I","Y65-84","2011","55","","" +"MT","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","J","Y15-29","2011","104","","" +"MT","M","POP","TOTAL","OC1","J","Y30-49","2011","461","","" +"MT","M","POP","TOTAL","OC1","J","Y50-64","2011","99","","" +"MT","M","POP","TOTAL","OC1","J","Y65-84","2011","17","","" +"MT","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","K","Y15-29","2011","92","","" +"MT","M","POP","TOTAL","OC1","K","Y30-49","2011","760","","" +"MT","M","POP","TOTAL","OC1","K","Y50-64","2011","452","","" +"MT","M","POP","TOTAL","OC1","K","Y65-84","2011","35","","" +"MT","M","POP","TOTAL","OC1","K","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","L","Y15-29","2011","11","","" +"MT","M","POP","TOTAL","OC1","L","Y30-49","2011","80","","" +"MT","M","POP","TOTAL","OC1","L","Y50-64","2011","76","","" +"MT","M","POP","TOTAL","OC1","L","Y65-84","2011","10","","" +"MT","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","M","Y15-29","2011","62","","" +"MT","M","POP","TOTAL","OC1","M","Y30-49","2011","395","","" +"MT","M","POP","TOTAL","OC1","M","Y50-64","2011","191","","" +"MT","M","POP","TOTAL","OC1","M","Y65-84","2011","16","","" +"MT","M","POP","TOTAL","OC1","M","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","N","Y15-29","2011","56","","" +"MT","M","POP","TOTAL","OC1","N","Y30-49","2011","323","","" +"MT","M","POP","TOTAL","OC1","N","Y50-64","2011","211","","" +"MT","M","POP","TOTAL","OC1","N","Y65-84","2011","27","","" +"MT","M","POP","TOTAL","OC1","N","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","O","Y15-29","2011","50","","" +"MT","M","POP","TOTAL","OC1","O","Y30-49","2011","351","","" +"MT","M","POP","TOTAL","OC1","O","Y50-64","2011","249","","" +"MT","M","POP","TOTAL","OC1","O","Y65-84","2011","37","","" +"MT","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","P","Y15-29","2011","30","","" +"MT","M","POP","TOTAL","OC1","P","Y30-49","2011","273","","" +"MT","M","POP","TOTAL","OC1","P","Y50-64","2011","171","","" +"MT","M","POP","TOTAL","OC1","P","Y65-84","2011","13","","" +"MT","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","Q","Y15-29","2011","10","","" +"MT","M","POP","TOTAL","OC1","Q","Y30-49","2011","105","","" +"MT","M","POP","TOTAL","OC1","Q","Y50-64","2011","62","","" +"MT","M","POP","TOTAL","OC1","Q","Y65-84","2011","12","","" +"MT","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","R","Y15-29","2011","82","","" +"MT","M","POP","TOTAL","OC1","R","Y30-49","2011","284","","" +"MT","M","POP","TOTAL","OC1","R","Y50-64","2011","67","","" +"MT","M","POP","TOTAL","OC1","R","Y65-84","2011","11","","" +"MT","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","S","Y15-29","2011","11","","" +"MT","M","POP","TOTAL","OC1","S","Y30-49","2011","78","","" +"MT","M","POP","TOTAL","OC1","S","Y50-64","2011","40","","" +"MT","M","POP","TOTAL","OC1","S","Y65-84","2011","6","","" +"MT","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","U","Y15-29","2011","3","","" +"MT","M","POP","TOTAL","OC1","U","Y30-49","2011","18","","" +"MT","M","POP","TOTAL","OC1","U","Y50-64","2011","21","","" +"MT","M","POP","TOTAL","OC1","U","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","A","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC2","A","Y30-49","2011","7","","" +"MT","M","POP","TOTAL","OC2","A","Y50-64","2011","4","","" +"MT","M","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","B","Y15-29","2011","6","","" +"MT","M","POP","TOTAL","OC2","B","Y30-49","2011","22","","" +"MT","M","POP","TOTAL","OC2","B","Y50-64","2011","19","","" +"MT","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","C","Y15-29","2011","316","","" +"MT","M","POP","TOTAL","OC2","C","Y30-49","2011","395","","" +"MT","M","POP","TOTAL","OC2","C","Y50-64","2011","139","","" +"MT","M","POP","TOTAL","OC2","C","Y65-84","2011","11","","" +"MT","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","D","Y15-29","2011","44","","" +"MT","M","POP","TOTAL","OC2","D","Y30-49","2011","97","","" +"MT","M","POP","TOTAL","OC2","D","Y50-64","2011","24","","" +"MT","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","E","Y15-29","2011","16","","" +"MT","M","POP","TOTAL","OC2","E","Y30-49","2011","39","","" +"MT","M","POP","TOTAL","OC2","E","Y50-64","2011","13","","" +"MT","M","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","F","Y15-29","2011","71","","" +"MT","M","POP","TOTAL","OC2","F","Y30-49","2011","105","","" +"MT","M","POP","TOTAL","OC2","F","Y50-64","2011","39","","" +"MT","M","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","F","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","G","Y15-29","2011","151","","" +"MT","M","POP","TOTAL","OC2","G","Y30-49","2011","293","","" +"MT","M","POP","TOTAL","OC2","G","Y50-64","2011","73","","" +"MT","M","POP","TOTAL","OC2","G","Y65-84","2011","18","","" +"MT","M","POP","TOTAL","OC2","G","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","H","Y15-29","2011","56","","" +"MT","M","POP","TOTAL","OC2","H","Y30-49","2011","149","","" +"MT","M","POP","TOTAL","OC2","H","Y50-64","2011","78","","" +"MT","M","POP","TOTAL","OC2","H","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","I","Y15-29","2011","40","","" +"MT","M","POP","TOTAL","OC2","I","Y30-49","2011","63","","" +"MT","M","POP","TOTAL","OC2","I","Y50-64","2011","20","","" +"MT","M","POP","TOTAL","OC2","I","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","J","Y15-29","2011","836","","" +"MT","M","POP","TOTAL","OC2","J","Y30-49","2011","759","","" +"MT","M","POP","TOTAL","OC2","J","Y50-64","2011","111","","" +"MT","M","POP","TOTAL","OC2","J","Y65-84","2011","21","","" +"MT","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","K","Y15-29","2011","211","","" +"MT","M","POP","TOTAL","OC2","K","Y30-49","2011","253","","" +"MT","M","POP","TOTAL","OC2","K","Y50-64","2011","53","","" +"MT","M","POP","TOTAL","OC2","K","Y65-84","2011","8","","" +"MT","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","L","Y15-29","2011","3","","" +"MT","M","POP","TOTAL","OC2","L","Y30-49","2011","17","","" +"MT","M","POP","TOTAL","OC2","L","Y50-64","2011","5","","" +"MT","M","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","M","Y15-29","2011","696","","" +"MT","M","POP","TOTAL","OC2","M","Y30-49","2011","972","","" +"MT","M","POP","TOTAL","OC2","M","Y50-64","2011","395","","" +"MT","M","POP","TOTAL","OC2","M","Y65-84","2011","76","","" +"MT","M","POP","TOTAL","OC2","M","Y_GE85","2011","4","","" +"MT","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","N","Y15-29","2011","84","","" +"MT","M","POP","TOTAL","OC2","N","Y30-49","2011","102","","" +"MT","M","POP","TOTAL","OC2","N","Y50-64","2011","59","","" +"MT","M","POP","TOTAL","OC2","N","Y65-84","2011","10","","" +"MT","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","O","Y15-29","2011","213","","" +"MT","M","POP","TOTAL","OC2","O","Y30-49","2011","546","","" +"MT","M","POP","TOTAL","OC2","O","Y50-64","2011","267","","" +"MT","M","POP","TOTAL","OC2","O","Y65-84","2011","24","","" +"MT","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","P","Y15-29","2011","584","","" +"MT","M","POP","TOTAL","OC2","P","Y30-49","2011","1592","","" +"MT","M","POP","TOTAL","OC2","P","Y50-64","2011","671","","" +"MT","M","POP","TOTAL","OC2","P","Y65-84","2011","110","","" +"MT","M","POP","TOTAL","OC2","P","Y_GE85","2011","2","","" +"MT","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","Q","Y15-29","2011","350","","" +"MT","M","POP","TOTAL","OC2","Q","Y30-49","2011","809","","" +"MT","M","POP","TOTAL","OC2","Q","Y50-64","2011","336","","" +"MT","M","POP","TOTAL","OC2","Q","Y65-84","2011","61","","" +"MT","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","R","Y15-29","2011","154","","" +"MT","M","POP","TOTAL","OC2","R","Y30-49","2011","223","","" +"MT","M","POP","TOTAL","OC2","R","Y50-64","2011","79","","" +"MT","M","POP","TOTAL","OC2","R","Y65-84","2011","8","","" +"MT","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","S","Y15-29","2011","48","","" +"MT","M","POP","TOTAL","OC2","S","Y30-49","2011","137","","" +"MT","M","POP","TOTAL","OC2","S","Y50-64","2011","114","","" +"MT","M","POP","TOTAL","OC2","S","Y65-84","2011","67","","" +"MT","M","POP","TOTAL","OC2","S","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","U","Y15-29","2011","7","","" +"MT","M","POP","TOTAL","OC2","U","Y30-49","2011","18","","" +"MT","M","POP","TOTAL","OC2","U","Y50-64","2011","5","","" +"MT","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","A","Y15-29","2011","10","","" +"MT","M","POP","TOTAL","OC3","A","Y30-49","2011","16","","" +"MT","M","POP","TOTAL","OC3","A","Y50-64","2011","9","","" +"MT","M","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","B","Y15-29","2011","9","","" +"MT","M","POP","TOTAL","OC3","B","Y30-49","2011","35","","" +"MT","M","POP","TOTAL","OC3","B","Y50-64","2011","32","","" +"MT","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC3","B","Y_GE85","2011","2","","" +"MT","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","C","Y15-29","2011","830","","" +"MT","M","POP","TOTAL","OC3","C","Y30-49","2011","1239","","" +"MT","M","POP","TOTAL","OC3","C","Y50-64","2011","509","","" +"MT","M","POP","TOTAL","OC3","C","Y65-84","2011","13","","" +"MT","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","D","Y15-29","2011","20","","" +"MT","M","POP","TOTAL","OC3","D","Y30-49","2011","291","","" +"MT","M","POP","TOTAL","OC3","D","Y50-64","2011","156","","" +"MT","M","POP","TOTAL","OC3","D","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","E","Y15-29","2011","38","","" +"MT","M","POP","TOTAL","OC3","E","Y30-49","2011","110","","" +"MT","M","POP","TOTAL","OC3","E","Y50-64","2011","112","","" +"MT","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","F","Y15-29","2011","265","","" +"MT","M","POP","TOTAL","OC3","F","Y30-49","2011","459","","" +"MT","M","POP","TOTAL","OC3","F","Y50-64","2011","229","","" +"MT","M","POP","TOTAL","OC3","F","Y65-84","2011","8","","" +"MT","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","G","Y15-29","2011","384","","" +"MT","M","POP","TOTAL","OC3","G","Y30-49","2011","631","","" +"MT","M","POP","TOTAL","OC3","G","Y50-64","2011","338","","" +"MT","M","POP","TOTAL","OC3","G","Y65-84","2011","48","","" +"MT","M","POP","TOTAL","OC3","G","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","H","Y15-29","2011","183","","" +"MT","M","POP","TOTAL","OC3","H","Y30-49","2011","657","","" +"MT","M","POP","TOTAL","OC3","H","Y50-64","2011","350","","" +"MT","M","POP","TOTAL","OC3","H","Y65-84","2011","9","","" +"MT","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","I","Y15-29","2011","770","","" +"MT","M","POP","TOTAL","OC3","I","Y30-49","2011","797","","" +"MT","M","POP","TOTAL","OC3","I","Y50-64","2011","354","","" +"MT","M","POP","TOTAL","OC3","I","Y65-84","2011","15","","" +"MT","M","POP","TOTAL","OC3","I","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","J","Y15-29","2011","349","","" +"MT","M","POP","TOTAL","OC3","J","Y30-49","2011","463","","" +"MT","M","POP","TOTAL","OC3","J","Y50-64","2011","183","","" +"MT","M","POP","TOTAL","OC3","J","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","K","Y15-29","2011","216","","" +"MT","M","POP","TOTAL","OC3","K","Y30-49","2011","413","","" +"MT","M","POP","TOTAL","OC3","K","Y50-64","2011","124","","" +"MT","M","POP","TOTAL","OC3","K","Y65-84","2011","10","","" +"MT","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","L","Y15-29","2011","58","","" +"MT","M","POP","TOTAL","OC3","L","Y30-49","2011","216","","" +"MT","M","POP","TOTAL","OC3","L","Y50-64","2011","76","","" +"MT","M","POP","TOTAL","OC3","L","Y65-84","2011","4","","" +"MT","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","M","Y15-29","2011","267","","" +"MT","M","POP","TOTAL","OC3","M","Y30-49","2011","274","","" +"MT","M","POP","TOTAL","OC3","M","Y50-64","2011","125","","" +"MT","M","POP","TOTAL","OC3","M","Y65-84","2011","23","","" +"MT","M","POP","TOTAL","OC3","M","Y_GE85","2011","2","","" +"MT","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","N","Y15-29","2011","101","","" +"MT","M","POP","TOTAL","OC3","N","Y30-49","2011","180","","" +"MT","M","POP","TOTAL","OC3","N","Y50-64","2011","104","","" +"MT","M","POP","TOTAL","OC3","N","Y65-84","2011","4","","" +"MT","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","O","Y15-29","2011","124","","" +"MT","M","POP","TOTAL","OC3","O","Y30-49","2011","628","","" +"MT","M","POP","TOTAL","OC3","O","Y50-64","2011","445","","" +"MT","M","POP","TOTAL","OC3","O","Y65-84","2011","11","","" +"MT","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","P","Y15-29","2011","95","","" +"MT","M","POP","TOTAL","OC3","P","Y30-49","2011","235","","" +"MT","M","POP","TOTAL","OC3","P","Y50-64","2011","66","","" +"MT","M","POP","TOTAL","OC3","P","Y65-84","2011","7","","" +"MT","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","Q","Y15-29","2011","170","","" +"MT","M","POP","TOTAL","OC3","Q","Y30-49","2011","590","","" +"MT","M","POP","TOTAL","OC3","Q","Y50-64","2011","282","","" +"MT","M","POP","TOTAL","OC3","Q","Y65-84","2011","11","","" +"MT","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","R","Y15-29","2011","221","","" +"MT","M","POP","TOTAL","OC3","R","Y30-49","2011","237","","" +"MT","M","POP","TOTAL","OC3","R","Y50-64","2011","52","","" +"MT","M","POP","TOTAL","OC3","R","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","S","Y15-29","2011","70","","" +"MT","M","POP","TOTAL","OC3","S","Y30-49","2011","107","","" +"MT","M","POP","TOTAL","OC3","S","Y50-64","2011","67","","" +"MT","M","POP","TOTAL","OC3","S","Y65-84","2011","12","","" +"MT","M","POP","TOTAL","OC3","S","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC3","T","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC3","T","Y50-64","2011","1","","" +"MT","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","U","Y15-29","2011","3","","" +"MT","M","POP","TOTAL","OC3","U","Y30-49","2011","10","","" +"MT","M","POP","TOTAL","OC3","U","Y50-64","2011","4","","" +"MT","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC3","U","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","A","Y15-29","2011","4","","" +"MT","M","POP","TOTAL","OC4","A","Y30-49","2011","12","","" +"MT","M","POP","TOTAL","OC4","A","Y50-64","2011","6","","" +"MT","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","B","Y15-29","2011","4","","" +"MT","M","POP","TOTAL","OC4","B","Y30-49","2011","7","","" +"MT","M","POP","TOTAL","OC4","B","Y50-64","2011","3","","" +"MT","M","POP","TOTAL","OC4","B","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","C","Y15-29","2011","218","","" +"MT","M","POP","TOTAL","OC4","C","Y30-49","2011","343","","" +"MT","M","POP","TOTAL","OC4","C","Y50-64","2011","183","","" +"MT","M","POP","TOTAL","OC4","C","Y65-84","2011","11","","" +"MT","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","D","Y15-29","2011","10","","" +"MT","M","POP","TOTAL","OC4","D","Y30-49","2011","51","","" +"MT","M","POP","TOTAL","OC4","D","Y50-64","2011","32","","" +"MT","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","E","Y15-29","2011","19","","" +"MT","M","POP","TOTAL","OC4","E","Y30-49","2011","48","","" +"MT","M","POP","TOTAL","OC4","E","Y50-64","2011","29","","" +"MT","M","POP","TOTAL","OC4","E","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","F","Y15-29","2011","67","","" +"MT","M","POP","TOTAL","OC4","F","Y30-49","2011","93","","" +"MT","M","POP","TOTAL","OC4","F","Y50-64","2011","68","","" +"MT","M","POP","TOTAL","OC4","F","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","G","Y15-29","2011","587","","" +"MT","M","POP","TOTAL","OC4","G","Y30-49","2011","562","","" +"MT","M","POP","TOTAL","OC4","G","Y50-64","2011","262","","" +"MT","M","POP","TOTAL","OC4","G","Y65-84","2011","24","","" +"MT","M","POP","TOTAL","OC4","G","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","H","Y15-29","2011","303","","" +"MT","M","POP","TOTAL","OC4","H","Y30-49","2011","657","","" +"MT","M","POP","TOTAL","OC4","H","Y50-64","2011","219","","" +"MT","M","POP","TOTAL","OC4","H","Y65-84","2011","9","","" +"MT","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","I","Y15-29","2011","195","","" +"MT","M","POP","TOTAL","OC4","I","Y30-49","2011","210","","" +"MT","M","POP","TOTAL","OC4","I","Y50-64","2011","133","","" +"MT","M","POP","TOTAL","OC4","I","Y65-84","2011","18","","" +"MT","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","J","Y15-29","2011","134","","" +"MT","M","POP","TOTAL","OC4","J","Y30-49","2011","97","","" +"MT","M","POP","TOTAL","OC4","J","Y50-64","2011","61","","" +"MT","M","POP","TOTAL","OC4","J","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","K","Y15-29","2011","346","","" +"MT","M","POP","TOTAL","OC4","K","Y30-49","2011","342","","" +"MT","M","POP","TOTAL","OC4","K","Y50-64","2011","92","","" +"MT","M","POP","TOTAL","OC4","K","Y65-84","2011","7","","" +"MT","M","POP","TOTAL","OC4","K","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","L","Y15-29","2011","5","","" +"MT","M","POP","TOTAL","OC4","L","Y30-49","2011","6","","" +"MT","M","POP","TOTAL","OC4","L","Y50-64","2011","4","","" +"MT","M","POP","TOTAL","OC4","L","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","M","Y15-29","2011","126","","" +"MT","M","POP","TOTAL","OC4","M","Y30-49","2011","70","","" +"MT","M","POP","TOTAL","OC4","M","Y50-64","2011","39","","" +"MT","M","POP","TOTAL","OC4","M","Y65-84","2011","11","","" +"MT","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","N","Y15-29","2011","184","","" +"MT","M","POP","TOTAL","OC4","N","Y30-49","2011","152","","" +"MT","M","POP","TOTAL","OC4","N","Y50-64","2011","100","","" +"MT","M","POP","TOTAL","OC4","N","Y65-84","2011","10","","" +"MT","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","O","Y15-29","2011","166","","" +"MT","M","POP","TOTAL","OC4","O","Y30-49","2011","462","","" +"MT","M","POP","TOTAL","OC4","O","Y50-64","2011","322","","" +"MT","M","POP","TOTAL","OC4","O","Y65-84","2011","15","","" +"MT","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","P","Y15-29","2011","59","","" +"MT","M","POP","TOTAL","OC4","P","Y30-49","2011","79","","" +"MT","M","POP","TOTAL","OC4","P","Y50-64","2011","39","","" +"MT","M","POP","TOTAL","OC4","P","Y65-84","2011","4","","" +"MT","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","Q","Y15-29","2011","38","","" +"MT","M","POP","TOTAL","OC4","Q","Y30-49","2011","95","","" +"MT","M","POP","TOTAL","OC4","Q","Y50-64","2011","71","","" +"MT","M","POP","TOTAL","OC4","Q","Y65-84","2011","7","","" +"MT","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","R","Y15-29","2011","259","","" +"MT","M","POP","TOTAL","OC4","R","Y30-49","2011","198","","" +"MT","M","POP","TOTAL","OC4","R","Y50-64","2011","99","","" +"MT","M","POP","TOTAL","OC4","R","Y65-84","2011","14","","" +"MT","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","S","Y15-29","2011","16","","" +"MT","M","POP","TOTAL","OC4","S","Y30-49","2011","27","","" +"MT","M","POP","TOTAL","OC4","S","Y50-64","2011","16","","" +"MT","M","POP","TOTAL","OC4","S","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","U","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC4","U","Y30-49","2011","9","","" +"MT","M","POP","TOTAL","OC4","U","Y50-64","2011","8","","" +"MT","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","A","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC5","A","Y30-49","2011","17","","" +"MT","M","POP","TOTAL","OC5","A","Y50-64","2011","25","","" +"MT","M","POP","TOTAL","OC5","A","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","B","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC5","B","Y30-49","2011","5","","" +"MT","M","POP","TOTAL","OC5","B","Y50-64","2011","7","","" +"MT","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","C","Y15-29","2011","141","","" +"MT","M","POP","TOTAL","OC5","C","Y30-49","2011","261","","" +"MT","M","POP","TOTAL","OC5","C","Y50-64","2011","152","","" +"MT","M","POP","TOTAL","OC5","C","Y65-84","2011","13","","" +"MT","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC5","D","Y30-49","2011","29","","" +"MT","M","POP","TOTAL","OC5","D","Y50-64","2011","35","","" +"MT","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","E","Y15-29","2011","3","","" +"MT","M","POP","TOTAL","OC5","E","Y30-49","2011","24","","" +"MT","M","POP","TOTAL","OC5","E","Y50-64","2011","57","","" +"MT","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","F","Y15-29","2011","25","","" +"MT","M","POP","TOTAL","OC5","F","Y30-49","2011","69","","" +"MT","M","POP","TOTAL","OC5","F","Y50-64","2011","84","","" +"MT","M","POP","TOTAL","OC5","F","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","G","Y15-29","2011","1573","","" +"MT","M","POP","TOTAL","OC5","G","Y30-49","2011","2513","","" +"MT","M","POP","TOTAL","OC5","G","Y50-64","2011","1382","","" +"MT","M","POP","TOTAL","OC5","G","Y65-84","2011","170","","" +"MT","M","POP","TOTAL","OC5","G","Y_GE85","2011","2","","" +"MT","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","H","Y15-29","2011","130","","" +"MT","M","POP","TOTAL","OC5","H","Y30-49","2011","355","","" +"MT","M","POP","TOTAL","OC5","H","Y50-64","2011","230","","" +"MT","M","POP","TOTAL","OC5","H","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","I","Y15-29","2011","1350","","" +"MT","M","POP","TOTAL","OC5","I","Y30-49","2011","1118","","" +"MT","M","POP","TOTAL","OC5","I","Y50-64","2011","675","","" +"MT","M","POP","TOTAL","OC5","I","Y65-84","2011","47","","" +"MT","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","J","Y15-29","2011","96","","" +"MT","M","POP","TOTAL","OC5","J","Y30-49","2011","58","","" +"MT","M","POP","TOTAL","OC5","J","Y50-64","2011","35","","" +"MT","M","POP","TOTAL","OC5","J","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","K","Y15-29","2011","29","","" +"MT","M","POP","TOTAL","OC5","K","Y30-49","2011","69","","" +"MT","M","POP","TOTAL","OC5","K","Y50-64","2011","33","","" +"MT","M","POP","TOTAL","OC5","K","Y65-84","2011","4","","" +"MT","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","L","Y15-29","2011","6","","" +"MT","M","POP","TOTAL","OC5","L","Y30-49","2011","21","","" +"MT","M","POP","TOTAL","OC5","L","Y50-64","2011","11","","" +"MT","M","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","M","Y15-29","2011","29","","" +"MT","M","POP","TOTAL","OC5","M","Y30-49","2011","35","","" +"MT","M","POP","TOTAL","OC5","M","Y50-64","2011","21","","" +"MT","M","POP","TOTAL","OC5","M","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","N","Y15-29","2011","268","","" +"MT","M","POP","TOTAL","OC5","N","Y30-49","2011","450","","" +"MT","M","POP","TOTAL","OC5","N","Y50-64","2011","428","","" +"MT","M","POP","TOTAL","OC5","N","Y65-84","2011","29","","" +"MT","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","O","Y15-29","2011","560","","" +"MT","M","POP","TOTAL","OC5","O","Y30-49","2011","1186","","" +"MT","M","POP","TOTAL","OC5","O","Y50-64","2011","634","","" +"MT","M","POP","TOTAL","OC5","O","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","P","Y15-29","2011","161","","" +"MT","M","POP","TOTAL","OC5","P","Y30-49","2011","175","","" +"MT","M","POP","TOTAL","OC5","P","Y50-64","2011","151","","" +"MT","M","POP","TOTAL","OC5","P","Y65-84","2011","7","","" +"MT","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","Q","Y15-29","2011","154","","" +"MT","M","POP","TOTAL","OC5","Q","Y30-49","2011","802","","" +"MT","M","POP","TOTAL","OC5","Q","Y50-64","2011","375","","" +"MT","M","POP","TOTAL","OC5","Q","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","R","Y15-29","2011","88","","" +"MT","M","POP","TOTAL","OC5","R","Y30-49","2011","114","","" +"MT","M","POP","TOTAL","OC5","R","Y50-64","2011","94","","" +"MT","M","POP","TOTAL","OC5","R","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","S","Y15-29","2011","133","","" +"MT","M","POP","TOTAL","OC5","S","Y30-49","2011","190","","" +"MT","M","POP","TOTAL","OC5","S","Y50-64","2011","105","","" +"MT","M","POP","TOTAL","OC5","S","Y65-84","2011","16","","" +"MT","M","POP","TOTAL","OC5","S","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","T","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC5","T","Y50-64","2011","3","","" +"MT","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","U","Y15-29","2011","8","","" +"MT","M","POP","TOTAL","OC5","U","Y30-49","2011","29","","" +"MT","M","POP","TOTAL","OC5","U","Y50-64","2011","13","","" +"MT","M","POP","TOTAL","OC5","U","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","A","Y15-29","2011","200","","" +"MT","M","POP","TOTAL","OC6","A","Y30-49","2011","600","","" +"MT","M","POP","TOTAL","OC6","A","Y50-64","2011","605","","" +"MT","M","POP","TOTAL","OC6","A","Y65-84","2011","114","","" +"MT","M","POP","TOTAL","OC6","A","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","C","Y15-29","2011","9","","" +"MT","M","POP","TOTAL","OC6","C","Y30-49","2011","29","","" +"MT","M","POP","TOTAL","OC6","C","Y50-64","2011","10","","" +"MT","M","POP","TOTAL","OC6","C","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC6","D","Y50-64","2011","1","","" +"MT","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","E","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC6","E","Y50-64","2011","3","","" +"MT","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","F","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC6","F","Y30-49","2011","6","","" +"MT","M","POP","TOTAL","OC6","F","Y50-64","2011","3","","" +"MT","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","G","Y15-29","2011","18","","" +"MT","M","POP","TOTAL","OC6","G","Y30-49","2011","25","","" +"MT","M","POP","TOTAL","OC6","G","Y50-64","2011","23","","" +"MT","M","POP","TOTAL","OC6","G","Y65-84","2011","4","","" +"MT","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","H","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC6","H","Y30-49","2011","6","","" +"MT","M","POP","TOTAL","OC6","H","Y50-64","2011","4","","" +"MT","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","I","Y15-29","2011","7","","" +"MT","M","POP","TOTAL","OC6","I","Y30-49","2011","17","","" +"MT","M","POP","TOTAL","OC6","I","Y50-64","2011","21","","" +"MT","M","POP","TOTAL","OC6","I","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","J","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","K","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC6","K","Y30-49","2011","1","","" +"MT","M","POP","TOTAL","OC6","K","Y50-64","2011","1","","" +"MT","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","L","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC6","L","Y30-49","2011","1","","" +"MT","M","POP","TOTAL","OC6","L","Y50-64","2011","1","","" +"MT","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","M","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC6","M","Y50-64","2011","1","","" +"MT","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","N","Y15-29","2011","49","","" +"MT","M","POP","TOTAL","OC6","N","Y30-49","2011","144","","" +"MT","M","POP","TOTAL","OC6","N","Y50-64","2011","86","","" +"MT","M","POP","TOTAL","OC6","N","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","O","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC6","O","Y30-49","2011","26","","" +"MT","M","POP","TOTAL","OC6","O","Y50-64","2011","18","","" +"MT","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","P","Y30-49","2011","13","","" +"MT","M","POP","TOTAL","OC6","P","Y50-64","2011","6","","" +"MT","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","Q","Y30-49","2011","17","","" +"MT","M","POP","TOTAL","OC6","Q","Y50-64","2011","7","","" +"MT","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","R","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC6","R","Y30-49","2011","12","","" +"MT","M","POP","TOTAL","OC6","R","Y50-64","2011","8","","" +"MT","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","S","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC6","S","Y50-64","2011","4","","" +"MT","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","T","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC6","T","Y50-64","2011","4","","" +"MT","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","A","Y15-29","2011","14","","" +"MT","M","POP","TOTAL","OC7","A","Y30-49","2011","31","","" +"MT","M","POP","TOTAL","OC7","A","Y50-64","2011","15","","" +"MT","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","B","Y15-29","2011","39","","" +"MT","M","POP","TOTAL","OC7","B","Y30-49","2011","106","","" +"MT","M","POP","TOTAL","OC7","B","Y50-64","2011","42","","" +"MT","M","POP","TOTAL","OC7","B","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","C","Y15-29","2011","1564","","" +"MT","M","POP","TOTAL","OC7","C","Y30-49","2011","2733","","" +"MT","M","POP","TOTAL","OC7","C","Y50-64","2011","1758","","" +"MT","M","POP","TOTAL","OC7","C","Y65-84","2011","81","","" +"MT","M","POP","TOTAL","OC7","C","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","D","Y15-29","2011","11","","" +"MT","M","POP","TOTAL","OC7","D","Y30-49","2011","274","","" +"MT","M","POP","TOTAL","OC7","D","Y50-64","2011","123","","" +"MT","M","POP","TOTAL","OC7","D","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","E","Y15-29","2011","26","","" +"MT","M","POP","TOTAL","OC7","E","Y30-49","2011","171","","" +"MT","M","POP","TOTAL","OC7","E","Y50-64","2011","177","","" +"MT","M","POP","TOTAL","OC7","E","Y65-84","2011","4","","" +"MT","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","F","Y15-29","2011","1683","","" +"MT","M","POP","TOTAL","OC7","F","Y30-49","2011","3158","","" +"MT","M","POP","TOTAL","OC7","F","Y50-64","2011","1555","","" +"MT","M","POP","TOTAL","OC7","F","Y65-84","2011","25","","" +"MT","M","POP","TOTAL","OC7","F","Y_GE85","2011","1","","" +"MT","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","G","Y15-29","2011","630","","" +"MT","M","POP","TOTAL","OC7","G","Y30-49","2011","1313","","" +"MT","M","POP","TOTAL","OC7","G","Y50-64","2011","714","","" +"MT","M","POP","TOTAL","OC7","G","Y65-84","2011","46","","" +"MT","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","H","Y15-29","2011","65","","" +"MT","M","POP","TOTAL","OC7","H","Y30-49","2011","204","","" +"MT","M","POP","TOTAL","OC7","H","Y50-64","2011","117","","" +"MT","M","POP","TOTAL","OC7","H","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","I","Y15-29","2011","172","","" +"MT","M","POP","TOTAL","OC7","I","Y30-49","2011","315","","" +"MT","M","POP","TOTAL","OC7","I","Y50-64","2011","224","","" +"MT","M","POP","TOTAL","OC7","I","Y65-84","2011","10","","" +"MT","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","J","Y15-29","2011","54","","" +"MT","M","POP","TOTAL","OC7","J","Y30-49","2011","157","","" +"MT","M","POP","TOTAL","OC7","J","Y50-64","2011","89","","" +"MT","M","POP","TOTAL","OC7","J","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","K","Y15-29","2011","12","","" +"MT","M","POP","TOTAL","OC7","K","Y30-49","2011","15","","" +"MT","M","POP","TOTAL","OC7","K","Y50-64","2011","16","","" +"MT","M","POP","TOTAL","OC7","K","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","L","Y15-29","2011","15","","" +"MT","M","POP","TOTAL","OC7","L","Y30-49","2011","18","","" +"MT","M","POP","TOTAL","OC7","L","Y50-64","2011","10","","" +"MT","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","M","Y15-29","2011","65","","" +"MT","M","POP","TOTAL","OC7","M","Y30-49","2011","100","","" +"MT","M","POP","TOTAL","OC7","M","Y50-64","2011","67","","" +"MT","M","POP","TOTAL","OC7","M","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","N","Y15-29","2011","50","","" +"MT","M","POP","TOTAL","OC7","N","Y30-49","2011","158","","" +"MT","M","POP","TOTAL","OC7","N","Y50-64","2011","91","","" +"MT","M","POP","TOTAL","OC7","N","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","O","Y15-29","2011","20","","" +"MT","M","POP","TOTAL","OC7","O","Y30-49","2011","328","","" +"MT","M","POP","TOTAL","OC7","O","Y50-64","2011","198","","" +"MT","M","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","P","Y15-29","2011","18","","" +"MT","M","POP","TOTAL","OC7","P","Y30-49","2011","87","","" +"MT","M","POP","TOTAL","OC7","P","Y50-64","2011","49","","" +"MT","M","POP","TOTAL","OC7","P","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","Q","Y15-29","2011","12","","" +"MT","M","POP","TOTAL","OC7","Q","Y30-49","2011","115","","" +"MT","M","POP","TOTAL","OC7","Q","Y50-64","2011","85","","" +"MT","M","POP","TOTAL","OC7","Q","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","R","Y15-29","2011","30","","" +"MT","M","POP","TOTAL","OC7","R","Y30-49","2011","80","","" +"MT","M","POP","TOTAL","OC7","R","Y50-64","2011","51","","" +"MT","M","POP","TOTAL","OC7","R","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","S","Y15-29","2011","20","","" +"MT","M","POP","TOTAL","OC7","S","Y30-49","2011","65","","" +"MT","M","POP","TOTAL","OC7","S","Y50-64","2011","44","","" +"MT","M","POP","TOTAL","OC7","S","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC7","T","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC7","T","Y50-64","2011","2","","" +"MT","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC7","U","Y30-49","2011","3","","" +"MT","M","POP","TOTAL","OC7","U","Y50-64","2011","2","","" +"MT","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","A","Y15-29","2011","6","","" +"MT","M","POP","TOTAL","OC8","A","Y30-49","2011","10","","" +"MT","M","POP","TOTAL","OC8","A","Y50-64","2011","8","","" +"MT","M","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","B","Y15-29","2011","52","","" +"MT","M","POP","TOTAL","OC8","B","Y30-49","2011","121","","" +"MT","M","POP","TOTAL","OC8","B","Y50-64","2011","105","","" +"MT","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","C","Y15-29","2011","1301","","" +"MT","M","POP","TOTAL","OC8","C","Y30-49","2011","1503","","" +"MT","M","POP","TOTAL","OC8","C","Y50-64","2011","534","","" +"MT","M","POP","TOTAL","OC8","C","Y65-84","2011","12","","" +"MT","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","D","Y15-29","2011","10","","" +"MT","M","POP","TOTAL","OC8","D","Y30-49","2011","58","","" +"MT","M","POP","TOTAL","OC8","D","Y50-64","2011","55","","" +"MT","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","E","Y15-29","2011","33","","" +"MT","M","POP","TOTAL","OC8","E","Y30-49","2011","96","","" +"MT","M","POP","TOTAL","OC8","E","Y50-64","2011","85","","" +"MT","M","POP","TOTAL","OC8","E","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","F","Y15-29","2011","190","","" +"MT","M","POP","TOTAL","OC8","F","Y30-49","2011","451","","" +"MT","M","POP","TOTAL","OC8","F","Y50-64","2011","270","","" +"MT","M","POP","TOTAL","OC8","F","Y65-84","2011","6","","" +"MT","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","G","Y15-29","2011","122","","" +"MT","M","POP","TOTAL","OC8","G","Y30-49","2011","203","","" +"MT","M","POP","TOTAL","OC8","G","Y50-64","2011","97","","" +"MT","M","POP","TOTAL","OC8","G","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","H","Y15-29","2011","499","","" +"MT","M","POP","TOTAL","OC8","H","Y30-49","2011","1381","","" +"MT","M","POP","TOTAL","OC8","H","Y50-64","2011","822","","" +"MT","M","POP","TOTAL","OC8","H","Y65-84","2011","50","","" +"MT","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","I","Y15-29","2011","19","","" +"MT","M","POP","TOTAL","OC8","I","Y30-49","2011","29","","" +"MT","M","POP","TOTAL","OC8","I","Y50-64","2011","43","","" +"MT","M","POP","TOTAL","OC8","I","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","J","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC8","J","Y30-49","2011","20","","" +"MT","M","POP","TOTAL","OC8","J","Y50-64","2011","17","","" +"MT","M","POP","TOTAL","OC8","J","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","K","Y15-29","2011","11","","" +"MT","M","POP","TOTAL","OC8","K","Y30-49","2011","13","","" +"MT","M","POP","TOTAL","OC8","K","Y50-64","2011","11","","" +"MT","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","L","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC8","L","Y30-49","2011","3","","" +"MT","M","POP","TOTAL","OC8","L","Y50-64","2011","4","","" +"MT","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","M","Y15-29","2011","9","","" +"MT","M","POP","TOTAL","OC8","M","Y30-49","2011","15","","" +"MT","M","POP","TOTAL","OC8","M","Y50-64","2011","17","","" +"MT","M","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","N","Y15-29","2011","40","","" +"MT","M","POP","TOTAL","OC8","N","Y30-49","2011","93","","" +"MT","M","POP","TOTAL","OC8","N","Y50-64","2011","107","","" +"MT","M","POP","TOTAL","OC8","N","Y65-84","2011","8","","" +"MT","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","O","Y15-29","2011","4","","" +"MT","M","POP","TOTAL","OC8","O","Y30-49","2011","70","","" +"MT","M","POP","TOTAL","OC8","O","Y50-64","2011","171","","" +"MT","M","POP","TOTAL","OC8","O","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","P","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC8","P","Y30-49","2011","8","","" +"MT","M","POP","TOTAL","OC8","P","Y50-64","2011","7","","" +"MT","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","Q","Y15-29","2011","5","","" +"MT","M","POP","TOTAL","OC8","Q","Y30-49","2011","61","","" +"MT","M","POP","TOTAL","OC8","Q","Y50-64","2011","91","","" +"MT","M","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","R","Y15-29","2011","6","","" +"MT","M","POP","TOTAL","OC8","R","Y30-49","2011","7","","" +"MT","M","POP","TOTAL","OC8","R","Y50-64","2011","8","","" +"MT","M","POP","TOTAL","OC8","R","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","S","Y15-29","2011","29","","" +"MT","M","POP","TOTAL","OC8","S","Y30-49","2011","28","","" +"MT","M","POP","TOTAL","OC8","S","Y50-64","2011","16","","" +"MT","M","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC8","T","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","U","Y15-29","2011","1","","" +"MT","M","POP","TOTAL","OC8","U","Y30-49","2011","12","","" +"MT","M","POP","TOTAL","OC8","U","Y50-64","2011","19","","" +"MT","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","A","Y15-29","2011","24","","" +"MT","M","POP","TOTAL","OC9","A","Y30-49","2011","33","","" +"MT","M","POP","TOTAL","OC9","A","Y50-64","2011","20","","" +"MT","M","POP","TOTAL","OC9","A","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","B","Y15-29","2011","14","","" +"MT","M","POP","TOTAL","OC9","B","Y30-49","2011","33","","" +"MT","M","POP","TOTAL","OC9","B","Y50-64","2011","17","","" +"MT","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","C","Y15-29","2011","607","","" +"MT","M","POP","TOTAL","OC9","C","Y30-49","2011","616","","" +"MT","M","POP","TOTAL","OC9","C","Y50-64","2011","331","","" +"MT","M","POP","TOTAL","OC9","C","Y65-84","2011","7","","" +"MT","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","D","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC9","D","Y30-49","2011","33","","" +"MT","M","POP","TOTAL","OC9","D","Y50-64","2011","76","","" +"MT","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","E","Y15-29","2011","132","","" +"MT","M","POP","TOTAL","OC9","E","Y30-49","2011","217","","" +"MT","M","POP","TOTAL","OC9","E","Y50-64","2011","191","","" +"MT","M","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","F","Y15-29","2011","529","","" +"MT","M","POP","TOTAL","OC9","F","Y30-49","2011","797","","" +"MT","M","POP","TOTAL","OC9","F","Y50-64","2011","478","","" +"MT","M","POP","TOTAL","OC9","F","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","G","Y15-29","2011","962","","" +"MT","M","POP","TOTAL","OC9","G","Y30-49","2011","860","","" +"MT","M","POP","TOTAL","OC9","G","Y50-64","2011","317","","" +"MT","M","POP","TOTAL","OC9","G","Y65-84","2011","14","","" +"MT","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","H","Y15-29","2011","281","","" +"MT","M","POP","TOTAL","OC9","H","Y30-49","2011","614","","" +"MT","M","POP","TOTAL","OC9","H","Y50-64","2011","465","","" +"MT","M","POP","TOTAL","OC9","H","Y65-84","2011","8","","" +"MT","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","I","Y15-29","2011","643","","" +"MT","M","POP","TOTAL","OC9","I","Y30-49","2011","435","","" +"MT","M","POP","TOTAL","OC9","I","Y50-64","2011","327","","" +"MT","M","POP","TOTAL","OC9","I","Y65-84","2011","9","","" +"MT","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","J","Y15-29","2011","24","","" +"MT","M","POP","TOTAL","OC9","J","Y30-49","2011","45","","" +"MT","M","POP","TOTAL","OC9","J","Y50-64","2011","45","","" +"MT","M","POP","TOTAL","OC9","J","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","K","Y15-29","2011","30","","" +"MT","M","POP","TOTAL","OC9","K","Y30-49","2011","67","","" +"MT","M","POP","TOTAL","OC9","K","Y50-64","2011","75","","" +"MT","M","POP","TOTAL","OC9","K","Y65-84","2011","2","","" +"MT","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","L","Y15-29","2011","9","","" +"MT","M","POP","TOTAL","OC9","L","Y30-49","2011","15","","" +"MT","M","POP","TOTAL","OC9","L","Y50-64","2011","12","","" +"MT","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","M","Y15-29","2011","25","","" +"MT","M","POP","TOTAL","OC9","M","Y30-49","2011","40","","" +"MT","M","POP","TOTAL","OC9","M","Y50-64","2011","32","","" +"MT","M","POP","TOTAL","OC9","M","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","N","Y15-29","2011","301","","" +"MT","M","POP","TOTAL","OC9","N","Y30-49","2011","334","","" +"MT","M","POP","TOTAL","OC9","N","Y50-64","2011","214","","" +"MT","M","POP","TOTAL","OC9","N","Y65-84","2011","5","","" +"MT","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","O","Y15-29","2011","29","","" +"MT","M","POP","TOTAL","OC9","O","Y30-49","2011","394","","" +"MT","M","POP","TOTAL","OC9","O","Y50-64","2011","546","","" +"MT","M","POP","TOTAL","OC9","O","Y65-84","2011","3","","" +"MT","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","P","Y15-29","2011","33","","" +"MT","M","POP","TOTAL","OC9","P","Y30-49","2011","160","","" +"MT","M","POP","TOTAL","OC9","P","Y50-64","2011","199","","" +"MT","M","POP","TOTAL","OC9","P","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","Q","Y15-29","2011","81","","" +"MT","M","POP","TOTAL","OC9","Q","Y30-49","2011","177","","" +"MT","M","POP","TOTAL","OC9","Q","Y50-64","2011","167","","" +"MT","M","POP","TOTAL","OC9","Q","Y65-84","2011","4","","" +"MT","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","R","Y15-29","2011","20","","" +"MT","M","POP","TOTAL","OC9","R","Y30-49","2011","52","","" +"MT","M","POP","TOTAL","OC9","R","Y50-64","2011","49","","" +"MT","M","POP","TOTAL","OC9","R","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","S","Y15-29","2011","47","","" +"MT","M","POP","TOTAL","OC9","S","Y30-49","2011","64","","" +"MT","M","POP","TOTAL","OC9","S","Y50-64","2011","71","","" +"MT","M","POP","TOTAL","OC9","S","Y65-84","2011","1","","" +"MT","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","T","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC9","T","Y30-49","2011","10","","" +"MT","M","POP","TOTAL","OC9","T","Y50-64","2011","7","","" +"MT","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","U","Y15-29","2011","2","","" +"MT","M","POP","TOTAL","OC9","U","Y30-49","2011","2","","" +"MT","M","POP","TOTAL","OC9","U","Y50-64","2011","5","","" +"MT","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"MT","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"MT","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"MT","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"MT","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"MT","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"MT","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"NL","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"NL","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"NL","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"NL","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"NL","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"NL","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"NL","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"NL","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"NL","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"NL","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"NL","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"NL","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","NAP","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","NAP","NAP","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","NAP","NAP","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","NAP","NAP","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","c","" +"NO","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC0","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC0","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC0","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC0","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC0","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","B","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","C","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","D","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","D","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","E","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","E","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","I","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","J","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","K","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","L","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","Q","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","R","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC1","T","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","U","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC1","U","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC1","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC1","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC1","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC1","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","B","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","B","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","C","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","D","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","D","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","D","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","E","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","E","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","E","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","I","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","J","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","K","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","K","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","K","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","P","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","R","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","U","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","U","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","U","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","U","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC2","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC2","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC2","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC2","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC2","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","B","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","B","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","D","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","J","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","K","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","K","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","K","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","L","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","T","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","T","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","T","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","U","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","U","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","U","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC3","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC3","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC3","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC3","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC3","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","A","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","B","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","B","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","C","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","D","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","D","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","E","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","E","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","E","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","I","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","I","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","K","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","K","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","K","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","L","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","R","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC4","T","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","T","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","T","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","U","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","U","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","U","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC4","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC4","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC4","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC4","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC4","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","B","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","B","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","C","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","D","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","E","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","G","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","K","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","Q","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","S","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","T","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","T","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","T","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","T","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","U","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","U","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC5","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC5","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC5","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC5","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC5","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC6","A","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC6","G","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","I","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC6","N","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","O","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC6","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC6","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC6","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC6","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC6","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","B","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","B","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","B","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","C","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","C","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","D","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","D","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","E","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","E","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","G","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","J","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC7","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","K","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","T","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC7","U","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC7","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC7","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC7","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC7","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC7","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","B","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","B","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","C","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","C","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","D","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","D","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","E","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","E","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","F","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","H","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","K","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","R","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC8","U","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC8","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC8","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC8","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC8","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC8","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","B","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","B","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","B","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","B","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","C","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","D","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","D","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","E","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","E","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","F","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","F","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","I","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","J","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","K","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","K","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","M","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","M","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","N","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","T","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","T","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","T","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","T","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","OC9","U","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","OC9","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","OC9","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","OC9","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","OC9","UNK","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","OC9","UNK","Y_GE85","2011",":","c","" +"NO","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","A","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","A","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","A","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","C","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","C","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","E","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","F","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","F","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","G","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","G","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","G","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","G","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","H","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","H","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","H","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","H","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","I","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","I","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","I","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","J","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","J","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","J","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","J","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","UNK","K","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","L","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","M","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","M","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","M","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","N","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","N","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","N","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","O","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","O","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","O","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","O","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","P","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","P","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","P","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","P","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","Q","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","Q","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","Q","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","Q","Y65-84","2011",":","c","" +"NO","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","R","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","R","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","R","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","S","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","S","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","S","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"NO","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"NO","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"NO","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"NO","F","POP","TOTAL","UNK","UNK","Y15-29","2011",":","c","" +"NO","F","POP","TOTAL","UNK","UNK","Y30-49","2011",":","c","" +"NO","F","POP","TOTAL","UNK","UNK","Y50-64","2011",":","c","" +"NO","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"NO","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"NO","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","NAP","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","NAP","NAP","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","NAP","NAP","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","NAP","NAP","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","c","" +"NO","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC0","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC0","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC0","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC0","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC0","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","B","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","C","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","E","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","K","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","L","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","M","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC1","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC1","T","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","T","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC1","U","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC1","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC1","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC1","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC1","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","B","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","B","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","C","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","E","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","K","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","K","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","K","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","Q","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","R","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","S","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC2","T","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC2","T","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","U","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","U","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC2","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC2","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC2","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC2","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC2","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","B","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","C","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","G","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","J","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","K","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","K","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","L","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","M","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","N","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","R","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC3","T","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC3","U","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","U","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC3","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC3","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC3","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC3","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC3","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","B","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","B","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","E","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","I","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","K","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","K","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","L","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","R","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC4","T","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC4","U","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","U","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC4","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC4","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC4","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC4","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC4","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","B","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","B","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","F","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","G","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","I","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","J","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","K","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","K","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","L","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","O","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","Q","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","R","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","S","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","T","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","T","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","T","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","T","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","U","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC5","U","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC5","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC5","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC5","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC5","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC5","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","A","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","C","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC6","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","G","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","I","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC6","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC6","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC6","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC6","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC6","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC6","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC6","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC6","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","B","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","B","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","C","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","E","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","F","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","G","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","K","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","K","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","S","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC7","T","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","T","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","T","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC7","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC7","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC7","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC7","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC7","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","B","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","B","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","C","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","E","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","H","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC8","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","K","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC8","U","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","U","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC8","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC8","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC8","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC8","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC8","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","B","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","B","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","B","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","D","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","D","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","D","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","E","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","E","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","I","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","K","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","K","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","K","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","L","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","M","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","R","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","R","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","S","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","S","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","S","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","T","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","T","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","T","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","T","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","OC9","U","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","U","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","OC9","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","OC9","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","OC9","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","OC9","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","OC9","UNK","Y_GE85","2011",":","c","" +"NO","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","A","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","A","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","A","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","A","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","B","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","UNK","B","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","C","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","C","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","C","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","C","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","D","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","E","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","E","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","F","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","F","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","F","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","F","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","G","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","G","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","G","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","G","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","H","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","H","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","H","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","H","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","I","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","I","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","I","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","J","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","J","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","J","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","J","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","UNK","K","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","UNK","L","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","L","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","L","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","M","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","M","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","M","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","N","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","N","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","N","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","N","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","O","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","O","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","O","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","O","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","P","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","P","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","P","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","P","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","Q","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","Q","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","Q","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","Q","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","UNK","R","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","R","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","UNK","S","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","S","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"NO","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"NO","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"NO","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"NO","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"NO","M","POP","TOTAL","UNK","UNK","Y15-29","2011",":","c","" +"NO","M","POP","TOTAL","UNK","UNK","Y30-49","2011",":","c","" +"NO","M","POP","TOTAL","UNK","UNK","Y50-64","2011",":","c","" +"NO","M","POP","TOTAL","UNK","UNK","Y65-84","2011",":","c","" +"NO","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"NO","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","NAP","Y15-29","2011","2331939","","" +"PL","F","POP","TOTAL","NAP","NAP","Y30-49","2011","1176278","","" +"PL","F","POP","TOTAL","NAP","NAP","Y50-64","2011","2477011","","" +"PL","F","POP","TOTAL","NAP","NAP","Y65-84","2011","2754225","","" +"PL","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","392079","","" +"PL","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","2815656","","" +"PL","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","O","Y15-29","2011","956","","" +"PL","F","POP","TOTAL","OC0","O","Y30-49","2011","1099","","" +"PL","F","POP","TOTAL","OC0","O","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC0","O","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","A","Y15-29","2011","594","","" +"PL","F","POP","TOTAL","OC1","A","Y30-49","2011","2792","","" +"PL","F","POP","TOTAL","OC1","A","Y50-64","2011","2496","","" +"PL","F","POP","TOTAL","OC1","A","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","B","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC1","B","Y30-49","2011","866","","" +"PL","F","POP","TOTAL","OC1","B","Y50-64","2011","544","","" +"PL","F","POP","TOTAL","OC1","B","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","C","Y15-29","2011","7850","","" +"PL","F","POP","TOTAL","OC1","C","Y30-49","2011","34948","","" +"PL","F","POP","TOTAL","OC1","C","Y50-64","2011","14234","","" +"PL","F","POP","TOTAL","OC1","C","Y65-84","2011","597","","" +"PL","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","D","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC1","D","Y30-49","2011","1762","","" +"PL","F","POP","TOTAL","OC1","D","Y50-64","2011","985","","" +"PL","F","POP","TOTAL","OC1","D","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","E","Y15-29","2011","352","u","" +"PL","F","POP","TOTAL","OC1","E","Y30-49","2011","1971","","" +"PL","F","POP","TOTAL","OC1","E","Y50-64","2011","1350","","" +"PL","F","POP","TOTAL","OC1","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","F","Y15-29","2011","2273","","" +"PL","F","POP","TOTAL","OC1","F","Y30-49","2011","9612","","" +"PL","F","POP","TOTAL","OC1","F","Y50-64","2011","5309","","" +"PL","F","POP","TOTAL","OC1","F","Y65-84","2011","257","u","" +"PL","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","G","Y15-29","2011","16251","","" +"PL","F","POP","TOTAL","OC1","G","Y30-49","2011","49739","","" +"PL","F","POP","TOTAL","OC1","G","Y50-64","2011","15405","","" +"PL","F","POP","TOTAL","OC1","G","Y65-84","2011","792","","" +"PL","F","POP","TOTAL","OC1","G","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","H","Y15-29","2011","1810","","" +"PL","F","POP","TOTAL","OC1","H","Y30-49","2011","9488","","" +"PL","F","POP","TOTAL","OC1","H","Y50-64","2011","3838","","" +"PL","F","POP","TOTAL","OC1","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","I","Y15-29","2011","5000","","" +"PL","F","POP","TOTAL","OC1","I","Y30-49","2011","10840","","" +"PL","F","POP","TOTAL","OC1","I","Y50-64","2011","4064","","" +"PL","F","POP","TOTAL","OC1","I","Y65-84","2011","282","u","" +"PL","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","J","Y15-29","2011","2129","","" +"PL","F","POP","TOTAL","OC1","J","Y30-49","2011","7138","","" +"PL","F","POP","TOTAL","OC1","J","Y50-64","2011","1735","","" +"PL","F","POP","TOTAL","OC1","J","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","K","Y15-29","2011","3434","","" +"PL","F","POP","TOTAL","OC1","K","Y30-49","2011","15424","","" +"PL","F","POP","TOTAL","OC1","K","Y50-64","2011","4997","","" +"PL","F","POP","TOTAL","OC1","K","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","L","Y15-29","2011","413","u","" +"PL","F","POP","TOTAL","OC1","L","Y30-49","2011","3319","","" +"PL","F","POP","TOTAL","OC1","L","Y50-64","2011","3540","","" +"PL","F","POP","TOTAL","OC1","L","Y65-84","2011","273","u","" +"PL","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","M","Y15-29","2011","3278","","" +"PL","F","POP","TOTAL","OC1","M","Y30-49","2011","12297","","" +"PL","F","POP","TOTAL","OC1","M","Y50-64","2011","4681","","" +"PL","F","POP","TOTAL","OC1","M","Y65-84","2011","426","u","" +"PL","F","POP","TOTAL","OC1","M","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","N","Y15-29","2011","1837","","" +"PL","F","POP","TOTAL","OC1","N","Y30-49","2011","6054","","" +"PL","F","POP","TOTAL","OC1","N","Y50-64","2011","2623","","" +"PL","F","POP","TOTAL","OC1","N","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","O","Y15-29","2011","9602","","" +"PL","F","POP","TOTAL","OC1","O","Y30-49","2011","40810","","" +"PL","F","POP","TOTAL","OC1","O","Y50-64","2011","21927","","" +"PL","F","POP","TOTAL","OC1","O","Y65-84","2011","340","u","" +"PL","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","P","Y15-29","2011","1755","","" +"PL","F","POP","TOTAL","OC1","P","Y30-49","2011","16777","","" +"PL","F","POP","TOTAL","OC1","P","Y50-64","2011","11691","","" +"PL","F","POP","TOTAL","OC1","P","Y65-84","2011","304","u","" +"PL","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","Q","Y15-29","2011","1358","","" +"PL","F","POP","TOTAL","OC1","Q","Y30-49","2011","20005","","" +"PL","F","POP","TOTAL","OC1","Q","Y50-64","2011","12505","","" +"PL","F","POP","TOTAL","OC1","Q","Y65-84","2011","303","u","" +"PL","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","R","Y15-29","2011","1041","","" +"PL","F","POP","TOTAL","OC1","R","Y30-49","2011","5043","","" +"PL","F","POP","TOTAL","OC1","R","Y50-64","2011","3625","","" +"PL","F","POP","TOTAL","OC1","R","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","S","Y15-29","2011","636","","" +"PL","F","POP","TOTAL","OC1","S","Y30-49","2011","2303","","" +"PL","F","POP","TOTAL","OC1","S","Y50-64","2011","1399","","" +"PL","F","POP","TOTAL","OC1","S","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","U","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC1","U","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC1","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC1","U","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC1","UNK","Y15-29","2011","512","u","" +"PL","F","POP","TOTAL","OC1","UNK","Y30-49","2011","1600","","" +"PL","F","POP","TOTAL","OC1","UNK","Y50-64","2011","821","","" +"PL","F","POP","TOTAL","OC1","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","A","Y15-29","2011","1926","","" +"PL","F","POP","TOTAL","OC2","A","Y30-49","2011","4646","","" +"PL","F","POP","TOTAL","OC2","A","Y50-64","2011","2348","","" +"PL","F","POP","TOTAL","OC2","A","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","B","Y15-29","2011","831","","" +"PL","F","POP","TOTAL","OC2","B","Y30-49","2011","2853","","" +"PL","F","POP","TOTAL","OC2","B","Y50-64","2011","1684","","" +"PL","F","POP","TOTAL","OC2","B","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","C","Y15-29","2011","26886","","" +"PL","F","POP","TOTAL","OC2","C","Y30-49","2011","50271","","" +"PL","F","POP","TOTAL","OC2","C","Y50-64","2011","14144","","" +"PL","F","POP","TOTAL","OC2","C","Y65-84","2011","501","u","" +"PL","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","D","Y15-29","2011","2124","","" +"PL","F","POP","TOTAL","OC2","D","Y30-49","2011","6316","","" +"PL","F","POP","TOTAL","OC2","D","Y50-64","2011","3151","","" +"PL","F","POP","TOTAL","OC2","D","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","E","Y15-29","2011","1418","","" +"PL","F","POP","TOTAL","OC2","E","Y30-49","2011","3900","","" +"PL","F","POP","TOTAL","OC2","E","Y50-64","2011","1780","","" +"PL","F","POP","TOTAL","OC2","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","F","Y15-29","2011","7684","","" +"PL","F","POP","TOTAL","OC2","F","Y30-49","2011","11175","","" +"PL","F","POP","TOTAL","OC2","F","Y50-64","2011","5056","","" +"PL","F","POP","TOTAL","OC2","F","Y65-84","2011","278","u","" +"PL","F","POP","TOTAL","OC2","F","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","G","Y15-29","2011","22475","","" +"PL","F","POP","TOTAL","OC2","G","Y30-49","2011","39280","","" +"PL","F","POP","TOTAL","OC2","G","Y50-64","2011","12734","","" +"PL","F","POP","TOTAL","OC2","G","Y65-84","2011","1554","","" +"PL","F","POP","TOTAL","OC2","G","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","H","Y15-29","2011","4778","","" +"PL","F","POP","TOTAL","OC2","H","Y30-49","2011","10044","","" +"PL","F","POP","TOTAL","OC2","H","Y50-64","2011","4071","","" +"PL","F","POP","TOTAL","OC2","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","I","Y15-29","2011","3643","","" +"PL","F","POP","TOTAL","OC2","I","Y30-49","2011","4970","","" +"PL","F","POP","TOTAL","OC2","I","Y50-64","2011","1604","","" +"PL","F","POP","TOTAL","OC2","I","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","J","Y15-29","2011","17754","","" +"PL","F","POP","TOTAL","OC2","J","Y30-49","2011","24128","","" +"PL","F","POP","TOTAL","OC2","J","Y50-64","2011","6016","","" +"PL","F","POP","TOTAL","OC2","J","Y65-84","2011","561","","" +"PL","F","POP","TOTAL","OC2","J","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","K","Y15-29","2011","37012","","" +"PL","F","POP","TOTAL","OC2","K","Y30-49","2011","66957","","" +"PL","F","POP","TOTAL","OC2","K","Y50-64","2011","15114","","" +"PL","F","POP","TOTAL","OC2","K","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","L","Y15-29","2011","2111","","" +"PL","F","POP","TOTAL","OC2","L","Y30-49","2011","5228","","" +"PL","F","POP","TOTAL","OC2","L","Y50-64","2011","3984","","" +"PL","F","POP","TOTAL","OC2","L","Y65-84","2011","189","u","" +"PL","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","M","Y15-29","2011","36542","","" +"PL","F","POP","TOTAL","OC2","M","Y30-49","2011","54869","","" +"PL","F","POP","TOTAL","OC2","M","Y50-64","2011","20565","","" +"PL","F","POP","TOTAL","OC2","M","Y65-84","2011","2602","","" +"PL","F","POP","TOTAL","OC2","M","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","N","Y15-29","2011","6784","","" +"PL","F","POP","TOTAL","OC2","N","Y30-49","2011","6386","","" +"PL","F","POP","TOTAL","OC2","N","Y50-64","2011","1860","","" +"PL","F","POP","TOTAL","OC2","N","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","O","Y15-29","2011","26640","","" +"PL","F","POP","TOTAL","OC2","O","Y30-49","2011","69979","","" +"PL","F","POP","TOTAL","OC2","O","Y50-64","2011","27508","","" +"PL","F","POP","TOTAL","OC2","O","Y65-84","2011","1299","","" +"PL","F","POP","TOTAL","OC2","O","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","P","Y15-29","2011","97100","","" +"PL","F","POP","TOTAL","OC2","P","Y30-49","2011","382361","","" +"PL","F","POP","TOTAL","OC2","P","Y50-64","2011","120784","","" +"PL","F","POP","TOTAL","OC2","P","Y65-84","2011","4374","","" +"PL","F","POP","TOTAL","OC2","P","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","Q","Y15-29","2011","44754","","" +"PL","F","POP","TOTAL","OC2","Q","Y30-49","2011","156685","","" +"PL","F","POP","TOTAL","OC2","Q","Y50-64","2011","73027","","" +"PL","F","POP","TOTAL","OC2","Q","Y65-84","2011","8319","","" +"PL","F","POP","TOTAL","OC2","Q","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","R","Y15-29","2011","7814","","" +"PL","F","POP","TOTAL","OC2","R","Y30-49","2011","16612","","" +"PL","F","POP","TOTAL","OC2","R","Y50-64","2011","8139","","" +"PL","F","POP","TOTAL","OC2","R","Y65-84","2011","685","","" +"PL","F","POP","TOTAL","OC2","R","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","S","Y15-29","2011","4092","","" +"PL","F","POP","TOTAL","OC2","S","Y30-49","2011","4862","","" +"PL","F","POP","TOTAL","OC2","S","Y50-64","2011","1711","","" +"PL","F","POP","TOTAL","OC2","S","Y65-84","2011","265","u","" +"PL","F","POP","TOTAL","OC2","S","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","T","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC2","T","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC2","T","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC2","T","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","U","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC2","U","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC2","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC2","UNK","Y15-29","2011","2321","","" +"PL","F","POP","TOTAL","OC2","UNK","Y30-49","2011","3774","","" +"PL","F","POP","TOTAL","OC2","UNK","Y50-64","2011","1403","","" +"PL","F","POP","TOTAL","OC2","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","A","Y15-29","2011","4013","","" +"PL","F","POP","TOTAL","OC3","A","Y30-49","2011","13439","","" +"PL","F","POP","TOTAL","OC3","A","Y50-64","2011","7744","","" +"PL","F","POP","TOTAL","OC3","A","Y65-84","2011","233","u","" +"PL","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","B","Y15-29","2011","651","","" +"PL","F","POP","TOTAL","OC3","B","Y30-49","2011","3118","","" +"PL","F","POP","TOTAL","OC3","B","Y50-64","2011","2101","","" +"PL","F","POP","TOTAL","OC3","B","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","C","Y15-29","2011","36140","","" +"PL","F","POP","TOTAL","OC3","C","Y30-49","2011","79760","","" +"PL","F","POP","TOTAL","OC3","C","Y50-64","2011","31351","","" +"PL","F","POP","TOTAL","OC3","C","Y65-84","2011","699","","" +"PL","F","POP","TOTAL","OC3","C","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","D","Y15-29","2011","1158","","" +"PL","F","POP","TOTAL","OC3","D","Y30-49","2011","5002","","" +"PL","F","POP","TOTAL","OC3","D","Y50-64","2011","3823","","" +"PL","F","POP","TOTAL","OC3","D","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","E","Y15-29","2011","1934","","" +"PL","F","POP","TOTAL","OC3","E","Y30-49","2011","4345","","" +"PL","F","POP","TOTAL","OC3","E","Y50-64","2011","2990","","" +"PL","F","POP","TOTAL","OC3","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","F","Y15-29","2011","6487","","" +"PL","F","POP","TOTAL","OC3","F","Y30-49","2011","12637","","" +"PL","F","POP","TOTAL","OC3","F","Y50-64","2011","6647","","" +"PL","F","POP","TOTAL","OC3","F","Y65-84","2011","251","u","" +"PL","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","G","Y15-29","2011","36902","","" +"PL","F","POP","TOTAL","OC3","G","Y30-49","2011","63460","","" +"PL","F","POP","TOTAL","OC3","G","Y50-64","2011","22874","","" +"PL","F","POP","TOTAL","OC3","G","Y65-84","2011","1172","","" +"PL","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","H","Y15-29","2011","8739","","" +"PL","F","POP","TOTAL","OC3","H","Y30-49","2011","19068","","" +"PL","F","POP","TOTAL","OC3","H","Y50-64","2011","7062","","" +"PL","F","POP","TOTAL","OC3","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","I","Y15-29","2011","3355","","" +"PL","F","POP","TOTAL","OC3","I","Y30-49","2011","6215","","" +"PL","F","POP","TOTAL","OC3","I","Y50-64","2011","3170","","" +"PL","F","POP","TOTAL","OC3","I","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","J","Y15-29","2011","6383","","" +"PL","F","POP","TOTAL","OC3","J","Y30-49","2011","8281","","" +"PL","F","POP","TOTAL","OC3","J","Y50-64","2011","2696","","" +"PL","F","POP","TOTAL","OC3","J","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","K","Y15-29","2011","19520","","" +"PL","F","POP","TOTAL","OC3","K","Y30-49","2011","31820","","" +"PL","F","POP","TOTAL","OC3","K","Y50-64","2011","13998","","" +"PL","F","POP","TOTAL","OC3","K","Y65-84","2011","468","u","" +"PL","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","L","Y15-29","2011","4902","","" +"PL","F","POP","TOTAL","OC3","L","Y30-49","2011","13746","","" +"PL","F","POP","TOTAL","OC3","L","Y50-64","2011","9322","","" +"PL","F","POP","TOTAL","OC3","L","Y65-84","2011","419","u","" +"PL","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","M","Y15-29","2011","25838","","" +"PL","F","POP","TOTAL","OC3","M","Y30-49","2011","40251","","" +"PL","F","POP","TOTAL","OC3","M","Y50-64","2011","17055","","" +"PL","F","POP","TOTAL","OC3","M","Y65-84","2011","1112","","" +"PL","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","N","Y15-29","2011","3887","","" +"PL","F","POP","TOTAL","OC3","N","Y30-49","2011","5127","","" +"PL","F","POP","TOTAL","OC3","N","Y50-64","2011","2372","","" +"PL","F","POP","TOTAL","OC3","N","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","O","Y15-29","2011","36142","","" +"PL","F","POP","TOTAL","OC3","O","Y30-49","2011","91351","","" +"PL","F","POP","TOTAL","OC3","O","Y50-64","2011","41739","","" +"PL","F","POP","TOTAL","OC3","O","Y65-84","2011","447","u","" +"PL","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","P","Y15-29","2011","8897","","" +"PL","F","POP","TOTAL","OC3","P","Y30-49","2011","20035","","" +"PL","F","POP","TOTAL","OC3","P","Y50-64","2011","13506","","" +"PL","F","POP","TOTAL","OC3","P","Y65-84","2011","516","u","" +"PL","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","Q","Y15-29","2011","35882","","" +"PL","F","POP","TOTAL","OC3","Q","Y30-49","2011","89886","","" +"PL","F","POP","TOTAL","OC3","Q","Y50-64","2011","51678","","" +"PL","F","POP","TOTAL","OC3","Q","Y65-84","2011","1654","","" +"PL","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","R","Y15-29","2011","9111","","" +"PL","F","POP","TOTAL","OC3","R","Y30-49","2011","16271","","" +"PL","F","POP","TOTAL","OC3","R","Y50-64","2011","8922","","" +"PL","F","POP","TOTAL","OC3","R","Y65-84","2011","411","u","" +"PL","F","POP","TOTAL","OC3","R","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","S","Y15-29","2011","3491","","" +"PL","F","POP","TOTAL","OC3","S","Y30-49","2011","5233","","" +"PL","F","POP","TOTAL","OC3","S","Y50-64","2011","2977","","" +"PL","F","POP","TOTAL","OC3","S","Y65-84","2011","468","u","" +"PL","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","T","Y15-29","2011","595","","" +"PL","F","POP","TOTAL","OC3","T","Y30-49","2011","828","","" +"PL","F","POP","TOTAL","OC3","T","Y50-64","2011","606","","" +"PL","F","POP","TOTAL","OC3","T","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","U","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC3","U","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC3","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC3","U","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC3","UNK","Y15-29","2011","2786","","" +"PL","F","POP","TOTAL","OC3","UNK","Y30-49","2011","4393","","" +"PL","F","POP","TOTAL","OC3","UNK","Y50-64","2011","1895","","" +"PL","F","POP","TOTAL","OC3","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","A","Y15-29","2011","2062","","" +"PL","F","POP","TOTAL","OC4","A","Y30-49","2011","3624","","" +"PL","F","POP","TOTAL","OC4","A","Y50-64","2011","2104","","" +"PL","F","POP","TOTAL","OC4","A","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","B","Y15-29","2011","801","","" +"PL","F","POP","TOTAL","OC4","B","Y30-49","2011","3256","","" +"PL","F","POP","TOTAL","OC4","B","Y50-64","2011","2271","","" +"PL","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","C","Y15-29","2011","23594","","" +"PL","F","POP","TOTAL","OC4","C","Y30-49","2011","41092","","" +"PL","F","POP","TOTAL","OC4","C","Y50-64","2011","16217","","" +"PL","F","POP","TOTAL","OC4","C","Y65-84","2011","212","u","" +"PL","F","POP","TOTAL","OC4","C","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","D","Y15-29","2011","1306","","" +"PL","F","POP","TOTAL","OC4","D","Y30-49","2011","4336","","" +"PL","F","POP","TOTAL","OC4","D","Y50-64","2011","3010","","" +"PL","F","POP","TOTAL","OC4","D","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","E","Y15-29","2011","2126","","" +"PL","F","POP","TOTAL","OC4","E","Y30-49","2011","3068","","" +"PL","F","POP","TOTAL","OC4","E","Y50-64","2011","1762","","" +"PL","F","POP","TOTAL","OC4","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","F","Y15-29","2011","6832","","" +"PL","F","POP","TOTAL","OC4","F","Y30-49","2011","8918","","" +"PL","F","POP","TOTAL","OC4","F","Y50-64","2011","3851","","" +"PL","F","POP","TOTAL","OC4","F","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","G","Y15-29","2011","24833","","" +"PL","F","POP","TOTAL","OC4","G","Y30-49","2011","34540","","" +"PL","F","POP","TOTAL","OC4","G","Y50-64","2011","9762","","" +"PL","F","POP","TOTAL","OC4","G","Y65-84","2011","224","u","" +"PL","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","H","Y15-29","2011","17289","","" +"PL","F","POP","TOTAL","OC4","H","Y30-49","2011","43099","","" +"PL","F","POP","TOTAL","OC4","H","Y50-64","2011","19057","","" +"PL","F","POP","TOTAL","OC4","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","I","Y15-29","2011","10129","","" +"PL","F","POP","TOTAL","OC4","I","Y30-49","2011","7851","","" +"PL","F","POP","TOTAL","OC4","I","Y50-64","2011","2624","","" +"PL","F","POP","TOTAL","OC4","I","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","J","Y15-29","2011","7140","","" +"PL","F","POP","TOTAL","OC4","J","Y30-49","2011","7310","","" +"PL","F","POP","TOTAL","OC4","J","Y50-64","2011","2837","","" +"PL","F","POP","TOTAL","OC4","J","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","K","Y15-29","2011","14768","","" +"PL","F","POP","TOTAL","OC4","K","Y30-49","2011","22523","","" +"PL","F","POP","TOTAL","OC4","K","Y50-64","2011","10565","","" +"PL","F","POP","TOTAL","OC4","K","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","L","Y15-29","2011","3918","","" +"PL","F","POP","TOTAL","OC4","L","Y30-49","2011","8019","","" +"PL","F","POP","TOTAL","OC4","L","Y50-64","2011","7066","","" +"PL","F","POP","TOTAL","OC4","L","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","L","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","M","Y15-29","2011","14590","","" +"PL","F","POP","TOTAL","OC4","M","Y30-49","2011","13010","","" +"PL","F","POP","TOTAL","OC4","M","Y50-64","2011","4970","","" +"PL","F","POP","TOTAL","OC4","M","Y65-84","2011","221","u","" +"PL","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","N","Y15-29","2011","10662","","" +"PL","F","POP","TOTAL","OC4","N","Y30-49","2011","8157","","" +"PL","F","POP","TOTAL","OC4","N","Y50-64","2011","2800","","" +"PL","F","POP","TOTAL","OC4","N","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","O","Y15-29","2011","33816","","" +"PL","F","POP","TOTAL","OC4","O","Y30-49","2011","39752","","" +"PL","F","POP","TOTAL","OC4","O","Y50-64","2011","20599","","" +"PL","F","POP","TOTAL","OC4","O","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","P","Y15-29","2011","13419","","" +"PL","F","POP","TOTAL","OC4","P","Y30-49","2011","19316","","" +"PL","F","POP","TOTAL","OC4","P","Y50-64","2011","12530","","" +"PL","F","POP","TOTAL","OC4","P","Y65-84","2011","306","u","" +"PL","F","POP","TOTAL","OC4","P","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","Q","Y15-29","2011","11041","","" +"PL","F","POP","TOTAL","OC4","Q","Y30-49","2011","17609","","" +"PL","F","POP","TOTAL","OC4","Q","Y50-64","2011","11595","","" +"PL","F","POP","TOTAL","OC4","Q","Y65-84","2011","240","u","" +"PL","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","R","Y15-29","2011","4747","","" +"PL","F","POP","TOTAL","OC4","R","Y30-49","2011","5248","","" +"PL","F","POP","TOTAL","OC4","R","Y50-64","2011","2845","","" +"PL","F","POP","TOTAL","OC4","R","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","S","Y15-29","2011","3174","","" +"PL","F","POP","TOTAL","OC4","S","Y30-49","2011","4031","","" +"PL","F","POP","TOTAL","OC4","S","Y50-64","2011","1753","","" +"PL","F","POP","TOTAL","OC4","S","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","U","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC4","U","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC4","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC4","U","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC4","UNK","Y15-29","2011","2164","","" +"PL","F","POP","TOTAL","OC4","UNK","Y30-49","2011","2156","","" +"PL","F","POP","TOTAL","OC4","UNK","Y50-64","2011","782","","" +"PL","F","POP","TOTAL","OC4","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","A","Y15-29","2011","2522","","" +"PL","F","POP","TOTAL","OC5","A","Y30-49","2011","6719","","" +"PL","F","POP","TOTAL","OC5","A","Y50-64","2011","3535","","" +"PL","F","POP","TOTAL","OC5","A","Y65-84","2011","304","u","" +"PL","F","POP","TOTAL","OC5","A","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","B","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC5","B","Y30-49","2011","604","","" +"PL","F","POP","TOTAL","OC5","B","Y50-64","2011","358","u","" +"PL","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","C","Y15-29","2011","29148","","" +"PL","F","POP","TOTAL","OC5","C","Y30-49","2011","49230","","" +"PL","F","POP","TOTAL","OC5","C","Y50-64","2011","16121","","" +"PL","F","POP","TOTAL","OC5","C","Y65-84","2011","658","","" +"PL","F","POP","TOTAL","OC5","C","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","D","Y15-29","2011","1006","","" +"PL","F","POP","TOTAL","OC5","D","Y30-49","2011","1643","","" +"PL","F","POP","TOTAL","OC5","D","Y50-64","2011","863","","" +"PL","F","POP","TOTAL","OC5","D","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","E","Y15-29","2011","192","u","" +"PL","F","POP","TOTAL","OC5","E","Y30-49","2011","767","","" +"PL","F","POP","TOTAL","OC5","E","Y50-64","2011","605","","" +"PL","F","POP","TOTAL","OC5","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","F","Y15-29","2011","1156","","" +"PL","F","POP","TOTAL","OC5","F","Y30-49","2011","2584","","" +"PL","F","POP","TOTAL","OC5","F","Y50-64","2011","921","","" +"PL","F","POP","TOTAL","OC5","F","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","G","Y15-29","2011","307795","","" +"PL","F","POP","TOTAL","OC5","G","Y30-49","2011","466043","","" +"PL","F","POP","TOTAL","OC5","G","Y50-64","2011","138872","","" +"PL","F","POP","TOTAL","OC5","G","Y65-84","2011","6199","","" +"PL","F","POP","TOTAL","OC5","G","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","H","Y15-29","2011","2611","","" +"PL","F","POP","TOTAL","OC5","H","Y30-49","2011","7714","","" +"PL","F","POP","TOTAL","OC5","H","Y50-64","2011","3574","","" +"PL","F","POP","TOTAL","OC5","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","I","Y15-29","2011","68867","","" +"PL","F","POP","TOTAL","OC5","I","Y30-49","2011","64026","","" +"PL","F","POP","TOTAL","OC5","I","Y50-64","2011","21637","","" +"PL","F","POP","TOTAL","OC5","I","Y65-84","2011","775","","" +"PL","F","POP","TOTAL","OC5","I","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","J","Y15-29","2011","9593","","" +"PL","F","POP","TOTAL","OC5","J","Y30-49","2011","4590","","" +"PL","F","POP","TOTAL","OC5","J","Y50-64","2011","1254","","" +"PL","F","POP","TOTAL","OC5","J","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","K","Y15-29","2011","3213","","" +"PL","F","POP","TOTAL","OC5","K","Y30-49","2011","2968","","" +"PL","F","POP","TOTAL","OC5","K","Y50-64","2011","765","","" +"PL","F","POP","TOTAL","OC5","K","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","L","Y15-29","2011","396","u","" +"PL","F","POP","TOTAL","OC5","L","Y30-49","2011","2556","","" +"PL","F","POP","TOTAL","OC5","L","Y50-64","2011","2712","","" +"PL","F","POP","TOTAL","OC5","L","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","M","Y15-29","2011","3370","","" +"PL","F","POP","TOTAL","OC5","M","Y30-49","2011","1965","","" +"PL","F","POP","TOTAL","OC5","M","Y50-64","2011","636","","" +"PL","F","POP","TOTAL","OC5","M","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","N","Y15-29","2011","9385","","" +"PL","F","POP","TOTAL","OC5","N","Y30-49","2011","10884","","" +"PL","F","POP","TOTAL","OC5","N","Y50-64","2011","7443","","" +"PL","F","POP","TOTAL","OC5","N","Y65-84","2011","268","u","" +"PL","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","O","Y15-29","2011","5091","","" +"PL","F","POP","TOTAL","OC5","O","Y30-49","2011","11670","","" +"PL","F","POP","TOTAL","OC5","O","Y50-64","2011","4164","","" +"PL","F","POP","TOTAL","OC5","O","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","P","Y15-29","2011","9256","","" +"PL","F","POP","TOTAL","OC5","P","Y30-49","2011","34515","","" +"PL","F","POP","TOTAL","OC5","P","Y50-64","2011","25600","","" +"PL","F","POP","TOTAL","OC5","P","Y65-84","2011","393","u","" +"PL","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","Q","Y15-29","2011","6708","","" +"PL","F","POP","TOTAL","OC5","Q","Y30-49","2011","26304","","" +"PL","F","POP","TOTAL","OC5","Q","Y50-64","2011","18523","","" +"PL","F","POP","TOTAL","OC5","Q","Y65-84","2011","469","u","" +"PL","F","POP","TOTAL","OC5","Q","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","R","Y15-29","2011","4770","","" +"PL","F","POP","TOTAL","OC5","R","Y30-49","2011","5060","","" +"PL","F","POP","TOTAL","OC5","R","Y50-64","2011","2703","","" +"PL","F","POP","TOTAL","OC5","R","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","S","Y15-29","2011","52812","","" +"PL","F","POP","TOTAL","OC5","S","Y30-49","2011","51998","","" +"PL","F","POP","TOTAL","OC5","S","Y50-64","2011","10074","","" +"PL","F","POP","TOTAL","OC5","S","Y65-84","2011","1173","","" +"PL","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","T","Y15-29","2011","872","","" +"PL","F","POP","TOTAL","OC5","T","Y30-49","2011","1638","","" +"PL","F","POP","TOTAL","OC5","T","Y50-64","2011","997","","" +"PL","F","POP","TOTAL","OC5","T","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","U","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC5","U","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC5","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC5","UNK","Y15-29","2011","5687","","" +"PL","F","POP","TOTAL","OC5","UNK","Y30-49","2011","6549","","" +"PL","F","POP","TOTAL","OC5","UNK","Y50-64","2011","2262","","" +"PL","F","POP","TOTAL","OC5","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","A","Y15-29","2011","102848","","" +"PL","F","POP","TOTAL","OC6","A","Y30-49","2011","375318","","" +"PL","F","POP","TOTAL","OC6","A","Y50-64","2011","239438","","" +"PL","F","POP","TOTAL","OC6","A","Y65-84","2011","42658","","" +"PL","F","POP","TOTAL","OC6","A","Y_GE85","2011","265","u","" +"PL","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC6","B","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","C","Y15-29","2011","266","u","" +"PL","F","POP","TOTAL","OC6","C","Y30-49","2011","1098","","" +"PL","F","POP","TOTAL","OC6","C","Y50-64","2011","541","","" +"PL","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","D","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","D","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC6","D","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","E","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","E","Y30-49","2011","209","u","" +"PL","F","POP","TOTAL","OC6","E","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","F","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","F","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC6","F","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","G","Y15-29","2011","947","","" +"PL","F","POP","TOTAL","OC6","G","Y30-49","2011","2578","","" +"PL","F","POP","TOTAL","OC6","G","Y50-64","2011","1049","","" +"PL","F","POP","TOTAL","OC6","G","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","H","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","H","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC6","H","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","I","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","I","Y30-49","2011","194","u","" +"PL","F","POP","TOTAL","OC6","I","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","I","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","J","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","J","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC6","K","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","L","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","L","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC6","L","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","M","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","M","Y30-49","2011","311","u","" +"PL","F","POP","TOTAL","OC6","M","Y50-64","2011","162","u","" +"PL","F","POP","TOTAL","OC6","M","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","N","Y15-29","2011","264","u","" +"PL","F","POP","TOTAL","OC6","N","Y30-49","2011","1080","","" +"PL","F","POP","TOTAL","OC6","N","Y50-64","2011","563","","" +"PL","F","POP","TOTAL","OC6","N","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","O","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","O","Y30-49","2011","480","u","" +"PL","F","POP","TOTAL","OC6","O","Y50-64","2011","278","u","" +"PL","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","P","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","P","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC6","P","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","Q","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","Q","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC6","Q","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","R","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","R","Y30-49","2011","201","u","" +"PL","F","POP","TOTAL","OC6","R","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","S","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","S","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC6","S","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC6","S","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","T","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC6","T","Y30-49","2011","375","u","" +"PL","F","POP","TOTAL","OC6","T","Y50-64","2011","231","u","" +"PL","F","POP","TOTAL","OC6","T","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC6","UNK","Y15-29","2011","194","u","" +"PL","F","POP","TOTAL","OC6","UNK","Y30-49","2011","474","u","" +"PL","F","POP","TOTAL","OC6","UNK","Y50-64","2011","194","u","" +"PL","F","POP","TOTAL","OC6","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC6","UNK","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","A","Y15-29","2011","719","","" +"PL","F","POP","TOTAL","OC7","A","Y30-49","2011","2299","","" +"PL","F","POP","TOTAL","OC7","A","Y50-64","2011","798","","" +"PL","F","POP","TOTAL","OC7","A","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","B","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","B","Y30-49","2011","561","","" +"PL","F","POP","TOTAL","OC7","B","Y50-64","2011","487","u","" +"PL","F","POP","TOTAL","OC7","B","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","C","Y15-29","2011","52479","","" +"PL","F","POP","TOTAL","OC7","C","Y30-49","2011","240310","","" +"PL","F","POP","TOTAL","OC7","C","Y50-64","2011","72329","","" +"PL","F","POP","TOTAL","OC7","C","Y65-84","2011","1401","","" +"PL","F","POP","TOTAL","OC7","C","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","D","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","D","Y30-49","2011","207","u","" +"PL","F","POP","TOTAL","OC7","D","Y50-64","2011","222","u","" +"PL","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","E","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","E","Y30-49","2011","336","u","" +"PL","F","POP","TOTAL","OC7","E","Y50-64","2011","176","u","" +"PL","F","POP","TOTAL","OC7","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","F","Y15-29","2011","871","","" +"PL","F","POP","TOTAL","OC7","F","Y30-49","2011","2755","","" +"PL","F","POP","TOTAL","OC7","F","Y50-64","2011","1039","","" +"PL","F","POP","TOTAL","OC7","F","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","F","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","G","Y15-29","2011","1747","","" +"PL","F","POP","TOTAL","OC7","G","Y30-49","2011","5511","","" +"PL","F","POP","TOTAL","OC7","G","Y50-64","2011","1993","","" +"PL","F","POP","TOTAL","OC7","G","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","G","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","H","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","H","Y30-49","2011","1415","","" +"PL","F","POP","TOTAL","OC7","H","Y50-64","2011","794","","" +"PL","F","POP","TOTAL","OC7","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","I","Y15-29","2011","194","u","" +"PL","F","POP","TOTAL","OC7","I","Y30-49","2011","432","u","" +"PL","F","POP","TOTAL","OC7","I","Y50-64","2011","182","u","" +"PL","F","POP","TOTAL","OC7","I","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","J","Y15-29","2011","236","u","" +"PL","F","POP","TOTAL","OC7","J","Y30-49","2011","609","","" +"PL","F","POP","TOTAL","OC7","J","Y50-64","2011","201","u","" +"PL","F","POP","TOTAL","OC7","J","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","K","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","K","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC7","K","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","L","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","L","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC7","L","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","M","Y15-29","2011","260","u","" +"PL","F","POP","TOTAL","OC7","M","Y30-49","2011","627","","" +"PL","F","POP","TOTAL","OC7","M","Y50-64","2011","241","u","" +"PL","F","POP","TOTAL","OC7","M","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","N","Y15-29","2011","361","u","" +"PL","F","POP","TOTAL","OC7","N","Y30-49","2011","716","","" +"PL","F","POP","TOTAL","OC7","N","Y50-64","2011","325","u","" +"PL","F","POP","TOTAL","OC7","N","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","O","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","O","Y30-49","2011","300","u","" +"PL","F","POP","TOTAL","OC7","O","Y50-64","2011","257","u","" +"PL","F","POP","TOTAL","OC7","O","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","P","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","P","Y30-49","2011","287","u","" +"PL","F","POP","TOTAL","OC7","P","Y50-64","2011","272","u","" +"PL","F","POP","TOTAL","OC7","P","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","Q","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","Q","Y30-49","2011","649","","" +"PL","F","POP","TOTAL","OC7","Q","Y50-64","2011","574","","" +"PL","F","POP","TOTAL","OC7","Q","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","R","Y15-29","2011","308","u","" +"PL","F","POP","TOTAL","OC7","R","Y30-49","2011","834","","" +"PL","F","POP","TOTAL","OC7","R","Y50-64","2011","434","u","" +"PL","F","POP","TOTAL","OC7","R","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","S","Y15-29","2011","683","","" +"PL","F","POP","TOTAL","OC7","S","Y30-49","2011","3008","","" +"PL","F","POP","TOTAL","OC7","S","Y50-64","2011","1271","","" +"PL","F","POP","TOTAL","OC7","S","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","T","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC7","T","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC7","T","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC7","U","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC7","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC7","UNK","Y15-29","2011","816","","" +"PL","F","POP","TOTAL","OC7","UNK","Y30-49","2011","2811","","" +"PL","F","POP","TOTAL","OC7","UNK","Y50-64","2011","797","","" +"PL","F","POP","TOTAL","OC7","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","A","Y15-29","2011","274","u","" +"PL","F","POP","TOTAL","OC8","A","Y30-49","2011","731","","" +"PL","F","POP","TOTAL","OC8","A","Y50-64","2011","243","u","" +"PL","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","B","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","B","Y30-49","2011","1020","","" +"PL","F","POP","TOTAL","OC8","B","Y50-64","2011","514","u","" +"PL","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","C","Y15-29","2011","29978","","" +"PL","F","POP","TOTAL","OC8","C","Y30-49","2011","78856","","" +"PL","F","POP","TOTAL","OC8","C","Y50-64","2011","21739","","" +"PL","F","POP","TOTAL","OC8","C","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","C","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","D","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","D","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC8","D","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","D","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","E","Y15-29","2011","253","u","" +"PL","F","POP","TOTAL","OC8","E","Y30-49","2011","753","","" +"PL","F","POP","TOTAL","OC8","E","Y50-64","2011","289","u","" +"PL","F","POP","TOTAL","OC8","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","F","Y15-29","2011","299","u","" +"PL","F","POP","TOTAL","OC8","F","Y30-49","2011","754","","" +"PL","F","POP","TOTAL","OC8","F","Y50-64","2011","261","u","" +"PL","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","G","Y15-29","2011","996","","" +"PL","F","POP","TOTAL","OC8","G","Y30-49","2011","2098","","" +"PL","F","POP","TOTAL","OC8","G","Y50-64","2011","643","","" +"PL","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","H","Y15-29","2011","984","","" +"PL","F","POP","TOTAL","OC8","H","Y30-49","2011","9180","","" +"PL","F","POP","TOTAL","OC8","H","Y50-64","2011","3300","","" +"PL","F","POP","TOTAL","OC8","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","I","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","I","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC8","I","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","J","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","J","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC8","J","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","K","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","K","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC8","K","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","L","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","L","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC8","L","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","M","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","M","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC8","M","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","M","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","N","Y15-29","2011","285","u","" +"PL","F","POP","TOTAL","OC8","N","Y30-49","2011","461","u","" +"PL","F","POP","TOTAL","OC8","N","Y50-64","2011","198","u","" +"PL","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","O","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","O","Y30-49","2011","219","u","" +"PL","F","POP","TOTAL","OC8","O","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","O","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","P","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","P","Y30-49","2011","235","u","" +"PL","F","POP","TOTAL","OC8","P","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","Q","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","Q","Y30-49","2011","556","","" +"PL","F","POP","TOTAL","OC8","Q","Y50-64","2011","363","u","" +"PL","F","POP","TOTAL","OC8","Q","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","R","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","R","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC8","R","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","S","Y15-29","2011","759","","" +"PL","F","POP","TOTAL","OC8","S","Y30-49","2011","2913","","" +"PL","F","POP","TOTAL","OC8","S","Y50-64","2011","1336","","" +"PL","F","POP","TOTAL","OC8","S","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","T","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","T","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC8","T","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","T","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","U","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC8","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC8","UNK","Y15-29","2011","518","u","" +"PL","F","POP","TOTAL","OC8","UNK","Y30-49","2011","1110","","" +"PL","F","POP","TOTAL","OC8","UNK","Y50-64","2011","379","u","" +"PL","F","POP","TOTAL","OC8","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","A","Y15-29","2011","3866","","" +"PL","F","POP","TOTAL","OC9","A","Y30-49","2011","8407","","" +"PL","F","POP","TOTAL","OC9","A","Y50-64","2011","4090","","" +"PL","F","POP","TOTAL","OC9","A","Y65-84","2011","200","u","" +"PL","F","POP","TOTAL","OC9","A","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","B","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC9","B","Y30-49","2011","1671","","" +"PL","F","POP","TOTAL","OC9","B","Y50-64","2011","1113","","" +"PL","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","C","Y15-29","2011","24835","","" +"PL","F","POP","TOTAL","OC9","C","Y30-49","2011","67766","","" +"PL","F","POP","TOTAL","OC9","C","Y50-64","2011","29147","","" +"PL","F","POP","TOTAL","OC9","C","Y65-84","2011","376","u","" +"PL","F","POP","TOTAL","OC9","C","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","D","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC9","D","Y30-49","2011","1127","","" +"PL","F","POP","TOTAL","OC9","D","Y50-64","2011","1306","","" +"PL","F","POP","TOTAL","OC9","D","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","E","Y15-29","2011","578","","" +"PL","F","POP","TOTAL","OC9","E","Y30-49","2011","3506","","" +"PL","F","POP","TOTAL","OC9","E","Y50-64","2011","2489","","" +"PL","F","POP","TOTAL","OC9","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","F","Y15-29","2011","600","","" +"PL","F","POP","TOTAL","OC9","F","Y30-49","2011","2702","","" +"PL","F","POP","TOTAL","OC9","F","Y50-64","2011","2110","","" +"PL","F","POP","TOTAL","OC9","F","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","G","Y15-29","2011","5618","","" +"PL","F","POP","TOTAL","OC9","G","Y30-49","2011","12435","","" +"PL","F","POP","TOTAL","OC9","G","Y50-64","2011","7786","","" +"PL","F","POP","TOTAL","OC9","G","Y65-84","2011","357","u","" +"PL","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","H","Y15-29","2011","1726","","" +"PL","F","POP","TOTAL","OC9","H","Y30-49","2011","4651","","" +"PL","F","POP","TOTAL","OC9","H","Y50-64","2011","3576","","" +"PL","F","POP","TOTAL","OC9","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","I","Y15-29","2011","8575","","" +"PL","F","POP","TOTAL","OC9","I","Y30-49","2011","19615","","" +"PL","F","POP","TOTAL","OC9","I","Y50-64","2011","9994","","" +"PL","F","POP","TOTAL","OC9","I","Y65-84","2011","179","u","" +"PL","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","J","Y15-29","2011","870","","" +"PL","F","POP","TOTAL","OC9","J","Y30-49","2011","990","","" +"PL","F","POP","TOTAL","OC9","J","Y50-64","2011","805","","" +"PL","F","POP","TOTAL","OC9","J","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","K","Y15-29","2011","545","","" +"PL","F","POP","TOTAL","OC9","K","Y30-49","2011","2547","","" +"PL","F","POP","TOTAL","OC9","K","Y50-64","2011","2849","","" +"PL","F","POP","TOTAL","OC9","K","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","L","Y15-29","2011","443","u","" +"PL","F","POP","TOTAL","OC9","L","Y30-49","2011","4340","","" +"PL","F","POP","TOTAL","OC9","L","Y50-64","2011","5322","","" +"PL","F","POP","TOTAL","OC9","L","Y65-84","2011","209","u","" +"PL","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","M","Y15-29","2011","725","","" +"PL","F","POP","TOTAL","OC9","M","Y30-49","2011","1652","","" +"PL","F","POP","TOTAL","OC9","M","Y50-64","2011","1582","","" +"PL","F","POP","TOTAL","OC9","M","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","N","Y15-29","2011","8322","","" +"PL","F","POP","TOTAL","OC9","N","Y30-49","2011","34017","","" +"PL","F","POP","TOTAL","OC9","N","Y50-64","2011","27699","","" +"PL","F","POP","TOTAL","OC9","N","Y65-84","2011","639","","" +"PL","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","O","Y15-29","2011","1965","","" +"PL","F","POP","TOTAL","OC9","O","Y30-49","2011","13294","","" +"PL","F","POP","TOTAL","OC9","O","Y50-64","2011","11115","","" +"PL","F","POP","TOTAL","OC9","O","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","P","Y15-29","2011","4937","","" +"PL","F","POP","TOTAL","OC9","P","Y30-49","2011","53230","","" +"PL","F","POP","TOTAL","OC9","P","Y50-64","2011","47890","","" +"PL","F","POP","TOTAL","OC9","P","Y65-84","2011","470","u","" +"PL","F","POP","TOTAL","OC9","P","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","Q","Y15-29","2011","4538","","" +"PL","F","POP","TOTAL","OC9","Q","Y30-49","2011","97934","","" +"PL","F","POP","TOTAL","OC9","Q","Y50-64","2011","57488","","" +"PL","F","POP","TOTAL","OC9","Q","Y65-84","2011","416","u","" +"PL","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","R","Y15-29","2011","1058","","" +"PL","F","POP","TOTAL","OC9","R","Y30-49","2011","4517","","" +"PL","F","POP","TOTAL","OC9","R","Y50-64","2011","4399","","" +"PL","F","POP","TOTAL","OC9","R","Y65-84","2011","195","u","" +"PL","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","S","Y15-29","2011","826","","" +"PL","F","POP","TOTAL","OC9","S","Y30-49","2011","3733","","" +"PL","F","POP","TOTAL","OC9","S","Y50-64","2011","2801","","" +"PL","F","POP","TOTAL","OC9","S","Y65-84","2011","207","u","" +"PL","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","T","Y15-29","2011","254","u","" +"PL","F","POP","TOTAL","OC9","T","Y30-49","2011","681","","" +"PL","F","POP","TOTAL","OC9","T","Y50-64","2011","549","","" +"PL","F","POP","TOTAL","OC9","T","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","U","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","OC9","U","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","OC9","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","OC9","UNK","Y15-29","2011","1912","","" +"PL","F","POP","TOTAL","OC9","UNK","Y30-49","2011","5096","","" +"PL","F","POP","TOTAL","OC9","UNK","Y50-64","2011","2693","","" +"PL","F","POP","TOTAL","OC9","UNK","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","A","Y15-29","2011","1410","","" +"PL","F","POP","TOTAL","UNK","A","Y30-49","2011","3731","","" +"PL","F","POP","TOTAL","UNK","A","Y50-64","2011","1994","","" +"PL","F","POP","TOTAL","UNK","A","Y65-84","2011","200","u","" +"PL","F","POP","TOTAL","UNK","A","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","B","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","UNK","B","Y30-49","2011","310","u","" +"PL","F","POP","TOTAL","UNK","B","Y50-64","2011","220","u","" +"PL","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","C","Y15-29","2011","4242","","" +"PL","F","POP","TOTAL","UNK","C","Y30-49","2011","10341","","" +"PL","F","POP","TOTAL","UNK","C","Y50-64","2011","4339","","" +"PL","F","POP","TOTAL","UNK","C","Y65-84","2011","207","u","" +"PL","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","D","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","UNK","D","Y30-49","2011","402","u","" +"PL","F","POP","TOTAL","UNK","D","Y50-64","2011","310","u","" +"PL","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","E","Y15-29","2011","189","u","" +"PL","F","POP","TOTAL","UNK","E","Y30-49","2011","654","","" +"PL","F","POP","TOTAL","UNK","E","Y50-64","2011","387","u","" +"PL","F","POP","TOTAL","UNK","E","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","F","Y15-29","2011","604","","" +"PL","F","POP","TOTAL","UNK","F","Y30-49","2011","1197","","" +"PL","F","POP","TOTAL","UNK","F","Y50-64","2011","715","","" +"PL","F","POP","TOTAL","UNK","F","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","F","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","G","Y15-29","2011","2340","","" +"PL","F","POP","TOTAL","UNK","G","Y30-49","2011","4684","","" +"PL","F","POP","TOTAL","UNK","G","Y50-64","2011","2069","","" +"PL","F","POP","TOTAL","UNK","G","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","G","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","H","Y15-29","2011","771","","" +"PL","F","POP","TOTAL","UNK","H","Y30-49","2011","2042","","" +"PL","F","POP","TOTAL","UNK","H","Y50-64","2011","1120","","" +"PL","F","POP","TOTAL","UNK","H","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","I","Y15-29","2011","1003","","" +"PL","F","POP","TOTAL","UNK","I","Y30-49","2011","1447","","" +"PL","F","POP","TOTAL","UNK","I","Y50-64","2011","822","","" +"PL","F","POP","TOTAL","UNK","I","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","J","Y15-29","2011","844","","" +"PL","F","POP","TOTAL","UNK","J","Y30-49","2011","736","","" +"PL","F","POP","TOTAL","UNK","J","Y50-64","2011","303","u","" +"PL","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","K","Y15-29","2011","1220","","" +"PL","F","POP","TOTAL","UNK","K","Y30-49","2011","1381","","" +"PL","F","POP","TOTAL","UNK","K","Y50-64","2011","643","","" +"PL","F","POP","TOTAL","UNK","K","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","L","Y15-29","2011","428","u","" +"PL","F","POP","TOTAL","UNK","L","Y30-49","2011","1705","","" +"PL","F","POP","TOTAL","UNK","L","Y50-64","2011","1628","","" +"PL","F","POP","TOTAL","UNK","L","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","M","Y15-29","2011","1389","","" +"PL","F","POP","TOTAL","UNK","M","Y30-49","2011","1707","","" +"PL","F","POP","TOTAL","UNK","M","Y50-64","2011","913","","" +"PL","F","POP","TOTAL","UNK","M","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","N","Y15-29","2011","864","","" +"PL","F","POP","TOTAL","UNK","N","Y30-49","2011","1612","","" +"PL","F","POP","TOTAL","UNK","N","Y50-64","2011","1151","","" +"PL","F","POP","TOTAL","UNK","N","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"PL","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"PL","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"PL","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"PL","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","O","Y15-29","2011","1948","","" +"PL","F","POP","TOTAL","UNK","O","Y30-49","2011","3353","","" +"PL","F","POP","TOTAL","UNK","O","Y50-64","2011","1964","","" +"PL","F","POP","TOTAL","UNK","O","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","P","Y15-29","2011","1949","","" +"PL","F","POP","TOTAL","UNK","P","Y30-49","2011","6182","","" +"PL","F","POP","TOTAL","UNK","P","Y50-64","2011","4946","","" +"PL","F","POP","TOTAL","UNK","P","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","Q","Y15-29","2011","901","","" +"PL","F","POP","TOTAL","UNK","Q","Y30-49","2011","3179","","" +"PL","F","POP","TOTAL","UNK","Q","Y50-64","2011","1978","","" +"PL","F","POP","TOTAL","UNK","Q","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","R","Y15-29","2011","767","","" +"PL","F","POP","TOTAL","UNK","R","Y30-49","2011","1232","","" +"PL","F","POP","TOTAL","UNK","R","Y50-64","2011","699","","" +"PL","F","POP","TOTAL","UNK","R","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","S","Y15-29","2011","500","u","" +"PL","F","POP","TOTAL","UNK","S","Y30-49","2011","1115","","" +"PL","F","POP","TOTAL","UNK","S","Y50-64","2011","785","","" +"PL","F","POP","TOTAL","UNK","S","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","T","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","UNK","T","Y30-49","2011","195","u","" +"PL","F","POP","TOTAL","UNK","T","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","UNK","T","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","U","Y15-29","2011",":","u","" +"PL","F","POP","TOTAL","UNK","U","Y30-49","2011",":","u","" +"PL","F","POP","TOTAL","UNK","U","Y50-64","2011",":","u","" +"PL","F","POP","TOTAL","UNK","U","Y65-84","2011",":","u","" +"PL","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"PL","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"PL","F","POP","TOTAL","UNK","UNK","Y15-29","2011","55485","","" +"PL","F","POP","TOTAL","UNK","UNK","Y30-49","2011","134348","","" +"PL","F","POP","TOTAL","UNK","UNK","Y50-64","2011","67936","","" +"PL","F","POP","TOTAL","UNK","UNK","Y65-84","2011","1340","","" +"PL","F","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","u","" +"PL","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","NAP","Y15-29","2011","2020345","","" +"PL","M","POP","TOTAL","NAP","NAP","Y30-49","2011","782071","","" +"PL","M","POP","TOTAL","NAP","NAP","Y50-64","2011","1607758","","" +"PL","M","POP","TOTAL","NAP","NAP","Y65-84","2011","1682444","","" +"PL","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","137866","","" +"PL","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","2965914","","" +"PL","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","O","Y15-29","2011","32180","","" +"PL","M","POP","TOTAL","OC0","O","Y30-49","2011","54927","","" +"PL","M","POP","TOTAL","OC0","O","Y50-64","2011","8018","","" +"PL","M","POP","TOTAL","OC0","O","Y65-84","2011","226","u","" +"PL","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","A","Y15-29","2011","1112","","" +"PL","M","POP","TOTAL","OC1","A","Y30-49","2011","5358","","" +"PL","M","POP","TOTAL","OC1","A","Y50-64","2011","4567","","" +"PL","M","POP","TOTAL","OC1","A","Y65-84","2011","235","u","" +"PL","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","B","Y15-29","2011","502","u","" +"PL","M","POP","TOTAL","OC1","B","Y30-49","2011","2682","","" +"PL","M","POP","TOTAL","OC1","B","Y50-64","2011","2569","","" +"PL","M","POP","TOTAL","OC1","B","Y65-84","2011","195","u","" +"PL","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","C","Y15-29","2011","15738","","" +"PL","M","POP","TOTAL","OC1","C","Y30-49","2011","77895","","" +"PL","M","POP","TOTAL","OC1","C","Y50-64","2011","37674","","" +"PL","M","POP","TOTAL","OC1","C","Y65-84","2011","2502","","" +"PL","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","D","Y15-29","2011","412","u","" +"PL","M","POP","TOTAL","OC1","D","Y30-49","2011","4619","","" +"PL","M","POP","TOTAL","OC1","D","Y50-64","2011","3568","","" +"PL","M","POP","TOTAL","OC1","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","E","Y15-29","2011","623","","" +"PL","M","POP","TOTAL","OC1","E","Y30-49","2011","3954","","" +"PL","M","POP","TOTAL","OC1","E","Y50-64","2011","3895","","" +"PL","M","POP","TOTAL","OC1","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","F","Y15-29","2011","12487","","" +"PL","M","POP","TOTAL","OC1","F","Y30-49","2011","50243","","" +"PL","M","POP","TOTAL","OC1","F","Y50-64","2011","30969","","" +"PL","M","POP","TOTAL","OC1","F","Y65-84","2011","1885","","" +"PL","M","POP","TOTAL","OC1","F","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","G","Y15-29","2011","15700","","" +"PL","M","POP","TOTAL","OC1","G","Y30-49","2011","63591","","" +"PL","M","POP","TOTAL","OC1","G","Y50-64","2011","23496","","" +"PL","M","POP","TOTAL","OC1","G","Y65-84","2011","1511","","" +"PL","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","H","Y15-29","2011","4185","","" +"PL","M","POP","TOTAL","OC1","H","Y30-49","2011","18309","","" +"PL","M","POP","TOTAL","OC1","H","Y50-64","2011","9529","","" +"PL","M","POP","TOTAL","OC1","H","Y65-84","2011","324","u","" +"PL","M","POP","TOTAL","OC1","H","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","I","Y15-29","2011","3061","","" +"PL","M","POP","TOTAL","OC1","I","Y30-49","2011","7158","","" +"PL","M","POP","TOTAL","OC1","I","Y50-64","2011","3381","","" +"PL","M","POP","TOTAL","OC1","I","Y65-84","2011","245","u","" +"PL","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","J","Y15-29","2011","4169","","" +"PL","M","POP","TOTAL","OC1","J","Y30-49","2011","16811","","" +"PL","M","POP","TOTAL","OC1","J","Y50-64","2011","3433","","" +"PL","M","POP","TOTAL","OC1","J","Y65-84","2011","190","u","" +"PL","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","K","Y15-29","2011","2234","","" +"PL","M","POP","TOTAL","OC1","K","Y30-49","2011","13757","","" +"PL","M","POP","TOTAL","OC1","K","Y50-64","2011","2970","","" +"PL","M","POP","TOTAL","OC1","K","Y65-84","2011","209","u","" +"PL","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","L","Y15-29","2011","289","u","" +"PL","M","POP","TOTAL","OC1","L","Y30-49","2011","2788","","" +"PL","M","POP","TOTAL","OC1","L","Y50-64","2011","4107","","" +"PL","M","POP","TOTAL","OC1","L","Y65-84","2011","400","u","" +"PL","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","M","Y15-29","2011","2617","","" +"PL","M","POP","TOTAL","OC1","M","Y30-49","2011","11683","","" +"PL","M","POP","TOTAL","OC1","M","Y50-64","2011","4574","","" +"PL","M","POP","TOTAL","OC1","M","Y65-84","2011","921","","" +"PL","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","N","Y15-29","2011","2050","","" +"PL","M","POP","TOTAL","OC1","N","Y30-49","2011","7410","","" +"PL","M","POP","TOTAL","OC1","N","Y50-64","2011","4606","","" +"PL","M","POP","TOTAL","OC1","N","Y65-84","2011","305","u","" +"PL","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","O","Y15-29","2011","3997","","" +"PL","M","POP","TOTAL","OC1","O","Y30-49","2011","24998","","" +"PL","M","POP","TOTAL","OC1","O","Y50-64","2011","15048","","" +"PL","M","POP","TOTAL","OC1","O","Y65-84","2011","1050","","" +"PL","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","P","Y15-29","2011","545","","" +"PL","M","POP","TOTAL","OC1","P","Y30-49","2011","5489","","" +"PL","M","POP","TOTAL","OC1","P","Y50-64","2011","4525","","" +"PL","M","POP","TOTAL","OC1","P","Y65-84","2011","457","u","" +"PL","M","POP","TOTAL","OC1","P","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","Q","Y15-29","2011","538","u","" +"PL","M","POP","TOTAL","OC1","Q","Y30-49","2011","3158","","" +"PL","M","POP","TOTAL","OC1","Q","Y50-64","2011","3109","","" +"PL","M","POP","TOTAL","OC1","Q","Y65-84","2011","214","u","" +"PL","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","R","Y15-29","2011","732","","" +"PL","M","POP","TOTAL","OC1","R","Y30-49","2011","3607","","" +"PL","M","POP","TOTAL","OC1","R","Y50-64","2011","2582","","" +"PL","M","POP","TOTAL","OC1","R","Y65-84","2011","222","u","" +"PL","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","S","Y15-29","2011","621","","" +"PL","M","POP","TOTAL","OC1","S","Y30-49","2011","2394","","" +"PL","M","POP","TOTAL","OC1","S","Y50-64","2011","1448","","" +"PL","M","POP","TOTAL","OC1","S","Y65-84","2011","202","u","" +"PL","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC1","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC1","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC1","UNK","Y15-29","2011","626","","" +"PL","M","POP","TOTAL","OC1","UNK","Y30-49","2011","2364","","" +"PL","M","POP","TOTAL","OC1","UNK","Y50-64","2011","1198","","" +"PL","M","POP","TOTAL","OC1","UNK","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","A","Y15-29","2011","2121","","" +"PL","M","POP","TOTAL","OC2","A","Y30-49","2011","6112","","" +"PL","M","POP","TOTAL","OC2","A","Y50-64","2011","3212","","" +"PL","M","POP","TOTAL","OC2","A","Y65-84","2011","283","u","" +"PL","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","B","Y15-29","2011","2474","","" +"PL","M","POP","TOTAL","OC2","B","Y30-49","2011","8358","","" +"PL","M","POP","TOTAL","OC2","B","Y50-64","2011","3751","","" +"PL","M","POP","TOTAL","OC2","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","C","Y15-29","2011","30512","","" +"PL","M","POP","TOTAL","OC2","C","Y30-49","2011","59055","","" +"PL","M","POP","TOTAL","OC2","C","Y50-64","2011","20001","","" +"PL","M","POP","TOTAL","OC2","C","Y65-84","2011","1911","","" +"PL","M","POP","TOTAL","OC2","C","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","D","Y15-29","2011","2892","","" +"PL","M","POP","TOTAL","OC2","D","Y30-49","2011","10033","","" +"PL","M","POP","TOTAL","OC2","D","Y50-64","2011","4728","","" +"PL","M","POP","TOTAL","OC2","D","Y65-84","2011","364","u","" +"PL","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","E","Y15-29","2011","1109","","" +"PL","M","POP","TOTAL","OC2","E","Y30-49","2011","2837","","" +"PL","M","POP","TOTAL","OC2","E","Y50-64","2011","1905","","" +"PL","M","POP","TOTAL","OC2","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","F","Y15-29","2011","11980","","" +"PL","M","POP","TOTAL","OC2","F","Y30-49","2011","19926","","" +"PL","M","POP","TOTAL","OC2","F","Y50-64","2011","12264","","" +"PL","M","POP","TOTAL","OC2","F","Y65-84","2011","1853","","" +"PL","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","G","Y15-29","2011","13495","","" +"PL","M","POP","TOTAL","OC2","G","Y30-49","2011","25492","","" +"PL","M","POP","TOTAL","OC2","G","Y50-64","2011","6259","","" +"PL","M","POP","TOTAL","OC2","G","Y65-84","2011","829","","" +"PL","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","H","Y15-29","2011","3523","","" +"PL","M","POP","TOTAL","OC2","H","Y30-49","2011","7487","","" +"PL","M","POP","TOTAL","OC2","H","Y50-64","2011","4162","","" +"PL","M","POP","TOTAL","OC2","H","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","I","Y15-29","2011","1445","","" +"PL","M","POP","TOTAL","OC2","I","Y30-49","2011","2046","","" +"PL","M","POP","TOTAL","OC2","I","Y50-64","2011","744","","" +"PL","M","POP","TOTAL","OC2","I","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","J","Y15-29","2011","36460","","" +"PL","M","POP","TOTAL","OC2","J","Y30-49","2011","49876","","" +"PL","M","POP","TOTAL","OC2","J","Y50-64","2011","8142","","" +"PL","M","POP","TOTAL","OC2","J","Y65-84","2011","902","","" +"PL","M","POP","TOTAL","OC2","J","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","K","Y15-29","2011","19367","","" +"PL","M","POP","TOTAL","OC2","K","Y30-49","2011","32785","","" +"PL","M","POP","TOTAL","OC2","K","Y50-64","2011","5079","","" +"PL","M","POP","TOTAL","OC2","K","Y65-84","2011","280","u","" +"PL","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","L","Y15-29","2011","901","","" +"PL","M","POP","TOTAL","OC2","L","Y30-49","2011","2231","","" +"PL","M","POP","TOTAL","OC2","L","Y50-64","2011","2024","","" +"PL","M","POP","TOTAL","OC2","L","Y65-84","2011","372","u","" +"PL","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","M","Y15-29","2011","28765","","" +"PL","M","POP","TOTAL","OC2","M","Y30-49","2011","58142","","" +"PL","M","POP","TOTAL","OC2","M","Y50-64","2011","27366","","" +"PL","M","POP","TOTAL","OC2","M","Y65-84","2011","6464","","" +"PL","M","POP","TOTAL","OC2","M","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","N","Y15-29","2011","2913","","" +"PL","M","POP","TOTAL","OC2","N","Y30-49","2011","3683","","" +"PL","M","POP","TOTAL","OC2","N","Y50-64","2011","1168","","" +"PL","M","POP","TOTAL","OC2","N","Y65-84","2011","191","u","" +"PL","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","O","Y15-29","2011","10057","","" +"PL","M","POP","TOTAL","OC2","O","Y30-49","2011","32453","","" +"PL","M","POP","TOTAL","OC2","O","Y50-64","2011","13953","","" +"PL","M","POP","TOTAL","OC2","O","Y65-84","2011","1793","","" +"PL","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","P","Y15-29","2011","21700","","" +"PL","M","POP","TOTAL","OC2","P","Y30-49","2011","92592","","" +"PL","M","POP","TOTAL","OC2","P","Y50-64","2011","44067","","" +"PL","M","POP","TOTAL","OC2","P","Y65-84","2011","8386","","" +"PL","M","POP","TOTAL","OC2","P","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","Q","Y15-29","2011","12215","","" +"PL","M","POP","TOTAL","OC2","Q","Y30-49","2011","37003","","" +"PL","M","POP","TOTAL","OC2","Q","Y50-64","2011","21041","","" +"PL","M","POP","TOTAL","OC2","Q","Y65-84","2011","5648","","" +"PL","M","POP","TOTAL","OC2","Q","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","R","Y15-29","2011","5326","","" +"PL","M","POP","TOTAL","OC2","R","Y30-49","2011","12499","","" +"PL","M","POP","TOTAL","OC2","R","Y50-64","2011","6953","","" +"PL","M","POP","TOTAL","OC2","R","Y65-84","2011","1011","","" +"PL","M","POP","TOTAL","OC2","R","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","S","Y15-29","2011","3081","","" +"PL","M","POP","TOTAL","OC2","S","Y30-49","2011","11854","","" +"PL","M","POP","TOTAL","OC2","S","Y50-64","2011","8088","","" +"PL","M","POP","TOTAL","OC2","S","Y65-84","2011","1973","","" +"PL","M","POP","TOTAL","OC2","S","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","T","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC2","T","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC2","T","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC2","T","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","U","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC2","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC2","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC2","U","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC2","UNK","Y15-29","2011","1457","","" +"PL","M","POP","TOTAL","OC2","UNK","Y30-49","2011","2588","","" +"PL","M","POP","TOTAL","OC2","UNK","Y50-64","2011","1241","","" +"PL","M","POP","TOTAL","OC2","UNK","Y65-84","2011","204","u","" +"PL","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","A","Y15-29","2011","8747","","" +"PL","M","POP","TOTAL","OC3","A","Y30-49","2011","21455","","" +"PL","M","POP","TOTAL","OC3","A","Y50-64","2011","12850","","" +"PL","M","POP","TOTAL","OC3","A","Y65-84","2011","340","u","" +"PL","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","B","Y15-29","2011","3859","","" +"PL","M","POP","TOTAL","OC3","B","Y30-49","2011","12589","","" +"PL","M","POP","TOTAL","OC3","B","Y50-64","2011","5882","","" +"PL","M","POP","TOTAL","OC3","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","C","Y15-29","2011","67910","","" +"PL","M","POP","TOTAL","OC3","C","Y30-49","2011","137106","","" +"PL","M","POP","TOTAL","OC3","C","Y50-64","2011","64611","","" +"PL","M","POP","TOTAL","OC3","C","Y65-84","2011","2068","","" +"PL","M","POP","TOTAL","OC3","C","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","D","Y15-29","2011","4125","","" +"PL","M","POP","TOTAL","OC3","D","Y30-49","2011","22143","","" +"PL","M","POP","TOTAL","OC3","D","Y50-64","2011","15395","","" +"PL","M","POP","TOTAL","OC3","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","E","Y15-29","2011","2800","","" +"PL","M","POP","TOTAL","OC3","E","Y30-49","2011","9781","","" +"PL","M","POP","TOTAL","OC3","E","Y50-64","2011","8416","","" +"PL","M","POP","TOTAL","OC3","E","Y65-84","2011","211","u","" +"PL","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","F","Y15-29","2011","26726","","" +"PL","M","POP","TOTAL","OC3","F","Y30-49","2011","50183","","" +"PL","M","POP","TOTAL","OC3","F","Y50-64","2011","27849","","" +"PL","M","POP","TOTAL","OC3","F","Y65-84","2011","1520","","" +"PL","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","G","Y15-29","2011","57236","","" +"PL","M","POP","TOTAL","OC3","G","Y30-49","2011","100158","","" +"PL","M","POP","TOTAL","OC3","G","Y50-64","2011","28630","","" +"PL","M","POP","TOTAL","OC3","G","Y65-84","2011","1405","","" +"PL","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","H","Y15-29","2011","13074","","" +"PL","M","POP","TOTAL","OC3","H","Y30-49","2011","29113","","" +"PL","M","POP","TOTAL","OC3","H","Y50-64","2011","17133","","" +"PL","M","POP","TOTAL","OC3","H","Y65-84","2011","465","u","" +"PL","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","I","Y15-29","2011","3228","","" +"PL","M","POP","TOTAL","OC3","I","Y30-49","2011","4864","","" +"PL","M","POP","TOTAL","OC3","I","Y50-64","2011","1926","","" +"PL","M","POP","TOTAL","OC3","I","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC3","I","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","J","Y15-29","2011","16416","","" +"PL","M","POP","TOTAL","OC3","J","Y30-49","2011","20493","","" +"PL","M","POP","TOTAL","OC3","J","Y50-64","2011","4378","","" +"PL","M","POP","TOTAL","OC3","J","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","K","Y15-29","2011","10236","","" +"PL","M","POP","TOTAL","OC3","K","Y30-49","2011","16567","","" +"PL","M","POP","TOTAL","OC3","K","Y50-64","2011","7079","","" +"PL","M","POP","TOTAL","OC3","K","Y65-84","2011","778","","" +"PL","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","L","Y15-29","2011","3042","","" +"PL","M","POP","TOTAL","OC3","L","Y30-49","2011","7855","","" +"PL","M","POP","TOTAL","OC3","L","Y50-64","2011","7390","","" +"PL","M","POP","TOTAL","OC3","L","Y65-84","2011","684","","" +"PL","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","M","Y15-29","2011","16693","","" +"PL","M","POP","TOTAL","OC3","M","Y30-49","2011","23305","","" +"PL","M","POP","TOTAL","OC3","M","Y50-64","2011","13727","","" +"PL","M","POP","TOTAL","OC3","M","Y65-84","2011","2066","","" +"PL","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","N","Y15-29","2011","3981","","" +"PL","M","POP","TOTAL","OC3","N","Y30-49","2011","4760","","" +"PL","M","POP","TOTAL","OC3","N","Y50-64","2011","2063","","" +"PL","M","POP","TOTAL","OC3","N","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","O","Y15-29","2011","18183","","" +"PL","M","POP","TOTAL","OC3","O","Y30-49","2011","62370","","" +"PL","M","POP","TOTAL","OC3","O","Y50-64","2011","16397","","" +"PL","M","POP","TOTAL","OC3","O","Y65-84","2011","886","","" +"PL","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","P","Y15-29","2011","4000","","" +"PL","M","POP","TOTAL","OC3","P","Y30-49","2011","5945","","" +"PL","M","POP","TOTAL","OC3","P","Y50-64","2011","4956","","" +"PL","M","POP","TOTAL","OC3","P","Y65-84","2011","465","u","" +"PL","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","Q","Y15-29","2011","10055","","" +"PL","M","POP","TOTAL","OC3","Q","Y30-49","2011","17588","","" +"PL","M","POP","TOTAL","OC3","Q","Y50-64","2011","8033","","" +"PL","M","POP","TOTAL","OC3","Q","Y65-84","2011","514","u","" +"PL","M","POP","TOTAL","OC3","Q","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","R","Y15-29","2011","8941","","" +"PL","M","POP","TOTAL","OC3","R","Y30-49","2011","9501","","" +"PL","M","POP","TOTAL","OC3","R","Y50-64","2011","4945","","" +"PL","M","POP","TOTAL","OC3","R","Y65-84","2011","581","","" +"PL","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","S","Y15-29","2011","5420","","" +"PL","M","POP","TOTAL","OC3","S","Y30-49","2011","6551","","" +"PL","M","POP","TOTAL","OC3","S","Y50-64","2011","3114","","" +"PL","M","POP","TOTAL","OC3","S","Y65-84","2011","337","u","" +"PL","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","T","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC3","T","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC3","T","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC3","T","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","U","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC3","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC3","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC3","U","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC3","UNK","Y15-29","2011","3340","","" +"PL","M","POP","TOTAL","OC3","UNK","Y30-49","2011","5253","","" +"PL","M","POP","TOTAL","OC3","UNK","Y50-64","2011","2279","","" +"PL","M","POP","TOTAL","OC3","UNK","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","A","Y15-29","2011","1810","","" +"PL","M","POP","TOTAL","OC4","A","Y30-49","2011","2612","","" +"PL","M","POP","TOTAL","OC4","A","Y50-64","2011","1765","","" +"PL","M","POP","TOTAL","OC4","A","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","B","Y15-29","2011","479","u","" +"PL","M","POP","TOTAL","OC4","B","Y30-49","2011","1358","","" +"PL","M","POP","TOTAL","OC4","B","Y50-64","2011","996","","" +"PL","M","POP","TOTAL","OC4","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","C","Y15-29","2011","36369","","" +"PL","M","POP","TOTAL","OC4","C","Y30-49","2011","49728","","" +"PL","M","POP","TOTAL","OC4","C","Y50-64","2011","18128","","" +"PL","M","POP","TOTAL","OC4","C","Y65-84","2011","305","u","" +"PL","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","D","Y15-29","2011","878","","" +"PL","M","POP","TOTAL","OC4","D","Y30-49","2011","3290","","" +"PL","M","POP","TOTAL","OC4","D","Y50-64","2011","2119","","" +"PL","M","POP","TOTAL","OC4","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","E","Y15-29","2011","1144","","" +"PL","M","POP","TOTAL","OC4","E","Y30-49","2011","2797","","" +"PL","M","POP","TOTAL","OC4","E","Y50-64","2011","1616","","" +"PL","M","POP","TOTAL","OC4","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","F","Y15-29","2011","3283","","" +"PL","M","POP","TOTAL","OC4","F","Y30-49","2011","4900","","" +"PL","M","POP","TOTAL","OC4","F","Y50-64","2011","2654","","" +"PL","M","POP","TOTAL","OC4","F","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","G","Y15-29","2011","48572","","" +"PL","M","POP","TOTAL","OC4","G","Y30-49","2011","46517","","" +"PL","M","POP","TOTAL","OC4","G","Y50-64","2011","13795","","" +"PL","M","POP","TOTAL","OC4","G","Y65-84","2011","407","u","" +"PL","M","POP","TOTAL","OC4","G","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","H","Y15-29","2011","27088","","" +"PL","M","POP","TOTAL","OC4","H","Y30-49","2011","37658","","" +"PL","M","POP","TOTAL","OC4","H","Y50-64","2011","14711","","" +"PL","M","POP","TOTAL","OC4","H","Y65-84","2011","179","u","" +"PL","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","I","Y15-29","2011","2482","","" +"PL","M","POP","TOTAL","OC4","I","Y30-49","2011","1703","","" +"PL","M","POP","TOTAL","OC4","I","Y50-64","2011","730","","" +"PL","M","POP","TOTAL","OC4","I","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","J","Y15-29","2011","3365","","" +"PL","M","POP","TOTAL","OC4","J","Y30-49","2011","3089","","" +"PL","M","POP","TOTAL","OC4","J","Y50-64","2011","884","","" +"PL","M","POP","TOTAL","OC4","J","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","K","Y15-29","2011","3930","","" +"PL","M","POP","TOTAL","OC4","K","Y30-49","2011","4853","","" +"PL","M","POP","TOTAL","OC4","K","Y50-64","2011","1809","","" +"PL","M","POP","TOTAL","OC4","K","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","L","Y15-29","2011","995","","" +"PL","M","POP","TOTAL","OC4","L","Y30-49","2011","2694","","" +"PL","M","POP","TOTAL","OC4","L","Y50-64","2011","2658","","" +"PL","M","POP","TOTAL","OC4","L","Y65-84","2011","263","u","" +"PL","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","M","Y15-29","2011","3973","","" +"PL","M","POP","TOTAL","OC4","M","Y30-49","2011","2925","","" +"PL","M","POP","TOTAL","OC4","M","Y50-64","2011","973","","" +"PL","M","POP","TOTAL","OC4","M","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","N","Y15-29","2011","3616","","" +"PL","M","POP","TOTAL","OC4","N","Y30-49","2011","3207","","" +"PL","M","POP","TOTAL","OC4","N","Y50-64","2011","1376","","" +"PL","M","POP","TOTAL","OC4","N","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","O","Y15-29","2011","7449","","" +"PL","M","POP","TOTAL","OC4","O","Y30-49","2011","8370","","" +"PL","M","POP","TOTAL","OC4","O","Y50-64","2011","5427","","" +"PL","M","POP","TOTAL","OC4","O","Y65-84","2011","266","u","" +"PL","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","P","Y15-29","2011","1102","","" +"PL","M","POP","TOTAL","OC4","P","Y30-49","2011","1576","","" +"PL","M","POP","TOTAL","OC4","P","Y50-64","2011","1622","","" +"PL","M","POP","TOTAL","OC4","P","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","Q","Y15-29","2011","1349","","" +"PL","M","POP","TOTAL","OC4","Q","Y30-49","2011","1684","","" +"PL","M","POP","TOTAL","OC4","Q","Y50-64","2011","1240","","" +"PL","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","R","Y15-29","2011","1350","","" +"PL","M","POP","TOTAL","OC4","R","Y30-49","2011","1410","","" +"PL","M","POP","TOTAL","OC4","R","Y50-64","2011","877","","" +"PL","M","POP","TOTAL","OC4","R","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","S","Y15-29","2011","804","","" +"PL","M","POP","TOTAL","OC4","S","Y30-49","2011","1027","","" +"PL","M","POP","TOTAL","OC4","S","Y50-64","2011","541","","" +"PL","M","POP","TOTAL","OC4","S","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","U","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC4","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC4","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC4","UNK","Y15-29","2011","1893","","" +"PL","M","POP","TOTAL","OC4","UNK","Y30-49","2011","1740","","" +"PL","M","POP","TOTAL","OC4","UNK","Y50-64","2011","699","","" +"PL","M","POP","TOTAL","OC4","UNK","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","A","Y15-29","2011","2162","","" +"PL","M","POP","TOTAL","OC5","A","Y30-49","2011","4660","","" +"PL","M","POP","TOTAL","OC5","A","Y50-64","2011","3582","","" +"PL","M","POP","TOTAL","OC5","A","Y65-84","2011","275","u","" +"PL","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","B","Y15-29","2011","619","","" +"PL","M","POP","TOTAL","OC5","B","Y30-49","2011","2948","","" +"PL","M","POP","TOTAL","OC5","B","Y50-64","2011","1269","","" +"PL","M","POP","TOTAL","OC5","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","C","Y15-29","2011","10401","","" +"PL","M","POP","TOTAL","OC5","C","Y30-49","2011","19494","","" +"PL","M","POP","TOTAL","OC5","C","Y50-64","2011","15858","","" +"PL","M","POP","TOTAL","OC5","C","Y65-84","2011","1708","","" +"PL","M","POP","TOTAL","OC5","C","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","D","Y15-29","2011","1657","","" +"PL","M","POP","TOTAL","OC5","D","Y30-49","2011","2579","","" +"PL","M","POP","TOTAL","OC5","D","Y50-64","2011","1746","","" +"PL","M","POP","TOTAL","OC5","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","E","Y15-29","2011","504","u","" +"PL","M","POP","TOTAL","OC5","E","Y30-49","2011","1320","","" +"PL","M","POP","TOTAL","OC5","E","Y50-64","2011","1751","","" +"PL","M","POP","TOTAL","OC5","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","F","Y15-29","2011","2315","","" +"PL","M","POP","TOTAL","OC5","F","Y30-49","2011","4475","","" +"PL","M","POP","TOTAL","OC5","F","Y50-64","2011","3602","","" +"PL","M","POP","TOTAL","OC5","F","Y65-84","2011","366","u","" +"PL","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","G","Y15-29","2011","102399","","" +"PL","M","POP","TOTAL","OC5","G","Y30-49","2011","138770","","" +"PL","M","POP","TOTAL","OC5","G","Y50-64","2011","59596","","" +"PL","M","POP","TOTAL","OC5","G","Y65-84","2011","4126","","" +"PL","M","POP","TOTAL","OC5","G","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","H","Y15-29","2011","2542","","" +"PL","M","POP","TOTAL","OC5","H","Y30-49","2011","9745","","" +"PL","M","POP","TOTAL","OC5","H","Y50-64","2011","6049","","" +"PL","M","POP","TOTAL","OC5","H","Y65-84","2011","370","u","" +"PL","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","I","Y15-29","2011","42748","","" +"PL","M","POP","TOTAL","OC5","I","Y30-49","2011","25747","","" +"PL","M","POP","TOTAL","OC5","I","Y50-64","2011","8433","","" +"PL","M","POP","TOTAL","OC5","I","Y65-84","2011","524","u","" +"PL","M","POP","TOTAL","OC5","I","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","J","Y15-29","2011","5306","","" +"PL","M","POP","TOTAL","OC5","J","Y30-49","2011","2837","","" +"PL","M","POP","TOTAL","OC5","J","Y50-64","2011","775","","" +"PL","M","POP","TOTAL","OC5","J","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","K","Y15-29","2011","1164","","" +"PL","M","POP","TOTAL","OC5","K","Y30-49","2011","1916","","" +"PL","M","POP","TOTAL","OC5","K","Y50-64","2011","996","","" +"PL","M","POP","TOTAL","OC5","K","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","L","Y15-29","2011","392","u","" +"PL","M","POP","TOTAL","OC5","L","Y30-49","2011","1676","","" +"PL","M","POP","TOTAL","OC5","L","Y50-64","2011","2402","","" +"PL","M","POP","TOTAL","OC5","L","Y65-84","2011","297","u","" +"PL","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","M","Y15-29","2011","1189","","" +"PL","M","POP","TOTAL","OC5","M","Y30-49","2011","1323","","" +"PL","M","POP","TOTAL","OC5","M","Y50-64","2011","722","","" +"PL","M","POP","TOTAL","OC5","M","Y65-84","2011","192","u","" +"PL","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","N","Y15-29","2011","23114","","" +"PL","M","POP","TOTAL","OC5","N","Y30-49","2011","46993","","" +"PL","M","POP","TOTAL","OC5","N","Y50-64","2011","59866","","" +"PL","M","POP","TOTAL","OC5","N","Y65-84","2011","6149","","" +"PL","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","O","Y15-29","2011","28809","","" +"PL","M","POP","TOTAL","OC5","O","Y30-49","2011","79696","","" +"PL","M","POP","TOTAL","OC5","O","Y50-64","2011","11906","","" +"PL","M","POP","TOTAL","OC5","O","Y65-84","2011","365","u","" +"PL","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","P","Y15-29","2011","3295","","" +"PL","M","POP","TOTAL","OC5","P","Y30-49","2011","7898","","" +"PL","M","POP","TOTAL","OC5","P","Y50-64","2011","8028","","" +"PL","M","POP","TOTAL","OC5","P","Y65-84","2011","718","","" +"PL","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","Q","Y15-29","2011","2529","","" +"PL","M","POP","TOTAL","OC5","Q","Y30-49","2011","6170","","" +"PL","M","POP","TOTAL","OC5","Q","Y50-64","2011","4044","","" +"PL","M","POP","TOTAL","OC5","Q","Y65-84","2011","179","u","" +"PL","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","R","Y15-29","2011","3479","","" +"PL","M","POP","TOTAL","OC5","R","Y30-49","2011","3480","","" +"PL","M","POP","TOTAL","OC5","R","Y50-64","2011","2493","","" +"PL","M","POP","TOTAL","OC5","R","Y65-84","2011","221","u","" +"PL","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","S","Y15-29","2011","4731","","" +"PL","M","POP","TOTAL","OC5","S","Y30-49","2011","6701","","" +"PL","M","POP","TOTAL","OC5","S","Y50-64","2011","3172","","" +"PL","M","POP","TOTAL","OC5","S","Y65-84","2011","739","","" +"PL","M","POP","TOTAL","OC5","S","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","T","Y15-29","2011","316","u","" +"PL","M","POP","TOTAL","OC5","T","Y30-49","2011","225","u","" +"PL","M","POP","TOTAL","OC5","T","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","U","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC5","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC5","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC5","UNK","Y15-29","2011","1905","","" +"PL","M","POP","TOTAL","OC5","UNK","Y30-49","2011","2460","","" +"PL","M","POP","TOTAL","OC5","UNK","Y50-64","2011","1523","","" +"PL","M","POP","TOTAL","OC5","UNK","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","A","Y15-29","2011","168279","","" +"PL","M","POP","TOTAL","OC6","A","Y30-49","2011","409168","","" +"PL","M","POP","TOTAL","OC6","A","Y50-64","2011","323618","","" +"PL","M","POP","TOTAL","OC6","A","Y65-84","2011","50467","","" +"PL","M","POP","TOTAL","OC6","A","Y_GE85","2011","343","u","" +"PL","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC6","B","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC6","B","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC6","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","C","Y15-29","2011","1155","","" +"PL","M","POP","TOTAL","OC6","C","Y30-49","2011","2247","","" +"PL","M","POP","TOTAL","OC6","C","Y50-64","2011","1311","","" +"PL","M","POP","TOTAL","OC6","C","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","D","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC6","D","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC6","D","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC6","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","E","Y15-29","2011","212","u","" +"PL","M","POP","TOTAL","OC6","E","Y30-49","2011","498","u","" +"PL","M","POP","TOTAL","OC6","E","Y50-64","2011","381","u","" +"PL","M","POP","TOTAL","OC6","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","F","Y15-29","2011","177","u","" +"PL","M","POP","TOTAL","OC6","F","Y30-49","2011","223","u","" +"PL","M","POP","TOTAL","OC6","F","Y50-64","2011","200","u","" +"PL","M","POP","TOTAL","OC6","F","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","G","Y15-29","2011","472","u","" +"PL","M","POP","TOTAL","OC6","G","Y30-49","2011","1120","","" +"PL","M","POP","TOTAL","OC6","G","Y50-64","2011","648","","" +"PL","M","POP","TOTAL","OC6","G","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","H","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC6","H","Y30-49","2011","182","u","" +"PL","M","POP","TOTAL","OC6","H","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","I","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC6","I","Y30-49","2011","352","u","" +"PL","M","POP","TOTAL","OC6","I","Y50-64","2011","391","u","" +"PL","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC6","J","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC6","J","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC6","K","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC6","K","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","L","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC6","L","Y30-49","2011","384","u","" +"PL","M","POP","TOTAL","OC6","L","Y50-64","2011","507","u","" +"PL","M","POP","TOTAL","OC6","L","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","M","Y15-29","2011","226","u","" +"PL","M","POP","TOTAL","OC6","M","Y30-49","2011","548","","" +"PL","M","POP","TOTAL","OC6","M","Y50-64","2011","364","u","" +"PL","M","POP","TOTAL","OC6","M","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","N","Y15-29","2011","2202","","" +"PL","M","POP","TOTAL","OC6","N","Y30-49","2011","3405","","" +"PL","M","POP","TOTAL","OC6","N","Y50-64","2011","1856","","" +"PL","M","POP","TOTAL","OC6","N","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","O","Y15-29","2011","211","u","" +"PL","M","POP","TOTAL","OC6","O","Y30-49","2011","708","","" +"PL","M","POP","TOTAL","OC6","O","Y50-64","2011","774","","" +"PL","M","POP","TOTAL","OC6","O","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","P","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC6","P","Y30-49","2011","425","u","" +"PL","M","POP","TOTAL","OC6","P","Y50-64","2011","777","","" +"PL","M","POP","TOTAL","OC6","P","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","Q","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC6","Q","Y30-49","2011","219","u","" +"PL","M","POP","TOTAL","OC6","Q","Y50-64","2011","272","u","" +"PL","M","POP","TOTAL","OC6","Q","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","R","Y15-29","2011","188","u","" +"PL","M","POP","TOTAL","OC6","R","Y30-49","2011","454","u","" +"PL","M","POP","TOTAL","OC6","R","Y50-64","2011","441","u","" +"PL","M","POP","TOTAL","OC6","R","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","S","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC6","S","Y30-49","2011","166","u","" +"PL","M","POP","TOTAL","OC6","S","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC6","S","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","T","Y15-29","2011","182","u","" +"PL","M","POP","TOTAL","OC6","T","Y30-49","2011","459","u","" +"PL","M","POP","TOTAL","OC6","T","Y50-64","2011","268","u","" +"PL","M","POP","TOTAL","OC6","T","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC6","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC6","UNK","Y15-29","2011","418","u","" +"PL","M","POP","TOTAL","OC6","UNK","Y30-49","2011","950","","" +"PL","M","POP","TOTAL","OC6","UNK","Y50-64","2011","526","u","" +"PL","M","POP","TOTAL","OC6","UNK","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","A","Y15-29","2011","5637","","" +"PL","M","POP","TOTAL","OC7","A","Y30-49","2011","13086","","" +"PL","M","POP","TOTAL","OC7","A","Y50-64","2011","8263","","" +"PL","M","POP","TOTAL","OC7","A","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","B","Y15-29","2011","7103","","" +"PL","M","POP","TOTAL","OC7","B","Y30-49","2011","33773","","" +"PL","M","POP","TOTAL","OC7","B","Y50-64","2011","11132","","" +"PL","M","POP","TOTAL","OC7","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","C","Y15-29","2011","257073","","" +"PL","M","POP","TOTAL","OC7","C","Y30-49","2011","496059","","" +"PL","M","POP","TOTAL","OC7","C","Y50-64","2011","218232","","" +"PL","M","POP","TOTAL","OC7","C","Y65-84","2011","4976","","" +"PL","M","POP","TOTAL","OC7","C","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","D","Y15-29","2011","4013","","" +"PL","M","POP","TOTAL","OC7","D","Y30-49","2011","23593","","" +"PL","M","POP","TOTAL","OC7","D","Y50-64","2011","17097","","" +"PL","M","POP","TOTAL","OC7","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","D","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","E","Y15-29","2011","4435","","" +"PL","M","POP","TOTAL","OC7","E","Y30-49","2011","15787","","" +"PL","M","POP","TOTAL","OC7","E","Y50-64","2011","12685","","" +"PL","M","POP","TOTAL","OC7","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","F","Y15-29","2011","213348","","" +"PL","M","POP","TOTAL","OC7","F","Y30-49","2011","419546","","" +"PL","M","POP","TOTAL","OC7","F","Y50-64","2011","172300","","" +"PL","M","POP","TOTAL","OC7","F","Y65-84","2011","1744","","" +"PL","M","POP","TOTAL","OC7","F","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","G","Y15-29","2011","62527","","" +"PL","M","POP","TOTAL","OC7","G","Y30-49","2011","96692","","" +"PL","M","POP","TOTAL","OC7","G","Y50-64","2011","34460","","" +"PL","M","POP","TOTAL","OC7","G","Y65-84","2011","1195","","" +"PL","M","POP","TOTAL","OC7","G","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","H","Y15-29","2011","4637","","" +"PL","M","POP","TOTAL","OC7","H","Y30-49","2011","22744","","" +"PL","M","POP","TOTAL","OC7","H","Y50-64","2011","18805","","" +"PL","M","POP","TOTAL","OC7","H","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","I","Y15-29","2011","813","","" +"PL","M","POP","TOTAL","OC7","I","Y30-49","2011","2444","","" +"PL","M","POP","TOTAL","OC7","I","Y50-64","2011","2123","","" +"PL","M","POP","TOTAL","OC7","I","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","J","Y15-29","2011","2868","","" +"PL","M","POP","TOTAL","OC7","J","Y30-49","2011","6459","","" +"PL","M","POP","TOTAL","OC7","J","Y50-64","2011","2171","","" +"PL","M","POP","TOTAL","OC7","J","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","K","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC7","K","Y30-49","2011","317","u","" +"PL","M","POP","TOTAL","OC7","K","Y50-64","2011","232","u","" +"PL","M","POP","TOTAL","OC7","K","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","L","Y15-29","2011","702","","" +"PL","M","POP","TOTAL","OC7","L","Y30-49","2011","5409","","" +"PL","M","POP","TOTAL","OC7","L","Y50-64","2011","7378","","" +"PL","M","POP","TOTAL","OC7","L","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","M","Y15-29","2011","2079","","" +"PL","M","POP","TOTAL","OC7","M","Y30-49","2011","3978","","" +"PL","M","POP","TOTAL","OC7","M","Y50-64","2011","1963","","" +"PL","M","POP","TOTAL","OC7","M","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","N","Y15-29","2011","2132","","" +"PL","M","POP","TOTAL","OC7","N","Y30-49","2011","4664","","" +"PL","M","POP","TOTAL","OC7","N","Y50-64","2011","3260","","" +"PL","M","POP","TOTAL","OC7","N","Y65-84","2011","239","u","" +"PL","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","O","Y15-29","2011","1470","","" +"PL","M","POP","TOTAL","OC7","O","Y30-49","2011","7569","","" +"PL","M","POP","TOTAL","OC7","O","Y50-64","2011","8533","","" +"PL","M","POP","TOTAL","OC7","O","Y65-84","2011","222","u","" +"PL","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","P","Y15-29","2011","1120","","" +"PL","M","POP","TOTAL","OC7","P","Y30-49","2011","5686","","" +"PL","M","POP","TOTAL","OC7","P","Y50-64","2011","9606","","" +"PL","M","POP","TOTAL","OC7","P","Y65-84","2011","424","u","" +"PL","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","Q","Y15-29","2011","642","","" +"PL","M","POP","TOTAL","OC7","Q","Y30-49","2011","4931","","" +"PL","M","POP","TOTAL","OC7","Q","Y50-64","2011","5723","","" +"PL","M","POP","TOTAL","OC7","Q","Y65-84","2011","171","u","" +"PL","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","R","Y15-29","2011","1680","","" +"PL","M","POP","TOTAL","OC7","R","Y30-49","2011","4405","","" +"PL","M","POP","TOTAL","OC7","R","Y50-64","2011","3724","","" +"PL","M","POP","TOTAL","OC7","R","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","S","Y15-29","2011","5135","","" +"PL","M","POP","TOTAL","OC7","S","Y30-49","2011","11321","","" +"PL","M","POP","TOTAL","OC7","S","Y50-64","2011","6800","","" +"PL","M","POP","TOTAL","OC7","S","Y65-84","2011","876","","" +"PL","M","POP","TOTAL","OC7","S","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","T","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC7","T","Y30-49","2011","299","u","" +"PL","M","POP","TOTAL","OC7","T","Y50-64","2011","197","u","" +"PL","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","U","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC7","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC7","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC7","UNK","Y15-29","2011","7605","","" +"PL","M","POP","TOTAL","OC7","UNK","Y30-49","2011","14068","","" +"PL","M","POP","TOTAL","OC7","UNK","Y50-64","2011","6579","","" +"PL","M","POP","TOTAL","OC7","UNK","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","A","Y15-29","2011","5761","","" +"PL","M","POP","TOTAL","OC8","A","Y30-49","2011","15753","","" +"PL","M","POP","TOTAL","OC8","A","Y50-64","2011","12507","","" +"PL","M","POP","TOTAL","OC8","A","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","B","Y15-29","2011","22967","","" +"PL","M","POP","TOTAL","OC8","B","Y30-49","2011","71357","","" +"PL","M","POP","TOTAL","OC8","B","Y50-64","2011","14701","","" +"PL","M","POP","TOTAL","OC8","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","C","Y15-29","2011","100546","","" +"PL","M","POP","TOTAL","OC8","C","Y30-49","2011","165299","","" +"PL","M","POP","TOTAL","OC8","C","Y50-64","2011","66535","","" +"PL","M","POP","TOTAL","OC8","C","Y65-84","2011","748","","" +"PL","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","D","Y15-29","2011","1292","","" +"PL","M","POP","TOTAL","OC8","D","Y30-49","2011","7638","","" +"PL","M","POP","TOTAL","OC8","D","Y50-64","2011","6487","","" +"PL","M","POP","TOTAL","OC8","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","E","Y15-29","2011","5541","","" +"PL","M","POP","TOTAL","OC8","E","Y30-49","2011","16812","","" +"PL","M","POP","TOTAL","OC8","E","Y50-64","2011","10755","","" +"PL","M","POP","TOTAL","OC8","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","F","Y15-29","2011","23596","","" +"PL","M","POP","TOTAL","OC8","F","Y30-49","2011","46487","","" +"PL","M","POP","TOTAL","OC8","F","Y50-64","2011","25992","","" +"PL","M","POP","TOTAL","OC8","F","Y65-84","2011","329","u","" +"PL","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","G","Y15-29","2011","27890","","" +"PL","M","POP","TOTAL","OC8","G","Y30-49","2011","45207","","" +"PL","M","POP","TOTAL","OC8","G","Y50-64","2011","15587","","" +"PL","M","POP","TOTAL","OC8","G","Y65-84","2011","370","u","" +"PL","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","H","Y15-29","2011","67710","","" +"PL","M","POP","TOTAL","OC8","H","Y30-49","2011","216605","","" +"PL","M","POP","TOTAL","OC8","H","Y50-64","2011","125405","","" +"PL","M","POP","TOTAL","OC8","H","Y65-84","2011","4375","","" +"PL","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","I","Y15-29","2011","2288","","" +"PL","M","POP","TOTAL","OC8","I","Y30-49","2011","2036","","" +"PL","M","POP","TOTAL","OC8","I","Y50-64","2011","914","","" +"PL","M","POP","TOTAL","OC8","I","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","J","Y15-29","2011","259","u","" +"PL","M","POP","TOTAL","OC8","J","Y30-49","2011","727","","" +"PL","M","POP","TOTAL","OC8","J","Y50-64","2011","336","u","" +"PL","M","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","K","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC8","K","Y30-49","2011","423","u","" +"PL","M","POP","TOTAL","OC8","K","Y50-64","2011","240","u","" +"PL","M","POP","TOTAL","OC8","K","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","L","Y15-29","2011","187","u","" +"PL","M","POP","TOTAL","OC8","L","Y30-49","2011","1290","","" +"PL","M","POP","TOTAL","OC8","L","Y50-64","2011","1732","","" +"PL","M","POP","TOTAL","OC8","L","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","M","Y15-29","2011","952","","" +"PL","M","POP","TOTAL","OC8","M","Y30-49","2011","1662","","" +"PL","M","POP","TOTAL","OC8","M","Y50-64","2011","1282","","" +"PL","M","POP","TOTAL","OC8","M","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","N","Y15-29","2011","1624","","" +"PL","M","POP","TOTAL","OC8","N","Y30-49","2011","3709","","" +"PL","M","POP","TOTAL","OC8","N","Y50-64","2011","2138","","" +"PL","M","POP","TOTAL","OC8","N","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","O","Y15-29","2011","2455","","" +"PL","M","POP","TOTAL","OC8","O","Y30-49","2011","8666","","" +"PL","M","POP","TOTAL","OC8","O","Y50-64","2011","7049","","" +"PL","M","POP","TOTAL","OC8","O","Y65-84","2011","195","u","" +"PL","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","P","Y15-29","2011","380","u","" +"PL","M","POP","TOTAL","OC8","P","Y30-49","2011","2531","","" +"PL","M","POP","TOTAL","OC8","P","Y50-64","2011","3314","","" +"PL","M","POP","TOTAL","OC8","P","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","Q","Y15-29","2011","1210","","" +"PL","M","POP","TOTAL","OC8","Q","Y30-49","2011","6271","","" +"PL","M","POP","TOTAL","OC8","Q","Y50-64","2011","5996","","" +"PL","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","R","Y15-29","2011","595","","" +"PL","M","POP","TOTAL","OC8","R","Y30-49","2011","1412","","" +"PL","M","POP","TOTAL","OC8","R","Y50-64","2011","903","","" +"PL","M","POP","TOTAL","OC8","R","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","S","Y15-29","2011","1448","","" +"PL","M","POP","TOTAL","OC8","S","Y30-49","2011","2807","","" +"PL","M","POP","TOTAL","OC8","S","Y50-64","2011","1586","","" +"PL","M","POP","TOTAL","OC8","S","Y65-84","2011","235","u","" +"PL","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","T","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC8","T","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC8","T","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","U","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC8","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC8","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC8","UNK","Y15-29","2011","2838","","" +"PL","M","POP","TOTAL","OC8","UNK","Y30-49","2011","5488","","" +"PL","M","POP","TOTAL","OC8","UNK","Y50-64","2011","2808","","" +"PL","M","POP","TOTAL","OC8","UNK","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","A","Y15-29","2011","7644","","" +"PL","M","POP","TOTAL","OC9","A","Y30-49","2011","9432","","" +"PL","M","POP","TOTAL","OC9","A","Y50-64","2011","5805","","" +"PL","M","POP","TOTAL","OC9","A","Y65-84","2011","290","u","" +"PL","M","POP","TOTAL","OC9","A","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","B","Y15-29","2011","1334","","" +"PL","M","POP","TOTAL","OC9","B","Y30-49","2011","3699","","" +"PL","M","POP","TOTAL","OC9","B","Y50-64","2011","1489","","" +"PL","M","POP","TOTAL","OC9","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","C","Y15-29","2011","25815","","" +"PL","M","POP","TOTAL","OC9","C","Y30-49","2011","26086","","" +"PL","M","POP","TOTAL","OC9","C","Y50-64","2011","13888","","" +"PL","M","POP","TOTAL","OC9","C","Y65-84","2011","585","","" +"PL","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","D","Y15-29","2011","300","u","" +"PL","M","POP","TOTAL","OC9","D","Y30-49","2011","555","","" +"PL","M","POP","TOTAL","OC9","D","Y50-64","2011","675","","" +"PL","M","POP","TOTAL","OC9","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","E","Y15-29","2011","3038","","" +"PL","M","POP","TOTAL","OC9","E","Y30-49","2011","7178","","" +"PL","M","POP","TOTAL","OC9","E","Y50-64","2011","5418","","" +"PL","M","POP","TOTAL","OC9","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","F","Y15-29","2011","44503","","" +"PL","M","POP","TOTAL","OC9","F","Y30-49","2011","62908","","" +"PL","M","POP","TOTAL","OC9","F","Y50-64","2011","21009","","" +"PL","M","POP","TOTAL","OC9","F","Y65-84","2011","453","u","" +"PL","M","POP","TOTAL","OC9","F","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","G","Y15-29","2011","11461","","" +"PL","M","POP","TOTAL","OC9","G","Y30-49","2011","9708","","" +"PL","M","POP","TOTAL","OC9","G","Y50-64","2011","5795","","" +"PL","M","POP","TOTAL","OC9","G","Y65-84","2011","582","","" +"PL","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","H","Y15-29","2011","4398","","" +"PL","M","POP","TOTAL","OC9","H","Y30-49","2011","5460","","" +"PL","M","POP","TOTAL","OC9","H","Y50-64","2011","4174","","" +"PL","M","POP","TOTAL","OC9","H","Y65-84","2011","488","u","" +"PL","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","I","Y15-29","2011","4230","","" +"PL","M","POP","TOTAL","OC9","I","Y30-49","2011","2401","","" +"PL","M","POP","TOTAL","OC9","I","Y50-64","2011","1567","","" +"PL","M","POP","TOTAL","OC9","I","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","J","Y15-29","2011","1133","","" +"PL","M","POP","TOTAL","OC9","J","Y30-49","2011","447","u","" +"PL","M","POP","TOTAL","OC9","J","Y50-64","2011","352","u","" +"PL","M","POP","TOTAL","OC9","J","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","K","Y15-29","2011","197","u","" +"PL","M","POP","TOTAL","OC9","K","Y30-49","2011","162","u","" +"PL","M","POP","TOTAL","OC9","K","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC9","K","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","L","Y15-29","2011","288","u","" +"PL","M","POP","TOTAL","OC9","L","Y30-49","2011","1455","","" +"PL","M","POP","TOTAL","OC9","L","Y50-64","2011","2183","","" +"PL","M","POP","TOTAL","OC9","L","Y65-84","2011","284","u","" +"PL","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","M","Y15-29","2011","776","","" +"PL","M","POP","TOTAL","OC9","M","Y30-49","2011","640","","" +"PL","M","POP","TOTAL","OC9","M","Y50-64","2011","376","u","" +"PL","M","POP","TOTAL","OC9","M","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","N","Y15-29","2011","4006","","" +"PL","M","POP","TOTAL","OC9","N","Y30-49","2011","6415","","" +"PL","M","POP","TOTAL","OC9","N","Y50-64","2011","7099","","" +"PL","M","POP","TOTAL","OC9","N","Y65-84","2011","558","","" +"PL","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","O","Y15-29","2011","2007","","" +"PL","M","POP","TOTAL","OC9","O","Y30-49","2011","5346","","" +"PL","M","POP","TOTAL","OC9","O","Y50-64","2011","6816","","" +"PL","M","POP","TOTAL","OC9","O","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","P","Y15-29","2011","966","","" +"PL","M","POP","TOTAL","OC9","P","Y30-49","2011","5709","","" +"PL","M","POP","TOTAL","OC9","P","Y50-64","2011","10399","","" +"PL","M","POP","TOTAL","OC9","P","Y65-84","2011","856","","" +"PL","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","Q","Y15-29","2011","916","","" +"PL","M","POP","TOTAL","OC9","Q","Y30-49","2011","2687","","" +"PL","M","POP","TOTAL","OC9","Q","Y50-64","2011","2514","","" +"PL","M","POP","TOTAL","OC9","Q","Y65-84","2011","165","u","" +"PL","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","R","Y15-29","2011","967","","" +"PL","M","POP","TOTAL","OC9","R","Y30-49","2011","1225","","" +"PL","M","POP","TOTAL","OC9","R","Y50-64","2011","1534","","" +"PL","M","POP","TOTAL","OC9","R","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","R","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","S","Y15-29","2011","1182","","" +"PL","M","POP","TOTAL","OC9","S","Y30-49","2011","2411","","" +"PL","M","POP","TOTAL","OC9","S","Y50-64","2011","1618","","" +"PL","M","POP","TOTAL","OC9","S","Y65-84","2011","202","u","" +"PL","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","T","Y15-29","2011","197","u","" +"PL","M","POP","TOTAL","OC9","T","Y30-49","2011","202","u","" +"PL","M","POP","TOTAL","OC9","T","Y50-64","2011","206","u","" +"PL","M","POP","TOTAL","OC9","T","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","U","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","OC9","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","OC9","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","OC9","UNK","Y15-29","2011","3563","","" +"PL","M","POP","TOTAL","OC9","UNK","Y30-49","2011","4536","","" +"PL","M","POP","TOTAL","OC9","UNK","Y50-64","2011","2529","","" +"PL","M","POP","TOTAL","OC9","UNK","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","A","Y15-29","2011","1899","","" +"PL","M","POP","TOTAL","UNK","A","Y30-49","2011","3486","","" +"PL","M","POP","TOTAL","UNK","A","Y50-64","2011","1925","","" +"PL","M","POP","TOTAL","UNK","A","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","A","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","B","Y15-29","2011","208","u","" +"PL","M","POP","TOTAL","UNK","B","Y30-49","2011","699","","" +"PL","M","POP","TOTAL","UNK","B","Y50-64","2011","273","u","" +"PL","M","POP","TOTAL","UNK","B","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","C","Y15-29","2011","6783","","" +"PL","M","POP","TOTAL","UNK","C","Y30-49","2011","10730","","" +"PL","M","POP","TOTAL","UNK","C","Y50-64","2011","4702","","" +"PL","M","POP","TOTAL","UNK","C","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","D","Y15-29","2011","185","u","" +"PL","M","POP","TOTAL","UNK","D","Y30-49","2011","651","","" +"PL","M","POP","TOTAL","UNK","D","Y50-64","2011","430","u","" +"PL","M","POP","TOTAL","UNK","D","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","E","Y15-29","2011","371","u","" +"PL","M","POP","TOTAL","UNK","E","Y30-49","2011","772","","" +"PL","M","POP","TOTAL","UNK","E","Y50-64","2011","613","","" +"PL","M","POP","TOTAL","UNK","E","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","F","Y15-29","2011","1894","","" +"PL","M","POP","TOTAL","UNK","F","Y30-49","2011","4162","","" +"PL","M","POP","TOTAL","UNK","F","Y50-64","2011","1836","","" +"PL","M","POP","TOTAL","UNK","F","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","G","Y15-29","2011","2861","","" +"PL","M","POP","TOTAL","UNK","G","Y30-49","2011","5134","","" +"PL","M","POP","TOTAL","UNK","G","Y50-64","2011","2300","","" +"PL","M","POP","TOTAL","UNK","G","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","G","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","H","Y15-29","2011","926","","" +"PL","M","POP","TOTAL","UNK","H","Y30-49","2011","2330","","" +"PL","M","POP","TOTAL","UNK","H","Y50-64","2011","1396","","" +"PL","M","POP","TOTAL","UNK","H","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","I","Y15-29","2011","662","","" +"PL","M","POP","TOTAL","UNK","I","Y30-49","2011","807","","" +"PL","M","POP","TOTAL","UNK","I","Y50-64","2011","404","u","" +"PL","M","POP","TOTAL","UNK","I","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","J","Y15-29","2011","817","","" +"PL","M","POP","TOTAL","UNK","J","Y30-49","2011","898","","" +"PL","M","POP","TOTAL","UNK","J","Y50-64","2011","229","u","" +"PL","M","POP","TOTAL","UNK","J","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","K","Y15-29","2011","745","","" +"PL","M","POP","TOTAL","UNK","K","Y30-49","2011","623","","" +"PL","M","POP","TOTAL","UNK","K","Y50-64","2011","237","u","" +"PL","M","POP","TOTAL","UNK","K","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","L","Y15-29","2011","249","u","" +"PL","M","POP","TOTAL","UNK","L","Y30-49","2011","857","","" +"PL","M","POP","TOTAL","UNK","L","Y50-64","2011","726","","" +"PL","M","POP","TOTAL","UNK","L","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","M","Y15-29","2011","1153","","" +"PL","M","POP","TOTAL","UNK","M","Y30-49","2011","1682","","" +"PL","M","POP","TOTAL","UNK","M","Y50-64","2011","896","","" +"PL","M","POP","TOTAL","UNK","M","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","N","Y15-29","2011","948","","" +"PL","M","POP","TOTAL","UNK","N","Y30-49","2011","1318","","" +"PL","M","POP","TOTAL","UNK","N","Y50-64","2011","839","","" +"PL","M","POP","TOTAL","UNK","N","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"PL","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"PL","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"PL","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","O","Y15-29","2011","763","","" +"PL","M","POP","TOTAL","UNK","O","Y30-49","2011","1654","","" +"PL","M","POP","TOTAL","UNK","O","Y50-64","2011","1109","","" +"PL","M","POP","TOTAL","UNK","O","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","P","Y15-29","2011","528","u","" +"PL","M","POP","TOTAL","UNK","P","Y30-49","2011","1542","","" +"PL","M","POP","TOTAL","UNK","P","Y50-64","2011","755","","" +"PL","M","POP","TOTAL","UNK","P","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","Q","Y15-29","2011","268","u","" +"PL","M","POP","TOTAL","UNK","Q","Y30-49","2011","803","","" +"PL","M","POP","TOTAL","UNK","Q","Y50-64","2011","399","u","" +"PL","M","POP","TOTAL","UNK","Q","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","Q","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","R","Y15-29","2011","730","","" +"PL","M","POP","TOTAL","UNK","R","Y30-49","2011","818","","" +"PL","M","POP","TOTAL","UNK","R","Y50-64","2011","318","u","" +"PL","M","POP","TOTAL","UNK","R","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","R","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","S","Y15-29","2011","450","u","" +"PL","M","POP","TOTAL","UNK","S","Y30-49","2011","774","","" +"PL","M","POP","TOTAL","UNK","S","Y50-64","2011","503","u","" +"PL","M","POP","TOTAL","UNK","S","Y65-84","2011",":","u","" +"PL","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","T","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","UNK","T","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","UNK","T","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","U","Y15-29","2011",":","u","" +"PL","M","POP","TOTAL","UNK","U","Y30-49","2011",":","u","" +"PL","M","POP","TOTAL","UNK","U","Y50-64","2011",":","u","" +"PL","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"PL","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"PL","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"PL","M","POP","TOTAL","UNK","UNK","Y15-29","2011","61685","","" +"PL","M","POP","TOTAL","UNK","UNK","Y30-49","2011","130031","","" +"PL","M","POP","TOTAL","UNK","UNK","Y50-64","2011","82948","","" +"PL","M","POP","TOTAL","UNK","UNK","Y65-84","2011","1896","","" +"PL","M","POP","TOTAL","UNK","UNK","Y_GE85","2011",":","u","" +"PL","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","NAP","Y15-29","2011","448632","","" +"PT","F","POP","TOTAL","NAP","NAP","Y30-49","2011","265839","","" +"PT","F","POP","TOTAL","NAP","NAP","Y50-64","2011","534630","","" +"PT","F","POP","TOTAL","NAP","NAP","Y65-84","2011","985440","","" +"PT","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","158628","","" +"PT","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","768330","","" +"PT","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","O","Y15-29","2011","3562","","" +"PT","F","POP","TOTAL","OC0","O","Y30-49","2011","946","","" +"PT","F","POP","TOTAL","OC0","O","Y50-64","2011","112","","" +"PT","F","POP","TOTAL","OC0","O","Y65-84","2011","5","","" +"PT","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","P","Y15-29","2011","15","","" +"PT","F","POP","TOTAL","OC0","P","Y30-49","2011","3","","" +"PT","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","Q","Y15-29","2011","49","","" +"PT","F","POP","TOTAL","OC0","Q","Y30-49","2011","13","","" +"PT","F","POP","TOTAL","OC0","Q","Y50-64","2011","1","","" +"PT","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","R","Y15-29","2011","3","","" +"PT","F","POP","TOTAL","OC0","R","Y30-49","2011","1","","" +"PT","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","S","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","U","Y15-29","2011","2","","" +"PT","F","POP","TOTAL","OC0","U","Y30-49","2011","3","","" +"PT","F","POP","TOTAL","OC0","U","Y50-64","2011","1","","" +"PT","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","A","Y15-29","2011","171","","" +"PT","F","POP","TOTAL","OC1","A","Y30-49","2011","2055","","" +"PT","F","POP","TOTAL","OC1","A","Y50-64","2011","2065","","" +"PT","F","POP","TOTAL","OC1","A","Y65-84","2011","297","","" +"PT","F","POP","TOTAL","OC1","A","Y_GE85","2011","6","","" +"PT","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","B","Y15-29","2011","10","","" +"PT","F","POP","TOTAL","OC1","B","Y30-49","2011","108","","" +"PT","F","POP","TOTAL","OC1","B","Y50-64","2011","57","","" +"PT","F","POP","TOTAL","OC1","B","Y65-84","2011","4","","" +"PT","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","C","Y15-29","2011","1249","","" +"PT","F","POP","TOTAL","OC1","C","Y30-49","2011","10200","","" +"PT","F","POP","TOTAL","OC1","C","Y50-64","2011","4196","","" +"PT","F","POP","TOTAL","OC1","C","Y65-84","2011","357","","" +"PT","F","POP","TOTAL","OC1","C","Y_GE85","2011","7","","" +"PT","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","D","Y15-29","2011","52","","" +"PT","F","POP","TOTAL","OC1","D","Y30-49","2011","188","","" +"PT","F","POP","TOTAL","OC1","D","Y50-64","2011","70","","" +"PT","F","POP","TOTAL","OC1","D","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","E","Y15-29","2011","37","","" +"PT","F","POP","TOTAL","OC1","E","Y30-49","2011","366","","" +"PT","F","POP","TOTAL","OC1","E","Y50-64","2011","77","","" +"PT","F","POP","TOTAL","OC1","E","Y65-84","2011","5","","" +"PT","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","F","Y15-29","2011","302","","" +"PT","F","POP","TOTAL","OC1","F","Y30-49","2011","2474","","" +"PT","F","POP","TOTAL","OC1","F","Y50-64","2011","1246","","" +"PT","F","POP","TOTAL","OC1","F","Y65-84","2011","83","","" +"PT","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","G","Y15-29","2011","3996","","" +"PT","F","POP","TOTAL","OC1","G","Y30-49","2011","21713","","" +"PT","F","POP","TOTAL","OC1","G","Y50-64","2011","10522","","" +"PT","F","POP","TOTAL","OC1","G","Y65-84","2011","1370","","" +"PT","F","POP","TOTAL","OC1","G","Y_GE85","2011","15","","" +"PT","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","H","Y15-29","2011","227","","" +"PT","F","POP","TOTAL","OC1","H","Y30-49","2011","1679","","" +"PT","F","POP","TOTAL","OC1","H","Y50-64","2011","682","","" +"PT","F","POP","TOTAL","OC1","H","Y65-84","2011","44","","" +"PT","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","I","Y15-29","2011","1711","","" +"PT","F","POP","TOTAL","OC1","I","Y30-49","2011","9162","","" +"PT","F","POP","TOTAL","OC1","I","Y50-64","2011","5078","","" +"PT","F","POP","TOTAL","OC1","I","Y65-84","2011","513","","" +"PT","F","POP","TOTAL","OC1","I","Y_GE85","2011","4","","" +"PT","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","J","Y15-29","2011","635","","" +"PT","F","POP","TOTAL","OC1","J","Y30-49","2011","2430","","" +"PT","F","POP","TOTAL","OC1","J","Y50-64","2011","284","","" +"PT","F","POP","TOTAL","OC1","J","Y65-84","2011","8","","" +"PT","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","K","Y15-29","2011","429","","" +"PT","F","POP","TOTAL","OC1","K","Y30-49","2011","2375","","" +"PT","F","POP","TOTAL","OC1","K","Y50-64","2011","399","","" +"PT","F","POP","TOTAL","OC1","K","Y65-84","2011","12","","" +"PT","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","L","Y15-29","2011","179","","" +"PT","F","POP","TOTAL","OC1","L","Y30-49","2011","1295","","" +"PT","F","POP","TOTAL","OC1","L","Y50-64","2011","417","","" +"PT","F","POP","TOTAL","OC1","L","Y65-84","2011","46","","" +"PT","F","POP","TOTAL","OC1","L","Y_GE85","2011","5","","" +"PT","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","M","Y15-29","2011","630","","" +"PT","F","POP","TOTAL","OC1","M","Y30-49","2011","3106","","" +"PT","F","POP","TOTAL","OC1","M","Y50-64","2011","747","","" +"PT","F","POP","TOTAL","OC1","M","Y65-84","2011","49","","" +"PT","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","N","Y15-29","2011","508","","" +"PT","F","POP","TOTAL","OC1","N","Y30-49","2011","2577","","" +"PT","F","POP","TOTAL","OC1","N","Y50-64","2011","640","","" +"PT","F","POP","TOTAL","OC1","N","Y65-84","2011","39","","" +"PT","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","O","Y15-29","2011","135","","" +"PT","F","POP","TOTAL","OC1","O","Y30-49","2011","1900","","" +"PT","F","POP","TOTAL","OC1","O","Y50-64","2011","775","","" +"PT","F","POP","TOTAL","OC1","O","Y65-84","2011","23","","" +"PT","F","POP","TOTAL","OC1","O","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","P","Y15-29","2011","198","","" +"PT","F","POP","TOTAL","OC1","P","Y30-49","2011","2129","","" +"PT","F","POP","TOTAL","OC1","P","Y50-64","2011","1027","","" +"PT","F","POP","TOTAL","OC1","P","Y65-84","2011","85","","" +"PT","F","POP","TOTAL","OC1","P","Y_GE85","2011","4","","" +"PT","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","Q","Y15-29","2011","559","","" +"PT","F","POP","TOTAL","OC1","Q","Y30-49","2011","3534","","" +"PT","F","POP","TOTAL","OC1","Q","Y50-64","2011","1315","","" +"PT","F","POP","TOTAL","OC1","Q","Y65-84","2011","123","","" +"PT","F","POP","TOTAL","OC1","Q","Y_GE85","2011","5","","" +"PT","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","R","Y15-29","2011","171","","" +"PT","F","POP","TOTAL","OC1","R","Y30-49","2011","635","","" +"PT","F","POP","TOTAL","OC1","R","Y50-64","2011","129","","" +"PT","F","POP","TOTAL","OC1","R","Y65-84","2011","12","","" +"PT","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","S","Y15-29","2011","209","","" +"PT","F","POP","TOTAL","OC1","S","Y30-49","2011","1551","","" +"PT","F","POP","TOTAL","OC1","S","Y50-64","2011","623","","" +"PT","F","POP","TOTAL","OC1","S","Y65-84","2011","48","","" +"PT","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC1","T","Y30-49","2011","1","","" +"PT","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","U","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC1","U","Y30-49","2011","20","","" +"PT","F","POP","TOTAL","OC1","U","Y50-64","2011","10","","" +"PT","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","A","Y15-29","2011","278","","" +"PT","F","POP","TOTAL","OC2","A","Y30-49","2011","803","","" +"PT","F","POP","TOTAL","OC2","A","Y50-64","2011","99","","" +"PT","F","POP","TOTAL","OC2","A","Y65-84","2011","3","","" +"PT","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","B","Y15-29","2011","36","","" +"PT","F","POP","TOTAL","OC2","B","Y30-49","2011","83","","" +"PT","F","POP","TOTAL","OC2","B","Y50-64","2011","11","","" +"PT","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","C","Y15-29","2011","3076","","" +"PT","F","POP","TOTAL","OC2","C","Y30-49","2011","7585","","" +"PT","F","POP","TOTAL","OC2","C","Y50-64","2011","815","","" +"PT","F","POP","TOTAL","OC2","C","Y65-84","2011","50","","" +"PT","F","POP","TOTAL","OC2","C","Y_GE85","2011","3","","" +"PT","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","D","Y15-29","2011","145","","" +"PT","F","POP","TOTAL","OC2","D","Y30-49","2011","370","","" +"PT","F","POP","TOTAL","OC2","D","Y50-64","2011","124","","" +"PT","F","POP","TOTAL","OC2","D","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","E","Y15-29","2011","238","","" +"PT","F","POP","TOTAL","OC2","E","Y30-49","2011","821","","" +"PT","F","POP","TOTAL","OC2","E","Y50-64","2011","79","","" +"PT","F","POP","TOTAL","OC2","E","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","F","Y15-29","2011","1246","","" +"PT","F","POP","TOTAL","OC2","F","Y30-49","2011","2912","","" +"PT","F","POP","TOTAL","OC2","F","Y50-64","2011","234","","" +"PT","F","POP","TOTAL","OC2","F","Y65-84","2011","10","","" +"PT","F","POP","TOTAL","OC2","F","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","G","Y15-29","2011","4720","","" +"PT","F","POP","TOTAL","OC2","G","Y30-49","2011","8186","","" +"PT","F","POP","TOTAL","OC2","G","Y50-64","2011","1362","","" +"PT","F","POP","TOTAL","OC2","G","Y65-84","2011","187","","" +"PT","F","POP","TOTAL","OC2","G","Y_GE85","2011","23","","" +"PT","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","H","Y15-29","2011","221","","" +"PT","F","POP","TOTAL","OC2","H","Y30-49","2011","1117","","" +"PT","F","POP","TOTAL","OC2","H","Y50-64","2011","317","","" +"PT","F","POP","TOTAL","OC2","H","Y65-84","2011","7","","" +"PT","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","I","Y15-29","2011","454","","" +"PT","F","POP","TOTAL","OC2","I","Y30-49","2011","668","","" +"PT","F","POP","TOTAL","OC2","I","Y50-64","2011","99","","" +"PT","F","POP","TOTAL","OC2","I","Y65-84","2011","9","","" +"PT","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","J","Y15-29","2011","3340","","" +"PT","F","POP","TOTAL","OC2","J","Y30-49","2011","7356","","" +"PT","F","POP","TOTAL","OC2","J","Y50-64","2011","814","","" +"PT","F","POP","TOTAL","OC2","J","Y65-84","2011","23","","" +"PT","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","K","Y15-29","2011","806","","" +"PT","F","POP","TOTAL","OC2","K","Y30-49","2011","2657","","" +"PT","F","POP","TOTAL","OC2","K","Y50-64","2011","384","","" +"PT","F","POP","TOTAL","OC2","K","Y65-84","2011","5","","" +"PT","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","L","Y15-29","2011","147","","" +"PT","F","POP","TOTAL","OC2","L","Y30-49","2011","452","","" +"PT","F","POP","TOTAL","OC2","L","Y50-64","2011","59","","" +"PT","F","POP","TOTAL","OC2","L","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","M","Y15-29","2011","12378","","" +"PT","F","POP","TOTAL","OC2","M","Y30-49","2011","26085","","" +"PT","F","POP","TOTAL","OC2","M","Y50-64","2011","2795","","" +"PT","F","POP","TOTAL","OC2","M","Y65-84","2011","186","","" +"PT","F","POP","TOTAL","OC2","M","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","N","Y15-29","2011","1145","","" +"PT","F","POP","TOTAL","OC2","N","Y30-49","2011","2023","","" +"PT","F","POP","TOTAL","OC2","N","Y50-64","2011","220","","" +"PT","F","POP","TOTAL","OC2","N","Y65-84","2011","12","","" +"PT","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","O","Y15-29","2011","3332","","" +"PT","F","POP","TOTAL","OC2","O","Y30-49","2011","19341","","" +"PT","F","POP","TOTAL","OC2","O","Y50-64","2011","5022","","" +"PT","F","POP","TOTAL","OC2","O","Y65-84","2011","65","","" +"PT","F","POP","TOTAL","OC2","O","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","P","Y15-29","2011","23945","","" +"PT","F","POP","TOTAL","OC2","P","Y30-49","2011","119704","","" +"PT","F","POP","TOTAL","OC2","P","Y50-64","2011","40516","","" +"PT","F","POP","TOTAL","OC2","P","Y65-84","2011","776","","" +"PT","F","POP","TOTAL","OC2","P","Y_GE85","2011","8","","" +"PT","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","Q","Y15-29","2011","29887","","" +"PT","F","POP","TOTAL","OC2","Q","Y30-49","2011","49692","","" +"PT","F","POP","TOTAL","OC2","Q","Y50-64","2011","13948","","" +"PT","F","POP","TOTAL","OC2","Q","Y65-84","2011","667","","" +"PT","F","POP","TOTAL","OC2","Q","Y_GE85","2011","13","","" +"PT","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","R","Y15-29","2011","1591","","" +"PT","F","POP","TOTAL","OC2","R","Y30-49","2011","3012","","" +"PT","F","POP","TOTAL","OC2","R","Y50-64","2011","698","","" +"PT","F","POP","TOTAL","OC2","R","Y65-84","2011","65","","" +"PT","F","POP","TOTAL","OC2","R","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","S","Y15-29","2011","708","","" +"PT","F","POP","TOTAL","OC2","S","Y30-49","2011","1766","","" +"PT","F","POP","TOTAL","OC2","S","Y50-64","2011","319","","" +"PT","F","POP","TOTAL","OC2","S","Y65-84","2011","46","","" +"PT","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","T","Y15-29","2011","3","","" +"PT","F","POP","TOTAL","OC2","T","Y30-49","2011","12","","" +"PT","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC2","T","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","U","Y15-29","2011","21","","" +"PT","F","POP","TOTAL","OC2","U","Y30-49","2011","111","","" +"PT","F","POP","TOTAL","OC2","U","Y50-64","2011","35","","" +"PT","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","A","Y15-29","2011","207","","" +"PT","F","POP","TOTAL","OC3","A","Y30-49","2011","681","","" +"PT","F","POP","TOTAL","OC3","A","Y50-64","2011","218","","" +"PT","F","POP","TOTAL","OC3","A","Y65-84","2011","3","","" +"PT","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","B","Y15-29","2011","53","","" +"PT","F","POP","TOTAL","OC3","B","Y30-49","2011","143","","" +"PT","F","POP","TOTAL","OC3","B","Y50-64","2011","50","","" +"PT","F","POP","TOTAL","OC3","B","Y65-84","2011","4","","" +"PT","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","C","Y15-29","2011","5039","","" +"PT","F","POP","TOTAL","OC3","C","Y30-49","2011","17393","","" +"PT","F","POP","TOTAL","OC3","C","Y50-64","2011","4889","","" +"PT","F","POP","TOTAL","OC3","C","Y65-84","2011","106","","" +"PT","F","POP","TOTAL","OC3","C","Y_GE85","2011","4","","" +"PT","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","D","Y15-29","2011","122","","" +"PT","F","POP","TOTAL","OC3","D","Y30-49","2011","407","","" +"PT","F","POP","TOTAL","OC3","D","Y50-64","2011","271","","" +"PT","F","POP","TOTAL","OC3","D","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","E","Y15-29","2011","262","","" +"PT","F","POP","TOTAL","OC3","E","Y30-49","2011","1044","","" +"PT","F","POP","TOTAL","OC3","E","Y50-64","2011","181","","" +"PT","F","POP","TOTAL","OC3","E","Y65-84","2011","5","","" +"PT","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","F","Y15-29","2011","1252","","" +"PT","F","POP","TOTAL","OC3","F","Y30-49","2011","3785","","" +"PT","F","POP","TOTAL","OC3","F","Y50-64","2011","910","","" +"PT","F","POP","TOTAL","OC3","F","Y65-84","2011","23","","" +"PT","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","G","Y15-29","2011","6202","","" +"PT","F","POP","TOTAL","OC3","G","Y30-49","2011","18806","","" +"PT","F","POP","TOTAL","OC3","G","Y50-64","2011","4349","","" +"PT","F","POP","TOTAL","OC3","G","Y65-84","2011","183","","" +"PT","F","POP","TOTAL","OC3","G","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","H","Y15-29","2011","823","","" +"PT","F","POP","TOTAL","OC3","H","Y30-49","2011","3285","","" +"PT","F","POP","TOTAL","OC3","H","Y50-64","2011","1031","","" +"PT","F","POP","TOTAL","OC3","H","Y65-84","2011","19","","" +"PT","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","I","Y15-29","2011","798","","" +"PT","F","POP","TOTAL","OC3","I","Y30-49","2011","2056","","" +"PT","F","POP","TOTAL","OC3","I","Y50-64","2011","642","","" +"PT","F","POP","TOTAL","OC3","I","Y65-84","2011","26","","" +"PT","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","J","Y15-29","2011","1645","","" +"PT","F","POP","TOTAL","OC3","J","Y30-49","2011","4580","","" +"PT","F","POP","TOTAL","OC3","J","Y50-64","2011","888","","" +"PT","F","POP","TOTAL","OC3","J","Y65-84","2011","21","","" +"PT","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","K","Y15-29","2011","5599","","" +"PT","F","POP","TOTAL","OC3","K","Y30-49","2011","22867","","" +"PT","F","POP","TOTAL","OC3","K","Y50-64","2011","5619","","" +"PT","F","POP","TOTAL","OC3","K","Y65-84","2011","72","","" +"PT","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","L","Y15-29","2011","882","","" +"PT","F","POP","TOTAL","OC3","L","Y30-49","2011","3768","","" +"PT","F","POP","TOTAL","OC3","L","Y50-64","2011","1211","","" +"PT","F","POP","TOTAL","OC3","L","Y65-84","2011","59","","" +"PT","F","POP","TOTAL","OC3","L","Y_GE85","2011","3","","" +"PT","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","M","Y15-29","2011","6661","","" +"PT","F","POP","TOTAL","OC3","M","Y30-49","2011","20506","","" +"PT","F","POP","TOTAL","OC3","M","Y50-64","2011","4538","","" +"PT","F","POP","TOTAL","OC3","M","Y65-84","2011","174","","" +"PT","F","POP","TOTAL","OC3","M","Y_GE85","2011","4","","" +"PT","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","N","Y15-29","2011","1816","","" +"PT","F","POP","TOTAL","OC3","N","Y30-49","2011","3865","","" +"PT","F","POP","TOTAL","OC3","N","Y50-64","2011","745","","" +"PT","F","POP","TOTAL","OC3","N","Y65-84","2011","32","","" +"PT","F","POP","TOTAL","OC3","N","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","O","Y15-29","2011","1561","","" +"PT","F","POP","TOTAL","OC3","O","Y30-49","2011","14136","","" +"PT","F","POP","TOTAL","OC3","O","Y50-64","2011","7773","","" +"PT","F","POP","TOTAL","OC3","O","Y65-84","2011","72","","" +"PT","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","P","Y15-29","2011","1258","","" +"PT","F","POP","TOTAL","OC3","P","Y30-49","2011","4746","","" +"PT","F","POP","TOTAL","OC3","P","Y50-64","2011","2007","","" +"PT","F","POP","TOTAL","OC3","P","Y65-84","2011","75","","" +"PT","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","Q","Y15-29","2011","8271","","" +"PT","F","POP","TOTAL","OC3","Q","Y30-49","2011","18364","","" +"PT","F","POP","TOTAL","OC3","Q","Y50-64","2011","6203","","" +"PT","F","POP","TOTAL","OC3","Q","Y65-84","2011","339","","" +"PT","F","POP","TOTAL","OC3","Q","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","R","Y15-29","2011","1346","","" +"PT","F","POP","TOTAL","OC3","R","Y30-49","2011","2008","","" +"PT","F","POP","TOTAL","OC3","R","Y50-64","2011","370","","" +"PT","F","POP","TOTAL","OC3","R","Y65-84","2011","22","","" +"PT","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","S","Y15-29","2011","673","","" +"PT","F","POP","TOTAL","OC3","S","Y30-49","2011","1784","","" +"PT","F","POP","TOTAL","OC3","S","Y50-64","2011","627","","" +"PT","F","POP","TOTAL","OC3","S","Y65-84","2011","99","","" +"PT","F","POP","TOTAL","OC3","S","Y_GE85","2011","3","","" +"PT","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","T","Y15-29","2011","4","","" +"PT","F","POP","TOTAL","OC3","T","Y30-49","2011","24","","" +"PT","F","POP","TOTAL","OC3","T","Y50-64","2011","6","","" +"PT","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","U","Y15-29","2011","16","","" +"PT","F","POP","TOTAL","OC3","U","Y30-49","2011","92","","" +"PT","F","POP","TOTAL","OC3","U","Y50-64","2011","46","","" +"PT","F","POP","TOTAL","OC3","U","Y65-84","2011","3","","" +"PT","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","A","Y15-29","2011","345","","" +"PT","F","POP","TOTAL","OC4","A","Y30-49","2011","1238","","" +"PT","F","POP","TOTAL","OC4","A","Y50-64","2011","495","","" +"PT","F","POP","TOTAL","OC4","A","Y65-84","2011","10","","" +"PT","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","B","Y15-29","2011","90","","" +"PT","F","POP","TOTAL","OC4","B","Y30-49","2011","379","","" +"PT","F","POP","TOTAL","OC4","B","Y50-64","2011","92","","" +"PT","F","POP","TOTAL","OC4","B","Y65-84","2011","3","","" +"PT","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","C","Y15-29","2011","5654","","" +"PT","F","POP","TOTAL","OC4","C","Y30-49","2011","20664","","" +"PT","F","POP","TOTAL","OC4","C","Y50-64","2011","6523","","" +"PT","F","POP","TOTAL","OC4","C","Y65-84","2011","96","","" +"PT","F","POP","TOTAL","OC4","C","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","D","Y15-29","2011","292","","" +"PT","F","POP","TOTAL","OC4","D","Y30-49","2011","738","","" +"PT","F","POP","TOTAL","OC4","D","Y50-64","2011","488","","" +"PT","F","POP","TOTAL","OC4","D","Y65-84","2011","7","","" +"PT","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","E","Y15-29","2011","406","","" +"PT","F","POP","TOTAL","OC4","E","Y30-49","2011","1583","","" +"PT","F","POP","TOTAL","OC4","E","Y50-64","2011","455","","" +"PT","F","POP","TOTAL","OC4","E","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","F","Y15-29","2011","2194","","" +"PT","F","POP","TOTAL","OC4","F","Y30-49","2011","7688","","" +"PT","F","POP","TOTAL","OC4","F","Y50-64","2011","2218","","" +"PT","F","POP","TOTAL","OC4","F","Y65-84","2011","42","","" +"PT","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","G","Y15-29","2011","9725","","" +"PT","F","POP","TOTAL","OC4","G","Y30-49","2011","29869","","" +"PT","F","POP","TOTAL","OC4","G","Y50-64","2011","8103","","" +"PT","F","POP","TOTAL","OC4","G","Y65-84","2011","210","","" +"PT","F","POP","TOTAL","OC4","G","Y_GE85","2011","3","","" +"PT","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","H","Y15-29","2011","2694","","" +"PT","F","POP","TOTAL","OC4","H","Y30-49","2011","8326","","" +"PT","F","POP","TOTAL","OC4","H","Y50-64","2011","2895","","" +"PT","F","POP","TOTAL","OC4","H","Y65-84","2011","48","","" +"PT","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","I","Y15-29","2011","3183","","" +"PT","F","POP","TOTAL","OC4","I","Y30-49","2011","5371","","" +"PT","F","POP","TOTAL","OC4","I","Y50-64","2011","1232","","" +"PT","F","POP","TOTAL","OC4","I","Y65-84","2011","46","","" +"PT","F","POP","TOTAL","OC4","I","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","J","Y15-29","2011","4039","","" +"PT","F","POP","TOTAL","OC4","J","Y30-49","2011","5682","","" +"PT","F","POP","TOTAL","OC4","J","Y50-64","2011","1170","","" +"PT","F","POP","TOTAL","OC4","J","Y65-84","2011","21","","" +"PT","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","K","Y15-29","2011","2436","","" +"PT","F","POP","TOTAL","OC4","K","Y30-49","2011","4494","","" +"PT","F","POP","TOTAL","OC4","K","Y50-64","2011","842","","" +"PT","F","POP","TOTAL","OC4","K","Y65-84","2011","19","","" +"PT","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","L","Y15-29","2011","859","","" +"PT","F","POP","TOTAL","OC4","L","Y30-49","2011","2559","","" +"PT","F","POP","TOTAL","OC4","L","Y50-64","2011","573","","" +"PT","F","POP","TOTAL","OC4","L","Y65-84","2011","20","","" +"PT","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","M","Y15-29","2011","4281","","" +"PT","F","POP","TOTAL","OC4","M","Y30-49","2011","12106","","" +"PT","F","POP","TOTAL","OC4","M","Y50-64","2011","3215","","" +"PT","F","POP","TOTAL","OC4","M","Y65-84","2011","91","","" +"PT","F","POP","TOTAL","OC4","M","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","N","Y15-29","2011","5762","","" +"PT","F","POP","TOTAL","OC4","N","Y30-49","2011","9595","","" +"PT","F","POP","TOTAL","OC4","N","Y50-64","2011","2104","","" +"PT","F","POP","TOTAL","OC4","N","Y65-84","2011","51","","" +"PT","F","POP","TOTAL","OC4","N","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","O","Y15-29","2011","4624","","" +"PT","F","POP","TOTAL","OC4","O","Y30-49","2011","26298","","" +"PT","F","POP","TOTAL","OC4","O","Y50-64","2011","15174","","" +"PT","F","POP","TOTAL","OC4","O","Y65-84","2011","275","","" +"PT","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","P","Y15-29","2011","1791","","" +"PT","F","POP","TOTAL","OC4","P","Y30-49","2011","10766","","" +"PT","F","POP","TOTAL","OC4","P","Y50-64","2011","5133","","" +"PT","F","POP","TOTAL","OC4","P","Y65-84","2011","137","","" +"PT","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","Q","Y15-29","2011","4921","","" +"PT","F","POP","TOTAL","OC4","Q","Y30-49","2011","19281","","" +"PT","F","POP","TOTAL","OC4","Q","Y50-64","2011","8180","","" +"PT","F","POP","TOTAL","OC4","Q","Y65-84","2011","218","","" +"PT","F","POP","TOTAL","OC4","Q","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","R","Y15-29","2011","1193","","" +"PT","F","POP","TOTAL","OC4","R","Y30-49","2011","2936","","" +"PT","F","POP","TOTAL","OC4","R","Y50-64","2011","907","","" +"PT","F","POP","TOTAL","OC4","R","Y65-84","2011","38","","" +"PT","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","S","Y15-29","2011","928","","" +"PT","F","POP","TOTAL","OC4","S","Y30-49","2011","2930","","" +"PT","F","POP","TOTAL","OC4","S","Y50-64","2011","1167","","" +"PT","F","POP","TOTAL","OC4","S","Y65-84","2011","44","","" +"PT","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","T","Y15-29","2011","6","","" +"PT","F","POP","TOTAL","OC4","T","Y30-49","2011","29","","" +"PT","F","POP","TOTAL","OC4","T","Y50-64","2011","4","","" +"PT","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","U","Y15-29","2011","15","","" +"PT","F","POP","TOTAL","OC4","U","Y30-49","2011","89","","" +"PT","F","POP","TOTAL","OC4","U","Y50-64","2011","59","","" +"PT","F","POP","TOTAL","OC4","U","Y65-84","2011","4","","" +"PT","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","A","Y15-29","2011","153","","" +"PT","F","POP","TOTAL","OC5","A","Y30-49","2011","506","","" +"PT","F","POP","TOTAL","OC5","A","Y50-64","2011","263","","" +"PT","F","POP","TOTAL","OC5","A","Y65-84","2011","18","","" +"PT","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","B","Y15-29","2011","8","","" +"PT","F","POP","TOTAL","OC5","B","Y30-49","2011","36","","" +"PT","F","POP","TOTAL","OC5","B","Y50-64","2011","23","","" +"PT","F","POP","TOTAL","OC5","B","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","C","Y15-29","2011","4203","","" +"PT","F","POP","TOTAL","OC5","C","Y30-49","2011","8178","","" +"PT","F","POP","TOTAL","OC5","C","Y50-64","2011","2868","","" +"PT","F","POP","TOTAL","OC5","C","Y65-84","2011","123","","" +"PT","F","POP","TOTAL","OC5","C","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","D","Y15-29","2011","98","","" +"PT","F","POP","TOTAL","OC5","D","Y30-49","2011","153","","" +"PT","F","POP","TOTAL","OC5","D","Y50-64","2011","92","","" +"PT","F","POP","TOTAL","OC5","D","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","E","Y15-29","2011","51","","" +"PT","F","POP","TOTAL","OC5","E","Y30-49","2011","132","","" +"PT","F","POP","TOTAL","OC5","E","Y50-64","2011","54","","" +"PT","F","POP","TOTAL","OC5","E","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","F","Y15-29","2011","141","","" +"PT","F","POP","TOTAL","OC5","F","Y30-49","2011","452","","" +"PT","F","POP","TOTAL","OC5","F","Y50-64","2011","171","","" +"PT","F","POP","TOTAL","OC5","F","Y65-84","2011","8","","" +"PT","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","G","Y15-29","2011","71836","","" +"PT","F","POP","TOTAL","OC5","G","Y30-49","2011","103781","","" +"PT","F","POP","TOTAL","OC5","G","Y50-64","2011","33030","","" +"PT","F","POP","TOTAL","OC5","G","Y65-84","2011","3120","","" +"PT","F","POP","TOTAL","OC5","G","Y_GE85","2011","47","","" +"PT","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","H","Y15-29","2011","1826","","" +"PT","F","POP","TOTAL","OC5","H","Y30-49","2011","3933","","" +"PT","F","POP","TOTAL","OC5","H","Y50-64","2011","793","","" +"PT","F","POP","TOTAL","OC5","H","Y65-84","2011","29","","" +"PT","F","POP","TOTAL","OC5","H","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","I","Y15-29","2011","39849","","" +"PT","F","POP","TOTAL","OC5","I","Y30-49","2011","72503","","" +"PT","F","POP","TOTAL","OC5","I","Y50-64","2011","30593","","" +"PT","F","POP","TOTAL","OC5","I","Y65-84","2011","1429","","" +"PT","F","POP","TOTAL","OC5","I","Y_GE85","2011","18","","" +"PT","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","J","Y15-29","2011","2440","","" +"PT","F","POP","TOTAL","OC5","J","Y30-49","2011","2793","","" +"PT","F","POP","TOTAL","OC5","J","Y50-64","2011","250","","" +"PT","F","POP","TOTAL","OC5","J","Y65-84","2011","4","","" +"PT","F","POP","TOTAL","OC5","J","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","K","Y15-29","2011","501","","" +"PT","F","POP","TOTAL","OC5","K","Y30-49","2011","804","","" +"PT","F","POP","TOTAL","OC5","K","Y50-64","2011","160","","" +"PT","F","POP","TOTAL","OC5","K","Y65-84","2011","11","","" +"PT","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","L","Y15-29","2011","188","","" +"PT","F","POP","TOTAL","OC5","L","Y30-49","2011","723","","" +"PT","F","POP","TOTAL","OC5","L","Y50-64","2011","549","","" +"PT","F","POP","TOTAL","OC5","L","Y65-84","2011","125","","" +"PT","F","POP","TOTAL","OC5","L","Y_GE85","2011","3","","" +"PT","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","M","Y15-29","2011","768","","" +"PT","F","POP","TOTAL","OC5","M","Y30-49","2011","1238","","" +"PT","F","POP","TOTAL","OC5","M","Y50-64","2011","273","","" +"PT","F","POP","TOTAL","OC5","M","Y65-84","2011","10","","" +"PT","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","N","Y15-29","2011","2818","","" +"PT","F","POP","TOTAL","OC5","N","Y30-49","2011","7256","","" +"PT","F","POP","TOTAL","OC5","N","Y50-64","2011","1896","","" +"PT","F","POP","TOTAL","OC5","N","Y65-84","2011","114","","" +"PT","F","POP","TOTAL","OC5","N","Y_GE85","2011","4","","" +"PT","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","O","Y15-29","2011","2145","","" +"PT","F","POP","TOTAL","OC5","O","Y30-49","2011","6012","","" +"PT","F","POP","TOTAL","OC5","O","Y50-64","2011","2250","","" +"PT","F","POP","TOTAL","OC5","O","Y65-84","2011","79","","" +"PT","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","P","Y15-29","2011","5309","","" +"PT","F","POP","TOTAL","OC5","P","Y30-49","2011","23892","","" +"PT","F","POP","TOTAL","OC5","P","Y50-64","2011","13193","","" +"PT","F","POP","TOTAL","OC5","P","Y65-84","2011","451","","" +"PT","F","POP","TOTAL","OC5","P","Y_GE85","2011","4","","" +"PT","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","Q","Y15-29","2011","13218","","" +"PT","F","POP","TOTAL","OC5","Q","Y30-49","2011","60824","","" +"PT","F","POP","TOTAL","OC5","Q","Y50-64","2011","32545","","" +"PT","F","POP","TOTAL","OC5","Q","Y65-84","2011","912","","" +"PT","F","POP","TOTAL","OC5","Q","Y_GE85","2011","9","","" +"PT","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","R","Y15-29","2011","824","","" +"PT","F","POP","TOTAL","OC5","R","Y30-49","2011","1128","","" +"PT","F","POP","TOTAL","OC5","R","Y50-64","2011","418","","" +"PT","F","POP","TOTAL","OC5","R","Y65-84","2011","33","","" +"PT","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","S","Y15-29","2011","12260","","" +"PT","F","POP","TOTAL","OC5","S","Y30-49","2011","29169","","" +"PT","F","POP","TOTAL","OC5","S","Y50-64","2011","6866","","" +"PT","F","POP","TOTAL","OC5","S","Y65-84","2011","472","","" +"PT","F","POP","TOTAL","OC5","S","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","T","Y15-29","2011","336","","" +"PT","F","POP","TOTAL","OC5","T","Y30-49","2011","1100","","" +"PT","F","POP","TOTAL","OC5","T","Y50-64","2011","940","","" +"PT","F","POP","TOTAL","OC5","T","Y65-84","2011","190","","" +"PT","F","POP","TOTAL","OC5","T","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","U","Y15-29","2011","3","","" +"PT","F","POP","TOTAL","OC5","U","Y30-49","2011","17","","" +"PT","F","POP","TOTAL","OC5","U","Y50-64","2011","10","","" +"PT","F","POP","TOTAL","OC5","U","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","A","Y15-29","2011","1866","","" +"PT","F","POP","TOTAL","OC6","A","Y30-49","2011","9356","","" +"PT","F","POP","TOTAL","OC6","A","Y50-64","2011","9547","","" +"PT","F","POP","TOTAL","OC6","A","Y65-84","2011","1119","","" +"PT","F","POP","TOTAL","OC6","A","Y_GE85","2011","20","","" +"PT","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","B","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC6","B","Y30-49","2011","6","","" +"PT","F","POP","TOTAL","OC6","B","Y50-64","2011","2","","" +"PT","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","C","Y15-29","2011","96","","" +"PT","F","POP","TOTAL","OC6","C","Y30-49","2011","390","","" +"PT","F","POP","TOTAL","OC6","C","Y50-64","2011","262","","" +"PT","F","POP","TOTAL","OC6","C","Y65-84","2011","10","","" +"PT","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC6","D","Y30-49","2011","1","","" +"PT","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","E","Y15-29","2011","2","","" +"PT","F","POP","TOTAL","OC6","E","Y30-49","2011","8","","" +"PT","F","POP","TOTAL","OC6","E","Y50-64","2011","12","","" +"PT","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","F","Y15-29","2011","2","","" +"PT","F","POP","TOTAL","OC6","F","Y30-49","2011","26","","" +"PT","F","POP","TOTAL","OC6","F","Y50-64","2011","17","","" +"PT","F","POP","TOTAL","OC6","F","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","G","Y15-29","2011","240","","" +"PT","F","POP","TOTAL","OC6","G","Y30-49","2011","1099","","" +"PT","F","POP","TOTAL","OC6","G","Y50-64","2011","644","","" +"PT","F","POP","TOTAL","OC6","G","Y65-84","2011","36","","" +"PT","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","H","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC6","H","Y30-49","2011","3","","" +"PT","F","POP","TOTAL","OC6","H","Y50-64","2011","2","","" +"PT","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","I","Y15-29","2011","9","","" +"PT","F","POP","TOTAL","OC6","I","Y30-49","2011","67","","" +"PT","F","POP","TOTAL","OC6","I","Y50-64","2011","60","","" +"PT","F","POP","TOTAL","OC6","I","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","J","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC6","J","Y30-49","2011","1","","" +"PT","F","POP","TOTAL","OC6","J","Y50-64","2011","2","","" +"PT","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","K","Y15-29","2011","4","","" +"PT","F","POP","TOTAL","OC6","K","Y30-49","2011","7","","" +"PT","F","POP","TOTAL","OC6","K","Y50-64","2011","7","","" +"PT","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","L","Y15-29","2011","2","","" +"PT","F","POP","TOTAL","OC6","L","Y30-49","2011","12","","" +"PT","F","POP","TOTAL","OC6","L","Y50-64","2011","10","","" +"PT","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","M","Y15-29","2011","10","","" +"PT","F","POP","TOTAL","OC6","M","Y30-49","2011","34","","" +"PT","F","POP","TOTAL","OC6","M","Y50-64","2011","11","","" +"PT","F","POP","TOTAL","OC6","M","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","N","Y15-29","2011","261","","" +"PT","F","POP","TOTAL","OC6","N","Y30-49","2011","1353","","" +"PT","F","POP","TOTAL","OC6","N","Y50-64","2011","665","","" +"PT","F","POP","TOTAL","OC6","N","Y65-84","2011","26","","" +"PT","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","O","Y15-29","2011","71","","" +"PT","F","POP","TOTAL","OC6","O","Y30-49","2011","998","","" +"PT","F","POP","TOTAL","OC6","O","Y50-64","2011","594","","" +"PT","F","POP","TOTAL","OC6","O","Y65-84","2011","28","","" +"PT","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","P","Y15-29","2011","15","","" +"PT","F","POP","TOTAL","OC6","P","Y30-49","2011","61","","" +"PT","F","POP","TOTAL","OC6","P","Y50-64","2011","30","","" +"PT","F","POP","TOTAL","OC6","P","Y65-84","2011","4","","" +"PT","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","Q","Y15-29","2011","17","","" +"PT","F","POP","TOTAL","OC6","Q","Y30-49","2011","78","","" +"PT","F","POP","TOTAL","OC6","Q","Y50-64","2011","48","","" +"PT","F","POP","TOTAL","OC6","Q","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","R","Y15-29","2011","16","","" +"PT","F","POP","TOTAL","OC6","R","Y30-49","2011","91","","" +"PT","F","POP","TOTAL","OC6","R","Y50-64","2011","39","","" +"PT","F","POP","TOTAL","OC6","R","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","S","Y15-29","2011","19","","" +"PT","F","POP","TOTAL","OC6","S","Y30-49","2011","68","","" +"PT","F","POP","TOTAL","OC6","S","Y50-64","2011","29","","" +"PT","F","POP","TOTAL","OC6","S","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","U","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","A","Y15-29","2011","93","","" +"PT","F","POP","TOTAL","OC7","A","Y30-49","2011","414","","" +"PT","F","POP","TOTAL","OC7","A","Y50-64","2011","212","","" +"PT","F","POP","TOTAL","OC7","A","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","B","Y15-29","2011","7","","" +"PT","F","POP","TOTAL","OC7","B","Y30-49","2011","11","","" +"PT","F","POP","TOTAL","OC7","B","Y50-64","2011","4","","" +"PT","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","C","Y15-29","2011","16856","","" +"PT","F","POP","TOTAL","OC7","C","Y30-49","2011","75621","","" +"PT","F","POP","TOTAL","OC7","C","Y50-64","2011","23563","","" +"PT","F","POP","TOTAL","OC7","C","Y65-84","2011","461","","" +"PT","F","POP","TOTAL","OC7","C","Y_GE85","2011","8","","" +"PT","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","D","Y15-29","2011","26","","" +"PT","F","POP","TOTAL","OC7","D","Y30-49","2011","68","","" +"PT","F","POP","TOTAL","OC7","D","Y50-64","2011","25","","" +"PT","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","E","Y15-29","2011","9","","" +"PT","F","POP","TOTAL","OC7","E","Y30-49","2011","27","","" +"PT","F","POP","TOTAL","OC7","E","Y50-64","2011","9","","" +"PT","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","F","Y15-29","2011","238","","" +"PT","F","POP","TOTAL","OC7","F","Y30-49","2011","628","","" +"PT","F","POP","TOTAL","OC7","F","Y50-64","2011","236","","" +"PT","F","POP","TOTAL","OC7","F","Y65-84","2011","7","","" +"PT","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","G","Y15-29","2011","2828","","" +"PT","F","POP","TOTAL","OC7","G","Y30-49","2011","9708","","" +"PT","F","POP","TOTAL","OC7","G","Y50-64","2011","4101","","" +"PT","F","POP","TOTAL","OC7","G","Y65-84","2011","161","","" +"PT","F","POP","TOTAL","OC7","G","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","H","Y15-29","2011","31","","" +"PT","F","POP","TOTAL","OC7","H","Y30-49","2011","99","","" +"PT","F","POP","TOTAL","OC7","H","Y50-64","2011","33","","" +"PT","F","POP","TOTAL","OC7","H","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","I","Y15-29","2011","739","","" +"PT","F","POP","TOTAL","OC7","I","Y30-49","2011","2141","","" +"PT","F","POP","TOTAL","OC7","I","Y50-64","2011","933","","" +"PT","F","POP","TOTAL","OC7","I","Y65-84","2011","47","","" +"PT","F","POP","TOTAL","OC7","I","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","J","Y15-29","2011","125","","" +"PT","F","POP","TOTAL","OC7","J","Y30-49","2011","217","","" +"PT","F","POP","TOTAL","OC7","J","Y50-64","2011","63","","" +"PT","F","POP","TOTAL","OC7","J","Y65-84","2011","4","","" +"PT","F","POP","TOTAL","OC7","J","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","K","Y15-29","2011","2","","" +"PT","F","POP","TOTAL","OC7","K","Y30-49","2011","17","","" +"PT","F","POP","TOTAL","OC7","K","Y50-64","2011","4","","" +"PT","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","L","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC7","L","Y30-49","2011","8","","" +"PT","F","POP","TOTAL","OC7","L","Y50-64","2011","11","","" +"PT","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","M","Y15-29","2011","79","","" +"PT","F","POP","TOTAL","OC7","M","Y30-49","2011","262","","" +"PT","F","POP","TOTAL","OC7","M","Y50-64","2011","97","","" +"PT","F","POP","TOTAL","OC7","M","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","N","Y15-29","2011","81","","" +"PT","F","POP","TOTAL","OC7","N","Y30-49","2011","160","","" +"PT","F","POP","TOTAL","OC7","N","Y50-64","2011","78","","" +"PT","F","POP","TOTAL","OC7","N","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","O","Y15-29","2011","34","","" +"PT","F","POP","TOTAL","OC7","O","Y30-49","2011","192","","" +"PT","F","POP","TOTAL","OC7","O","Y50-64","2011","167","","" +"PT","F","POP","TOTAL","OC7","O","Y65-84","2011","3","","" +"PT","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","P","Y15-29","2011","33","","" +"PT","F","POP","TOTAL","OC7","P","Y30-49","2011","312","","" +"PT","F","POP","TOTAL","OC7","P","Y50-64","2011","178","","" +"PT","F","POP","TOTAL","OC7","P","Y65-84","2011","10","","" +"PT","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","Q","Y15-29","2011","52","","" +"PT","F","POP","TOTAL","OC7","Q","Y30-49","2011","303","","" +"PT","F","POP","TOTAL","OC7","Q","Y50-64","2011","481","","" +"PT","F","POP","TOTAL","OC7","Q","Y65-84","2011","37","","" +"PT","F","POP","TOTAL","OC7","Q","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","R","Y15-29","2011","30","","" +"PT","F","POP","TOTAL","OC7","R","Y30-49","2011","90","","" +"PT","F","POP","TOTAL","OC7","R","Y50-64","2011","68","","" +"PT","F","POP","TOTAL","OC7","R","Y65-84","2011","4","","" +"PT","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","S","Y15-29","2011","108","","" +"PT","F","POP","TOTAL","OC7","S","Y30-49","2011","810","","" +"PT","F","POP","TOTAL","OC7","S","Y50-64","2011","721","","" +"PT","F","POP","TOTAL","OC7","S","Y65-84","2011","51","","" +"PT","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC7","U","Y30-49","2011","1","","" +"PT","F","POP","TOTAL","OC7","U","Y50-64","2011","1","","" +"PT","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","A","Y15-29","2011","59","","" +"PT","F","POP","TOTAL","OC8","A","Y30-49","2011","255","","" +"PT","F","POP","TOTAL","OC8","A","Y50-64","2011","150","","" +"PT","F","POP","TOTAL","OC8","A","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","B","Y15-29","2011","20","","" +"PT","F","POP","TOTAL","OC8","B","Y30-49","2011","56","","" +"PT","F","POP","TOTAL","OC8","B","Y50-64","2011","23","","" +"PT","F","POP","TOTAL","OC8","B","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","C","Y15-29","2011","7383","","" +"PT","F","POP","TOTAL","OC8","C","Y30-49","2011","29147","","" +"PT","F","POP","TOTAL","OC8","C","Y50-64","2011","10474","","" +"PT","F","POP","TOTAL","OC8","C","Y65-84","2011","87","","" +"PT","F","POP","TOTAL","OC8","C","Y_GE85","2011","2","","" +"PT","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","D","Y15-29","2011","5","","" +"PT","F","POP","TOTAL","OC8","D","Y30-49","2011","16","","" +"PT","F","POP","TOTAL","OC8","D","Y50-64","2011","1","","" +"PT","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","E","Y15-29","2011","11","","" +"PT","F","POP","TOTAL","OC8","E","Y30-49","2011","65","","" +"PT","F","POP","TOTAL","OC8","E","Y50-64","2011","28","","" +"PT","F","POP","TOTAL","OC8","E","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","F","Y15-29","2011","45","","" +"PT","F","POP","TOTAL","OC8","F","Y30-49","2011","92","","" +"PT","F","POP","TOTAL","OC8","F","Y50-64","2011","35","","" +"PT","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","G","Y15-29","2011","650","","" +"PT","F","POP","TOTAL","OC8","G","Y30-49","2011","2334","","" +"PT","F","POP","TOTAL","OC8","G","Y50-64","2011","631","","" +"PT","F","POP","TOTAL","OC8","G","Y65-84","2011","13","","" +"PT","F","POP","TOTAL","OC8","G","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","H","Y15-29","2011","348","","" +"PT","F","POP","TOTAL","OC8","H","Y30-49","2011","1596","","" +"PT","F","POP","TOTAL","OC8","H","Y50-64","2011","550","","" +"PT","F","POP","TOTAL","OC8","H","Y65-84","2011","21","","" +"PT","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","I","Y15-29","2011","25","","" +"PT","F","POP","TOTAL","OC8","I","Y30-49","2011","83","","" +"PT","F","POP","TOTAL","OC8","I","Y50-64","2011","45","","" +"PT","F","POP","TOTAL","OC8","I","Y65-84","2011","3","","" +"PT","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","J","Y15-29","2011","8","","" +"PT","F","POP","TOTAL","OC8","J","Y30-49","2011","7","","" +"PT","F","POP","TOTAL","OC8","J","Y50-64","2011","2","","" +"PT","F","POP","TOTAL","OC8","J","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","K","Y15-29","2011","5","","" +"PT","F","POP","TOTAL","OC8","K","Y30-49","2011","9","","" +"PT","F","POP","TOTAL","OC8","K","Y50-64","2011","1","","" +"PT","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","L","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC8","L","Y30-49","2011","3","","" +"PT","F","POP","TOTAL","OC8","L","Y50-64","2011","1","","" +"PT","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","M","Y15-29","2011","7","","" +"PT","F","POP","TOTAL","OC8","M","Y30-49","2011","31","","" +"PT","F","POP","TOTAL","OC8","M","Y50-64","2011","14","","" +"PT","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","N","Y15-29","2011","39","","" +"PT","F","POP","TOTAL","OC8","N","Y30-49","2011","112","","" +"PT","F","POP","TOTAL","OC8","N","Y50-64","2011","28","","" +"PT","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","O","Y15-29","2011","60","","" +"PT","F","POP","TOTAL","OC8","O","Y30-49","2011","268","","" +"PT","F","POP","TOTAL","OC8","O","Y50-64","2011","75","","" +"PT","F","POP","TOTAL","OC8","O","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","P","Y15-29","2011","33","","" +"PT","F","POP","TOTAL","OC8","P","Y30-49","2011","144","","" +"PT","F","POP","TOTAL","OC8","P","Y50-64","2011","48","","" +"PT","F","POP","TOTAL","OC8","P","Y65-84","2011","3","","" +"PT","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","Q","Y15-29","2011","63","","" +"PT","F","POP","TOTAL","OC8","Q","Y30-49","2011","491","","" +"PT","F","POP","TOTAL","OC8","Q","Y50-64","2011","198","","" +"PT","F","POP","TOTAL","OC8","Q","Y65-84","2011","3","","" +"PT","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","R","Y15-29","2011","13","","" +"PT","F","POP","TOTAL","OC8","R","Y30-49","2011","27","","" +"PT","F","POP","TOTAL","OC8","R","Y50-64","2011","5","","" +"PT","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","S","Y15-29","2011","120","","" +"PT","F","POP","TOTAL","OC8","S","Y30-49","2011","553","","" +"PT","F","POP","TOTAL","OC8","S","Y50-64","2011","170","","" +"PT","F","POP","TOTAL","OC8","S","Y65-84","2011","9","","" +"PT","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","T","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC8","T","Y30-49","2011","3","","" +"PT","F","POP","TOTAL","OC8","T","Y50-64","2011","1","","" +"PT","F","POP","TOTAL","OC8","T","Y65-84","2011","1","","" +"PT","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","U","Y15-29","2011","1","","" +"PT","F","POP","TOTAL","OC8","U","Y30-49","2011","1","","" +"PT","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","A","Y15-29","2011","1378","","" +"PT","F","POP","TOTAL","OC9","A","Y30-49","2011","5475","","" +"PT","F","POP","TOTAL","OC9","A","Y50-64","2011","4010","","" +"PT","F","POP","TOTAL","OC9","A","Y65-84","2011","175","","" +"PT","F","POP","TOTAL","OC9","A","Y_GE85","2011","3","","" +"PT","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","B","Y15-29","2011","13","","" +"PT","F","POP","TOTAL","OC9","B","Y30-49","2011","120","","" +"PT","F","POP","TOTAL","OC9","B","Y50-64","2011","88","","" +"PT","F","POP","TOTAL","OC9","B","Y65-84","2011","4","","" +"PT","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","C","Y15-29","2011","14251","","" +"PT","F","POP","TOTAL","OC9","C","Y30-49","2011","43859","","" +"PT","F","POP","TOTAL","OC9","C","Y50-64","2011","16343","","" +"PT","F","POP","TOTAL","OC9","C","Y65-84","2011","213","","" +"PT","F","POP","TOTAL","OC9","C","Y_GE85","2011","4","","" +"PT","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","D","Y15-29","2011","50","","" +"PT","F","POP","TOTAL","OC9","D","Y30-49","2011","168","","" +"PT","F","POP","TOTAL","OC9","D","Y50-64","2011","122","","" +"PT","F","POP","TOTAL","OC9","D","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","E","Y15-29","2011","223","","" +"PT","F","POP","TOTAL","OC9","E","Y30-49","2011","1026","","" +"PT","F","POP","TOTAL","OC9","E","Y50-64","2011","438","","" +"PT","F","POP","TOTAL","OC9","E","Y65-84","2011","11","","" +"PT","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","F","Y15-29","2011","301","","" +"PT","F","POP","TOTAL","OC9","F","Y30-49","2011","1315","","" +"PT","F","POP","TOTAL","OC9","F","Y50-64","2011","1068","","" +"PT","F","POP","TOTAL","OC9","F","Y65-84","2011","40","","" +"PT","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","G","Y15-29","2011","7231","","" +"PT","F","POP","TOTAL","OC9","G","Y30-49","2011","20020","","" +"PT","F","POP","TOTAL","OC9","G","Y50-64","2011","9677","","" +"PT","F","POP","TOTAL","OC9","G","Y65-84","2011","491","","" +"PT","F","POP","TOTAL","OC9","G","Y_GE85","2011","3","","" +"PT","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","H","Y15-29","2011","371","","" +"PT","F","POP","TOTAL","OC9","H","Y30-49","2011","1080","","" +"PT","F","POP","TOTAL","OC9","H","Y50-64","2011","801","","" +"PT","F","POP","TOTAL","OC9","H","Y65-84","2011","43","","" +"PT","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","I","Y15-29","2011","4192","","" +"PT","F","POP","TOTAL","OC9","I","Y30-49","2011","15009","","" +"PT","F","POP","TOTAL","OC9","I","Y50-64","2011","9116","","" +"PT","F","POP","TOTAL","OC9","I","Y65-84","2011","257","","" +"PT","F","POP","TOTAL","OC9","I","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","J","Y15-29","2011","179","","" +"PT","F","POP","TOTAL","OC9","J","Y30-49","2011","333","","" +"PT","F","POP","TOTAL","OC9","J","Y50-64","2011","250","","" +"PT","F","POP","TOTAL","OC9","J","Y65-84","2011","12","","" +"PT","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","K","Y15-29","2011","106","","" +"PT","F","POP","TOTAL","OC9","K","Y30-49","2011","601","","" +"PT","F","POP","TOTAL","OC9","K","Y50-64","2011","858","","" +"PT","F","POP","TOTAL","OC9","K","Y65-84","2011","37","","" +"PT","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","L","Y15-29","2011","160","","" +"PT","F","POP","TOTAL","OC9","L","Y30-49","2011","825","","" +"PT","F","POP","TOTAL","OC9","L","Y50-64","2011","560","","" +"PT","F","POP","TOTAL","OC9","L","Y65-84","2011","28","","" +"PT","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","M","Y15-29","2011","265","","" +"PT","F","POP","TOTAL","OC9","M","Y30-49","2011","1084","","" +"PT","F","POP","TOTAL","OC9","M","Y50-64","2011","929","","" +"PT","F","POP","TOTAL","OC9","M","Y65-84","2011","42","","" +"PT","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","N","Y15-29","2011","9176","","" +"PT","F","POP","TOTAL","OC9","N","Y30-49","2011","48094","","" +"PT","F","POP","TOTAL","OC9","N","Y50-64","2011","32042","","" +"PT","F","POP","TOTAL","OC9","N","Y65-84","2011","1281","","" +"PT","F","POP","TOTAL","OC9","N","Y_GE85","2011","8","","" +"PT","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","O","Y15-29","2011","1012","","" +"PT","F","POP","TOTAL","OC9","O","Y30-49","2011","7788","","" +"PT","F","POP","TOTAL","OC9","O","Y50-64","2011","6462","","" +"PT","F","POP","TOTAL","OC9","O","Y65-84","2011","376","","" +"PT","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","P","Y15-29","2011","4384","","" +"PT","F","POP","TOTAL","OC9","P","Y30-49","2011","25996","","" +"PT","F","POP","TOTAL","OC9","P","Y50-64","2011","14912","","" +"PT","F","POP","TOTAL","OC9","P","Y65-84","2011","467","","" +"PT","F","POP","TOTAL","OC9","P","Y_GE85","2011","3","","" +"PT","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","Q","Y15-29","2011","3846","","" +"PT","F","POP","TOTAL","OC9","Q","Y30-49","2011","18501","","" +"PT","F","POP","TOTAL","OC9","Q","Y50-64","2011","10400","","" +"PT","F","POP","TOTAL","OC9","Q","Y65-84","2011","363","","" +"PT","F","POP","TOTAL","OC9","Q","Y_GE85","2011","1","","" +"PT","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","R","Y15-29","2011","301","","" +"PT","F","POP","TOTAL","OC9","R","Y30-49","2011","1384","","" +"PT","F","POP","TOTAL","OC9","R","Y50-64","2011","1000","","" +"PT","F","POP","TOTAL","OC9","R","Y65-84","2011","43","","" +"PT","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","S","Y15-29","2011","950","","" +"PT","F","POP","TOTAL","OC9","S","Y30-49","2011","4341","","" +"PT","F","POP","TOTAL","OC9","S","Y50-64","2011","2506","","" +"PT","F","POP","TOTAL","OC9","S","Y65-84","2011","103","","" +"PT","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","T","Y15-29","2011","5407","","" +"PT","F","POP","TOTAL","OC9","T","Y30-49","2011","44910","","" +"PT","F","POP","TOTAL","OC9","T","Y50-64","2011","36927","","" +"PT","F","POP","TOTAL","OC9","T","Y65-84","2011","2120","","" +"PT","F","POP","TOTAL","OC9","T","Y_GE85","2011","21","","" +"PT","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","U","Y15-29","2011","3","","" +"PT","F","POP","TOTAL","OC9","U","Y30-49","2011","30","","" +"PT","F","POP","TOTAL","OC9","U","Y50-64","2011","15","","" +"PT","F","POP","TOTAL","OC9","U","Y65-84","2011","2","","" +"PT","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"PT","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"PT","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"PT","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"PT","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"PT","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"PT","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","NAP","Y15-29","2011","434496","","" +"PT","M","POP","TOTAL","NAP","NAP","Y30-49","2011","133461","","" +"PT","M","POP","TOTAL","NAP","NAP","Y50-64","2011","331784","","" +"PT","M","POP","TOTAL","NAP","NAP","Y65-84","2011","721132","","" +"PT","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","74750","","" +"PT","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","803999","","" +"PT","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","C","Y15-29","2011","7","","" +"PT","M","POP","TOTAL","OC0","C","Y30-49","2011","20","","" +"PT","M","POP","TOTAL","OC0","C","Y50-64","2011","8","","" +"PT","M","POP","TOTAL","OC0","C","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","G","Y15-29","2011","3","","" +"PT","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","O","Y15-29","2011","14626","","" +"PT","M","POP","TOTAL","OC0","O","Y30-49","2011","11905","","" +"PT","M","POP","TOTAL","OC0","O","Y50-64","2011","2691","","" +"PT","M","POP","TOTAL","OC0","O","Y65-84","2011","35","","" +"PT","M","POP","TOTAL","OC0","O","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","P","Y15-29","2011","61","","" +"PT","M","POP","TOTAL","OC0","P","Y30-49","2011","69","","" +"PT","M","POP","TOTAL","OC0","P","Y50-64","2011","25","","" +"PT","M","POP","TOTAL","OC0","P","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","Q","Y15-29","2011","61","","" +"PT","M","POP","TOTAL","OC0","Q","Y30-49","2011","105","","" +"PT","M","POP","TOTAL","OC0","Q","Y50-64","2011","47","","" +"PT","M","POP","TOTAL","OC0","Q","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","R","Y15-29","2011","6","","" +"PT","M","POP","TOTAL","OC0","R","Y30-49","2011","13","","" +"PT","M","POP","TOTAL","OC0","R","Y50-64","2011","7","","" +"PT","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","S","Y30-49","2011","1","","" +"PT","M","POP","TOTAL","OC0","S","Y50-64","2011","4","","" +"PT","M","POP","TOTAL","OC0","S","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","U","Y15-29","2011","8","","" +"PT","M","POP","TOTAL","OC0","U","Y30-49","2011","43","","" +"PT","M","POP","TOTAL","OC0","U","Y50-64","2011","14","","" +"PT","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","A","Y15-29","2011","688","","" +"PT","M","POP","TOTAL","OC1","A","Y30-49","2011","5842","","" +"PT","M","POP","TOTAL","OC1","A","Y50-64","2011","5889","","" +"PT","M","POP","TOTAL","OC1","A","Y65-84","2011","1217","","" +"PT","M","POP","TOTAL","OC1","A","Y_GE85","2011","25","","" +"PT","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","B","Y15-29","2011","30","","" +"PT","M","POP","TOTAL","OC1","B","Y30-49","2011","350","","" +"PT","M","POP","TOTAL","OC1","B","Y50-64","2011","232","","" +"PT","M","POP","TOTAL","OC1","B","Y65-84","2011","43","","" +"PT","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","C","Y15-29","2011","1998","","" +"PT","M","POP","TOTAL","OC1","C","Y30-49","2011","21064","","" +"PT","M","POP","TOTAL","OC1","C","Y50-64","2011","12329","","" +"PT","M","POP","TOTAL","OC1","C","Y65-84","2011","1764","","" +"PT","M","POP","TOTAL","OC1","C","Y_GE85","2011","28","","" +"PT","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","D","Y15-29","2011","69","","" +"PT","M","POP","TOTAL","OC1","D","Y30-49","2011","543","","" +"PT","M","POP","TOTAL","OC1","D","Y50-64","2011","405","","" +"PT","M","POP","TOTAL","OC1","D","Y65-84","2011","24","","" +"PT","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","E","Y15-29","2011","109","","" +"PT","M","POP","TOTAL","OC1","E","Y30-49","2011","776","","" +"PT","M","POP","TOTAL","OC1","E","Y50-64","2011","343","","" +"PT","M","POP","TOTAL","OC1","E","Y65-84","2011","40","","" +"PT","M","POP","TOTAL","OC1","E","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","F","Y15-29","2011","1214","","" +"PT","M","POP","TOTAL","OC1","F","Y30-49","2011","13200","","" +"PT","M","POP","TOTAL","OC1","F","Y50-64","2011","8214","","" +"PT","M","POP","TOTAL","OC1","F","Y65-84","2011","777","","" +"PT","M","POP","TOTAL","OC1","F","Y_GE85","2011","12","","" +"PT","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","G","Y15-29","2011","4095","","" +"PT","M","POP","TOTAL","OC1","G","Y30-49","2011","35683","","" +"PT","M","POP","TOTAL","OC1","G","Y50-64","2011","21624","","" +"PT","M","POP","TOTAL","OC1","G","Y65-84","2011","4238","","" +"PT","M","POP","TOTAL","OC1","G","Y_GE85","2011","74","","" +"PT","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","H","Y15-29","2011","380","","" +"PT","M","POP","TOTAL","OC1","H","Y30-49","2011","3501","","" +"PT","M","POP","TOTAL","OC1","H","Y50-64","2011","1822","","" +"PT","M","POP","TOTAL","OC1","H","Y65-84","2011","243","","" +"PT","M","POP","TOTAL","OC1","H","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","I","Y15-29","2011","2285","","" +"PT","M","POP","TOTAL","OC1","I","Y30-49","2011","13551","","" +"PT","M","POP","TOTAL","OC1","I","Y50-64","2011","9895","","" +"PT","M","POP","TOTAL","OC1","I","Y65-84","2011","1350","","" +"PT","M","POP","TOTAL","OC1","I","Y_GE85","2011","8","","" +"PT","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","J","Y15-29","2011","877","","" +"PT","M","POP","TOTAL","OC1","J","Y30-49","2011","4971","","" +"PT","M","POP","TOTAL","OC1","J","Y50-64","2011","995","","" +"PT","M","POP","TOTAL","OC1","J","Y65-84","2011","55","","" +"PT","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","K","Y15-29","2011","427","","" +"PT","M","POP","TOTAL","OC1","K","Y30-49","2011","4123","","" +"PT","M","POP","TOTAL","OC1","K","Y50-64","2011","1470","","" +"PT","M","POP","TOTAL","OC1","K","Y65-84","2011","130","","" +"PT","M","POP","TOTAL","OC1","K","Y_GE85","2011","4","","" +"PT","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","L","Y15-29","2011","214","","" +"PT","M","POP","TOTAL","OC1","L","Y30-49","2011","1989","","" +"PT","M","POP","TOTAL","OC1","L","Y50-64","2011","865","","" +"PT","M","POP","TOTAL","OC1","L","Y65-84","2011","176","","" +"PT","M","POP","TOTAL","OC1","L","Y_GE85","2011","6","","" +"PT","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","M","Y15-29","2011","676","","" +"PT","M","POP","TOTAL","OC1","M","Y30-49","2011","4915","","" +"PT","M","POP","TOTAL","OC1","M","Y50-64","2011","1466","","" +"PT","M","POP","TOTAL","OC1","M","Y65-84","2011","179","","" +"PT","M","POP","TOTAL","OC1","M","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","N","Y15-29","2011","506","","" +"PT","M","POP","TOTAL","OC1","N","Y30-49","2011","3792","","" +"PT","M","POP","TOTAL","OC1","N","Y50-64","2011","1369","","" +"PT","M","POP","TOTAL","OC1","N","Y65-84","2011","140","","" +"PT","M","POP","TOTAL","OC1","N","Y_GE85","2011","5","","" +"PT","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","O","Y15-29","2011","268","","" +"PT","M","POP","TOTAL","OC1","O","Y30-49","2011","3233","","" +"PT","M","POP","TOTAL","OC1","O","Y50-64","2011","2023","","" +"PT","M","POP","TOTAL","OC1","O","Y65-84","2011","176","","" +"PT","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","P","Y15-29","2011","125","","" +"PT","M","POP","TOTAL","OC1","P","Y30-49","2011","1222","","" +"PT","M","POP","TOTAL","OC1","P","Y50-64","2011","666","","" +"PT","M","POP","TOTAL","OC1","P","Y65-84","2011","92","","" +"PT","M","POP","TOTAL","OC1","P","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","Q","Y15-29","2011","224","","" +"PT","M","POP","TOTAL","OC1","Q","Y30-49","2011","1674","","" +"PT","M","POP","TOTAL","OC1","Q","Y50-64","2011","835","","" +"PT","M","POP","TOTAL","OC1","Q","Y65-84","2011","134","","" +"PT","M","POP","TOTAL","OC1","Q","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","R","Y15-29","2011","220","","" +"PT","M","POP","TOTAL","OC1","R","Y30-49","2011","1132","","" +"PT","M","POP","TOTAL","OC1","R","Y50-64","2011","414","","" +"PT","M","POP","TOTAL","OC1","R","Y65-84","2011","40","","" +"PT","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","S","Y15-29","2011","112","","" +"PT","M","POP","TOTAL","OC1","S","Y30-49","2011","1008","","" +"PT","M","POP","TOTAL","OC1","S","Y50-64","2011","607","","" +"PT","M","POP","TOTAL","OC1","S","Y65-84","2011","99","","" +"PT","M","POP","TOTAL","OC1","S","Y_GE85","2011","3","","" +"PT","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","U","Y15-29","2011","5","","" +"PT","M","POP","TOTAL","OC1","U","Y30-49","2011","31","","" +"PT","M","POP","TOTAL","OC1","U","Y50-64","2011","20","","" +"PT","M","POP","TOTAL","OC1","U","Y65-84","2011","3","","" +"PT","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","A","Y15-29","2011","280","","" +"PT","M","POP","TOTAL","OC2","A","Y30-49","2011","1092","","" +"PT","M","POP","TOTAL","OC2","A","Y50-64","2011","369","","" +"PT","M","POP","TOTAL","OC2","A","Y65-84","2011","42","","" +"PT","M","POP","TOTAL","OC2","A","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","B","Y15-29","2011","61","","" +"PT","M","POP","TOTAL","OC2","B","Y30-49","2011","204","","" +"PT","M","POP","TOTAL","OC2","B","Y50-64","2011","55","","" +"PT","M","POP","TOTAL","OC2","B","Y65-84","2011","6","","" +"PT","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","C","Y15-29","2011","4213","","" +"PT","M","POP","TOTAL","OC2","C","Y30-49","2011","12370","","" +"PT","M","POP","TOTAL","OC2","C","Y50-64","2011","3045","","" +"PT","M","POP","TOTAL","OC2","C","Y65-84","2011","277","","" +"PT","M","POP","TOTAL","OC2","C","Y_GE85","2011","6","","" +"PT","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","D","Y15-29","2011","417","","" +"PT","M","POP","TOTAL","OC2","D","Y30-49","2011","1165","","" +"PT","M","POP","TOTAL","OC2","D","Y50-64","2011","745","","" +"PT","M","POP","TOTAL","OC2","D","Y65-84","2011","30","","" +"PT","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","E","Y15-29","2011","204","","" +"PT","M","POP","TOTAL","OC2","E","Y30-49","2011","786","","" +"PT","M","POP","TOTAL","OC2","E","Y50-64","2011","239","","" +"PT","M","POP","TOTAL","OC2","E","Y65-84","2011","23","","" +"PT","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","F","Y15-29","2011","3033","","" +"PT","M","POP","TOTAL","OC2","F","Y30-49","2011","8396","","" +"PT","M","POP","TOTAL","OC2","F","Y50-64","2011","2186","","" +"PT","M","POP","TOTAL","OC2","F","Y65-84","2011","209","","" +"PT","M","POP","TOTAL","OC2","F","Y_GE85","2011","4","","" +"PT","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","G","Y15-29","2011","2602","","" +"PT","M","POP","TOTAL","OC2","G","Y30-49","2011","7307","","" +"PT","M","POP","TOTAL","OC2","G","Y50-64","2011","1589","","" +"PT","M","POP","TOTAL","OC2","G","Y65-84","2011","180","","" +"PT","M","POP","TOTAL","OC2","G","Y_GE85","2011","11","","" +"PT","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","H","Y15-29","2011","340","","" +"PT","M","POP","TOTAL","OC2","H","Y30-49","2011","1545","","" +"PT","M","POP","TOTAL","OC2","H","Y50-64","2011","724","","" +"PT","M","POP","TOTAL","OC2","H","Y65-84","2011","58","","" +"PT","M","POP","TOTAL","OC2","H","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","I","Y15-29","2011","363","","" +"PT","M","POP","TOTAL","OC2","I","Y30-49","2011","758","","" +"PT","M","POP","TOTAL","OC2","I","Y50-64","2011","214","","" +"PT","M","POP","TOTAL","OC2","I","Y65-84","2011","28","","" +"PT","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","J","Y15-29","2011","7520","","" +"PT","M","POP","TOTAL","OC2","J","Y30-49","2011","16534","","" +"PT","M","POP","TOTAL","OC2","J","Y50-64","2011","2386","","" +"PT","M","POP","TOTAL","OC2","J","Y65-84","2011","158","","" +"PT","M","POP","TOTAL","OC2","J","Y_GE85","2011","8","","" +"PT","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","K","Y15-29","2011","885","","" +"PT","M","POP","TOTAL","OC2","K","Y30-49","2011","2903","","" +"PT","M","POP","TOTAL","OC2","K","Y50-64","2011","831","","" +"PT","M","POP","TOTAL","OC2","K","Y65-84","2011","91","","" +"PT","M","POP","TOTAL","OC2","K","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","L","Y15-29","2011","108","","" +"PT","M","POP","TOTAL","OC2","L","Y30-49","2011","472","","" +"PT","M","POP","TOTAL","OC2","L","Y50-64","2011","154","","" +"PT","M","POP","TOTAL","OC2","L","Y65-84","2011","35","","" +"PT","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","M","Y15-29","2011","11697","","" +"PT","M","POP","TOTAL","OC2","M","Y30-49","2011","28074","","" +"PT","M","POP","TOTAL","OC2","M","Y50-64","2011","8165","","" +"PT","M","POP","TOTAL","OC2","M","Y65-84","2011","1804","","" +"PT","M","POP","TOTAL","OC2","M","Y_GE85","2011","32","","" +"PT","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","N","Y15-29","2011","789","","" +"PT","M","POP","TOTAL","OC2","N","Y30-49","2011","1713","","" +"PT","M","POP","TOTAL","OC2","N","Y50-64","2011","333","","" +"PT","M","POP","TOTAL","OC2","N","Y65-84","2011","29","","" +"PT","M","POP","TOTAL","OC2","N","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","O","Y15-29","2011","1633","","" +"PT","M","POP","TOTAL","OC2","O","Y30-49","2011","9650","","" +"PT","M","POP","TOTAL","OC2","O","Y50-64","2011","4982","","" +"PT","M","POP","TOTAL","OC2","O","Y65-84","2011","181","","" +"PT","M","POP","TOTAL","OC2","O","Y_GE85","2011","3","","" +"PT","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","P","Y15-29","2011","8265","","" +"PT","M","POP","TOTAL","OC2","P","Y30-49","2011","41101","","" +"PT","M","POP","TOTAL","OC2","P","Y50-64","2011","18222","","" +"PT","M","POP","TOTAL","OC2","P","Y65-84","2011","914","","" +"PT","M","POP","TOTAL","OC2","P","Y_GE85","2011","5","","" +"PT","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","Q","Y15-29","2011","7305","","" +"PT","M","POP","TOTAL","OC2","Q","Y30-49","2011","14549","","" +"PT","M","POP","TOTAL","OC2","Q","Y50-64","2011","9805","","" +"PT","M","POP","TOTAL","OC2","Q","Y65-84","2011","1742","","" +"PT","M","POP","TOTAL","OC2","Q","Y_GE85","2011","25","","" +"PT","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","R","Y15-29","2011","1873","","" +"PT","M","POP","TOTAL","OC2","R","Y30-49","2011","4436","","" +"PT","M","POP","TOTAL","OC2","R","Y50-64","2011","1322","","" +"PT","M","POP","TOTAL","OC2","R","Y65-84","2011","194","","" +"PT","M","POP","TOTAL","OC2","R","Y_GE85","2011","9","","" +"PT","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","S","Y15-29","2011","562","","" +"PT","M","POP","TOTAL","OC2","S","Y30-49","2011","2211","","" +"PT","M","POP","TOTAL","OC2","S","Y50-64","2011","899","","" +"PT","M","POP","TOTAL","OC2","S","Y65-84","2011","627","","" +"PT","M","POP","TOTAL","OC2","S","Y_GE85","2011","30","","" +"PT","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC2","T","Y30-49","2011","2","","" +"PT","M","POP","TOTAL","OC2","T","Y50-64","2011","1","","" +"PT","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","U","Y15-29","2011","15","","" +"PT","M","POP","TOTAL","OC2","U","Y30-49","2011","80","","" +"PT","M","POP","TOTAL","OC2","U","Y50-64","2011","30","","" +"PT","M","POP","TOTAL","OC2","U","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","A","Y15-29","2011","285","","" +"PT","M","POP","TOTAL","OC3","A","Y30-49","2011","870","","" +"PT","M","POP","TOTAL","OC3","A","Y50-64","2011","495","","" +"PT","M","POP","TOTAL","OC3","A","Y65-84","2011","36","","" +"PT","M","POP","TOTAL","OC3","A","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","B","Y15-29","2011","100","","" +"PT","M","POP","TOTAL","OC3","B","Y30-49","2011","426","","" +"PT","M","POP","TOTAL","OC3","B","Y50-64","2011","243","","" +"PT","M","POP","TOTAL","OC3","B","Y65-84","2011","11","","" +"PT","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","C","Y15-29","2011","7217","","" +"PT","M","POP","TOTAL","OC3","C","Y30-49","2011","26539","","" +"PT","M","POP","TOTAL","OC3","C","Y50-64","2011","11974","","" +"PT","M","POP","TOTAL","OC3","C","Y65-84","2011","586","","" +"PT","M","POP","TOTAL","OC3","C","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","D","Y15-29","2011","293","","" +"PT","M","POP","TOTAL","OC3","D","Y30-49","2011","1086","","" +"PT","M","POP","TOTAL","OC3","D","Y50-64","2011","1093","","" +"PT","M","POP","TOTAL","OC3","D","Y65-84","2011","16","","" +"PT","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","E","Y15-29","2011","620","","" +"PT","M","POP","TOTAL","OC3","E","Y30-49","2011","2506","","" +"PT","M","POP","TOTAL","OC3","E","Y50-64","2011","1033","","" +"PT","M","POP","TOTAL","OC3","E","Y65-84","2011","35","","" +"PT","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","F","Y15-29","2011","3028","","" +"PT","M","POP","TOTAL","OC3","F","Y30-49","2011","15633","","" +"PT","M","POP","TOTAL","OC3","F","Y50-64","2011","7429","","" +"PT","M","POP","TOTAL","OC3","F","Y65-84","2011","346","","" +"PT","M","POP","TOTAL","OC3","F","Y_GE85","2011","3","","" +"PT","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","G","Y15-29","2011","6780","","" +"PT","M","POP","TOTAL","OC3","G","Y30-49","2011","23816","","" +"PT","M","POP","TOTAL","OC3","G","Y50-64","2011","8158","","" +"PT","M","POP","TOTAL","OC3","G","Y65-84","2011","677","","" +"PT","M","POP","TOTAL","OC3","G","Y_GE85","2011","9","","" +"PT","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","H","Y15-29","2011","1238","","" +"PT","M","POP","TOTAL","OC3","H","Y30-49","2011","6326","","" +"PT","M","POP","TOTAL","OC3","H","Y50-64","2011","2812","","" +"PT","M","POP","TOTAL","OC3","H","Y65-84","2011","178","","" +"PT","M","POP","TOTAL","OC3","H","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","I","Y15-29","2011","730","","" +"PT","M","POP","TOTAL","OC3","I","Y30-49","2011","1968","","" +"PT","M","POP","TOTAL","OC3","I","Y50-64","2011","657","","" +"PT","M","POP","TOTAL","OC3","I","Y65-84","2011","49","","" +"PT","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","J","Y15-29","2011","7464","","" +"PT","M","POP","TOTAL","OC3","J","Y30-49","2011","14356","","" +"PT","M","POP","TOTAL","OC3","J","Y50-64","2011","2930","","" +"PT","M","POP","TOTAL","OC3","J","Y65-84","2011","59","","" +"PT","M","POP","TOTAL","OC3","J","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","K","Y15-29","2011","4326","","" +"PT","M","POP","TOTAL","OC3","K","Y30-49","2011","25594","","" +"PT","M","POP","TOTAL","OC3","K","Y50-64","2011","10772","","" +"PT","M","POP","TOTAL","OC3","K","Y65-84","2011","585","","" +"PT","M","POP","TOTAL","OC3","K","Y_GE85","2011","13","","" +"PT","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","L","Y15-29","2011","796","","" +"PT","M","POP","TOTAL","OC3","L","Y30-49","2011","3632","","" +"PT","M","POP","TOTAL","OC3","L","Y50-64","2011","1749","","" +"PT","M","POP","TOTAL","OC3","L","Y65-84","2011","252","","" +"PT","M","POP","TOTAL","OC3","L","Y_GE85","2011","6","","" +"PT","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","M","Y15-29","2011","4292","","" +"PT","M","POP","TOTAL","OC3","M","Y30-49","2011","14680","","" +"PT","M","POP","TOTAL","OC3","M","Y50-64","2011","6303","","" +"PT","M","POP","TOTAL","OC3","M","Y65-84","2011","1255","","" +"PT","M","POP","TOTAL","OC3","M","Y_GE85","2011","9","","" +"PT","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","N","Y15-29","2011","1606","","" +"PT","M","POP","TOTAL","OC3","N","Y30-49","2011","4331","","" +"PT","M","POP","TOTAL","OC3","N","Y50-64","2011","988","","" +"PT","M","POP","TOTAL","OC3","N","Y65-84","2011","78","","" +"PT","M","POP","TOTAL","OC3","N","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","O","Y15-29","2011","1498","","" +"PT","M","POP","TOTAL","OC3","O","Y30-49","2011","12690","","" +"PT","M","POP","TOTAL","OC3","O","Y50-64","2011","7355","","" +"PT","M","POP","TOTAL","OC3","O","Y65-84","2011","161","","" +"PT","M","POP","TOTAL","OC3","O","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","P","Y15-29","2011","958","","" +"PT","M","POP","TOTAL","OC3","P","Y30-49","2011","2336","","" +"PT","M","POP","TOTAL","OC3","P","Y50-64","2011","714","","" +"PT","M","POP","TOTAL","OC3","P","Y65-84","2011","56","","" +"PT","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","Q","Y15-29","2011","2007","","" +"PT","M","POP","TOTAL","OC3","Q","Y30-49","2011","4296","","" +"PT","M","POP","TOTAL","OC3","Q","Y50-64","2011","1692","","" +"PT","M","POP","TOTAL","OC3","Q","Y65-84","2011","188","","" +"PT","M","POP","TOTAL","OC3","Q","Y_GE85","2011","3","","" +"PT","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","R","Y15-29","2011","3754","","" +"PT","M","POP","TOTAL","OC3","R","Y30-49","2011","4235","","" +"PT","M","POP","TOTAL","OC3","R","Y50-64","2011","908","","" +"PT","M","POP","TOTAL","OC3","R","Y65-84","2011","69","","" +"PT","M","POP","TOTAL","OC3","R","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","S","Y15-29","2011","1081","","" +"PT","M","POP","TOTAL","OC3","S","Y30-49","2011","2104","","" +"PT","M","POP","TOTAL","OC3","S","Y50-64","2011","747","","" +"PT","M","POP","TOTAL","OC3","S","Y65-84","2011","105","","" +"PT","M","POP","TOTAL","OC3","S","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","T","Y15-29","2011","24","","" +"PT","M","POP","TOTAL","OC3","T","Y30-49","2011","34","","" +"PT","M","POP","TOTAL","OC3","T","Y50-64","2011","3","","" +"PT","M","POP","TOTAL","OC3","T","Y65-84","2011","2","","" +"PT","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","U","Y15-29","2011","5","","" +"PT","M","POP","TOTAL","OC3","U","Y30-49","2011","46","","" +"PT","M","POP","TOTAL","OC3","U","Y50-64","2011","36","","" +"PT","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","A","Y15-29","2011","212","","" +"PT","M","POP","TOTAL","OC4","A","Y30-49","2011","564","","" +"PT","M","POP","TOTAL","OC4","A","Y50-64","2011","374","","" +"PT","M","POP","TOTAL","OC4","A","Y65-84","2011","14","","" +"PT","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","B","Y15-29","2011","73","","" +"PT","M","POP","TOTAL","OC4","B","Y30-49","2011","215","","" +"PT","M","POP","TOTAL","OC4","B","Y50-64","2011","67","","" +"PT","M","POP","TOTAL","OC4","B","Y65-84","2011","3","","" +"PT","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","C","Y15-29","2011","4739","","" +"PT","M","POP","TOTAL","OC4","C","Y30-49","2011","11330","","" +"PT","M","POP","TOTAL","OC4","C","Y50-64","2011","4951","","" +"PT","M","POP","TOTAL","OC4","C","Y65-84","2011","169","","" +"PT","M","POP","TOTAL","OC4","C","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","D","Y15-29","2011","230","","" +"PT","M","POP","TOTAL","OC4","D","Y30-49","2011","462","","" +"PT","M","POP","TOTAL","OC4","D","Y50-64","2011","558","","" +"PT","M","POP","TOTAL","OC4","D","Y65-84","2011","8","","" +"PT","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","E","Y15-29","2011","246","","" +"PT","M","POP","TOTAL","OC4","E","Y30-49","2011","989","","" +"PT","M","POP","TOTAL","OC4","E","Y50-64","2011","481","","" +"PT","M","POP","TOTAL","OC4","E","Y65-84","2011","14","","" +"PT","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","F","Y15-29","2011","1218","","" +"PT","M","POP","TOTAL","OC4","F","Y30-49","2011","3480","","" +"PT","M","POP","TOTAL","OC4","F","Y50-64","2011","1381","","" +"PT","M","POP","TOTAL","OC4","F","Y65-84","2011","53","","" +"PT","M","POP","TOTAL","OC4","F","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","G","Y15-29","2011","9392","","" +"PT","M","POP","TOTAL","OC4","G","Y30-49","2011","17241","","" +"PT","M","POP","TOTAL","OC4","G","Y50-64","2011","5690","","" +"PT","M","POP","TOTAL","OC4","G","Y65-84","2011","299","","" +"PT","M","POP","TOTAL","OC4","G","Y_GE85","2011","4","","" +"PT","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","H","Y15-29","2011","3969","","" +"PT","M","POP","TOTAL","OC4","H","Y30-49","2011","11872","","" +"PT","M","POP","TOTAL","OC4","H","Y50-64","2011","4259","","" +"PT","M","POP","TOTAL","OC4","H","Y65-84","2011","79","","" +"PT","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","I","Y15-29","2011","2148","","" +"PT","M","POP","TOTAL","OC4","I","Y30-49","2011","3131","","" +"PT","M","POP","TOTAL","OC4","I","Y50-64","2011","1089","","" +"PT","M","POP","TOTAL","OC4","I","Y65-84","2011","109","","" +"PT","M","POP","TOTAL","OC4","I","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","J","Y15-29","2011","2940","","" +"PT","M","POP","TOTAL","OC4","J","Y30-49","2011","2534","","" +"PT","M","POP","TOTAL","OC4","J","Y50-64","2011","518","","" +"PT","M","POP","TOTAL","OC4","J","Y65-84","2011","23","","" +"PT","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","K","Y15-29","2011","1030","","" +"PT","M","POP","TOTAL","OC4","K","Y30-49","2011","1682","","" +"PT","M","POP","TOTAL","OC4","K","Y50-64","2011","568","","" +"PT","M","POP","TOTAL","OC4","K","Y65-84","2011","34","","" +"PT","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","L","Y15-29","2011","196","","" +"PT","M","POP","TOTAL","OC4","L","Y30-49","2011","456","","" +"PT","M","POP","TOTAL","OC4","L","Y50-64","2011","207","","" +"PT","M","POP","TOTAL","OC4","L","Y65-84","2011","25","","" +"PT","M","POP","TOTAL","OC4","L","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","M","Y15-29","2011","1309","","" +"PT","M","POP","TOTAL","OC4","M","Y30-49","2011","2553","","" +"PT","M","POP","TOTAL","OC4","M","Y50-64","2011","891","","" +"PT","M","POP","TOTAL","OC4","M","Y65-84","2011","58","","" +"PT","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","N","Y15-29","2011","3334","","" +"PT","M","POP","TOTAL","OC4","N","Y30-49","2011","4420","","" +"PT","M","POP","TOTAL","OC4","N","Y50-64","2011","1080","","" +"PT","M","POP","TOTAL","OC4","N","Y65-84","2011","65","","" +"PT","M","POP","TOTAL","OC4","N","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","O","Y15-29","2011","2779","","" +"PT","M","POP","TOTAL","OC4","O","Y30-49","2011","11900","","" +"PT","M","POP","TOTAL","OC4","O","Y50-64","2011","7923","","" +"PT","M","POP","TOTAL","OC4","O","Y65-84","2011","213","","" +"PT","M","POP","TOTAL","OC4","O","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","P","Y15-29","2011","505","","" +"PT","M","POP","TOTAL","OC4","P","Y30-49","2011","2095","","" +"PT","M","POP","TOTAL","OC4","P","Y50-64","2011","1230","","" +"PT","M","POP","TOTAL","OC4","P","Y65-84","2011","41","","" +"PT","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","Q","Y15-29","2011","1142","","" +"PT","M","POP","TOTAL","OC4","Q","Y30-49","2011","3548","","" +"PT","M","POP","TOTAL","OC4","Q","Y50-64","2011","1815","","" +"PT","M","POP","TOTAL","OC4","Q","Y65-84","2011","79","","" +"PT","M","POP","TOTAL","OC4","Q","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","R","Y15-29","2011","581","","" +"PT","M","POP","TOTAL","OC4","R","Y30-49","2011","1483","","" +"PT","M","POP","TOTAL","OC4","R","Y50-64","2011","712","","" +"PT","M","POP","TOTAL","OC4","R","Y65-84","2011","30","","" +"PT","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","S","Y15-29","2011","269","","" +"PT","M","POP","TOTAL","OC4","S","Y30-49","2011","812","","" +"PT","M","POP","TOTAL","OC4","S","Y50-64","2011","535","","" +"PT","M","POP","TOTAL","OC4","S","Y65-84","2011","37","","" +"PT","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","T","Y15-29","2011","2","","" +"PT","M","POP","TOTAL","OC4","T","Y30-49","2011","1","","" +"PT","M","POP","TOTAL","OC4","T","Y50-64","2011","4","","" +"PT","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","U","Y15-29","2011","12","","" +"PT","M","POP","TOTAL","OC4","U","Y30-49","2011","67","","" +"PT","M","POP","TOTAL","OC4","U","Y50-64","2011","37","","" +"PT","M","POP","TOTAL","OC4","U","Y65-84","2011","3","","" +"PT","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","A","Y15-29","2011","346","","" +"PT","M","POP","TOTAL","OC5","A","Y30-49","2011","1163","","" +"PT","M","POP","TOTAL","OC5","A","Y50-64","2011","818","","" +"PT","M","POP","TOTAL","OC5","A","Y65-84","2011","65","","" +"PT","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","B","Y15-29","2011","21","","" +"PT","M","POP","TOTAL","OC5","B","Y30-49","2011","65","","" +"PT","M","POP","TOTAL","OC5","B","Y50-64","2011","45","","" +"PT","M","POP","TOTAL","OC5","B","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","C","Y15-29","2011","2129","","" +"PT","M","POP","TOTAL","OC5","C","Y30-49","2011","7359","","" +"PT","M","POP","TOTAL","OC5","C","Y50-64","2011","3774","","" +"PT","M","POP","TOTAL","OC5","C","Y65-84","2011","317","","" +"PT","M","POP","TOTAL","OC5","C","Y_GE85","2011","3","","" +"PT","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","D","Y15-29","2011","60","","" +"PT","M","POP","TOTAL","OC5","D","Y30-49","2011","161","","" +"PT","M","POP","TOTAL","OC5","D","Y50-64","2011","92","","" +"PT","M","POP","TOTAL","OC5","D","Y65-84","2011","5","","" +"PT","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","E","Y15-29","2011","80","","" +"PT","M","POP","TOTAL","OC5","E","Y30-49","2011","265","","" +"PT","M","POP","TOTAL","OC5","E","Y50-64","2011","170","","" +"PT","M","POP","TOTAL","OC5","E","Y65-84","2011","8","","" +"PT","M","POP","TOTAL","OC5","E","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","F","Y15-29","2011","223","","" +"PT","M","POP","TOTAL","OC5","F","Y30-49","2011","923","","" +"PT","M","POP","TOTAL","OC5","F","Y50-64","2011","455","","" +"PT","M","POP","TOTAL","OC5","F","Y65-84","2011","48","","" +"PT","M","POP","TOTAL","OC5","F","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","G","Y15-29","2011","29917","","" +"PT","M","POP","TOTAL","OC5","G","Y30-49","2011","61263","","" +"PT","M","POP","TOTAL","OC5","G","Y50-64","2011","27530","","" +"PT","M","POP","TOTAL","OC5","G","Y65-84","2011","4051","","" +"PT","M","POP","TOTAL","OC5","G","Y_GE85","2011","85","","" +"PT","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","H","Y15-29","2011","1442","","" +"PT","M","POP","TOTAL","OC5","H","Y30-49","2011","4561","","" +"PT","M","POP","TOTAL","OC5","H","Y50-64","2011","1587","","" +"PT","M","POP","TOTAL","OC5","H","Y65-84","2011","104","","" +"PT","M","POP","TOTAL","OC5","H","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","I","Y15-29","2011","26429","","" +"PT","M","POP","TOTAL","OC5","I","Y30-49","2011","39320","","" +"PT","M","POP","TOTAL","OC5","I","Y50-64","2011","17516","","" +"PT","M","POP","TOTAL","OC5","I","Y65-84","2011","1271","","" +"PT","M","POP","TOTAL","OC5","I","Y_GE85","2011","10","","" +"PT","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","J","Y15-29","2011","1878","","" +"PT","M","POP","TOTAL","OC5","J","Y30-49","2011","1959","","" +"PT","M","POP","TOTAL","OC5","J","Y50-64","2011","257","","" +"PT","M","POP","TOTAL","OC5","J","Y65-84","2011","7","","" +"PT","M","POP","TOTAL","OC5","J","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","K","Y15-29","2011","285","","" +"PT","M","POP","TOTAL","OC5","K","Y30-49","2011","639","","" +"PT","M","POP","TOTAL","OC5","K","Y50-64","2011","154","","" +"PT","M","POP","TOTAL","OC5","K","Y65-84","2011","8","","" +"PT","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","L","Y15-29","2011","140","","" +"PT","M","POP","TOTAL","OC5","L","Y30-49","2011","588","","" +"PT","M","POP","TOTAL","OC5","L","Y50-64","2011","505","","" +"PT","M","POP","TOTAL","OC5","L","Y65-84","2011","109","","" +"PT","M","POP","TOTAL","OC5","L","Y_GE85","2011","5","","" +"PT","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","M","Y15-29","2011","350","","" +"PT","M","POP","TOTAL","OC5","M","Y30-49","2011","813","","" +"PT","M","POP","TOTAL","OC5","M","Y50-64","2011","219","","" +"PT","M","POP","TOTAL","OC5","M","Y65-84","2011","17","","" +"PT","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","N","Y15-29","2011","8373","","" +"PT","M","POP","TOTAL","OC5","N","Y30-49","2011","19713","","" +"PT","M","POP","TOTAL","OC5","N","Y50-64","2011","6517","","" +"PT","M","POP","TOTAL","OC5","N","Y65-84","2011","336","","" +"PT","M","POP","TOTAL","OC5","N","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","O","Y15-29","2011","10217","","" +"PT","M","POP","TOTAL","OC5","O","Y30-49","2011","35610","","" +"PT","M","POP","TOTAL","OC5","O","Y50-64","2011","9518","","" +"PT","M","POP","TOTAL","OC5","O","Y65-84","2011","115","","" +"PT","M","POP","TOTAL","OC5","O","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","P","Y15-29","2011","723","","" +"PT","M","POP","TOTAL","OC5","P","Y30-49","2011","3894","","" +"PT","M","POP","TOTAL","OC5","P","Y50-64","2011","2885","","" +"PT","M","POP","TOTAL","OC5","P","Y65-84","2011","203","","" +"PT","M","POP","TOTAL","OC5","P","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","Q","Y15-29","2011","2339","","" +"PT","M","POP","TOTAL","OC5","Q","Y30-49","2011","5571","","" +"PT","M","POP","TOTAL","OC5","Q","Y50-64","2011","2379","","" +"PT","M","POP","TOTAL","OC5","Q","Y65-84","2011","118","","" +"PT","M","POP","TOTAL","OC5","Q","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","R","Y15-29","2011","835","","" +"PT","M","POP","TOTAL","OC5","R","Y30-49","2011","1392","","" +"PT","M","POP","TOTAL","OC5","R","Y50-64","2011","555","","" +"PT","M","POP","TOTAL","OC5","R","Y65-84","2011","54","","" +"PT","M","POP","TOTAL","OC5","R","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","S","Y15-29","2011","1188","","" +"PT","M","POP","TOTAL","OC5","S","Y30-49","2011","3547","","" +"PT","M","POP","TOTAL","OC5","S","Y50-64","2011","1803","","" +"PT","M","POP","TOTAL","OC5","S","Y65-84","2011","638","","" +"PT","M","POP","TOTAL","OC5","S","Y_GE85","2011","12","","" +"PT","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","T","Y15-29","2011","34","","" +"PT","M","POP","TOTAL","OC5","T","Y30-49","2011","143","","" +"PT","M","POP","TOTAL","OC5","T","Y50-64","2011","130","","" +"PT","M","POP","TOTAL","OC5","T","Y65-84","2011","36","","" +"PT","M","POP","TOTAL","OC5","T","Y_GE85","2011","4","","" +"PT","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","U","Y15-29","2011","8","","" +"PT","M","POP","TOTAL","OC5","U","Y30-49","2011","26","","" +"PT","M","POP","TOTAL","OC5","U","Y50-64","2011","11","","" +"PT","M","POP","TOTAL","OC5","U","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","A","Y15-29","2011","6467","","" +"PT","M","POP","TOTAL","OC6","A","Y30-49","2011","25010","","" +"PT","M","POP","TOTAL","OC6","A","Y50-64","2011","21472","","" +"PT","M","POP","TOTAL","OC6","A","Y65-84","2011","2990","","" +"PT","M","POP","TOTAL","OC6","A","Y_GE85","2011","46","","" +"PT","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","B","Y15-29","2011","10","","" +"PT","M","POP","TOTAL","OC6","B","Y30-49","2011","28","","" +"PT","M","POP","TOTAL","OC6","B","Y50-64","2011","18","","" +"PT","M","POP","TOTAL","OC6","B","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","C","Y15-29","2011","486","","" +"PT","M","POP","TOTAL","OC6","C","Y30-49","2011","1461","","" +"PT","M","POP","TOTAL","OC6","C","Y50-64","2011","930","","" +"PT","M","POP","TOTAL","OC6","C","Y65-84","2011","65","","" +"PT","M","POP","TOTAL","OC6","C","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","D","Y15-29","2011","5","","" +"PT","M","POP","TOTAL","OC6","D","Y30-49","2011","30","","" +"PT","M","POP","TOTAL","OC6","D","Y50-64","2011","11","","" +"PT","M","POP","TOTAL","OC6","D","Y65-84","2011","2","","" +"PT","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","E","Y15-29","2011","25","","" +"PT","M","POP","TOTAL","OC6","E","Y30-49","2011","150","","" +"PT","M","POP","TOTAL","OC6","E","Y50-64","2011","104","","" +"PT","M","POP","TOTAL","OC6","E","Y65-84","2011","4","","" +"PT","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","F","Y15-29","2011","52","","" +"PT","M","POP","TOTAL","OC6","F","Y30-49","2011","177","","" +"PT","M","POP","TOTAL","OC6","F","Y50-64","2011","97","","" +"PT","M","POP","TOTAL","OC6","F","Y65-84","2011","5","","" +"PT","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","G","Y15-29","2011","777","","" +"PT","M","POP","TOTAL","OC6","G","Y30-49","2011","2393","","" +"PT","M","POP","TOTAL","OC6","G","Y50-64","2011","1529","","" +"PT","M","POP","TOTAL","OC6","G","Y65-84","2011","125","","" +"PT","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","H","Y15-29","2011","20","","" +"PT","M","POP","TOTAL","OC6","H","Y30-49","2011","59","","" +"PT","M","POP","TOTAL","OC6","H","Y50-64","2011","41","","" +"PT","M","POP","TOTAL","OC6","H","Y65-84","2011","3","","" +"PT","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","I","Y15-29","2011","148","","" +"PT","M","POP","TOTAL","OC6","I","Y30-49","2011","384","","" +"PT","M","POP","TOTAL","OC6","I","Y50-64","2011","309","","" +"PT","M","POP","TOTAL","OC6","I","Y65-84","2011","21","","" +"PT","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC6","J","Y30-49","2011","3","","" +"PT","M","POP","TOTAL","OC6","J","Y50-64","2011","1","","" +"PT","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","K","Y15-29","2011","7","","" +"PT","M","POP","TOTAL","OC6","K","Y30-49","2011","16","","" +"PT","M","POP","TOTAL","OC6","K","Y50-64","2011","11","","" +"PT","M","POP","TOTAL","OC6","K","Y65-84","2011","3","","" +"PT","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","L","Y15-29","2011","14","","" +"PT","M","POP","TOTAL","OC6","L","Y30-49","2011","70","","" +"PT","M","POP","TOTAL","OC6","L","Y50-64","2011","36","","" +"PT","M","POP","TOTAL","OC6","L","Y65-84","2011","3","","" +"PT","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","M","Y15-29","2011","14","","" +"PT","M","POP","TOTAL","OC6","M","Y30-49","2011","41","","" +"PT","M","POP","TOTAL","OC6","M","Y50-64","2011","18","","" +"PT","M","POP","TOTAL","OC6","M","Y65-84","2011","2","","" +"PT","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","N","Y15-29","2011","2381","","" +"PT","M","POP","TOTAL","OC6","N","Y30-49","2011","5556","","" +"PT","M","POP","TOTAL","OC6","N","Y50-64","2011","2419","","" +"PT","M","POP","TOTAL","OC6","N","Y65-84","2011","140","","" +"PT","M","POP","TOTAL","OC6","N","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","O","Y15-29","2011","356","","" +"PT","M","POP","TOTAL","OC6","O","Y30-49","2011","2043","","" +"PT","M","POP","TOTAL","OC6","O","Y50-64","2011","1630","","" +"PT","M","POP","TOTAL","OC6","O","Y65-84","2011","61","","" +"PT","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","P","Y15-29","2011","78","","" +"PT","M","POP","TOTAL","OC6","P","Y30-49","2011","187","","" +"PT","M","POP","TOTAL","OC6","P","Y50-64","2011","155","","" +"PT","M","POP","TOTAL","OC6","P","Y65-84","2011","15","","" +"PT","M","POP","TOTAL","OC6","P","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","Q","Y15-29","2011","69","","" +"PT","M","POP","TOTAL","OC6","Q","Y30-49","2011","248","","" +"PT","M","POP","TOTAL","OC6","Q","Y50-64","2011","202","","" +"PT","M","POP","TOTAL","OC6","Q","Y65-84","2011","24","","" +"PT","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","R","Y15-29","2011","160","","" +"PT","M","POP","TOTAL","OC6","R","Y30-49","2011","367","","" +"PT","M","POP","TOTAL","OC6","R","Y50-64","2011","179","","" +"PT","M","POP","TOTAL","OC6","R","Y65-84","2011","18","","" +"PT","M","POP","TOTAL","OC6","R","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","S","Y15-29","2011","25","","" +"PT","M","POP","TOTAL","OC6","S","Y30-49","2011","141","","" +"PT","M","POP","TOTAL","OC6","S","Y50-64","2011","84","","" +"PT","M","POP","TOTAL","OC6","S","Y65-84","2011","9","","" +"PT","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","U","Y15-29","2011","1","","" +"PT","M","POP","TOTAL","OC6","U","Y30-49","2011","3","","" +"PT","M","POP","TOTAL","OC6","U","Y50-64","2011","1","","" +"PT","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","A","Y15-29","2011","376","","" +"PT","M","POP","TOTAL","OC7","A","Y30-49","2011","1114","","" +"PT","M","POP","TOTAL","OC7","A","Y50-64","2011","688","","" +"PT","M","POP","TOTAL","OC7","A","Y65-84","2011","31","","" +"PT","M","POP","TOTAL","OC7","A","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","B","Y15-29","2011","224","","" +"PT","M","POP","TOTAL","OC7","B","Y30-49","2011","810","","" +"PT","M","POP","TOTAL","OC7","B","Y50-64","2011","445","","" +"PT","M","POP","TOTAL","OC7","B","Y65-84","2011","16","","" +"PT","M","POP","TOTAL","OC7","B","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","C","Y15-29","2011","42832","","" +"PT","M","POP","TOTAL","OC7","C","Y30-49","2011","120570","","" +"PT","M","POP","TOTAL","OC7","C","Y50-64","2011","56508","","" +"PT","M","POP","TOTAL","OC7","C","Y65-84","2011","2141","","" +"PT","M","POP","TOTAL","OC7","C","Y_GE85","2011","23","","" +"PT","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","D","Y15-29","2011","3498","","" +"PT","M","POP","TOTAL","OC7","D","Y30-49","2011","7947","","" +"PT","M","POP","TOTAL","OC7","D","Y50-64","2011","4169","","" +"PT","M","POP","TOTAL","OC7","D","Y65-84","2011","85","","" +"PT","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","E","Y15-29","2011","389","","" +"PT","M","POP","TOTAL","OC7","E","Y30-49","2011","1711","","" +"PT","M","POP","TOTAL","OC7","E","Y50-64","2011","938","","" +"PT","M","POP","TOTAL","OC7","E","Y65-84","2011","16","","" +"PT","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","F","Y15-29","2011","38765","","" +"PT","M","POP","TOTAL","OC7","F","Y30-49","2011","160657","","" +"PT","M","POP","TOTAL","OC7","F","Y50-64","2011","67194","","" +"PT","M","POP","TOTAL","OC7","F","Y65-84","2011","1348","","" +"PT","M","POP","TOTAL","OC7","F","Y_GE85","2011","11","","" +"PT","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","G","Y15-29","2011","19972","","" +"PT","M","POP","TOTAL","OC7","G","Y30-49","2011","55564","","" +"PT","M","POP","TOTAL","OC7","G","Y50-64","2011","25623","","" +"PT","M","POP","TOTAL","OC7","G","Y65-84","2011","1470","","" +"PT","M","POP","TOTAL","OC7","G","Y_GE85","2011","12","","" +"PT","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","H","Y15-29","2011","1097","","" +"PT","M","POP","TOTAL","OC7","H","Y30-49","2011","3652","","" +"PT","M","POP","TOTAL","OC7","H","Y50-64","2011","2617","","" +"PT","M","POP","TOTAL","OC7","H","Y65-84","2011","63","","" +"PT","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","I","Y15-29","2011","1997","","" +"PT","M","POP","TOTAL","OC7","I","Y30-49","2011","4652","","" +"PT","M","POP","TOTAL","OC7","I","Y50-64","2011","1863","","" +"PT","M","POP","TOTAL","OC7","I","Y65-84","2011","82","","" +"PT","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","J","Y15-29","2011","976","","" +"PT","M","POP","TOTAL","OC7","J","Y30-49","2011","1912","","" +"PT","M","POP","TOTAL","OC7","J","Y50-64","2011","588","","" +"PT","M","POP","TOTAL","OC7","J","Y65-84","2011","8","","" +"PT","M","POP","TOTAL","OC7","J","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","K","Y15-29","2011","43","","" +"PT","M","POP","TOTAL","OC7","K","Y30-49","2011","120","","" +"PT","M","POP","TOTAL","OC7","K","Y50-64","2011","85","","" +"PT","M","POP","TOTAL","OC7","K","Y65-84","2011","2","","" +"PT","M","POP","TOTAL","OC7","K","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","L","Y15-29","2011","89","","" +"PT","M","POP","TOTAL","OC7","L","Y30-49","2011","488","","" +"PT","M","POP","TOTAL","OC7","L","Y50-64","2011","241","","" +"PT","M","POP","TOTAL","OC7","L","Y65-84","2011","15","","" +"PT","M","POP","TOTAL","OC7","L","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","M","Y15-29","2011","522","","" +"PT","M","POP","TOTAL","OC7","M","Y30-49","2011","1364","","" +"PT","M","POP","TOTAL","OC7","M","Y50-64","2011","425","","" +"PT","M","POP","TOTAL","OC7","M","Y65-84","2011","15","","" +"PT","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","N","Y15-29","2011","896","","" +"PT","M","POP","TOTAL","OC7","N","Y30-49","2011","2555","","" +"PT","M","POP","TOTAL","OC7","N","Y50-64","2011","1010","","" +"PT","M","POP","TOTAL","OC7","N","Y65-84","2011","39","","" +"PT","M","POP","TOTAL","OC7","N","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","O","Y15-29","2011","755","","" +"PT","M","POP","TOTAL","OC7","O","Y30-49","2011","5979","","" +"PT","M","POP","TOTAL","OC7","O","Y50-64","2011","4993","","" +"PT","M","POP","TOTAL","OC7","O","Y65-84","2011","120","","" +"PT","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","P","Y15-29","2011","137","","" +"PT","M","POP","TOTAL","OC7","P","Y30-49","2011","469","","" +"PT","M","POP","TOTAL","OC7","P","Y50-64","2011","445","","" +"PT","M","POP","TOTAL","OC7","P","Y65-84","2011","41","","" +"PT","M","POP","TOTAL","OC7","P","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","Q","Y15-29","2011","216","","" +"PT","M","POP","TOTAL","OC7","Q","Y30-49","2011","1159","","" +"PT","M","POP","TOTAL","OC7","Q","Y50-64","2011","882","","" +"PT","M","POP","TOTAL","OC7","Q","Y65-84","2011","50","","" +"PT","M","POP","TOTAL","OC7","Q","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","R","Y15-29","2011","220","","" +"PT","M","POP","TOTAL","OC7","R","Y30-49","2011","796","","" +"PT","M","POP","TOTAL","OC7","R","Y50-64","2011","396","","" +"PT","M","POP","TOTAL","OC7","R","Y65-84","2011","25","","" +"PT","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","S","Y15-29","2011","753","","" +"PT","M","POP","TOTAL","OC7","S","Y30-49","2011","2581","","" +"PT","M","POP","TOTAL","OC7","S","Y50-64","2011","1691","","" +"PT","M","POP","TOTAL","OC7","S","Y65-84","2011","291","","" +"PT","M","POP","TOTAL","OC7","S","Y_GE85","2011","5","","" +"PT","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC7","U","Y30-49","2011","26","","" +"PT","M","POP","TOTAL","OC7","U","Y50-64","2011","20","","" +"PT","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","A","Y15-29","2011","1067","","" +"PT","M","POP","TOTAL","OC8","A","Y30-49","2011","4045","","" +"PT","M","POP","TOTAL","OC8","A","Y50-64","2011","2468","","" +"PT","M","POP","TOTAL","OC8","A","Y65-84","2011","165","","" +"PT","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","B","Y15-29","2011","1301","","" +"PT","M","POP","TOTAL","OC8","B","Y30-49","2011","4785","","" +"PT","M","POP","TOTAL","OC8","B","Y50-64","2011","2044","","" +"PT","M","POP","TOTAL","OC8","B","Y65-84","2011","30","","" +"PT","M","POP","TOTAL","OC8","B","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","C","Y15-29","2011","12158","","" +"PT","M","POP","TOTAL","OC8","C","Y30-49","2011","34131","","" +"PT","M","POP","TOTAL","OC8","C","Y50-64","2011","17340","","" +"PT","M","POP","TOTAL","OC8","C","Y65-84","2011","348","","" +"PT","M","POP","TOTAL","OC8","C","Y_GE85","2011","3","","" +"PT","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","D","Y15-29","2011","108","","" +"PT","M","POP","TOTAL","OC8","D","Y30-49","2011","415","","" +"PT","M","POP","TOTAL","OC8","D","Y50-64","2011","216","","" +"PT","M","POP","TOTAL","OC8","D","Y65-84","2011","5","","" +"PT","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","E","Y15-29","2011","505","","" +"PT","M","POP","TOTAL","OC8","E","Y30-49","2011","2848","","" +"PT","M","POP","TOTAL","OC8","E","Y50-64","2011","1358","","" +"PT","M","POP","TOTAL","OC8","E","Y65-84","2011","31","","" +"PT","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","F","Y15-29","2011","4168","","" +"PT","M","POP","TOTAL","OC8","F","Y30-49","2011","17449","","" +"PT","M","POP","TOTAL","OC8","F","Y50-64","2011","7346","","" +"PT","M","POP","TOTAL","OC8","F","Y65-84","2011","152","","" +"PT","M","POP","TOTAL","OC8","F","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","G","Y15-29","2011","4182","","" +"PT","M","POP","TOTAL","OC8","G","Y30-49","2011","16765","","" +"PT","M","POP","TOTAL","OC8","G","Y50-64","2011","7415","","" +"PT","M","POP","TOTAL","OC8","G","Y65-84","2011","244","","" +"PT","M","POP","TOTAL","OC8","G","Y_GE85","2011","3","","" +"PT","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","H","Y15-29","2011","6782","","" +"PT","M","POP","TOTAL","OC8","H","Y30-49","2011","47853","","" +"PT","M","POP","TOTAL","OC8","H","Y50-64","2011","22903","","" +"PT","M","POP","TOTAL","OC8","H","Y65-84","2011","1850","","" +"PT","M","POP","TOTAL","OC8","H","Y_GE85","2011","10","","" +"PT","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","I","Y15-29","2011","151","","" +"PT","M","POP","TOTAL","OC8","I","Y30-49","2011","571","","" +"PT","M","POP","TOTAL","OC8","I","Y50-64","2011","357","","" +"PT","M","POP","TOTAL","OC8","I","Y65-84","2011","24","","" +"PT","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","J","Y15-29","2011","42","","" +"PT","M","POP","TOTAL","OC8","J","Y30-49","2011","180","","" +"PT","M","POP","TOTAL","OC8","J","Y50-64","2011","116","","" +"PT","M","POP","TOTAL","OC8","J","Y65-84","2011","8","","" +"PT","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","K","Y15-29","2011","4","","" +"PT","M","POP","TOTAL","OC8","K","Y30-49","2011","97","","" +"PT","M","POP","TOTAL","OC8","K","Y50-64","2011","61","","" +"PT","M","POP","TOTAL","OC8","K","Y65-84","2011","5","","" +"PT","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","L","Y15-29","2011","17","","" +"PT","M","POP","TOTAL","OC8","L","Y30-49","2011","72","","" +"PT","M","POP","TOTAL","OC8","L","Y50-64","2011","49","","" +"PT","M","POP","TOTAL","OC8","L","Y65-84","2011","4","","" +"PT","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","M","Y15-29","2011","82","","" +"PT","M","POP","TOTAL","OC8","M","Y30-49","2011","268","","" +"PT","M","POP","TOTAL","OC8","M","Y50-64","2011","137","","" +"PT","M","POP","TOTAL","OC8","M","Y65-84","2011","12","","" +"PT","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","N","Y15-29","2011","442","","" +"PT","M","POP","TOTAL","OC8","N","Y30-49","2011","2029","","" +"PT","M","POP","TOTAL","OC8","N","Y50-64","2011","801","","" +"PT","M","POP","TOTAL","OC8","N","Y65-84","2011","34","","" +"PT","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","O","Y15-29","2011","505","","" +"PT","M","POP","TOTAL","OC8","O","Y30-49","2011","5272","","" +"PT","M","POP","TOTAL","OC8","O","Y50-64","2011","4729","","" +"PT","M","POP","TOTAL","OC8","O","Y65-84","2011","173","","" +"PT","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","P","Y15-29","2011","61","","" +"PT","M","POP","TOTAL","OC8","P","Y30-49","2011","527","","" +"PT","M","POP","TOTAL","OC8","P","Y50-64","2011","490","","" +"PT","M","POP","TOTAL","OC8","P","Y65-84","2011","48","","" +"PT","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","Q","Y15-29","2011","359","","" +"PT","M","POP","TOTAL","OC8","Q","Y30-49","2011","1967","","" +"PT","M","POP","TOTAL","OC8","Q","Y50-64","2011","1498","","" +"PT","M","POP","TOTAL","OC8","Q","Y65-84","2011","113","","" +"PT","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","R","Y15-29","2011","56","","" +"PT","M","POP","TOTAL","OC8","R","Y30-49","2011","219","","" +"PT","M","POP","TOTAL","OC8","R","Y50-64","2011","156","","" +"PT","M","POP","TOTAL","OC8","R","Y65-84","2011","9","","" +"PT","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","S","Y15-29","2011","175","","" +"PT","M","POP","TOTAL","OC8","S","Y30-49","2011","543","","" +"PT","M","POP","TOTAL","OC8","S","Y50-64","2011","256","","" +"PT","M","POP","TOTAL","OC8","S","Y65-84","2011","21","","" +"PT","M","POP","TOTAL","OC8","S","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","T","Y15-29","2011","6","","" +"PT","M","POP","TOTAL","OC8","T","Y30-49","2011","49","","" +"PT","M","POP","TOTAL","OC8","T","Y50-64","2011","46","","" +"PT","M","POP","TOTAL","OC8","T","Y65-84","2011","7","","" +"PT","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","U","Y15-29","2011","3","","" +"PT","M","POP","TOTAL","OC8","U","Y30-49","2011","33","","" +"PT","M","POP","TOTAL","OC8","U","Y50-64","2011","25","","" +"PT","M","POP","TOTAL","OC8","U","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","A","Y15-29","2011","2947","","" +"PT","M","POP","TOTAL","OC9","A","Y30-49","2011","7217","","" +"PT","M","POP","TOTAL","OC9","A","Y50-64","2011","4679","","" +"PT","M","POP","TOTAL","OC9","A","Y65-84","2011","286","","" +"PT","M","POP","TOTAL","OC9","A","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","B","Y15-29","2011","181","","" +"PT","M","POP","TOTAL","OC9","B","Y30-49","2011","350","","" +"PT","M","POP","TOTAL","OC9","B","Y50-64","2011","186","","" +"PT","M","POP","TOTAL","OC9","B","Y65-84","2011","7","","" +"PT","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","C","Y15-29","2011","18023","","" +"PT","M","POP","TOTAL","OC9","C","Y30-49","2011","28379","","" +"PT","M","POP","TOTAL","OC9","C","Y50-64","2011","12477","","" +"PT","M","POP","TOTAL","OC9","C","Y65-84","2011","244","","" +"PT","M","POP","TOTAL","OC9","C","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","D","Y15-29","2011","688","","" +"PT","M","POP","TOTAL","OC9","D","Y30-49","2011","816","","" +"PT","M","POP","TOTAL","OC9","D","Y50-64","2011","361","","" +"PT","M","POP","TOTAL","OC9","D","Y65-84","2011","14","","" +"PT","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","E","Y15-29","2011","1165","","" +"PT","M","POP","TOTAL","OC9","E","Y30-49","2011","3271","","" +"PT","M","POP","TOTAL","OC9","E","Y50-64","2011","1591","","" +"PT","M","POP","TOTAL","OC9","E","Y65-84","2011","35","","" +"PT","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","F","Y15-29","2011","14577","","" +"PT","M","POP","TOTAL","OC9","F","Y30-49","2011","27521","","" +"PT","M","POP","TOTAL","OC9","F","Y50-64","2011","11523","","" +"PT","M","POP","TOTAL","OC9","F","Y65-84","2011","250","","" +"PT","M","POP","TOTAL","OC9","F","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","G","Y15-29","2011","13931","","" +"PT","M","POP","TOTAL","OC9","G","Y30-49","2011","20323","","" +"PT","M","POP","TOTAL","OC9","G","Y50-64","2011","8091","","" +"PT","M","POP","TOTAL","OC9","G","Y65-84","2011","472","","" +"PT","M","POP","TOTAL","OC9","G","Y_GE85","2011","4","","" +"PT","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","H","Y15-29","2011","2115","","" +"PT","M","POP","TOTAL","OC9","H","Y30-49","2011","4201","","" +"PT","M","POP","TOTAL","OC9","H","Y50-64","2011","1737","","" +"PT","M","POP","TOTAL","OC9","H","Y65-84","2011","36","","" +"PT","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","I","Y15-29","2011","2029","","" +"PT","M","POP","TOTAL","OC9","I","Y30-49","2011","2518","","" +"PT","M","POP","TOTAL","OC9","I","Y50-64","2011","1030","","" +"PT","M","POP","TOTAL","OC9","I","Y65-84","2011","56","","" +"PT","M","POP","TOTAL","OC9","I","Y_GE85","2011","2","","" +"PT","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","J","Y15-29","2011","345","","" +"PT","M","POP","TOTAL","OC9","J","Y30-49","2011","373","","" +"PT","M","POP","TOTAL","OC9","J","Y50-64","2011","137","","" +"PT","M","POP","TOTAL","OC9","J","Y65-84","2011","3","","" +"PT","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","K","Y15-29","2011","40","","" +"PT","M","POP","TOTAL","OC9","K","Y30-49","2011","96","","" +"PT","M","POP","TOTAL","OC9","K","Y50-64","2011","56","","" +"PT","M","POP","TOTAL","OC9","K","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC9","K","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","L","Y15-29","2011","85","","" +"PT","M","POP","TOTAL","OC9","L","Y30-49","2011","206","","" +"PT","M","POP","TOTAL","OC9","L","Y50-64","2011","84","","" +"PT","M","POP","TOTAL","OC9","L","Y65-84","2011","9","","" +"PT","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","M","Y15-29","2011","638","","" +"PT","M","POP","TOTAL","OC9","M","Y30-49","2011","779","","" +"PT","M","POP","TOTAL","OC9","M","Y50-64","2011","248","","" +"PT","M","POP","TOTAL","OC9","M","Y65-84","2011","16","","" +"PT","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","N","Y15-29","2011","1976","","" +"PT","M","POP","TOTAL","OC9","N","Y30-49","2011","3925","","" +"PT","M","POP","TOTAL","OC9","N","Y50-64","2011","1882","","" +"PT","M","POP","TOTAL","OC9","N","Y65-84","2011","87","","" +"PT","M","POP","TOTAL","OC9","N","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","O","Y15-29","2011","1450","","" +"PT","M","POP","TOTAL","OC9","O","Y30-49","2011","8294","","" +"PT","M","POP","TOTAL","OC9","O","Y50-64","2011","7541","","" +"PT","M","POP","TOTAL","OC9","O","Y65-84","2011","246","","" +"PT","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","P","Y15-29","2011","348","","" +"PT","M","POP","TOTAL","OC9","P","Y30-49","2011","1953","","" +"PT","M","POP","TOTAL","OC9","P","Y50-64","2011","1829","","" +"PT","M","POP","TOTAL","OC9","P","Y65-84","2011","74","","" +"PT","M","POP","TOTAL","OC9","P","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","Q","Y15-29","2011","406","","" +"PT","M","POP","TOTAL","OC9","Q","Y30-49","2011","1006","","" +"PT","M","POP","TOTAL","OC9","Q","Y50-64","2011","589","","" +"PT","M","POP","TOTAL","OC9","Q","Y65-84","2011","37","","" +"PT","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","R","Y15-29","2011","480","","" +"PT","M","POP","TOTAL","OC9","R","Y30-49","2011","1029","","" +"PT","M","POP","TOTAL","OC9","R","Y50-64","2011","513","","" +"PT","M","POP","TOTAL","OC9","R","Y65-84","2011","46","","" +"PT","M","POP","TOTAL","OC9","R","Y_GE85","2011","1","","" +"PT","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","S","Y15-29","2011","346","","" +"PT","M","POP","TOTAL","OC9","S","Y30-49","2011","774","","" +"PT","M","POP","TOTAL","OC9","S","Y50-64","2011","449","","" +"PT","M","POP","TOTAL","OC9","S","Y65-84","2011","25","","" +"PT","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","T","Y15-29","2011","196","","" +"PT","M","POP","TOTAL","OC9","T","Y30-49","2011","453","","" +"PT","M","POP","TOTAL","OC9","T","Y50-64","2011","256","","" +"PT","M","POP","TOTAL","OC9","T","Y65-84","2011","11","","" +"PT","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","U","Y15-29","2011","4","","" +"PT","M","POP","TOTAL","OC9","U","Y30-49","2011","18","","" +"PT","M","POP","TOTAL","OC9","U","Y50-64","2011","11","","" +"PT","M","POP","TOTAL","OC9","U","Y65-84","2011","1","","" +"PT","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"PT","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"PT","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"PT","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"PT","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"PT","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"PT","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","NAP","Y15-29","2011","1151915","","" +"RO","F","POP","TOTAL","NAP","NAP","Y30-49","2011","724258","","" +"RO","F","POP","TOTAL","NAP","NAP","Y50-64","2011","1251649","","" +"RO","F","POP","TOTAL","NAP","NAP","Y65-84","2011","1512393","","" +"RO","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","163570","","" +"RO","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","1551335","","" +"RO","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","A","Y15-29","2011","297","","" +"RO","F","POP","TOTAL","OC1","A","Y30-49","2011","1355","","" +"RO","F","POP","TOTAL","OC1","A","Y50-64","2011","468","","" +"RO","F","POP","TOTAL","OC1","A","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","B","Y15-29","2011","88","","" +"RO","F","POP","TOTAL","OC1","B","Y30-49","2011","362","","" +"RO","F","POP","TOTAL","OC1","B","Y50-64","2011","115","","" +"RO","F","POP","TOTAL","OC1","B","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","C","Y15-29","2011","2123","","" +"RO","F","POP","TOTAL","OC1","C","Y30-49","2011","7827","","" +"RO","F","POP","TOTAL","OC1","C","Y50-64","2011","1898","","" +"RO","F","POP","TOTAL","OC1","C","Y65-84","2011","23","","" +"RO","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","D","Y15-29","2011","94","","" +"RO","F","POP","TOTAL","OC1","D","Y30-49","2011","674","","" +"RO","F","POP","TOTAL","OC1","D","Y50-64","2011","233","","" +"RO","F","POP","TOTAL","OC1","D","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","E","Y15-29","2011","133","","" +"RO","F","POP","TOTAL","OC1","E","Y30-49","2011","658","","" +"RO","F","POP","TOTAL","OC1","E","Y50-64","2011","215","","" +"RO","F","POP","TOTAL","OC1","E","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","F","Y15-29","2011","531","","" +"RO","F","POP","TOTAL","OC1","F","Y30-49","2011","2309","","" +"RO","F","POP","TOTAL","OC1","F","Y50-64","2011","595","","" +"RO","F","POP","TOTAL","OC1","F","Y65-84","2011","7","","" +"RO","F","POP","TOTAL","OC1","F","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","G","Y15-29","2011","5714","","" +"RO","F","POP","TOTAL","OC1","G","Y30-49","2011","15293","","" +"RO","F","POP","TOTAL","OC1","G","Y50-64","2011","2644","","" +"RO","F","POP","TOTAL","OC1","G","Y65-84","2011","65","","" +"RO","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","H","Y15-29","2011","536","","" +"RO","F","POP","TOTAL","OC1","H","Y30-49","2011","1835","","" +"RO","F","POP","TOTAL","OC1","H","Y50-64","2011","282","","" +"RO","F","POP","TOTAL","OC1","H","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","I","Y15-29","2011","813","","" +"RO","F","POP","TOTAL","OC1","I","Y30-49","2011","1766","","" +"RO","F","POP","TOTAL","OC1","I","Y50-64","2011","315","","" +"RO","F","POP","TOTAL","OC1","I","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","J","Y15-29","2011","981","","" +"RO","F","POP","TOTAL","OC1","J","Y30-49","2011","2129","","" +"RO","F","POP","TOTAL","OC1","J","Y50-64","2011","275","","" +"RO","F","POP","TOTAL","OC1","J","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","K","Y15-29","2011","887","","" +"RO","F","POP","TOTAL","OC1","K","Y30-49","2011","3119","","" +"RO","F","POP","TOTAL","OC1","K","Y50-64","2011","477","","" +"RO","F","POP","TOTAL","OC1","K","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","L","Y15-29","2011","173","","" +"RO","F","POP","TOTAL","OC1","L","Y30-49","2011","760","","" +"RO","F","POP","TOTAL","OC1","L","Y50-64","2011","185","","" +"RO","F","POP","TOTAL","OC1","L","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","M","Y15-29","2011","1184","","" +"RO","F","POP","TOTAL","OC1","M","Y30-49","2011","3224","","" +"RO","F","POP","TOTAL","OC1","M","Y50-64","2011","579","","" +"RO","F","POP","TOTAL","OC1","M","Y65-84","2011","13","","" +"RO","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","N","Y15-29","2011","701","","" +"RO","F","POP","TOTAL","OC1","N","Y30-49","2011","1662","","" +"RO","F","POP","TOTAL","OC1","N","Y50-64","2011","272","","" +"RO","F","POP","TOTAL","OC1","N","Y65-84","2011","9","","" +"RO","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","O","Y15-29","2011","1231","","" +"RO","F","POP","TOTAL","OC1","O","Y30-49","2011","7155","","" +"RO","F","POP","TOTAL","OC1","O","Y50-64","2011","2343","","" +"RO","F","POP","TOTAL","OC1","O","Y65-84","2011","15","","" +"RO","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","P","Y15-29","2011","310","","" +"RO","F","POP","TOTAL","OC1","P","Y30-49","2011","2353","","" +"RO","F","POP","TOTAL","OC1","P","Y50-64","2011","1067","","" +"RO","F","POP","TOTAL","OC1","P","Y65-84","2011","11","","" +"RO","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","Q","Y15-29","2011","460","","" +"RO","F","POP","TOTAL","OC1","Q","Y30-49","2011","2828","","" +"RO","F","POP","TOTAL","OC1","Q","Y50-64","2011","1198","","" +"RO","F","POP","TOTAL","OC1","Q","Y65-84","2011","50","","" +"RO","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","R","Y15-29","2011","349","","" +"RO","F","POP","TOTAL","OC1","R","Y30-49","2011","755","","" +"RO","F","POP","TOTAL","OC1","R","Y50-64","2011","225","","" +"RO","F","POP","TOTAL","OC1","R","Y65-84","2011","5","","" +"RO","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","S","Y15-29","2011","746","","" +"RO","F","POP","TOTAL","OC1","S","Y30-49","2011","1999","","" +"RO","F","POP","TOTAL","OC1","S","Y50-64","2011","449","","" +"RO","F","POP","TOTAL","OC1","S","Y65-84","2011","18","","" +"RO","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","U","Y15-29","2011","145","","" +"RO","F","POP","TOTAL","OC1","U","Y30-49","2011","375","","" +"RO","F","POP","TOTAL","OC1","U","Y50-64","2011","87","","" +"RO","F","POP","TOTAL","OC1","U","Y65-84","2011","5","","" +"RO","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","A","Y15-29","2011","1199","","" +"RO","F","POP","TOTAL","OC2","A","Y30-49","2011","3486","","" +"RO","F","POP","TOTAL","OC2","A","Y50-64","2011","1350","","" +"RO","F","POP","TOTAL","OC2","A","Y65-84","2011","9","","" +"RO","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","B","Y15-29","2011","437","","" +"RO","F","POP","TOTAL","OC2","B","Y30-49","2011","2467","","" +"RO","F","POP","TOTAL","OC2","B","Y50-64","2011","904","","" +"RO","F","POP","TOTAL","OC2","B","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","C","Y15-29","2011","14175","","" +"RO","F","POP","TOTAL","OC2","C","Y30-49","2011","33836","","" +"RO","F","POP","TOTAL","OC2","C","Y50-64","2011","9854","","" +"RO","F","POP","TOTAL","OC2","C","Y65-84","2011","74","","" +"RO","F","POP","TOTAL","OC2","C","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","D","Y15-29","2011","1037","","" +"RO","F","POP","TOTAL","OC2","D","Y30-49","2011","5857","","" +"RO","F","POP","TOTAL","OC2","D","Y50-64","2011","1985","","" +"RO","F","POP","TOTAL","OC2","D","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","E","Y15-29","2011","757","","" +"RO","F","POP","TOTAL","OC2","E","Y30-49","2011","2723","","" +"RO","F","POP","TOTAL","OC2","E","Y50-64","2011","836","","" +"RO","F","POP","TOTAL","OC2","E","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","F","Y15-29","2011","4257","","" +"RO","F","POP","TOTAL","OC2","F","Y30-49","2011","12436","","" +"RO","F","POP","TOTAL","OC2","F","Y50-64","2011","4002","","" +"RO","F","POP","TOTAL","OC2","F","Y65-84","2011","39","","" +"RO","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","G","Y15-29","2011","16592","","" +"RO","F","POP","TOTAL","OC2","G","Y30-49","2011","29218","","" +"RO","F","POP","TOTAL","OC2","G","Y50-64","2011","4734","","" +"RO","F","POP","TOTAL","OC2","G","Y65-84","2011","173","","" +"RO","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","H","Y15-29","2011","2326","","" +"RO","F","POP","TOTAL","OC2","H","Y30-49","2011","8899","","" +"RO","F","POP","TOTAL","OC2","H","Y50-64","2011","2094","","" +"RO","F","POP","TOTAL","OC2","H","Y65-84","2011","11","","" +"RO","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","I","Y15-29","2011","960","","" +"RO","F","POP","TOTAL","OC2","I","Y30-49","2011","1525","","" +"RO","F","POP","TOTAL","OC2","I","Y50-64","2011","258","","" +"RO","F","POP","TOTAL","OC2","I","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","J","Y15-29","2011","12939","","" +"RO","F","POP","TOTAL","OC2","J","Y30-49","2011","13781","","" +"RO","F","POP","TOTAL","OC2","J","Y50-64","2011","1911","","" +"RO","F","POP","TOTAL","OC2","J","Y65-84","2011","42","","" +"RO","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","K","Y15-29","2011","15807","","" +"RO","F","POP","TOTAL","OC2","K","Y30-49","2011","27003","","" +"RO","F","POP","TOTAL","OC2","K","Y50-64","2011","4280","","" +"RO","F","POP","TOTAL","OC2","K","Y65-84","2011","13","","" +"RO","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","L","Y15-29","2011","470","","" +"RO","F","POP","TOTAL","OC2","L","Y30-49","2011","1166","","" +"RO","F","POP","TOTAL","OC2","L","Y50-64","2011","226","","" +"RO","F","POP","TOTAL","OC2","L","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","M","Y15-29","2011","19678","","" +"RO","F","POP","TOTAL","OC2","M","Y30-49","2011","35828","","" +"RO","F","POP","TOTAL","OC2","M","Y50-64","2011","7831","","" +"RO","F","POP","TOTAL","OC2","M","Y65-84","2011","300","","" +"RO","F","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","N","Y15-29","2011","3133","","" +"RO","F","POP","TOTAL","OC2","N","Y30-49","2011","4440","","" +"RO","F","POP","TOTAL","OC2","N","Y50-64","2011","786","","" +"RO","F","POP","TOTAL","OC2","N","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","O","Y15-29","2011","11335","","" +"RO","F","POP","TOTAL","OC2","O","Y30-49","2011","61811","","" +"RO","F","POP","TOTAL","OC2","O","Y50-64","2011","16267","","" +"RO","F","POP","TOTAL","OC2","O","Y65-84","2011","74","","" +"RO","F","POP","TOTAL","OC2","O","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","P","Y15-29","2011","34284","","" +"RO","F","POP","TOTAL","OC2","P","Y30-49","2011","119855","","" +"RO","F","POP","TOTAL","OC2","P","Y50-64","2011","49364","","" +"RO","F","POP","TOTAL","OC2","P","Y65-84","2011","371","","" +"RO","F","POP","TOTAL","OC2","P","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","Q","Y15-29","2011","22870","","" +"RO","F","POP","TOTAL","OC2","Q","Y30-49","2011","93563","","" +"RO","F","POP","TOTAL","OC2","Q","Y50-64","2011","27881","","" +"RO","F","POP","TOTAL","OC2","Q","Y65-84","2011","735","","" +"RO","F","POP","TOTAL","OC2","Q","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","R","Y15-29","2011","1909","","" +"RO","F","POP","TOTAL","OC2","R","Y30-49","2011","5572","","" +"RO","F","POP","TOTAL","OC2","R","Y50-64","2011","1547","","" +"RO","F","POP","TOTAL","OC2","R","Y65-84","2011","45","","" +"RO","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","S","Y15-29","2011","3062","","" +"RO","F","POP","TOTAL","OC2","S","Y30-49","2011","6688","","" +"RO","F","POP","TOTAL","OC2","S","Y50-64","2011","1536","","" +"RO","F","POP","TOTAL","OC2","S","Y65-84","2011","70","","" +"RO","F","POP","TOTAL","OC2","S","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","U","Y15-29","2011","147","","" +"RO","F","POP","TOTAL","OC2","U","Y30-49","2011","330","","" +"RO","F","POP","TOTAL","OC2","U","Y50-64","2011","65","","" +"RO","F","POP","TOTAL","OC2","U","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","A","Y15-29","2011","583","","" +"RO","F","POP","TOTAL","OC3","A","Y30-49","2011","2373","","" +"RO","F","POP","TOTAL","OC3","A","Y50-64","2011","1181","","" +"RO","F","POP","TOTAL","OC3","A","Y65-84","2011","5","","" +"RO","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","B","Y15-29","2011","182","","" +"RO","F","POP","TOTAL","OC3","B","Y30-49","2011","1118","","" +"RO","F","POP","TOTAL","OC3","B","Y50-64","2011","438","","" +"RO","F","POP","TOTAL","OC3","B","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","C","Y15-29","2011","7928","","" +"RO","F","POP","TOTAL","OC3","C","Y30-49","2011","21582","","" +"RO","F","POP","TOTAL","OC3","C","Y50-64","2011","7237","","" +"RO","F","POP","TOTAL","OC3","C","Y65-84","2011","43","","" +"RO","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","D","Y15-29","2011","420","","" +"RO","F","POP","TOTAL","OC3","D","Y30-49","2011","3452","","" +"RO","F","POP","TOTAL","OC3","D","Y50-64","2011","1610","","" +"RO","F","POP","TOTAL","OC3","D","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","E","Y15-29","2011","418","","" +"RO","F","POP","TOTAL","OC3","E","Y30-49","2011","2246","","" +"RO","F","POP","TOTAL","OC3","E","Y50-64","2011","1196","","" +"RO","F","POP","TOTAL","OC3","E","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","F","Y15-29","2011","2192","","" +"RO","F","POP","TOTAL","OC3","F","Y30-49","2011","5451","","" +"RO","F","POP","TOTAL","OC3","F","Y50-64","2011","2272","","" +"RO","F","POP","TOTAL","OC3","F","Y65-84","2011","19","","" +"RO","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","G","Y15-29","2011","25615","","" +"RO","F","POP","TOTAL","OC3","G","Y30-49","2011","42394","","" +"RO","F","POP","TOTAL","OC3","G","Y50-64","2011","7392","","" +"RO","F","POP","TOTAL","OC3","G","Y65-84","2011","90","","" +"RO","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","H","Y15-29","2011","1848","","" +"RO","F","POP","TOTAL","OC3","H","Y30-49","2011","5642","","" +"RO","F","POP","TOTAL","OC3","H","Y50-64","2011","1901","","" +"RO","F","POP","TOTAL","OC3","H","Y65-84","2011","5","","" +"RO","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","I","Y15-29","2011","1041","","" +"RO","F","POP","TOTAL","OC3","I","Y30-49","2011","1786","","" +"RO","F","POP","TOTAL","OC3","I","Y50-64","2011","578","","" +"RO","F","POP","TOTAL","OC3","I","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","J","Y15-29","2011","6704","","" +"RO","F","POP","TOTAL","OC3","J","Y30-49","2011","6878","","" +"RO","F","POP","TOTAL","OC3","J","Y50-64","2011","1304","","" +"RO","F","POP","TOTAL","OC3","J","Y65-84","2011","10","","" +"RO","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","K","Y15-29","2011","5525","","" +"RO","F","POP","TOTAL","OC3","K","Y30-49","2011","10453","","" +"RO","F","POP","TOTAL","OC3","K","Y50-64","2011","3100","","" +"RO","F","POP","TOTAL","OC3","K","Y65-84","2011","35","","" +"RO","F","POP","TOTAL","OC3","K","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","L","Y15-29","2011","818","","" +"RO","F","POP","TOTAL","OC3","L","Y30-49","2011","1557","","" +"RO","F","POP","TOTAL","OC3","L","Y50-64","2011","445","","" +"RO","F","POP","TOTAL","OC3","L","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","M","Y15-29","2011","6716","","" +"RO","F","POP","TOTAL","OC3","M","Y30-49","2011","13075","","" +"RO","F","POP","TOTAL","OC3","M","Y50-64","2011","4668","","" +"RO","F","POP","TOTAL","OC3","M","Y65-84","2011","62","","" +"RO","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","N","Y15-29","2011","4296","","" +"RO","F","POP","TOTAL","OC3","N","Y30-49","2011","4975","","" +"RO","F","POP","TOTAL","OC3","N","Y50-64","2011","1246","","" +"RO","F","POP","TOTAL","OC3","N","Y65-84","2011","15","","" +"RO","F","POP","TOTAL","OC3","N","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","O","Y15-29","2011","4782","","" +"RO","F","POP","TOTAL","OC3","O","Y30-49","2011","27890","","" +"RO","F","POP","TOTAL","OC3","O","Y50-64","2011","11446","","" +"RO","F","POP","TOTAL","OC3","O","Y65-84","2011","61","","" +"RO","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","P","Y15-29","2011","1039","","" +"RO","F","POP","TOTAL","OC3","P","Y30-49","2011","4187","","" +"RO","F","POP","TOTAL","OC3","P","Y50-64","2011","2140","","" +"RO","F","POP","TOTAL","OC3","P","Y65-84","2011","19","","" +"RO","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","Q","Y15-29","2011","6536","","" +"RO","F","POP","TOTAL","OC3","Q","Y30-49","2011","29499","","" +"RO","F","POP","TOTAL","OC3","Q","Y50-64","2011","8795","","" +"RO","F","POP","TOTAL","OC3","Q","Y65-84","2011","84","","" +"RO","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","R","Y15-29","2011","1978","","" +"RO","F","POP","TOTAL","OC3","R","Y30-49","2011","2254","","" +"RO","F","POP","TOTAL","OC3","R","Y50-64","2011","660","","" +"RO","F","POP","TOTAL","OC3","R","Y65-84","2011","10","","" +"RO","F","POP","TOTAL","OC3","R","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","S","Y15-29","2011","2189","","" +"RO","F","POP","TOTAL","OC3","S","Y30-49","2011","5437","","" +"RO","F","POP","TOTAL","OC3","S","Y50-64","2011","1573","","" +"RO","F","POP","TOTAL","OC3","S","Y65-84","2011","242","","" +"RO","F","POP","TOTAL","OC3","S","Y_GE85","2011","50","","" +"RO","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","U","Y15-29","2011","56","","" +"RO","F","POP","TOTAL","OC3","U","Y30-49","2011","99","","" +"RO","F","POP","TOTAL","OC3","U","Y50-64","2011","28","","" +"RO","F","POP","TOTAL","OC3","U","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","A","Y15-29","2011","391","","" +"RO","F","POP","TOTAL","OC4","A","Y30-49","2011","1434","","" +"RO","F","POP","TOTAL","OC4","A","Y50-64","2011","462","","" +"RO","F","POP","TOTAL","OC4","A","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","B","Y15-29","2011","113","","" +"RO","F","POP","TOTAL","OC4","B","Y30-49","2011","834","","" +"RO","F","POP","TOTAL","OC4","B","Y50-64","2011","271","","" +"RO","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","C","Y15-29","2011","5079","","" +"RO","F","POP","TOTAL","OC4","C","Y30-49","2011","15314","","" +"RO","F","POP","TOTAL","OC4","C","Y50-64","2011","4335","","" +"RO","F","POP","TOTAL","OC4","C","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","D","Y15-29","2011","202","","" +"RO","F","POP","TOTAL","OC4","D","Y30-49","2011","1803","","" +"RO","F","POP","TOTAL","OC4","D","Y50-64","2011","699","","" +"RO","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","E","Y15-29","2011","288","","" +"RO","F","POP","TOTAL","OC4","E","Y30-49","2011","1250","","" +"RO","F","POP","TOTAL","OC4","E","Y50-64","2011","505","","" +"RO","F","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","F","Y15-29","2011","1523","","" +"RO","F","POP","TOTAL","OC4","F","Y30-49","2011","4471","","" +"RO","F","POP","TOTAL","OC4","F","Y50-64","2011","1207","","" +"RO","F","POP","TOTAL","OC4","F","Y65-84","2011","7","","" +"RO","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","G","Y15-29","2011","12957","","" +"RO","F","POP","TOTAL","OC4","G","Y30-49","2011","29829","","" +"RO","F","POP","TOTAL","OC4","G","Y50-64","2011","5766","","" +"RO","F","POP","TOTAL","OC4","G","Y65-84","2011","41","","" +"RO","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","H","Y15-29","2011","4043","","" +"RO","F","POP","TOTAL","OC4","H","Y30-49","2011","22031","","" +"RO","F","POP","TOTAL","OC4","H","Y50-64","2011","6793","","" +"RO","F","POP","TOTAL","OC4","H","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","I","Y15-29","2011","3843","","" +"RO","F","POP","TOTAL","OC4","I","Y30-49","2011","4489","","" +"RO","F","POP","TOTAL","OC4","I","Y50-64","2011","1081","","" +"RO","F","POP","TOTAL","OC4","I","Y65-84","2011","9","","" +"RO","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","J","Y15-29","2011","3200","","" +"RO","F","POP","TOTAL","OC4","J","Y30-49","2011","3437","","" +"RO","F","POP","TOTAL","OC4","J","Y50-64","2011","839","","" +"RO","F","POP","TOTAL","OC4","J","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","K","Y15-29","2011","3435","","" +"RO","F","POP","TOTAL","OC4","K","Y30-49","2011","5772","","" +"RO","F","POP","TOTAL","OC4","K","Y50-64","2011","1530","","" +"RO","F","POP","TOTAL","OC4","K","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","L","Y15-29","2011","338","","" +"RO","F","POP","TOTAL","OC4","L","Y30-49","2011","537","","" +"RO","F","POP","TOTAL","OC4","L","Y50-64","2011","152","","" +"RO","F","POP","TOTAL","OC4","L","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","M","Y15-29","2011","2669","","" +"RO","F","POP","TOTAL","OC4","M","Y30-49","2011","4590","","" +"RO","F","POP","TOTAL","OC4","M","Y50-64","2011","1278","","" +"RO","F","POP","TOTAL","OC4","M","Y65-84","2011","14","","" +"RO","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","N","Y15-29","2011","4159","","" +"RO","F","POP","TOTAL","OC4","N","Y30-49","2011","4236","","" +"RO","F","POP","TOTAL","OC4","N","Y50-64","2011","732","","" +"RO","F","POP","TOTAL","OC4","N","Y65-84","2011","7","","" +"RO","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","O","Y15-29","2011","3453","","" +"RO","F","POP","TOTAL","OC4","O","Y30-49","2011","15882","","" +"RO","F","POP","TOTAL","OC4","O","Y50-64","2011","5805","","" +"RO","F","POP","TOTAL","OC4","O","Y65-84","2011","19","","" +"RO","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","P","Y15-29","2011","852","","" +"RO","F","POP","TOTAL","OC4","P","Y30-49","2011","4229","","" +"RO","F","POP","TOTAL","OC4","P","Y50-64","2011","2460","","" +"RO","F","POP","TOTAL","OC4","P","Y65-84","2011","11","","" +"RO","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","Q","Y15-29","2011","1040","","" +"RO","F","POP","TOTAL","OC4","Q","Y30-49","2011","2941","","" +"RO","F","POP","TOTAL","OC4","Q","Y50-64","2011","1410","","" +"RO","F","POP","TOTAL","OC4","Q","Y65-84","2011","9","","" +"RO","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","R","Y15-29","2011","2850","","" +"RO","F","POP","TOTAL","OC4","R","Y30-49","2011","2663","","" +"RO","F","POP","TOTAL","OC4","R","Y50-64","2011","854","","" +"RO","F","POP","TOTAL","OC4","R","Y65-84","2011","5","","" +"RO","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","S","Y15-29","2011","1055","","" +"RO","F","POP","TOTAL","OC4","S","Y30-49","2011","2097","","" +"RO","F","POP","TOTAL","OC4","S","Y50-64","2011","770","","" +"RO","F","POP","TOTAL","OC4","S","Y65-84","2011","14","","" +"RO","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","U","Y15-29","2011","116","","" +"RO","F","POP","TOTAL","OC4","U","Y30-49","2011","160","","" +"RO","F","POP","TOTAL","OC4","U","Y50-64","2011","58","","" +"RO","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","A","Y15-29","2011","290","","" +"RO","F","POP","TOTAL","OC5","A","Y30-49","2011","1189","","" +"RO","F","POP","TOTAL","OC5","A","Y50-64","2011","394","","" +"RO","F","POP","TOTAL","OC5","A","Y65-84","2011","7","","" +"RO","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","B","Y15-29","2011","54","","" +"RO","F","POP","TOTAL","OC5","B","Y30-49","2011","262","","" +"RO","F","POP","TOTAL","OC5","B","Y50-64","2011","124","","" +"RO","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","C","Y15-29","2011","5426","","" +"RO","F","POP","TOTAL","OC5","C","Y30-49","2011","14931","","" +"RO","F","POP","TOTAL","OC5","C","Y50-64","2011","3585","","" +"RO","F","POP","TOTAL","OC5","C","Y65-84","2011","23","","" +"RO","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","D","Y15-29","2011","88","","" +"RO","F","POP","TOTAL","OC5","D","Y30-49","2011","852","","" +"RO","F","POP","TOTAL","OC5","D","Y50-64","2011","339","","" +"RO","F","POP","TOTAL","OC5","D","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","E","Y15-29","2011","190","","" +"RO","F","POP","TOTAL","OC5","E","Y30-49","2011","1363","","" +"RO","F","POP","TOTAL","OC5","E","Y50-64","2011","510","","" +"RO","F","POP","TOTAL","OC5","E","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","F","Y15-29","2011","709","","" +"RO","F","POP","TOTAL","OC5","F","Y30-49","2011","2386","","" +"RO","F","POP","TOTAL","OC5","F","Y50-64","2011","698","","" +"RO","F","POP","TOTAL","OC5","F","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","G","Y15-29","2011","96349","","" +"RO","F","POP","TOTAL","OC5","G","Y30-49","2011","246153","","" +"RO","F","POP","TOTAL","OC5","G","Y50-64","2011","48264","","" +"RO","F","POP","TOTAL","OC5","G","Y65-84","2011","298","","" +"RO","F","POP","TOTAL","OC5","G","Y_GE85","2011","4","","" +"RO","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","H","Y15-29","2011","1849","","" +"RO","F","POP","TOTAL","OC5","H","Y30-49","2011","7750","","" +"RO","F","POP","TOTAL","OC5","H","Y50-64","2011","2103","","" +"RO","F","POP","TOTAL","OC5","H","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","I","Y15-29","2011","27707","","" +"RO","F","POP","TOTAL","OC5","I","Y30-49","2011","39236","","" +"RO","F","POP","TOTAL","OC5","I","Y50-64","2011","8308","","" +"RO","F","POP","TOTAL","OC5","I","Y65-84","2011","36","","" +"RO","F","POP","TOTAL","OC5","I","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","J","Y15-29","2011","748","","" +"RO","F","POP","TOTAL","OC5","J","Y30-49","2011","1629","","" +"RO","F","POP","TOTAL","OC5","J","Y50-64","2011","409","","" +"RO","F","POP","TOTAL","OC5","J","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","K","Y15-29","2011","1072","","" +"RO","F","POP","TOTAL","OC5","K","Y30-49","2011","2663","","" +"RO","F","POP","TOTAL","OC5","K","Y50-64","2011","813","","" +"RO","F","POP","TOTAL","OC5","K","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","L","Y15-29","2011","178","","" +"RO","F","POP","TOTAL","OC5","L","Y30-49","2011","769","","" +"RO","F","POP","TOTAL","OC5","L","Y50-64","2011","469","","" +"RO","F","POP","TOTAL","OC5","L","Y65-84","2011","19","","" +"RO","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","M","Y15-29","2011","585","","" +"RO","F","POP","TOTAL","OC5","M","Y30-49","2011","1447","","" +"RO","F","POP","TOTAL","OC5","M","Y50-64","2011","560","","" +"RO","F","POP","TOTAL","OC5","M","Y65-84","2011","15","","" +"RO","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","N","Y15-29","2011","3775","","" +"RO","F","POP","TOTAL","OC5","N","Y30-49","2011","13417","","" +"RO","F","POP","TOTAL","OC5","N","Y50-64","2011","3362","","" +"RO","F","POP","TOTAL","OC5","N","Y65-84","2011","17","","" +"RO","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","O","Y15-29","2011","3806","","" +"RO","F","POP","TOTAL","OC5","O","Y30-49","2011","16368","","" +"RO","F","POP","TOTAL","OC5","O","Y50-64","2011","6463","","" +"RO","F","POP","TOTAL","OC5","O","Y65-84","2011","71","","" +"RO","F","POP","TOTAL","OC5","O","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","P","Y15-29","2011","1006","","" +"RO","F","POP","TOTAL","OC5","P","Y30-49","2011","14986","","" +"RO","F","POP","TOTAL","OC5","P","Y50-64","2011","8101","","" +"RO","F","POP","TOTAL","OC5","P","Y65-84","2011","24","","" +"RO","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","Q","Y15-29","2011","5558","","" +"RO","F","POP","TOTAL","OC5","Q","Y30-49","2011","58244","","" +"RO","F","POP","TOTAL","OC5","Q","Y50-64","2011","24948","","" +"RO","F","POP","TOTAL","OC5","Q","Y65-84","2011","443","","" +"RO","F","POP","TOTAL","OC5","Q","Y_GE85","2011","4","","" +"RO","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","R","Y15-29","2011","2574","","" +"RO","F","POP","TOTAL","OC5","R","Y30-49","2011","2786","","" +"RO","F","POP","TOTAL","OC5","R","Y50-64","2011","862","","" +"RO","F","POP","TOTAL","OC5","R","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","S","Y15-29","2011","11612","","" +"RO","F","POP","TOTAL","OC5","S","Y30-49","2011","24047","","" +"RO","F","POP","TOTAL","OC5","S","Y50-64","2011","6042","","" +"RO","F","POP","TOTAL","OC5","S","Y65-84","2011","117","","" +"RO","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","T","Y15-29","2011","767","","" +"RO","F","POP","TOTAL","OC5","T","Y30-49","2011","1884","","" +"RO","F","POP","TOTAL","OC5","T","Y50-64","2011","721","","" +"RO","F","POP","TOTAL","OC5","T","Y65-84","2011","18","","" +"RO","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","U","Y15-29","2011","41","","" +"RO","F","POP","TOTAL","OC5","U","Y30-49","2011","108","","" +"RO","F","POP","TOTAL","OC5","U","Y50-64","2011","38","","" +"RO","F","POP","TOTAL","OC5","U","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","A","Y15-29","2011","42276","","" +"RO","F","POP","TOTAL","OC6","A","Y30-49","2011","355624","","" +"RO","F","POP","TOTAL","OC6","A","Y50-64","2011","345778","","" +"RO","F","POP","TOTAL","OC6","A","Y65-84","2011","212934","","" +"RO","F","POP","TOTAL","OC6","A","Y_GE85","2011","9943","","" +"RO","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","C","Y15-29","2011","113","","" +"RO","F","POP","TOTAL","OC6","C","Y30-49","2011","587","","" +"RO","F","POP","TOTAL","OC6","C","Y50-64","2011","170","","" +"RO","F","POP","TOTAL","OC6","C","Y65-84","2011","19","","" +"RO","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","F","Y15-29","2011","32","","" +"RO","F","POP","TOTAL","OC6","F","Y30-49","2011","54","","" +"RO","F","POP","TOTAL","OC6","F","Y50-64","2011","13","","" +"RO","F","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","G","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC6","G","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC6","G","Y50-64","2011",":","c","" +"RO","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","I","Y15-29","2011","11","","" +"RO","F","POP","TOTAL","OC6","I","Y30-49","2011","12","","" +"RO","F","POP","TOTAL","OC6","I","Y50-64","2011","14","","" +"RO","F","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","J","Y15-29","2011","3","","" +"RO","F","POP","TOTAL","OC6","J","Y30-49","2011","20","","" +"RO","F","POP","TOTAL","OC6","J","Y50-64","2011","4","","" +"RO","F","POP","TOTAL","OC6","J","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","K","Y15-29","2011","4","","" +"RO","F","POP","TOTAL","OC6","K","Y30-49","2011","3","","" +"RO","F","POP","TOTAL","OC6","K","Y50-64","2011",":","c","" +"RO","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","L","Y15-29","2011",":","c","" +"RO","F","POP","TOTAL","OC6","L","Y30-49","2011","3","","" +"RO","F","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"RO","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","M","Y15-29","2011","3","","" +"RO","F","POP","TOTAL","OC6","M","Y30-49","2011","51","","" +"RO","F","POP","TOTAL","OC6","M","Y50-64","2011","32","","" +"RO","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","N","Y15-29","2011","85","","" +"RO","F","POP","TOTAL","OC6","N","Y30-49","2011","665","","" +"RO","F","POP","TOTAL","OC6","N","Y50-64","2011","229","","" +"RO","F","POP","TOTAL","OC6","N","Y65-84","2011","10","","" +"RO","F","POP","TOTAL","OC6","N","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","O","Y15-29","2011","30","","" +"RO","F","POP","TOTAL","OC6","O","Y30-49","2011","479","","" +"RO","F","POP","TOTAL","OC6","O","Y50-64","2011","266","","" +"RO","F","POP","TOTAL","OC6","O","Y65-84","2011","38","","" +"RO","F","POP","TOTAL","OC6","O","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","P","Y15-29","2011","13","","" +"RO","F","POP","TOTAL","OC6","P","Y30-49","2011","71","","" +"RO","F","POP","TOTAL","OC6","P","Y50-64","2011","44","","" +"RO","F","POP","TOTAL","OC6","P","Y65-84","2011","9","","" +"RO","F","POP","TOTAL","OC6","P","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","Q","Y15-29","2011","5","","" +"RO","F","POP","TOTAL","OC6","Q","Y30-49","2011","34","","" +"RO","F","POP","TOTAL","OC6","Q","Y50-64","2011","15","","" +"RO","F","POP","TOTAL","OC6","Q","Y65-84","2011","11","","" +"RO","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","R","Y15-29","2011","11","","" +"RO","F","POP","TOTAL","OC6","R","Y30-49","2011","45","","" +"RO","F","POP","TOTAL","OC6","R","Y50-64","2011","30","","" +"RO","F","POP","TOTAL","OC6","R","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","S","Y15-29","2011","54","","" +"RO","F","POP","TOTAL","OC6","S","Y30-49","2011","232","","" +"RO","F","POP","TOTAL","OC6","S","Y50-64","2011","127","","" +"RO","F","POP","TOTAL","OC6","S","Y65-84","2011","24","","" +"RO","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","T","Y15-29","2011","1162","","" +"RO","F","POP","TOTAL","OC6","T","Y30-49","2011","2940","","" +"RO","F","POP","TOTAL","OC6","T","Y50-64","2011","1624","","" +"RO","F","POP","TOTAL","OC6","T","Y65-84","2011","424","","" +"RO","F","POP","TOTAL","OC6","T","Y_GE85","2011","9","","" +"RO","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","A","Y15-29","2011","235","","" +"RO","F","POP","TOTAL","OC7","A","Y30-49","2011","843","","" +"RO","F","POP","TOTAL","OC7","A","Y50-64","2011","211","","" +"RO","F","POP","TOTAL","OC7","A","Y65-84","2011","7","","" +"RO","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","B","Y15-29","2011","86","","" +"RO","F","POP","TOTAL","OC7","B","Y30-49","2011","961","","" +"RO","F","POP","TOTAL","OC7","B","Y50-64","2011","239","","" +"RO","F","POP","TOTAL","OC7","B","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","C","Y15-29","2011","48493","","" +"RO","F","POP","TOTAL","OC7","C","Y30-49","2011","180899","","" +"RO","F","POP","TOTAL","OC7","C","Y50-64","2011","36843","","" +"RO","F","POP","TOTAL","OC7","C","Y65-84","2011","97","","" +"RO","F","POP","TOTAL","OC7","C","Y_GE85","2011","5","","" +"RO","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","D","Y15-29","2011","148","","" +"RO","F","POP","TOTAL","OC7","D","Y30-49","2011","1767","","" +"RO","F","POP","TOTAL","OC7","D","Y50-64","2011","751","","" +"RO","F","POP","TOTAL","OC7","D","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","E","Y15-29","2011","66","","" +"RO","F","POP","TOTAL","OC7","E","Y30-49","2011","593","","" +"RO","F","POP","TOTAL","OC7","E","Y50-64","2011","324","","" +"RO","F","POP","TOTAL","OC7","E","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","F","Y15-29","2011","1885","","" +"RO","F","POP","TOTAL","OC7","F","Y30-49","2011","6793","","" +"RO","F","POP","TOTAL","OC7","F","Y50-64","2011","2000","","" +"RO","F","POP","TOTAL","OC7","F","Y65-84","2011","29","","" +"RO","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","G","Y15-29","2011","1251","","" +"RO","F","POP","TOTAL","OC7","G","Y30-49","2011","4150","","" +"RO","F","POP","TOTAL","OC7","G","Y50-64","2011","1057","","" +"RO","F","POP","TOTAL","OC7","G","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","H","Y15-29","2011","124","","" +"RO","F","POP","TOTAL","OC7","H","Y30-49","2011","1612","","" +"RO","F","POP","TOTAL","OC7","H","Y50-64","2011","595","","" +"RO","F","POP","TOTAL","OC7","H","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","I","Y15-29","2011","774","","" +"RO","F","POP","TOTAL","OC7","I","Y30-49","2011","2168","","" +"RO","F","POP","TOTAL","OC7","I","Y50-64","2011","560","","" +"RO","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","J","Y15-29","2011","465","","" +"RO","F","POP","TOTAL","OC7","J","Y30-49","2011","1571","","" +"RO","F","POP","TOTAL","OC7","J","Y50-64","2011","444","","" +"RO","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","K","Y15-29","2011","18","","" +"RO","F","POP","TOTAL","OC7","K","Y30-49","2011","56","","" +"RO","F","POP","TOTAL","OC7","K","Y50-64","2011","11","","" +"RO","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","L","Y15-29","2011","5","","" +"RO","F","POP","TOTAL","OC7","L","Y30-49","2011","20","","" +"RO","F","POP","TOTAL","OC7","L","Y50-64","2011","13","","" +"RO","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","M","Y15-29","2011","142","","" +"RO","F","POP","TOTAL","OC7","M","Y30-49","2011","546","","" +"RO","F","POP","TOTAL","OC7","M","Y50-64","2011","214","","" +"RO","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","N","Y15-29","2011","234","","" +"RO","F","POP","TOTAL","OC7","N","Y30-49","2011","496","","" +"RO","F","POP","TOTAL","OC7","N","Y50-64","2011","139","","" +"RO","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","O","Y15-29","2011","164","","" +"RO","F","POP","TOTAL","OC7","O","Y30-49","2011","756","","" +"RO","F","POP","TOTAL","OC7","O","Y50-64","2011","387","","" +"RO","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","P","Y15-29","2011","46","","" +"RO","F","POP","TOTAL","OC7","P","Y30-49","2011","390","","" +"RO","F","POP","TOTAL","OC7","P","Y50-64","2011","274","","" +"RO","F","POP","TOTAL","OC7","P","Y65-84","2011","5","","" +"RO","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","Q","Y15-29","2011","75","","" +"RO","F","POP","TOTAL","OC7","Q","Y30-49","2011","533","","" +"RO","F","POP","TOTAL","OC7","Q","Y50-64","2011","327","","" +"RO","F","POP","TOTAL","OC7","Q","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","R","Y15-29","2011","90","","" +"RO","F","POP","TOTAL","OC7","R","Y30-49","2011","373","","" +"RO","F","POP","TOTAL","OC7","R","Y50-64","2011","178","","" +"RO","F","POP","TOTAL","OC7","R","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","S","Y15-29","2011","454","","" +"RO","F","POP","TOTAL","OC7","S","Y30-49","2011","1544","","" +"RO","F","POP","TOTAL","OC7","S","Y50-64","2011","530","","" +"RO","F","POP","TOTAL","OC7","S","Y65-84","2011","8","","" +"RO","F","POP","TOTAL","OC7","S","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","T","Y15-29","2011",":","c","" +"RO","F","POP","TOTAL","OC7","T","Y30-49","2011","4","","" +"RO","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","U","Y15-29","2011","8","","" +"RO","F","POP","TOTAL","OC7","U","Y30-49","2011",":","c","" +"RO","F","POP","TOTAL","OC7","U","Y50-64","2011","6","","" +"RO","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","A","Y15-29","2011","89","","" +"RO","F","POP","TOTAL","OC8","A","Y30-49","2011","336","","" +"RO","F","POP","TOTAL","OC8","A","Y50-64","2011","90","","" +"RO","F","POP","TOTAL","OC8","A","Y65-84","2011","3","","" +"RO","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","B","Y15-29","2011","128","","" +"RO","F","POP","TOTAL","OC8","B","Y30-49","2011","1448","","" +"RO","F","POP","TOTAL","OC8","B","Y50-64","2011","400","","" +"RO","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","C","Y15-29","2011","23751","","" +"RO","F","POP","TOTAL","OC8","C","Y30-49","2011","82163","","" +"RO","F","POP","TOTAL","OC8","C","Y50-64","2011","14995","","" +"RO","F","POP","TOTAL","OC8","C","Y65-84","2011","36","","" +"RO","F","POP","TOTAL","OC8","C","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","D","Y15-29","2011","19","","" +"RO","F","POP","TOTAL","OC8","D","Y30-49","2011","610","","" +"RO","F","POP","TOTAL","OC8","D","Y50-64","2011","296","","" +"RO","F","POP","TOTAL","OC8","D","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","E","Y15-29","2011","41","","" +"RO","F","POP","TOTAL","OC8","E","Y30-49","2011","190","","" +"RO","F","POP","TOTAL","OC8","E","Y50-64","2011","69","","" +"RO","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","F","Y15-29","2011","163","","" +"RO","F","POP","TOTAL","OC8","F","Y30-49","2011","587","","" +"RO","F","POP","TOTAL","OC8","F","Y50-64","2011","150","","" +"RO","F","POP","TOTAL","OC8","F","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC8","F","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","G","Y15-29","2011","565","","" +"RO","F","POP","TOTAL","OC8","G","Y30-49","2011","1493","","" +"RO","F","POP","TOTAL","OC8","G","Y50-64","2011","309","","" +"RO","F","POP","TOTAL","OC8","G","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","H","Y15-29","2011","1012","","" +"RO","F","POP","TOTAL","OC8","H","Y30-49","2011","4219","","" +"RO","F","POP","TOTAL","OC8","H","Y50-64","2011","1051","","" +"RO","F","POP","TOTAL","OC8","H","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC8","H","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","I","Y15-29","2011","23","","" +"RO","F","POP","TOTAL","OC8","I","Y30-49","2011","60","","" +"RO","F","POP","TOTAL","OC8","I","Y50-64","2011","17","","" +"RO","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","J","Y15-29","2011","25","","" +"RO","F","POP","TOTAL","OC8","J","Y30-49","2011","85","","" +"RO","F","POP","TOTAL","OC8","J","Y50-64","2011","15","","" +"RO","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","K","Y15-29","2011","5","","" +"RO","F","POP","TOTAL","OC8","K","Y30-49","2011","12","","" +"RO","F","POP","TOTAL","OC8","K","Y50-64","2011",":","c","" +"RO","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","L","Y15-29","2011","4","","" +"RO","F","POP","TOTAL","OC8","L","Y30-49","2011","12","","" +"RO","F","POP","TOTAL","OC8","L","Y50-64","2011","6","","" +"RO","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","M","Y15-29","2011","43","","" +"RO","F","POP","TOTAL","OC8","M","Y30-49","2011","186","","" +"RO","F","POP","TOTAL","OC8","M","Y50-64","2011","72","","" +"RO","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","N","Y15-29","2011","130","","" +"RO","F","POP","TOTAL","OC8","N","Y30-49","2011","330","","" +"RO","F","POP","TOTAL","OC8","N","Y50-64","2011","94","","" +"RO","F","POP","TOTAL","OC8","N","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","O","Y15-29","2011","216","","" +"RO","F","POP","TOTAL","OC8","O","Y30-49","2011","688","","" +"RO","F","POP","TOTAL","OC8","O","Y50-64","2011","208","","" +"RO","F","POP","TOTAL","OC8","O","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","P","Y15-29","2011","32","","" +"RO","F","POP","TOTAL","OC8","P","Y30-49","2011","279","","" +"RO","F","POP","TOTAL","OC8","P","Y50-64","2011","137","","" +"RO","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","Q","Y15-29","2011","43","","" +"RO","F","POP","TOTAL","OC8","Q","Y30-49","2011","616","","" +"RO","F","POP","TOTAL","OC8","Q","Y50-64","2011","384","","" +"RO","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","R","Y15-29","2011","31","","" +"RO","F","POP","TOTAL","OC8","R","Y30-49","2011","68","","" +"RO","F","POP","TOTAL","OC8","R","Y50-64","2011","20","","" +"RO","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","S","Y15-29","2011","165","","" +"RO","F","POP","TOTAL","OC8","S","Y30-49","2011","536","","" +"RO","F","POP","TOTAL","OC8","S","Y50-64","2011","133","","" +"RO","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC8","T","Y50-64","2011",":","c","" +"RO","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC8","U","Y30-49","2011","5","","" +"RO","F","POP","TOTAL","OC8","U","Y50-64","2011",":","c","" +"RO","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","A","Y15-29","2011","18796","","" +"RO","F","POP","TOTAL","OC9","A","Y30-49","2011","37788","","" +"RO","F","POP","TOTAL","OC9","A","Y50-64","2011","25144","","" +"RO","F","POP","TOTAL","OC9","A","Y65-84","2011","33457","","" +"RO","F","POP","TOTAL","OC9","A","Y_GE85","2011","2577","","" +"RO","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","B","Y15-29","2011","246","","" +"RO","F","POP","TOTAL","OC9","B","Y30-49","2011","636","","" +"RO","F","POP","TOTAL","OC9","B","Y50-64","2011","189","","" +"RO","F","POP","TOTAL","OC9","B","Y65-84","2011",":","c","" +"RO","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","C","Y15-29","2011","18449","","" +"RO","F","POP","TOTAL","OC9","C","Y30-49","2011","45544","","" +"RO","F","POP","TOTAL","OC9","C","Y50-64","2011","8803","","" +"RO","F","POP","TOTAL","OC9","C","Y65-84","2011","56","","" +"RO","F","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","D","Y15-29","2011","108","","" +"RO","F","POP","TOTAL","OC9","D","Y30-49","2011","926","","" +"RO","F","POP","TOTAL","OC9","D","Y50-64","2011","332","","" +"RO","F","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","E","Y15-29","2011","1318","","" +"RO","F","POP","TOTAL","OC9","E","Y30-49","2011","4989","","" +"RO","F","POP","TOTAL","OC9","E","Y50-64","2011","1319","","" +"RO","F","POP","TOTAL","OC9","E","Y65-84","2011","5","","" +"RO","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","F","Y15-29","2011","2150","","" +"RO","F","POP","TOTAL","OC9","F","Y30-49","2011","6959","","" +"RO","F","POP","TOTAL","OC9","F","Y50-64","2011","1950","","" +"RO","F","POP","TOTAL","OC9","F","Y65-84","2011","22","","" +"RO","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","G","Y15-29","2011","6531","","" +"RO","F","POP","TOTAL","OC9","G","Y30-49","2011","14768","","" +"RO","F","POP","TOTAL","OC9","G","Y50-64","2011","4085","","" +"RO","F","POP","TOTAL","OC9","G","Y65-84","2011","41","","" +"RO","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","H","Y15-29","2011","679","","" +"RO","F","POP","TOTAL","OC9","H","Y30-49","2011","2930","","" +"RO","F","POP","TOTAL","OC9","H","Y50-64","2011","1084","","" +"RO","F","POP","TOTAL","OC9","H","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","I","Y15-29","2011","3458","","" +"RO","F","POP","TOTAL","OC9","I","Y30-49","2011","6931","","" +"RO","F","POP","TOTAL","OC9","I","Y50-64","2011","2075","","" +"RO","F","POP","TOTAL","OC9","I","Y65-84","2011","11","","" +"RO","F","POP","TOTAL","OC9","I","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","J","Y15-29","2011","300","","" +"RO","F","POP","TOTAL","OC9","J","Y30-49","2011","1061","","" +"RO","F","POP","TOTAL","OC9","J","Y50-64","2011","387","","" +"RO","F","POP","TOTAL","OC9","J","Y65-84","2011","4","","" +"RO","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","K","Y15-29","2011","102","","" +"RO","F","POP","TOTAL","OC9","K","Y30-49","2011","625","","" +"RO","F","POP","TOTAL","OC9","K","Y50-64","2011","349","","" +"RO","F","POP","TOTAL","OC9","K","Y65-84","2011","7","","" +"RO","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","L","Y15-29","2011","111","","" +"RO","F","POP","TOTAL","OC9","L","Y30-49","2011","716","","" +"RO","F","POP","TOTAL","OC9","L","Y50-64","2011","398","","" +"RO","F","POP","TOTAL","OC9","L","Y65-84","2011","9","","" +"RO","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","M","Y15-29","2011","411","","" +"RO","F","POP","TOTAL","OC9","M","Y30-49","2011","1413","","" +"RO","F","POP","TOTAL","OC9","M","Y50-64","2011","648","","" +"RO","F","POP","TOTAL","OC9","M","Y65-84","2011","6","","" +"RO","F","POP","TOTAL","OC9","M","Y_GE85","2011","3","","" +"RO","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","N","Y15-29","2011","2329","","" +"RO","F","POP","TOTAL","OC9","N","Y30-49","2011","8767","","" +"RO","F","POP","TOTAL","OC9","N","Y50-64","2011","2945","","" +"RO","F","POP","TOTAL","OC9","N","Y65-84","2011","19","","" +"RO","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","O","Y15-29","2011","1663","","" +"RO","F","POP","TOTAL","OC9","O","Y30-49","2011","7281","","" +"RO","F","POP","TOTAL","OC9","O","Y50-64","2011","3818","","" +"RO","F","POP","TOTAL","OC9","O","Y65-84","2011","46","","" +"RO","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","P","Y15-29","2011","1065","","" +"RO","F","POP","TOTAL","OC9","P","Y30-49","2011","12725","","" +"RO","F","POP","TOTAL","OC9","P","Y50-64","2011","7870","","" +"RO","F","POP","TOTAL","OC9","P","Y65-84","2011","31","","" +"RO","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","Q","Y15-29","2011","460","","" +"RO","F","POP","TOTAL","OC9","Q","Y30-49","2011","5302","","" +"RO","F","POP","TOTAL","OC9","Q","Y50-64","2011","3020","","" +"RO","F","POP","TOTAL","OC9","Q","Y65-84","2011","15","","" +"RO","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","R","Y15-29","2011","369","","" +"RO","F","POP","TOTAL","OC9","R","Y30-49","2011","1635","","" +"RO","F","POP","TOTAL","OC9","R","Y50-64","2011","865","","" +"RO","F","POP","TOTAL","OC9","R","Y65-84","2011","10","","" +"RO","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","S","Y15-29","2011","2226","","" +"RO","F","POP","TOTAL","OC9","S","Y30-49","2011","8434","","" +"RO","F","POP","TOTAL","OC9","S","Y50-64","2011","3847","","" +"RO","F","POP","TOTAL","OC9","S","Y65-84","2011","90","","" +"RO","F","POP","TOTAL","OC9","S","Y_GE85","2011",":","c","" +"RO","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","T","Y15-29","2011","19329","","" +"RO","F","POP","TOTAL","OC9","T","Y30-49","2011","37713","","" +"RO","F","POP","TOTAL","OC9","T","Y50-64","2011","10433","","" +"RO","F","POP","TOTAL","OC9","T","Y65-84","2011","458","","" +"RO","F","POP","TOTAL","OC9","T","Y_GE85","2011","9","","" +"RO","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","U","Y15-29","2011","11","","" +"RO","F","POP","TOTAL","OC9","U","Y30-49","2011","73","","" +"RO","F","POP","TOTAL","OC9","U","Y50-64","2011","25","","" +"RO","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"RO","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"RO","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"RO","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"RO","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"RO","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"RO","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","NAP","Y15-29","2011","1007398","","" +"RO","M","POP","TOTAL","NAP","NAP","Y30-49","2011","464449","","" +"RO","M","POP","TOTAL","NAP","NAP","Y50-64","2011","787231","","" +"RO","M","POP","TOTAL","NAP","NAP","Y65-84","2011","852650","","" +"RO","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","74415","","" +"RO","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","1638311","","" +"RO","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","O","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","O","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","O","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","A","Y15-29","2011","752","","" +"RO","M","POP","TOTAL","OC1","A","Y30-49","2011","4084","","" +"RO","M","POP","TOTAL","OC1","A","Y50-64","2011","2056","","" +"RO","M","POP","TOTAL","OC1","A","Y65-84","2011","81","","" +"RO","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","B","Y15-29","2011","95","","" +"RO","M","POP","TOTAL","OC1","B","Y30-49","2011","854","","" +"RO","M","POP","TOTAL","OC1","B","Y50-64","2011","525","","" +"RO","M","POP","TOTAL","OC1","B","Y65-84","2011","13","","" +"RO","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","C","Y15-29","2011","2378","","" +"RO","M","POP","TOTAL","OC1","C","Y30-49","2011","11603","","" +"RO","M","POP","TOTAL","OC1","C","Y50-64","2011","4994","","" +"RO","M","POP","TOTAL","OC1","C","Y65-84","2011","153","","" +"RO","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","D","Y15-29","2011","143","","" +"RO","M","POP","TOTAL","OC1","D","Y30-49","2011","1232","","" +"RO","M","POP","TOTAL","OC1","D","Y50-64","2011","812","","" +"RO","M","POP","TOTAL","OC1","D","Y65-84","2011","11","","" +"RO","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","E","Y15-29","2011","226","","" +"RO","M","POP","TOTAL","OC1","E","Y30-49","2011","1236","","" +"RO","M","POP","TOTAL","OC1","E","Y50-64","2011","881","","" +"RO","M","POP","TOTAL","OC1","E","Y65-84","2011","18","","" +"RO","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","F","Y15-29","2011","1211","","" +"RO","M","POP","TOTAL","OC1","F","Y30-49","2011","6304","","" +"RO","M","POP","TOTAL","OC1","F","Y50-64","2011","3203","","" +"RO","M","POP","TOTAL","OC1","F","Y65-84","2011","92","","" +"RO","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","G","Y15-29","2011","5889","","" +"RO","M","POP","TOTAL","OC1","G","Y30-49","2011","23259","","" +"RO","M","POP","TOTAL","OC1","G","Y50-64","2011","6516","","" +"RO","M","POP","TOTAL","OC1","G","Y65-84","2011","172","","" +"RO","M","POP","TOTAL","OC1","G","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","H","Y15-29","2011","830","","" +"RO","M","POP","TOTAL","OC1","H","Y30-49","2011","4010","","" +"RO","M","POP","TOTAL","OC1","H","Y50-64","2011","1344","","" +"RO","M","POP","TOTAL","OC1","H","Y65-84","2011","21","","" +"RO","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","I","Y15-29","2011","723","","" +"RO","M","POP","TOTAL","OC1","I","Y30-49","2011","2033","","" +"RO","M","POP","TOTAL","OC1","I","Y50-64","2011","671","","" +"RO","M","POP","TOTAL","OC1","I","Y65-84","2011","25","","" +"RO","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","J","Y15-29","2011","1056","","" +"RO","M","POP","TOTAL","OC1","J","Y30-49","2011","3510","","" +"RO","M","POP","TOTAL","OC1","J","Y50-64","2011","705","","" +"RO","M","POP","TOTAL","OC1","J","Y65-84","2011","26","","" +"RO","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","K","Y15-29","2011","444","","" +"RO","M","POP","TOTAL","OC1","K","Y30-49","2011","2078","","" +"RO","M","POP","TOTAL","OC1","K","Y50-64","2011","510","","" +"RO","M","POP","TOTAL","OC1","K","Y65-84","2011","16","","" +"RO","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","L","Y15-29","2011","176","","" +"RO","M","POP","TOTAL","OC1","L","Y30-49","2011","1052","","" +"RO","M","POP","TOTAL","OC1","L","Y50-64","2011","378","","" +"RO","M","POP","TOTAL","OC1","L","Y65-84","2011","19","","" +"RO","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","M","Y15-29","2011","840","","" +"RO","M","POP","TOTAL","OC1","M","Y30-49","2011","3572","","" +"RO","M","POP","TOTAL","OC1","M","Y50-64","2011","1104","","" +"RO","M","POP","TOTAL","OC1","M","Y65-84","2011","86","","" +"RO","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","N","Y15-29","2011","544","","" +"RO","M","POP","TOTAL","OC1","N","Y30-49","2011","2172","","" +"RO","M","POP","TOTAL","OC1","N","Y50-64","2011","728","","" +"RO","M","POP","TOTAL","OC1","N","Y65-84","2011","21","","" +"RO","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","O","Y15-29","2011","901","","" +"RO","M","POP","TOTAL","OC1","O","Y30-49","2011","8145","","" +"RO","M","POP","TOTAL","OC1","O","Y50-64","2011","4514","","" +"RO","M","POP","TOTAL","OC1","O","Y65-84","2011","175","","" +"RO","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","P","Y15-29","2011","171","","" +"RO","M","POP","TOTAL","OC1","P","Y30-49","2011","1474","","" +"RO","M","POP","TOTAL","OC1","P","Y50-64","2011","922","","" +"RO","M","POP","TOTAL","OC1","P","Y65-84","2011","32","","" +"RO","M","POP","TOTAL","OC1","P","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","Q","Y15-29","2011","197","","" +"RO","M","POP","TOTAL","OC1","Q","Y30-49","2011","1495","","" +"RO","M","POP","TOTAL","OC1","Q","Y50-64","2011","851","","" +"RO","M","POP","TOTAL","OC1","Q","Y65-84","2011","48","","" +"RO","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","R","Y15-29","2011","375","","" +"RO","M","POP","TOTAL","OC1","R","Y30-49","2011","1350","","" +"RO","M","POP","TOTAL","OC1","R","Y50-64","2011","532","","" +"RO","M","POP","TOTAL","OC1","R","Y65-84","2011","37","","" +"RO","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","S","Y15-29","2011","517","","" +"RO","M","POP","TOTAL","OC1","S","Y30-49","2011","2270","","" +"RO","M","POP","TOTAL","OC1","S","Y50-64","2011","921","","" +"RO","M","POP","TOTAL","OC1","S","Y65-84","2011","54","","" +"RO","M","POP","TOTAL","OC1","S","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","U","Y15-29","2011","118","","" +"RO","M","POP","TOTAL","OC1","U","Y30-49","2011","427","","" +"RO","M","POP","TOTAL","OC1","U","Y50-64","2011","193","","" +"RO","M","POP","TOTAL","OC1","U","Y65-84","2011","18","","" +"RO","M","POP","TOTAL","OC1","U","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","A","Y15-29","2011","2915","","" +"RO","M","POP","TOTAL","OC2","A","Y30-49","2011","10663","","" +"RO","M","POP","TOTAL","OC2","A","Y50-64","2011","5545","","" +"RO","M","POP","TOTAL","OC2","A","Y65-84","2011","86","","" +"RO","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","B","Y15-29","2011","713","","" +"RO","M","POP","TOTAL","OC2","B","Y30-49","2011","4065","","" +"RO","M","POP","TOTAL","OC2","B","Y50-64","2011","2549","","" +"RO","M","POP","TOTAL","OC2","B","Y65-84","2011","19","","" +"RO","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","C","Y15-29","2011","15514","","" +"RO","M","POP","TOTAL","OC2","C","Y30-49","2011","40984","","" +"RO","M","POP","TOTAL","OC2","C","Y50-64","2011","21118","","" +"RO","M","POP","TOTAL","OC2","C","Y65-84","2011","333","","" +"RO","M","POP","TOTAL","OC2","C","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","D","Y15-29","2011","1640","","" +"RO","M","POP","TOTAL","OC2","D","Y30-49","2011","7707","","" +"RO","M","POP","TOTAL","OC2","D","Y50-64","2011","4727","","" +"RO","M","POP","TOTAL","OC2","D","Y65-84","2011","38","","" +"RO","M","POP","TOTAL","OC2","D","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","E","Y15-29","2011","689","","" +"RO","M","POP","TOTAL","OC2","E","Y30-49","2011","2194","","" +"RO","M","POP","TOTAL","OC2","E","Y50-64","2011","1617","","" +"RO","M","POP","TOTAL","OC2","E","Y65-84","2011","13","","" +"RO","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","F","Y15-29","2011","8651","","" +"RO","M","POP","TOTAL","OC2","F","Y30-49","2011","24928","","" +"RO","M","POP","TOTAL","OC2","F","Y50-64","2011","12973","","" +"RO","M","POP","TOTAL","OC2","F","Y65-84","2011","345","","" +"RO","M","POP","TOTAL","OC2","F","Y_GE85","2011","3","","" +"RO","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","G","Y15-29","2011","8700","","" +"RO","M","POP","TOTAL","OC2","G","Y30-49","2011","19408","","" +"RO","M","POP","TOTAL","OC2","G","Y50-64","2011","4806","","" +"RO","M","POP","TOTAL","OC2","G","Y65-84","2011","143","","" +"RO","M","POP","TOTAL","OC2","G","Y_GE85","2011","3","","" +"RO","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","H","Y15-29","2011","2505","","" +"RO","M","POP","TOTAL","OC2","H","Y30-49","2011","12714","","" +"RO","M","POP","TOTAL","OC2","H","Y50-64","2011","5161","","" +"RO","M","POP","TOTAL","OC2","H","Y65-84","2011","56","","" +"RO","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","I","Y15-29","2011","391","","" +"RO","M","POP","TOTAL","OC2","I","Y30-49","2011","877","","" +"RO","M","POP","TOTAL","OC2","I","Y50-64","2011","237","","" +"RO","M","POP","TOTAL","OC2","I","Y65-84","2011","10","","" +"RO","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","J","Y15-29","2011","18350","","" +"RO","M","POP","TOTAL","OC2","J","Y30-49","2011","24152","","" +"RO","M","POP","TOTAL","OC2","J","Y50-64","2011","4104","","" +"RO","M","POP","TOTAL","OC2","J","Y65-84","2011","95","","" +"RO","M","POP","TOTAL","OC2","J","Y_GE85","2011","3","","" +"RO","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","K","Y15-29","2011","6399","","" +"RO","M","POP","TOTAL","OC2","K","Y30-49","2011","11641","","" +"RO","M","POP","TOTAL","OC2","K","Y50-64","2011","2728","","" +"RO","M","POP","TOTAL","OC2","K","Y65-84","2011","54","","" +"RO","M","POP","TOTAL","OC2","K","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","L","Y15-29","2011","252","","" +"RO","M","POP","TOTAL","OC2","L","Y30-49","2011","724","","" +"RO","M","POP","TOTAL","OC2","L","Y50-64","2011","251","","" +"RO","M","POP","TOTAL","OC2","L","Y65-84","2011","10","","" +"RO","M","POP","TOTAL","OC2","L","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","M","Y15-29","2011","11972","","" +"RO","M","POP","TOTAL","OC2","M","Y30-49","2011","27870","","" +"RO","M","POP","TOTAL","OC2","M","Y50-64","2011","11284","","" +"RO","M","POP","TOTAL","OC2","M","Y65-84","2011","883","","" +"RO","M","POP","TOTAL","OC2","M","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","N","Y15-29","2011","1825","","" +"RO","M","POP","TOTAL","OC2","N","Y30-49","2011","3441","","" +"RO","M","POP","TOTAL","OC2","N","Y50-64","2011","1054","","" +"RO","M","POP","TOTAL","OC2","N","Y65-84","2011","27","","" +"RO","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","O","Y15-29","2011","9750","","" +"RO","M","POP","TOTAL","OC2","O","Y30-49","2011","48477","","" +"RO","M","POP","TOTAL","OC2","O","Y50-64","2011","15967","","" +"RO","M","POP","TOTAL","OC2","O","Y65-84","2011","220","","" +"RO","M","POP","TOTAL","OC2","O","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","P","Y15-29","2011","7514","","" +"RO","M","POP","TOTAL","OC2","P","Y30-49","2011","30689","","" +"RO","M","POP","TOTAL","OC2","P","Y50-64","2011","26180","","" +"RO","M","POP","TOTAL","OC2","P","Y65-84","2011","965","","" +"RO","M","POP","TOTAL","OC2","P","Y_GE85","2011","7","","" +"RO","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","Q","Y15-29","2011","5882","","" +"RO","M","POP","TOTAL","OC2","Q","Y30-49","2011","19433","","" +"RO","M","POP","TOTAL","OC2","Q","Y50-64","2011","9269","","" +"RO","M","POP","TOTAL","OC2","Q","Y65-84","2011","895","","" +"RO","M","POP","TOTAL","OC2","Q","Y_GE85","2011","4","","" +"RO","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","R","Y15-29","2011","1889","","" +"RO","M","POP","TOTAL","OC2","R","Y30-49","2011","4773","","" +"RO","M","POP","TOTAL","OC2","R","Y50-64","2011","1942","","" +"RO","M","POP","TOTAL","OC2","R","Y65-84","2011","87","","" +"RO","M","POP","TOTAL","OC2","R","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","S","Y15-29","2011","5313","","" +"RO","M","POP","TOTAL","OC2","S","Y30-49","2011","18215","","" +"RO","M","POP","TOTAL","OC2","S","Y50-64","2011","7634","","" +"RO","M","POP","TOTAL","OC2","S","Y65-84","2011","536","","" +"RO","M","POP","TOTAL","OC2","S","Y_GE85","2011","8","","" +"RO","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","U","Y15-29","2011","56","","" +"RO","M","POP","TOTAL","OC2","U","Y30-49","2011","144","","" +"RO","M","POP","TOTAL","OC2","U","Y50-64","2011","39","","" +"RO","M","POP","TOTAL","OC2","U","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","A","Y15-29","2011","614","","" +"RO","M","POP","TOTAL","OC3","A","Y30-49","2011","2504","","" +"RO","M","POP","TOTAL","OC3","A","Y50-64","2011","1393","","" +"RO","M","POP","TOTAL","OC3","A","Y65-84","2011","15","","" +"RO","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","B","Y15-29","2011","265","","" +"RO","M","POP","TOTAL","OC3","B","Y30-49","2011","2212","","" +"RO","M","POP","TOTAL","OC3","B","Y50-64","2011","1271","","" +"RO","M","POP","TOTAL","OC3","B","Y65-84","2011","7","","" +"RO","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","C","Y15-29","2011","8343","","" +"RO","M","POP","TOTAL","OC3","C","Y30-49","2011","55756","","" +"RO","M","POP","TOTAL","OC3","C","Y50-64","2011","11120","","" +"RO","M","POP","TOTAL","OC3","C","Y65-84","2011","96","","" +"RO","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","D","Y15-29","2011","605","","" +"RO","M","POP","TOTAL","OC3","D","Y30-49","2011","5131","","" +"RO","M","POP","TOTAL","OC3","D","Y50-64","2011","3708","","" +"RO","M","POP","TOTAL","OC3","D","Y65-84","2011","13","","" +"RO","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","E","Y15-29","2011","323","","" +"RO","M","POP","TOTAL","OC3","E","Y30-49","2011","1817","","" +"RO","M","POP","TOTAL","OC3","E","Y50-64","2011","1425","","" +"RO","M","POP","TOTAL","OC3","E","Y65-84","2011","9","","" +"RO","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","F","Y15-29","2011","2443","","" +"RO","M","POP","TOTAL","OC3","F","Y30-49","2011","6472","","" +"RO","M","POP","TOTAL","OC3","F","Y50-64","2011","34442","","" +"RO","M","POP","TOTAL","OC3","F","Y65-84","2011","103","","" +"RO","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","G","Y15-29","2011","28466","","" +"RO","M","POP","TOTAL","OC3","G","Y30-49","2011","44655","","" +"RO","M","POP","TOTAL","OC3","G","Y50-64","2011","6614","","" +"RO","M","POP","TOTAL","OC3","G","Y65-84","2011","119","","" +"RO","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","H","Y15-29","2011","2887","","" +"RO","M","POP","TOTAL","OC3","H","Y30-49","2011","8119","","" +"RO","M","POP","TOTAL","OC3","H","Y50-64","2011","3896","","" +"RO","M","POP","TOTAL","OC3","H","Y65-84","2011","18","","" +"RO","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","I","Y15-29","2011","728","","" +"RO","M","POP","TOTAL","OC3","I","Y30-49","2011","973","","" +"RO","M","POP","TOTAL","OC3","I","Y50-64","2011","256","","" +"RO","M","POP","TOTAL","OC3","I","Y65-84","2011","3","","" +"RO","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","J","Y15-29","2011","10214","","" +"RO","M","POP","TOTAL","OC3","J","Y30-49","2011","14283","","" +"RO","M","POP","TOTAL","OC3","J","Y50-64","2011","2760","","" +"RO","M","POP","TOTAL","OC3","J","Y65-84","2011","39","","" +"RO","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","K","Y15-29","2011","2855","","" +"RO","M","POP","TOTAL","OC3","K","Y30-49","2011","6060","","" +"RO","M","POP","TOTAL","OC3","K","Y50-64","2011","2055","","" +"RO","M","POP","TOTAL","OC3","K","Y65-84","2011","50","","" +"RO","M","POP","TOTAL","OC3","K","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","L","Y15-29","2011","784","","" +"RO","M","POP","TOTAL","OC3","L","Y30-49","2011","1645","","" +"RO","M","POP","TOTAL","OC3","L","Y50-64","2011","393","","" +"RO","M","POP","TOTAL","OC3","L","Y65-84","2011","7","","" +"RO","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","M","Y15-29","2011","4532","","" +"RO","M","POP","TOTAL","OC3","M","Y30-49","2011","8592","","" +"RO","M","POP","TOTAL","OC3","M","Y50-64","2011","3610","","" +"RO","M","POP","TOTAL","OC3","M","Y65-84","2011","109","","" +"RO","M","POP","TOTAL","OC3","M","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","N","Y15-29","2011","2617","","" +"RO","M","POP","TOTAL","OC3","N","Y30-49","2011","4717","","" +"RO","M","POP","TOTAL","OC3","N","Y50-64","2011","1560","","" +"RO","M","POP","TOTAL","OC3","N","Y65-84","2011","38","","" +"RO","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","O","Y15-29","2011","6882","","" +"RO","M","POP","TOTAL","OC3","O","Y30-49","2011","27912","","" +"RO","M","POP","TOTAL","OC3","O","Y50-64","2011","9001","","" +"RO","M","POP","TOTAL","OC3","O","Y65-84","2011","175","","" +"RO","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","P","Y15-29","2011","637","","" +"RO","M","POP","TOTAL","OC3","P","Y30-49","2011","1438","","" +"RO","M","POP","TOTAL","OC3","P","Y50-64","2011","1353","","" +"RO","M","POP","TOTAL","OC3","P","Y65-84","2011","17","","" +"RO","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","Q","Y15-29","2011","1928","","" +"RO","M","POP","TOTAL","OC3","Q","Y30-49","2011","6649","","" +"RO","M","POP","TOTAL","OC3","Q","Y50-64","2011","2435","","" +"RO","M","POP","TOTAL","OC3","Q","Y65-84","2011","31","","" +"RO","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","R","Y15-29","2011","3644","","" +"RO","M","POP","TOTAL","OC3","R","Y30-49","2011","3872","","" +"RO","M","POP","TOTAL","OC3","R","Y50-64","2011","1394","","" +"RO","M","POP","TOTAL","OC3","R","Y65-84","2011","36","","" +"RO","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","S","Y15-29","2011","1848","","" +"RO","M","POP","TOTAL","OC3","S","Y30-49","2011","4054","","" +"RO","M","POP","TOTAL","OC3","S","Y50-64","2011","1461","","" +"RO","M","POP","TOTAL","OC3","S","Y65-84","2011","107","","" +"RO","M","POP","TOTAL","OC3","S","Y_GE85","2011","6","","" +"RO","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","U","Y15-29","2011","30","","" +"RO","M","POP","TOTAL","OC3","U","Y30-49","2011","57","","" +"RO","M","POP","TOTAL","OC3","U","Y50-64","2011","14","","" +"RO","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","A","Y15-29","2011","248","","" +"RO","M","POP","TOTAL","OC4","A","Y30-49","2011","810","","" +"RO","M","POP","TOTAL","OC4","A","Y50-64","2011","399","","" +"RO","M","POP","TOTAL","OC4","A","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","B","Y15-29","2011","81","","" +"RO","M","POP","TOTAL","OC4","B","Y30-49","2011","405","","" +"RO","M","POP","TOTAL","OC4","B","Y50-64","2011","167","","" +"RO","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","C","Y15-29","2011","4403","","" +"RO","M","POP","TOTAL","OC4","C","Y30-49","2011","8885","","" +"RO","M","POP","TOTAL","OC4","C","Y50-64","2011","2874","","" +"RO","M","POP","TOTAL","OC4","C","Y65-84","2011","13","","" +"RO","M","POP","TOTAL","OC4","C","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","D","Y15-29","2011","174","","" +"RO","M","POP","TOTAL","OC4","D","Y30-49","2011","773","","" +"RO","M","POP","TOTAL","OC4","D","Y50-64","2011","419","","" +"RO","M","POP","TOTAL","OC4","D","Y65-84","2011","3","","" +"RO","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","E","Y15-29","2011","273","","" +"RO","M","POP","TOTAL","OC4","E","Y30-49","2011","782","","" +"RO","M","POP","TOTAL","OC4","E","Y50-64","2011","466","","" +"RO","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","F","Y15-29","2011","844","","" +"RO","M","POP","TOTAL","OC4","F","Y30-49","2011","2321","","" +"RO","M","POP","TOTAL","OC4","F","Y50-64","2011","835","","" +"RO","M","POP","TOTAL","OC4","F","Y65-84","2011","12","","" +"RO","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","G","Y15-29","2011","9410","","" +"RO","M","POP","TOTAL","OC4","G","Y30-49","2011","16708","","" +"RO","M","POP","TOTAL","OC4","G","Y50-64","2011","4068","","" +"RO","M","POP","TOTAL","OC4","G","Y65-84","2011","27","","" +"RO","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","H","Y15-29","2011","3669","","" +"RO","M","POP","TOTAL","OC4","H","Y30-49","2011","17735","","" +"RO","M","POP","TOTAL","OC4","H","Y50-64","2011","5385","","" +"RO","M","POP","TOTAL","OC4","H","Y65-84","2011","15","","" +"RO","M","POP","TOTAL","OC4","H","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","I","Y15-29","2011","1845","","" +"RO","M","POP","TOTAL","OC4","I","Y30-49","2011","3167","","" +"RO","M","POP","TOTAL","OC4","I","Y50-64","2011","1061","","" +"RO","M","POP","TOTAL","OC4","I","Y65-84","2011","26","","" +"RO","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","J","Y15-29","2011","2375","","" +"RO","M","POP","TOTAL","OC4","J","Y30-49","2011","2248","","" +"RO","M","POP","TOTAL","OC4","J","Y50-64","2011","463","","" +"RO","M","POP","TOTAL","OC4","J","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","K","Y15-29","2011","1025","","" +"RO","M","POP","TOTAL","OC4","K","Y30-49","2011","1364","","" +"RO","M","POP","TOTAL","OC4","K","Y50-64","2011","354","","" +"RO","M","POP","TOTAL","OC4","K","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","L","Y15-29","2011","104","","" +"RO","M","POP","TOTAL","OC4","L","Y30-49","2011","173","","" +"RO","M","POP","TOTAL","OC4","L","Y50-64","2011","69","","" +"RO","M","POP","TOTAL","OC4","L","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","M","Y15-29","2011","1054","","" +"RO","M","POP","TOTAL","OC4","M","Y30-49","2011","1292","","" +"RO","M","POP","TOTAL","OC4","M","Y50-64","2011","414","","" +"RO","M","POP","TOTAL","OC4","M","Y65-84","2011","9","","" +"RO","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","N","Y15-29","2011","1907","","" +"RO","M","POP","TOTAL","OC4","N","Y30-49","2011","2311","","" +"RO","M","POP","TOTAL","OC4","N","Y50-64","2011","428","","" +"RO","M","POP","TOTAL","OC4","N","Y65-84","2011","7","","" +"RO","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","O","Y15-29","2011","5510","","" +"RO","M","POP","TOTAL","OC4","O","Y30-49","2011","23862","","" +"RO","M","POP","TOTAL","OC4","O","Y50-64","2011","4314","","" +"RO","M","POP","TOTAL","OC4","O","Y65-84","2011","54","","" +"RO","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","P","Y15-29","2011","150","","" +"RO","M","POP","TOTAL","OC4","P","Y30-49","2011","554","","" +"RO","M","POP","TOTAL","OC4","P","Y50-64","2011","371","","" +"RO","M","POP","TOTAL","OC4","P","Y65-84","2011","7","","" +"RO","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","Q","Y15-29","2011","248","","" +"RO","M","POP","TOTAL","OC4","Q","Y30-49","2011","700","","" +"RO","M","POP","TOTAL","OC4","Q","Y50-64","2011","418","","" +"RO","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","R","Y15-29","2011","1265","","" +"RO","M","POP","TOTAL","OC4","R","Y30-49","2011","1263","","" +"RO","M","POP","TOTAL","OC4","R","Y50-64","2011","395","","" +"RO","M","POP","TOTAL","OC4","R","Y65-84","2011","6","","" +"RO","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","S","Y15-29","2011","422","","" +"RO","M","POP","TOTAL","OC4","S","Y30-49","2011","775","","" +"RO","M","POP","TOTAL","OC4","S","Y50-64","2011","336","","" +"RO","M","POP","TOTAL","OC4","S","Y65-84","2011","16","","" +"RO","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","U","Y15-29","2011","47","","" +"RO","M","POP","TOTAL","OC4","U","Y30-49","2011","89","","" +"RO","M","POP","TOTAL","OC4","U","Y50-64","2011","31","","" +"RO","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","A","Y15-29","2011","571","","" +"RO","M","POP","TOTAL","OC5","A","Y30-49","2011","2801","","" +"RO","M","POP","TOTAL","OC5","A","Y50-64","2011","1395","","" +"RO","M","POP","TOTAL","OC5","A","Y65-84","2011","30","","" +"RO","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","B","Y15-29","2011","111","","" +"RO","M","POP","TOTAL","OC5","B","Y30-49","2011","580","","" +"RO","M","POP","TOTAL","OC5","B","Y50-64","2011","262","","" +"RO","M","POP","TOTAL","OC5","B","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","C","Y15-29","2011","3546","","" +"RO","M","POP","TOTAL","OC5","C","Y30-49","2011","11327","","" +"RO","M","POP","TOTAL","OC5","C","Y50-64","2011","4744","","" +"RO","M","POP","TOTAL","OC5","C","Y65-84","2011","69","","" +"RO","M","POP","TOTAL","OC5","C","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","D","Y15-29","2011","91","","" +"RO","M","POP","TOTAL","OC5","D","Y30-49","2011","579","","" +"RO","M","POP","TOTAL","OC5","D","Y50-64","2011","227","","" +"RO","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","E","Y15-29","2011","215","","" +"RO","M","POP","TOTAL","OC5","E","Y30-49","2011","713","","" +"RO","M","POP","TOTAL","OC5","E","Y50-64","2011","344","","" +"RO","M","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","F","Y15-29","2011","1327","","" +"RO","M","POP","TOTAL","OC5","F","Y30-49","2011","5953","","" +"RO","M","POP","TOTAL","OC5","F","Y50-64","2011","2229","","" +"RO","M","POP","TOTAL","OC5","F","Y65-84","2011","28","","" +"RO","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","G","Y15-29","2011","43678","","" +"RO","M","POP","TOTAL","OC5","G","Y30-49","2011","93509","","" +"RO","M","POP","TOTAL","OC5","G","Y50-64","2011","28231","","" +"RO","M","POP","TOTAL","OC5","G","Y65-84","2011","403","","" +"RO","M","POP","TOTAL","OC5","G","Y_GE85","2011","3","","" +"RO","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","H","Y15-29","2011","1364","","" +"RO","M","POP","TOTAL","OC5","H","Y30-49","2011","5669","","" +"RO","M","POP","TOTAL","OC5","H","Y50-64","2011","1517","","" +"RO","M","POP","TOTAL","OC5","H","Y65-84","2011","12","","" +"RO","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","I","Y15-29","2011","21198","","" +"RO","M","POP","TOTAL","OC5","I","Y30-49","2011","16742","","" +"RO","M","POP","TOTAL","OC5","I","Y50-64","2011","2945","","" +"RO","M","POP","TOTAL","OC5","I","Y65-84","2011","21","","" +"RO","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","J","Y15-29","2011","664","","" +"RO","M","POP","TOTAL","OC5","J","Y30-49","2011","1237","","" +"RO","M","POP","TOTAL","OC5","J","Y50-64","2011","418","","" +"RO","M","POP","TOTAL","OC5","J","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","K","Y15-29","2011","385","","" +"RO","M","POP","TOTAL","OC5","K","Y30-49","2011","1068","","" +"RO","M","POP","TOTAL","OC5","K","Y50-64","2011","471","","" +"RO","M","POP","TOTAL","OC5","K","Y65-84","2011","9","","" +"RO","M","POP","TOTAL","OC5","K","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","L","Y15-29","2011","156","","" +"RO","M","POP","TOTAL","OC5","L","Y30-49","2011","629","","" +"RO","M","POP","TOTAL","OC5","L","Y50-64","2011","381","","" +"RO","M","POP","TOTAL","OC5","L","Y65-84","2011","32","","" +"RO","M","POP","TOTAL","OC5","L","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","M","Y15-29","2011","607","","" +"RO","M","POP","TOTAL","OC5","M","Y30-49","2011","1756","","" +"RO","M","POP","TOTAL","OC5","M","Y50-64","2011","750","","" +"RO","M","POP","TOTAL","OC5","M","Y65-84","2011","14","","" +"RO","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","N","Y15-29","2011","28880","","" +"RO","M","POP","TOTAL","OC5","N","Y30-49","2011","73028","","" +"RO","M","POP","TOTAL","OC5","N","Y50-64","2011","25231","","" +"RO","M","POP","TOTAL","OC5","N","Y65-84","2011","123","","" +"RO","M","POP","TOTAL","OC5","N","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","O","Y15-29","2011","15010","","" +"RO","M","POP","TOTAL","OC5","O","Y30-49","2011","47332","","" +"RO","M","POP","TOTAL","OC5","O","Y50-64","2011","5240","","" +"RO","M","POP","TOTAL","OC5","O","Y65-84","2011","23","","" +"RO","M","POP","TOTAL","OC5","O","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","P","Y15-29","2011","591","","" +"RO","M","POP","TOTAL","OC5","P","Y30-49","2011","5608","","" +"RO","M","POP","TOTAL","OC5","P","Y50-64","2011","4450","","" +"RO","M","POP","TOTAL","OC5","P","Y65-84","2011","61","","" +"RO","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","Q","Y15-29","2011","1283","","" +"RO","M","POP","TOTAL","OC5","Q","Y30-49","2011","7443","","" +"RO","M","POP","TOTAL","OC5","Q","Y50-64","2011","4024","","" +"RO","M","POP","TOTAL","OC5","Q","Y65-84","2011","41","","" +"RO","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","R","Y15-29","2011","1146","","" +"RO","M","POP","TOTAL","OC5","R","Y30-49","2011","1924","","" +"RO","M","POP","TOTAL","OC5","R","Y50-64","2011","872","","" +"RO","M","POP","TOTAL","OC5","R","Y65-84","2011","12","","" +"RO","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","S","Y15-29","2011","2311","","" +"RO","M","POP","TOTAL","OC5","S","Y30-49","2011","5121","","" +"RO","M","POP","TOTAL","OC5","S","Y50-64","2011","2171","","" +"RO","M","POP","TOTAL","OC5","S","Y65-84","2011","146","","" +"RO","M","POP","TOTAL","OC5","S","Y_GE85","2011","3","","" +"RO","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","T","Y15-29","2011","57","","" +"RO","M","POP","TOTAL","OC5","T","Y30-49","2011","154","","" +"RO","M","POP","TOTAL","OC5","T","Y50-64","2011","71","","" +"RO","M","POP","TOTAL","OC5","T","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","U","Y15-29","2011","38","","" +"RO","M","POP","TOTAL","OC5","U","Y30-49","2011","71","","" +"RO","M","POP","TOTAL","OC5","U","Y50-64","2011","27","","" +"RO","M","POP","TOTAL","OC5","U","Y65-84","2011","3","","" +"RO","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","A","Y15-29","2011","108487","","" +"RO","M","POP","TOTAL","OC6","A","Y30-49","2011","298561","","" +"RO","M","POP","TOTAL","OC6","A","Y50-64","2011","293483","","" +"RO","M","POP","TOTAL","OC6","A","Y65-84","2011","334290","","" +"RO","M","POP","TOTAL","OC6","A","Y_GE85","2011","11394","","" +"RO","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","B","Y30-49","2011",":","c","" +"RO","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","C","Y15-29","2011","527","","" +"RO","M","POP","TOTAL","OC6","C","Y30-49","2011","1570","","" +"RO","M","POP","TOTAL","OC6","C","Y50-64","2011","444","","" +"RO","M","POP","TOTAL","OC6","C","Y65-84","2011","21","","" +"RO","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC6","D","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","E","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","E","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC6","E","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","F","Y15-29","2011","68","","" +"RO","M","POP","TOTAL","OC6","F","Y30-49","2011","157","","" +"RO","M","POP","TOTAL","OC6","F","Y50-64","2011","70","","" +"RO","M","POP","TOTAL","OC6","F","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","G","Y15-29","2011",":","c","" +"RO","M","POP","TOTAL","OC6","G","Y30-49","2011",":","c","" +"RO","M","POP","TOTAL","OC6","G","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","H","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","H","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC6","H","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","I","Y15-29","2011","10","","" +"RO","M","POP","TOTAL","OC6","I","Y30-49","2011","20","","" +"RO","M","POP","TOTAL","OC6","I","Y50-64","2011","7","","" +"RO","M","POP","TOTAL","OC6","I","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","J","Y15-29","2011","20","","" +"RO","M","POP","TOTAL","OC6","J","Y30-49","2011","48","","" +"RO","M","POP","TOTAL","OC6","J","Y50-64","2011","27","","" +"RO","M","POP","TOTAL","OC6","J","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC6","K","Y50-64","2011",":","c","" +"RO","M","POP","TOTAL","OC6","K","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","L","Y30-49","2011",":","c","" +"RO","M","POP","TOTAL","OC6","L","Y50-64","2011",":","c","" +"RO","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","M","Y15-29","2011","18","","" +"RO","M","POP","TOTAL","OC6","M","Y30-49","2011","81","","" +"RO","M","POP","TOTAL","OC6","M","Y50-64","2011","31","","" +"RO","M","POP","TOTAL","OC6","M","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","N","Y15-29","2011","234","","" +"RO","M","POP","TOTAL","OC6","N","Y30-49","2011","585","","" +"RO","M","POP","TOTAL","OC6","N","Y50-64","2011","218","","" +"RO","M","POP","TOTAL","OC6","N","Y65-84","2011","12","","" +"RO","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","O","Y15-29","2011","54","","" +"RO","M","POP","TOTAL","OC6","O","Y30-49","2011","289","","" +"RO","M","POP","TOTAL","OC6","O","Y50-64","2011","198","","" +"RO","M","POP","TOTAL","OC6","O","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC6","O","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","P","Y15-29","2011","11","","" +"RO","M","POP","TOTAL","OC6","P","Y30-49","2011","30","","" +"RO","M","POP","TOTAL","OC6","P","Y50-64","2011","30","","" +"RO","M","POP","TOTAL","OC6","P","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC6","P","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","Q","Y15-29","2011","11","","" +"RO","M","POP","TOTAL","OC6","Q","Y30-49","2011","13","","" +"RO","M","POP","TOTAL","OC6","Q","Y50-64","2011","10","","" +"RO","M","POP","TOTAL","OC6","Q","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","R","Y15-29","2011","52","","" +"RO","M","POP","TOTAL","OC6","R","Y30-49","2011","163","","" +"RO","M","POP","TOTAL","OC6","R","Y50-64","2011","71","","" +"RO","M","POP","TOTAL","OC6","R","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","S","Y15-29","2011","88","","" +"RO","M","POP","TOTAL","OC6","S","Y30-49","2011","312","","" +"RO","M","POP","TOTAL","OC6","S","Y50-64","2011","164","","" +"RO","M","POP","TOTAL","OC6","S","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","T","Y15-29","2011","3254","","" +"RO","M","POP","TOTAL","OC6","T","Y30-49","2011","8176","","" +"RO","M","POP","TOTAL","OC6","T","Y50-64","2011","3670","","" +"RO","M","POP","TOTAL","OC6","T","Y65-84","2011","477","","" +"RO","M","POP","TOTAL","OC6","T","Y_GE85","2011","15","","" +"RO","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","A","Y15-29","2011","2933","","" +"RO","M","POP","TOTAL","OC7","A","Y30-49","2011","15580","","" +"RO","M","POP","TOTAL","OC7","A","Y50-64","2011","6527","","" +"RO","M","POP","TOTAL","OC7","A","Y65-84","2011","52","","" +"RO","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","B","Y15-29","2011","1124","","" +"RO","M","POP","TOTAL","OC7","B","Y30-49","2011","14033","","" +"RO","M","POP","TOTAL","OC7","B","Y50-64","2011","4010","","" +"RO","M","POP","TOTAL","OC7","B","Y65-84","2011","3","","" +"RO","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","C","Y15-29","2011","77897","","" +"RO","M","POP","TOTAL","OC7","C","Y30-49","2011","232867","","" +"RO","M","POP","TOTAL","OC7","C","Y50-64","2011","106910","","" +"RO","M","POP","TOTAL","OC7","C","Y65-84","2011","329","","" +"RO","M","POP","TOTAL","OC7","C","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","D","Y15-29","2011","3715","","" +"RO","M","POP","TOTAL","OC7","D","Y30-49","2011","28630","","" +"RO","M","POP","TOTAL","OC7","D","Y50-64","2011","15464","","" +"RO","M","POP","TOTAL","OC7","D","Y65-84","2011","12","","" +"RO","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","E","Y15-29","2011","1078","","" +"RO","M","POP","TOTAL","OC7","E","Y30-49","2011","9622","","" +"RO","M","POP","TOTAL","OC7","E","Y50-64","2011","6892","","" +"RO","M","POP","TOTAL","OC7","E","Y65-84","2011","16","","" +"RO","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","F","Y15-29","2011","77463","","" +"RO","M","POP","TOTAL","OC7","F","Y30-49","2011","206345","","" +"RO","M","POP","TOTAL","OC7","F","Y50-64","2011","61938","","" +"RO","M","POP","TOTAL","OC7","F","Y65-84","2011","387","","" +"RO","M","POP","TOTAL","OC7","F","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","G","Y15-29","2011","14896","","" +"RO","M","POP","TOTAL","OC7","G","Y30-49","2011","34432","","" +"RO","M","POP","TOTAL","OC7","G","Y50-64","2011","12314","","" +"RO","M","POP","TOTAL","OC7","G","Y65-84","2011","52","","" +"RO","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","H","Y15-29","2011","3092","","" +"RO","M","POP","TOTAL","OC7","H","Y30-49","2011","20842","","" +"RO","M","POP","TOTAL","OC7","H","Y50-64","2011","10193","","" +"RO","M","POP","TOTAL","OC7","H","Y65-84","2011","21","","" +"RO","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","I","Y15-29","2011","663","","" +"RO","M","POP","TOTAL","OC7","I","Y30-49","2011","1695","","" +"RO","M","POP","TOTAL","OC7","I","Y50-64","2011","730","","" +"RO","M","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","J","Y15-29","2011","1882","","" +"RO","M","POP","TOTAL","OC7","J","Y30-49","2011","5138","","" +"RO","M","POP","TOTAL","OC7","J","Y50-64","2011","1662","","" +"RO","M","POP","TOTAL","OC7","J","Y65-84","2011","6","","" +"RO","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","K","Y15-29","2011","35","","" +"RO","M","POP","TOTAL","OC7","K","Y30-49","2011","183","","" +"RO","M","POP","TOTAL","OC7","K","Y50-64","2011","99","","" +"RO","M","POP","TOTAL","OC7","K","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","L","Y15-29","2011","74","","" +"RO","M","POP","TOTAL","OC7","L","Y30-49","2011","393","","" +"RO","M","POP","TOTAL","OC7","L","Y50-64","2011","256","","" +"RO","M","POP","TOTAL","OC7","L","Y65-84","2011","3","","" +"RO","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","M","Y15-29","2011","851","","" +"RO","M","POP","TOTAL","OC7","M","Y30-49","2011","2591","","" +"RO","M","POP","TOTAL","OC7","M","Y50-64","2011","1535","","" +"RO","M","POP","TOTAL","OC7","M","Y65-84","2011","13","","" +"RO","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","N","Y15-29","2011","1354","","" +"RO","M","POP","TOTAL","OC7","N","Y30-49","2011","3656","","" +"RO","M","POP","TOTAL","OC7","N","Y50-64","2011","1692","","" +"RO","M","POP","TOTAL","OC7","N","Y65-84","2011","3","","" +"RO","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","O","Y15-29","2011","829","","" +"RO","M","POP","TOTAL","OC7","O","Y30-49","2011","4478","","" +"RO","M","POP","TOTAL","OC7","O","Y50-64","2011","3000","","" +"RO","M","POP","TOTAL","OC7","O","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","P","Y15-29","2011","131","","" +"RO","M","POP","TOTAL","OC7","P","Y30-49","2011","2263","","" +"RO","M","POP","TOTAL","OC7","P","Y50-64","2011","3090","","" +"RO","M","POP","TOTAL","OC7","P","Y65-84","2011","9","","" +"RO","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","Q","Y15-29","2011","242","","" +"RO","M","POP","TOTAL","OC7","Q","Y30-49","2011","2248","","" +"RO","M","POP","TOTAL","OC7","Q","Y50-64","2011","2677","","" +"RO","M","POP","TOTAL","OC7","Q","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","R","Y15-29","2011","367","","" +"RO","M","POP","TOTAL","OC7","R","Y30-49","2011","1234","","" +"RO","M","POP","TOTAL","OC7","R","Y50-64","2011","822","","" +"RO","M","POP","TOTAL","OC7","R","Y65-84","2011","8","","" +"RO","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","S","Y15-29","2011","2121","","" +"RO","M","POP","TOTAL","OC7","S","Y30-49","2011","7382","","" +"RO","M","POP","TOTAL","OC7","S","Y50-64","2011","3678","","" +"RO","M","POP","TOTAL","OC7","S","Y65-84","2011","54","","" +"RO","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","U","Y15-29","2011","44","","" +"RO","M","POP","TOTAL","OC7","U","Y30-49","2011","121","","" +"RO","M","POP","TOTAL","OC7","U","Y50-64","2011","75","","" +"RO","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","A","Y15-29","2011","3293","","" +"RO","M","POP","TOTAL","OC8","A","Y30-49","2011","15702","","" +"RO","M","POP","TOTAL","OC8","A","Y50-64","2011","5337","","" +"RO","M","POP","TOTAL","OC8","A","Y65-84","2011","84","","" +"RO","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","B","Y15-29","2011","1329","","" +"RO","M","POP","TOTAL","OC8","B","Y30-49","2011","19081","","" +"RO","M","POP","TOTAL","OC8","B","Y50-64","2011","4177","","" +"RO","M","POP","TOTAL","OC8","B","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","C","Y15-29","2011","44673","","" +"RO","M","POP","TOTAL","OC8","C","Y30-49","2011","109665","","" +"RO","M","POP","TOTAL","OC8","C","Y50-64","2011","31887","","" +"RO","M","POP","TOTAL","OC8","C","Y65-84","2011","103","","" +"RO","M","POP","TOTAL","OC8","C","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","D","Y15-29","2011","354","","" +"RO","M","POP","TOTAL","OC8","D","Y30-49","2011","4372","","" +"RO","M","POP","TOTAL","OC8","D","Y50-64","2011","2302","","" +"RO","M","POP","TOTAL","OC8","D","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC8","D","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","E","Y15-29","2011","885","","" +"RO","M","POP","TOTAL","OC8","E","Y30-49","2011","5051","","" +"RO","M","POP","TOTAL","OC8","E","Y50-64","2011","2496","","" +"RO","M","POP","TOTAL","OC8","E","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","F","Y15-29","2011","5610","","" +"RO","M","POP","TOTAL","OC8","F","Y30-49","2011","22174","","" +"RO","M","POP","TOTAL","OC8","F","Y50-64","2011","9171","","" +"RO","M","POP","TOTAL","OC8","F","Y65-84","2011","36","","" +"RO","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","G","Y15-29","2011","11112","","" +"RO","M","POP","TOTAL","OC8","G","Y30-49","2011","30193","","" +"RO","M","POP","TOTAL","OC8","G","Y50-64","2011","7022","","" +"RO","M","POP","TOTAL","OC8","G","Y65-84","2011","36","","" +"RO","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","H","Y15-29","2011","33043","","" +"RO","M","POP","TOTAL","OC8","H","Y30-49","2011","139812","","" +"RO","M","POP","TOTAL","OC8","H","Y50-64","2011","38648","","" +"RO","M","POP","TOTAL","OC8","H","Y65-84","2011","219","","" +"RO","M","POP","TOTAL","OC8","H","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","I","Y15-29","2011","894","","" +"RO","M","POP","TOTAL","OC8","I","Y30-49","2011","1511","","" +"RO","M","POP","TOTAL","OC8","I","Y50-64","2011","490","","" +"RO","M","POP","TOTAL","OC8","I","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","J","Y15-29","2011","526","","" +"RO","M","POP","TOTAL","OC8","J","Y30-49","2011","1498","","" +"RO","M","POP","TOTAL","OC8","J","Y50-64","2011","484","","" +"RO","M","POP","TOTAL","OC8","J","Y65-84","2011","40","","" +"RO","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","K","Y15-29","2011","71","","" +"RO","M","POP","TOTAL","OC8","K","Y30-49","2011","524","","" +"RO","M","POP","TOTAL","OC8","K","Y50-64","2011","203","","" +"RO","M","POP","TOTAL","OC8","K","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","L","Y15-29","2011","57","","" +"RO","M","POP","TOTAL","OC8","L","Y30-49","2011","277","","" +"RO","M","POP","TOTAL","OC8","L","Y50-64","2011","113","","" +"RO","M","POP","TOTAL","OC8","L","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","M","Y15-29","2011","465","","" +"RO","M","POP","TOTAL","OC8","M","Y30-49","2011","1986","","" +"RO","M","POP","TOTAL","OC8","M","Y50-64","2011","790","","" +"RO","M","POP","TOTAL","OC8","M","Y65-84","2011","7","","" +"RO","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","N","Y15-29","2011","1471","","" +"RO","M","POP","TOTAL","OC8","N","Y30-49","2011","3904","","" +"RO","M","POP","TOTAL","OC8","N","Y50-64","2011","1271","","" +"RO","M","POP","TOTAL","OC8","N","Y65-84","2011","4","","" +"RO","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","O","Y15-29","2011","2300","","" +"RO","M","POP","TOTAL","OC8","O","Y30-49","2011","11520","","" +"RO","M","POP","TOTAL","OC8","O","Y50-64","2011","5057","","" +"RO","M","POP","TOTAL","OC8","O","Y65-84","2011","17","","" +"RO","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","P","Y15-29","2011","223","","" +"RO","M","POP","TOTAL","OC8","P","Y30-49","2011","2749","","" +"RO","M","POP","TOTAL","OC8","P","Y50-64","2011","1900","","" +"RO","M","POP","TOTAL","OC8","P","Y65-84","2011","16","","" +"RO","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","Q","Y15-29","2011","431","","" +"RO","M","POP","TOTAL","OC8","Q","Y30-49","2011","4990","","" +"RO","M","POP","TOTAL","OC8","Q","Y50-64","2011","3054","","" +"RO","M","POP","TOTAL","OC8","Q","Y65-84","2011","9","","" +"RO","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","R","Y15-29","2011","179","","" +"RO","M","POP","TOTAL","OC8","R","Y30-49","2011","666","","" +"RO","M","POP","TOTAL","OC8","R","Y50-64","2011","325","","" +"RO","M","POP","TOTAL","OC8","R","Y65-84","2011","3","","" +"RO","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","S","Y15-29","2011","847","","" +"RO","M","POP","TOTAL","OC8","S","Y30-49","2011","2617","","" +"RO","M","POP","TOTAL","OC8","S","Y50-64","2011","905","","" +"RO","M","POP","TOTAL","OC8","S","Y65-84","2011","18","","" +"RO","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC8","T","Y30-49","2011",":","c","" +"RO","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","U","Y15-29","2011","123","","" +"RO","M","POP","TOTAL","OC8","U","Y30-49","2011","346","","" +"RO","M","POP","TOTAL","OC8","U","Y50-64","2011","138","","" +"RO","M","POP","TOTAL","OC8","U","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","A","Y15-29","2011","54929","","" +"RO","M","POP","TOTAL","OC9","A","Y30-49","2011","93013","","" +"RO","M","POP","TOTAL","OC9","A","Y50-64","2011","43792","","" +"RO","M","POP","TOTAL","OC9","A","Y65-84","2011","21889","","" +"RO","M","POP","TOTAL","OC9","A","Y_GE85","2011","1150","","" +"RO","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","B","Y15-29","2011","588","","" +"RO","M","POP","TOTAL","OC9","B","Y30-49","2011","2117","","" +"RO","M","POP","TOTAL","OC9","B","Y50-64","2011","626","","" +"RO","M","POP","TOTAL","OC9","B","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","C","Y15-29","2011","23179","","" +"RO","M","POP","TOTAL","OC9","C","Y30-49","2011","38210","","" +"RO","M","POP","TOTAL","OC9","C","Y50-64","2011","11178","","" +"RO","M","POP","TOTAL","OC9","C","Y65-84","2011","81","","" +"RO","M","POP","TOTAL","OC9","C","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","D","Y15-29","2011","334","","" +"RO","M","POP","TOTAL","OC9","D","Y30-49","2011","1366","","" +"RO","M","POP","TOTAL","OC9","D","Y50-64","2011","603","","" +"RO","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","E","Y15-29","2011","3671","","" +"RO","M","POP","TOTAL","OC9","E","Y30-49","2011","9588","","" +"RO","M","POP","TOTAL","OC9","E","Y50-64","2011","3408","","" +"RO","M","POP","TOTAL","OC9","E","Y65-84","2011","17","","" +"RO","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","F","Y15-29","2011","31969","","" +"RO","M","POP","TOTAL","OC9","F","Y30-49","2011","55097","","" +"RO","M","POP","TOTAL","OC9","F","Y50-64","2011","13436","","" +"RO","M","POP","TOTAL","OC9","F","Y65-84","2011","148","","" +"RO","M","POP","TOTAL","OC9","F","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","G","Y15-29","2011","17010","","" +"RO","M","POP","TOTAL","OC9","G","Y30-49","2011","22331","","" +"RO","M","POP","TOTAL","OC9","G","Y50-64","2011","5984","","" +"RO","M","POP","TOTAL","OC9","G","Y65-84","2011","68","","" +"RO","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","H","Y15-29","2011","3559","","" +"RO","M","POP","TOTAL","OC9","H","Y30-49","2011","6851","","" +"RO","M","POP","TOTAL","OC9","H","Y50-64","2011","2175","","" +"RO","M","POP","TOTAL","OC9","H","Y65-84","2011","28","","" +"RO","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","I","Y15-29","2011","1942","","" +"RO","M","POP","TOTAL","OC9","I","Y30-49","2011","1959","","" +"RO","M","POP","TOTAL","OC9","I","Y50-64","2011","629","","" +"RO","M","POP","TOTAL","OC9","I","Y65-84","2011","13","","" +"RO","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","J","Y15-29","2011","581","","" +"RO","M","POP","TOTAL","OC9","J","Y30-49","2011","729","","" +"RO","M","POP","TOTAL","OC9","J","Y50-64","2011","260","","" +"RO","M","POP","TOTAL","OC9","J","Y65-84","2011","8","","" +"RO","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","K","Y15-29","2011","62","","" +"RO","M","POP","TOTAL","OC9","K","Y30-49","2011","209","","" +"RO","M","POP","TOTAL","OC9","K","Y50-64","2011","86","","" +"RO","M","POP","TOTAL","OC9","K","Y65-84","2011","3","","" +"RO","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","L","Y15-29","2011","137","","" +"RO","M","POP","TOTAL","OC9","L","Y30-49","2011","320","","" +"RO","M","POP","TOTAL","OC9","L","Y50-64","2011","182","","" +"RO","M","POP","TOTAL","OC9","L","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","M","Y15-29","2011","787","","" +"RO","M","POP","TOTAL","OC9","M","Y30-49","2011","1265","","" +"RO","M","POP","TOTAL","OC9","M","Y50-64","2011","521","","" +"RO","M","POP","TOTAL","OC9","M","Y65-84","2011","18","","" +"RO","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","N","Y15-29","2011","5589","","" +"RO","M","POP","TOTAL","OC9","N","Y30-49","2011","12569","","" +"RO","M","POP","TOTAL","OC9","N","Y50-64","2011","5126","","" +"RO","M","POP","TOTAL","OC9","N","Y65-84","2011","32","","" +"RO","M","POP","TOTAL","OC9","N","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","O","Y15-29","2011","2156","","" +"RO","M","POP","TOTAL","OC9","O","Y30-49","2011","8923","","" +"RO","M","POP","TOTAL","OC9","O","Y50-64","2011","4959","","" +"RO","M","POP","TOTAL","OC9","O","Y65-84","2011","36","","" +"RO","M","POP","TOTAL","OC9","O","Y_GE85","2011",":","c","" +"RO","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","P","Y15-29","2011","281","","" +"RO","M","POP","TOTAL","OC9","P","Y30-49","2011","2731","","" +"RO","M","POP","TOTAL","OC9","P","Y50-64","2011","2528","","" +"RO","M","POP","TOTAL","OC9","P","Y65-84","2011","14","","" +"RO","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","Q","Y15-29","2011","194","","" +"RO","M","POP","TOTAL","OC9","Q","Y30-49","2011","1397","","" +"RO","M","POP","TOTAL","OC9","Q","Y50-64","2011","887","","" +"RO","M","POP","TOTAL","OC9","Q","Y65-84","2011","5","","" +"RO","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","R","Y15-29","2011","561","","" +"RO","M","POP","TOTAL","OC9","R","Y30-49","2011","1110","","" +"RO","M","POP","TOTAL","OC9","R","Y50-64","2011","540","","" +"RO","M","POP","TOTAL","OC9","R","Y65-84","2011","7","","" +"RO","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","S","Y15-29","2011","2953","","" +"RO","M","POP","TOTAL","OC9","S","Y30-49","2011","5436","","" +"RO","M","POP","TOTAL","OC9","S","Y50-64","2011","1967","","" +"RO","M","POP","TOTAL","OC9","S","Y65-84","2011","67","","" +"RO","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","T","Y15-29","2011","2257","","" +"RO","M","POP","TOTAL","OC9","T","Y30-49","2011","3979","","" +"RO","M","POP","TOTAL","OC9","T","Y50-64","2011","1580","","" +"RO","M","POP","TOTAL","OC9","T","Y65-84","2011","202","","" +"RO","M","POP","TOTAL","OC9","T","Y_GE85","2011","7","","" +"RO","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","U","Y15-29","2011","17","","" +"RO","M","POP","TOTAL","OC9","U","Y30-49","2011","51","","" +"RO","M","POP","TOTAL","OC9","U","Y50-64","2011","63","","" +"RO","M","POP","TOTAL","OC9","U","Y65-84","2011",":","c","" +"RO","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"RO","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"RO","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"RO","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"RO","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"RO","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"RO","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","NAP","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","NAP","NAP","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","NAP","NAP","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","NAP","NAP","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","","" +"SE","F","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","","" +"SE","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC0","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC0","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC0","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC0","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC0","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","B","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","B","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","K","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","K","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC1","U","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","U","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC1","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC1","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC1","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC1","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","B","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","E","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","K","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","K","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC2","U","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","U","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","U","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC2","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC2","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC2","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC2","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","B","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","E","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","K","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","K","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC3","U","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","U","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","U","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC3","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC3","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC3","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC3","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","B","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","B","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","E","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","K","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","K","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC4","U","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","U","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","U","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC4","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC4","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC4","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC4","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC5","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","E","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","K","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","K","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","T","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","T","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC5","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC5","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC5","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC5","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC6","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","D","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC6","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC6","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC6","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC6","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC6","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC6","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","B","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","B","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","E","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","K","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC7","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC7","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC7","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC7","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC7","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","B","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","E","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","K","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC8","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","K","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC8","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC8","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC8","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC8","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","B","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","B","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","E","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","K","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","K","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","OC9","U","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","U","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","OC9","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","OC9","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","OC9","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","OC9","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","A","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","A","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","A","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","A","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","B","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","B","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","B","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","B","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","C","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","C","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","C","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","C","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","D","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","D","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","D","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","D","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","E","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","E","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","E","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","E","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","F","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","F","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","F","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","F","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","G","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","G","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","G","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","G","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","H","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","H","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","H","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","H","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","I","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","I","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","I","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","I","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","J","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","J","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","J","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","J","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","K","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","K","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","K","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","K","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","L","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","L","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","L","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","L","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","M","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","M","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","M","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","M","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","N","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","N","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","N","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","N","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"SE","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"SE","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"SE","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","O","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","O","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","O","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","O","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","P","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","P","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","P","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","P","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","Q","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","Q","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","Q","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","Q","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","R","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","R","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","R","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","R","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","S","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","S","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","S","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","S","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","T","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","T","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","T","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"SE","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","U","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","U","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","U","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","U","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"SE","F","POP","TOTAL","UNK","UNK","Y15-29","2011",":","","" +"SE","F","POP","TOTAL","UNK","UNK","Y30-49","2011",":","","" +"SE","F","POP","TOTAL","UNK","UNK","Y50-64","2011",":","","" +"SE","F","POP","TOTAL","UNK","UNK","Y65-84","2011",":","","" +"SE","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"SE","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","NAP","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","NAP","NAP","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","NAP","NAP","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","NAP","NAP","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","NAP","NAP","Y_GE85","2011",":","","" +"SE","M","POP","TOTAL","NAP","NAP","Y_LT15","2011",":","","" +"SE","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC0","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC0","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC0","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC0","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC0","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC0","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC0","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","B","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC1","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC1","U","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","U","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC1","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC1","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC1","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC1","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","B","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC2","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC2","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC2","U","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","U","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","U","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC2","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC2","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC2","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC2","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","B","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC3","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC3","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC3","U","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC3","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC3","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC3","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC3","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","B","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC4","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC4","U","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","U","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC4","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC4","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC4","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC4","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","B","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC5","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC5","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC5","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC5","U","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC5","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC5","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC5","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC5","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC6","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC6","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC6","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC6","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC6","U","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC6","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC6","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC6","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC6","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","B","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC7","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC7","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC7","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC7","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC7","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","B","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC8","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC8","U","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","U","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC8","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC8","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC8","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC8","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","B","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC9","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC9","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","OC9","U","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","OC9","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","OC9","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","OC9","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","OC9","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","A","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","A","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","A","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","A","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","B","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","B","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","B","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","B","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","C","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","C","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","C","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","C","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","D","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","D","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","D","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","D","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","E","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","E","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","E","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","E","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","F","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","F","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","F","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","F","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","G","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","G","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","G","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","G","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","H","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","H","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","H","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","H","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","I","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","I","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","I","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","I","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","J","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","J","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","J","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","J","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","K","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","K","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","K","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","K","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","L","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","L","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","L","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","L","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","M","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","M","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","M","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","M","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","N","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","N","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","N","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","N","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","O","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","O","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","O","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","O","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","P","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","P","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","P","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","P","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","Q","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","Q","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","Q","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","Q","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","R","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","R","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","R","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","R","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","S","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","S","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","S","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","S","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"SE","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"SE","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"SE","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"SE","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","U","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","U","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","U","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","U","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"SE","M","POP","TOTAL","UNK","UNK","Y15-29","2011",":","","" +"SE","M","POP","TOTAL","UNK","UNK","Y30-49","2011",":","","" +"SE","M","POP","TOTAL","UNK","UNK","Y50-64","2011",":","","" +"SE","M","POP","TOTAL","UNK","UNK","Y65-84","2011",":","","" +"SE","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"SE","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","NAP","Y15-29","2011","116445","","" +"SI","F","POP","TOTAL","NAP","NAP","Y30-49","2011","31268","","" +"SI","F","POP","TOTAL","NAP","NAP","Y50-64","2011","124752","","" +"SI","F","POP","TOTAL","NAP","NAP","Y65-84","2011","178275","","" +"SI","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","26163","","" +"SI","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","141151","","" +"SI","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","F","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","G","Y15-29","2011","3","","" +"SI","F","POP","TOTAL","OC0","G","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","H","Y30-49","2011","2","","" +"SI","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","J","Y50-64","2011","1","","" +"SI","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","M","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","O","Y15-29","2011","307","","" +"SI","F","POP","TOTAL","OC0","O","Y30-49","2011","608","","" +"SI","F","POP","TOTAL","OC0","O","Y50-64","2011","46","","" +"SI","F","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","S","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","A","Y15-29","2011","9","","" +"SI","F","POP","TOTAL","OC1","A","Y30-49","2011","49","","" +"SI","F","POP","TOTAL","OC1","A","Y50-64","2011","18","","" +"SI","F","POP","TOTAL","OC1","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","B","Y15-29","2011","2","","" +"SI","F","POP","TOTAL","OC1","B","Y30-49","2011","15","","" +"SI","F","POP","TOTAL","OC1","B","Y50-64","2011","5","","" +"SI","F","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","C","Y15-29","2011","129","","" +"SI","F","POP","TOTAL","OC1","C","Y30-49","2011","1415","","" +"SI","F","POP","TOTAL","OC1","C","Y50-64","2011","569","","" +"SI","F","POP","TOTAL","OC1","C","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","D","Y15-29","2011","3","","" +"SI","F","POP","TOTAL","OC1","D","Y30-49","2011","58","","" +"SI","F","POP","TOTAL","OC1","D","Y50-64","2011","18","","" +"SI","F","POP","TOTAL","OC1","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","E","Y15-29","2011","3","","" +"SI","F","POP","TOTAL","OC1","E","Y30-49","2011","101","","" +"SI","F","POP","TOTAL","OC1","E","Y50-64","2011","29","","" +"SI","F","POP","TOTAL","OC1","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","F","Y15-29","2011","74","","" +"SI","F","POP","TOTAL","OC1","F","Y30-49","2011","436","","" +"SI","F","POP","TOTAL","OC1","F","Y50-64","2011","131","","" +"SI","F","POP","TOTAL","OC1","F","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","G","Y15-29","2011","266","","" +"SI","F","POP","TOTAL","OC1","G","Y30-49","2011","2051","","" +"SI","F","POP","TOTAL","OC1","G","Y50-64","2011","577","","" +"SI","F","POP","TOTAL","OC1","G","Y65-84","2011","4","","" +"SI","F","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","H","Y15-29","2011","42","","" +"SI","F","POP","TOTAL","OC1","H","Y30-49","2011","415","","" +"SI","F","POP","TOTAL","OC1","H","Y50-64","2011","134","","" +"SI","F","POP","TOTAL","OC1","H","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","I","Y15-29","2011","85","","" +"SI","F","POP","TOTAL","OC1","I","Y30-49","2011","527","","" +"SI","F","POP","TOTAL","OC1","I","Y50-64","2011","145","","" +"SI","F","POP","TOTAL","OC1","I","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","J","Y15-29","2011","76","","" +"SI","F","POP","TOTAL","OC1","J","Y30-49","2011","512","","" +"SI","F","POP","TOTAL","OC1","J","Y50-64","2011","111","","" +"SI","F","POP","TOTAL","OC1","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","K","Y15-29","2011","25","","" +"SI","F","POP","TOTAL","OC1","K","Y30-49","2011","635","","" +"SI","F","POP","TOTAL","OC1","K","Y50-64","2011","226","","" +"SI","F","POP","TOTAL","OC1","K","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","L","Y15-29","2011","17","","" +"SI","F","POP","TOTAL","OC1","L","Y30-49","2011","193","","" +"SI","F","POP","TOTAL","OC1","L","Y50-64","2011","78","","" +"SI","F","POP","TOTAL","OC1","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","M","Y15-29","2011","282","","" +"SI","F","POP","TOTAL","OC1","M","Y30-49","2011","1795","","" +"SI","F","POP","TOTAL","OC1","M","Y50-64","2011","542","","" +"SI","F","POP","TOTAL","OC1","M","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","N","Y15-29","2011","99","","" +"SI","F","POP","TOTAL","OC1","N","Y30-49","2011","390","","" +"SI","F","POP","TOTAL","OC1","N","Y50-64","2011","73","","" +"SI","F","POP","TOTAL","OC1","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","O","Y15-29","2011","27","","" +"SI","F","POP","TOTAL","OC1","O","Y30-49","2011","660","","" +"SI","F","POP","TOTAL","OC1","O","Y50-64","2011","361","","" +"SI","F","POP","TOTAL","OC1","O","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","P","Y15-29","2011","48","","" +"SI","F","POP","TOTAL","OC1","P","Y30-49","2011","603","","" +"SI","F","POP","TOTAL","OC1","P","Y50-64","2011","340","","" +"SI","F","POP","TOTAL","OC1","P","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","Q","Y15-29","2011","24","","" +"SI","F","POP","TOTAL","OC1","Q","Y30-49","2011","337","","" +"SI","F","POP","TOTAL","OC1","Q","Y50-64","2011","199","","" +"SI","F","POP","TOTAL","OC1","Q","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","R","Y15-29","2011","39","","" +"SI","F","POP","TOTAL","OC1","R","Y30-49","2011","261","","" +"SI","F","POP","TOTAL","OC1","R","Y50-64","2011","86","","" +"SI","F","POP","TOTAL","OC1","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","S","Y15-29","2011","58","","" +"SI","F","POP","TOTAL","OC1","S","Y30-49","2011","324","","" +"SI","F","POP","TOTAL","OC1","S","Y50-64","2011","106","","" +"SI","F","POP","TOTAL","OC1","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","T","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC1","T","Y30-49","2011","2","","" +"SI","F","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","A","Y15-29","2011","15","","" +"SI","F","POP","TOTAL","OC2","A","Y30-49","2011","103","","" +"SI","F","POP","TOTAL","OC2","A","Y50-64","2011","19","","" +"SI","F","POP","TOTAL","OC2","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","B","Y15-29","2011","21","","" +"SI","F","POP","TOTAL","OC2","B","Y30-49","2011","47","","" +"SI","F","POP","TOTAL","OC2","B","Y50-64","2011","18","","" +"SI","F","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","C","Y15-29","2011","550","","" +"SI","F","POP","TOTAL","OC2","C","Y30-49","2011","3294","","" +"SI","F","POP","TOTAL","OC2","C","Y50-64","2011","773","","" +"SI","F","POP","TOTAL","OC2","C","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","D","Y15-29","2011","48","","" +"SI","F","POP","TOTAL","OC2","D","Y30-49","2011","232","","" +"SI","F","POP","TOTAL","OC2","D","Y50-64","2011","59","","" +"SI","F","POP","TOTAL","OC2","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","E","Y15-29","2011","38","","" +"SI","F","POP","TOTAL","OC2","E","Y30-49","2011","190","","" +"SI","F","POP","TOTAL","OC2","E","Y50-64","2011","33","","" +"SI","F","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","F","Y15-29","2011","141","","" +"SI","F","POP","TOTAL","OC2","F","Y30-49","2011","410","","" +"SI","F","POP","TOTAL","OC2","F","Y50-64","2011","108","","" +"SI","F","POP","TOTAL","OC2","F","Y65-84","2011","3","","" +"SI","F","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","G","Y15-29","2011","558","","" +"SI","F","POP","TOTAL","OC2","G","Y30-49","2011","2115","","" +"SI","F","POP","TOTAL","OC2","G","Y50-64","2011","442","","" +"SI","F","POP","TOTAL","OC2","G","Y65-84","2011","4","","" +"SI","F","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","H","Y15-29","2011","69","","" +"SI","F","POP","TOTAL","OC2","H","Y30-49","2011","575","","" +"SI","F","POP","TOTAL","OC2","H","Y50-64","2011","145","","" +"SI","F","POP","TOTAL","OC2","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","I","Y15-29","2011","137","","" +"SI","F","POP","TOTAL","OC2","I","Y30-49","2011","383","","" +"SI","F","POP","TOTAL","OC2","I","Y50-64","2011","138","","" +"SI","F","POP","TOTAL","OC2","I","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","J","Y15-29","2011","488","","" +"SI","F","POP","TOTAL","OC2","J","Y30-49","2011","2217","","" +"SI","F","POP","TOTAL","OC2","J","Y50-64","2011","385","","" +"SI","F","POP","TOTAL","OC2","J","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","K","Y15-29","2011","398","","" +"SI","F","POP","TOTAL","OC2","K","Y30-49","2011","2207","","" +"SI","F","POP","TOTAL","OC2","K","Y50-64","2011","467","","" +"SI","F","POP","TOTAL","OC2","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","L","Y15-29","2011","44","","" +"SI","F","POP","TOTAL","OC2","L","Y30-49","2011","163","","" +"SI","F","POP","TOTAL","OC2","L","Y50-64","2011","40","","" +"SI","F","POP","TOTAL","OC2","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","M","Y15-29","2011","2129","","" +"SI","F","POP","TOTAL","OC2","M","Y30-49","2011","5787","","" +"SI","F","POP","TOTAL","OC2","M","Y50-64","2011","993","","" +"SI","F","POP","TOTAL","OC2","M","Y65-84","2011","8","","" +"SI","F","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","N","Y15-29","2011","190","","" +"SI","F","POP","TOTAL","OC2","N","Y30-49","2011","387","","" +"SI","F","POP","TOTAL","OC2","N","Y50-64","2011","74","","" +"SI","F","POP","TOTAL","OC2","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","O","Y15-29","2011","1380","","" +"SI","F","POP","TOTAL","OC2","O","Y30-49","2011","7262","","" +"SI","F","POP","TOTAL","OC2","O","Y50-64","2011","1996","","" +"SI","F","POP","TOTAL","OC2","O","Y65-84","2011","15","","" +"SI","F","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","P","Y15-29","2011","6637","","" +"SI","F","POP","TOTAL","OC2","P","Y30-49","2011","24595","","" +"SI","F","POP","TOTAL","OC2","P","Y50-64","2011","8160","","" +"SI","F","POP","TOTAL","OC2","P","Y65-84","2011","34","","" +"SI","F","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","Q","Y15-29","2011","2437","","" +"SI","F","POP","TOTAL","OC2","Q","Y30-49","2011","8545","","" +"SI","F","POP","TOTAL","OC2","Q","Y50-64","2011","3171","","" +"SI","F","POP","TOTAL","OC2","Q","Y65-84","2011","95","","" +"SI","F","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","R","Y15-29","2011","448","","" +"SI","F","POP","TOTAL","OC2","R","Y30-49","2011","2257","","" +"SI","F","POP","TOTAL","OC2","R","Y50-64","2011","506","","" +"SI","F","POP","TOTAL","OC2","R","Y65-84","2011","5","","" +"SI","F","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","S","Y15-29","2011","156","","" +"SI","F","POP","TOTAL","OC2","S","Y30-49","2011","458","","" +"SI","F","POP","TOTAL","OC2","S","Y50-64","2011","95","","" +"SI","F","POP","TOTAL","OC2","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC2","T","Y30-49","2011","3","","" +"SI","F","POP","TOTAL","OC2","T","Y50-64","2011","2","","" +"SI","F","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","A","Y15-29","2011","29","","" +"SI","F","POP","TOTAL","OC3","A","Y30-49","2011","215","","" +"SI","F","POP","TOTAL","OC3","A","Y50-64","2011","60","","" +"SI","F","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","B","Y15-29","2011","13","","" +"SI","F","POP","TOTAL","OC3","B","Y30-49","2011","93","","" +"SI","F","POP","TOTAL","OC3","B","Y50-64","2011","47","","" +"SI","F","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","C","Y15-29","2011","1285","","" +"SI","F","POP","TOTAL","OC3","C","Y30-49","2011","7367","","" +"SI","F","POP","TOTAL","OC3","C","Y50-64","2011","2283","","" +"SI","F","POP","TOTAL","OC3","C","Y65-84","2011","7","","" +"SI","F","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","D","Y15-29","2011","72","","" +"SI","F","POP","TOTAL","OC3","D","Y30-49","2011","319","","" +"SI","F","POP","TOTAL","OC3","D","Y50-64","2011","143","","" +"SI","F","POP","TOTAL","OC3","D","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","E","Y15-29","2011","65","","" +"SI","F","POP","TOTAL","OC3","E","Y30-49","2011","395","","" +"SI","F","POP","TOTAL","OC3","E","Y50-64","2011","142","","" +"SI","F","POP","TOTAL","OC3","E","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","F","Y15-29","2011","321","","" +"SI","F","POP","TOTAL","OC3","F","Y30-49","2011","1452","","" +"SI","F","POP","TOTAL","OC3","F","Y50-64","2011","443","","" +"SI","F","POP","TOTAL","OC3","F","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","G","Y15-29","2011","1914","","" +"SI","F","POP","TOTAL","OC3","G","Y30-49","2011","7814","","" +"SI","F","POP","TOTAL","OC3","G","Y50-64","2011","1887","","" +"SI","F","POP","TOTAL","OC3","G","Y65-84","2011","3","","" +"SI","F","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","H","Y15-29","2011","365","","" +"SI","F","POP","TOTAL","OC3","H","Y30-49","2011","1784","","" +"SI","F","POP","TOTAL","OC3","H","Y50-64","2011","556","","" +"SI","F","POP","TOTAL","OC3","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","I","Y15-29","2011","300","","" +"SI","F","POP","TOTAL","OC3","I","Y30-49","2011","1134","","" +"SI","F","POP","TOTAL","OC3","I","Y50-64","2011","365","","" +"SI","F","POP","TOTAL","OC3","I","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","J","Y15-29","2011","456","","" +"SI","F","POP","TOTAL","OC3","J","Y30-49","2011","1723","","" +"SI","F","POP","TOTAL","OC3","J","Y50-64","2011","390","","" +"SI","F","POP","TOTAL","OC3","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","K","Y15-29","2011","912","","" +"SI","F","POP","TOTAL","OC3","K","Y30-49","2011","3983","","" +"SI","F","POP","TOTAL","OC3","K","Y50-64","2011","1154","","" +"SI","F","POP","TOTAL","OC3","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","L","Y15-29","2011","97","","" +"SI","F","POP","TOTAL","OC3","L","Y30-49","2011","493","","" +"SI","F","POP","TOTAL","OC3","L","Y50-64","2011","175","","" +"SI","F","POP","TOTAL","OC3","L","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","M","Y15-29","2011","1246","","" +"SI","F","POP","TOTAL","OC3","M","Y30-49","2011","4896","","" +"SI","F","POP","TOTAL","OC3","M","Y50-64","2011","1270","","" +"SI","F","POP","TOTAL","OC3","M","Y65-84","2011","3","","" +"SI","F","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","N","Y15-29","2011","425","","" +"SI","F","POP","TOTAL","OC3","N","Y30-49","2011","961","","" +"SI","F","POP","TOTAL","OC3","N","Y50-64","2011","196","","" +"SI","F","POP","TOTAL","OC3","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","O","Y15-29","2011","483","","" +"SI","F","POP","TOTAL","OC3","O","Y30-49","2011","4244","","" +"SI","F","POP","TOTAL","OC3","O","Y50-64","2011","1592","","" +"SI","F","POP","TOTAL","OC3","O","Y65-84","2011","4","","" +"SI","F","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","P","Y15-29","2011","328","","" +"SI","F","POP","TOTAL","OC3","P","Y30-49","2011","1508","","" +"SI","F","POP","TOTAL","OC3","P","Y50-64","2011","569","","" +"SI","F","POP","TOTAL","OC3","P","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","Q","Y15-29","2011","3080","","" +"SI","F","POP","TOTAL","OC3","Q","Y30-49","2011","9272","","" +"SI","F","POP","TOTAL","OC3","Q","Y50-64","2011","3280","","" +"SI","F","POP","TOTAL","OC3","Q","Y65-84","2011","14","","" +"SI","F","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","R","Y15-29","2011","178","","" +"SI","F","POP","TOTAL","OC3","R","Y30-49","2011","665","","" +"SI","F","POP","TOTAL","OC3","R","Y50-64","2011","152","","" +"SI","F","POP","TOTAL","OC3","R","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","S","Y15-29","2011","188","","" +"SI","F","POP","TOTAL","OC3","S","Y30-49","2011","642","","" +"SI","F","POP","TOTAL","OC3","S","Y50-64","2011","207","","" +"SI","F","POP","TOTAL","OC3","S","Y65-84","2011","5","","" +"SI","F","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","T","Y15-29","2011","8","","" +"SI","F","POP","TOTAL","OC3","T","Y30-49","2011","5","","" +"SI","F","POP","TOTAL","OC3","T","Y50-64","2011","5","","" +"SI","F","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","A","Y15-29","2011","33","","" +"SI","F","POP","TOTAL","OC4","A","Y30-49","2011","155","","" +"SI","F","POP","TOTAL","OC4","A","Y50-64","2011","71","","" +"SI","F","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","B","Y15-29","2011","14","","" +"SI","F","POP","TOTAL","OC4","B","Y30-49","2011","67","","" +"SI","F","POP","TOTAL","OC4","B","Y50-64","2011","35","","" +"SI","F","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","C","Y15-29","2011","583","","" +"SI","F","POP","TOTAL","OC4","C","Y30-49","2011","3846","","" +"SI","F","POP","TOTAL","OC4","C","Y50-64","2011","1732","","" +"SI","F","POP","TOTAL","OC4","C","Y65-84","2011","4","","" +"SI","F","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","D","Y15-29","2011","46","","" +"SI","F","POP","TOTAL","OC4","D","Y30-49","2011","314","","" +"SI","F","POP","TOTAL","OC4","D","Y50-64","2011","192","","" +"SI","F","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","E","Y15-29","2011","52","","" +"SI","F","POP","TOTAL","OC4","E","Y30-49","2011","367","","" +"SI","F","POP","TOTAL","OC4","E","Y50-64","2011","155","","" +"SI","F","POP","TOTAL","OC4","E","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","F","Y15-29","2011","431","","" +"SI","F","POP","TOTAL","OC4","F","Y30-49","2011","1612","","" +"SI","F","POP","TOTAL","OC4","F","Y50-64","2011","602","","" +"SI","F","POP","TOTAL","OC4","F","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","G","Y15-29","2011","1068","","" +"SI","F","POP","TOTAL","OC4","G","Y30-49","2011","4005","","" +"SI","F","POP","TOTAL","OC4","G","Y50-64","2011","1353","","" +"SI","F","POP","TOTAL","OC4","G","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","H","Y15-29","2011","454","","" +"SI","F","POP","TOTAL","OC4","H","Y30-49","2011","2745","","" +"SI","F","POP","TOTAL","OC4","H","Y50-64","2011","906","","" +"SI","F","POP","TOTAL","OC4","H","Y65-84","2011","4","","" +"SI","F","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","I","Y15-29","2011","307","","" +"SI","F","POP","TOTAL","OC4","I","Y30-49","2011","758","","" +"SI","F","POP","TOTAL","OC4","I","Y50-64","2011","217","","" +"SI","F","POP","TOTAL","OC4","I","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","J","Y15-29","2011","250","","" +"SI","F","POP","TOTAL","OC4","J","Y30-49","2011","1027","","" +"SI","F","POP","TOTAL","OC4","J","Y50-64","2011","325","","" +"SI","F","POP","TOTAL","OC4","J","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","K","Y15-29","2011","796","","" +"SI","F","POP","TOTAL","OC4","K","Y30-49","2011","3672","","" +"SI","F","POP","TOTAL","OC4","K","Y50-64","2011","1843","","" +"SI","F","POP","TOTAL","OC4","K","Y65-84","2011","3","","" +"SI","F","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","L","Y15-29","2011","63","","" +"SI","F","POP","TOTAL","OC4","L","Y30-49","2011","266","","" +"SI","F","POP","TOTAL","OC4","L","Y50-64","2011","119","","" +"SI","F","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","M","Y15-29","2011","600","","" +"SI","F","POP","TOTAL","OC4","M","Y30-49","2011","2301","","" +"SI","F","POP","TOTAL","OC4","M","Y50-64","2011","919","","" +"SI","F","POP","TOTAL","OC4","M","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","N","Y15-29","2011","437","","" +"SI","F","POP","TOTAL","OC4","N","Y30-49","2011","798","","" +"SI","F","POP","TOTAL","OC4","N","Y50-64","2011","224","","" +"SI","F","POP","TOTAL","OC4","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","O","Y15-29","2011","832","","" +"SI","F","POP","TOTAL","OC4","O","Y30-49","2011","4973","","" +"SI","F","POP","TOTAL","OC4","O","Y50-64","2011","1521","","" +"SI","F","POP","TOTAL","OC4","O","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","P","Y15-29","2011","169","","" +"SI","F","POP","TOTAL","OC4","P","Y30-49","2011","1069","","" +"SI","F","POP","TOTAL","OC4","P","Y50-64","2011","531","","" +"SI","F","POP","TOTAL","OC4","P","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","Q","Y15-29","2011","405","","" +"SI","F","POP","TOTAL","OC4","Q","Y30-49","2011","1993","","" +"SI","F","POP","TOTAL","OC4","Q","Y50-64","2011","912","","" +"SI","F","POP","TOTAL","OC4","Q","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","R","Y15-29","2011","183","","" +"SI","F","POP","TOTAL","OC4","R","Y30-49","2011","894","","" +"SI","F","POP","TOTAL","OC4","R","Y50-64","2011","345","","" +"SI","F","POP","TOTAL","OC4","R","Y65-84","2011","3","","" +"SI","F","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","S","Y15-29","2011","124","","" +"SI","F","POP","TOTAL","OC4","S","Y30-49","2011","502","","" +"SI","F","POP","TOTAL","OC4","S","Y50-64","2011","190","","" +"SI","F","POP","TOTAL","OC4","S","Y65-84","2011","3","","" +"SI","F","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","T","Y15-29","2011","3","","" +"SI","F","POP","TOTAL","OC4","T","Y30-49","2011","3","","" +"SI","F","POP","TOTAL","OC4","T","Y50-64","2011","3","","" +"SI","F","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","A","Y15-29","2011","66","","" +"SI","F","POP","TOTAL","OC5","A","Y30-49","2011","236","","" +"SI","F","POP","TOTAL","OC5","A","Y50-64","2011","70","","" +"SI","F","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","B","Y15-29","2011","17","","" +"SI","F","POP","TOTAL","OC5","B","Y30-49","2011","14","","" +"SI","F","POP","TOTAL","OC5","B","Y50-64","2011","7","","" +"SI","F","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","C","Y15-29","2011","747","","" +"SI","F","POP","TOTAL","OC5","C","Y30-49","2011","2210","","" +"SI","F","POP","TOTAL","OC5","C","Y50-64","2011","635","","" +"SI","F","POP","TOTAL","OC5","C","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","D","Y15-29","2011","5","","" +"SI","F","POP","TOTAL","OC5","D","Y30-49","2011","29","","" +"SI","F","POP","TOTAL","OC5","D","Y50-64","2011","22","","" +"SI","F","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","E","Y15-29","2011","17","","" +"SI","F","POP","TOTAL","OC5","E","Y30-49","2011","48","","" +"SI","F","POP","TOTAL","OC5","E","Y50-64","2011","12","","" +"SI","F","POP","TOTAL","OC5","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","F","Y15-29","2011","192","","" +"SI","F","POP","TOTAL","OC5","F","Y30-49","2011","398","","" +"SI","F","POP","TOTAL","OC5","F","Y50-64","2011","78","","" +"SI","F","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","G","Y15-29","2011","8539","","" +"SI","F","POP","TOTAL","OC5","G","Y30-49","2011","23667","","" +"SI","F","POP","TOTAL","OC5","G","Y50-64","2011","5922","","" +"SI","F","POP","TOTAL","OC5","G","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","H","Y15-29","2011","229","","" +"SI","F","POP","TOTAL","OC5","H","Y30-49","2011","571","","" +"SI","F","POP","TOTAL","OC5","H","Y50-64","2011","131","","" +"SI","F","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","I","Y15-29","2011","3223","","" +"SI","F","POP","TOTAL","OC5","I","Y30-49","2011","7181","","" +"SI","F","POP","TOTAL","OC5","I","Y50-64","2011","1826","","" +"SI","F","POP","TOTAL","OC5","I","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","J","Y15-29","2011","68","","" +"SI","F","POP","TOTAL","OC5","J","Y30-49","2011","179","","" +"SI","F","POP","TOTAL","OC5","J","Y50-64","2011","64","","" +"SI","F","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","K","Y15-29","2011","39","","" +"SI","F","POP","TOTAL","OC5","K","Y30-49","2011","150","","" +"SI","F","POP","TOTAL","OC5","K","Y50-64","2011","71","","" +"SI","F","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","L","Y15-29","2011","42","","" +"SI","F","POP","TOTAL","OC5","L","Y30-49","2011","107","","" +"SI","F","POP","TOTAL","OC5","L","Y50-64","2011","22","","" +"SI","F","POP","TOTAL","OC5","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","M","Y15-29","2011","189","","" +"SI","F","POP","TOTAL","OC5","M","Y30-49","2011","464","","" +"SI","F","POP","TOTAL","OC5","M","Y50-64","2011","110","","" +"SI","F","POP","TOTAL","OC5","M","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","N","Y15-29","2011","344","","" +"SI","F","POP","TOTAL","OC5","N","Y30-49","2011","1036","","" +"SI","F","POP","TOTAL","OC5","N","Y50-64","2011","260","","" +"SI","F","POP","TOTAL","OC5","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","O","Y15-29","2011","475","","" +"SI","F","POP","TOTAL","OC5","O","Y30-49","2011","719","","" +"SI","F","POP","TOTAL","OC5","O","Y50-64","2011","109","","" +"SI","F","POP","TOTAL","OC5","O","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","P","Y15-29","2011","313","","" +"SI","F","POP","TOTAL","OC5","P","Y30-49","2011","1966","","" +"SI","F","POP","TOTAL","OC5","P","Y50-64","2011","941","","" +"SI","F","POP","TOTAL","OC5","P","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","Q","Y15-29","2011","1064","","" +"SI","F","POP","TOTAL","OC5","Q","Y30-49","2011","4421","","" +"SI","F","POP","TOTAL","OC5","Q","Y50-64","2011","1645","","" +"SI","F","POP","TOTAL","OC5","Q","Y65-84","2011","8","","" +"SI","F","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","R","Y15-29","2011","195","","" +"SI","F","POP","TOTAL","OC5","R","Y30-49","2011","454","","" +"SI","F","POP","TOTAL","OC5","R","Y50-64","2011","99","","" +"SI","F","POP","TOTAL","OC5","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","S","Y15-29","2011","1794","","" +"SI","F","POP","TOTAL","OC5","S","Y30-49","2011","3708","","" +"SI","F","POP","TOTAL","OC5","S","Y50-64","2011","757","","" +"SI","F","POP","TOTAL","OC5","S","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","T","Y15-29","2011","24","","" +"SI","F","POP","TOTAL","OC5","T","Y30-49","2011","23","","" +"SI","F","POP","TOTAL","OC5","T","Y50-64","2011","11","","" +"SI","F","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","A","Y15-29","2011","398","","" +"SI","F","POP","TOTAL","OC6","A","Y30-49","2011","4191","","" +"SI","F","POP","TOTAL","OC6","A","Y50-64","2011","2765","","" +"SI","F","POP","TOTAL","OC6","A","Y65-84","2011","18","","" +"SI","F","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","B","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","C","Y15-29","2011","21","","" +"SI","F","POP","TOTAL","OC6","C","Y30-49","2011","107","","" +"SI","F","POP","TOTAL","OC6","C","Y50-64","2011","41","","" +"SI","F","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","D","Y30-49","2011","12","","" +"SI","F","POP","TOTAL","OC6","D","Y50-64","2011","1","","" +"SI","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","E","Y15-29","2011","11","","" +"SI","F","POP","TOTAL","OC6","E","Y30-49","2011","59","","" +"SI","F","POP","TOTAL","OC6","E","Y50-64","2011","12","","" +"SI","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","F","Y15-29","2011","3","","" +"SI","F","POP","TOTAL","OC6","F","Y30-49","2011","16","","" +"SI","F","POP","TOTAL","OC6","F","Y50-64","2011","2","","" +"SI","F","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","G","Y15-29","2011","41","","" +"SI","F","POP","TOTAL","OC6","G","Y30-49","2011","267","","" +"SI","F","POP","TOTAL","OC6","G","Y50-64","2011","66","","" +"SI","F","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","H","Y15-29","2011","6","","" +"SI","F","POP","TOTAL","OC6","H","Y30-49","2011","5","","" +"SI","F","POP","TOTAL","OC6","H","Y50-64","2011","1","","" +"SI","F","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","I","Y15-29","2011","2","","" +"SI","F","POP","TOTAL","OC6","I","Y30-49","2011","24","","" +"SI","F","POP","TOTAL","OC6","I","Y50-64","2011","9","","" +"SI","F","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","J","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","J","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC6","J","Y50-64","2011","1","","" +"SI","F","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","K","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC6","K","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","M","Y15-29","2011","5","","" +"SI","F","POP","TOTAL","OC6","M","Y30-49","2011","25","","" +"SI","F","POP","TOTAL","OC6","M","Y50-64","2011","10","","" +"SI","F","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","N","Y15-29","2011","10","","" +"SI","F","POP","TOTAL","OC6","N","Y30-49","2011","63","","" +"SI","F","POP","TOTAL","OC6","N","Y50-64","2011","28","","" +"SI","F","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","O","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC6","O","Y30-49","2011","14","","" +"SI","F","POP","TOTAL","OC6","O","Y50-64","2011","8","","" +"SI","F","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","P","Y15-29","2011","3","","" +"SI","F","POP","TOTAL","OC6","P","Y30-49","2011","9","","" +"SI","F","POP","TOTAL","OC6","P","Y50-64","2011","1","","" +"SI","F","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","Q","Y30-49","2011","19","","" +"SI","F","POP","TOTAL","OC6","Q","Y50-64","2011","6","","" +"SI","F","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","R","Y15-29","2011","4","","" +"SI","F","POP","TOTAL","OC6","R","Y30-49","2011","15","","" +"SI","F","POP","TOTAL","OC6","R","Y50-64","2011","5","","" +"SI","F","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","S","Y15-29","2011","3","","" +"SI","F","POP","TOTAL","OC6","S","Y30-49","2011","23","","" +"SI","F","POP","TOTAL","OC6","S","Y50-64","2011","5","","" +"SI","F","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","T","Y15-29","2011","5","","" +"SI","F","POP","TOTAL","OC6","T","Y30-49","2011","20","","" +"SI","F","POP","TOTAL","OC6","T","Y50-64","2011","5","","" +"SI","F","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","A","Y15-29","2011","8","","" +"SI","F","POP","TOTAL","OC7","A","Y30-49","2011","46","","" +"SI","F","POP","TOTAL","OC7","A","Y50-64","2011","12","","" +"SI","F","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","B","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC7","B","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC7","B","Y50-64","2011","2","","" +"SI","F","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","C","Y15-29","2011","1013","","" +"SI","F","POP","TOTAL","OC7","C","Y30-49","2011","10146","","" +"SI","F","POP","TOTAL","OC7","C","Y50-64","2011","2994","","" +"SI","F","POP","TOTAL","OC7","C","Y65-84","2011","7","","" +"SI","F","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","D","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC7","D","Y30-49","2011","7","","" +"SI","F","POP","TOTAL","OC7","D","Y50-64","2011","6","","" +"SI","F","POP","TOTAL","OC7","D","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","E","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC7","E","Y30-49","2011","11","","" +"SI","F","POP","TOTAL","OC7","E","Y50-64","2011","2","","" +"SI","F","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","F","Y15-29","2011","92","","" +"SI","F","POP","TOTAL","OC7","F","Y30-49","2011","255","","" +"SI","F","POP","TOTAL","OC7","F","Y50-64","2011","68","","" +"SI","F","POP","TOTAL","OC7","F","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","G","Y15-29","2011","104","","" +"SI","F","POP","TOTAL","OC7","G","Y30-49","2011","659","","" +"SI","F","POP","TOTAL","OC7","G","Y50-64","2011","171","","" +"SI","F","POP","TOTAL","OC7","G","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","H","Y15-29","2011","8","","" +"SI","F","POP","TOTAL","OC7","H","Y30-49","2011","58","","" +"SI","F","POP","TOTAL","OC7","H","Y50-64","2011","17","","" +"SI","F","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","I","Y15-29","2011","83","","" +"SI","F","POP","TOTAL","OC7","I","Y30-49","2011","221","","" +"SI","F","POP","TOTAL","OC7","I","Y50-64","2011","55","","" +"SI","F","POP","TOTAL","OC7","I","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","J","Y15-29","2011","5","","" +"SI","F","POP","TOTAL","OC7","J","Y30-49","2011","63","","" +"SI","F","POP","TOTAL","OC7","J","Y50-64","2011","24","","" +"SI","F","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","K","Y15-29","2011","2","","" +"SI","F","POP","TOTAL","OC7","K","Y30-49","2011","29","","" +"SI","F","POP","TOTAL","OC7","K","Y50-64","2011","17","","" +"SI","F","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","L","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC7","L","Y30-49","2011","15","","" +"SI","F","POP","TOTAL","OC7","L","Y50-64","2011","3","","" +"SI","F","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","M","Y15-29","2011","34","","" +"SI","F","POP","TOTAL","OC7","M","Y30-49","2011","208","","" +"SI","F","POP","TOTAL","OC7","M","Y50-64","2011","64","","" +"SI","F","POP","TOTAL","OC7","M","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","N","Y15-29","2011","28","","" +"SI","F","POP","TOTAL","OC7","N","Y30-49","2011","83","","" +"SI","F","POP","TOTAL","OC7","N","Y50-64","2011","32","","" +"SI","F","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","O","Y15-29","2011","7","","" +"SI","F","POP","TOTAL","OC7","O","Y30-49","2011","69","","" +"SI","F","POP","TOTAL","OC7","O","Y50-64","2011","28","","" +"SI","F","POP","TOTAL","OC7","O","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","P","Y15-29","2011","8","","" +"SI","F","POP","TOTAL","OC7","P","Y30-49","2011","76","","" +"SI","F","POP","TOTAL","OC7","P","Y50-64","2011","29","","" +"SI","F","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","Q","Y15-29","2011","10","","" +"SI","F","POP","TOTAL","OC7","Q","Y30-49","2011","109","","" +"SI","F","POP","TOTAL","OC7","Q","Y50-64","2011","34","","" +"SI","F","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","R","Y15-29","2011","10","","" +"SI","F","POP","TOTAL","OC7","R","Y30-49","2011","73","","" +"SI","F","POP","TOTAL","OC7","R","Y50-64","2011","25","","" +"SI","F","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","S","Y15-29","2011","10","","" +"SI","F","POP","TOTAL","OC7","S","Y30-49","2011","119","","" +"SI","F","POP","TOTAL","OC7","S","Y50-64","2011","43","","" +"SI","F","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","T","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC7","T","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC7","T","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","A","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC8","A","Y30-49","2011","21","","" +"SI","F","POP","TOTAL","OC8","A","Y50-64","2011","8","","" +"SI","F","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","B","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC8","B","Y30-49","2011","5","","" +"SI","F","POP","TOTAL","OC8","B","Y50-64","2011","1","","" +"SI","F","POP","TOTAL","OC8","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","C","Y15-29","2011","1630","","" +"SI","F","POP","TOTAL","OC8","C","Y30-49","2011","13292","","" +"SI","F","POP","TOTAL","OC8","C","Y50-64","2011","4491","","" +"SI","F","POP","TOTAL","OC8","C","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","D","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC8","D","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC8","D","Y50-64","2011","1","","" +"SI","F","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","E","Y15-29","2011","2","","" +"SI","F","POP","TOTAL","OC8","E","Y30-49","2011","16","","" +"SI","F","POP","TOTAL","OC8","E","Y50-64","2011","8","","" +"SI","F","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","F","Y15-29","2011","14","","" +"SI","F","POP","TOTAL","OC8","F","Y30-49","2011","63","","" +"SI","F","POP","TOTAL","OC8","F","Y50-64","2011","30","","" +"SI","F","POP","TOTAL","OC8","F","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","G","Y15-29","2011","38","","" +"SI","F","POP","TOTAL","OC8","G","Y30-49","2011","266","","" +"SI","F","POP","TOTAL","OC8","G","Y50-64","2011","129","","" +"SI","F","POP","TOTAL","OC8","G","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","H","Y15-29","2011","77","","" +"SI","F","POP","TOTAL","OC8","H","Y30-49","2011","318","","" +"SI","F","POP","TOTAL","OC8","H","Y50-64","2011","80","","" +"SI","F","POP","TOTAL","OC8","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","I","Y15-29","2011","5","","" +"SI","F","POP","TOTAL","OC8","I","Y30-49","2011","36","","" +"SI","F","POP","TOTAL","OC8","I","Y50-64","2011","30","","" +"SI","F","POP","TOTAL","OC8","I","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","J","Y15-29","2011","2","","" +"SI","F","POP","TOTAL","OC8","J","Y30-49","2011","9","","" +"SI","F","POP","TOTAL","OC8","J","Y50-64","2011","4","","" +"SI","F","POP","TOTAL","OC8","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","K","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC8","K","Y30-49","2011","6","","" +"SI","F","POP","TOTAL","OC8","K","Y50-64","2011","9","","" +"SI","F","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","L","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC8","L","Y30-49","2011","4","","" +"SI","F","POP","TOTAL","OC8","L","Y50-64","2011","7","","" +"SI","F","POP","TOTAL","OC8","L","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","M","Y15-29","2011","43","","" +"SI","F","POP","TOTAL","OC8","M","Y30-49","2011","165","","" +"SI","F","POP","TOTAL","OC8","M","Y50-64","2011","44","","" +"SI","F","POP","TOTAL","OC8","M","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","N","Y15-29","2011","164","","" +"SI","F","POP","TOTAL","OC8","N","Y30-49","2011","329","","" +"SI","F","POP","TOTAL","OC8","N","Y50-64","2011","77","","" +"SI","F","POP","TOTAL","OC8","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","O","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC8","O","Y30-49","2011","13","","" +"SI","F","POP","TOTAL","OC8","O","Y50-64","2011","6","","" +"SI","F","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","P","Y15-29","2011","8","","" +"SI","F","POP","TOTAL","OC8","P","Y30-49","2011","63","","" +"SI","F","POP","TOTAL","OC8","P","Y50-64","2011","52","","" +"SI","F","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","Q","Y15-29","2011","18","","" +"SI","F","POP","TOTAL","OC8","Q","Y30-49","2011","268","","" +"SI","F","POP","TOTAL","OC8","Q","Y50-64","2011","189","","" +"SI","F","POP","TOTAL","OC8","Q","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","R","Y15-29","2011","7","","" +"SI","F","POP","TOTAL","OC8","R","Y30-49","2011","29","","" +"SI","F","POP","TOTAL","OC8","R","Y50-64","2011","4","","" +"SI","F","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","S","Y15-29","2011","6","","" +"SI","F","POP","TOTAL","OC8","S","Y30-49","2011","109","","" +"SI","F","POP","TOTAL","OC8","S","Y50-64","2011","55","","" +"SI","F","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","T","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC8","T","Y30-49","2011","1","","" +"SI","F","POP","TOTAL","OC8","T","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","A","Y15-29","2011","44","","" +"SI","F","POP","TOTAL","OC9","A","Y30-49","2011","419","","" +"SI","F","POP","TOTAL","OC9","A","Y50-64","2011","181","","" +"SI","F","POP","TOTAL","OC9","A","Y65-84","2011","3","","" +"SI","F","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","B","Y15-29","2011","7","","" +"SI","F","POP","TOTAL","OC9","B","Y30-49","2011","22","","" +"SI","F","POP","TOTAL","OC9","B","Y50-64","2011","12","","" +"SI","F","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","C","Y15-29","2011","1806","","" +"SI","F","POP","TOTAL","OC9","C","Y30-49","2011","9989","","" +"SI","F","POP","TOTAL","OC9","C","Y50-64","2011","3591","","" +"SI","F","POP","TOTAL","OC9","C","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","D","Y15-29","2011","1","","" +"SI","F","POP","TOTAL","OC9","D","Y30-49","2011","47","","" +"SI","F","POP","TOTAL","OC9","D","Y50-64","2011","38","","" +"SI","F","POP","TOTAL","OC9","D","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","E","Y15-29","2011","50","","" +"SI","F","POP","TOTAL","OC9","E","Y30-49","2011","353","","" +"SI","F","POP","TOTAL","OC9","E","Y50-64","2011","132","","" +"SI","F","POP","TOTAL","OC9","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","F","Y15-29","2011","134","","" +"SI","F","POP","TOTAL","OC9","F","Y30-49","2011","617","","" +"SI","F","POP","TOTAL","OC9","F","Y50-64","2011","318","","" +"SI","F","POP","TOTAL","OC9","F","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","G","Y15-29","2011","218","","" +"SI","F","POP","TOTAL","OC9","G","Y30-49","2011","1242","","" +"SI","F","POP","TOTAL","OC9","G","Y50-64","2011","587","","" +"SI","F","POP","TOTAL","OC9","G","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","H","Y15-29","2011","31","","" +"SI","F","POP","TOTAL","OC9","H","Y30-49","2011","198","","" +"SI","F","POP","TOTAL","OC9","H","Y50-64","2011","99","","" +"SI","F","POP","TOTAL","OC9","H","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","I","Y15-29","2011","708","","" +"SI","F","POP","TOTAL","OC9","I","Y30-49","2011","3474","","" +"SI","F","POP","TOTAL","OC9","I","Y50-64","2011","1484","","" +"SI","F","POP","TOTAL","OC9","I","Y65-84","2011","5","","" +"SI","F","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","J","Y15-29","2011","5","","" +"SI","F","POP","TOTAL","OC9","J","Y30-49","2011","49","","" +"SI","F","POP","TOTAL","OC9","J","Y50-64","2011","40","","" +"SI","F","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","K","Y15-29","2011","25","","" +"SI","F","POP","TOTAL","OC9","K","Y30-49","2011","134","","" +"SI","F","POP","TOTAL","OC9","K","Y50-64","2011","76","","" +"SI","F","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","L","Y15-29","2011","12","","" +"SI","F","POP","TOTAL","OC9","L","Y30-49","2011","144","","" +"SI","F","POP","TOTAL","OC9","L","Y50-64","2011","130","","" +"SI","F","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","M","Y15-29","2011","368","","" +"SI","F","POP","TOTAL","OC9","M","Y30-49","2011","937","","" +"SI","F","POP","TOTAL","OC9","M","Y50-64","2011","407","","" +"SI","F","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","N","Y15-29","2011","1352","","" +"SI","F","POP","TOTAL","OC9","N","Y30-49","2011","5435","","" +"SI","F","POP","TOTAL","OC9","N","Y50-64","2011","2511","","" +"SI","F","POP","TOTAL","OC9","N","Y65-84","2011","3","","" +"SI","F","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","O","Y15-29","2011","29","","" +"SI","F","POP","TOTAL","OC9","O","Y30-49","2011","593","","" +"SI","F","POP","TOTAL","OC9","O","Y50-64","2011","339","","" +"SI","F","POP","TOTAL","OC9","O","Y65-84","2011","1","","" +"SI","F","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","P","Y15-29","2011","230","","" +"SI","F","POP","TOTAL","OC9","P","Y30-49","2011","4016","","" +"SI","F","POP","TOTAL","OC9","P","Y50-64","2011","2134","","" +"SI","F","POP","TOTAL","OC9","P","Y65-84","2011","5","","" +"SI","F","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","Q","Y15-29","2011","472","","" +"SI","F","POP","TOTAL","OC9","Q","Y30-49","2011","4133","","" +"SI","F","POP","TOTAL","OC9","Q","Y50-64","2011","1552","","" +"SI","F","POP","TOTAL","OC9","Q","Y65-84","2011","5","","" +"SI","F","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","R","Y15-29","2011","32","","" +"SI","F","POP","TOTAL","OC9","R","Y30-49","2011","345","","" +"SI","F","POP","TOTAL","OC9","R","Y50-64","2011","187","","" +"SI","F","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","S","Y15-29","2011","76","","" +"SI","F","POP","TOTAL","OC9","S","Y30-49","2011","480","","" +"SI","F","POP","TOTAL","OC9","S","Y50-64","2011","230","","" +"SI","F","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","T","Y15-29","2011","197","","" +"SI","F","POP","TOTAL","OC9","T","Y30-49","2011","212","","" +"SI","F","POP","TOTAL","OC9","T","Y50-64","2011","71","","" +"SI","F","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"SI","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"SI","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"SI","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"SI","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"SI","F","POP","TOTAL","UNK","UNK","Y15-29","2011","151","","" +"SI","F","POP","TOTAL","UNK","UNK","Y30-49","2011","702","","" +"SI","F","POP","TOTAL","UNK","UNK","Y50-64","2011","170","","" +"SI","F","POP","TOTAL","UNK","UNK","Y65-84","2011","2","","" +"SI","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"SI","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","NAP","Y15-29","2011","105151","","" +"SI","M","POP","TOTAL","NAP","NAP","Y30-49","2011","24214","","" +"SI","M","POP","TOTAL","NAP","NAP","Y50-64","2011","88227","","" +"SI","M","POP","TOTAL","NAP","NAP","Y65-84","2011","125212","","" +"SI","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","7935","","" +"SI","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","149702","","" +"SI","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","C","Y15-29","2011","2","","" +"SI","M","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","E","Y15-29","2011","1","","" +"SI","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","F","Y15-29","2011","1","","" +"SI","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","G","Y50-64","2011","1","","" +"SI","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","H","Y30-49","2011","1","","" +"SI","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","O","Y15-29","2011","2033","","" +"SI","M","POP","TOTAL","OC0","O","Y30-49","2011","3897","","" +"SI","M","POP","TOTAL","OC0","O","Y50-64","2011","533","","" +"SI","M","POP","TOTAL","OC0","O","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","Q","Y30-49","2011","1","","" +"SI","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","A","Y15-29","2011","9","","" +"SI","M","POP","TOTAL","OC1","A","Y30-49","2011","87","","" +"SI","M","POP","TOTAL","OC1","A","Y50-64","2011","82","","" +"SI","M","POP","TOTAL","OC1","A","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC1","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","B","Y15-29","2011","3","","" +"SI","M","POP","TOTAL","OC1","B","Y30-49","2011","32","","" +"SI","M","POP","TOTAL","OC1","B","Y50-64","2011","39","","" +"SI","M","POP","TOTAL","OC1","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","C","Y15-29","2011","284","","" +"SI","M","POP","TOTAL","OC1","C","Y30-49","2011","4047","","" +"SI","M","POP","TOTAL","OC1","C","Y50-64","2011","2347","","" +"SI","M","POP","TOTAL","OC1","C","Y65-84","2011","24","","" +"SI","M","POP","TOTAL","OC1","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","D","Y15-29","2011","3","","" +"SI","M","POP","TOTAL","OC1","D","Y30-49","2011","153","","" +"SI","M","POP","TOTAL","OC1","D","Y50-64","2011","129","","" +"SI","M","POP","TOTAL","OC1","D","Y65-84","2011","4","","" +"SI","M","POP","TOTAL","OC1","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","E","Y15-29","2011","18","","" +"SI","M","POP","TOTAL","OC1","E","Y30-49","2011","224","","" +"SI","M","POP","TOTAL","OC1","E","Y50-64","2011","145","","" +"SI","M","POP","TOTAL","OC1","E","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","F","Y15-29","2011","433","","" +"SI","M","POP","TOTAL","OC1","F","Y30-49","2011","2153","","" +"SI","M","POP","TOTAL","OC1","F","Y50-64","2011","1055","","" +"SI","M","POP","TOTAL","OC1","F","Y65-84","2011","7","","" +"SI","M","POP","TOTAL","OC1","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","G","Y15-29","2011","412","","" +"SI","M","POP","TOTAL","OC1","G","Y30-49","2011","4138","","" +"SI","M","POP","TOTAL","OC1","G","Y50-64","2011","1918","","" +"SI","M","POP","TOTAL","OC1","G","Y65-84","2011","26","","" +"SI","M","POP","TOTAL","OC1","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","H","Y15-29","2011","90","","" +"SI","M","POP","TOTAL","OC1","H","Y30-49","2011","864","","" +"SI","M","POP","TOTAL","OC1","H","Y50-64","2011","422","","" +"SI","M","POP","TOTAL","OC1","H","Y65-84","2011","7","","" +"SI","M","POP","TOTAL","OC1","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","I","Y15-29","2011","130","","" +"SI","M","POP","TOTAL","OC1","I","Y30-49","2011","852","","" +"SI","M","POP","TOTAL","OC1","I","Y50-64","2011","327","","" +"SI","M","POP","TOTAL","OC1","I","Y65-84","2011","4","","" +"SI","M","POP","TOTAL","OC1","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","J","Y15-29","2011","213","","" +"SI","M","POP","TOTAL","OC1","J","Y30-49","2011","1496","","" +"SI","M","POP","TOTAL","OC1","J","Y50-64","2011","446","","" +"SI","M","POP","TOTAL","OC1","J","Y65-84","2011","3","","" +"SI","M","POP","TOTAL","OC1","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","K","Y15-29","2011","35","","" +"SI","M","POP","TOTAL","OC1","K","Y30-49","2011","811","","" +"SI","M","POP","TOTAL","OC1","K","Y50-64","2011","329","","" +"SI","M","POP","TOTAL","OC1","K","Y65-84","2011","6","","" +"SI","M","POP","TOTAL","OC1","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","L","Y15-29","2011","30","","" +"SI","M","POP","TOTAL","OC1","L","Y30-49","2011","290","","" +"SI","M","POP","TOTAL","OC1","L","Y50-64","2011","174","","" +"SI","M","POP","TOTAL","OC1","L","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC1","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","M","Y15-29","2011","342","","" +"SI","M","POP","TOTAL","OC1","M","Y30-49","2011","2860","","" +"SI","M","POP","TOTAL","OC1","M","Y50-64","2011","1449","","" +"SI","M","POP","TOTAL","OC1","M","Y65-84","2011","25","","" +"SI","M","POP","TOTAL","OC1","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","N","Y15-29","2011","93","","" +"SI","M","POP","TOTAL","OC1","N","Y30-49","2011","528","","" +"SI","M","POP","TOTAL","OC1","N","Y50-64","2011","226","","" +"SI","M","POP","TOTAL","OC1","N","Y65-84","2011","5","","" +"SI","M","POP","TOTAL","OC1","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","O","Y15-29","2011","10","","" +"SI","M","POP","TOTAL","OC1","O","Y30-49","2011","484","","" +"SI","M","POP","TOTAL","OC1","O","Y50-64","2011","539","","" +"SI","M","POP","TOTAL","OC1","O","Y65-84","2011","20","","" +"SI","M","POP","TOTAL","OC1","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","P","Y15-29","2011","47","","" +"SI","M","POP","TOTAL","OC1","P","Y30-49","2011","344","","" +"SI","M","POP","TOTAL","OC1","P","Y50-64","2011","281","","" +"SI","M","POP","TOTAL","OC1","P","Y65-84","2011","7","","" +"SI","M","POP","TOTAL","OC1","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","Q","Y15-29","2011","7","","" +"SI","M","POP","TOTAL","OC1","Q","Y30-49","2011","176","","" +"SI","M","POP","TOTAL","OC1","Q","Y50-64","2011","171","","" +"SI","M","POP","TOTAL","OC1","Q","Y65-84","2011","15","","" +"SI","M","POP","TOTAL","OC1","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","R","Y15-29","2011","31","","" +"SI","M","POP","TOTAL","OC1","R","Y30-49","2011","346","","" +"SI","M","POP","TOTAL","OC1","R","Y50-64","2011","183","","" +"SI","M","POP","TOTAL","OC1","R","Y65-84","2011","8","","" +"SI","M","POP","TOTAL","OC1","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","S","Y15-29","2011","34","","" +"SI","M","POP","TOTAL","OC1","S","Y30-49","2011","306","","" +"SI","M","POP","TOTAL","OC1","S","Y50-64","2011","179","","" +"SI","M","POP","TOTAL","OC1","S","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC1","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","T","Y15-29","2011","1","","" +"SI","M","POP","TOTAL","OC1","T","Y30-49","2011","5","","" +"SI","M","POP","TOTAL","OC1","T","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC1","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC1","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC1","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC1","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","A","Y15-29","2011","21","","" +"SI","M","POP","TOTAL","OC2","A","Y30-49","2011","67","","" +"SI","M","POP","TOTAL","OC2","A","Y50-64","2011","32","","" +"SI","M","POP","TOTAL","OC2","A","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC2","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","B","Y15-29","2011","17","","" +"SI","M","POP","TOTAL","OC2","B","Y30-49","2011","126","","" +"SI","M","POP","TOTAL","OC2","B","Y50-64","2011","51","","" +"SI","M","POP","TOTAL","OC2","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","C","Y15-29","2011","1754","","" +"SI","M","POP","TOTAL","OC2","C","Y30-49","2011","6309","","" +"SI","M","POP","TOTAL","OC2","C","Y50-64","2011","2207","","" +"SI","M","POP","TOTAL","OC2","C","Y65-84","2011","5","","" +"SI","M","POP","TOTAL","OC2","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","D","Y15-29","2011","149","","" +"SI","M","POP","TOTAL","OC2","D","Y30-49","2011","758","","" +"SI","M","POP","TOTAL","OC2","D","Y50-64","2011","250","","" +"SI","M","POP","TOTAL","OC2","D","Y65-84","2011","9","","" +"SI","M","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","E","Y15-29","2011","26","","" +"SI","M","POP","TOTAL","OC2","E","Y30-49","2011","165","","" +"SI","M","POP","TOTAL","OC2","E","Y50-64","2011","61","","" +"SI","M","POP","TOTAL","OC2","E","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","F","Y15-29","2011","281","","" +"SI","M","POP","TOTAL","OC2","F","Y30-49","2011","861","","" +"SI","M","POP","TOTAL","OC2","F","Y50-64","2011","319","","" +"SI","M","POP","TOTAL","OC2","F","Y65-84","2011","3","","" +"SI","M","POP","TOTAL","OC2","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","G","Y15-29","2011","356","","" +"SI","M","POP","TOTAL","OC2","G","Y30-49","2011","1444","","" +"SI","M","POP","TOTAL","OC2","G","Y50-64","2011","399","","" +"SI","M","POP","TOTAL","OC2","G","Y65-84","2011","6","","" +"SI","M","POP","TOTAL","OC2","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","H","Y15-29","2011","98","","" +"SI","M","POP","TOTAL","OC2","H","Y30-49","2011","645","","" +"SI","M","POP","TOTAL","OC2","H","Y50-64","2011","269","","" +"SI","M","POP","TOTAL","OC2","H","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC2","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","I","Y15-29","2011","31","","" +"SI","M","POP","TOTAL","OC2","I","Y30-49","2011","131","","" +"SI","M","POP","TOTAL","OC2","I","Y50-64","2011","86","","" +"SI","M","POP","TOTAL","OC2","I","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC2","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","J","Y15-29","2011","1642","","" +"SI","M","POP","TOTAL","OC2","J","Y30-49","2011","4852","","" +"SI","M","POP","TOTAL","OC2","J","Y50-64","2011","893","","" +"SI","M","POP","TOTAL","OC2","J","Y65-84","2011","17","","" +"SI","M","POP","TOTAL","OC2","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","K","Y15-29","2011","343","","" +"SI","M","POP","TOTAL","OC2","K","Y30-49","2011","1552","","" +"SI","M","POP","TOTAL","OC2","K","Y50-64","2011","327","","" +"SI","M","POP","TOTAL","OC2","K","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC2","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","L","Y15-29","2011","32","","" +"SI","M","POP","TOTAL","OC2","L","Y30-49","2011","132","","" +"SI","M","POP","TOTAL","OC2","L","Y50-64","2011","70","","" +"SI","M","POP","TOTAL","OC2","L","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC2","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","M","Y15-29","2011","1980","","" +"SI","M","POP","TOTAL","OC2","M","Y30-49","2011","6029","","" +"SI","M","POP","TOTAL","OC2","M","Y50-64","2011","2234","","" +"SI","M","POP","TOTAL","OC2","M","Y65-84","2011","93","","" +"SI","M","POP","TOTAL","OC2","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","N","Y15-29","2011","138","","" +"SI","M","POP","TOTAL","OC2","N","Y30-49","2011","252","","" +"SI","M","POP","TOTAL","OC2","N","Y50-64","2011","125","","" +"SI","M","POP","TOTAL","OC2","N","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC2","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","O","Y15-29","2011","468","","" +"SI","M","POP","TOTAL","OC2","O","Y30-49","2011","4540","","" +"SI","M","POP","TOTAL","OC2","O","Y50-64","2011","1894","","" +"SI","M","POP","TOTAL","OC2","O","Y65-84","2011","49","","" +"SI","M","POP","TOTAL","OC2","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","P","Y15-29","2011","1485","","" +"SI","M","POP","TOTAL","OC2","P","Y30-49","2011","5749","","" +"SI","M","POP","TOTAL","OC2","P","Y50-64","2011","2955","","" +"SI","M","POP","TOTAL","OC2","P","Y65-84","2011","174","","" +"SI","M","POP","TOTAL","OC2","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","Q","Y15-29","2011","533","","" +"SI","M","POP","TOTAL","OC2","Q","Y30-49","2011","2313","","" +"SI","M","POP","TOTAL","OC2","Q","Y50-64","2011","1391","","" +"SI","M","POP","TOTAL","OC2","Q","Y65-84","2011","198","","" +"SI","M","POP","TOTAL","OC2","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","R","Y15-29","2011","232","","" +"SI","M","POP","TOTAL","OC2","R","Y30-49","2011","1470","","" +"SI","M","POP","TOTAL","OC2","R","Y50-64","2011","676","","" +"SI","M","POP","TOTAL","OC2","R","Y65-84","2011","18","","" +"SI","M","POP","TOTAL","OC2","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","S","Y15-29","2011","129","","" +"SI","M","POP","TOTAL","OC2","S","Y30-49","2011","593","","" +"SI","M","POP","TOTAL","OC2","S","Y50-64","2011","348","","" +"SI","M","POP","TOTAL","OC2","S","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC2","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","T","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC2","T","Y30-49","2011","2","","" +"SI","M","POP","TOTAL","OC2","T","Y50-64","2011","1","","" +"SI","M","POP","TOTAL","OC2","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC2","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC2","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC2","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC2","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","A","Y15-29","2011","33","","" +"SI","M","POP","TOTAL","OC3","A","Y30-49","2011","171","","" +"SI","M","POP","TOTAL","OC3","A","Y50-64","2011","92","","" +"SI","M","POP","TOTAL","OC3","A","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC3","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","B","Y15-29","2011","41","","" +"SI","M","POP","TOTAL","OC3","B","Y30-49","2011","239","","" +"SI","M","POP","TOTAL","OC3","B","Y50-64","2011","76","","" +"SI","M","POP","TOTAL","OC3","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC3","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","C","Y15-29","2011","2242","","" +"SI","M","POP","TOTAL","OC3","C","Y30-49","2011","10021","","" +"SI","M","POP","TOTAL","OC3","C","Y50-64","2011","5197","","" +"SI","M","POP","TOTAL","OC3","C","Y65-84","2011","6","","" +"SI","M","POP","TOTAL","OC3","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","D","Y15-29","2011","264","","" +"SI","M","POP","TOTAL","OC3","D","Y30-49","2011","1215","","" +"SI","M","POP","TOTAL","OC3","D","Y50-64","2011","748","","" +"SI","M","POP","TOTAL","OC3","D","Y65-84","2011","5","","" +"SI","M","POP","TOTAL","OC3","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","E","Y15-29","2011","86","","" +"SI","M","POP","TOTAL","OC3","E","Y30-49","2011","423","","" +"SI","M","POP","TOTAL","OC3","E","Y50-64","2011","315","","" +"SI","M","POP","TOTAL","OC3","E","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC3","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","F","Y15-29","2011","993","","" +"SI","M","POP","TOTAL","OC3","F","Y30-49","2011","3428","","" +"SI","M","POP","TOTAL","OC3","F","Y50-64","2011","2047","","" +"SI","M","POP","TOTAL","OC3","F","Y65-84","2011","9","","" +"SI","M","POP","TOTAL","OC3","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","G","Y15-29","2011","1904","","" +"SI","M","POP","TOTAL","OC3","G","Y30-49","2011","8004","","" +"SI","M","POP","TOTAL","OC3","G","Y50-64","2011","2603","","" +"SI","M","POP","TOTAL","OC3","G","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC3","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","H","Y15-29","2011","481","","" +"SI","M","POP","TOTAL","OC3","H","Y30-49","2011","1970","","" +"SI","M","POP","TOTAL","OC3","H","Y50-64","2011","938","","" +"SI","M","POP","TOTAL","OC3","H","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC3","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","I","Y15-29","2011","244","","" +"SI","M","POP","TOTAL","OC3","I","Y30-49","2011","1003","","" +"SI","M","POP","TOTAL","OC3","I","Y50-64","2011","438","","" +"SI","M","POP","TOTAL","OC3","I","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC3","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","J","Y15-29","2011","697","","" +"SI","M","POP","TOTAL","OC3","J","Y30-49","2011","3088","","" +"SI","M","POP","TOTAL","OC3","J","Y50-64","2011","932","","" +"SI","M","POP","TOTAL","OC3","J","Y65-84","2011","6","","" +"SI","M","POP","TOTAL","OC3","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","K","Y15-29","2011","609","","" +"SI","M","POP","TOTAL","OC3","K","Y30-49","2011","2542","","" +"SI","M","POP","TOTAL","OC3","K","Y50-64","2011","900","","" +"SI","M","POP","TOTAL","OC3","K","Y65-84","2011","4","","" +"SI","M","POP","TOTAL","OC3","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","L","Y15-29","2011","77","","" +"SI","M","POP","TOTAL","OC3","L","Y30-49","2011","411","","" +"SI","M","POP","TOTAL","OC3","L","Y50-64","2011","238","","" +"SI","M","POP","TOTAL","OC3","L","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC3","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","M","Y15-29","2011","1119","","" +"SI","M","POP","TOTAL","OC3","M","Y30-49","2011","3605","","" +"SI","M","POP","TOTAL","OC3","M","Y50-64","2011","1500","","" +"SI","M","POP","TOTAL","OC3","M","Y65-84","2011","5","","" +"SI","M","POP","TOTAL","OC3","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","N","Y15-29","2011","405","","" +"SI","M","POP","TOTAL","OC3","N","Y30-49","2011","765","","" +"SI","M","POP","TOTAL","OC3","N","Y50-64","2011","251","","" +"SI","M","POP","TOTAL","OC3","N","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC3","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","O","Y15-29","2011","184","","" +"SI","M","POP","TOTAL","OC3","O","Y30-49","2011","2175","","" +"SI","M","POP","TOTAL","OC3","O","Y50-64","2011","1218","","" +"SI","M","POP","TOTAL","OC3","O","Y65-84","2011","7","","" +"SI","M","POP","TOTAL","OC3","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","P","Y15-29","2011","187","","" +"SI","M","POP","TOTAL","OC3","P","Y30-49","2011","639","","" +"SI","M","POP","TOTAL","OC3","P","Y50-64","2011","217","","" +"SI","M","POP","TOTAL","OC3","P","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC3","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","Q","Y15-29","2011","1236","","" +"SI","M","POP","TOTAL","OC3","Q","Y30-49","2011","1563","","" +"SI","M","POP","TOTAL","OC3","Q","Y50-64","2011","450","","" +"SI","M","POP","TOTAL","OC3","Q","Y65-84","2011","11","","" +"SI","M","POP","TOTAL","OC3","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","R","Y15-29","2011","470","","" +"SI","M","POP","TOTAL","OC3","R","Y30-49","2011","1105","","" +"SI","M","POP","TOTAL","OC3","R","Y50-64","2011","372","","" +"SI","M","POP","TOTAL","OC3","R","Y65-84","2011","8","","" +"SI","M","POP","TOTAL","OC3","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","S","Y15-29","2011","97","","" +"SI","M","POP","TOTAL","OC3","S","Y30-49","2011","412","","" +"SI","M","POP","TOTAL","OC3","S","Y50-64","2011","176","","" +"SI","M","POP","TOTAL","OC3","S","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC3","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","T","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC3","T","Y30-49","2011","4","","" +"SI","M","POP","TOTAL","OC3","T","Y50-64","2011","1","","" +"SI","M","POP","TOTAL","OC3","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC3","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC3","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC3","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","A","Y15-29","2011","10","","" +"SI","M","POP","TOTAL","OC4","A","Y30-49","2011","55","","" +"SI","M","POP","TOTAL","OC4","A","Y50-64","2011","39","","" +"SI","M","POP","TOTAL","OC4","A","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","B","Y15-29","2011","6","","" +"SI","M","POP","TOTAL","OC4","B","Y30-49","2011","14","","" +"SI","M","POP","TOTAL","OC4","B","Y50-64","2011","15","","" +"SI","M","POP","TOTAL","OC4","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","C","Y15-29","2011","673","","" +"SI","M","POP","TOTAL","OC4","C","Y30-49","2011","2675","","" +"SI","M","POP","TOTAL","OC4","C","Y50-64","2011","1584","","" +"SI","M","POP","TOTAL","OC4","C","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC4","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","D","Y15-29","2011","17","","" +"SI","M","POP","TOTAL","OC4","D","Y30-49","2011","64","","" +"SI","M","POP","TOTAL","OC4","D","Y50-64","2011","78","","" +"SI","M","POP","TOTAL","OC4","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","E","Y15-29","2011","42","","" +"SI","M","POP","TOTAL","OC4","E","Y30-49","2011","149","","" +"SI","M","POP","TOTAL","OC4","E","Y50-64","2011","106","","" +"SI","M","POP","TOTAL","OC4","E","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","F","Y15-29","2011","108","","" +"SI","M","POP","TOTAL","OC4","F","Y30-49","2011","371","","" +"SI","M","POP","TOTAL","OC4","F","Y50-64","2011","307","","" +"SI","M","POP","TOTAL","OC4","F","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC4","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","G","Y15-29","2011","1539","","" +"SI","M","POP","TOTAL","OC4","G","Y30-49","2011","3487","","" +"SI","M","POP","TOTAL","OC4","G","Y50-64","2011","1175","","" +"SI","M","POP","TOTAL","OC4","G","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","H","Y15-29","2011","970","","" +"SI","M","POP","TOTAL","OC4","H","Y30-49","2011","3991","","" +"SI","M","POP","TOTAL","OC4","H","Y50-64","2011","1470","","" +"SI","M","POP","TOTAL","OC4","H","Y65-84","2011","3","","" +"SI","M","POP","TOTAL","OC4","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","I","Y15-29","2011","170","","" +"SI","M","POP","TOTAL","OC4","I","Y30-49","2011","352","","" +"SI","M","POP","TOTAL","OC4","I","Y50-64","2011","177","","" +"SI","M","POP","TOTAL","OC4","I","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC4","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","J","Y15-29","2011","159","","" +"SI","M","POP","TOTAL","OC4","J","Y30-49","2011","307","","" +"SI","M","POP","TOTAL","OC4","J","Y50-64","2011","122","","" +"SI","M","POP","TOTAL","OC4","J","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","K","Y15-29","2011","329","","" +"SI","M","POP","TOTAL","OC4","K","Y30-49","2011","871","","" +"SI","M","POP","TOTAL","OC4","K","Y50-64","2011","451","","" +"SI","M","POP","TOTAL","OC4","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","L","Y15-29","2011","23","","" +"SI","M","POP","TOTAL","OC4","L","Y30-49","2011","57","","" +"SI","M","POP","TOTAL","OC4","L","Y50-64","2011","40","","" +"SI","M","POP","TOTAL","OC4","L","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","M","Y15-29","2011","203","","" +"SI","M","POP","TOTAL","OC4","M","Y30-49","2011","539","","" +"SI","M","POP","TOTAL","OC4","M","Y50-64","2011","274","","" +"SI","M","POP","TOTAL","OC4","M","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC4","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","N","Y15-29","2011","303","","" +"SI","M","POP","TOTAL","OC4","N","Y30-49","2011","459","","" +"SI","M","POP","TOTAL","OC4","N","Y50-64","2011","199","","" +"SI","M","POP","TOTAL","OC4","N","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC4","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","O","Y15-29","2011","157","","" +"SI","M","POP","TOTAL","OC4","O","Y30-49","2011","567","","" +"SI","M","POP","TOTAL","OC4","O","Y50-64","2011","310","","" +"SI","M","POP","TOTAL","OC4","O","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","P","Y15-29","2011","31","","" +"SI","M","POP","TOTAL","OC4","P","Y30-49","2011","109","","" +"SI","M","POP","TOTAL","OC4","P","Y50-64","2011","134","","" +"SI","M","POP","TOTAL","OC4","P","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC4","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","Q","Y15-29","2011","79","","" +"SI","M","POP","TOTAL","OC4","Q","Y30-49","2011","232","","" +"SI","M","POP","TOTAL","OC4","Q","Y50-64","2011","149","","" +"SI","M","POP","TOTAL","OC4","Q","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","R","Y15-29","2011","136","","" +"SI","M","POP","TOTAL","OC4","R","Y30-49","2011","823","","" +"SI","M","POP","TOTAL","OC4","R","Y50-64","2011","275","","" +"SI","M","POP","TOTAL","OC4","R","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","S","Y15-29","2011","42","","" +"SI","M","POP","TOTAL","OC4","S","Y30-49","2011","96","","" +"SI","M","POP","TOTAL","OC4","S","Y50-64","2011","46","","" +"SI","M","POP","TOTAL","OC4","S","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","T","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC4","T","Y30-49","2011","1","","" +"SI","M","POP","TOTAL","OC4","T","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC4","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC4","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC4","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC4","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","A","Y15-29","2011","54","","" +"SI","M","POP","TOTAL","OC5","A","Y30-49","2011","136","","" +"SI","M","POP","TOTAL","OC5","A","Y50-64","2011","79","","" +"SI","M","POP","TOTAL","OC5","A","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","B","Y15-29","2011","10","","" +"SI","M","POP","TOTAL","OC5","B","Y30-49","2011","20","","" +"SI","M","POP","TOTAL","OC5","B","Y50-64","2011","7","","" +"SI","M","POP","TOTAL","OC5","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","C","Y15-29","2011","350","","" +"SI","M","POP","TOTAL","OC5","C","Y30-49","2011","1129","","" +"SI","M","POP","TOTAL","OC5","C","Y50-64","2011","635","","" +"SI","M","POP","TOTAL","OC5","C","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC5","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","D","Y15-29","2011","22","","" +"SI","M","POP","TOTAL","OC5","D","Y30-49","2011","73","","" +"SI","M","POP","TOTAL","OC5","D","Y50-64","2011","41","","" +"SI","M","POP","TOTAL","OC5","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","E","Y15-29","2011","18","","" +"SI","M","POP","TOTAL","OC5","E","Y30-49","2011","120","","" +"SI","M","POP","TOTAL","OC5","E","Y50-64","2011","90","","" +"SI","M","POP","TOTAL","OC5","E","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","F","Y15-29","2011","104","","" +"SI","M","POP","TOTAL","OC5","F","Y30-49","2011","275","","" +"SI","M","POP","TOTAL","OC5","F","Y50-64","2011","170","","" +"SI","M","POP","TOTAL","OC5","F","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","G","Y15-29","2011","3560","","" +"SI","M","POP","TOTAL","OC5","G","Y30-49","2011","7567","","" +"SI","M","POP","TOTAL","OC5","G","Y50-64","2011","2541","","" +"SI","M","POP","TOTAL","OC5","G","Y65-84","2011","7","","" +"SI","M","POP","TOTAL","OC5","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","H","Y15-29","2011","143","","" +"SI","M","POP","TOTAL","OC5","H","Y30-49","2011","682","","" +"SI","M","POP","TOTAL","OC5","H","Y50-64","2011","340","","" +"SI","M","POP","TOTAL","OC5","H","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","I","Y15-29","2011","2786","","" +"SI","M","POP","TOTAL","OC5","I","Y30-49","2011","4626","","" +"SI","M","POP","TOTAL","OC5","I","Y50-64","2011","1378","","" +"SI","M","POP","TOTAL","OC5","I","Y65-84","2011","8","","" +"SI","M","POP","TOTAL","OC5","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","J","Y15-29","2011","44","","" +"SI","M","POP","TOTAL","OC5","J","Y30-49","2011","136","","" +"SI","M","POP","TOTAL","OC5","J","Y50-64","2011","55","","" +"SI","M","POP","TOTAL","OC5","J","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","K","Y15-29","2011","39","","" +"SI","M","POP","TOTAL","OC5","K","Y30-49","2011","155","","" +"SI","M","POP","TOTAL","OC5","K","Y50-64","2011","76","","" +"SI","M","POP","TOTAL","OC5","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","L","Y15-29","2011","55","","" +"SI","M","POP","TOTAL","OC5","L","Y30-49","2011","206","","" +"SI","M","POP","TOTAL","OC5","L","Y50-64","2011","164","","" +"SI","M","POP","TOTAL","OC5","L","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC5","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","M","Y15-29","2011","82","","" +"SI","M","POP","TOTAL","OC5","M","Y30-49","2011","265","","" +"SI","M","POP","TOTAL","OC5","M","Y50-64","2011","95","","" +"SI","M","POP","TOTAL","OC5","M","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC5","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","N","Y15-29","2011","1274","","" +"SI","M","POP","TOTAL","OC5","N","Y30-49","2011","2940","","" +"SI","M","POP","TOTAL","OC5","N","Y50-64","2011","1864","","" +"SI","M","POP","TOTAL","OC5","N","Y65-84","2011","4","","" +"SI","M","POP","TOTAL","OC5","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","O","Y15-29","2011","1482","","" +"SI","M","POP","TOTAL","OC5","O","Y30-49","2011","4629","","" +"SI","M","POP","TOTAL","OC5","O","Y50-64","2011","473","","" +"SI","M","POP","TOTAL","OC5","O","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC5","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","P","Y15-29","2011","297","","" +"SI","M","POP","TOTAL","OC5","P","Y30-49","2011","1314","","" +"SI","M","POP","TOTAL","OC5","P","Y50-64","2011","829","","" +"SI","M","POP","TOTAL","OC5","P","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","Q","Y15-29","2011","319","","" +"SI","M","POP","TOTAL","OC5","Q","Y30-49","2011","840","","" +"SI","M","POP","TOTAL","OC5","Q","Y50-64","2011","394","","" +"SI","M","POP","TOTAL","OC5","Q","Y65-84","2011","3","","" +"SI","M","POP","TOTAL","OC5","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","R","Y15-29","2011","181","","" +"SI","M","POP","TOTAL","OC5","R","Y30-49","2011","523","","" +"SI","M","POP","TOTAL","OC5","R","Y50-64","2011","247","","" +"SI","M","POP","TOTAL","OC5","R","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC5","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","S","Y15-29","2011","324","","" +"SI","M","POP","TOTAL","OC5","S","Y30-49","2011","547","","" +"SI","M","POP","TOTAL","OC5","S","Y50-64","2011","189","","" +"SI","M","POP","TOTAL","OC5","S","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC5","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","T","Y15-29","2011","5","","" +"SI","M","POP","TOTAL","OC5","T","Y30-49","2011","13","","" +"SI","M","POP","TOTAL","OC5","T","Y50-64","2011","7","","" +"SI","M","POP","TOTAL","OC5","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC5","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC5","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC5","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","A","Y15-29","2011","1026","","" +"SI","M","POP","TOTAL","OC6","A","Y30-49","2011","6150","","" +"SI","M","POP","TOTAL","OC6","A","Y50-64","2011","4832","","" +"SI","M","POP","TOTAL","OC6","A","Y65-84","2011","57","","" +"SI","M","POP","TOTAL","OC6","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","B","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC6","B","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC6","B","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","C","Y15-29","2011","45","","" +"SI","M","POP","TOTAL","OC6","C","Y30-49","2011","139","","" +"SI","M","POP","TOTAL","OC6","C","Y50-64","2011","99","","" +"SI","M","POP","TOTAL","OC6","C","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","D","Y15-29","2011","1","","" +"SI","M","POP","TOTAL","OC6","D","Y30-49","2011","13","","" +"SI","M","POP","TOTAL","OC6","D","Y50-64","2011","2","","" +"SI","M","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","E","Y15-29","2011","18","","" +"SI","M","POP","TOTAL","OC6","E","Y30-49","2011","56","","" +"SI","M","POP","TOTAL","OC6","E","Y50-64","2011","15","","" +"SI","M","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","F","Y15-29","2011","4","","" +"SI","M","POP","TOTAL","OC6","F","Y30-49","2011","40","","" +"SI","M","POP","TOTAL","OC6","F","Y50-64","2011","18","","" +"SI","M","POP","TOTAL","OC6","F","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","G","Y15-29","2011","31","","" +"SI","M","POP","TOTAL","OC6","G","Y30-49","2011","116","","" +"SI","M","POP","TOTAL","OC6","G","Y50-64","2011","53","","" +"SI","M","POP","TOTAL","OC6","G","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","H","Y15-29","2011","4","","" +"SI","M","POP","TOTAL","OC6","H","Y30-49","2011","20","","" +"SI","M","POP","TOTAL","OC6","H","Y50-64","2011","9","","" +"SI","M","POP","TOTAL","OC6","H","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","I","Y15-29","2011","3","","" +"SI","M","POP","TOTAL","OC6","I","Y30-49","2011","28","","" +"SI","M","POP","TOTAL","OC6","I","Y50-64","2011","17","","" +"SI","M","POP","TOTAL","OC6","I","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","J","Y15-29","2011","1","","" +"SI","M","POP","TOTAL","OC6","J","Y30-49","2011","1","","" +"SI","M","POP","TOTAL","OC6","J","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC6","J","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","K","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC6","K","Y30-49","2011","1","","" +"SI","M","POP","TOTAL","OC6","K","Y50-64","2011","3","","" +"SI","M","POP","TOTAL","OC6","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","L","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC6","L","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC6","L","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC6","L","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","M","Y15-29","2011","6","","" +"SI","M","POP","TOTAL","OC6","M","Y30-49","2011","22","","" +"SI","M","POP","TOTAL","OC6","M","Y50-64","2011","16","","" +"SI","M","POP","TOTAL","OC6","M","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","N","Y15-29","2011","64","","" +"SI","M","POP","TOTAL","OC6","N","Y30-49","2011","166","","" +"SI","M","POP","TOTAL","OC6","N","Y50-64","2011","56","","" +"SI","M","POP","TOTAL","OC6","N","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","O","Y15-29","2011","21","","" +"SI","M","POP","TOTAL","OC6","O","Y30-49","2011","109","","" +"SI","M","POP","TOTAL","OC6","O","Y50-64","2011","81","","" +"SI","M","POP","TOTAL","OC6","O","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","P","Y15-29","2011","1","","" +"SI","M","POP","TOTAL","OC6","P","Y30-49","2011","13","","" +"SI","M","POP","TOTAL","OC6","P","Y50-64","2011","5","","" +"SI","M","POP","TOTAL","OC6","P","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","Q","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC6","Q","Y30-49","2011","16","","" +"SI","M","POP","TOTAL","OC6","Q","Y50-64","2011","13","","" +"SI","M","POP","TOTAL","OC6","Q","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","R","Y15-29","2011","9","","" +"SI","M","POP","TOTAL","OC6","R","Y30-49","2011","27","","" +"SI","M","POP","TOTAL","OC6","R","Y50-64","2011","11","","" +"SI","M","POP","TOTAL","OC6","R","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","S","Y15-29","2011","2","","" +"SI","M","POP","TOTAL","OC6","S","Y30-49","2011","13","","" +"SI","M","POP","TOTAL","OC6","S","Y50-64","2011","6","","" +"SI","M","POP","TOTAL","OC6","S","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","T","Y15-29","2011","13","","" +"SI","M","POP","TOTAL","OC6","T","Y30-49","2011","20","","" +"SI","M","POP","TOTAL","OC6","T","Y50-64","2011","5","","" +"SI","M","POP","TOTAL","OC6","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC6","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","A","Y15-29","2011","55","","" +"SI","M","POP","TOTAL","OC7","A","Y30-49","2011","230","","" +"SI","M","POP","TOTAL","OC7","A","Y50-64","2011","134","","" +"SI","M","POP","TOTAL","OC7","A","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","B","Y15-29","2011","93","","" +"SI","M","POP","TOTAL","OC7","B","Y30-49","2011","465","","" +"SI","M","POP","TOTAL","OC7","B","Y50-64","2011","91","","" +"SI","M","POP","TOTAL","OC7","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","C","Y15-29","2011","10133","","" +"SI","M","POP","TOTAL","OC7","C","Y30-49","2011","33380","","" +"SI","M","POP","TOTAL","OC7","C","Y50-64","2011","14934","","" +"SI","M","POP","TOTAL","OC7","C","Y65-84","2011","9","","" +"SI","M","POP","TOTAL","OC7","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","D","Y15-29","2011","311","","" +"SI","M","POP","TOTAL","OC7","D","Y30-49","2011","1385","","" +"SI","M","POP","TOTAL","OC7","D","Y50-64","2011","644","","" +"SI","M","POP","TOTAL","OC7","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","E","Y15-29","2011","181","","" +"SI","M","POP","TOTAL","OC7","E","Y30-49","2011","988","","" +"SI","M","POP","TOTAL","OC7","E","Y50-64","2011","595","","" +"SI","M","POP","TOTAL","OC7","E","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","F","Y15-29","2011","7486","","" +"SI","M","POP","TOTAL","OC7","F","Y30-49","2011","22759","","" +"SI","M","POP","TOTAL","OC7","F","Y50-64","2011","9094","","" +"SI","M","POP","TOTAL","OC7","F","Y65-84","2011","18","","" +"SI","M","POP","TOTAL","OC7","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","G","Y15-29","2011","2973","","" +"SI","M","POP","TOTAL","OC7","G","Y30-49","2011","7207","","" +"SI","M","POP","TOTAL","OC7","G","Y50-64","2011","2377","","" +"SI","M","POP","TOTAL","OC7","G","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC7","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","H","Y15-29","2011","247","","" +"SI","M","POP","TOTAL","OC7","H","Y30-49","2011","992","","" +"SI","M","POP","TOTAL","OC7","H","Y50-64","2011","510","","" +"SI","M","POP","TOTAL","OC7","H","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","I","Y15-29","2011","192","","" +"SI","M","POP","TOTAL","OC7","I","Y30-49","2011","539","","" +"SI","M","POP","TOTAL","OC7","I","Y50-64","2011","258","","" +"SI","M","POP","TOTAL","OC7","I","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC7","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","J","Y15-29","2011","187","","" +"SI","M","POP","TOTAL","OC7","J","Y30-49","2011","673","","" +"SI","M","POP","TOTAL","OC7","J","Y50-64","2011","213","","" +"SI","M","POP","TOTAL","OC7","J","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","K","Y15-29","2011","43","","" +"SI","M","POP","TOTAL","OC7","K","Y30-49","2011","103","","" +"SI","M","POP","TOTAL","OC7","K","Y50-64","2011","45","","" +"SI","M","POP","TOTAL","OC7","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","L","Y15-29","2011","71","","" +"SI","M","POP","TOTAL","OC7","L","Y30-49","2011","220","","" +"SI","M","POP","TOTAL","OC7","L","Y50-64","2011","168","","" +"SI","M","POP","TOTAL","OC7","L","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","M","Y15-29","2011","646","","" +"SI","M","POP","TOTAL","OC7","M","Y30-49","2011","1679","","" +"SI","M","POP","TOTAL","OC7","M","Y50-64","2011","827","","" +"SI","M","POP","TOTAL","OC7","M","Y65-84","2011","3","","" +"SI","M","POP","TOTAL","OC7","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","N","Y15-29","2011","485","","" +"SI","M","POP","TOTAL","OC7","N","Y30-49","2011","1130","","" +"SI","M","POP","TOTAL","OC7","N","Y50-64","2011","356","","" +"SI","M","POP","TOTAL","OC7","N","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","O","Y15-29","2011","48","","" +"SI","M","POP","TOTAL","OC7","O","Y30-49","2011","321","","" +"SI","M","POP","TOTAL","OC7","O","Y50-64","2011","241","","" +"SI","M","POP","TOTAL","OC7","O","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC7","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","P","Y15-29","2011","24","","" +"SI","M","POP","TOTAL","OC7","P","Y30-49","2011","179","","" +"SI","M","POP","TOTAL","OC7","P","Y50-64","2011","158","","" +"SI","M","POP","TOTAL","OC7","P","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","Q","Y15-29","2011","29","","" +"SI","M","POP","TOTAL","OC7","Q","Y30-49","2011","294","","" +"SI","M","POP","TOTAL","OC7","Q","Y50-64","2011","243","","" +"SI","M","POP","TOTAL","OC7","Q","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","R","Y15-29","2011","70","","" +"SI","M","POP","TOTAL","OC7","R","Y30-49","2011","322","","" +"SI","M","POP","TOTAL","OC7","R","Y50-64","2011","219","","" +"SI","M","POP","TOTAL","OC7","R","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","S","Y15-29","2011","151","","" +"SI","M","POP","TOTAL","OC7","S","Y30-49","2011","583","","" +"SI","M","POP","TOTAL","OC7","S","Y50-64","2011","266","","" +"SI","M","POP","TOTAL","OC7","S","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","T","Y15-29","2011","3","","" +"SI","M","POP","TOTAL","OC7","T","Y30-49","2011","9","","" +"SI","M","POP","TOTAL","OC7","T","Y50-64","2011","3","","" +"SI","M","POP","TOTAL","OC7","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC7","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC7","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC7","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","A","Y15-29","2011","109","","" +"SI","M","POP","TOTAL","OC8","A","Y30-49","2011","422","","" +"SI","M","POP","TOTAL","OC8","A","Y50-64","2011","244","","" +"SI","M","POP","TOTAL","OC8","A","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","B","Y15-29","2011","260","","" +"SI","M","POP","TOTAL","OC8","B","Y30-49","2011","749","","" +"SI","M","POP","TOTAL","OC8","B","Y50-64","2011","128","","" +"SI","M","POP","TOTAL","OC8","B","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC8","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","C","Y15-29","2011","4076","","" +"SI","M","POP","TOTAL","OC8","C","Y30-49","2011","13589","","" +"SI","M","POP","TOTAL","OC8","C","Y50-64","2011","6193","","" +"SI","M","POP","TOTAL","OC8","C","Y65-84","2011","5","","" +"SI","M","POP","TOTAL","OC8","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","D","Y15-29","2011","17","","" +"SI","M","POP","TOTAL","OC8","D","Y30-49","2011","148","","" +"SI","M","POP","TOTAL","OC8","D","Y50-64","2011","122","","" +"SI","M","POP","TOTAL","OC8","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","E","Y15-29","2011","175","","" +"SI","M","POP","TOTAL","OC8","E","Y30-49","2011","878","","" +"SI","M","POP","TOTAL","OC8","E","Y50-64","2011","455","","" +"SI","M","POP","TOTAL","OC8","E","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","F","Y15-29","2011","1234","","" +"SI","M","POP","TOTAL","OC8","F","Y30-49","2011","3883","","" +"SI","M","POP","TOTAL","OC8","F","Y50-64","2011","1907","","" +"SI","M","POP","TOTAL","OC8","F","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC8","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","G","Y15-29","2011","570","","" +"SI","M","POP","TOTAL","OC8","G","Y30-49","2011","2089","","" +"SI","M","POP","TOTAL","OC8","G","Y50-64","2011","770","","" +"SI","M","POP","TOTAL","OC8","G","Y65-84","2011","4","","" +"SI","M","POP","TOTAL","OC8","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","H","Y15-29","2011","3821","","" +"SI","M","POP","TOTAL","OC8","H","Y30-49","2011","14594","","" +"SI","M","POP","TOTAL","OC8","H","Y50-64","2011","6277","","" +"SI","M","POP","TOTAL","OC8","H","Y65-84","2011","30","","" +"SI","M","POP","TOTAL","OC8","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","I","Y15-29","2011","55","","" +"SI","M","POP","TOTAL","OC8","I","Y30-49","2011","174","","" +"SI","M","POP","TOTAL","OC8","I","Y50-64","2011","89","","" +"SI","M","POP","TOTAL","OC8","I","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","J","Y15-29","2011","12","","" +"SI","M","POP","TOTAL","OC8","J","Y30-49","2011","67","","" +"SI","M","POP","TOTAL","OC8","J","Y50-64","2011","34","","" +"SI","M","POP","TOTAL","OC8","J","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC8","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","K","Y15-29","2011","14","","" +"SI","M","POP","TOTAL","OC8","K","Y30-49","2011","41","","" +"SI","M","POP","TOTAL","OC8","K","Y50-64","2011","29","","" +"SI","M","POP","TOTAL","OC8","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","L","Y15-29","2011","18","","" +"SI","M","POP","TOTAL","OC8","L","Y30-49","2011","63","","" +"SI","M","POP","TOTAL","OC8","L","Y50-64","2011","59","","" +"SI","M","POP","TOTAL","OC8","L","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","M","Y15-29","2011","179","","" +"SI","M","POP","TOTAL","OC8","M","Y30-49","2011","373","","" +"SI","M","POP","TOTAL","OC8","M","Y50-64","2011","167","","" +"SI","M","POP","TOTAL","OC8","M","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC8","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","N","Y15-29","2011","365","","" +"SI","M","POP","TOTAL","OC8","N","Y30-49","2011","521","","" +"SI","M","POP","TOTAL","OC8","N","Y50-64","2011","270","","" +"SI","M","POP","TOTAL","OC8","N","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC8","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","O","Y15-29","2011","7","","" +"SI","M","POP","TOTAL","OC8","O","Y30-49","2011","90","","" +"SI","M","POP","TOTAL","OC8","O","Y50-64","2011","69","","" +"SI","M","POP","TOTAL","OC8","O","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","P","Y15-29","2011","12","","" +"SI","M","POP","TOTAL","OC8","P","Y30-49","2011","87","","" +"SI","M","POP","TOTAL","OC8","P","Y50-64","2011","87","","" +"SI","M","POP","TOTAL","OC8","P","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","Q","Y15-29","2011","129","","" +"SI","M","POP","TOTAL","OC8","Q","Y30-49","2011","259","","" +"SI","M","POP","TOTAL","OC8","Q","Y50-64","2011","208","","" +"SI","M","POP","TOTAL","OC8","Q","Y65-84","2011","3","","" +"SI","M","POP","TOTAL","OC8","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","R","Y15-29","2011","22","","" +"SI","M","POP","TOTAL","OC8","R","Y30-49","2011","65","","" +"SI","M","POP","TOTAL","OC8","R","Y50-64","2011","44","","" +"SI","M","POP","TOTAL","OC8","R","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","S","Y15-29","2011","29","","" +"SI","M","POP","TOTAL","OC8","S","Y30-49","2011","161","","" +"SI","M","POP","TOTAL","OC8","S","Y50-64","2011","79","","" +"SI","M","POP","TOTAL","OC8","S","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","T","Y15-29","2011","7","","" +"SI","M","POP","TOTAL","OC8","T","Y30-49","2011","8","","" +"SI","M","POP","TOTAL","OC8","T","Y50-64","2011","1","","" +"SI","M","POP","TOTAL","OC8","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC8","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC8","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","A","Y15-29","2011","113","","" +"SI","M","POP","TOTAL","OC9","A","Y30-49","2011","485","","" +"SI","M","POP","TOTAL","OC9","A","Y50-64","2011","432","","" +"SI","M","POP","TOTAL","OC9","A","Y65-84","2011","4","","" +"SI","M","POP","TOTAL","OC9","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","B","Y15-29","2011","51","","" +"SI","M","POP","TOTAL","OC9","B","Y30-49","2011","204","","" +"SI","M","POP","TOTAL","OC9","B","Y50-64","2011","53","","" +"SI","M","POP","TOTAL","OC9","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","C","Y15-29","2011","4033","","" +"SI","M","POP","TOTAL","OC9","C","Y30-49","2011","8962","","" +"SI","M","POP","TOTAL","OC9","C","Y50-64","2011","4327","","" +"SI","M","POP","TOTAL","OC9","C","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC9","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","D","Y15-29","2011","33","","" +"SI","M","POP","TOTAL","OC9","D","Y30-49","2011","114","","" +"SI","M","POP","TOTAL","OC9","D","Y50-64","2011","78","","" +"SI","M","POP","TOTAL","OC9","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","E","Y15-29","2011","427","","" +"SI","M","POP","TOTAL","OC9","E","Y30-49","2011","1736","","" +"SI","M","POP","TOTAL","OC9","E","Y50-64","2011","903","","" +"SI","M","POP","TOTAL","OC9","E","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC9","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","F","Y15-29","2011","3705","","" +"SI","M","POP","TOTAL","OC9","F","Y30-49","2011","8434","","" +"SI","M","POP","TOTAL","OC9","F","Y50-64","2011","2969","","" +"SI","M","POP","TOTAL","OC9","F","Y65-84","2011","6","","" +"SI","M","POP","TOTAL","OC9","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","G","Y15-29","2011","932","","" +"SI","M","POP","TOTAL","OC9","G","Y30-49","2011","2047","","" +"SI","M","POP","TOTAL","OC9","G","Y50-64","2011","769","","" +"SI","M","POP","TOTAL","OC9","G","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC9","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","H","Y15-29","2011","400","","" +"SI","M","POP","TOTAL","OC9","H","Y30-49","2011","999","","" +"SI","M","POP","TOTAL","OC9","H","Y50-64","2011","487","","" +"SI","M","POP","TOTAL","OC9","H","Y65-84","2011","2","","" +"SI","M","POP","TOTAL","OC9","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","I","Y15-29","2011","611","","" +"SI","M","POP","TOTAL","OC9","I","Y30-49","2011","683","","" +"SI","M","POP","TOTAL","OC9","I","Y50-64","2011","207","","" +"SI","M","POP","TOTAL","OC9","I","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC9","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","J","Y15-29","2011","29","","" +"SI","M","POP","TOTAL","OC9","J","Y30-49","2011","93","","" +"SI","M","POP","TOTAL","OC9","J","Y50-64","2011","39","","" +"SI","M","POP","TOTAL","OC9","J","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","K","Y15-29","2011","17","","" +"SI","M","POP","TOTAL","OC9","K","Y30-49","2011","66","","" +"SI","M","POP","TOTAL","OC9","K","Y50-64","2011","36","","" +"SI","M","POP","TOTAL","OC9","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","L","Y15-29","2011","20","","" +"SI","M","POP","TOTAL","OC9","L","Y30-49","2011","107","","" +"SI","M","POP","TOTAL","OC9","L","Y50-64","2011","88","","" +"SI","M","POP","TOTAL","OC9","L","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","M","Y15-29","2011","375","","" +"SI","M","POP","TOTAL","OC9","M","Y30-49","2011","625","","" +"SI","M","POP","TOTAL","OC9","M","Y50-64","2011","273","","" +"SI","M","POP","TOTAL","OC9","M","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","N","Y15-29","2011","1408","","" +"SI","M","POP","TOTAL","OC9","N","Y30-49","2011","1930","","" +"SI","M","POP","TOTAL","OC9","N","Y50-64","2011","693","","" +"SI","M","POP","TOTAL","OC9","N","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC9","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","O","Y15-29","2011","66","","" +"SI","M","POP","TOTAL","OC9","O","Y30-49","2011","347","","" +"SI","M","POP","TOTAL","OC9","O","Y50-64","2011","378","","" +"SI","M","POP","TOTAL","OC9","O","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC9","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","P","Y15-29","2011","53","","" +"SI","M","POP","TOTAL","OC9","P","Y30-49","2011","147","","" +"SI","M","POP","TOTAL","OC9","P","Y50-64","2011","121","","" +"SI","M","POP","TOTAL","OC9","P","Y65-84","2011","1","","" +"SI","M","POP","TOTAL","OC9","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","Q","Y15-29","2011","122","","" +"SI","M","POP","TOTAL","OC9","Q","Y30-49","2011","360","","" +"SI","M","POP","TOTAL","OC9","Q","Y50-64","2011","144","","" +"SI","M","POP","TOTAL","OC9","Q","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","R","Y15-29","2011","45","","" +"SI","M","POP","TOTAL","OC9","R","Y30-49","2011","189","","" +"SI","M","POP","TOTAL","OC9","R","Y50-64","2011","149","","" +"SI","M","POP","TOTAL","OC9","R","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","S","Y15-29","2011","63","","" +"SI","M","POP","TOTAL","OC9","S","Y30-49","2011","173","","" +"SI","M","POP","TOTAL","OC9","S","Y50-64","2011","77","","" +"SI","M","POP","TOTAL","OC9","S","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","T","Y15-29","2011","29","","" +"SI","M","POP","TOTAL","OC9","T","Y30-49","2011","69","","" +"SI","M","POP","TOTAL","OC9","T","Y50-64","2011","58","","" +"SI","M","POP","TOTAL","OC9","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC9","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC9","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC9","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"SI","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"SI","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"SI","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"SI","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"SI","M","POP","TOTAL","UNK","UNK","Y15-29","2011","353","","" +"SI","M","POP","TOTAL","UNK","UNK","Y30-49","2011","2313","","" +"SI","M","POP","TOTAL","UNK","UNK","Y50-64","2011","866","","" +"SI","M","POP","TOTAL","UNK","UNK","Y65-84","2011","8","","" +"SI","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"SI","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","NAP","Y15-29","2011","2441355","","" +"UK","F","POP","TOTAL","NAP","NAP","Y30-49","2011","1794240","","" +"UK","F","POP","TOTAL","NAP","NAP","Y50-64","2011","2203560","","" +"UK","F","POP","TOTAL","NAP","NAP","Y65-84","2011","4427120","","" +"UK","F","POP","TOTAL","NAP","NAP","Y_GE85","2011","924955","","" +"UK","F","POP","TOTAL","NAP","NAP","Y_LT15","2011","5418565","","" +"UK","F","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","B","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","C","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","G","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","N","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","O","Y15-29","2011","700","","" +"UK","F","POP","TOTAL","OC0","O","Y30-49","2011","505","","" +"UK","F","POP","TOTAL","OC0","O","Y50-64","2011","60","","" +"UK","F","POP","TOTAL","OC0","O","Y65-84","2011","5","","" +"UK","F","POP","TOTAL","OC0","O","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","P","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","Q","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","U","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","U","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","U","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","A","Y15-29","2011","545","","" +"UK","F","POP","TOTAL","OC1","A","Y30-49","2011","2740","","" +"UK","F","POP","TOTAL","OC1","A","Y50-64","2011","2645","","" +"UK","F","POP","TOTAL","OC1","A","Y65-84","2011","1340","","" +"UK","F","POP","TOTAL","OC1","A","Y_GE85","2011","65","","" +"UK","F","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","B","Y15-29","2011","85","","" +"UK","F","POP","TOTAL","OC1","B","Y30-49","2011","710","","" +"UK","F","POP","TOTAL","OC1","B","Y50-64","2011","200","","" +"UK","F","POP","TOTAL","OC1","B","Y65-84","2011","15","","" +"UK","F","POP","TOTAL","OC1","B","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","C","Y15-29","2011","5730","","" +"UK","F","POP","TOTAL","OC1","C","Y30-49","2011","37290","","" +"UK","F","POP","TOTAL","OC1","C","Y50-64","2011","15900","","" +"UK","F","POP","TOTAL","OC1","C","Y65-84","2011","2545","","" +"UK","F","POP","TOTAL","OC1","C","Y_GE85","2011","105","","" +"UK","F","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","D","Y15-29","2011","675","","" +"UK","F","POP","TOTAL","OC1","D","Y30-49","2011","2710","","" +"UK","F","POP","TOTAL","OC1","D","Y50-64","2011","535","","" +"UK","F","POP","TOTAL","OC1","D","Y65-84","2011","40","","" +"UK","F","POP","TOTAL","OC1","D","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","E","Y15-29","2011","495","","" +"UK","F","POP","TOTAL","OC1","E","Y30-49","2011","2610","","" +"UK","F","POP","TOTAL","OC1","E","Y50-64","2011","925","","" +"UK","F","POP","TOTAL","OC1","E","Y65-84","2011","115","","" +"UK","F","POP","TOTAL","OC1","E","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","F","Y15-29","2011","2525","","" +"UK","F","POP","TOTAL","OC1","F","Y30-49","2011","17170","","" +"UK","F","POP","TOTAL","OC1","F","Y50-64","2011","9370","","" +"UK","F","POP","TOTAL","OC1","F","Y65-84","2011","1655","","" +"UK","F","POP","TOTAL","OC1","F","Y_GE85","2011","65","","" +"UK","F","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","G","Y15-29","2011","57665","","" +"UK","F","POP","TOTAL","OC1","G","Y30-49","2011","156185","","" +"UK","F","POP","TOTAL","OC1","G","Y50-64","2011","74525","","" +"UK","F","POP","TOTAL","OC1","G","Y65-84","2011","11295","","" +"UK","F","POP","TOTAL","OC1","G","Y_GE85","2011","450","","" +"UK","F","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","H","Y15-29","2011","2585","","" +"UK","F","POP","TOTAL","OC1","H","Y30-49","2011","14620","","" +"UK","F","POP","TOTAL","OC1","H","Y50-64","2011","6335","","" +"UK","F","POP","TOTAL","OC1","H","Y65-84","2011","820","","" +"UK","F","POP","TOTAL","OC1","H","Y_GE85","2011","30","","" +"UK","F","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","I","Y15-29","2011","34950","","" +"UK","F","POP","TOTAL","OC1","I","Y30-49","2011","70360","","" +"UK","F","POP","TOTAL","OC1","I","Y50-64","2011","38635","","" +"UK","F","POP","TOTAL","OC1","I","Y65-84","2011","5945","","" +"UK","F","POP","TOTAL","OC1","I","Y_GE85","2011","240","","" +"UK","F","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","J","Y15-29","2011","3915","","" +"UK","F","POP","TOTAL","OC1","J","Y30-49","2011","24185","","" +"UK","F","POP","TOTAL","OC1","J","Y50-64","2011","6745","","" +"UK","F","POP","TOTAL","OC1","J","Y65-84","2011","645","","" +"UK","F","POP","TOTAL","OC1","J","Y_GE85","2011","40","","" +"UK","F","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","K","Y15-29","2011","13805","","" +"UK","F","POP","TOTAL","OC1","K","Y30-49","2011","54430","","" +"UK","F","POP","TOTAL","OC1","K","Y50-64","2011","12230","","" +"UK","F","POP","TOTAL","OC1","K","Y65-84","2011","660","","" +"UK","F","POP","TOTAL","OC1","K","Y_GE85","2011","50","","" +"UK","F","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","L","Y15-29","2011","5085","","" +"UK","F","POP","TOTAL","OC1","L","Y30-49","2011","23700","","" +"UK","F","POP","TOTAL","OC1","L","Y50-64","2011","15240","","" +"UK","F","POP","TOTAL","OC1","L","Y65-84","2011","2445","","" +"UK","F","POP","TOTAL","OC1","L","Y_GE85","2011","140","","" +"UK","F","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","M","Y15-29","2011","7955","","" +"UK","F","POP","TOTAL","OC1","M","Y30-49","2011","48400","","" +"UK","F","POP","TOTAL","OC1","M","Y50-64","2011","16855","","" +"UK","F","POP","TOTAL","OC1","M","Y65-84","2011","1710","","" +"UK","F","POP","TOTAL","OC1","M","Y_GE85","2011","45","","" +"UK","F","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","N","Y15-29","2011","8950","","" +"UK","F","POP","TOTAL","OC1","N","Y30-49","2011","37235","","" +"UK","F","POP","TOTAL","OC1","N","Y50-64","2011","15960","","" +"UK","F","POP","TOTAL","OC1","N","Y65-84","2011","1935","","" +"UK","F","POP","TOTAL","OC1","N","Y_GE85","2011","40","","" +"UK","F","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","O","Y15-29","2011","4595","","" +"UK","F","POP","TOTAL","OC1","O","Y30-49","2011","28265","","" +"UK","F","POP","TOTAL","OC1","O","Y50-64","2011","14760","","" +"UK","F","POP","TOTAL","OC1","O","Y65-84","2011","1430","","" +"UK","F","POP","TOTAL","OC1","O","Y_GE85","2011","70","","" +"UK","F","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","P","Y15-29","2011","3305","","" +"UK","F","POP","TOTAL","OC1","P","Y30-49","2011","22935","","" +"UK","F","POP","TOTAL","OC1","P","Y50-64","2011","14545","","" +"UK","F","POP","TOTAL","OC1","P","Y65-84","2011","1280","","" +"UK","F","POP","TOTAL","OC1","P","Y_GE85","2011","35","","" +"UK","F","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","Q","Y15-29","2011","11620","","" +"UK","F","POP","TOTAL","OC1","Q","Y30-49","2011","85020","","" +"UK","F","POP","TOTAL","OC1","Q","Y50-64","2011","60560","","" +"UK","F","POP","TOTAL","OC1","Q","Y65-84","2011","5355","","" +"UK","F","POP","TOTAL","OC1","Q","Y_GE85","2011","570","","" +"UK","F","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","R","Y15-29","2011","8715","","" +"UK","F","POP","TOTAL","OC1","R","Y30-49","2011","21110","","" +"UK","F","POP","TOTAL","OC1","R","Y50-64","2011","9595","","" +"UK","F","POP","TOTAL","OC1","R","Y65-84","2011","980","","" +"UK","F","POP","TOTAL","OC1","R","Y_GE85","2011","30","","" +"UK","F","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","S","Y15-29","2011","4915","","" +"UK","F","POP","TOTAL","OC1","S","Y30-49","2011","18020","","" +"UK","F","POP","TOTAL","OC1","S","Y50-64","2011","9085","","" +"UK","F","POP","TOTAL","OC1","S","Y65-84","2011","1405","","" +"UK","F","POP","TOTAL","OC1","S","Y_GE85","2011","45","","" +"UK","F","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","T","Y15-29","2011","55","","" +"UK","F","POP","TOTAL","OC1","T","Y30-49","2011","180","","" +"UK","F","POP","TOTAL","OC1","T","Y50-64","2011","135","","" +"UK","F","POP","TOTAL","OC1","T","Y65-84","2011","25","","" +"UK","F","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","U","Y15-29","2011","155","","" +"UK","F","POP","TOTAL","OC1","U","Y30-49","2011","570","","" +"UK","F","POP","TOTAL","OC1","U","Y50-64","2011","265","","" +"UK","F","POP","TOTAL","OC1","U","Y65-84","2011","35","","" +"UK","F","POP","TOTAL","OC1","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","A","Y15-29","2011","375","","" +"UK","F","POP","TOTAL","OC2","A","Y30-49","2011","965","","" +"UK","F","POP","TOTAL","OC2","A","Y50-64","2011","455","","" +"UK","F","POP","TOTAL","OC2","A","Y65-84","2011","165","","" +"UK","F","POP","TOTAL","OC2","A","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","B","Y15-29","2011","720","","" +"UK","F","POP","TOTAL","OC2","B","Y30-49","2011","1750","","" +"UK","F","POP","TOTAL","OC2","B","Y50-64","2011","255","","" +"UK","F","POP","TOTAL","OC2","B","Y65-84","2011","20","","" +"UK","F","POP","TOTAL","OC2","B","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","C","Y15-29","2011","10270","","" +"UK","F","POP","TOTAL","OC2","C","Y30-49","2011","30425","","" +"UK","F","POP","TOTAL","OC2","C","Y50-64","2011","7650","","" +"UK","F","POP","TOTAL","OC2","C","Y65-84","2011","650","","" +"UK","F","POP","TOTAL","OC2","C","Y_GE85","2011","65","","" +"UK","F","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","D","Y15-29","2011","1325","","" +"UK","F","POP","TOTAL","OC2","D","Y30-49","2011","3575","","" +"UK","F","POP","TOTAL","OC2","D","Y50-64","2011","650","","" +"UK","F","POP","TOTAL","OC2","D","Y65-84","2011","25","","" +"UK","F","POP","TOTAL","OC2","D","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","E","Y15-29","2011","900","","" +"UK","F","POP","TOTAL","OC2","E","Y30-49","2011","2550","","" +"UK","F","POP","TOTAL","OC2","E","Y50-64","2011","530","","" +"UK","F","POP","TOTAL","OC2","E","Y65-84","2011","25","","" +"UK","F","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","F","Y15-29","2011","4975","","" +"UK","F","POP","TOTAL","OC2","F","Y30-49","2011","12405","","" +"UK","F","POP","TOTAL","OC2","F","Y50-64","2011","3460","","" +"UK","F","POP","TOTAL","OC2","F","Y65-84","2011","360","","" +"UK","F","POP","TOTAL","OC2","F","Y_GE85","2011","40","","" +"UK","F","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","G","Y15-29","2011","17895","","" +"UK","F","POP","TOTAL","OC2","G","Y30-49","2011","37345","","" +"UK","F","POP","TOTAL","OC2","G","Y50-64","2011","11870","","" +"UK","F","POP","TOTAL","OC2","G","Y65-84","2011","1225","","" +"UK","F","POP","TOTAL","OC2","G","Y_GE85","2011","60","","" +"UK","F","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","H","Y15-29","2011","1800","","" +"UK","F","POP","TOTAL","OC2","H","Y30-49","2011","6870","","" +"UK","F","POP","TOTAL","OC2","H","Y50-64","2011","1665","","" +"UK","F","POP","TOTAL","OC2","H","Y65-84","2011","130","","" +"UK","F","POP","TOTAL","OC2","H","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","I","Y15-29","2011","2135","","" +"UK","F","POP","TOTAL","OC2","I","Y30-49","2011","5015","","" +"UK","F","POP","TOTAL","OC2","I","Y50-64","2011","2425","","" +"UK","F","POP","TOTAL","OC2","I","Y65-84","2011","370","","" +"UK","F","POP","TOTAL","OC2","I","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","J","Y15-29","2011","24765","","" +"UK","F","POP","TOTAL","OC2","J","Y30-49","2011","68680","","" +"UK","F","POP","TOTAL","OC2","J","Y50-64","2011","14880","","" +"UK","F","POP","TOTAL","OC2","J","Y65-84","2011","1180","","" +"UK","F","POP","TOTAL","OC2","J","Y_GE85","2011","70","","" +"UK","F","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","K","Y15-29","2011","12225","","" +"UK","F","POP","TOTAL","OC2","K","Y30-49","2011","40125","","" +"UK","F","POP","TOTAL","OC2","K","Y50-64","2011","6465","","" +"UK","F","POP","TOTAL","OC2","K","Y65-84","2011","320","","" +"UK","F","POP","TOTAL","OC2","K","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","L","Y15-29","2011","2855","","" +"UK","F","POP","TOTAL","OC2","L","Y30-49","2011","8070","","" +"UK","F","POP","TOTAL","OC2","L","Y50-64","2011","2590","","" +"UK","F","POP","TOTAL","OC2","L","Y65-84","2011","225","","" +"UK","F","POP","TOTAL","OC2","L","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","M","Y15-29","2011","75670","","" +"UK","F","POP","TOTAL","OC2","M","Y30-49","2011","143095","","" +"UK","F","POP","TOTAL","OC2","M","Y50-64","2011","34960","","" +"UK","F","POP","TOTAL","OC2","M","Y65-84","2011","3235","","" +"UK","F","POP","TOTAL","OC2","M","Y_GE85","2011","140","","" +"UK","F","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","N","Y15-29","2011","5770","","" +"UK","F","POP","TOTAL","OC2","N","Y30-49","2011","14295","","" +"UK","F","POP","TOTAL","OC2","N","Y50-64","2011","5165","","" +"UK","F","POP","TOTAL","OC2","N","Y65-84","2011","615","","" +"UK","F","POP","TOTAL","OC2","N","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","O","Y15-29","2011","15475","","" +"UK","F","POP","TOTAL","OC2","O","Y30-49","2011","65020","","" +"UK","F","POP","TOTAL","OC2","O","Y50-64","2011","27295","","" +"UK","F","POP","TOTAL","OC2","O","Y65-84","2011","1785","","" +"UK","F","POP","TOTAL","OC2","O","Y_GE85","2011","85","","" +"UK","F","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","P","Y15-29","2011","167550","","" +"UK","F","POP","TOTAL","OC2","P","Y30-49","2011","485675","","" +"UK","F","POP","TOTAL","OC2","P","Y50-64","2011","271785","","" +"UK","F","POP","TOTAL","OC2","P","Y65-84","2011","23295","","" +"UK","F","POP","TOTAL","OC2","P","Y_GE85","2011","710","","" +"UK","F","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","Q","Y15-29","2011","150735","","" +"UK","F","POP","TOTAL","OC2","Q","Y30-49","2011","522670","","" +"UK","F","POP","TOTAL","OC2","Q","Y50-64","2011","240075","","" +"UK","F","POP","TOTAL","OC2","Q","Y65-84","2011","18800","","" +"UK","F","POP","TOTAL","OC2","Q","Y_GE85","2011","690","","" +"UK","F","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","R","Y15-29","2011","5755","","" +"UK","F","POP","TOTAL","OC2","R","Y30-49","2011","14960","","" +"UK","F","POP","TOTAL","OC2","R","Y50-64","2011","7250","","" +"UK","F","POP","TOTAL","OC2","R","Y65-84","2011","1010","","" +"UK","F","POP","TOTAL","OC2","R","Y_GE85","2011","40","","" +"UK","F","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","S","Y15-29","2011","4560","","" +"UK","F","POP","TOTAL","OC2","S","Y30-49","2011","12660","","" +"UK","F","POP","TOTAL","OC2","S","Y50-64","2011","7550","","" +"UK","F","POP","TOTAL","OC2","S","Y65-84","2011","1210","","" +"UK","F","POP","TOTAL","OC2","S","Y_GE85","2011","75","","" +"UK","F","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","T","Y15-29","2011","85","","" +"UK","F","POP","TOTAL","OC2","T","Y30-49","2011","160","","" +"UK","F","POP","TOTAL","OC2","T","Y50-64","2011","80","","" +"UK","F","POP","TOTAL","OC2","T","Y65-84","2011","20","","" +"UK","F","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","U","Y15-29","2011","370","","" +"UK","F","POP","TOTAL","OC2","U","Y30-49","2011","765","","" +"UK","F","POP","TOTAL","OC2","U","Y50-64","2011","280","","" +"UK","F","POP","TOTAL","OC2","U","Y65-84","2011","50","","" +"UK","F","POP","TOTAL","OC2","U","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","A","Y15-29","2011","540","","" +"UK","F","POP","TOTAL","OC3","A","Y30-49","2011","1015","","" +"UK","F","POP","TOTAL","OC3","A","Y50-64","2011","450","","" +"UK","F","POP","TOTAL","OC3","A","Y65-84","2011","100","","" +"UK","F","POP","TOTAL","OC3","A","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","B","Y15-29","2011","725","","" +"UK","F","POP","TOTAL","OC3","B","Y30-49","2011","1805","","" +"UK","F","POP","TOTAL","OC3","B","Y50-64","2011","365","","" +"UK","F","POP","TOTAL","OC3","B","Y65-84","2011","15","","" +"UK","F","POP","TOTAL","OC3","B","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","C","Y15-29","2011","20785","","" +"UK","F","POP","TOTAL","OC3","C","Y30-49","2011","55150","","" +"UK","F","POP","TOTAL","OC3","C","Y50-64","2011","16355","","" +"UK","F","POP","TOTAL","OC3","C","Y65-84","2011","1380","","" +"UK","F","POP","TOTAL","OC3","C","Y_GE85","2011","75","","" +"UK","F","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","D","Y15-29","2011","2310","","" +"UK","F","POP","TOTAL","OC3","D","Y30-49","2011","4215","","" +"UK","F","POP","TOTAL","OC3","D","Y50-64","2011","950","","" +"UK","F","POP","TOTAL","OC3","D","Y65-84","2011","65","","" +"UK","F","POP","TOTAL","OC3","D","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","E","Y15-29","2011","1485","","" +"UK","F","POP","TOTAL","OC3","E","Y30-49","2011","3410","","" +"UK","F","POP","TOTAL","OC3","E","Y50-64","2011","900","","" +"UK","F","POP","TOTAL","OC3","E","Y65-84","2011","50","","" +"UK","F","POP","TOTAL","OC3","E","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","F","Y15-29","2011","6410","","" +"UK","F","POP","TOTAL","OC3","F","Y30-49","2011","15340","","" +"UK","F","POP","TOTAL","OC3","F","Y50-64","2011","6405","","" +"UK","F","POP","TOTAL","OC3","F","Y65-84","2011","660","","" +"UK","F","POP","TOTAL","OC3","F","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","G","Y15-29","2011","40665","","" +"UK","F","POP","TOTAL","OC3","G","Y30-49","2011","75540","","" +"UK","F","POP","TOTAL","OC3","G","Y50-64","2011","22845","","" +"UK","F","POP","TOTAL","OC3","G","Y65-84","2011","2230","","" +"UK","F","POP","TOTAL","OC3","G","Y_GE85","2011","85","","" +"UK","F","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","H","Y15-29","2011","5190","","" +"UK","F","POP","TOTAL","OC3","H","Y30-49","2011","13235","","" +"UK","F","POP","TOTAL","OC3","H","Y50-64","2011","3845","","" +"UK","F","POP","TOTAL","OC3","H","Y65-84","2011","285","","" +"UK","F","POP","TOTAL","OC3","H","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","I","Y15-29","2011","11595","","" +"UK","F","POP","TOTAL","OC3","I","Y30-49","2011","11825","","" +"UK","F","POP","TOTAL","OC3","I","Y50-64","2011","3675","","" +"UK","F","POP","TOTAL","OC3","I","Y65-84","2011","460","","" +"UK","F","POP","TOTAL","OC3","I","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","J","Y15-29","2011","28035","","" +"UK","F","POP","TOTAL","OC3","J","Y30-49","2011","55055","","" +"UK","F","POP","TOTAL","OC3","J","Y50-64","2011","11750","","" +"UK","F","POP","TOTAL","OC3","J","Y65-84","2011","1160","","" +"UK","F","POP","TOTAL","OC3","J","Y_GE85","2011","65","","" +"UK","F","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","K","Y15-29","2011","43110","","" +"UK","F","POP","TOTAL","OC3","K","Y30-49","2011","84020","","" +"UK","F","POP","TOTAL","OC3","K","Y50-64","2011","17325","","" +"UK","F","POP","TOTAL","OC3","K","Y65-84","2011","1010","","" +"UK","F","POP","TOTAL","OC3","K","Y_GE85","2011","40","","" +"UK","F","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","L","Y15-29","2011","15375","","" +"UK","F","POP","TOTAL","OC3","L","Y30-49","2011","34775","","" +"UK","F","POP","TOTAL","OC3","L","Y50-64","2011","15595","","" +"UK","F","POP","TOTAL","OC3","L","Y65-84","2011","1340","","" +"UK","F","POP","TOTAL","OC3","L","Y_GE85","2011","35","","" +"UK","F","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","M","Y15-29","2011","60865","","" +"UK","F","POP","TOTAL","OC3","M","Y30-49","2011","102305","","" +"UK","F","POP","TOTAL","OC3","M","Y50-64","2011","30430","","" +"UK","F","POP","TOTAL","OC3","M","Y65-84","2011","3275","","" +"UK","F","POP","TOTAL","OC3","M","Y_GE85","2011","85","","" +"UK","F","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","N","Y15-29","2011","31195","","" +"UK","F","POP","TOTAL","OC3","N","Y30-49","2011","41255","","" +"UK","F","POP","TOTAL","OC3","N","Y50-64","2011","10005","","" +"UK","F","POP","TOTAL","OC3","N","Y65-84","2011","855","","" +"UK","F","POP","TOTAL","OC3","N","Y_GE85","2011","45","","" +"UK","F","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","O","Y15-29","2011","42050","","" +"UK","F","POP","TOTAL","OC3","O","Y30-49","2011","121605","","" +"UK","F","POP","TOTAL","OC3","O","Y50-64","2011","36700","","" +"UK","F","POP","TOTAL","OC3","O","Y65-84","2011","1830","","" +"UK","F","POP","TOTAL","OC3","O","Y_GE85","2011","155","","" +"UK","F","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","P","Y15-29","2011","36160","","" +"UK","F","POP","TOTAL","OC3","P","Y30-49","2011","85955","","" +"UK","F","POP","TOTAL","OC3","P","Y50-64","2011","42755","","" +"UK","F","POP","TOTAL","OC3","P","Y65-84","2011","4240","","" +"UK","F","POP","TOTAL","OC3","P","Y_GE85","2011","135","","" +"UK","F","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","Q","Y15-29","2011","103045","","" +"UK","F","POP","TOTAL","OC3","Q","Y30-49","2011","235190","","" +"UK","F","POP","TOTAL","OC3","Q","Y50-64","2011","129070","","" +"UK","F","POP","TOTAL","OC3","Q","Y65-84","2011","10570","","" +"UK","F","POP","TOTAL","OC3","Q","Y_GE85","2011","270","","" +"UK","F","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","R","Y15-29","2011","30070","","" +"UK","F","POP","TOTAL","OC3","R","Y30-49","2011","43045","","" +"UK","F","POP","TOTAL","OC3","R","Y50-64","2011","14990","","" +"UK","F","POP","TOTAL","OC3","R","Y65-84","2011","2855","","" +"UK","F","POP","TOTAL","OC3","R","Y_GE85","2011","145","","" +"UK","F","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","S","Y15-29","2011","9795","","" +"UK","F","POP","TOTAL","OC3","S","Y30-49","2011","19215","","" +"UK","F","POP","TOTAL","OC3","S","Y50-64","2011","7990","","" +"UK","F","POP","TOTAL","OC3","S","Y65-84","2011","1055","","" +"UK","F","POP","TOTAL","OC3","S","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","T","Y15-29","2011","75","","" +"UK","F","POP","TOTAL","OC3","T","Y30-49","2011","180","","" +"UK","F","POP","TOTAL","OC3","T","Y50-64","2011","90","","" +"UK","F","POP","TOTAL","OC3","T","Y65-84","2011","25","","" +"UK","F","POP","TOTAL","OC3","T","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","U","Y15-29","2011","820","","" +"UK","F","POP","TOTAL","OC3","U","Y30-49","2011","960","","" +"UK","F","POP","TOTAL","OC3","U","Y50-64","2011","280","","" +"UK","F","POP","TOTAL","OC3","U","Y65-84","2011","45","","" +"UK","F","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","A","Y15-29","2011","985","","" +"UK","F","POP","TOTAL","OC4","A","Y30-49","2011","4790","","" +"UK","F","POP","TOTAL","OC4","A","Y50-64","2011","4160","","" +"UK","F","POP","TOTAL","OC4","A","Y65-84","2011","1490","","" +"UK","F","POP","TOTAL","OC4","A","Y_GE85","2011","55","","" +"UK","F","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","B","Y15-29","2011","1120","","" +"UK","F","POP","TOTAL","OC4","B","Y30-49","2011","2340","","" +"UK","F","POP","TOTAL","OC4","B","Y50-64","2011","1140","","" +"UK","F","POP","TOTAL","OC4","B","Y65-84","2011","105","","" +"UK","F","POP","TOTAL","OC4","B","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","C","Y15-29","2011","28490","","" +"UK","F","POP","TOTAL","OC4","C","Y30-49","2011","80245","","" +"UK","F","POP","TOTAL","OC4","C","Y50-64","2011","49120","","" +"UK","F","POP","TOTAL","OC4","C","Y65-84","2011","7010","","" +"UK","F","POP","TOTAL","OC4","C","Y_GE85","2011","275","","" +"UK","F","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","D","Y15-29","2011","3310","","" +"UK","F","POP","TOTAL","OC4","D","Y30-49","2011","5625","","" +"UK","F","POP","TOTAL","OC4","D","Y50-64","2011","2870","","" +"UK","F","POP","TOTAL","OC4","D","Y65-84","2011","275","","" +"UK","F","POP","TOTAL","OC4","D","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","E","Y15-29","2011","3780","","" +"UK","F","POP","TOTAL","OC4","E","Y30-49","2011","7580","","" +"UK","F","POP","TOTAL","OC4","E","Y50-64","2011","4000","","" +"UK","F","POP","TOTAL","OC4","E","Y65-84","2011","365","","" +"UK","F","POP","TOTAL","OC4","E","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","F","Y15-29","2011","23635","","" +"UK","F","POP","TOTAL","OC4","F","Y30-49","2011","68245","","" +"UK","F","POP","TOTAL","OC4","F","Y50-64","2011","40480","","" +"UK","F","POP","TOTAL","OC4","F","Y65-84","2011","5660","","" +"UK","F","POP","TOTAL","OC4","F","Y_GE85","2011","150","","" +"UK","F","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","G","Y15-29","2011","68355","","" +"UK","F","POP","TOTAL","OC4","G","Y30-49","2011","134505","","" +"UK","F","POP","TOTAL","OC4","G","Y50-64","2011","81650","","" +"UK","F","POP","TOTAL","OC4","G","Y65-84","2011","11390","","" +"UK","F","POP","TOTAL","OC4","G","Y_GE85","2011","365","","" +"UK","F","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","H","Y15-29","2011","17910","","" +"UK","F","POP","TOTAL","OC4","H","Y30-49","2011","43570","","" +"UK","F","POP","TOTAL","OC4","H","Y50-64","2011","26245","","" +"UK","F","POP","TOTAL","OC4","H","Y65-84","2011","3320","","" +"UK","F","POP","TOTAL","OC4","H","Y_GE85","2011","130","","" +"UK","F","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","I","Y15-29","2011","23660","","" +"UK","F","POP","TOTAL","OC4","I","Y30-49","2011","23705","","" +"UK","F","POP","TOTAL","OC4","I","Y50-64","2011","10940","","" +"UK","F","POP","TOTAL","OC4","I","Y65-84","2011","1745","","" +"UK","F","POP","TOTAL","OC4","I","Y_GE85","2011","65","","" +"UK","F","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","J","Y15-29","2011","17155","","" +"UK","F","POP","TOTAL","OC4","J","Y30-49","2011","36020","","" +"UK","F","POP","TOTAL","OC4","J","Y50-64","2011","15915","","" +"UK","F","POP","TOTAL","OC4","J","Y65-84","2011","1735","","" +"UK","F","POP","TOTAL","OC4","J","Y_GE85","2011","80","","" +"UK","F","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","K","Y15-29","2011","86030","","" +"UK","F","POP","TOTAL","OC4","K","Y30-49","2011","136250","","" +"UK","F","POP","TOTAL","OC4","K","Y50-64","2011","59810","","" +"UK","F","POP","TOTAL","OC4","K","Y65-84","2011","4310","","" +"UK","F","POP","TOTAL","OC4","K","Y_GE85","2011","215","","" +"UK","F","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","L","Y15-29","2011","14840","","" +"UK","F","POP","TOTAL","OC4","L","Y30-49","2011","30100","","" +"UK","F","POP","TOTAL","OC4","L","Y50-64","2011","18435","","" +"UK","F","POP","TOTAL","OC4","L","Y65-84","2011","2400","","" +"UK","F","POP","TOTAL","OC4","L","Y_GE85","2011","80","","" +"UK","F","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","M","Y15-29","2011","61780","","" +"UK","F","POP","TOTAL","OC4","M","Y30-49","2011","135775","","" +"UK","F","POP","TOTAL","OC4","M","Y50-64","2011","88375","","" +"UK","F","POP","TOTAL","OC4","M","Y65-84","2011","12755","","" +"UK","F","POP","TOTAL","OC4","M","Y_GE85","2011","290","","" +"UK","F","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","N","Y15-29","2011","46040","","" +"UK","F","POP","TOTAL","OC4","N","Y30-49","2011","69865","","" +"UK","F","POP","TOTAL","OC4","N","Y50-64","2011","31465","","" +"UK","F","POP","TOTAL","OC4","N","Y65-84","2011","3820","","" +"UK","F","POP","TOTAL","OC4","N","Y_GE85","2011","135","","" +"UK","F","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","O","Y15-29","2011","60160","","" +"UK","F","POP","TOTAL","OC4","O","Y30-49","2011","215615","","" +"UK","F","POP","TOTAL","OC4","O","Y50-64","2011","129950","","" +"UK","F","POP","TOTAL","OC4","O","Y65-84","2011","8045","","" +"UK","F","POP","TOTAL","OC4","O","Y_GE85","2011","505","","" +"UK","F","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","P","Y15-29","2011","28995","","" +"UK","F","POP","TOTAL","OC4","P","Y30-49","2011","104945","","" +"UK","F","POP","TOTAL","OC4","P","Y50-64","2011","70905","","" +"UK","F","POP","TOTAL","OC4","P","Y65-84","2011","5725","","" +"UK","F","POP","TOTAL","OC4","P","Y_GE85","2011","150","","" +"UK","F","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","Q","Y15-29","2011","58160","","" +"UK","F","POP","TOTAL","OC4","Q","Y30-49","2011","177865","","" +"UK","F","POP","TOTAL","OC4","Q","Y50-64","2011","153490","","" +"UK","F","POP","TOTAL","OC4","Q","Y65-84","2011","15555","","" +"UK","F","POP","TOTAL","OC4","Q","Y_GE85","2011","340","","" +"UK","F","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","R","Y15-29","2011","23355","","" +"UK","F","POP","TOTAL","OC4","R","Y30-49","2011","32585","","" +"UK","F","POP","TOTAL","OC4","R","Y50-64","2011","24250","","" +"UK","F","POP","TOTAL","OC4","R","Y65-84","2011","2975","","" +"UK","F","POP","TOTAL","OC4","R","Y_GE85","2011","65","","" +"UK","F","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","S","Y15-29","2011","11505","","" +"UK","F","POP","TOTAL","OC4","S","Y30-49","2011","23850","","" +"UK","F","POP","TOTAL","OC4","S","Y50-64","2011","17305","","" +"UK","F","POP","TOTAL","OC4","S","Y65-84","2011","2945","","" +"UK","F","POP","TOTAL","OC4","S","Y_GE85","2011","80","","" +"UK","F","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","T","Y15-29","2011","265","","" +"UK","F","POP","TOTAL","OC4","T","Y30-49","2011","685","","" +"UK","F","POP","TOTAL","OC4","T","Y50-64","2011","400","","" +"UK","F","POP","TOTAL","OC4","T","Y65-84","2011","70","","" +"UK","F","POP","TOTAL","OC4","T","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","U","Y15-29","2011","510","","" +"UK","F","POP","TOTAL","OC4","U","Y30-49","2011","1500","","" +"UK","F","POP","TOTAL","OC4","U","Y50-64","2011","730","","" +"UK","F","POP","TOTAL","OC4","U","Y65-84","2011","105","","" +"UK","F","POP","TOTAL","OC4","U","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","A","Y15-29","2011","2345","","" +"UK","F","POP","TOTAL","OC5","A","Y30-49","2011","2320","","" +"UK","F","POP","TOTAL","OC5","A","Y50-64","2011","1650","","" +"UK","F","POP","TOTAL","OC5","A","Y65-84","2011","455","","" +"UK","F","POP","TOTAL","OC5","A","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","B","Y15-29","2011","100","","" +"UK","F","POP","TOTAL","OC5","B","Y30-49","2011","240","","" +"UK","F","POP","TOTAL","OC5","B","Y50-64","2011","85","","" +"UK","F","POP","TOTAL","OC5","B","Y65-84","2011","10","","" +"UK","F","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","C","Y15-29","2011","13350","","" +"UK","F","POP","TOTAL","OC5","C","Y30-49","2011","21290","","" +"UK","F","POP","TOTAL","OC5","C","Y50-64","2011","10545","","" +"UK","F","POP","TOTAL","OC5","C","Y65-84","2011","1525","","" +"UK","F","POP","TOTAL","OC5","C","Y_GE85","2011","50","","" +"UK","F","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","D","Y15-29","2011","6835","","" +"UK","F","POP","TOTAL","OC5","D","Y30-49","2011","7250","","" +"UK","F","POP","TOTAL","OC5","D","Y50-64","2011","2195","","" +"UK","F","POP","TOTAL","OC5","D","Y65-84","2011","95","","" +"UK","F","POP","TOTAL","OC5","D","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","E","Y15-29","2011","1780","","" +"UK","F","POP","TOTAL","OC5","E","Y30-49","2011","2385","","" +"UK","F","POP","TOTAL","OC5","E","Y50-64","2011","920","","" +"UK","F","POP","TOTAL","OC5","E","Y65-84","2011","70","","" +"UK","F","POP","TOTAL","OC5","E","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","F","Y15-29","2011","5910","","" +"UK","F","POP","TOTAL","OC5","F","Y30-49","2011","9145","","" +"UK","F","POP","TOTAL","OC5","F","Y50-64","2011","5440","","" +"UK","F","POP","TOTAL","OC5","F","Y65-84","2011","720","","" +"UK","F","POP","TOTAL","OC5","F","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","G","Y15-29","2011","598930","","" +"UK","F","POP","TOTAL","OC5","G","Y30-49","2011","457150","","" +"UK","F","POP","TOTAL","OC5","G","Y50-64","2011","281995","","" +"UK","F","POP","TOTAL","OC5","G","Y65-84","2011","36725","","" +"UK","F","POP","TOTAL","OC5","G","Y_GE85","2011","1115","","" +"UK","F","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","H","Y15-29","2011","20955","","" +"UK","F","POP","TOTAL","OC5","H","Y30-49","2011","36535","","" +"UK","F","POP","TOTAL","OC5","H","Y50-64","2011","15915","","" +"UK","F","POP","TOTAL","OC5","H","Y65-84","2011","2245","","" +"UK","F","POP","TOTAL","OC5","H","Y_GE85","2011","90","","" +"UK","F","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","I","Y15-29","2011","42440","","" +"UK","F","POP","TOTAL","OC5","I","Y30-49","2011","33225","","" +"UK","F","POP","TOTAL","OC5","I","Y50-64","2011","14930","","" +"UK","F","POP","TOTAL","OC5","I","Y65-84","2011","1795","","" +"UK","F","POP","TOTAL","OC5","I","Y_GE85","2011","80","","" +"UK","F","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","J","Y15-29","2011","16475","","" +"UK","F","POP","TOTAL","OC5","J","Y30-49","2011","17495","","" +"UK","F","POP","TOTAL","OC5","J","Y50-64","2011","5925","","" +"UK","F","POP","TOTAL","OC5","J","Y65-84","2011","555","","" +"UK","F","POP","TOTAL","OC5","J","Y_GE85","2011","35","","" +"UK","F","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","K","Y15-29","2011","26040","","" +"UK","F","POP","TOTAL","OC5","K","Y30-49","2011","26220","","" +"UK","F","POP","TOTAL","OC5","K","Y50-64","2011","9170","","" +"UK","F","POP","TOTAL","OC5","K","Y65-84","2011","785","","" +"UK","F","POP","TOTAL","OC5","K","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","L","Y15-29","2011","5305","","" +"UK","F","POP","TOTAL","OC5","L","Y30-49","2011","11390","","" +"UK","F","POP","TOTAL","OC5","L","Y50-64","2011","7950","","" +"UK","F","POP","TOTAL","OC5","L","Y65-84","2011","860","","" +"UK","F","POP","TOTAL","OC5","L","Y_GE85","2011","45","","" +"UK","F","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","M","Y15-29","2011","25255","","" +"UK","F","POP","TOTAL","OC5","M","Y30-49","2011","25465","","" +"UK","F","POP","TOTAL","OC5","M","Y50-64","2011","11985","","" +"UK","F","POP","TOTAL","OC5","M","Y65-84","2011","2075","","" +"UK","F","POP","TOTAL","OC5","M","Y_GE85","2011","55","","" +"UK","F","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","N","Y15-29","2011","36690","","" +"UK","F","POP","TOTAL","OC5","N","Y30-49","2011","35985","","" +"UK","F","POP","TOTAL","OC5","N","Y50-64","2011","15955","","" +"UK","F","POP","TOTAL","OC5","N","Y65-84","2011","2070","","" +"UK","F","POP","TOTAL","OC5","N","Y_GE85","2011","70","","" +"UK","F","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","O","Y15-29","2011","12580","","" +"UK","F","POP","TOTAL","OC5","O","Y30-49","2011","33510","","" +"UK","F","POP","TOTAL","OC5","O","Y50-64","2011","19775","","" +"UK","F","POP","TOTAL","OC5","O","Y65-84","2011","1710","","" +"UK","F","POP","TOTAL","OC5","O","Y_GE85","2011","65","","" +"UK","F","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","P","Y15-29","2011","97515","","" +"UK","F","POP","TOTAL","OC5","P","Y30-49","2011","310695","","" +"UK","F","POP","TOTAL","OC5","P","Y50-64","2011","140770","","" +"UK","F","POP","TOTAL","OC5","P","Y65-84","2011","7980","","" +"UK","F","POP","TOTAL","OC5","P","Y_GE85","2011","220","","" +"UK","F","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","Q","Y15-29","2011","273675","","" +"UK","F","POP","TOTAL","OC5","Q","Y30-49","2011","424460","","" +"UK","F","POP","TOTAL","OC5","Q","Y50-64","2011","240225","","" +"UK","F","POP","TOTAL","OC5","Q","Y65-84","2011","25030","","" +"UK","F","POP","TOTAL","OC5","Q","Y_GE85","2011","1280","","" +"UK","F","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","R","Y15-29","2011","34430","","" +"UK","F","POP","TOTAL","OC5","R","Y30-49","2011","18910","","" +"UK","F","POP","TOTAL","OC5","R","Y50-64","2011","8780","","" +"UK","F","POP","TOTAL","OC5","R","Y65-84","2011","1435","","" +"UK","F","POP","TOTAL","OC5","R","Y_GE85","2011","45","","" +"UK","F","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","S","Y15-29","2011","125950","","" +"UK","F","POP","TOTAL","OC5","S","Y30-49","2011","116740","","" +"UK","F","POP","TOTAL","OC5","S","Y50-64","2011","34930","","" +"UK","F","POP","TOTAL","OC5","S","Y65-84","2011","4750","","" +"UK","F","POP","TOTAL","OC5","S","Y_GE85","2011","145","","" +"UK","F","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","T","Y15-29","2011","6195","","" +"UK","F","POP","TOTAL","OC5","T","Y30-49","2011","8090","","" +"UK","F","POP","TOTAL","OC5","T","Y50-64","2011","3890","","" +"UK","F","POP","TOTAL","OC5","T","Y65-84","2011","515","","" +"UK","F","POP","TOTAL","OC5","T","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","U","Y15-29","2011","185","","" +"UK","F","POP","TOTAL","OC5","U","Y30-49","2011","225","","" +"UK","F","POP","TOTAL","OC5","U","Y50-64","2011","100","","" +"UK","F","POP","TOTAL","OC5","U","Y65-84","2011","15","","" +"UK","F","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","A","Y15-29","2011","1410","","" +"UK","F","POP","TOTAL","OC6","A","Y30-49","2011","7900","","" +"UK","F","POP","TOTAL","OC6","A","Y50-64","2011","10845","","" +"UK","F","POP","TOTAL","OC6","A","Y65-84","2011","6165","","" +"UK","F","POP","TOTAL","OC6","A","Y_GE85","2011","305","","" +"UK","F","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","B","Y15-29","2011","5","","" +"UK","F","POP","TOTAL","OC6","B","Y30-49","2011","5","","" +"UK","F","POP","TOTAL","OC6","B","Y50-64","2011","5","","" +"UK","F","POP","TOTAL","OC6","B","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC6","B","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","C","Y15-29","2011","90","","" +"UK","F","POP","TOTAL","OC6","C","Y30-49","2011","385","","" +"UK","F","POP","TOTAL","OC6","C","Y50-64","2011","440","","" +"UK","F","POP","TOTAL","OC6","C","Y65-84","2011","235","","" +"UK","F","POP","TOTAL","OC6","C","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","D","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC6","D","Y30-49","2011","10","","" +"UK","F","POP","TOTAL","OC6","D","Y50-64","2011","5","","" +"UK","F","POP","TOTAL","OC6","D","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC6","D","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","E","Y15-29","2011","5","","" +"UK","F","POP","TOTAL","OC6","E","Y30-49","2011","25","","" +"UK","F","POP","TOTAL","OC6","E","Y50-64","2011","5","","" +"UK","F","POP","TOTAL","OC6","E","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","F","Y15-29","2011","95","","" +"UK","F","POP","TOTAL","OC6","F","Y30-49","2011","295","","" +"UK","F","POP","TOTAL","OC6","F","Y50-64","2011","275","","" +"UK","F","POP","TOTAL","OC6","F","Y65-84","2011","90","","" +"UK","F","POP","TOTAL","OC6","F","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","G","Y15-29","2011","310","","" +"UK","F","POP","TOTAL","OC6","G","Y30-49","2011","1065","","" +"UK","F","POP","TOTAL","OC6","G","Y50-64","2011","1175","","" +"UK","F","POP","TOTAL","OC6","G","Y65-84","2011","515","","" +"UK","F","POP","TOTAL","OC6","G","Y_GE85","2011","30","","" +"UK","F","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","H","Y15-29","2011","15","","" +"UK","F","POP","TOTAL","OC6","H","Y30-49","2011","50","","" +"UK","F","POP","TOTAL","OC6","H","Y50-64","2011","75","","" +"UK","F","POP","TOTAL","OC6","H","Y65-84","2011","30","","" +"UK","F","POP","TOTAL","OC6","H","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","I","Y15-29","2011","85","","" +"UK","F","POP","TOTAL","OC6","I","Y30-49","2011","365","","" +"UK","F","POP","TOTAL","OC6","I","Y50-64","2011","400","","" +"UK","F","POP","TOTAL","OC6","I","Y65-84","2011","210","","" +"UK","F","POP","TOTAL","OC6","I","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","J","Y15-29","2011","25","","" +"UK","F","POP","TOTAL","OC6","J","Y30-49","2011","90","","" +"UK","F","POP","TOTAL","OC6","J","Y50-64","2011","90","","" +"UK","F","POP","TOTAL","OC6","J","Y65-84","2011","20","","" +"UK","F","POP","TOTAL","OC6","J","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","K","Y15-29","2011","30","","" +"UK","F","POP","TOTAL","OC6","K","Y30-49","2011","105","","" +"UK","F","POP","TOTAL","OC6","K","Y50-64","2011","80","","" +"UK","F","POP","TOTAL","OC6","K","Y65-84","2011","35","","" +"UK","F","POP","TOTAL","OC6","K","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","L","Y15-29","2011","35","","" +"UK","F","POP","TOTAL","OC6","L","Y30-49","2011","185","","" +"UK","F","POP","TOTAL","OC6","L","Y50-64","2011","150","","" +"UK","F","POP","TOTAL","OC6","L","Y65-84","2011","50","","" +"UK","F","POP","TOTAL","OC6","L","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","M","Y15-29","2011","125","","" +"UK","F","POP","TOTAL","OC6","M","Y30-49","2011","985","","" +"UK","F","POP","TOTAL","OC6","M","Y50-64","2011","735","","" +"UK","F","POP","TOTAL","OC6","M","Y65-84","2011","110","","" +"UK","F","POP","TOTAL","OC6","M","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","N","Y15-29","2011","1180","","" +"UK","F","POP","TOTAL","OC6","N","Y30-49","2011","6105","","" +"UK","F","POP","TOTAL","OC6","N","Y50-64","2011","3665","","" +"UK","F","POP","TOTAL","OC6","N","Y65-84","2011","340","","" +"UK","F","POP","TOTAL","OC6","N","Y_GE85","2011","45","","" +"UK","F","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","O","Y15-29","2011","60","","" +"UK","F","POP","TOTAL","OC6","O","Y30-49","2011","250","","" +"UK","F","POP","TOTAL","OC6","O","Y50-64","2011","190","","" +"UK","F","POP","TOTAL","OC6","O","Y65-84","2011","50","","" +"UK","F","POP","TOTAL","OC6","O","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","P","Y15-29","2011","730","","" +"UK","F","POP","TOTAL","OC6","P","Y30-49","2011","1395","","" +"UK","F","POP","TOTAL","OC6","P","Y50-64","2011","765","","" +"UK","F","POP","TOTAL","OC6","P","Y65-84","2011","185","","" +"UK","F","POP","TOTAL","OC6","P","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","Q","Y15-29","2011","2045","","" +"UK","F","POP","TOTAL","OC6","Q","Y30-49","2011","1575","","" +"UK","F","POP","TOTAL","OC6","Q","Y50-64","2011","975","","" +"UK","F","POP","TOTAL","OC6","Q","Y65-84","2011","240","","" +"UK","F","POP","TOTAL","OC6","Q","Y_GE85","2011","40","","" +"UK","F","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","R","Y15-29","2011","255","","" +"UK","F","POP","TOTAL","OC6","R","Y30-49","2011","485","","" +"UK","F","POP","TOTAL","OC6","R","Y50-64","2011","270","","" +"UK","F","POP","TOTAL","OC6","R","Y65-84","2011","60","","" +"UK","F","POP","TOTAL","OC6","R","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","S","Y15-29","2011","75","","" +"UK","F","POP","TOTAL","OC6","S","Y30-49","2011","305","","" +"UK","F","POP","TOTAL","OC6","S","Y50-64","2011","290","","" +"UK","F","POP","TOTAL","OC6","S","Y65-84","2011","105","","" +"UK","F","POP","TOTAL","OC6","S","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","T","Y15-29","2011","30","","" +"UK","F","POP","TOTAL","OC6","T","Y30-49","2011","160","","" +"UK","F","POP","TOTAL","OC6","T","Y50-64","2011","105","","" +"UK","F","POP","TOTAL","OC6","T","Y65-84","2011","25","","" +"UK","F","POP","TOTAL","OC6","T","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","U","Y15-29","2011","5","","" +"UK","F","POP","TOTAL","OC6","U","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC6","U","Y50-64","2011","5","","" +"UK","F","POP","TOTAL","OC6","U","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","A","Y15-29","2011","230","","" +"UK","F","POP","TOTAL","OC7","A","Y30-49","2011","440","","" +"UK","F","POP","TOTAL","OC7","A","Y50-64","2011","495","","" +"UK","F","POP","TOTAL","OC7","A","Y65-84","2011","235","","" +"UK","F","POP","TOTAL","OC7","A","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","B","Y15-29","2011","90","","" +"UK","F","POP","TOTAL","OC7","B","Y30-49","2011","125","","" +"UK","F","POP","TOTAL","OC7","B","Y50-64","2011","40","","" +"UK","F","POP","TOTAL","OC7","B","Y65-84","2011","10","","" +"UK","F","POP","TOTAL","OC7","B","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","C","Y15-29","2011","8915","","" +"UK","F","POP","TOTAL","OC7","C","Y30-49","2011","25295","","" +"UK","F","POP","TOTAL","OC7","C","Y50-64","2011","16670","","" +"UK","F","POP","TOTAL","OC7","C","Y65-84","2011","2630","","" +"UK","F","POP","TOTAL","OC7","C","Y_GE85","2011","275","","" +"UK","F","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","D","Y15-29","2011","290","","" +"UK","F","POP","TOTAL","OC7","D","Y30-49","2011","380","","" +"UK","F","POP","TOTAL","OC7","D","Y50-64","2011","135","","" +"UK","F","POP","TOTAL","OC7","D","Y65-84","2011","15","","" +"UK","F","POP","TOTAL","OC7","D","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","E","Y15-29","2011","120","","" +"UK","F","POP","TOTAL","OC7","E","Y30-49","2011","215","","" +"UK","F","POP","TOTAL","OC7","E","Y50-64","2011","85","","" +"UK","F","POP","TOTAL","OC7","E","Y65-84","2011","10","","" +"UK","F","POP","TOTAL","OC7","E","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","F","Y15-29","2011","8140","","" +"UK","F","POP","TOTAL","OC7","F","Y30-49","2011","11320","","" +"UK","F","POP","TOTAL","OC7","F","Y50-64","2011","4725","","" +"UK","F","POP","TOTAL","OC7","F","Y65-84","2011","920","","" +"UK","F","POP","TOTAL","OC7","F","Y_GE85","2011","185","","" +"UK","F","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","G","Y15-29","2011","11620","","" +"UK","F","POP","TOTAL","OC7","G","Y30-49","2011","23220","","" +"UK","F","POP","TOTAL","OC7","G","Y50-64","2011","12365","","" +"UK","F","POP","TOTAL","OC7","G","Y65-84","2011","2045","","" +"UK","F","POP","TOTAL","OC7","G","Y_GE85","2011","140","","" +"UK","F","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","H","Y15-29","2011","530","","" +"UK","F","POP","TOTAL","OC7","H","Y30-49","2011","1055","","" +"UK","F","POP","TOTAL","OC7","H","Y50-64","2011","530","","" +"UK","F","POP","TOTAL","OC7","H","Y65-84","2011","110","","" +"UK","F","POP","TOTAL","OC7","H","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","I","Y15-29","2011","28210","","" +"UK","F","POP","TOTAL","OC7","I","Y30-49","2011","60530","","" +"UK","F","POP","TOTAL","OC7","I","Y50-64","2011","31505","","" +"UK","F","POP","TOTAL","OC7","I","Y65-84","2011","3335","","" +"UK","F","POP","TOTAL","OC7","I","Y_GE85","2011","150","","" +"UK","F","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","J","Y15-29","2011","1455","","" +"UK","F","POP","TOTAL","OC7","J","Y30-49","2011","3130","","" +"UK","F","POP","TOTAL","OC7","J","Y50-64","2011","1050","","" +"UK","F","POP","TOTAL","OC7","J","Y65-84","2011","145","","" +"UK","F","POP","TOTAL","OC7","J","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","K","Y15-29","2011","305","","" +"UK","F","POP","TOTAL","OC7","K","Y30-49","2011","735","","" +"UK","F","POP","TOTAL","OC7","K","Y50-64","2011","360","","" +"UK","F","POP","TOTAL","OC7","K","Y65-84","2011","60","","" +"UK","F","POP","TOTAL","OC7","K","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","L","Y15-29","2011","350","","" +"UK","F","POP","TOTAL","OC7","L","Y30-49","2011","815","","" +"UK","F","POP","TOTAL","OC7","L","Y50-64","2011","510","","" +"UK","F","POP","TOTAL","OC7","L","Y65-84","2011","95","","" +"UK","F","POP","TOTAL","OC7","L","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","M","Y15-29","2011","1220","","" +"UK","F","POP","TOTAL","OC7","M","Y30-49","2011","2665","","" +"UK","F","POP","TOTAL","OC7","M","Y50-64","2011","1275","","" +"UK","F","POP","TOTAL","OC7","M","Y65-84","2011","240","","" +"UK","F","POP","TOTAL","OC7","M","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","N","Y15-29","2011","1090","","" +"UK","F","POP","TOTAL","OC7","N","Y30-49","2011","2040","","" +"UK","F","POP","TOTAL","OC7","N","Y50-64","2011","1115","","" +"UK","F","POP","TOTAL","OC7","N","Y65-84","2011","210","","" +"UK","F","POP","TOTAL","OC7","N","Y_GE85","2011","30","","" +"UK","F","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","O","Y15-29","2011","995","","" +"UK","F","POP","TOTAL","OC7","O","Y30-49","2011","2550","","" +"UK","F","POP","TOTAL","OC7","O","Y50-64","2011","1625","","" +"UK","F","POP","TOTAL","OC7","O","Y65-84","2011","215","","" +"UK","F","POP","TOTAL","OC7","O","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","P","Y15-29","2011","1420","","" +"UK","F","POP","TOTAL","OC7","P","Y30-49","2011","11030","","" +"UK","F","POP","TOTAL","OC7","P","Y50-64","2011","7445","","" +"UK","F","POP","TOTAL","OC7","P","Y65-84","2011","810","","" +"UK","F","POP","TOTAL","OC7","P","Y_GE85","2011","40","","" +"UK","F","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","Q","Y15-29","2011","2940","","" +"UK","F","POP","TOTAL","OC7","Q","Y30-49","2011","13635","","" +"UK","F","POP","TOTAL","OC7","Q","Y50-64","2011","12360","","" +"UK","F","POP","TOTAL","OC7","Q","Y65-84","2011","1900","","" +"UK","F","POP","TOTAL","OC7","Q","Y_GE85","2011","95","","" +"UK","F","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","R","Y15-29","2011","1860","","" +"UK","F","POP","TOTAL","OC7","R","Y30-49","2011","3380","","" +"UK","F","POP","TOTAL","OC7","R","Y50-64","2011","2025","","" +"UK","F","POP","TOTAL","OC7","R","Y65-84","2011","300","","" +"UK","F","POP","TOTAL","OC7","R","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","S","Y15-29","2011","1050","","" +"UK","F","POP","TOTAL","OC7","S","Y30-49","2011","2655","","" +"UK","F","POP","TOTAL","OC7","S","Y50-64","2011","2155","","" +"UK","F","POP","TOTAL","OC7","S","Y65-84","2011","405","","" +"UK","F","POP","TOTAL","OC7","S","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","T","Y15-29","2011","45","","" +"UK","F","POP","TOTAL","OC7","T","Y30-49","2011","155","","" +"UK","F","POP","TOTAL","OC7","T","Y50-64","2011","115","","" +"UK","F","POP","TOTAL","OC7","T","Y65-84","2011","35","","" +"UK","F","POP","TOTAL","OC7","T","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","U","Y15-29","2011","45","","" +"UK","F","POP","TOTAL","OC7","U","Y30-49","2011","55","","" +"UK","F","POP","TOTAL","OC7","U","Y50-64","2011","20","","" +"UK","F","POP","TOTAL","OC7","U","Y65-84","2011","5","","" +"UK","F","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","A","Y15-29","2011","680","","" +"UK","F","POP","TOTAL","OC8","A","Y30-49","2011","950","","" +"UK","F","POP","TOTAL","OC8","A","Y50-64","2011","625","","" +"UK","F","POP","TOTAL","OC8","A","Y65-84","2011","120","","" +"UK","F","POP","TOTAL","OC8","A","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","B","Y15-29","2011","125","","" +"UK","F","POP","TOTAL","OC8","B","Y30-49","2011","290","","" +"UK","F","POP","TOTAL","OC8","B","Y50-64","2011","135","","" +"UK","F","POP","TOTAL","OC8","B","Y65-84","2011","25","","" +"UK","F","POP","TOTAL","OC8","B","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","C","Y15-29","2011","31095","","" +"UK","F","POP","TOTAL","OC8","C","Y30-49","2011","70280","","" +"UK","F","POP","TOTAL","OC8","C","Y50-64","2011","48645","","" +"UK","F","POP","TOTAL","OC8","C","Y65-84","2011","4935","","" +"UK","F","POP","TOTAL","OC8","C","Y_GE85","2011","415","","" +"UK","F","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","D","Y15-29","2011","190","","" +"UK","F","POP","TOTAL","OC8","D","Y30-49","2011","345","","" +"UK","F","POP","TOTAL","OC8","D","Y50-64","2011","165","","" +"UK","F","POP","TOTAL","OC8","D","Y65-84","2011","20","","" +"UK","F","POP","TOTAL","OC8","D","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","E","Y15-29","2011","635","","" +"UK","F","POP","TOTAL","OC8","E","Y30-49","2011","1300","","" +"UK","F","POP","TOTAL","OC8","E","Y50-64","2011","520","","" +"UK","F","POP","TOTAL","OC8","E","Y65-84","2011","55","","" +"UK","F","POP","TOTAL","OC8","E","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","F","Y15-29","2011","1595","","" +"UK","F","POP","TOTAL","OC8","F","Y30-49","2011","2725","","" +"UK","F","POP","TOTAL","OC8","F","Y50-64","2011","1510","","" +"UK","F","POP","TOTAL","OC8","F","Y65-84","2011","270","","" +"UK","F","POP","TOTAL","OC8","F","Y_GE85","2011","30","","" +"UK","F","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","G","Y15-29","2011","6970","","" +"UK","F","POP","TOTAL","OC8","G","Y30-49","2011","15405","","" +"UK","F","POP","TOTAL","OC8","G","Y50-64","2011","9460","","" +"UK","F","POP","TOTAL","OC8","G","Y65-84","2011","1365","","" +"UK","F","POP","TOTAL","OC8","G","Y_GE85","2011","115","","" +"UK","F","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","H","Y15-29","2011","4500","","" +"UK","F","POP","TOTAL","OC8","H","Y30-49","2011","18900","","" +"UK","F","POP","TOTAL","OC8","H","Y50-64","2011","9520","","" +"UK","F","POP","TOTAL","OC8","H","Y65-84","2011","1160","","" +"UK","F","POP","TOTAL","OC8","H","Y_GE85","2011","100","","" +"UK","F","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","I","Y15-29","2011","2525","","" +"UK","F","POP","TOTAL","OC8","I","Y30-49","2011","3620","","" +"UK","F","POP","TOTAL","OC8","I","Y50-64","2011","1810","","" +"UK","F","POP","TOTAL","OC8","I","Y65-84","2011","275","","" +"UK","F","POP","TOTAL","OC8","I","Y_GE85","2011","35","","" +"UK","F","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","J","Y15-29","2011","650","","" +"UK","F","POP","TOTAL","OC8","J","Y30-49","2011","1085","","" +"UK","F","POP","TOTAL","OC8","J","Y50-64","2011","470","","" +"UK","F","POP","TOTAL","OC8","J","Y65-84","2011","75","","" +"UK","F","POP","TOTAL","OC8","J","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","K","Y15-29","2011","450","","" +"UK","F","POP","TOTAL","OC8","K","Y30-49","2011","890","","" +"UK","F","POP","TOTAL","OC8","K","Y50-64","2011","355","","" +"UK","F","POP","TOTAL","OC8","K","Y65-84","2011","50","","" +"UK","F","POP","TOTAL","OC8","K","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","L","Y15-29","2011","250","","" +"UK","F","POP","TOTAL","OC8","L","Y30-49","2011","575","","" +"UK","F","POP","TOTAL","OC8","L","Y50-64","2011","280","","" +"UK","F","POP","TOTAL","OC8","L","Y65-84","2011","45","","" +"UK","F","POP","TOTAL","OC8","L","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","M","Y15-29","2011","1500","","" +"UK","F","POP","TOTAL","OC8","M","Y30-49","2011","2665","","" +"UK","F","POP","TOTAL","OC8","M","Y50-64","2011","1520","","" +"UK","F","POP","TOTAL","OC8","M","Y65-84","2011","230","","" +"UK","F","POP","TOTAL","OC8","M","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","N","Y15-29","2011","2330","","" +"UK","F","POP","TOTAL","OC8","N","Y30-49","2011","4120","","" +"UK","F","POP","TOTAL","OC8","N","Y50-64","2011","2165","","" +"UK","F","POP","TOTAL","OC8","N","Y65-84","2011","245","","" +"UK","F","POP","TOTAL","OC8","N","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","O","Y15-29","2011","760","","" +"UK","F","POP","TOTAL","OC8","O","Y30-49","2011","1730","","" +"UK","F","POP","TOTAL","OC8","O","Y50-64","2011","1125","","" +"UK","F","POP","TOTAL","OC8","O","Y65-84","2011","170","","" +"UK","F","POP","TOTAL","OC8","O","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","P","Y15-29","2011","1145","","" +"UK","F","POP","TOTAL","OC8","P","Y30-49","2011","6795","","" +"UK","F","POP","TOTAL","OC8","P","Y50-64","2011","3150","","" +"UK","F","POP","TOTAL","OC8","P","Y65-84","2011","420","","" +"UK","F","POP","TOTAL","OC8","P","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","Q","Y15-29","2011","925","","" +"UK","F","POP","TOTAL","OC8","Q","Y30-49","2011","3215","","" +"UK","F","POP","TOTAL","OC8","Q","Y50-64","2011","2600","","" +"UK","F","POP","TOTAL","OC8","Q","Y65-84","2011","555","","" +"UK","F","POP","TOTAL","OC8","Q","Y_GE85","2011","65","","" +"UK","F","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","R","Y15-29","2011","460","","" +"UK","F","POP","TOTAL","OC8","R","Y30-49","2011","690","","" +"UK","F","POP","TOTAL","OC8","R","Y50-64","2011","410","","" +"UK","F","POP","TOTAL","OC8","R","Y65-84","2011","90","","" +"UK","F","POP","TOTAL","OC8","R","Y_GE85","2011","10","","" +"UK","F","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","S","Y15-29","2011","810","","" +"UK","F","POP","TOTAL","OC8","S","Y30-49","2011","1795","","" +"UK","F","POP","TOTAL","OC8","S","Y50-64","2011","1310","","" +"UK","F","POP","TOTAL","OC8","S","Y65-84","2011","250","","" +"UK","F","POP","TOTAL","OC8","S","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","T","Y15-29","2011","10","","" +"UK","F","POP","TOTAL","OC8","T","Y30-49","2011","40","","" +"UK","F","POP","TOTAL","OC8","T","Y50-64","2011","25","","" +"UK","F","POP","TOTAL","OC8","T","Y65-84","2011","5","","" +"UK","F","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","U","Y15-29","2011","15","","" +"UK","F","POP","TOTAL","OC8","U","Y30-49","2011","25","","" +"UK","F","POP","TOTAL","OC8","U","Y50-64","2011","10","","" +"UK","F","POP","TOTAL","OC8","U","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","A","Y15-29","2011","4860","","" +"UK","F","POP","TOTAL","OC9","A","Y30-49","2011","7045","","" +"UK","F","POP","TOTAL","OC9","A","Y50-64","2011","6165","","" +"UK","F","POP","TOTAL","OC9","A","Y65-84","2011","2650","","" +"UK","F","POP","TOTAL","OC9","A","Y_GE85","2011","135","","" +"UK","F","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","B","Y15-29","2011","65","","" +"UK","F","POP","TOTAL","OC9","B","Y30-49","2011","165","","" +"UK","F","POP","TOTAL","OC9","B","Y50-64","2011","110","","" +"UK","F","POP","TOTAL","OC9","B","Y65-84","2011","35","","" +"UK","F","POP","TOTAL","OC9","B","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","C","Y15-29","2011","20160","","" +"UK","F","POP","TOTAL","OC9","C","Y30-49","2011","34555","","" +"UK","F","POP","TOTAL","OC9","C","Y50-64","2011","24330","","" +"UK","F","POP","TOTAL","OC9","C","Y65-84","2011","3380","","" +"UK","F","POP","TOTAL","OC9","C","Y_GE85","2011","295","","" +"UK","F","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","D","Y15-29","2011","375","","" +"UK","F","POP","TOTAL","OC9","D","Y30-49","2011","660","","" +"UK","F","POP","TOTAL","OC9","D","Y50-64","2011","400","","" +"UK","F","POP","TOTAL","OC9","D","Y65-84","2011","45","","" +"UK","F","POP","TOTAL","OC9","D","Y_GE85","2011","5","","" +"UK","F","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","E","Y15-29","2011","1390","","" +"UK","F","POP","TOTAL","OC9","E","Y30-49","2011","2050","","" +"UK","F","POP","TOTAL","OC9","E","Y50-64","2011","1070","","" +"UK","F","POP","TOTAL","OC9","E","Y65-84","2011","145","","" +"UK","F","POP","TOTAL","OC9","E","Y_GE85","2011","15","","" +"UK","F","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","F","Y15-29","2011","4700","","" +"UK","F","POP","TOTAL","OC9","F","Y30-49","2011","8520","","" +"UK","F","POP","TOTAL","OC9","F","Y50-64","2011","5920","","" +"UK","F","POP","TOTAL","OC9","F","Y65-84","2011","1210","","" +"UK","F","POP","TOTAL","OC9","F","Y_GE85","2011","60","","" +"UK","F","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","G","Y15-29","2011","62075","","" +"UK","F","POP","TOTAL","OC9","G","Y30-49","2011","74760","","" +"UK","F","POP","TOTAL","OC9","G","Y50-64","2011","47465","","" +"UK","F","POP","TOTAL","OC9","G","Y65-84","2011","6745","","" +"UK","F","POP","TOTAL","OC9","G","Y_GE85","2011","330","","" +"UK","F","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","H","Y15-29","2011","15355","","" +"UK","F","POP","TOTAL","OC9","H","Y30-49","2011","31445","","" +"UK","F","POP","TOTAL","OC9","H","Y50-64","2011","15520","","" +"UK","F","POP","TOTAL","OC9","H","Y65-84","2011","1520","","" +"UK","F","POP","TOTAL","OC9","H","Y_GE85","2011","130","","" +"UK","F","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","I","Y15-29","2011","296570","","" +"UK","F","POP","TOTAL","OC9","I","Y30-49","2011","161850","","" +"UK","F","POP","TOTAL","OC9","I","Y50-64","2011","73775","","" +"UK","F","POP","TOTAL","OC9","I","Y65-84","2011","10840","","" +"UK","F","POP","TOTAL","OC9","I","Y_GE85","2011","515","","" +"UK","F","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","J","Y15-29","2011","6925","","" +"UK","F","POP","TOTAL","OC9","J","Y30-49","2011","3915","","" +"UK","F","POP","TOTAL","OC9","J","Y50-64","2011","2345","","" +"UK","F","POP","TOTAL","OC9","J","Y65-84","2011","520","","" +"UK","F","POP","TOTAL","OC9","J","Y_GE85","2011","20","","" +"UK","F","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","K","Y15-29","2011","2935","","" +"UK","F","POP","TOTAL","OC9","K","Y30-49","2011","4610","","" +"UK","F","POP","TOTAL","OC9","K","Y50-64","2011","2810","","" +"UK","F","POP","TOTAL","OC9","K","Y65-84","2011","595","","" +"UK","F","POP","TOTAL","OC9","K","Y_GE85","2011","25","","" +"UK","F","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","L","Y15-29","2011","2065","","" +"UK","F","POP","TOTAL","OC9","L","Y30-49","2011","4300","","" +"UK","F","POP","TOTAL","OC9","L","Y50-64","2011","4265","","" +"UK","F","POP","TOTAL","OC9","L","Y65-84","2011","950","","" +"UK","F","POP","TOTAL","OC9","L","Y_GE85","2011","30","","" +"UK","F","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","M","Y15-29","2011","4515","","" +"UK","F","POP","TOTAL","OC9","M","Y30-49","2011","6390","","" +"UK","F","POP","TOTAL","OC9","M","Y50-64","2011","5150","","" +"UK","F","POP","TOTAL","OC9","M","Y65-84","2011","1300","","" +"UK","F","POP","TOTAL","OC9","M","Y_GE85","2011","40","","" +"UK","F","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","N","Y15-29","2011","62685","","" +"UK","F","POP","TOTAL","OC9","N","Y30-49","2011","121975","","" +"UK","F","POP","TOTAL","OC9","N","Y50-64","2011","69480","","" +"UK","F","POP","TOTAL","OC9","N","Y65-84","2011","9410","","" +"UK","F","POP","TOTAL","OC9","N","Y_GE85","2011","335","","" +"UK","F","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","O","Y15-29","2011","4640","","" +"UK","F","POP","TOTAL","OC9","O","Y30-49","2011","16240","","" +"UK","F","POP","TOTAL","OC9","O","Y50-64","2011","13510","","" +"UK","F","POP","TOTAL","OC9","O","Y65-84","2011","2625","","" +"UK","F","POP","TOTAL","OC9","O","Y_GE85","2011","105","","" +"UK","F","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","P","Y15-29","2011","17730","","" +"UK","F","POP","TOTAL","OC9","P","Y30-49","2011","99030","","" +"UK","F","POP","TOTAL","OC9","P","Y50-64","2011","68365","","" +"UK","F","POP","TOTAL","OC9","P","Y65-84","2011","11715","","" +"UK","F","POP","TOTAL","OC9","P","Y_GE85","2011","250","","" +"UK","F","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","Q","Y15-29","2011","23690","","" +"UK","F","POP","TOTAL","OC9","Q","Y30-49","2011","54840","","" +"UK","F","POP","TOTAL","OC9","Q","Y50-64","2011","51900","","" +"UK","F","POP","TOTAL","OC9","Q","Y65-84","2011","8640","","" +"UK","F","POP","TOTAL","OC9","Q","Y_GE85","2011","330","","" +"UK","F","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","R","Y15-29","2011","23640","","" +"UK","F","POP","TOTAL","OC9","R","Y30-49","2011","13870","","" +"UK","F","POP","TOTAL","OC9","R","Y50-64","2011","10120","","" +"UK","F","POP","TOTAL","OC9","R","Y65-84","2011","2290","","" +"UK","F","POP","TOTAL","OC9","R","Y_GE85","2011","60","","" +"UK","F","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","S","Y15-29","2011","9620","","" +"UK","F","POP","TOTAL","OC9","S","Y30-49","2011","16135","","" +"UK","F","POP","TOTAL","OC9","S","Y50-64","2011","12020","","" +"UK","F","POP","TOTAL","OC9","S","Y65-84","2011","2710","","" +"UK","F","POP","TOTAL","OC9","S","Y_GE85","2011","90","","" +"UK","F","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","T","Y15-29","2011","930","","" +"UK","F","POP","TOTAL","OC9","T","Y30-49","2011","2700","","" +"UK","F","POP","TOTAL","OC9","T","Y50-64","2011","1960","","" +"UK","F","POP","TOTAL","OC9","T","Y65-84","2011","430","","" +"UK","F","POP","TOTAL","OC9","T","Y_GE85","2011","30","","" +"UK","F","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","U","Y15-29","2011","115","","" +"UK","F","POP","TOTAL","OC9","U","Y30-49","2011","170","","" +"UK","F","POP","TOTAL","OC9","U","Y50-64","2011","75","","" +"UK","F","POP","TOTAL","OC9","U","Y65-84","2011","20","","" +"UK","F","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"UK","F","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"UK","F","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"UK","F","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"UK","F","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"UK","F","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"UK","F","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","A","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","A","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","A","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","A","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","A","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","B","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","B","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","B","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","B","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","B","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","C","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","C","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","C","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","C","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","C","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","D","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","D","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","D","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","D","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","D","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","E","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","E","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","E","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","E","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","E","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","F","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","F","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","F","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","F","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","F","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","G","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","G","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","G","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","G","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","G","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","H","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","H","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","H","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","H","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","H","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","I","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","I","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","I","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","I","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","I","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","J","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","J","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","J","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","J","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","J","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","K","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","K","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","K","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","K","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","K","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","L","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","L","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","L","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","L","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","L","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","M","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","M","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","M","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","M","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","M","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","N","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","N","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","N","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","N","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","N","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","NAP","Y15-29","2011","2219380","","" +"UK","M","POP","TOTAL","NAP","NAP","Y30-49","2011","819705","","" +"UK","M","POP","TOTAL","NAP","NAP","Y50-64","2011","1359335","","" +"UK","M","POP","TOTAL","NAP","NAP","Y65-84","2011","3539855","","" +"UK","M","POP","TOTAL","NAP","NAP","Y_GE85","2011","435620","","" +"UK","M","POP","TOTAL","NAP","NAP","Y_LT15","2011","5681330","","" +"UK","M","POP","TOTAL","NAP","O","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","O","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","O","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","O","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","O","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","P","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","P","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","P","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","P","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","P","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","Q","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","Q","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","Q","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","Q","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","Q","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","R","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","R","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","R","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","R","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","R","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","S","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","S","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","S","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","S","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","S","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","T","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","T","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","T","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","T","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","U","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","U","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","U","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","U","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","NAP","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","NAP","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","NAP","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","NAP","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","NAP","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","NAP","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","A","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","A","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","A","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","A","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","A","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","B","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","B","Y30-49","2011","5","","" +"UK","M","POP","TOTAL","OC0","B","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","B","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","B","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","C","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","C","Y30-49","2011","5","","" +"UK","M","POP","TOTAL","OC0","C","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","C","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","C","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","D","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","D","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","D","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","D","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","D","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","E","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","E","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","E","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","E","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","E","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","F","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","F","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","F","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","F","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","F","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","G","Y15-29","2011","5","","" +"UK","M","POP","TOTAL","OC0","G","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","G","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","G","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","G","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","H","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","H","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","H","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","H","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","H","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","I","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","I","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","I","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","I","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","I","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","J","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","J","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","J","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","J","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","J","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","K","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","K","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","K","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","K","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","K","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","L","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","L","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","L","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","L","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","L","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","M","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","M","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","M","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","M","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","M","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","N","Y15-29","2011","5","","" +"UK","M","POP","TOTAL","OC0","N","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","N","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","N","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","N","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","O","Y15-29","2011","6500","","" +"UK","M","POP","TOTAL","OC0","O","Y30-49","2011","5170","","" +"UK","M","POP","TOTAL","OC0","O","Y50-64","2011","560","","" +"UK","M","POP","TOTAL","OC0","O","Y65-84","2011","70","","" +"UK","M","POP","TOTAL","OC0","O","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC0","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","P","Y15-29","2011","5","","" +"UK","M","POP","TOTAL","OC0","P","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","P","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","P","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","P","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","Q","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","Q","Y30-49","2011","5","","" +"UK","M","POP","TOTAL","OC0","Q","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","Q","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","Q","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","R","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","R","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","R","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","R","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","R","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","S","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","S","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","S","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","S","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","S","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","T","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","T","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","T","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","T","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","U","Y15-29","2011","10","","" +"UK","M","POP","TOTAL","OC0","U","Y30-49","2011","5","","" +"UK","M","POP","TOTAL","OC0","U","Y50-64","2011","5","","" +"UK","M","POP","TOTAL","OC0","U","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC0","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC0","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC0","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC0","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC0","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC0","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","A","Y15-29","2011","1910","","" +"UK","M","POP","TOTAL","OC1","A","Y30-49","2011","8320","","" +"UK","M","POP","TOTAL","OC1","A","Y50-64","2011","6100","","" +"UK","M","POP","TOTAL","OC1","A","Y65-84","2011","2030","","" +"UK","M","POP","TOTAL","OC1","A","Y_GE85","2011","75","","" +"UK","M","POP","TOTAL","OC1","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","B","Y15-29","2011","260","","" +"UK","M","POP","TOTAL","OC1","B","Y30-49","2011","4050","","" +"UK","M","POP","TOTAL","OC1","B","Y50-64","2011","3310","","" +"UK","M","POP","TOTAL","OC1","B","Y65-84","2011","320","","" +"UK","M","POP","TOTAL","OC1","B","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC1","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","C","Y15-29","2011","11920","","" +"UK","M","POP","TOTAL","OC1","C","Y30-49","2011","138090","","" +"UK","M","POP","TOTAL","OC1","C","Y50-64","2011","93050","","" +"UK","M","POP","TOTAL","OC1","C","Y65-84","2011","14165","","" +"UK","M","POP","TOTAL","OC1","C","Y_GE85","2011","325","","" +"UK","M","POP","TOTAL","OC1","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","D","Y15-29","2011","940","","" +"UK","M","POP","TOTAL","OC1","D","Y30-49","2011","7120","","" +"UK","M","POP","TOTAL","OC1","D","Y50-64","2011","3840","","" +"UK","M","POP","TOTAL","OC1","D","Y65-84","2011","260","","" +"UK","M","POP","TOTAL","OC1","D","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC1","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","E","Y15-29","2011","1580","","" +"UK","M","POP","TOTAL","OC1","E","Y30-49","2011","11185","","" +"UK","M","POP","TOTAL","OC1","E","Y50-64","2011","6365","","" +"UK","M","POP","TOTAL","OC1","E","Y65-84","2011","745","","" +"UK","M","POP","TOTAL","OC1","E","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC1","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","F","Y15-29","2011","13505","","" +"UK","M","POP","TOTAL","OC1","F","Y30-49","2011","105470","","" +"UK","M","POP","TOTAL","OC1","F","Y50-64","2011","66595","","" +"UK","M","POP","TOTAL","OC1","F","Y65-84","2011","9650","","" +"UK","M","POP","TOTAL","OC1","F","Y_GE85","2011","190","","" +"UK","M","POP","TOTAL","OC1","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","G","Y15-29","2011","75555","","" +"UK","M","POP","TOTAL","OC1","G","Y30-49","2011","282080","","" +"UK","M","POP","TOTAL","OC1","G","Y50-64","2011","148745","","" +"UK","M","POP","TOTAL","OC1","G","Y65-84","2011","27680","","" +"UK","M","POP","TOTAL","OC1","G","Y_GE85","2011","565","","" +"UK","M","POP","TOTAL","OC1","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","H","Y15-29","2011","6745","","" +"UK","M","POP","TOTAL","OC1","H","Y30-49","2011","51530","","" +"UK","M","POP","TOTAL","OC1","H","Y50-64","2011","31880","","" +"UK","M","POP","TOTAL","OC1","H","Y65-84","2011","3990","","" +"UK","M","POP","TOTAL","OC1","H","Y_GE85","2011","75","","" +"UK","M","POP","TOTAL","OC1","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","I","Y15-29","2011","34435","","" +"UK","M","POP","TOTAL","OC1","I","Y30-49","2011","77850","","" +"UK","M","POP","TOTAL","OC1","I","Y50-64","2011","40425","","" +"UK","M","POP","TOTAL","OC1","I","Y65-84","2011","7515","","" +"UK","M","POP","TOTAL","OC1","I","Y_GE85","2011","140","","" +"UK","M","POP","TOTAL","OC1","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","J","Y15-29","2011","7415","","" +"UK","M","POP","TOTAL","OC1","J","Y30-49","2011","64335","","" +"UK","M","POP","TOTAL","OC1","J","Y50-64","2011","24930","","" +"UK","M","POP","TOTAL","OC1","J","Y65-84","2011","2940","","" +"UK","M","POP","TOTAL","OC1","J","Y_GE85","2011","45","","" +"UK","M","POP","TOTAL","OC1","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","K","Y15-29","2011","18055","","" +"UK","M","POP","TOTAL","OC1","K","Y30-49","2011","94150","","" +"UK","M","POP","TOTAL","OC1","K","Y50-64","2011","30170","","" +"UK","M","POP","TOTAL","OC1","K","Y65-84","2011","3520","","" +"UK","M","POP","TOTAL","OC1","K","Y_GE85","2011","100","","" +"UK","M","POP","TOTAL","OC1","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","L","Y15-29","2011","5185","","" +"UK","M","POP","TOTAL","OC1","L","Y30-49","2011","28715","","" +"UK","M","POP","TOTAL","OC1","L","Y50-64","2011","21495","","" +"UK","M","POP","TOTAL","OC1","L","Y65-84","2011","4865","","" +"UK","M","POP","TOTAL","OC1","L","Y_GE85","2011","135","","" +"UK","M","POP","TOTAL","OC1","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","M","Y15-29","2011","9175","","" +"UK","M","POP","TOTAL","OC1","M","Y30-49","2011","81655","","" +"UK","M","POP","TOTAL","OC1","M","Y50-64","2011","48280","","" +"UK","M","POP","TOTAL","OC1","M","Y65-84","2011","6795","","" +"UK","M","POP","TOTAL","OC1","M","Y_GE85","2011","90","","" +"UK","M","POP","TOTAL","OC1","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","N","Y15-29","2011","10965","","" +"UK","M","POP","TOTAL","OC1","N","Y30-49","2011","58220","","" +"UK","M","POP","TOTAL","OC1","N","Y50-64","2011","28065","","" +"UK","M","POP","TOTAL","OC1","N","Y65-84","2011","4205","","" +"UK","M","POP","TOTAL","OC1","N","Y_GE85","2011","80","","" +"UK","M","POP","TOTAL","OC1","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC1","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC1","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC1","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC1","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC1","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","O","Y15-29","2011","14215","","" +"UK","M","POP","TOTAL","OC1","O","Y30-49","2011","49180","","" +"UK","M","POP","TOTAL","OC1","O","Y50-64","2011","27770","","" +"UK","M","POP","TOTAL","OC1","O","Y65-84","2011","3565","","" +"UK","M","POP","TOTAL","OC1","O","Y_GE85","2011","85","","" +"UK","M","POP","TOTAL","OC1","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","P","Y15-29","2011","3100","","" +"UK","M","POP","TOTAL","OC1","P","Y30-49","2011","17130","","" +"UK","M","POP","TOTAL","OC1","P","Y50-64","2011","13890","","" +"UK","M","POP","TOTAL","OC1","P","Y65-84","2011","1710","","" +"UK","M","POP","TOTAL","OC1","P","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC1","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","Q","Y15-29","2011","4545","","" +"UK","M","POP","TOTAL","OC1","Q","Y30-49","2011","33770","","" +"UK","M","POP","TOTAL","OC1","Q","Y50-64","2011","26635","","" +"UK","M","POP","TOTAL","OC1","Q","Y65-84","2011","3505","","" +"UK","M","POP","TOTAL","OC1","Q","Y_GE85","2011","165","","" +"UK","M","POP","TOTAL","OC1","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","R","Y15-29","2011","11980","","" +"UK","M","POP","TOTAL","OC1","R","Y30-49","2011","28440","","" +"UK","M","POP","TOTAL","OC1","R","Y50-64","2011","13345","","" +"UK","M","POP","TOTAL","OC1","R","Y65-84","2011","2185","","" +"UK","M","POP","TOTAL","OC1","R","Y_GE85","2011","40","","" +"UK","M","POP","TOTAL","OC1","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","S","Y15-29","2011","2715","","" +"UK","M","POP","TOTAL","OC1","S","Y30-49","2011","14500","","" +"UK","M","POP","TOTAL","OC1","S","Y50-64","2011","10490","","" +"UK","M","POP","TOTAL","OC1","S","Y65-84","2011","2050","","" +"UK","M","POP","TOTAL","OC1","S","Y_GE85","2011","45","","" +"UK","M","POP","TOTAL","OC1","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","T","Y15-29","2011","50","","" +"UK","M","POP","TOTAL","OC1","T","Y30-49","2011","285","","" +"UK","M","POP","TOTAL","OC1","T","Y50-64","2011","235","","" +"UK","M","POP","TOTAL","OC1","T","Y65-84","2011","35","","" +"UK","M","POP","TOTAL","OC1","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC1","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","U","Y15-29","2011","325","","" +"UK","M","POP","TOTAL","OC1","U","Y30-49","2011","1580","","" +"UK","M","POP","TOTAL","OC1","U","Y50-64","2011","820","","" +"UK","M","POP","TOTAL","OC1","U","Y65-84","2011","120","","" +"UK","M","POP","TOTAL","OC1","U","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC1","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC1","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC1","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC1","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC1","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC1","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC1","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","A","Y15-29","2011","495","","" +"UK","M","POP","TOTAL","OC2","A","Y30-49","2011","1320","","" +"UK","M","POP","TOTAL","OC2","A","Y50-64","2011","1030","","" +"UK","M","POP","TOTAL","OC2","A","Y65-84","2011","320","","" +"UK","M","POP","TOTAL","OC2","A","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC2","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","B","Y15-29","2011","2010","","" +"UK","M","POP","TOTAL","OC2","B","Y30-49","2011","6435","","" +"UK","M","POP","TOTAL","OC2","B","Y50-64","2011","3735","","" +"UK","M","POP","TOTAL","OC2","B","Y65-84","2011","365","","" +"UK","M","POP","TOTAL","OC2","B","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC2","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","C","Y15-29","2011","31055","","" +"UK","M","POP","TOTAL","OC2","C","Y30-49","2011","115170","","" +"UK","M","POP","TOTAL","OC2","C","Y50-64","2011","62195","","" +"UK","M","POP","TOTAL","OC2","C","Y65-84","2011","6610","","" +"UK","M","POP","TOTAL","OC2","C","Y_GE85","2011","170","","" +"UK","M","POP","TOTAL","OC2","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","D","Y15-29","2011","4080","","" +"UK","M","POP","TOTAL","OC2","D","Y30-49","2011","14325","","" +"UK","M","POP","TOTAL","OC2","D","Y50-64","2011","7390","","" +"UK","M","POP","TOTAL","OC2","D","Y65-84","2011","710","","" +"UK","M","POP","TOTAL","OC2","D","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC2","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","E","Y15-29","2011","2000","","" +"UK","M","POP","TOTAL","OC2","E","Y30-49","2011","6995","","" +"UK","M","POP","TOTAL","OC2","E","Y50-64","2011","3935","","" +"UK","M","POP","TOTAL","OC2","E","Y65-84","2011","400","","" +"UK","M","POP","TOTAL","OC2","E","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC2","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","F","Y15-29","2011","28480","","" +"UK","M","POP","TOTAL","OC2","F","Y30-49","2011","84565","","" +"UK","M","POP","TOTAL","OC2","F","Y50-64","2011","45350","","" +"UK","M","POP","TOTAL","OC2","F","Y65-84","2011","6000","","" +"UK","M","POP","TOTAL","OC2","F","Y_GE85","2011","95","","" +"UK","M","POP","TOTAL","OC2","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","G","Y15-29","2011","18725","","" +"UK","M","POP","TOTAL","OC2","G","Y30-49","2011","52150","","" +"UK","M","POP","TOTAL","OC2","G","Y50-64","2011","22640","","" +"UK","M","POP","TOTAL","OC2","G","Y65-84","2011","3500","","" +"UK","M","POP","TOTAL","OC2","G","Y_GE85","2011","70","","" +"UK","M","POP","TOTAL","OC2","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","H","Y15-29","2011","4790","","" +"UK","M","POP","TOTAL","OC2","H","Y30-49","2011","19615","","" +"UK","M","POP","TOTAL","OC2","H","Y50-64","2011","9705","","" +"UK","M","POP","TOTAL","OC2","H","Y65-84","2011","905","","" +"UK","M","POP","TOTAL","OC2","H","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC2","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","I","Y15-29","2011","1985","","" +"UK","M","POP","TOTAL","OC2","I","Y30-49","2011","4660","","" +"UK","M","POP","TOTAL","OC2","I","Y50-64","2011","2065","","" +"UK","M","POP","TOTAL","OC2","I","Y65-84","2011","395","","" +"UK","M","POP","TOTAL","OC2","I","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC2","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","J","Y15-29","2011","65665","","" +"UK","M","POP","TOTAL","OC2","J","Y30-49","2011","229865","","" +"UK","M","POP","TOTAL","OC2","J","Y50-64","2011","67860","","" +"UK","M","POP","TOTAL","OC2","J","Y65-84","2011","4565","","" +"UK","M","POP","TOTAL","OC2","J","Y_GE85","2011","120","","" +"UK","M","POP","TOTAL","OC2","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","K","Y15-29","2011","21065","","" +"UK","M","POP","TOTAL","OC2","K","Y30-49","2011","85660","","" +"UK","M","POP","TOTAL","OC2","K","Y50-64","2011","18825","","" +"UK","M","POP","TOTAL","OC2","K","Y65-84","2011","1020","","" +"UK","M","POP","TOTAL","OC2","K","Y_GE85","2011","40","","" +"UK","M","POP","TOTAL","OC2","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","L","Y15-29","2011","4640","","" +"UK","M","POP","TOTAL","OC2","L","Y30-49","2011","16120","","" +"UK","M","POP","TOTAL","OC2","L","Y50-64","2011","9875","","" +"UK","M","POP","TOTAL","OC2","L","Y65-84","2011","1555","","" +"UK","M","POP","TOTAL","OC2","L","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC2","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","M","Y15-29","2011","91590","","" +"UK","M","POP","TOTAL","OC2","M","Y30-49","2011","242645","","" +"UK","M","POP","TOTAL","OC2","M","Y50-64","2011","135350","","" +"UK","M","POP","TOTAL","OC2","M","Y65-84","2011","27805","","" +"UK","M","POP","TOTAL","OC2","M","Y_GE85","2011","465","","" +"UK","M","POP","TOTAL","OC2","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","N","Y15-29","2011","7650","","" +"UK","M","POP","TOTAL","OC2","N","Y30-49","2011","20705","","" +"UK","M","POP","TOTAL","OC2","N","Y50-64","2011","8170","","" +"UK","M","POP","TOTAL","OC2","N","Y65-84","2011","1005","","" +"UK","M","POP","TOTAL","OC2","N","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC2","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC2","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC2","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC2","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC2","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC2","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","O","Y15-29","2011","14250","","" +"UK","M","POP","TOTAL","OC2","O","Y30-49","2011","60635","","" +"UK","M","POP","TOTAL","OC2","O","Y50-64","2011","38380","","" +"UK","M","POP","TOTAL","OC2","O","Y65-84","2011","3755","","" +"UK","M","POP","TOTAL","OC2","O","Y_GE85","2011","85","","" +"UK","M","POP","TOTAL","OC2","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","P","Y15-29","2011","74085","","" +"UK","M","POP","TOTAL","OC2","P","Y30-49","2011","228760","","" +"UK","M","POP","TOTAL","OC2","P","Y50-64","2011","145675","","" +"UK","M","POP","TOTAL","OC2","P","Y65-84","2011","20410","","" +"UK","M","POP","TOTAL","OC2","P","Y_GE85","2011","425","","" +"UK","M","POP","TOTAL","OC2","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","Q","Y15-29","2011","39350","","" +"UK","M","POP","TOTAL","OC2","Q","Y30-49","2011","165955","","" +"UK","M","POP","TOTAL","OC2","Q","Y50-64","2011","80240","","" +"UK","M","POP","TOTAL","OC2","Q","Y65-84","2011","10205","","" +"UK","M","POP","TOTAL","OC2","Q","Y_GE85","2011","280","","" +"UK","M","POP","TOTAL","OC2","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","R","Y15-29","2011","6240","","" +"UK","M","POP","TOTAL","OC2","R","Y30-49","2011","15185","","" +"UK","M","POP","TOTAL","OC2","R","Y50-64","2011","6990","","" +"UK","M","POP","TOTAL","OC2","R","Y65-84","2011","1345","","" +"UK","M","POP","TOTAL","OC2","R","Y_GE85","2011","35","","" +"UK","M","POP","TOTAL","OC2","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","S","Y15-29","2011","6070","","" +"UK","M","POP","TOTAL","OC2","S","Y30-49","2011","22960","","" +"UK","M","POP","TOTAL","OC2","S","Y50-64","2011","17635","","" +"UK","M","POP","TOTAL","OC2","S","Y65-84","2011","4655","","" +"UK","M","POP","TOTAL","OC2","S","Y_GE85","2011","125","","" +"UK","M","POP","TOTAL","OC2","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","T","Y15-29","2011","25","","" +"UK","M","POP","TOTAL","OC2","T","Y30-49","2011","60","","" +"UK","M","POP","TOTAL","OC2","T","Y50-64","2011","55","","" +"UK","M","POP","TOTAL","OC2","T","Y65-84","2011","15","","" +"UK","M","POP","TOTAL","OC2","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC2","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","U","Y15-29","2011","355","","" +"UK","M","POP","TOTAL","OC2","U","Y30-49","2011","1055","","" +"UK","M","POP","TOTAL","OC2","U","Y50-64","2011","595","","" +"UK","M","POP","TOTAL","OC2","U","Y65-84","2011","100","","" +"UK","M","POP","TOTAL","OC2","U","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC2","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC2","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC2","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC2","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC2","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC2","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC2","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","A","Y15-29","2011","695","","" +"UK","M","POP","TOTAL","OC3","A","Y30-49","2011","1445","","" +"UK","M","POP","TOTAL","OC3","A","Y50-64","2011","955","","" +"UK","M","POP","TOTAL","OC3","A","Y65-84","2011","215","","" +"UK","M","POP","TOTAL","OC3","A","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC3","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","B","Y15-29","2011","1635","","" +"UK","M","POP","TOTAL","OC3","B","Y30-49","2011","5060","","" +"UK","M","POP","TOTAL","OC3","B","Y50-64","2011","3125","","" +"UK","M","POP","TOTAL","OC3","B","Y65-84","2011","230","","" +"UK","M","POP","TOTAL","OC3","B","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC3","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","C","Y15-29","2011","36255","","" +"UK","M","POP","TOTAL","OC3","C","Y30-49","2011","115015","","" +"UK","M","POP","TOTAL","OC3","C","Y50-64","2011","65300","","" +"UK","M","POP","TOTAL","OC3","C","Y65-84","2011","7010","","" +"UK","M","POP","TOTAL","OC3","C","Y_GE85","2011","160","","" +"UK","M","POP","TOTAL","OC3","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","D","Y15-29","2011","4065","","" +"UK","M","POP","TOTAL","OC3","D","Y30-49","2011","9815","","" +"UK","M","POP","TOTAL","OC3","D","Y50-64","2011","5220","","" +"UK","M","POP","TOTAL","OC3","D","Y65-84","2011","350","","" +"UK","M","POP","TOTAL","OC3","D","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC3","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","E","Y15-29","2011","2675","","" +"UK","M","POP","TOTAL","OC3","E","Y30-49","2011","7540","","" +"UK","M","POP","TOTAL","OC3","E","Y50-64","2011","4280","","" +"UK","M","POP","TOTAL","OC3","E","Y65-84","2011","325","","" +"UK","M","POP","TOTAL","OC3","E","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC3","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","F","Y15-29","2011","15155","","" +"UK","M","POP","TOTAL","OC3","F","Y30-49","2011","35570","","" +"UK","M","POP","TOTAL","OC3","F","Y50-64","2011","21275","","" +"UK","M","POP","TOTAL","OC3","F","Y65-84","2011","2925","","" +"UK","M","POP","TOTAL","OC3","F","Y_GE85","2011","50","","" +"UK","M","POP","TOTAL","OC3","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","G","Y15-29","2011","47955","","" +"UK","M","POP","TOTAL","OC3","G","Y30-49","2011","105010","","" +"UK","M","POP","TOTAL","OC3","G","Y50-64","2011","48320","","" +"UK","M","POP","TOTAL","OC3","G","Y65-84","2011","7000","","" +"UK","M","POP","TOTAL","OC3","G","Y_GE85","2011","115","","" +"UK","M","POP","TOTAL","OC3","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","H","Y15-29","2011","11330","","" +"UK","M","POP","TOTAL","OC3","H","Y30-49","2011","34810","","" +"UK","M","POP","TOTAL","OC3","H","Y50-64","2011","20405","","" +"UK","M","POP","TOTAL","OC3","H","Y65-84","2011","2085","","" +"UK","M","POP","TOTAL","OC3","H","Y_GE85","2011","55","","" +"UK","M","POP","TOTAL","OC3","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","I","Y15-29","2011","9115","","" +"UK","M","POP","TOTAL","OC3","I","Y30-49","2011","8735","","" +"UK","M","POP","TOTAL","OC3","I","Y50-64","2011","2980","","" +"UK","M","POP","TOTAL","OC3","I","Y65-84","2011","495","","" +"UK","M","POP","TOTAL","OC3","I","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC3","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","J","Y15-29","2011","48695","","" +"UK","M","POP","TOTAL","OC3","J","Y30-49","2011","101820","","" +"UK","M","POP","TOTAL","OC3","J","Y50-64","2011","28490","","" +"UK","M","POP","TOTAL","OC3","J","Y65-84","2011","3230","","" +"UK","M","POP","TOTAL","OC3","J","Y_GE85","2011","95","","" +"UK","M","POP","TOTAL","OC3","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","K","Y15-29","2011","56675","","" +"UK","M","POP","TOTAL","OC3","K","Y30-49","2011","131630","","" +"UK","M","POP","TOTAL","OC3","K","Y50-64","2011","44655","","" +"UK","M","POP","TOTAL","OC3","K","Y65-84","2011","5605","","" +"UK","M","POP","TOTAL","OC3","K","Y_GE85","2011","100","","" +"UK","M","POP","TOTAL","OC3","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","L","Y15-29","2011","13335","","" +"UK","M","POP","TOTAL","OC3","L","Y30-49","2011","24965","","" +"UK","M","POP","TOTAL","OC3","L","Y50-64","2011","11395","","" +"UK","M","POP","TOTAL","OC3","L","Y65-84","2011","1770","","" +"UK","M","POP","TOTAL","OC3","L","Y_GE85","2011","40","","" +"UK","M","POP","TOTAL","OC3","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","M","Y15-29","2011","60355","","" +"UK","M","POP","TOTAL","OC3","M","Y30-49","2011","113975","","" +"UK","M","POP","TOTAL","OC3","M","Y50-64","2011","53645","","" +"UK","M","POP","TOTAL","OC3","M","Y65-84","2011","8750","","" +"UK","M","POP","TOTAL","OC3","M","Y_GE85","2011","145","","" +"UK","M","POP","TOTAL","OC3","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","N","Y15-29","2011","30125","","" +"UK","M","POP","TOTAL","OC3","N","Y30-49","2011","46005","","" +"UK","M","POP","TOTAL","OC3","N","Y50-64","2011","15670","","" +"UK","M","POP","TOTAL","OC3","N","Y65-84","2011","1820","","" +"UK","M","POP","TOTAL","OC3","N","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC3","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC3","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC3","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC3","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC3","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC3","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","O","Y15-29","2011","109825","","" +"UK","M","POP","TOTAL","OC3","O","Y30-49","2011","231335","","" +"UK","M","POP","TOTAL","OC3","O","Y50-64","2011","74985","","" +"UK","M","POP","TOTAL","OC3","O","Y65-84","2011","5170","","" +"UK","M","POP","TOTAL","OC3","O","Y_GE85","2011","195","","" +"UK","M","POP","TOTAL","OC3","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","P","Y15-29","2011","36930","","" +"UK","M","POP","TOTAL","OC3","P","Y30-49","2011","51850","","" +"UK","M","POP","TOTAL","OC3","P","Y50-64","2011","35560","","" +"UK","M","POP","TOTAL","OC3","P","Y65-84","2011","4940","","" +"UK","M","POP","TOTAL","OC3","P","Y_GE85","2011","85","","" +"UK","M","POP","TOTAL","OC3","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","Q","Y15-29","2011","32905","","" +"UK","M","POP","TOTAL","OC3","Q","Y30-49","2011","75320","","" +"UK","M","POP","TOTAL","OC3","Q","Y50-64","2011","39955","","" +"UK","M","POP","TOTAL","OC3","Q","Y65-84","2011","3990","","" +"UK","M","POP","TOTAL","OC3","Q","Y_GE85","2011","90","","" +"UK","M","POP","TOTAL","OC3","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","R","Y15-29","2011","52070","","" +"UK","M","POP","TOTAL","OC3","R","Y30-49","2011","54220","","" +"UK","M","POP","TOTAL","OC3","R","Y50-64","2011","23070","","" +"UK","M","POP","TOTAL","OC3","R","Y65-84","2011","5185","","" +"UK","M","POP","TOTAL","OC3","R","Y_GE85","2011","140","","" +"UK","M","POP","TOTAL","OC3","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","S","Y15-29","2011","10165","","" +"UK","M","POP","TOTAL","OC3","S","Y30-49","2011","14745","","" +"UK","M","POP","TOTAL","OC3","S","Y50-64","2011","6695","","" +"UK","M","POP","TOTAL","OC3","S","Y65-84","2011","1200","","" +"UK","M","POP","TOTAL","OC3","S","Y_GE85","2011","35","","" +"UK","M","POP","TOTAL","OC3","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","T","Y15-29","2011","25","","" +"UK","M","POP","TOTAL","OC3","T","Y30-49","2011","65","","" +"UK","M","POP","TOTAL","OC3","T","Y50-64","2011","50","","" +"UK","M","POP","TOTAL","OC3","T","Y65-84","2011","15","","" +"UK","M","POP","TOTAL","OC3","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC3","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","U","Y15-29","2011","2040","","" +"UK","M","POP","TOTAL","OC3","U","Y30-49","2011","2405","","" +"UK","M","POP","TOTAL","OC3","U","Y50-64","2011","675","","" +"UK","M","POP","TOTAL","OC3","U","Y65-84","2011","105","","" +"UK","M","POP","TOTAL","OC3","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC3","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC3","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC3","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC3","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC3","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC3","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC3","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","A","Y15-29","2011","330","","" +"UK","M","POP","TOTAL","OC4","A","Y30-49","2011","450","","" +"UK","M","POP","TOTAL","OC4","A","Y50-64","2011","415","","" +"UK","M","POP","TOTAL","OC4","A","Y65-84","2011","125","","" +"UK","M","POP","TOTAL","OC4","A","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC4","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","B","Y15-29","2011","435","","" +"UK","M","POP","TOTAL","OC4","B","Y30-49","2011","1075","","" +"UK","M","POP","TOTAL","OC4","B","Y50-64","2011","680","","" +"UK","M","POP","TOTAL","OC4","B","Y65-84","2011","80","","" +"UK","M","POP","TOTAL","OC4","B","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC4","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","C","Y15-29","2011","11210","","" +"UK","M","POP","TOTAL","OC4","C","Y30-49","2011","23220","","" +"UK","M","POP","TOTAL","OC4","C","Y50-64","2011","14765","","" +"UK","M","POP","TOTAL","OC4","C","Y65-84","2011","1735","","" +"UK","M","POP","TOTAL","OC4","C","Y_GE85","2011","100","","" +"UK","M","POP","TOTAL","OC4","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","D","Y15-29","2011","1925","","" +"UK","M","POP","TOTAL","OC4","D","Y30-49","2011","2435","","" +"UK","M","POP","TOTAL","OC4","D","Y50-64","2011","1325","","" +"UK","M","POP","TOTAL","OC4","D","Y65-84","2011","125","","" +"UK","M","POP","TOTAL","OC4","D","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC4","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","E","Y15-29","2011","1470","","" +"UK","M","POP","TOTAL","OC4","E","Y30-49","2011","2145","","" +"UK","M","POP","TOTAL","OC4","E","Y50-64","2011","1265","","" +"UK","M","POP","TOTAL","OC4","E","Y65-84","2011","145","","" +"UK","M","POP","TOTAL","OC4","E","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC4","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","F","Y15-29","2011","7260","","" +"UK","M","POP","TOTAL","OC4","F","Y30-49","2011","9925","","" +"UK","M","POP","TOTAL","OC4","F","Y50-64","2011","6650","","" +"UK","M","POP","TOTAL","OC4","F","Y65-84","2011","1185","","" +"UK","M","POP","TOTAL","OC4","F","Y_GE85","2011","35","","" +"UK","M","POP","TOTAL","OC4","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","G","Y15-29","2011","33440","","" +"UK","M","POP","TOTAL","OC4","G","Y30-49","2011","37035","","" +"UK","M","POP","TOTAL","OC4","G","Y50-64","2011","19140","","" +"UK","M","POP","TOTAL","OC4","G","Y65-84","2011","3085","","" +"UK","M","POP","TOTAL","OC4","G","Y_GE85","2011","115","","" +"UK","M","POP","TOTAL","OC4","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","H","Y15-29","2011","12235","","" +"UK","M","POP","TOTAL","OC4","H","Y30-49","2011","26125","","" +"UK","M","POP","TOTAL","OC4","H","Y50-64","2011","16655","","" +"UK","M","POP","TOTAL","OC4","H","Y65-84","2011","2120","","" +"UK","M","POP","TOTAL","OC4","H","Y_GE85","2011","70","","" +"UK","M","POP","TOTAL","OC4","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","I","Y15-29","2011","8600","","" +"UK","M","POP","TOTAL","OC4","I","Y30-49","2011","6520","","" +"UK","M","POP","TOTAL","OC4","I","Y50-64","2011","2560","","" +"UK","M","POP","TOTAL","OC4","I","Y65-84","2011","705","","" +"UK","M","POP","TOTAL","OC4","I","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC4","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","J","Y15-29","2011","8365","","" +"UK","M","POP","TOTAL","OC4","J","Y30-49","2011","10675","","" +"UK","M","POP","TOTAL","OC4","J","Y50-64","2011","4455","","" +"UK","M","POP","TOTAL","OC4","J","Y65-84","2011","570","","" +"UK","M","POP","TOTAL","OC4","J","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC4","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","K","Y15-29","2011","50635","","" +"UK","M","POP","TOTAL","OC4","K","Y30-49","2011","45260","","" +"UK","M","POP","TOTAL","OC4","K","Y50-64","2011","15145","","" +"UK","M","POP","TOTAL","OC4","K","Y65-84","2011","1575","","" +"UK","M","POP","TOTAL","OC4","K","Y_GE85","2011","75","","" +"UK","M","POP","TOTAL","OC4","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","L","Y15-29","2011","4535","","" +"UK","M","POP","TOTAL","OC4","L","Y30-49","2011","5215","","" +"UK","M","POP","TOTAL","OC4","L","Y50-64","2011","3115","","" +"UK","M","POP","TOTAL","OC4","L","Y65-84","2011","540","","" +"UK","M","POP","TOTAL","OC4","L","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC4","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","M","Y15-29","2011","21975","","" +"UK","M","POP","TOTAL","OC4","M","Y30-49","2011","23170","","" +"UK","M","POP","TOTAL","OC4","M","Y50-64","2011","15050","","" +"UK","M","POP","TOTAL","OC4","M","Y65-84","2011","3680","","" +"UK","M","POP","TOTAL","OC4","M","Y_GE85","2011","90","","" +"UK","M","POP","TOTAL","OC4","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","N","Y15-29","2011","16115","","" +"UK","M","POP","TOTAL","OC4","N","Y30-49","2011","18755","","" +"UK","M","POP","TOTAL","OC4","N","Y50-64","2011","8370","","" +"UK","M","POP","TOTAL","OC4","N","Y65-84","2011","1320","","" +"UK","M","POP","TOTAL","OC4","N","Y_GE85","2011","40","","" +"UK","M","POP","TOTAL","OC4","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC4","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC4","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC4","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC4","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC4","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","O","Y15-29","2011","34705","","" +"UK","M","POP","TOTAL","OC4","O","Y30-49","2011","97280","","" +"UK","M","POP","TOTAL","OC4","O","Y50-64","2011","66610","","" +"UK","M","POP","TOTAL","OC4","O","Y65-84","2011","5185","","" +"UK","M","POP","TOTAL","OC4","O","Y_GE85","2011","160","","" +"UK","M","POP","TOTAL","OC4","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","P","Y15-29","2011","10360","","" +"UK","M","POP","TOTAL","OC4","P","Y30-49","2011","10725","","" +"UK","M","POP","TOTAL","OC4","P","Y50-64","2011","7130","","" +"UK","M","POP","TOTAL","OC4","P","Y65-84","2011","1645","","" +"UK","M","POP","TOTAL","OC4","P","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC4","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","Q","Y15-29","2011","15475","","" +"UK","M","POP","TOTAL","OC4","Q","Y30-49","2011","17120","","" +"UK","M","POP","TOTAL","OC4","Q","Y50-64","2011","10475","","" +"UK","M","POP","TOTAL","OC4","Q","Y65-84","2011","1600","","" +"UK","M","POP","TOTAL","OC4","Q","Y_GE85","2011","45","","" +"UK","M","POP","TOTAL","OC4","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","R","Y15-29","2011","11325","","" +"UK","M","POP","TOTAL","OC4","R","Y30-49","2011","7940","","" +"UK","M","POP","TOTAL","OC4","R","Y50-64","2011","4820","","" +"UK","M","POP","TOTAL","OC4","R","Y65-84","2011","1015","","" +"UK","M","POP","TOTAL","OC4","R","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC4","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","S","Y15-29","2011","3660","","" +"UK","M","POP","TOTAL","OC4","S","Y30-49","2011","4975","","" +"UK","M","POP","TOTAL","OC4","S","Y50-64","2011","4505","","" +"UK","M","POP","TOTAL","OC4","S","Y65-84","2011","1130","","" +"UK","M","POP","TOTAL","OC4","S","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC4","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","T","Y15-29","2011","60","","" +"UK","M","POP","TOTAL","OC4","T","Y30-49","2011","95","","" +"UK","M","POP","TOTAL","OC4","T","Y50-64","2011","55","","" +"UK","M","POP","TOTAL","OC4","T","Y65-84","2011","10","","" +"UK","M","POP","TOTAL","OC4","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC4","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","U","Y15-29","2011","375","","" +"UK","M","POP","TOTAL","OC4","U","Y30-49","2011","1015","","" +"UK","M","POP","TOTAL","OC4","U","Y50-64","2011","545","","" +"UK","M","POP","TOTAL","OC4","U","Y65-84","2011","75","","" +"UK","M","POP","TOTAL","OC4","U","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC4","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC4","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC4","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC4","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC4","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC4","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC4","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","A","Y15-29","2011","1080","","" +"UK","M","POP","TOTAL","OC5","A","Y30-49","2011","1110","","" +"UK","M","POP","TOTAL","OC5","A","Y50-64","2011","815","","" +"UK","M","POP","TOTAL","OC5","A","Y65-84","2011","195","","" +"UK","M","POP","TOTAL","OC5","A","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC5","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","B","Y15-29","2011","110","","" +"UK","M","POP","TOTAL","OC5","B","Y30-49","2011","305","","" +"UK","M","POP","TOTAL","OC5","B","Y50-64","2011","225","","" +"UK","M","POP","TOTAL","OC5","B","Y65-84","2011","35","","" +"UK","M","POP","TOTAL","OC5","B","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC5","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","C","Y15-29","2011","8830","","" +"UK","M","POP","TOTAL","OC5","C","Y30-49","2011","12125","","" +"UK","M","POP","TOTAL","OC5","C","Y50-64","2011","6885","","" +"UK","M","POP","TOTAL","OC5","C","Y65-84","2011","1140","","" +"UK","M","POP","TOTAL","OC5","C","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC5","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","D","Y15-29","2011","6325","","" +"UK","M","POP","TOTAL","OC5","D","Y30-49","2011","6755","","" +"UK","M","POP","TOTAL","OC5","D","Y50-64","2011","3000","","" +"UK","M","POP","TOTAL","OC5","D","Y65-84","2011","250","","" +"UK","M","POP","TOTAL","OC5","D","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC5","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","E","Y15-29","2011","1600","","" +"UK","M","POP","TOTAL","OC5","E","Y30-49","2011","1925","","" +"UK","M","POP","TOTAL","OC5","E","Y50-64","2011","995","","" +"UK","M","POP","TOTAL","OC5","E","Y65-84","2011","75","","" +"UK","M","POP","TOTAL","OC5","E","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC5","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","F","Y15-29","2011","6340","","" +"UK","M","POP","TOTAL","OC5","F","Y30-49","2011","7525","","" +"UK","M","POP","TOTAL","OC5","F","Y50-64","2011","4465","","" +"UK","M","POP","TOTAL","OC5","F","Y65-84","2011","845","","" +"UK","M","POP","TOTAL","OC5","F","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC5","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","G","Y15-29","2011","430585","","" +"UK","M","POP","TOTAL","OC5","G","Y30-49","2011","194740","","" +"UK","M","POP","TOTAL","OC5","G","Y50-64","2011","85700","","" +"UK","M","POP","TOTAL","OC5","G","Y65-84","2011","15345","","" +"UK","M","POP","TOTAL","OC5","G","Y_GE85","2011","345","","" +"UK","M","POP","TOTAL","OC5","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","H","Y15-29","2011","13505","","" +"UK","M","POP","TOTAL","OC5","H","Y30-49","2011","26820","","" +"UK","M","POP","TOTAL","OC5","H","Y50-64","2011","12880","","" +"UK","M","POP","TOTAL","OC5","H","Y65-84","2011","1530","","" +"UK","M","POP","TOTAL","OC5","H","Y_GE85","2011","40","","" +"UK","M","POP","TOTAL","OC5","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","I","Y15-29","2011","25665","","" +"UK","M","POP","TOTAL","OC5","I","Y30-49","2011","11185","","" +"UK","M","POP","TOTAL","OC5","I","Y50-64","2011","3520","","" +"UK","M","POP","TOTAL","OC5","I","Y65-84","2011","580","","" +"UK","M","POP","TOTAL","OC5","I","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC5","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","J","Y15-29","2011","16465","","" +"UK","M","POP","TOTAL","OC5","J","Y30-49","2011","14150","","" +"UK","M","POP","TOTAL","OC5","J","Y50-64","2011","4095","","" +"UK","M","POP","TOTAL","OC5","J","Y65-84","2011","425","","" +"UK","M","POP","TOTAL","OC5","J","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC5","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","K","Y15-29","2011","19710","","" +"UK","M","POP","TOTAL","OC5","K","Y30-49","2011","12770","","" +"UK","M","POP","TOTAL","OC5","K","Y50-64","2011","3820","","" +"UK","M","POP","TOTAL","OC5","K","Y65-84","2011","645","","" +"UK","M","POP","TOTAL","OC5","K","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC5","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","L","Y15-29","2011","2305","","" +"UK","M","POP","TOTAL","OC5","L","Y30-49","2011","3385","","" +"UK","M","POP","TOTAL","OC5","L","Y50-64","2011","2040","","" +"UK","M","POP","TOTAL","OC5","L","Y65-84","2011","390","","" +"UK","M","POP","TOTAL","OC5","L","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC5","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","M","Y15-29","2011","10415","","" +"UK","M","POP","TOTAL","OC5","M","Y30-49","2011","8100","","" +"UK","M","POP","TOTAL","OC5","M","Y50-64","2011","3925","","" +"UK","M","POP","TOTAL","OC5","M","Y65-84","2011","950","","" +"UK","M","POP","TOTAL","OC5","M","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC5","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","N","Y15-29","2011","28670","","" +"UK","M","POP","TOTAL","OC5","N","Y30-49","2011","22010","","" +"UK","M","POP","TOTAL","OC5","N","Y50-64","2011","9575","","" +"UK","M","POP","TOTAL","OC5","N","Y65-84","2011","1435","","" +"UK","M","POP","TOTAL","OC5","N","Y_GE85","2011","45","","" +"UK","M","POP","TOTAL","OC5","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC5","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC5","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC5","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC5","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC5","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","O","Y15-29","2011","7870","","" +"UK","M","POP","TOTAL","OC5","O","Y30-49","2011","12160","","" +"UK","M","POP","TOTAL","OC5","O","Y50-64","2011","7875","","" +"UK","M","POP","TOTAL","OC5","O","Y65-84","2011","830","","" +"UK","M","POP","TOTAL","OC5","O","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC5","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","P","Y15-29","2011","25845","","" +"UK","M","POP","TOTAL","OC5","P","Y30-49","2011","21360","","" +"UK","M","POP","TOTAL","OC5","P","Y50-64","2011","11775","","" +"UK","M","POP","TOTAL","OC5","P","Y65-84","2011","1450","","" +"UK","M","POP","TOTAL","OC5","P","Y_GE85","2011","50","","" +"UK","M","POP","TOTAL","OC5","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","Q","Y15-29","2011","45520","","" +"UK","M","POP","TOTAL","OC5","Q","Y30-49","2011","68665","","" +"UK","M","POP","TOTAL","OC5","Q","Y50-64","2011","36580","","" +"UK","M","POP","TOTAL","OC5","Q","Y65-84","2011","4080","","" +"UK","M","POP","TOTAL","OC5","Q","Y_GE85","2011","230","","" +"UK","M","POP","TOTAL","OC5","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","R","Y15-29","2011","35490","","" +"UK","M","POP","TOTAL","OC5","R","Y30-49","2011","13155","","" +"UK","M","POP","TOTAL","OC5","R","Y50-64","2011","5755","","" +"UK","M","POP","TOTAL","OC5","R","Y65-84","2011","1370","","" +"UK","M","POP","TOTAL","OC5","R","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC5","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","S","Y15-29","2011","19010","","" +"UK","M","POP","TOTAL","OC5","S","Y30-49","2011","24320","","" +"UK","M","POP","TOTAL","OC5","S","Y50-64","2011","12965","","" +"UK","M","POP","TOTAL","OC5","S","Y65-84","2011","3615","","" +"UK","M","POP","TOTAL","OC5","S","Y_GE85","2011","60","","" +"UK","M","POP","TOTAL","OC5","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","T","Y15-29","2011","595","","" +"UK","M","POP","TOTAL","OC5","T","Y30-49","2011","575","","" +"UK","M","POP","TOTAL","OC5","T","Y50-64","2011","315","","" +"UK","M","POP","TOTAL","OC5","T","Y65-84","2011","40","","" +"UK","M","POP","TOTAL","OC5","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC5","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","U","Y15-29","2011","140","","" +"UK","M","POP","TOTAL","OC5","U","Y30-49","2011","130","","" +"UK","M","POP","TOTAL","OC5","U","Y50-64","2011","70","","" +"UK","M","POP","TOTAL","OC5","U","Y65-84","2011","10","","" +"UK","M","POP","TOTAL","OC5","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC5","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC5","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC5","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC5","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC5","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC5","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC5","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","A","Y15-29","2011","13360","","" +"UK","M","POP","TOTAL","OC6","A","Y30-49","2011","40820","","" +"UK","M","POP","TOTAL","OC6","A","Y50-64","2011","41245","","" +"UK","M","POP","TOTAL","OC6","A","Y65-84","2011","24825","","" +"UK","M","POP","TOTAL","OC6","A","Y_GE85","2011","975","","" +"UK","M","POP","TOTAL","OC6","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","B","Y15-29","2011","20","","" +"UK","M","POP","TOTAL","OC6","B","Y30-49","2011","115","","" +"UK","M","POP","TOTAL","OC6","B","Y50-64","2011","115","","" +"UK","M","POP","TOTAL","OC6","B","Y65-84","2011","70","","" +"UK","M","POP","TOTAL","OC6","B","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC6","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","C","Y15-29","2011","970","","" +"UK","M","POP","TOTAL","OC6","C","Y30-49","2011","3525","","" +"UK","M","POP","TOTAL","OC6","C","Y50-64","2011","3860","","" +"UK","M","POP","TOTAL","OC6","C","Y65-84","2011","1985","","" +"UK","M","POP","TOTAL","OC6","C","Y_GE85","2011","70","","" +"UK","M","POP","TOTAL","OC6","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","D","Y15-29","2011","95","","" +"UK","M","POP","TOTAL","OC6","D","Y30-49","2011","185","","" +"UK","M","POP","TOTAL","OC6","D","Y50-64","2011","200","","" +"UK","M","POP","TOTAL","OC6","D","Y65-84","2011","90","","" +"UK","M","POP","TOTAL","OC6","D","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC6","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","E","Y15-29","2011","100","","" +"UK","M","POP","TOTAL","OC6","E","Y30-49","2011","290","","" +"UK","M","POP","TOTAL","OC6","E","Y50-64","2011","245","","" +"UK","M","POP","TOTAL","OC6","E","Y65-84","2011","60","","" +"UK","M","POP","TOTAL","OC6","E","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC6","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","F","Y15-29","2011","2840","","" +"UK","M","POP","TOTAL","OC6","F","Y30-49","2011","6940","","" +"UK","M","POP","TOTAL","OC6","F","Y50-64","2011","6190","","" +"UK","M","POP","TOTAL","OC6","F","Y65-84","2011","2655","","" +"UK","M","POP","TOTAL","OC6","F","Y_GE85","2011","70","","" +"UK","M","POP","TOTAL","OC6","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","G","Y15-29","2011","2070","","" +"UK","M","POP","TOTAL","OC6","G","Y30-49","2011","4735","","" +"UK","M","POP","TOTAL","OC6","G","Y50-64","2011","4610","","" +"UK","M","POP","TOTAL","OC6","G","Y65-84","2011","2450","","" +"UK","M","POP","TOTAL","OC6","G","Y_GE85","2011","75","","" +"UK","M","POP","TOTAL","OC6","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","H","Y15-29","2011","245","","" +"UK","M","POP","TOTAL","OC6","H","Y30-49","2011","830","","" +"UK","M","POP","TOTAL","OC6","H","Y50-64","2011","890","","" +"UK","M","POP","TOTAL","OC6","H","Y65-84","2011","425","","" +"UK","M","POP","TOTAL","OC6","H","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC6","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","I","Y15-29","2011","1190","","" +"UK","M","POP","TOTAL","OC6","I","Y30-49","2011","2055","","" +"UK","M","POP","TOTAL","OC6","I","Y50-64","2011","1740","","" +"UK","M","POP","TOTAL","OC6","I","Y65-84","2011","605","","" +"UK","M","POP","TOTAL","OC6","I","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC6","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","J","Y15-29","2011","130","","" +"UK","M","POP","TOTAL","OC6","J","Y30-49","2011","565","","" +"UK","M","POP","TOTAL","OC6","J","Y50-64","2011","580","","" +"UK","M","POP","TOTAL","OC6","J","Y65-84","2011","245","","" +"UK","M","POP","TOTAL","OC6","J","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC6","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","K","Y15-29","2011","130","","" +"UK","M","POP","TOTAL","OC6","K","Y30-49","2011","335","","" +"UK","M","POP","TOTAL","OC6","K","Y50-64","2011","325","","" +"UK","M","POP","TOTAL","OC6","K","Y65-84","2011","110","","" +"UK","M","POP","TOTAL","OC6","K","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC6","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","L","Y15-29","2011","690","","" +"UK","M","POP","TOTAL","OC6","L","Y30-49","2011","1485","","" +"UK","M","POP","TOTAL","OC6","L","Y50-64","2011","1255","","" +"UK","M","POP","TOTAL","OC6","L","Y65-84","2011","335","","" +"UK","M","POP","TOTAL","OC6","L","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC6","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","M","Y15-29","2011","525","","" +"UK","M","POP","TOTAL","OC6","M","Y30-49","2011","1505","","" +"UK","M","POP","TOTAL","OC6","M","Y50-64","2011","1205","","" +"UK","M","POP","TOTAL","OC6","M","Y65-84","2011","375","","" +"UK","M","POP","TOTAL","OC6","M","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC6","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","N","Y15-29","2011","25605","","" +"UK","M","POP","TOTAL","OC6","N","Y30-49","2011","48860","","" +"UK","M","POP","TOTAL","OC6","N","Y50-64","2011","28535","","" +"UK","M","POP","TOTAL","OC6","N","Y65-84","2011","4005","","" +"UK","M","POP","TOTAL","OC6","N","Y_GE85","2011","70","","" +"UK","M","POP","TOTAL","OC6","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC6","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC6","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC6","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC6","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC6","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","O","Y15-29","2011","740","","" +"UK","M","POP","TOTAL","OC6","O","Y30-49","2011","2370","","" +"UK","M","POP","TOTAL","OC6","O","Y50-64","2011","1760","","" +"UK","M","POP","TOTAL","OC6","O","Y65-84","2011","410","","" +"UK","M","POP","TOTAL","OC6","O","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC6","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","P","Y15-29","2011","1210","","" +"UK","M","POP","TOTAL","OC6","P","Y30-49","2011","2420","","" +"UK","M","POP","TOTAL","OC6","P","Y50-64","2011","2265","","" +"UK","M","POP","TOTAL","OC6","P","Y65-84","2011","520","","" +"UK","M","POP","TOTAL","OC6","P","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC6","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","Q","Y15-29","2011","760","","" +"UK","M","POP","TOTAL","OC6","Q","Y30-49","2011","1625","","" +"UK","M","POP","TOTAL","OC6","Q","Y50-64","2011","1980","","" +"UK","M","POP","TOTAL","OC6","Q","Y65-84","2011","620","","" +"UK","M","POP","TOTAL","OC6","Q","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC6","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","R","Y15-29","2011","5820","","" +"UK","M","POP","TOTAL","OC6","R","Y30-49","2011","7985","","" +"UK","M","POP","TOTAL","OC6","R","Y50-64","2011","4555","","" +"UK","M","POP","TOTAL","OC6","R","Y65-84","2011","855","","" +"UK","M","POP","TOTAL","OC6","R","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC6","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","S","Y15-29","2011","560","","" +"UK","M","POP","TOTAL","OC6","S","Y30-49","2011","1265","","" +"UK","M","POP","TOTAL","OC6","S","Y50-64","2011","1360","","" +"UK","M","POP","TOTAL","OC6","S","Y65-84","2011","630","","" +"UK","M","POP","TOTAL","OC6","S","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC6","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","T","Y15-29","2011","180","","" +"UK","M","POP","TOTAL","OC6","T","Y30-49","2011","575","","" +"UK","M","POP","TOTAL","OC6","T","Y50-64","2011","580","","" +"UK","M","POP","TOTAL","OC6","T","Y65-84","2011","140","","" +"UK","M","POP","TOTAL","OC6","T","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC6","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","U","Y15-29","2011","10","","" +"UK","M","POP","TOTAL","OC6","U","Y30-49","2011","30","","" +"UK","M","POP","TOTAL","OC6","U","Y50-64","2011","40","","" +"UK","M","POP","TOTAL","OC6","U","Y65-84","2011","5","","" +"UK","M","POP","TOTAL","OC6","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC6","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC6","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC6","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC6","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC6","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC6","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC6","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","A","Y15-29","2011","2485","","" +"UK","M","POP","TOTAL","OC7","A","Y30-49","2011","4815","","" +"UK","M","POP","TOTAL","OC7","A","Y50-64","2011","4300","","" +"UK","M","POP","TOTAL","OC7","A","Y65-84","2011","1345","","" +"UK","M","POP","TOTAL","OC7","A","Y_GE85","2011","50","","" +"UK","M","POP","TOTAL","OC7","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","B","Y15-29","2011","2110","","" +"UK","M","POP","TOTAL","OC7","B","Y30-49","2011","5590","","" +"UK","M","POP","TOTAL","OC7","B","Y50-64","2011","4345","","" +"UK","M","POP","TOTAL","OC7","B","Y65-84","2011","335","","" +"UK","M","POP","TOTAL","OC7","B","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC7","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","C","Y15-29","2011","106615","","" +"UK","M","POP","TOTAL","OC7","C","Y30-49","2011","265515","","" +"UK","M","POP","TOTAL","OC7","C","Y50-64","2011","188585","","" +"UK","M","POP","TOTAL","OC7","C","Y65-84","2011","19955","","" +"UK","M","POP","TOTAL","OC7","C","Y_GE85","2011","580","","" +"UK","M","POP","TOTAL","OC7","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","D","Y15-29","2011","7235","","" +"UK","M","POP","TOTAL","OC7","D","Y30-49","2011","14635","","" +"UK","M","POP","TOTAL","OC7","D","Y50-64","2011","10990","","" +"UK","M","POP","TOTAL","OC7","D","Y65-84","2011","775","","" +"UK","M","POP","TOTAL","OC7","D","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC7","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","E","Y15-29","2011","2470","","" +"UK","M","POP","TOTAL","OC7","E","Y30-49","2011","6115","","" +"UK","M","POP","TOTAL","OC7","E","Y50-64","2011","4430","","" +"UK","M","POP","TOTAL","OC7","E","Y65-84","2011","345","","" +"UK","M","POP","TOTAL","OC7","E","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC7","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","F","Y15-29","2011","325970","","" +"UK","M","POP","TOTAL","OC7","F","Y30-49","2011","604775","","" +"UK","M","POP","TOTAL","OC7","F","Y50-64","2011","326675","","" +"UK","M","POP","TOTAL","OC7","F","Y65-84","2011","33825","","" +"UK","M","POP","TOTAL","OC7","F","Y_GE85","2011","630","","" +"UK","M","POP","TOTAL","OC7","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","G","Y15-29","2011","109765","","" +"UK","M","POP","TOTAL","OC7","G","Y30-49","2011","170055","","" +"UK","M","POP","TOTAL","OC7","G","Y50-64","2011","93340","","" +"UK","M","POP","TOTAL","OC7","G","Y65-84","2011","12595","","" +"UK","M","POP","TOTAL","OC7","G","Y_GE85","2011","300","","" +"UK","M","POP","TOTAL","OC7","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","H","Y15-29","2011","9440","","" +"UK","M","POP","TOTAL","OC7","H","Y30-49","2011","26085","","" +"UK","M","POP","TOTAL","OC7","H","Y50-64","2011","19125","","" +"UK","M","POP","TOTAL","OC7","H","Y65-84","2011","1960","","" +"UK","M","POP","TOTAL","OC7","H","Y_GE85","2011","55","","" +"UK","M","POP","TOTAL","OC7","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","I","Y15-29","2011","91805","","" +"UK","M","POP","TOTAL","OC7","I","Y30-49","2011","123250","","" +"UK","M","POP","TOTAL","OC7","I","Y50-64","2011","36605","","" +"UK","M","POP","TOTAL","OC7","I","Y65-84","2011","3480","","" +"UK","M","POP","TOTAL","OC7","I","Y_GE85","2011","140","","" +"UK","M","POP","TOTAL","OC7","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","J","Y15-29","2011","13345","","" +"UK","M","POP","TOTAL","OC7","J","Y30-49","2011","40790","","" +"UK","M","POP","TOTAL","OC7","J","Y50-64","2011","24845","","" +"UK","M","POP","TOTAL","OC7","J","Y65-84","2011","1720","","" +"UK","M","POP","TOTAL","OC7","J","Y_GE85","2011","55","","" +"UK","M","POP","TOTAL","OC7","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","K","Y15-29","2011","1945","","" +"UK","M","POP","TOTAL","OC7","K","Y30-49","2011","5275","","" +"UK","M","POP","TOTAL","OC7","K","Y50-64","2011","2475","","" +"UK","M","POP","TOTAL","OC7","K","Y65-84","2011","280","","" +"UK","M","POP","TOTAL","OC7","K","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC7","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","L","Y15-29","2011","3115","","" +"UK","M","POP","TOTAL","OC7","L","Y30-49","2011","7940","","" +"UK","M","POP","TOTAL","OC7","L","Y50-64","2011","5940","","" +"UK","M","POP","TOTAL","OC7","L","Y65-84","2011","575","","" +"UK","M","POP","TOTAL","OC7","L","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC7","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","M","Y15-29","2011","9220","","" +"UK","M","POP","TOTAL","OC7","M","Y30-49","2011","21155","","" +"UK","M","POP","TOTAL","OC7","M","Y50-64","2011","14440","","" +"UK","M","POP","TOTAL","OC7","M","Y65-84","2011","2065","","" +"UK","M","POP","TOTAL","OC7","M","Y_GE85","2011","45","","" +"UK","M","POP","TOTAL","OC7","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","N","Y15-29","2011","11725","","" +"UK","M","POP","TOTAL","OC7","N","Y30-49","2011","24395","","" +"UK","M","POP","TOTAL","OC7","N","Y50-64","2011","15415","","" +"UK","M","POP","TOTAL","OC7","N","Y65-84","2011","1770","","" +"UK","M","POP","TOTAL","OC7","N","Y_GE85","2011","60","","" +"UK","M","POP","TOTAL","OC7","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC7","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC7","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC7","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC7","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC7","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","O","Y15-29","2011","9625","","" +"UK","M","POP","TOTAL","OC7","O","Y30-49","2011","15770","","" +"UK","M","POP","TOTAL","OC7","O","Y50-64","2011","10935","","" +"UK","M","POP","TOTAL","OC7","O","Y65-84","2011","1195","","" +"UK","M","POP","TOTAL","OC7","O","Y_GE85","2011","65","","" +"UK","M","POP","TOTAL","OC7","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","P","Y15-29","2011","6265","","" +"UK","M","POP","TOTAL","OC7","P","Y30-49","2011","9810","","" +"UK","M","POP","TOTAL","OC7","P","Y50-64","2011","8465","","" +"UK","M","POP","TOTAL","OC7","P","Y65-84","2011","1110","","" +"UK","M","POP","TOTAL","OC7","P","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC7","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","Q","Y15-29","2011","5190","","" +"UK","M","POP","TOTAL","OC7","Q","Y30-49","2011","13625","","" +"UK","M","POP","TOTAL","OC7","Q","Y50-64","2011","12265","","" +"UK","M","POP","TOTAL","OC7","Q","Y65-84","2011","1550","","" +"UK","M","POP","TOTAL","OC7","Q","Y_GE85","2011","35","","" +"UK","M","POP","TOTAL","OC7","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","R","Y15-29","2011","6145","","" +"UK","M","POP","TOTAL","OC7","R","Y30-49","2011","10030","","" +"UK","M","POP","TOTAL","OC7","R","Y50-64","2011","5895","","" +"UK","M","POP","TOTAL","OC7","R","Y65-84","2011","1005","","" +"UK","M","POP","TOTAL","OC7","R","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC7","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","S","Y15-29","2011","7480","","" +"UK","M","POP","TOTAL","OC7","S","Y30-49","2011","17850","","" +"UK","M","POP","TOTAL","OC7","S","Y50-64","2011","12755","","" +"UK","M","POP","TOTAL","OC7","S","Y65-84","2011","2385","","" +"UK","M","POP","TOTAL","OC7","S","Y_GE85","2011","55","","" +"UK","M","POP","TOTAL","OC7","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","T","Y15-29","2011","125","","" +"UK","M","POP","TOTAL","OC7","T","Y30-49","2011","510","","" +"UK","M","POP","TOTAL","OC7","T","Y50-64","2011","425","","" +"UK","M","POP","TOTAL","OC7","T","Y65-84","2011","60","","" +"UK","M","POP","TOTAL","OC7","T","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC7","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","U","Y15-29","2011","325","","" +"UK","M","POP","TOTAL","OC7","U","Y30-49","2011","405","","" +"UK","M","POP","TOTAL","OC7","U","Y50-64","2011","185","","" +"UK","M","POP","TOTAL","OC7","U","Y65-84","2011","30","","" +"UK","M","POP","TOTAL","OC7","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC7","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC7","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC7","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC7","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC7","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC7","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC7","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","A","Y15-29","2011","3135","","" +"UK","M","POP","TOTAL","OC8","A","Y30-49","2011","5360","","" +"UK","M","POP","TOTAL","OC8","A","Y50-64","2011","4090","","" +"UK","M","POP","TOTAL","OC8","A","Y65-84","2011","915","","" +"UK","M","POP","TOTAL","OC8","A","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC8","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","B","Y15-29","2011","2975","","" +"UK","M","POP","TOTAL","OC8","B","Y30-49","2011","11620","","" +"UK","M","POP","TOTAL","OC8","B","Y50-64","2011","8675","","" +"UK","M","POP","TOTAL","OC8","B","Y65-84","2011","1065","","" +"UK","M","POP","TOTAL","OC8","B","Y_GE85","2011","65","","" +"UK","M","POP","TOTAL","OC8","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","C","Y15-29","2011","111930","","" +"UK","M","POP","TOTAL","OC8","C","Y30-49","2011","266450","","" +"UK","M","POP","TOTAL","OC8","C","Y50-64","2011","165925","","" +"UK","M","POP","TOTAL","OC8","C","Y65-84","2011","15190","","" +"UK","M","POP","TOTAL","OC8","C","Y_GE85","2011","435","","" +"UK","M","POP","TOTAL","OC8","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","D","Y15-29","2011","2000","","" +"UK","M","POP","TOTAL","OC8","D","Y30-49","2011","6210","","" +"UK","M","POP","TOTAL","OC8","D","Y50-64","2011","4680","","" +"UK","M","POP","TOTAL","OC8","D","Y65-84","2011","425","","" +"UK","M","POP","TOTAL","OC8","D","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC8","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","E","Y15-29","2011","8885","","" +"UK","M","POP","TOTAL","OC8","E","Y30-49","2011","31915","","" +"UK","M","POP","TOTAL","OC8","E","Y50-64","2011","19065","","" +"UK","M","POP","TOTAL","OC8","E","Y65-84","2011","1495","","" +"UK","M","POP","TOTAL","OC8","E","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC8","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","F","Y15-29","2011","51065","","" +"UK","M","POP","TOTAL","OC8","F","Y30-49","2011","117855","","" +"UK","M","POP","TOTAL","OC8","F","Y50-64","2011","63720","","" +"UK","M","POP","TOTAL","OC8","F","Y65-84","2011","6805","","" +"UK","M","POP","TOTAL","OC8","F","Y_GE85","2011","160","","" +"UK","M","POP","TOTAL","OC8","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","G","Y15-29","2011","43995","","" +"UK","M","POP","TOTAL","OC8","G","Y30-49","2011","120990","","" +"UK","M","POP","TOTAL","OC8","G","Y50-64","2011","86010","","" +"UK","M","POP","TOTAL","OC8","G","Y65-84","2011","13605","","" +"UK","M","POP","TOTAL","OC8","G","Y_GE85","2011","175","","" +"UK","M","POP","TOTAL","OC8","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","H","Y15-29","2011","51775","","" +"UK","M","POP","TOTAL","OC8","H","Y30-49","2011","304345","","" +"UK","M","POP","TOTAL","OC8","H","Y50-64","2011","216135","","" +"UK","M","POP","TOTAL","OC8","H","Y65-84","2011","28185","","" +"UK","M","POP","TOTAL","OC8","H","Y_GE85","2011","380","","" +"UK","M","POP","TOTAL","OC8","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","I","Y15-29","2011","11155","","" +"UK","M","POP","TOTAL","OC8","I","Y30-49","2011","15880","","" +"UK","M","POP","TOTAL","OC8","I","Y50-64","2011","8455","","" +"UK","M","POP","TOTAL","OC8","I","Y65-84","2011","1545","","" +"UK","M","POP","TOTAL","OC8","I","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC8","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","J","Y15-29","2011","2995","","" +"UK","M","POP","TOTAL","OC8","J","Y30-49","2011","7935","","" +"UK","M","POP","TOTAL","OC8","J","Y50-64","2011","4330","","" +"UK","M","POP","TOTAL","OC8","J","Y65-84","2011","615","","" +"UK","M","POP","TOTAL","OC8","J","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC8","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","K","Y15-29","2011","1005","","" +"UK","M","POP","TOTAL","OC8","K","Y30-49","2011","3185","","" +"UK","M","POP","TOTAL","OC8","K","Y50-64","2011","1775","","" +"UK","M","POP","TOTAL","OC8","K","Y65-84","2011","315","","" +"UK","M","POP","TOTAL","OC8","K","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC8","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","L","Y15-29","2011","900","","" +"UK","M","POP","TOTAL","OC8","L","Y30-49","2011","2990","","" +"UK","M","POP","TOTAL","OC8","L","Y50-64","2011","2625","","" +"UK","M","POP","TOTAL","OC8","L","Y65-84","2011","450","","" +"UK","M","POP","TOTAL","OC8","L","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC8","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","M","Y15-29","2011","6035","","" +"UK","M","POP","TOTAL","OC8","M","Y30-49","2011","15220","","" +"UK","M","POP","TOTAL","OC8","M","Y50-64","2011","11425","","" +"UK","M","POP","TOTAL","OC8","M","Y65-84","2011","2040","","" +"UK","M","POP","TOTAL","OC8","M","Y_GE85","2011","35","","" +"UK","M","POP","TOTAL","OC8","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","N","Y15-29","2011","11395","","" +"UK","M","POP","TOTAL","OC8","N","Y30-49","2011","33585","","" +"UK","M","POP","TOTAL","OC8","N","Y50-64","2011","25150","","" +"UK","M","POP","TOTAL","OC8","N","Y65-84","2011","3855","","" +"UK","M","POP","TOTAL","OC8","N","Y_GE85","2011","45","","" +"UK","M","POP","TOTAL","OC8","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC8","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC8","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC8","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC8","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC8","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","O","Y15-29","2011","5150","","" +"UK","M","POP","TOTAL","OC8","O","Y30-49","2011","11010","","" +"UK","M","POP","TOTAL","OC8","O","Y50-64","2011","10410","","" +"UK","M","POP","TOTAL","OC8","O","Y65-84","2011","1345","","" +"UK","M","POP","TOTAL","OC8","O","Y_GE85","2011","40","","" +"UK","M","POP","TOTAL","OC8","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","P","Y15-29","2011","3540","","" +"UK","M","POP","TOTAL","OC8","P","Y30-49","2011","17895","","" +"UK","M","POP","TOTAL","OC8","P","Y50-64","2011","17450","","" +"UK","M","POP","TOTAL","OC8","P","Y65-84","2011","2785","","" +"UK","M","POP","TOTAL","OC8","P","Y_GE85","2011","35","","" +"UK","M","POP","TOTAL","OC8","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","Q","Y15-29","2011","2570","","" +"UK","M","POP","TOTAL","OC8","Q","Y30-49","2011","9720","","" +"UK","M","POP","TOTAL","OC8","Q","Y50-64","2011","13790","","" +"UK","M","POP","TOTAL","OC8","Q","Y65-84","2011","3140","","" +"UK","M","POP","TOTAL","OC8","Q","Y_GE85","2011","50","","" +"UK","M","POP","TOTAL","OC8","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","R","Y15-29","2011","2325","","" +"UK","M","POP","TOTAL","OC8","R","Y30-49","2011","3895","","" +"UK","M","POP","TOTAL","OC8","R","Y50-64","2011","3275","","" +"UK","M","POP","TOTAL","OC8","R","Y65-84","2011","755","","" +"UK","M","POP","TOTAL","OC8","R","Y_GE85","2011","15","","" +"UK","M","POP","TOTAL","OC8","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","S","Y15-29","2011","2250","","" +"UK","M","POP","TOTAL","OC8","S","Y30-49","2011","5815","","" +"UK","M","POP","TOTAL","OC8","S","Y50-64","2011","4425","","" +"UK","M","POP","TOTAL","OC8","S","Y65-84","2011","1000","","" +"UK","M","POP","TOTAL","OC8","S","Y_GE85","2011","25","","" +"UK","M","POP","TOTAL","OC8","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","T","Y15-29","2011","35","","" +"UK","M","POP","TOTAL","OC8","T","Y30-49","2011","200","","" +"UK","M","POP","TOTAL","OC8","T","Y50-64","2011","245","","" +"UK","M","POP","TOTAL","OC8","T","Y65-84","2011","30","","" +"UK","M","POP","TOTAL","OC8","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC8","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","U","Y15-29","2011","120","","" +"UK","M","POP","TOTAL","OC8","U","Y30-49","2011","280","","" +"UK","M","POP","TOTAL","OC8","U","Y50-64","2011","240","","" +"UK","M","POP","TOTAL","OC8","U","Y65-84","2011","30","","" +"UK","M","POP","TOTAL","OC8","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC8","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC8","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC8","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC8","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC8","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC8","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC8","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","A","Y15-29","2011","18420","","" +"UK","M","POP","TOTAL","OC9","A","Y30-49","2011","19245","","" +"UK","M","POP","TOTAL","OC9","A","Y50-64","2011","12110","","" +"UK","M","POP","TOTAL","OC9","A","Y65-84","2011","2730","","" +"UK","M","POP","TOTAL","OC9","A","Y_GE85","2011","75","","" +"UK","M","POP","TOTAL","OC9","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","B","Y15-29","2011","555","","" +"UK","M","POP","TOTAL","OC9","B","Y30-49","2011","1260","","" +"UK","M","POP","TOTAL","OC9","B","Y50-64","2011","845","","" +"UK","M","POP","TOTAL","OC9","B","Y65-84","2011","95","","" +"UK","M","POP","TOTAL","OC9","B","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC9","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","C","Y15-29","2011","58245","","" +"UK","M","POP","TOTAL","OC9","C","Y30-49","2011","94575","","" +"UK","M","POP","TOTAL","OC9","C","Y50-64","2011","56810","","" +"UK","M","POP","TOTAL","OC9","C","Y65-84","2011","5745","","" +"UK","M","POP","TOTAL","OC9","C","Y_GE85","2011","200","","" +"UK","M","POP","TOTAL","OC9","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","D","Y15-29","2011","1385","","" +"UK","M","POP","TOTAL","OC9","D","Y30-49","2011","2470","","" +"UK","M","POP","TOTAL","OC9","D","Y50-64","2011","1890","","" +"UK","M","POP","TOTAL","OC9","D","Y65-84","2011","235","","" +"UK","M","POP","TOTAL","OC9","D","Y_GE85","2011","5","","" +"UK","M","POP","TOTAL","OC9","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","E","Y15-29","2011","16130","","" +"UK","M","POP","TOTAL","OC9","E","Y30-49","2011","23855","","" +"UK","M","POP","TOTAL","OC9","E","Y50-64","2011","12925","","" +"UK","M","POP","TOTAL","OC9","E","Y65-84","2011","895","","" +"UK","M","POP","TOTAL","OC9","E","Y_GE85","2011","35","","" +"UK","M","POP","TOTAL","OC9","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","F","Y15-29","2011","75845","","" +"UK","M","POP","TOTAL","OC9","F","Y30-49","2011","85890","","" +"UK","M","POP","TOTAL","OC9","F","Y50-64","2011","40970","","" +"UK","M","POP","TOTAL","OC9","F","Y65-84","2011","4220","","" +"UK","M","POP","TOTAL","OC9","F","Y_GE85","2011","95","","" +"UK","M","POP","TOTAL","OC9","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","G","Y15-29","2011","156570","","" +"UK","M","POP","TOTAL","OC9","G","Y30-49","2011","148065","","" +"UK","M","POP","TOTAL","OC9","G","Y50-64","2011","74015","","" +"UK","M","POP","TOTAL","OC9","G","Y65-84","2011","10310","","" +"UK","M","POP","TOTAL","OC9","G","Y_GE85","2011","245","","" +"UK","M","POP","TOTAL","OC9","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","H","Y15-29","2011","65960","","" +"UK","M","POP","TOTAL","OC9","H","Y30-49","2011","138480","","" +"UK","M","POP","TOTAL","OC9","H","Y50-64","2011","75745","","" +"UK","M","POP","TOTAL","OC9","H","Y65-84","2011","5845","","" +"UK","M","POP","TOTAL","OC9","H","Y_GE85","2011","185","","" +"UK","M","POP","TOTAL","OC9","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","I","Y15-29","2011","228555","","" +"UK","M","POP","TOTAL","OC9","I","Y30-49","2011","79600","","" +"UK","M","POP","TOTAL","OC9","I","Y50-64","2011","27295","","" +"UK","M","POP","TOTAL","OC9","I","Y65-84","2011","4600","","" +"UK","M","POP","TOTAL","OC9","I","Y_GE85","2011","185","","" +"UK","M","POP","TOTAL","OC9","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","J","Y15-29","2011","11100","","" +"UK","M","POP","TOTAL","OC9","J","Y30-49","2011","7405","","" +"UK","M","POP","TOTAL","OC9","J","Y50-64","2011","3840","","" +"UK","M","POP","TOTAL","OC9","J","Y65-84","2011","725","","" +"UK","M","POP","TOTAL","OC9","J","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC9","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","K","Y15-29","2011","3510","","" +"UK","M","POP","TOTAL","OC9","K","Y30-49","2011","5330","","" +"UK","M","POP","TOTAL","OC9","K","Y50-64","2011","3400","","" +"UK","M","POP","TOTAL","OC9","K","Y65-84","2011","665","","" +"UK","M","POP","TOTAL","OC9","K","Y_GE85","2011","10","","" +"UK","M","POP","TOTAL","OC9","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","L","Y15-29","2011","3045","","" +"UK","M","POP","TOTAL","OC9","L","Y30-49","2011","5930","","" +"UK","M","POP","TOTAL","OC9","L","Y50-64","2011","6070","","" +"UK","M","POP","TOTAL","OC9","L","Y65-84","2011","1215","","" +"UK","M","POP","TOTAL","OC9","L","Y_GE85","2011","20","","" +"UK","M","POP","TOTAL","OC9","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","M","Y15-29","2011","6575","","" +"UK","M","POP","TOTAL","OC9","M","Y30-49","2011","9220","","" +"UK","M","POP","TOTAL","OC9","M","Y50-64","2011","6110","","" +"UK","M","POP","TOTAL","OC9","M","Y65-84","2011","1260","","" +"UK","M","POP","TOTAL","OC9","M","Y_GE85","2011","30","","" +"UK","M","POP","TOTAL","OC9","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","N","Y15-29","2011","90695","","" +"UK","M","POP","TOTAL","OC9","N","Y30-49","2011","136265","","" +"UK","M","POP","TOTAL","OC9","N","Y50-64","2011","77645","","" +"UK","M","POP","TOTAL","OC9","N","Y65-84","2011","12280","","" +"UK","M","POP","TOTAL","OC9","N","Y_GE85","2011","180","","" +"UK","M","POP","TOTAL","OC9","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC9","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC9","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC9","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC9","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC9","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","O","Y15-29","2011","9575","","" +"UK","M","POP","TOTAL","OC9","O","Y30-49","2011","22045","","" +"UK","M","POP","TOTAL","OC9","O","Y50-64","2011","20700","","" +"UK","M","POP","TOTAL","OC9","O","Y65-84","2011","3735","","" +"UK","M","POP","TOTAL","OC9","O","Y_GE85","2011","65","","" +"UK","M","POP","TOTAL","OC9","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","P","Y15-29","2011","11840","","" +"UK","M","POP","TOTAL","OC9","P","Y30-49","2011","21030","","" +"UK","M","POP","TOTAL","OC9","P","Y50-64","2011","27210","","" +"UK","M","POP","TOTAL","OC9","P","Y65-84","2011","4830","","" +"UK","M","POP","TOTAL","OC9","P","Y_GE85","2011","60","","" +"UK","M","POP","TOTAL","OC9","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","Q","Y15-29","2011","15360","","" +"UK","M","POP","TOTAL","OC9","Q","Y30-49","2011","22380","","" +"UK","M","POP","TOTAL","OC9","Q","Y50-64","2011","19710","","" +"UK","M","POP","TOTAL","OC9","Q","Y65-84","2011","3025","","" +"UK","M","POP","TOTAL","OC9","Q","Y_GE85","2011","70","","" +"UK","M","POP","TOTAL","OC9","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","R","Y15-29","2011","23560","","" +"UK","M","POP","TOTAL","OC9","R","Y30-49","2011","10930","","" +"UK","M","POP","TOTAL","OC9","R","Y50-64","2011","7720","","" +"UK","M","POP","TOTAL","OC9","R","Y65-84","2011","2060","","" +"UK","M","POP","TOTAL","OC9","R","Y_GE85","2011","45","","" +"UK","M","POP","TOTAL","OC9","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","S","Y15-29","2011","9960","","" +"UK","M","POP","TOTAL","OC9","S","Y30-49","2011","11920","","" +"UK","M","POP","TOTAL","OC9","S","Y50-64","2011","8190","","" +"UK","M","POP","TOTAL","OC9","S","Y65-84","2011","1925","","" +"UK","M","POP","TOTAL","OC9","S","Y_GE85","2011","35","","" +"UK","M","POP","TOTAL","OC9","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","T","Y15-29","2011","235","","" +"UK","M","POP","TOTAL","OC9","T","Y30-49","2011","475","","" +"UK","M","POP","TOTAL","OC9","T","Y50-64","2011","265","","" +"UK","M","POP","TOTAL","OC9","T","Y65-84","2011","70","","" +"UK","M","POP","TOTAL","OC9","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC9","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","U","Y15-29","2011","210","","" +"UK","M","POP","TOTAL","OC9","U","Y30-49","2011","310","","" +"UK","M","POP","TOTAL","OC9","U","Y50-64","2011","205","","" +"UK","M","POP","TOTAL","OC9","U","Y65-84","2011","40","","" +"UK","M","POP","TOTAL","OC9","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC9","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","OC9","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","OC9","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","OC9","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","OC9","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","OC9","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","OC9","UNK","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","A","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","A","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","A","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","A","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","A","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","A","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","B","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","B","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","B","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","B","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","B","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","B","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","C","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","C","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","C","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","C","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","C","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","C","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","D","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","D","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","D","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","D","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","D","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","D","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","E","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","E","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","E","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","E","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","E","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","E","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","F","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","F","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","F","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","F","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","F","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","F","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","G","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","G","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","G","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","G","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","G","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","G","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","H","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","H","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","H","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","H","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","H","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","H","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","I","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","I","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","I","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","I","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","I","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","I","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","J","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","J","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","J","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","J","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","J","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","J","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","K","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","K","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","K","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","K","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","K","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","K","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","L","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","L","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","L","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","L","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","L","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","L","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","M","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","M","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","M","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","M","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","M","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","M","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","N","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","N","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","N","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","N","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","N","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","N","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","NAP","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","NAP","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","NAP","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","NAP","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","NAP","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","NAP","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","O","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","O","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","O","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","O","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","O","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","O","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","P","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","P","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","P","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","P","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","P","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","P","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","Q","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","Q","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","Q","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","Q","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","Q","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","Q","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","R","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","R","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","R","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","R","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","R","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","R","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","S","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","S","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","S","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","S","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","S","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","S","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","T","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","T","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","T","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","T","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","T","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","T","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","U","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","U","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","U","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","U","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","U","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","U","Y_LT15","2011","0","","" +"UK","M","POP","TOTAL","UNK","UNK","Y15-29","2011","0","","" +"UK","M","POP","TOTAL","UNK","UNK","Y30-49","2011","0","","" +"UK","M","POP","TOTAL","UNK","UNK","Y50-64","2011","0","","" +"UK","M","POP","TOTAL","UNK","UNK","Y65-84","2011","0","","" +"UK","M","POP","TOTAL","UNK","UNK","Y_GE85","2011","0","","" +"UK","M","POP","TOTAL","UNK","UNK","Y_LT15","2011","0","","" diff --git a/Project/tableau.ipynb b/Project/tableau.ipynb new file mode 100644 index 0000000..1c8fb45 --- /dev/null +++ b/Project/tableau.ipynb @@ -0,0 +1,3421 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Tableau Project - Week 5\n", + "## Preparing the dataset for analysis in Tableau" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Importing libraries:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Read our csv-file that we prepared in Excel" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXCASPOBOCCINDAGETIMEVALUEFLAGSFOOTNOTES
0BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY15-2920110NaNNaN
1BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY30-4920110NaNNaN
2BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY50-6420110NaNNaN
3BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY65-8420110NaNNaN
4BelgiumFPOPTOTALNot applicableAgriculture, forestry and fishingY_GE8520110NaNNaN
\n", + "
" + ], + "text/plain": [ + " GEO SEX CAS POB OCC \\\n", + "0 Belgium F POP TOTAL Not applicable \n", + "1 Belgium F POP TOTAL Not applicable \n", + "2 Belgium F POP TOTAL Not applicable \n", + "3 Belgium F POP TOTAL Not applicable \n", + "4 Belgium F POP TOTAL Not applicable \n", + "\n", + " IND AGE TIME VALUE FLAGS FOOTNOTES \n", + "0 Agriculture, forestry and fishing    Y15-29 2011 0 NaN NaN \n", + "1 Agriculture, forestry and fishing    Y30-49 2011 0 NaN NaN \n", + "2 Agriculture, forestry and fishing    Y50-64 2011 0 NaN NaN \n", + "3 Agriculture, forestry and fishing    Y65-84 2011 0 NaN NaN \n", + "4 Agriculture, forestry and fishing    Y_GE85 2011 0 NaN NaN " + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data = pd.read_csv(\"Age_Industry.csv\", sep=\";\", encoding = \"unicode_escape\")\n", + "data.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "array(['0', '553484', '314136', ..., '23560', '9960', '8190'],\n", + " dtype=object)" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "data[\"VALUE\"].unique()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Dropping unnecessary columns:" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXOCCINDAGEVALUE
0BelgiumFNot applicableAgriculture, forestry and fishingY15-290
1BelgiumFNot applicableAgriculture, forestry and fishingY30-490
2BelgiumFNot applicableAgriculture, forestry and fishingY50-640
\n", + "
" + ], + "text/plain": [ + " GEO SEX OCC IND AGE \\\n", + "0 Belgium F Not applicable Agriculture, forestry and fishing    Y15-29 \n", + "1 Belgium F Not applicable Agriculture, forestry and fishing    Y30-49 \n", + "2 Belgium F Not applicable Agriculture, forestry and fishing    Y50-64 \n", + "\n", + " VALUE \n", + "0 0 \n", + "1 0 \n", + "2 0 " + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds = data.drop(columns=[\"TIME\", \"POB\", \"CAS\", \"FLAGS\", \"FOOTNOTES\"])\n", + "ds.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Checking with describe() method:" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXOCCINDAGEVALUE
count960489604896048960489604896048
unique292122366718
topMaltaFManagersEducationY65-840
freq331248024800441761600856937
\n", + "
" + ], + "text/plain": [ + " GEO SEX OCC IND AGE VALUE\n", + "count 96048 96048 96048 96048 96048 96048\n", + "unique 29 2 12 23 6 6718\n", + "top Malta F Managers Education    Y65-84 0\n", + "freq 3312 48024 8004 4176 16008 56937" + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds.describe()" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"\\ncommands in linux:\\nhead \\n\\nfile \\n# type\\n\\nawk 'NR==3' \\n# prints file\\n\\nwc -l \\n# word count -line\\n\"" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\"\"\"\n", + "commands in linux:\n", + "head \n", + "\n", + "file \n", + "# type\n", + "\n", + "awk 'NR==3' \n", + "# prints file\n", + "\n", + "wc -l \n", + "# word count -line\n", + "\"\"\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Rename columns:" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "ds.columns = [\"Country\", \"Sex\", \"Occupation\", \"Industry\", \"Age\", \"Value\"]" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 0\n", + "1 0\n", + "2 0\n", + "3 0\n", + "4 0\n", + " ..\n", + "96043 0\n", + "96044 0\n", + "96045 0\n", + "96046 0\n", + "96047 0\n", + "Name: Value, Length: 96048, dtype: object" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds.Value" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Taking out the all the rows without values." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" + ] + } + ], + "source": [ + "ds1 = ds[\":\"!=ds[\"Value\"]]\n", + "ds1[\"Value\"] = [int(i) for i in ds1[\"Value\"]]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Adding a count just to check for the amount of grouped rows when using groupby() later" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \"\"\"Entry point for launching an IPython kernel.\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecount
0BelgiumFNot applicableAgriculture, forestry and fishingY15-2901
1BelgiumFNot applicableAgriculture, forestry and fishingY30-4901
2BelgiumFNot applicableAgriculture, forestry and fishingY50-6401
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age \\\n", + "0 Belgium F Not applicable Agriculture, forestry and fishing    Y15-29 \n", + "1 Belgium F Not applicable Agriculture, forestry and fishing    Y30-49 \n", + "2 Belgium F Not applicable Agriculture, forestry and fishing    Y50-64 \n", + "\n", + " Value count \n", + "0 0 1 \n", + "1 0 1 \n", + "2 0 1 " + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds1[\"count\"]=1\n", + "ds1.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Taking out countries that only have summed values and value 0 :" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountmark
0BelgiumFNot applicableAgriculture, forestry and fishingY15-29011
1BelgiumFNot applicableAgriculture, forestry and fishingY30-49011
2BelgiumFNot applicableAgriculture, forestry and fishingY50-64011
3BelgiumFNot applicableAgriculture, forestry and fishingY65-84011
4BelgiumFNot applicableAgriculture, forestry and fishingY_GE85011
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age \\\n", + "0 Belgium F Not applicable Agriculture, forestry and fishing    Y15-29 \n", + "1 Belgium F Not applicable Agriculture, forestry and fishing    Y30-49 \n", + "2 Belgium F Not applicable Agriculture, forestry and fishing    Y50-64 \n", + "3 Belgium F Not applicable Agriculture, forestry and fishing    Y65-84 \n", + "4 Belgium F Not applicable Agriculture, forestry and fishing    Y_GE85 \n", + "\n", + " Value count mark \n", + "0 0 1 1 \n", + "1 0 1 1 \n", + "2 0 1 1 \n", + "3 0 1 1 \n", + "4 0 1 1 " + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "out = [\"DK\", \"ES\", \"FI\", \"IS\", \"IT\", \"LT\", \"NL\", \"NO\", \"SE\"]\n", + "ds1[\"mark\"] = [1 if i not in out else 0 for i in ds1[\"Country\"]]\n", + "ds1.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecount
0BelgiumFNot applicableAgriculture, forestry and fishingY15-2901
1BelgiumFNot applicableAgriculture, forestry and fishingY30-4901
2BelgiumFNot applicableAgriculture, forestry and fishingY50-6401
3BelgiumFNot applicableAgriculture, forestry and fishingY65-8401
4BelgiumFNot applicableAgriculture, forestry and fishingY_GE8501
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age \\\n", + "0 Belgium F Not applicable Agriculture, forestry and fishing    Y15-29 \n", + "1 Belgium F Not applicable Agriculture, forestry and fishing    Y30-49 \n", + "2 Belgium F Not applicable Agriculture, forestry and fishing    Y50-64 \n", + "3 Belgium F Not applicable Agriculture, forestry and fishing    Y65-84 \n", + "4 Belgium F Not applicable Agriculture, forestry and fishing    Y_GE85 \n", + "\n", + " Value count \n", + "0 0 1 \n", + "1 0 1 \n", + "2 0 1 \n", + "3 0 1 \n", + "4 0 1 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "ds1 = ds1[1==ds1[\"mark\"]]\n", + "ds1.drop(columns=\"mark\", inplace=True)\n", + "ds1.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Testing for summed values and counts :" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryValuecount
0Belgium110006383312
1Bulgaria73643093119
2Croatia42848893312
3Cyprus8401063095
4Czechia104009333312
5Denmark01413
6Estonia12944553312
7Finland03312
8France649323393312
9Greece108162863312
10Hungary99376283312
11Iceland01976
12Ireland45748883312
13Italy01729
14Latvia20703713312
15Liechtenstein357212991
16Lithuania03312
17Luxembourg5123533312
18Malta4174323312
19Netherlands03312
20Norway01628
21Poland380187182841
22Portugal105621783312
23Romania201214943201
24Slovakia03312
25Slovenia20501893312
26Spain01424
27Sweden01670
28United Kingdom631821653312
\n", + "
" + ], + "text/plain": [ + " Country Value count\n", + "0 Belgium 11000638 3312\n", + "1 Bulgaria 7364309 3119\n", + "2 Croatia 4284889 3312\n", + "3 Cyprus 840106 3095\n", + "4 Czechia 10400933 3312\n", + "5 Denmark 0 1413\n", + "6 Estonia 1294455 3312\n", + "7 Finland 0 3312\n", + "8 France 64932339 3312\n", + "9 Greece 10816286 3312\n", + "10 Hungary 9937628 3312\n", + "11 Iceland 0 1976\n", + "12 Ireland 4574888 3312\n", + "13 Italy 0 1729\n", + "14 Latvia 2070371 3312\n", + "15 Liechtenstein 35721 2991\n", + "16 Lithuania 0 3312\n", + "17 Luxembourg 512353 3312\n", + "18 Malta 417432 3312\n", + "19 Netherlands 0 3312\n", + "20 Norway 0 1628\n", + "21 Poland 38018718 2841\n", + "22 Portugal 10562178 3312\n", + "23 Romania 20121494 3201\n", + "24 Slovakia 0 3312\n", + "25 Slovenia 2050189 3312\n", + "26 Spain 0 1424\n", + "27 Sweden 0 1670\n", + "28 United Kingdom 63182165 3312" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test = ds1.groupby([\"Country\"], as_index=False).agg({\"Value\":'sum', 'count':'sum'})\n", + "test" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OccupationIndustryAgeValuecount
0Armed forces occupationsAccommodation and food service activitiesY15-29195753
1Armed forces occupationsAccommodation and food service activitiesY30-49175754
2Armed forces occupationsAccommodation and food service activitiesY50-6433054
3Armed forces occupationsAccommodation and food service activitiesY65-84058
4Armed forces occupationsAccommodation and food service activitiesY_GE85057
..................
1651Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y30-4995756946
1652Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y50-6430607746
1653Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y65-841814545
1654Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y_GE8540250
1655Technicians and associate professionalsWholesale and retail trade; repair of motor ve...Y_LT15058
\n", + "

1656 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " Occupation \\\n", + "0 Armed forces occupations \n", + "1 Armed forces occupations \n", + "2 Armed forces occupations \n", + "3 Armed forces occupations \n", + "4 Armed forces occupations \n", + "... ... \n", + "1651 Technicians and associate professionals \n", + "1652 Technicians and associate professionals \n", + "1653 Technicians and associate professionals \n", + "1654 Technicians and associate professionals \n", + "1655 Technicians and associate professionals \n", + "\n", + " Industry Age Value count \n", + "0 Accommodation and food service activities    Y15-29 1957 53 \n", + "1 Accommodation and food service activities    Y30-49 1757 54 \n", + "2 Accommodation and food service activities    Y50-64 330 54 \n", + "3 Accommodation and food service activities    Y65-84 0 58 \n", + "4 Accommodation and food service activities    Y_GE85 0 57 \n", + "... ... ... ... ... \n", + "1651 Wholesale and retail trade; repair of motor ve... Y30-49 957569 46 \n", + "1652 Wholesale and retail trade; repair of motor ve... Y50-64 306077 46 \n", + "1653 Wholesale and retail trade; repair of motor ve... Y65-84 18145 45 \n", + "1654 Wholesale and retail trade; repair of motor ve... Y_GE85 402 50 \n", + "1655 Wholesale and retail trade; repair of motor ve... Y_LT15 0 58 \n", + "\n", + "[1656 rows x 5 columns]" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test1 = ds1.groupby([\"Occupation\", \"Industry\", \"Age\"], as_index=False).agg({\"Value\":'sum', 'count':'sum'})\n", + "test1" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OccupationIndustryAgeValuecountRelative
0Armed forces occupationsAccommodation and food service activitiesY15-291957530.000007
1Armed forces occupationsAccommodation and food service activitiesY30-491757540.000007
2Armed forces occupationsAccommodation and food service activitiesY50-64330540.000001
3Armed forces occupationsAccommodation and food service activitiesY65-840580.000000
4Armed forces occupationsAccommodation and food service activitiesY_GE850570.000000
\n", + "
" + ], + "text/plain": [ + " Occupation Industry \\\n", + "0 Armed forces occupations Accommodation and food service activities    \n", + "1 Armed forces occupations Accommodation and food service activities    \n", + "2 Armed forces occupations Accommodation and food service activities    \n", + "3 Armed forces occupations Accommodation and food service activities    \n", + "4 Armed forces occupations Accommodation and food service activities    \n", + "\n", + " Age Value count Relative \n", + "0 Y15-29 1957 53 0.000007 \n", + "1 Y30-49 1757 54 0.000007 \n", + "2 Y50-64 330 54 0.000001 \n", + "3 Y65-84 0 58 0.000000 \n", + "4 Y_GE85 0 57 0.000000 " + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "test1[\"Relative\"]= test1['Value']/sum(test1[\"Value\"])\n", + "test1.head(5)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Adding Total value per country and relative values over respective country and over relative values over entirety:" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/home/jan/.local/lib/python3.6/site-packages/ipykernel_launcher.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: http://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " \n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countries
84BelgiumFNot applicableNot applicableY15-2955348410.002109
85BelgiumFNot applicableNot applicableY30-4931413610.001197
86BelgiumFNot applicableNot applicableY50-6452995710.002020
87BelgiumFNot applicableNot applicableY65-8489959910.003428
88BelgiumFNot applicableNot applicableY_GE8517393310.000663
89BelgiumFNot applicableNot applicableY_LT1591281510.003478
1518BelgiumFNot statedAgriculture, forestry and fishingY15-29202710.000008
1519BelgiumFNot statedAgriculture, forestry and fishingY30-491026610.000039
1520BelgiumFNot statedAgriculture, forestry and fishingY50-64765110.000029
1521BelgiumFNot statedAgriculture, forestry and fishingY65-84118410.000005
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry \\\n", + "84 Belgium F Not applicable Not applicable   \n", + "85 Belgium F Not applicable Not applicable   \n", + "86 Belgium F Not applicable Not applicable   \n", + "87 Belgium F Not applicable Not applicable   \n", + "88 Belgium F Not applicable Not applicable   \n", + "89 Belgium F Not applicable Not applicable   \n", + "1518 Belgium F Not stated Agriculture, forestry and fishing    \n", + "1519 Belgium F Not stated Agriculture, forestry and fishing    \n", + "1520 Belgium F Not stated Agriculture, forestry and fishing    \n", + "1521 Belgium F Not stated Agriculture, forestry and fishing    \n", + "\n", + " Age Value count Relative / all countries \n", + "84 Y15-29 553484 1 0.002109 \n", + "85 Y30-49 314136 1 0.001197 \n", + "86 Y50-64 529957 1 0.002020 \n", + "87 Y65-84 899599 1 0.003428 \n", + "88 Y_GE85 173933 1 0.000663 \n", + "89 Y_LT15 912815 1 0.003478 \n", + "1518 Y15-29 2027 1 0.000008 \n", + "1519 Y30-49 10266 1 0.000039 \n", + "1520 Y50-64 7651 1 0.000029 \n", + "1521 Y65-84 1184 1 0.000005 " + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work = ds1[ds1['Value']!=0]\n", + "work[\"Relative / all countries\"]= work['Value']/sum(work[\"Value\"])\n", + "work.head(10)" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_Population
0BelgiumFNot applicableNot applicableY15-2955348410.00210911000638
1BelgiumFNot applicableNot applicableY30-4931413610.00119711000638
2BelgiumFNot applicableNot applicableY50-6452995710.00202011000638
3BelgiumFNot applicableNot applicableY65-8489959910.00342811000638
4BelgiumFNot applicableNot applicableY_GE8517393310.00066311000638
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "4 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative / all countries Total_Population \n", + "0 0.002109 11000638 \n", + "1 0.001197 11000638 \n", + "2 0.002020 11000638 \n", + "3 0.003428 11000638 \n", + "4 0.000663 11000638 " + ] + }, + "execution_count": 33, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "population = work.groupby(\"Country\", as_index = False).agg({\"Value\":\"sum\"})\n", + "new_work = work.merge(population, on = \"Country\")\n", + "new_work.columns = [\"Country\", \"Sex\", \"Occupation\", \"Industry\", \"Age\", \"Value\", \"count\", \"Relative / all countries\",\"Total_Population\"]\n", + "new_work.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_PopulationRelative per country
0BelgiumFNot applicableNot applicableY15-2955348410.002109110006380.050314
1BelgiumFNot applicableNot applicableY30-4931413610.001197110006380.028556
2BelgiumFNot applicableNot applicableY50-6452995710.002020110006380.048175
3BelgiumFNot applicableNot applicableY65-8489959910.003428110006380.081777
4BelgiumFNot applicableNot applicableY_GE8517393310.000663110006380.015811
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "4 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative / all countries Total_Population Relative per country \n", + "0 0.002109 11000638 0.050314 \n", + "1 0.001197 11000638 0.028556 \n", + "2 0.002020 11000638 0.048175 \n", + "3 0.003428 11000638 0.081777 \n", + "4 0.000663 11000638 0.015811 " + ] + }, + "execution_count": 34, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_work[\"Relative per country\"]= new_work[\"Value\"]/new_work[\"Total_Population\"]\n", + "new_work.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Marking population that will exit the work force within the next years by splitting by age. Younger than 50 are marked as 'Young' otherwise 'Old':" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_PopulationRelative per countryYoung
0BelgiumFNot applicableNot applicableY15-2955348410.002109110006380.0503141
1BelgiumFNot applicableNot applicableY30-4931413610.001197110006380.0285561
2BelgiumFNot applicableNot applicableY50-6452995710.002020110006380.0481750
3BelgiumFNot applicableNot applicableY65-8489959910.003428110006380.0817770
4BelgiumFNot applicableNot applicableY_GE8517393310.000663110006380.0158110
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "4 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative / all countries Total_Population Relative per country Young \n", + "0 0.002109 11000638 0.050314 1 \n", + "1 0.001197 11000638 0.028556 1 \n", + "2 0.002020 11000638 0.048175 0 \n", + "3 0.003428 11000638 0.081777 0 \n", + "4 0.000663 11000638 0.015811 0 " + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import re\n", + "new_work[\"Young\"] = [1 if i.startswith(\"Y1\") or i.startswith(\"Y3\") else 0 for i in new_work[\"Age\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_PopulationRelative per countryYoungOld
0BelgiumFNot applicableNot applicableY15-2955348410.002109110006380.05031410
1BelgiumFNot applicableNot applicableY30-4931413610.001197110006380.02855610
2BelgiumFNot applicableNot applicableY50-6452995710.002020110006380.04817501
3BelgiumFNot applicableNot applicableY65-8489959910.003428110006380.08177701
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "\n", + " Relative / all countries Total_Population Relative per country Young \\\n", + "0 0.002109 11000638 0.050314 1 \n", + "1 0.001197 11000638 0.028556 1 \n", + "2 0.002020 11000638 0.048175 0 \n", + "3 0.003428 11000638 0.081777 0 \n", + "\n", + " Old \n", + "0 0 \n", + "1 0 \n", + "2 1 \n", + "3 1 " + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_work[\"Old\"] = [0 if i.startswith(\"Y1\") or i.startswith(\"Y3\") else 1 for i in new_work[\"Age\"]]\n", + "new_work.head(4)" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative / all countriesTotal_PopulationRelative per countryYoungOldYoung or Old
0BelgiumFNot applicableNot applicableY15-2955348410.002109110006380.05031410Young
1BelgiumFNot applicableNot applicableY30-4931413610.001197110006380.02855610Young
2BelgiumFNot applicableNot applicableY50-6452995710.002020110006380.04817501Old
3BelgiumFNot applicableNot applicableY65-8489959910.003428110006380.08177701Old
4BelgiumFNot applicableNot applicableY_GE8517393310.000663110006380.01581101Old
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "0 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "1 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "2 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "3 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "4 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative / all countries Total_Population Relative per country Young \\\n", + "0 0.002109 11000638 0.050314 1 \n", + "1 0.001197 11000638 0.028556 1 \n", + "2 0.002020 11000638 0.048175 0 \n", + "3 0.003428 11000638 0.081777 0 \n", + "4 0.000663 11000638 0.015811 0 \n", + "\n", + " Old Young or Old \n", + "0 0 Young \n", + "1 0 Young \n", + "2 1 Old \n", + "3 1 Old \n", + "4 1 Old " + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "new_work[\"Young or Old\"] = [\"Young\" if i.startswith(\"Y1\") or i.startswith(\"Y3\") else \"Old\" for i in new_work[\"Age\"]]\n", + "new_work.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "\"\\nwork.loc[work['Country'].str.startswith('BE'), 'Country'] = 'Belgium'\\nwork.loc[work['Country'].str.startswith('BG'), 'Country'] = 'Bulgaria'\\nwork.loc[work['Country'].str.startswith('CY'), 'Country'] = 'Cyprus'\\nwork.loc[work['Country'].str.startswith('CZ'), 'Country'] = 'Czechia'\\nwork.loc[work['Country'].str.startswith('EE'), 'Country'] = 'Estonia'\\nwork.loc[work['Country'].str.startswith('EL'), 'Country'] = 'Greece'\\nwork.loc[work['Country'].str.startswith('FR'), 'Country'] = 'France'\\nwork.loc[work['Country'].str.startswith('HR'), 'Country'] = 'Croatia'\\nwork.loc[work['Country'].str.startswith('HU'), 'Country'] = 'Hungary'\\nwork.loc[work['Country'].str.startswith('IE'), 'Country'] = 'Ireland'\\nwork.loc[work['Country'].str.startswith('LI'), 'Country'] = 'Lithuania'\\nwork.loc[work['Country'].str.startswith('LU'), 'Country'] = 'Luxembourg'\\nwork.loc[work['Country'].str.startswith('LV'), 'Country'] = 'Latvia'\\nwork.loc[work['Country'].str.startswith('MT'), 'Country'] = 'Malta'\\nwork.loc[work['Country'].str.startswith('PL'), 'Country'] = 'Poland'\\nwork.loc[work['Country'].str.startswith('PT'), 'Country'] = 'Portugal'\\nwork.loc[work['Country'].str.startswith('RO'), 'Country'] = 'Romania'\\nwork.loc[work['Country'].str.startswith('SI'), 'Country'] = 'Slovenia'\\nwork.loc[work['Country'].str.startswith('SK'), 'Country'] = 'Slovakia'\\nwork.loc[work['Country'].str.startswith('UK'), 'Country'] = 'United Kingdom'\\nwork.head()\\n\"" + ] + }, + "execution_count": 21, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\"\"\"\n", + "work.loc[work['Country'].str.startswith('BE'), 'Country'] = 'Belgium'\n", + "work.loc[work['Country'].str.startswith('BG'), 'Country'] = 'Bulgaria'\n", + "work.loc[work['Country'].str.startswith('CY'), 'Country'] = 'Cyprus'\n", + "work.loc[work['Country'].str.startswith('CZ'), 'Country'] = 'Czechia'\n", + "work.loc[work['Country'].str.startswith('EE'), 'Country'] = 'Estonia'\n", + "work.loc[work['Country'].str.startswith('EL'), 'Country'] = 'Greece'\n", + "work.loc[work['Country'].str.startswith('FR'), 'Country'] = 'France'\n", + "work.loc[work['Country'].str.startswith('HR'), 'Country'] = 'Croatia'\n", + "work.loc[work['Country'].str.startswith('HU'), 'Country'] = 'Hungary'\n", + "work.loc[work['Country'].str.startswith('IE'), 'Country'] = 'Ireland'\n", + "work.loc[work['Country'].str.startswith('LI'), 'Country'] = 'Lithuania'\n", + "work.loc[work['Country'].str.startswith('LU'), 'Country'] = 'Luxembourg'\n", + "work.loc[work['Country'].str.startswith('LV'), 'Country'] = 'Latvia'\n", + "work.loc[work['Country'].str.startswith('MT'), 'Country'] = 'Malta'\n", + "work.loc[work['Country'].str.startswith('PL'), 'Country'] = 'Poland'\n", + "work.loc[work['Country'].str.startswith('PT'), 'Country'] = 'Portugal'\n", + "work.loc[work['Country'].str.startswith('RO'), 'Country'] = 'Romania'\n", + "work.loc[work['Country'].str.startswith('SI'), 'Country'] = 'Slovenia'\n", + "work.loc[work['Country'].str.startswith('SK'), 'Country'] = 'Slovakia'\n", + "work.loc[work['Country'].str.startswith('UK'), 'Country'] = 'United Kingdom'\n", + "work.head()\n", + "\"\"\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Just checking the values and counts per industry" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
OccupationIndustryAgeValuecountRelative
0Armed forces occupationsAccommodation and food service activitiesY15-29195747.457594e-06
1Armed forces occupationsAccommodation and food service activitiesY30-49175776.695448e-06
2Armed forces occupationsAccommodation and food service activitiesY50-6433061.257540e-06
3Armed forces occupationsActivities of extraterritorial organisations a...Y15-2921978.345493e-07
4Armed forces occupationsActivities of extraterritorial organisations a...Y30-49908133.460140e-06
5Armed forces occupationsActivities of extraterritorial organisations a...Y50-6478102.972367e-07
6Armed forces occupationsActivities of households as employers; undiffe...Y15-29113.810727e-09
7Armed forces occupationsActivities of households as employers; undiffe...Y30-492138.002528e-08
8Armed forces occupationsActivities of households as employers; undiffe...Y65-84311.143218e-08
9Armed forces occupationsAdministrative and support service activitiesY15-291417115.399801e-06
10Armed forces occupationsAdministrative and support service activitiesY30-494231101.612319e-05
11Armed forces occupationsAdministrative and support service activitiesY50-6459982.282626e-06
12Armed forces occupationsAdministrative and support service activitiesY65-842549.526818e-08
13Armed forces occupationsAgriculture, forestry and fishingY15-2912744.839624e-07
14Armed forces occupationsAgriculture, forestry and fishingY30-4928651.089868e-06
15Armed forces occupationsAgriculture, forestry and fishingY50-647252.743724e-07
16Armed forces occupationsArts, entertainment and recreationY15-2947891.821528e-06
17Armed forces occupationsArts, entertainment and recreationY30-49738122.812317e-06
18Armed forces occupationsArts, entertainment and recreationY50-6417756.744987e-07
19Armed forces occupationsConstructionY15-2939761.512859e-06
20Armed forces occupationsConstructionY30-4950261.912985e-06
21Armed forces occupationsConstructionY50-6414045.335018e-07
22Armed forces occupationsEducationY15-291668146.356293e-06
23Armed forces occupationsEducationY30-492026137.720534e-06
24Armed forces occupationsEducationY50-64344101.310890e-06
\n", + "
" + ], + "text/plain": [ + " Occupation \\\n", + "0 Armed forces occupations \n", + "1 Armed forces occupations \n", + "2 Armed forces occupations \n", + "3 Armed forces occupations \n", + "4 Armed forces occupations \n", + "5 Armed forces occupations \n", + "6 Armed forces occupations \n", + "7 Armed forces occupations \n", + "8 Armed forces occupations \n", + "9 Armed forces occupations \n", + "10 Armed forces occupations \n", + "11 Armed forces occupations \n", + "12 Armed forces occupations \n", + "13 Armed forces occupations \n", + "14 Armed forces occupations \n", + "15 Armed forces occupations \n", + "16 Armed forces occupations \n", + "17 Armed forces occupations \n", + "18 Armed forces occupations \n", + "19 Armed forces occupations \n", + "20 Armed forces occupations \n", + "21 Armed forces occupations \n", + "22 Armed forces occupations \n", + "23 Armed forces occupations \n", + "24 Armed forces occupations \n", + "\n", + " Industry Age Value count \\\n", + "0 Accommodation and food service activities    Y15-29 1957 4 \n", + "1 Accommodation and food service activities    Y30-49 1757 7 \n", + "2 Accommodation and food service activities    Y50-64 330 6 \n", + "3 Activities of extraterritorial organisations a... Y15-29 219 7 \n", + "4 Activities of extraterritorial organisations a... Y30-49 908 13 \n", + "5 Activities of extraterritorial organisations a... Y50-64 78 10 \n", + "6 Activities of households as employers; undiffe... Y15-29 1 1 \n", + "7 Activities of households as employers; undiffe... Y30-49 21 3 \n", + "8 Activities of households as employers; undiffe... Y65-84 3 1 \n", + "9 Administrative and support service activities    Y15-29 1417 11 \n", + "10 Administrative and support service activities    Y30-49 4231 10 \n", + "11 Administrative and support service activities    Y50-64 599 8 \n", + "12 Administrative and support service activities    Y65-84 25 4 \n", + "13 Agriculture, forestry and fishing    Y15-29 127 4 \n", + "14 Agriculture, forestry and fishing    Y30-49 286 5 \n", + "15 Agriculture, forestry and fishing    Y50-64 72 5 \n", + "16 Arts, entertainment and recreation    Y15-29 478 9 \n", + "17 Arts, entertainment and recreation    Y30-49 738 12 \n", + "18 Arts, entertainment and recreation    Y50-64 177 5 \n", + "19 Construction    Y15-29 397 6 \n", + "20 Construction    Y30-49 502 6 \n", + "21 Construction    Y50-64 140 4 \n", + "22 Education    Y15-29 1668 14 \n", + "23 Education    Y30-49 2026 13 \n", + "24 Education    Y50-64 344 10 \n", + "\n", + " Relative \n", + "0 7.457594e-06 \n", + "1 6.695448e-06 \n", + "2 1.257540e-06 \n", + "3 8.345493e-07 \n", + "4 3.460140e-06 \n", + "5 2.972367e-07 \n", + "6 3.810727e-09 \n", + "7 8.002528e-08 \n", + "8 1.143218e-08 \n", + "9 5.399801e-06 \n", + "10 1.612319e-05 \n", + "11 2.282626e-06 \n", + "12 9.526818e-08 \n", + "13 4.839624e-07 \n", + "14 1.089868e-06 \n", + "15 2.743724e-07 \n", + "16 1.821528e-06 \n", + "17 2.812317e-06 \n", + "18 6.744987e-07 \n", + "19 1.512859e-06 \n", + "20 1.912985e-06 \n", + "21 5.335018e-07 \n", + "22 6.356293e-06 \n", + "23 7.720534e-06 \n", + "24 1.310890e-06 " + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work2 = work.groupby([\"Occupation\", \"Industry\", \"Age\"], as_index=False).agg({\"Value\":'sum', 'count':'sum'})\n", + "work2[\"Relative value over \"]= work2['Value']/sum(work2[\"Value\"])\n", + "work2.head(25)" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(1181, 6)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work2.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(27766, 8)" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountrySexOccupationIndustryAgeValuecountRelative
84BelgiumFNot applicableNot applicableY15-2955348410.002109
85BelgiumFNot applicableNot applicableY30-4931413610.001197
86BelgiumFNot applicableNot applicableY50-6452995710.002020
87BelgiumFNot applicableNot applicableY65-8489959910.003428
88BelgiumFNot applicableNot applicableY_GE8517393310.000663
\n", + "
" + ], + "text/plain": [ + " Country Sex Occupation Industry Age Value count \\\n", + "84 Belgium F Not applicable Not applicable   Y15-29 553484 1 \n", + "85 Belgium F Not applicable Not applicable   Y30-49 314136 1 \n", + "86 Belgium F Not applicable Not applicable   Y50-64 529957 1 \n", + "87 Belgium F Not applicable Not applicable   Y65-84 899599 1 \n", + "88 Belgium F Not applicable Not applicable   Y_GE85 173933 1 \n", + "\n", + " Relative \n", + "84 0.002109 \n", + "85 0.001197 \n", + "86 0.002020 \n", + "87 0.003428 \n", + "88 0.000663 " + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "work.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating the csv file that we will analyse in tableau" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'new_work' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[0;32m\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mnew_work\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mto_csv\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"work.csv\"\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msep\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;34m\";\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m", + "\u001b[0;31mNameError\u001b[0m: name 'new_work' is not defined" + ] + } + ], + "source": [ + "new_work.to_csv(\"work.csv\", sep = \";\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Using the dataset to create an age pyramid" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXAGETIMEVALUEFLAGSFOOTNOTES
0ATFY1201138858NaNNaN
1ATFY10201139520NaNNaN
2ATFY11201140698NaNNaN
3ATFY12201141040NaNNaN
4ATFY13201142310NaNNaN
\n", + "
" + ], + "text/plain": [ + " GEO SEX AGE TIME VALUE FLAGS FOOTNOTES\n", + "0 AT F Y1 2011 38858 NaN NaN\n", + "1 AT F Y10 2011 39520 NaN NaN\n", + "2 AT F Y11 2011 40698 NaN NaN\n", + "3 AT F Y12 2011 41040 NaN NaN\n", + "4 AT F Y13 2011 42310 NaN NaN" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "py = pd.read_csv(\"/home/jan/Downloads/singeleyears.csv\")\n", + "py.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXAGEVALUE
0ATFY138858
1ATFY1039520
2ATFY1140698
3ATFY1241040
4ATFY1342310
...............
96ATFY971682
97ATFY981185
98ATFY99737
100ATMY140705
101ATMY1041371
\n", + "

101 rows × 4 columns

\n", + "
" + ], + "text/plain": [ + " GEO SEX AGE VALUE\n", + "0 AT F Y1 38858\n", + "1 AT F Y10 39520\n", + "2 AT F Y11 40698\n", + "3 AT F Y12 41040\n", + "4 AT F Y13 42310\n", + ".. .. .. ... ...\n", + "96 AT F Y97 1682\n", + "97 AT F Y98 1185\n", + "98 AT F Y99 737\n", + "100 AT M Y1 40705\n", + "101 AT M Y10 41371\n", + "\n", + "[101 rows x 4 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "import seaborn as sns\n", + "pyramid = py[[\"GEO\",\"SEX\",\"AGE\",\"VALUE\"]]\n", + "pyramid = pyramid[pyramid[\"AGE\"]!=\"Y_LT1\"]\n", + "pyramid.head(101)" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOSEXAGEVALUEAge
0ATFY1388581
1ATFY103952010
2ATFY114069811
\n", + "
" + ], + "text/plain": [ + " GEO SEX AGE VALUE Age\n", + "0 AT F Y1 38858 1\n", + "1 AT F Y10 39520 10\n", + "2 AT F Y11 40698 11" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pyramid[\"Age\"]= [int(i[1:]) for i in pyramid[\"AGE\"]]\n", + "pyramid.head(3)" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
SEXAgeVALUE
0F182351.93750
1F283187.84375
2F382936.34375
3F481560.71875
4F580817.31250
\n", + "
" + ], + "text/plain": [ + " SEX Age VALUE\n", + "0 F 1 82351.93750\n", + "1 F 2 83187.84375\n", + "2 F 3 82936.34375\n", + "3 F 4 81560.71875\n", + "4 F 5 80817.31250" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "tot = pyramid.groupby([\"SEX\", \"Age\"], as_index=False).agg({\"VALUE\":'mean'})\n", + "tot.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "However, in the dataset the ages are more or less uniformly distributed" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAWAAAAFgCAYAAACFYaNMAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nOzdZ3RUV5rv/++uIJVyTkggkJBAJGPAZIMBt+12Tu1saCfAocPt6Tszfe+Lueu/7sztXtPJM+2xG0ewjQMYu7HBGJPB5CQQCElIQkIo51SSKuz/C0k0YxMEnFOn6mh/1vICFaXaT7eqfnpq1z57CykliqIoiu9ZjC5AURRlsFIBrCiKYhAVwIqiKAZRAawoimIQFcCKoigGsRldgBbuuOMOuWHDBqPLUBRFuRRxsRtN0QHX19cbXYKiKMpVM0UAK4qiBCIVwIqiKAZRAawoimIQFcCKoigGUQGsKIpiEBXAiqIoBlEBrCiKYhAVwIqiKAZRAawoimIQFcCKoigGUQGsKIpiEBXAiqIoBjHFbmjK5RUVFfHpqlV4vV4AYmNiWbp0CVar1eDKlEDU3NzMm8uW0d3dDUBwcDAvLF5MdHS0wZUFHt07YCHEO0KIWiFE3gW3/bsQ4pQQ4pgQ4nMhRPQF//YbIcRpIUSBEOJ2vesbDE6cOEFLSytB0WnIoChKS0uoq6szuiwlQJ0+fZqa2lqGOFykBLuoqa2luLjY6LICki+mIN4D7vjebd8C46SUE4BC4DcAQogxwGPA2L7v+S8hhGrTrlNlVRWhUQlkTr2L9InzAaiurja4KiVQVVVVYbUI7h8bzwPj4rFaBFVVVUaXFZB0D2Ap5Q6g8Xu3bZRSuvu+3Auk9f39PuBjKWW3lLIUOA1M1btGM5NSUlXZG8AAIRGxCGGhsrLS4MqUQFVZWUlCWBAWi8BiESSEBann0zXyhw/hngW+7vt7KnD2gn+r6LvtB4QQi4UQB4UQB9Xb6Uurr6/H6ewkLDYFAIvVRmh0IuXl5QZXpgQir9fL2fJyhkTaz9+WEmnnbHn5+c8YlIEzNICFEP8bcAMfXu33SimXSSmnSCmnJCQkaF+cSZSVlQEQEf/332PhcUMoKy/H4/EYVZYSoGpra+nq7iY1Kvj8bWlRwTi7uqitrTWwssBkWAALIX4K3A08KaWUfTefA4ZecLe0vtuUa1RaWorNHkxIZPz52yLiU3H19Kh5O+WqlZaWAr2h26//7/3/pgycIQEshLgD+EfgXill5wX/tBZ4TAgRLIQYAWQB+42o0QyklJwqKCAiMR0h/n4mYGRiOgAFBQVGlaYEqIKCAiIdNmJD/76CNTbURqTDpp5P18AXy9A+AvYAo4QQFUKI54C/ABHAt0KIo0KINwCklCeAT4GTwAbgZSmlep98jerq6mhpbiY6ecR/uz3IEUZYdKJ6wShXxePxUFRUREas47/9QhdCkBHr4HRRkZrWukq6X4ghpXz8Ije/fZn7/yvwr/pVNHicOHECgKjvBXDvbRmcKdxPR0cHYWFhvi5NCUAlJSV0d3eTGRfxg3/LjHNwtLKd0tJSRo4caUB1gckfVkEoOsnNzSU8NhlHWNQP/i02bRRer5e8vLyLfKei/FBubi52q4WR8SE/+LfM+BDsVgu5ubkGVBa4VACbVH19PRUVFcSmjb7ov4fFJOEIj+bo0aM+rkwJRB6Ph+PHjpEV78Bu/WFsBFktZMU7OJabq6YhroIKYJM6ePAgAHFDcy7670II4oaNoajoNI2NjRe9j6L0y8/Pp6Ozk3HJl56uGpsURkdnJ/n5+T6sLLCpADYhj8fD3r37iE7JJDgs8pL3SxwxAZDs368WmiiXt3v3biIcNkbG/XD6oV9WfAgRwTb27Nnjw8oCmwpgE8rLy6O9vY2kzImXvV9wWBTRKZns3bsPt9t92fsqg1d9fT1FhYXcOCQMi0Vc8n4Wi2DikDAKCwpoaGjwYYWBSwWwyUgp2bp1K47waKKTM654/+SsybS3t3Ho0CEfVKcEom3btmGxCG5MDb/ifSelhWOxCLZt26Z/YSagAthkCgsLqaioIGXUNITlyj/eqKThhMUks3nzFvXhifIDLS0tHDhwgBtSwogIvvKq1YhgGxNSwti/fz8tLS0+qDCwqQA2ESkl3377LUEhESQMHzeg7xFCkJozg8bGBrUiQvmBrVu34vV6mDH80p8lfN/M9Ei8Xo/qggdABbCJ5OXlcebMGVJzZmCxDvwam5jULMJikli/fj0ul0vHCpVAUl9fz57du7khJZyYEPuVv6FPTKidG1LC2f3dd9TX1+tYYeBTAWwSbrebr776itDIeBIzbriq7xVCMOyG+bS0tLBjxw6dKlQCzVdffYVFwC2ZV3/U0NzMKCwC1q1bp0Nl5qEC2CR27txJQ0MDQ2+4ZUBzv98XlTiMmCFZbN68mebmZh0qVAJJUVEReXl5zEyPIDz46g+liQi2MTM9guPHj1NUVKRDheagAtgE6uvr+eabb4gZMnJAKx8uJX3ifNweL5+tWcPfdwhVBpuenh5WrfqU2FA709MHPvf7fdPTI4kNtbN61Sp6eno0rNA8VAAHOCklq1evBmFlxKTb/tsuVVfLER5N2ribyT95kmPHjmlYpRJINm7cSGNjE3eOjr3oZccDZbdauHN0LA2NjWzcuFHDCs1DBXCA2717N6dPn2bo+LkEhf5wl6qrlZI1hbCYZD77bA2tra0aVKgEktLSUrZv387EIeEMj3Vc9+MNj3UwcUg427dvVxu2X4QK4ABWVVXF2rVfEp2cQeIVrnobKGGxMHLaXXR1d/PRRx+pc74Gkc7OTj784AOiHTZ+lB2j2eP+KDuGaIeNDz/4AKfTqdnjmoEK4ADV09PD+x98gNUeTObUO69r6uH7QiLjSZ+4gKKiIrZv367Z4yr+q38qq7W1lfvHxRFs0y4agm0W7h8XR2trK6tXr1afL1xABXAAklKyatUqamtqyJh6F3aH9huqJ2bcQGzaKNav/5rTp09r/viKf9m5cyfHjh3jlsyo/3bgplZSo4KZmxlFbm4uO3fu1PzxA5UK4AC0c+dOjhw5Qtq4m39w3JBWhBBk3vRjHBExrFjxvtqy0sSKior46ssvGZUQwozrWPVwJTPTIxmVEMJXX36pfqn3UQEcYIqKivjyy6+ISc0iNWeGrmNZ7cFkz3qQHpeb95Yvp7u7W9fxFN9raGjg/fdXEBtq596x8ZpOZX2fEIJ7x8YTG2pnxYrlasc0VAAHlKqqKt5bvpyQyFhGTr1L1xdLv5CIWDKn3UNlZSUffvih+lDORDo7O3n7rbfwunr4yYR4Ted9LyXYZuEnE+Lxunp4+6236OzsvPI3mZgK4ADR0tLCW2+9hRQ2Rs3+CVa79vN0lxIzJJPhE2/l5MmTfPHFF+pDFBNwu9289+67NDTU85MJ8cSFDXyvh+sVF2bnJxPiaWio57333hvUe1GrAA4ATqeTt95+m/aOTkbNfviyp1zoJTlrEinZN7F79261y1WA83q9fPTRR5SUlnLPmDjSY65/ve/VSo9xcM+YOEpKSvj4448H7Tsr3Y+lV65PT08P77zzDtVV1Yya/RBhMUmG1TLshnn0ONtYt24dISEhTJ8+3bBalGsjpWTNmjXk5uYyf2T0Zc9409u45DBau9xsOXoUh8PBQw895JNpNX+iAtiPud1uli9fQemZM2RNv4folGvf50ELQggyp96Nx9XD6tWf4XA4mDhRmwtAFN9Yv349e/fuZebwSGYOjzK6HGYOj6LL5WX33r2EhoZy5513Gl2ST6kpCD/l8Xj48MMPKSg4Rcbk2y95urGvWaxWsmbeT2RCGitXriQvL8/okpQB+vbbb9m6dSuT08KZdw1bTOpl3shoJqWGs2XLFjZt2mR0OT6lAtgP9Yfv8ePHSZ+44Kr399Wb1WYne/ZDhEYnsWLF+5w4ccLokpQr2LRpE9988w3jU8K4Y1SsX73VF0Lw49GxjE8OY8OGDWzevNnoknxGBbCf8Xg8rFy5kmPHjpF+wzxSsqcYXdJF2ezBjJ7zCKHRiSxfvoKTJ08aXZJyCZs3b2bDhg2MSw7jnjFxfhW+/YQQ3DM2jnHJYXz99dds2bLF6JJ8QgWwH+kP39zcXIZNuIWUUVONLumybEGOvhBOYPny5aoT9kObNm3i66+/ZmxyKPeOjcPih+HbzyIE946NY2xyKOvXrx8U0xEqgP2E2+1mxYoV58N3yOhpRpc0IL0h/CghUYksX76c3Nxco0tS6F3tsGHDhvOd731j4v06fPtZhOC+MfGM65uO2LBhg6nXnasA9gMul4v33nuPEydOMPzGWwMmfPvZghyMnvsoYbEpfPDBhxw+fNjokgY1KSXr1q1j06ZNTBwS3tv5Wvw/fPtZLL2d8A1Dwti0aRPr1q0zbQjrHsBCiHeEELVCiLwLbosVQnwrhCjq+zOm73YhhPgPIcRpIcQxIcQkveszWnd3N2+99RanTp1ixOTbSc6abHRJ18RmD2b0zY8QkZDGypUfsW/fPqNLGpS8Xi9r1qxh27ZtTE4L566c2IDofL/PIgR358QxOS2cbdu28fnnn5vyYg1fdMDvAXd877Z/BjZLKbOAzX1fA/wYyOr7bzHwug/qM0xnZyd//etfKSkpIXPa3SRptKm6Uaz2IEbNfpjo5BGsWrVKnbDsYx6Ph08++YQ9e/YwIz3S71Y7XC0hBHeMimV6eiS7d+/mk08+wePxGF2WpnQPYCnlDuD7exneByzv+/ty4P4Lbl8he+0FooUQKXrXaIS2tjZef/11KirOkTXjfhLSxxpdkiasNjvZsx4kNm0Ua9euZePGjaZ9++hP3G43H3zwAYcOHWJuRhTzR0YHdPj2E0KwYGQ0czOiOHToEB988IGp9o4wag44SUpZ1ff3aqD/+tpU4OwF96vou+0HhBCLhRAHhRAH6+rq9KtUB83Nzbz22mvU1NaRPfshYtOyjS5JUxarlazp95IwfBwbN27kyy+/VCGso/7L1Y8fP86PsmO4OcMc4dtPCMHNGdH8KDuG48eP884775jmlGXDP4STva/Mq351SimXSSmnSCmnJCQk6FCZPurq6vjPv/yF5pY2Rs95VLcN1Y0mLBYybrqT5JGT2bFjB6tWrTLlHJ7RnE4nby5bRlFRIXfnxDFtmO83avKVacMiuSsnlsLCQt58c5kpzpczai+IGiFEipSyqm+Kobbv9nPA0Avul9Z3mylUVVXx6quv4vF4CY1O4Gze4JgjDQqNZP/+/XR3d/PEE09gtVqNLskUOjo6+O1v/x9OZxfxYTaOVbVzrKrd6LJ0Fx9qo7T0DP/2b//KP//zbwgLM25DoetlVACvBRYBv+37828X3P6KEOJjYBrQcsFURUArLy/nzTffwmJ3MPbWRwmJjDe6JJ+qPLWP3Nxt9PT0sHDhQux23+0/a0YtLS0s++tfcXV389jEREbGhxhdkk+drney+lgd//XaayxZupTIyMDs/IXec3NCiI+AW4B4oAb4F+AL4FNgGFAGPCKlbBS9E1d/oXfVRCfwjJTy4JXGmDJlijx48Ip3M0xxcTFvv/MOFpsDR2Q8Hrc55q+uRpAjjMiEYZQe3sjIkSN55plnCA723abyZtLY2Mgbb7xOe2sLKRF2Buv0uhBQ1eYiIjKaJUuXEhsba3RJl3PRSXndA9gX/DmACwsLeeedd7GHRpIz51GCQiOMLslQdWfyKD6wnmHDhvHC888TEjK4OrfrVVdXxxuvv063s4PHJybocoJxIDnX0s1HR+sIDglj6Ysv4sefB6kA9rX8/Hzee285WKyERMYjLIZ/5ukXpNdLR2MVqampLF78AqGhoUaXFBBqamp4443X8XQ7SQ634/YG/mtXCzaLoLrdhTU4hBdffInExESjS7oYFcC+lJeXx4oV7xMSlUDOnEewBatO70JNlacp2v0FyclJLFmyJKA/SPGFqqoq/vrGG0h3N0/dmEBCeJDRJfmVuvYePjhSh7AFs2TpUlJS/O7yARXAvnL8+HGWL1+OxRZEaFSC6nwvwd3ThbO1nuSkZF58cakK4UuoqqrqnXbocpIYbscWQPs6+JLbK6ltdxHsCGHpiy/6WwirAPaFEydOsHz5ckJjkhk95xFsPjy9OBA1V5dS+N1nJCUl8eLSpWo64nuqq6t5/fX/wuLp4elJicSGqtUjl9PY6eL9Q7V4bUG8+OJLJCcnG11SPxXAesvPz+ftt9/BYrOrzvcquHu6cLbUERISwm9+8xsVwn1qa2v54x//gNfjITkiSHW+A+T2SqrberBYrfzqV//gL3PCKoD1dPr0ad588y0ckfHkzH0UW5Dvj/oOZE1VxRR+t4ahaUNZsmTxoF+i1tjYyF/+8z/x9DhZOCmRuDDV+V6N+g4X7x+uxRYcwsuv/MwflqipANbL2bNnef2NN7A5IggOj8Hd02VYLQHN66WtsZLsrCyeffZZbLbBeWh3a2srr732FzpaWxgSacftCfzXqBFsVkFlq4uwyCheeeVnREQYugRUBbAeamtr+c+//AUp7IyZ/yRBIYN7ne/1qi05RsnBr5kwYQJPPfUUlkE2jeN0Ovmv116jvq6WJyclkjbI1/ler4qWbj48XEt8YhIvvfSSkevOVQBrrbW1lf/4j/+ktbWVkOhELNbB2bFpzePqprO5lptvvpn77rvP6HJ8xu128+abb1JcXExiuB2HbXD98tFLl9tLbbuLzMxMXnjhBaPeWV00gNVP+Bp1d3fz7//+7zQ3N+OIjFfhqyGrPRh7SDg7d+7kT3/6k9Hl+ISUkt/97ncUFxcTF2pT4ashh81CXKiN4uJifve73/nV1qgqNa6B1+tl5cqVOJ3O3s3HU7OMLsl0pNdL4e4vqKw8zYkTJxg71hwb1l/Kpk2baGpqYk5GFHMyoo0ux5R2lDSzo6SJzZs3c+uttxpdDqCmIK7Jxo0b2bhxI6HRiVjVOl/9SElnSz1Wi+SXv/iFvywn0tyJEyd49913iXJYiXKonkhPLV1uWro8PPvss4wZM8aXQ6s5YC2cPHmSd955h/j0cWROvdNUJw/4o+6OVvI2vUd0VAS/+PnPcTjMtbyvrq6OP//5z8QGw8LJiditaupBTy6Pl+WHamnuhl/88pe+3LxHBfD1amho4He/+x1YrIRFJ/Xuh6foztPTRWdLHRMmTODpp582zS+9np4eXn31z9TX1ZGkLjH2GbdXUtPuIj4hgV/84pcEBflkX42L/nDV+50B8ng8fLhyJRarnXG3PYMjLMrokgaVc/l7OXZsOwcOHGDq1KlGl6OJL7/8kpqaWh6/MZHMOLVZky8VNzj56EgtX375JQ899JBhdagAHqA//elPVFdX44iIo3j/OqPLGZSs9mBWrV7NiBEj/Hnf1wE5ceIEe/bsISLYynelLXxX2mJ0SYNORLCVPXv2kJOT4+v54PNUAA9AeXk5NTW1xKePZeS0u40uZ9Dq7mzl+MZ3WbnyI372s1cC9iKNjo4OPv30E5IignjmpmQ19WAQt1fy7oFqPvnkY/7xH//JkN34VABfgcfjYdWqVQiLha72Zk5sXWl0SYOaIzyWs2fL2b17N7Nnzza6nGuydu1anJ1OkmKDWXm4xuhyBrWwIAt1jU7Wrl3L448/7vPxVQBfwY4dO6iqqiJ75v3Epo0yupxBT0rJqR2fsn79esaNG0d0dGCtmS0qKuLQoUPMGh7JvJExRpejAFtON7H70CGmTJlCVpZv1/SrAL6MlpYWNm7ciN0RTlXRIaqKDhldkgJ4PW56XC6+/PJLnn76aaPLGTCPx8Oazz4jyCoob+5mxcFqo0tSAAnYrYI1n33Gr//n/8RqtfpsbBXAl7FhwwY8Hi8TfvQkjvDA6rTM7mzeLnJzv2POnDmkp6cbXc6A7N27l7r6eh65IYHsBLXnsT8prOvk09w69u3bx8yZM302rgrgS6iqquLAgQMEhURQfGC90eUo3ye9WCxWvvrqK1566SW/Xxvc1dXF2rVrCbYJ9pa1sres1eiSlO8JtgrW/u1vTJo0yWcX/KgAvoRvvvkGmz2YCbc9ow7U9FPVp49QengjhYWFjBrl3/Pzu3btwuPxsPCm5EF/lLy/OtfSzbsHqvnuu+9YsGCBT8ZUAXwRNTU15OXlERIZR8Huz40uR7kEe3AoQSERbN68xa8DuKenh507dxAeZGVzUZPR5SiXER5kZceO7cyZMwe7Xf9TSFQAX8TWrVuxWG2MueUJ7A41V+fPqgr2U5K7lbKyMr+dC96/fz8dHZ08PTmJ9Bhz7WVhNmVNXbx/qIb9+/cza9Ys3cdTAfw97e3tHDlyBHtIJIV7vjC6HOVKpERYLOzatcsvA1hKya6dOwmxW9he3Gx0OcoAhNgt7Ny5k5kzZ+r+2YIK4O85ePAgHo+HsbMeIDQqsC93HSxKD3/LsWO53H///YZczXQ5xcXF1Dc0cM+YOG4YEm50OcoA5Fa28+XJekpKSsjMzNR1LBXAF5BSsm/ffmxBIZQe/tbocpQB8rpdeDweDh06xJw5c4wu57/Zt28fFgFHK9vJrWw3uhxlACRgEYK9e/eqAPalc+fOUVdXS8aUO0jMuMHocpSrkLdpOYcPH/GrAO7u7iYvL4+JQ8K5MyfO6HKUq7A+v4HjeXn09PToul2lCuALHDt2DCEETVXF1JWdMLoc5Sp4PR4qKqppbGwkNjbW6HIAKCgowOVy0dBpUVe9BRghwOVyUVBQwPjx43Ubx9AAFkL8D+B5erv+48AzQArwMRAHHAKellL2+KKe3NxjRCamM2rWg74YTtFQV3szR9f/lWPHjnHLLbcYXQ7Q+ws9NMjKkzcmYVE7ngUUr1fy513nyM3NNWcACyFSgZ8DY6SUTiHEp8BjwJ3An6SUHwsh3gCeA17Xu56GhgYaGuoJjbaqHc8ClNUeTEFBgV8EsNfrpbCgALsFPlA7ngUkuwUKCwrwer26bX1q9BSEDQgRQriAUKAKmA880ffvy4H/gw8CuLCwEICs6fcQEqnm6wLRmaObKSk+isvl8ski+ss5d+4cnU4n94+LZ1yyf63MUAbmeFU7fzvRQGVlJWlpabqMYVgASynPCSF+D5QDTmAjvVMOzVJKd9/dKoDUi32/EGIxsBhg2LBh111PUVERFquNkkPfXPdjKQaREo/HTWlpKdnZ2YaWUlRUBMCBs60crmgztBbl2nj6zsssLCw0XwALIWKA+4ARQDOwCrhjoN8vpVwGLIPeQzmvt54zZ84Qk5pN1vR7rvehFIO4e7o5+MWfKSsrMzyAz5w5Q1xYEM/clGJoHcr1+a89lZSVlen2+EZOQdwKlEop6wCEEGuAWUC0EMLW1wWnAef0LqS5uZnW1lZCLQ1q/jfAWW1BlJeXG1qDlJLy8jKsHo9a/RDgPB4v5WVlSCl1uSrOyAAuB6YLIULpnYJYABwEtgIP07sSYhHwN70LOXv2LAAjJt9GRNwQvYdTdFS8fz1l5SWG1tDc3Ex7ewd3jIplytAIQ2tRrs/Bs21sKGikpaVFl9NXjJwD3ieEWA0cBtzAEXqnFNYBHwsh/m/fbW/rXUtVVVXvnwX7Ke/u1Hs4RUceVzedHR20tbUREWFM+PU/n07VdnCypsOQGhRt9K8erKqqMlcAA0gp/wX4l+/dXAJM9WUd1dXVOMKjyZ55vy+HVXTQUnOG/O2fUF1dbVgAV1f3Tjs8PCERhz0wT25WejldHv6wvYLq6mpycnI0f3yjl6H5heqaGjxut5r/NQHp9QC9ezr7+oDFfjU1Ndgsgk9zaw0ZX9GWzSKoqdFnLfegD2ApJY0NjcRn3MDwib7ZBV/Rj5SSg5//icbGRsNqaGxoYEhkEAunJBtWg6Kd5QeraWho0OWxB30At7W14Xa7aK09qzpgsxAW3V4wA9HQ0IBwudUKCJNo7XIjG+p1eexBH8BNTb1HxAwdN5uYISMNrkbRwqmdqw3rgN1uN61tbdw8Ioq5meokbTPYXtzMztIWPB6P5kfWD/oAbm3tPZ22uugQlQX7Da5G0UJPZxs9uAwZu62t96q30w1Oypq6DKlB0ZbL03udV1tbm+YrIQb9R7T9Aexx+2TDNcUHLFYbnR0duN3uK99ZY/3PJ7va/cw0bNben2VLS4v2j635IwaY9vbeUwrGznsSodOOR4pv1RQfpfTQN3R0dBAVFeXTsfufTz/KjiElUh0/bwaVrd28s7/6/M9WS4M+gDs6OhAWKye3f2x0KYpGpNcLYEgAd3T0Xnjx9alGbKoLNgW3t3cKov9nqyUVwB0dOMKiGDvviSvfWQkILbXl5G/7SJcXzJX0j/nUpCSCbOodlRl0u738+7azKoD14HQ6cXV3qiVoJmKx9j6tu7p8/yGY0+kE4OOj6iIMs9Hj+aQCuKuLsJhkcuY+anQpika6Olo4uu4NQwK4q6uLkCCrugjDZP6wveL8L1ctDfoA7urqwtnmVB2wifTPARsVwG6PV12EYTJur1d1wHro7u4mKimdzKl3GV2KohGvx8P+z35PT4/vlxb29PQQE2JXHbDJ/HVvlS7Pp0EfwK4eF931FaoDNiGjAritW12GbDZtXW5iVABrz+XqIWHYONJvmGd0KYqGDn7+Z8MCODHcztOTVQdsJu8fqsblUgGsKSklbreb5qpi2hurjC5H0ZDX4zbkSji3y0Vzh+qAzaax00V0mPaXtw/qAPZ4eveOjR82ltQxMwyuRtHSkXWv43L5fj8It9tFWlQwD9+Q4POxFf2syq2lRYdf6IM6gPs7pIaz+TTXlBpcjaIld7fz/C9YX3K53VS2d6sO2GSanW6CwlUHrKn+F2jCiAmkZE8xuBpFS8e+eduQAPZ6PKTHOrhvbLzPx1b087e8eiq6vJo/rgpgoL7sBI3nCg2uRtFSd2ebIQHs9ng426Q6YLNp7fLg1eF8v0EdwN6+BftJmRNJzLjB4GoULeVtWmHIh3Bej5esOAd35sT5fGxFP+vzGyho0v4X+qAO4P4OqbYkl7qyEwZXo2ipq70JGe/7U5G9Xi9nGntUB2wybd0epA5xOagD+HwHnDWZhPSxBlejaOnElg+NmQP2ehmZFMJto2J9Prain95YJmgAACAASURBVI0FjeTWdGv+uIM6gKXs3eez5vRhaktyDa5G0ZKzrREZ6fuLIbxSUtzgVB2wyXT0eJBS+/2dB3UA93fAKdlTiBuaY3A1ipZObvv4/M/Xl6TXS3ZCGAuyYnw+tqKfzUVNHDjXqfnjDuoA7u+AqwoPUX36iMHVKFrqam3A6/D9UjApJYV1nZxr0f7tqmKcjh7P+V32tKQCGBgyaiqxadkGV6NoKX/Hp0h8PwcspWR0YijzRqoO2Ey2nm5iT7k6E05Tf++A91NVdNDgahQtdbU1EhHv+w/CpJQU1Dk526w6YDPp7PGczwstqQAGUkZNIzY1y+BqFC2d2rkKKX2/G5oERieGcktmtM/HVvSzrbiZXaUmO5ZeCBENvAWMo/e5+yxQAHwCDAfOAI9IKZv0GP98B1ywn6rCA3oMoRikq62J0Djfnojc/3w6VdtJeZPvT+NQ9NPp0ucDXaM74FeBDVLKh4UQQUAo8L+AzVLK3woh/hn4Z+Cf9Bj8/Bzw6GnEDBmpxxCKQU7tXA1S+zO8Lqf/+TQmKZQ5GaoDNpPtxc3sLG1BSokQ2i1HMyyAhRBRwBzgpwCy9/1ijxDiPuCWvrstB7ahUwD3qzy1j8qC/XoOofhYV1sTITGRhoydX9PJmUbVAZuJs68DNk0AAyOAOuBdIcQNwCHgF0CSlLJ/d/RqIEmvAs53wDnTiUnJ1GsYxQAFuz4D2eHTMS/sgG9WHbCp7Chppq7EXHPANmAS8DMp5T4hxKv0TjecJ6WUQoiLfvQohFgMLAYYNmzYdRVSmb+XylP7rusxFP/S1daEI8b3e0EAnKzppFR1wKbiNOEccAVQIaXsT77V9AZwjRAiRUpZJYRIAWov9s1SymXAMoApU6Zc0/qQ/o4lNWcG0SkZ1/IQip8q2LUG6dV+3eZAqA7YfHaWNLO9pEXzpWiGBbCUsloIcVYIMUpKWQAsAE72/bcI+G3fn3/Tu5Zzp/Zy7tRevYdRfKirvYngqHCfjtn/4jxZqzpgszFjBwzwM+DDvhUQJcAzgAX4VAjxHFAGPKJ3Eak504lOVh2wmRR89zl4Wg0Ze2xSGLNH+HYJnKKvXaUtbCtu1vxxDQ1gKeVR4GJnAS3wZR3n8vdyLl91wGbS1d5MUGSYIWOfqOmgpMG3S+AUfTndf18FoSXtz9hQFD+g/caBgTG2EliMnoLwC6k5M4hOHmF0GYqGCr/7HNzGTUHMUlMQprKrtIVt7SabgvAX5/L3cC5/j9FlKBrqbm8mxsApiGI1BWEqXW5zfgjnF1QHbD6qA1a09F1pC7WqA9ZW/4S66oDNp7u9mejIUEPGVh2w+agOWEeqAzafwt2fg0v7S0cHQnXA5qM6YB2pDth8VAesaEl1wDpSHbD5GNEB909pqQ7YfAzrgIUQScC/AUOklD8WQowBZkgp39a8GoOoDth8VAesaMnIDvg94F3gf/d9XUjviRWmCWDVAZuPoXPAyWHMGq46YDMxcg44Xkr5qRDiNwBSSrcQwvfHzepIdcDmY2gHXN1Bcb3qgM2kS6dLkQcSwB1CiDh6z2xDCDEdMKa10InqgM1HdcCKlr4700LtaWM64F8Ba4FMIcR3QALwsOaVGEh1wOajOmBFS4bNAUspDwsh5gKj6N1npEBK6dKlGoOoDth8VAesaMmwDlgI8eD3bsoWQrQAx6WUFz2tItCoDth8VAesaMnIVRDPATOArX1f30LvAZojhBD/n5TyfV0q8yHVAZuP6oAVLRk5B2wDcqSUNXB+XfAKYBqwAwj4AFYdsPmoDljRkpEd8ND+8O1T23dboxDCFHPBqgM2H9UBK1oysgPeJoT4CljV9/VDfbeFAdpXZADVAZuP6oAVLRnZAb8MPAjM7vv6IJAkpewA5ulSlY+pDth8VAesaKn/SjghtD1waiDL0KQQogSYDvwEKAU+07QKg6kO2HxUB6xoyecdsBAiG3i87796evd/EFJKU3S9F1IdsPmo/YAVLRmxF8QpYCdwt5TyNIAQ4n9oXoEfUB2w+RjRAfe/PVW7oZmPEXPADwKPAVuFEBuAjzHpiduqAzYf1QErWvJ5Byyl/AL4om+1w33AL4FEIcTrwOdSyo2aV2MQ1QGbj9oPWNGSkXtBdAArgZVCiBh6P4j7JyDgA7j/LaPqgM2n8LvPEepUZEUjfnEmnJSyCVjW959pqA7YfLrbm4mJDDNkbNUBm486E05HqgM2n8LvPgfVASsa2eUPHbBZqQ7YfFQHrGjJqTpg/agO2HxUB6xoaVdpC9vM2AELIaz0Xt58Tkp5txBiBL1L3uLo3fbyaSllj541qA7YfLram4k1qAPOUx2w6Zi5A/4FkA9E9n39O+BPUsqPhRBv0Lsf8et6FpCaM53o5Aw9h1B8rOC7NQhPmyFjj00KY7bqgE1lZ0kz29tbfL8XhJ6EEGnAXcC/Ar8Svf/r5gNP9N1lOfB/0DmAz53cy7n8vXoOofhYV1sTwdERPh3z/JVw1R2UqA7YVJwuc3bAfwb+Eeh/pcQBzVJKd9/XFUCqXoP3v2CG5EwjJiVTr2EUAxTsWoOQ7YaMPSYplJszog0ZW9HHzpJmtpeYqAMWQtwN1EopDwkhbrmG718MLAYYNmzYddVSmb+XylP7rusxFP/S1daEI8a3HXC/kzWdlDZ2GTK2og+9OmCLLo86MLOAe4UQZ+j90G0+8CoQLYTo/8WQBpy72DdLKZdJKadIKackJCRcUwFa/zZT/I1vf77q+aRcLcM6YCnlb4DfAPR1wL+WUj4phFgFPExvKC8C/qZ3LUNGTyNmyEi9h1F86NTO1QhhzDxsTlIoc9QUhKlsL26mrtREUxCX8U/Ax0KI/wscAd7Wa6D+/zMrT+2jsmC/XsMoBuhqayI0zrcrEfqfTydrOjmjpiBMpbNvCsKUASyl3AZs6/t7CTDVF+P2/5+ZMmoqsalZvhhS8ZFTO1ch0HX5+A/0P59yEkOZm6k6YDPZVtzMrlLttzf1iwA2Sv8LpqpgP1WFBwyuRtFSV1sj4fGxPh9XAPm1nZQ1qQ7YTDpdXl3m+FUAAynZNxGblm1wNYqW8nd8irB4fD6uEIJRCSHMGxnj87EV/Ww93cSecu2XNaoABioL9lNVdNDgahQtdbU2EJUU7/NxhRCcqu3kbHO3z8dW9NPR49FlTY0KYCAlewpxQ0cbXI2ipZPbPsZi8f2ysN4OOJT5WaoDNpPNRU0cONep+eOqAAaqCg9QffqwwdUoWnK2NhAXluTzcYUQFNR1UtGiOmAz6ejxqDlgrVksvdehJI2cREL6WIOrUbR0YsuH53++viQsgsw4B7eN8v0HgIp+NhY0kluj/S9VFcBATdEhaktyDa5G0ZKztR5LzFCfj2u1WDhd76S6rdrnYyv6aev2YLFoH5cqgIHEjIkkZkwwuBpFS3mbVhjSAVssFkbE2vnx6Difj63o5+tTDZxq1H4/CBXAQE3xEerK8gyuRtGSs60RS5LvL4awWCwU13ex4qDqgM2ktcuDxe7Q/HEHdQDbbL3/8xOGjyM5a7LB1ShaOvbN2+d/vr5ktdoYFgH3jvX9EjhFP387UU+F06r54w7qAO7vgGtLj9FQUWBwNYqWujtasVrTfD6u1WrhTJPqgM2m2enGHq793iKDOoD7O6S4oaNJzZlhcDWKlo6ue8OQDthms5EQGczDE65ti1TFP63OraNJqA/hNNX/Aq0vO0lzdanB1Sha6ulqNyaA7XYq6rpVB2wyjZ1uohO0v7hmUAewEAKr1UZ0SibpN9xidDmKhg5+8apBHbCd+HA7T03y/UUgin4+OFyD1OH5NKgDGMBut9F4rpD2xkqjS1E05O7pwm63+3zcoKAgKtp6VAdsMnUdLtLigjR/XBXAQUE44tLIvOlOo0tRNOL1eti/+vcEBWn/grmSoKAgIh02Fk5J9vnYin6W7avS5fk06AM4KCiIluoznNi60uhSFI1Ib++CeaMCuLHTpTpgk2nqdJGqAlh7IQ4HHlsko+f8xOhSFI10d7Zy5KvXcTi0Xzh/JcHBwQTZrKoDNpk/7jiny/Np0Aeww+Gguvyc6oBNxGLtfVobEcAOh4PObrfqgE3G2eNWAayHkJAQghxhjJ33hNGlKBppraugpbrUkAAOCQlBAk/cmITNqo6pNwOXx8vvtp5VAayHsLAwutqbVAdsJlICvT9bX+sf8/1D1VgN2BBe0Z7Hq9/zSQVwWBhSSsbc8rguGy4rvldbkktbfYWhAXxnThxJEb7/EFDRXnVbD2/tq1IBrIfeAPZyYsuHCAO2L1S05+7pPZHYyAD+pqDR52Mr+goPD9f8MQd9AEdGRgKQMeV2QqPU9ftmUHr4W2R3myHL0PqfTzcMCeeGIdq/YBXfy61sp7y5+/zPVkuDPoCjonp3OCo9/K3BlSha6WpvJiZS+52rBqL/Rbq3vJXcSu2PMVd8z+nuXVeuAlgH0dG9m3bHDxtDUuZEg6tRtHD82/eIjjYmgIOCgggLDSEtyspdOepUDDNYl99Ap9emy6Xtgz6Ao6KisFisVBUepL78pNHlKBrobKkjPifTsPFj4+IprDlHQ4fLsBoU7dR3uohPStXlsQd9AFssFmJiYpAhcWTPvN/ocpTr5O7p4uAXrxIba9ypxHFxcbQ3VKur4UziL99VEhunz7uZQR/AAImJCRSeLlFrgU3A4+o9OjwxMdGwGhISEjh61MXyg9WohY2BTQLNTpduzycVwEBKSgqnThWQM+dRLFbtz31SfKem+Cilh74hOdm47jMlJQWA27JjSIkMNqwO5fpVtXbz9v7q8z9TrRkWwEKIocAKIIneXzTLpJSvCiFigU+A4cAZ4BEpZZOetSQnJyOll4LvPsPrces5lKKzHmc7QUFBxMRof3rBQPWH/9enGrGpq+ECmrvvKrikJH022DfyygM38A9SyjHAdOBlIcQY4J+BzVLKLGBz39e6SkvrPbzR3d2l91CKzjw9TtLShhp6VWN8fDzBwUE4XV7DalC04XR5CQ4OIj5en1OuDeuApZRVQFXf39uEEPlAKnAfcEvf3ZYD24B/0rOW+Ph4HCEhhMUkkjHlDj2HUnTk9bg58PmfSE8fZmgdFouFoUOH0V5brj6IC3Bv7asmPnnY+RPUteYXc8BCiOHAjcA+IKkvnAGq6Z2iuNj3LAYWAwwbdn0vOIvFQvqwYZwuzsfZpi4hDVRCWJBeL+np6UaXQnp6OptPn2b5gWrUFiOBSUqobutm3DT9nk+GB7AQIhz4DPillLL1wreOUkophJAX+z4p5TJgGcCUKVMuep+rMXLkSAoKCsiafg9BIRHX+3CKAc7m7aKtrpyMjAyjS2HkyJFs3ryZmcMjyUoINboc5RoU1nVyNreOkSNH6jaGoQEshLDTG74fSinX9N1cI4RIkVJWCSFSgFpf1JKdnc26deso/O5zhNXw30vKNXC21JOWlkZoqPGBN2LECOw2G98WNrGnrNXocpRr0N7twW63M3z4cN3GMHIVhADeBvKllH+84J/WAouA3/b9+Tdf1JOSkkJ4eDhBoZHqgowA5Orq5PCXf2HUqFFGlwKAzWYjc2QmNWUlPD05SW11GmCklLy2u4rMzAxsOhxH38/IVm8W8DRwXAhxtO+2/0Vv8H4qhHgOKAMe8UUxFouF8ePHs//AQQp3f4Gru9MXwyoa8bpdSCkZP3680aWcN378BE6dKuCjI7XnlzMpgcFqETQ7Xfxo/ARdxzFyFcQuuOSFQgt8WUu/CRMmsGfPHuKG5RCX5h+dlDIw+ds/IS4ujiFDhhhdynnjxo3js9WrSY4MYv5I49YlK1dvy+kmypq6GTdunK7jqMnOC2RkZBAeHs6Zw5uoLjpkdDnKAEmPh/bGShYsWOBXb/XDwsIYmZXF/tNFVDR3G12OchUqW3vIys7WfVN/FcAXsFqtTJ06lS1btzL+1oUEharVEIGg4sQu2hsrmTp1qtGl/MC0adMoLCxkxvBIsuKN/3BQubKiuk4+ya1j2rRpuo+lAvh7pk6dypYtW8jf8Sm24BCjy1GuREJHUxXZ2dnE6bRj1fUYO3Ys4WFhrDvZSGyoWg0RCBo73YSHhzF27Fjdx1IB/D3x8fGMGj2aktJyxt+6EItN+02YFe3Ul53k9L6zzJw50+hSLspmszF9xgw2b9rEU5OTiA9Tzyd/Vt/h4o09ldw6ZwZWH2zMpQL4IubPm0fBqdfJ2/ohVps62dZf2R1hdLU2kJiYxJgxY4wu55Jmz57N9m3b+PhIDZEO9ZLzZy1dbuw2G7Nnz/bJeOrZcBEZGRkMS0+npr6JcfOfwqIuzPBLjeeKKPxuDfc+9phu1+prITw8nKnTprFn926emhxPdIh6PvmjJqeL13dXMXPWLF1OQL4Y9Uy4CCEEd9x+O8uWLSN3w9vqwzh/JKGzuYa4uHhuvPFGo6u5onnz5rF7927e2V+lpiH8VH2HCwnccsstPhtTBfAlZGdnk52dTcmZckbNWoQtyGF0ScoFaoqPUlp/lrvvvssnc3XXKzo6mnnz5rFlyxZ+pDZq9zuVrd28s7+aBQsWnD+o1xdUAF/G3XffzR//+CfyNq3AHuKbtyTKlUmvl86matLT03VfKK+lefPmsW/vXlYeqSVBdcF+pa7DRVhoKPPmzfPpuCqAL2PIkCHMmDGdPXv2MHL6PYTH6nMsiXJ1Sg5uoKOxkgceeMCvLry4kpCQEO66+24+/fRTxqWEMSlVTW35g8MVbaw/1cgjD9yNw+Hbd7oqgK/gzjvvJC8vj/ztnxAalXjpi6cVnxDCQmttGXPmzDl/kkkguemmmzh48CBbTpdxus5Jl1udmmEkh81CeUsPmRkZ3HTTTT4fXwXwFYSEhPDggw+yfPlyopLSSRs7y+iSBi2Pq4e8Te8RHR3D7bffbnQ510QIwcMPP8wf//AHALVTmoGklHyaW4fbCw89/LAhPwcVwAMwfvx4YmJiqDixi8ZzhVjt6gMUI3S1NeLq6uCnL75IcHDg/gwSExO58667WLt2La/vriQ82P8/RDSj9m4PjU439913n27Hzl+JCuAB+tWvfsUf/vhHulw9jJn3BDYVwj7VWFFA4e4vmD9/PpmZmUaXc91mz57NqVP5lBQX88jERLU0zcfqO1y8tb+a7OxsZs0y7l2tkDLw9ymdMmWKPHjwoO7jlJaW8tprr2ELCiEkSp9TUpUf8nrcdDbVkJo6hFdeeUXXDbJ9qbW1lT/8/ve4urtICrers+N8REqoaXdhD3bwD7/+NZGRkb4Y9qI/XXM8k31kxIgR3Hvvvaxdu5bo5BGk5swwuiTT87h6OLH5fRwhDhYuXGia8AWIjIzkqaefZtmyZYQFW3lofLyaD9aZlJLPjtXj8vbw7MKFvgrfSzLPs9lHbr75ZsrLyzl6dAfNVSWotkVf3e3NuLraeeGFF4iNjTW6HM1lZWVx11138dVXX/HmviocNv+9pNoMutxeattd3H333boetjlQKoCvkhCCn/zkJ9TU1FBbX8uYeU8SFm3MBL7ZlR/bTlvdWe6++26ys7ONLkc3c+fOpaKigqNHj/LQ+HhykvTdBHywOlnTwZrj9UycOJG5c+caXQ6gAviaBAcH89xzz/Hb3/6WvE0rCItJQljUJ9lacjnb6WpvIjY21m9eLHoRQvDoo49SWFjIZ8frSTrTQrBVdcJa6nZ7qWl3ERoayqOPPuo3Uz3qQ7jrcO7cOV577TXsodHk3PIEtiC1MkILzVUlFOxaTVZWFs8991xA7PWghY6ODv7j1VdxtrewaHIScWplhCYaOlwsP1RDSEQUP//5L3Q/ZugSLpr4KoCv06lTp3jrrbew2oMJjUpQc8LXyePqprOljiEpKbz00ks+vzTUaHV1dfz+978H6SE5PAirRT2frofHK6lu7wFh5de//jUJCQlGlaICWC9Hjhzhww9XEp2SQfasB7Co6Yhr0tFUQ/62j4iOiuDll18mImJw7pVQUVHB66+/TrhNsmhyIqFB6vl0LTp6PKw4VEu7W/DSSy+RmppqZDkqgPW0e/du1qxZQ1BIJMFhUWrPiKvkdbvobKkjIiKcn73yCjExg/sY9+LiYt58801seIkPs2FR76yuildK6jvcuLGwePFiMjIyjC5JrQPW08yZM+nu7mbdunVEJg4l86Y7EX58SoM/cbY2kL/tI8JCQ1i6ZMmgD1+AzMxMFi1axHvvvYdXCh67MVEtURugLpeXD4/U4pKCn/50kT+E7yWpANbQvHnzOHz4MFVlJ2iuLiUkIk51wlfg9bjpbK5BACPSswy7Jt8f5eTkMGzYMEpLS/mPnRUkhQepjxiuoPcqtx56PJIRI0aQk5NjdEmXpaYgdLBx40Y2btyILThUhfBleN0unK31OIKDefHFpaSkqP2WLyYvL48VK1YQbIW4UDvqc7mL80po6HTR7YGFCxf622b9agrCV2677TagN4iDktIZOfVuNR3xPZ0t9Zza/jEORzAvLlXheznjxo1j4cKFvL9iBR4Jj05MIMSuPpi7kNPlYeWROnr8M3wvSXXAOtqyZQvr168nKCSi74M51boAWKw2OptqcARZWbp0KUlJSUaXFBBOnjzJiuXLiQu1EuWw0uVSm7kDOOwWWro8NHR6WPTTn/rrtIPqgH1t/vz52Gw21q5dS2h0Itkz7sNiG9yL69sbKjm1cxWhIb2dr4HrMgPOmDFjeObZZ3n33XfxeOHJSQlEBA/ul3Brl5uVR+po7vby7HPPBdwl66oD9oG9e/eyevVnRCYOxWZ34OpxGl2SzwU5wkjKvJGCXZ8RGRnO0iVLiIuLM7qsgFRcXMzbb79NmFUSH2aje5AeaxRkE9R3eHB6BM8+95y/7xMdWOuAhRB3AK8CVuAtKeVvL3Vffw9ggMOHD/PRRx8TFpvM6Jt/MuiOuW+uKqFw9+fExcWydMkSoqKijC4poJWXl/PmsmXYcPPkjYNvQ/f6DhcfHqnFjY0XFi9m2LBhRpd0JYETwEIIK1AI/AioAA4Aj0spT17s/oEQwADHjx9nxYoVCIuN0OiEQbOBj7u7E2drA0OGDGHx4sWEh4cbXZIpVFZW8h+vvorX6yExPIgg6+D4jKHHI6lt78FisfLzX/yCIUOGGF3SQARUAM8A/o+U8va+r38DIKX8fxe7f6AEMEBhYSHvvvsuNkcEo+c8SnCYsRtC66229BglBzcwPD2d5557jpCQEKNLMpW6ujr++sbrODs6eGxiPEOjzf3O6mxzFx8frSckLJwlgfUZwkUD2F/XRqUCZy/4uqLvtvOEEIuFEAeFEAfr6up8Wtz1yM7OZvHixXh7Oji59UOcbY1Gl6SbqsKDlBz4muysLF544QUVvjpISEjg5Vd+RkRUNCuP1FHSYN7PF0oanKw8UkdEVDQvv/JKIIXvJflrAF+RlHKZlHKKlHJKoP0gRowYwUsvvYQVD/lbV9LZHDi/QAZCSsm5k7spO7qZcePG8eyzzwb0Kcb+LiYmhpdfeYW4hEQ+ya2joLbT6JI0V1DbySe5dcQnJPKyifYK8dcAPgcMveDrtL7bTCM1NZWXX36JYLuVk9tW0t5QaXRJmpBSUn5sO2fzdjJp0iSefvppU53j5q8iIiJ46aWXGJKayurjdeRVdxhdkmaOV7Wz+ngdqalpvPjSS6baJc9fA/gAkCWEGCGECAIeA9YaXJPmkpKSeOWVl4kICyV/+ye01p298jf5MSklZ45soqpgHzNmzOCxxx4bNJup+4PQ0FCWLFlKxogM/pZXz5FzbUaXdN0On2tj7YkGMkZksHjJEkJDQ40uSVN+GcBSSjfwCvANkA98KqU8YWxV+oiLi+OVV14mJiaKgp2raKkpM7qkayK9XkoPbqDm9GHmzp3Lgw8+iEVdfu1zDoeD5194gexR2azLb+Tg2cAN4QNnW1mf30j2qFE8/8ILptyc3y9XQVytQFoFcSltbW288cZfqauvJ3vmA0Sn+O8Wet8nvV6KD6ynvuwEt956K7fffrvfnLk1WLndblasWMHJkye5NSuG6emBtdpmb1krm4qaGDt2rFmmsQJqFcSg0zuH9yJJSYkUfreGpqpio0saEOn1cnr/V9SXneCOO+7gjjvuUOHrB2w2G4sWLWLChAlsKmpi95kWo0sasN1nWthU1MSECRNYuHChGcL3klQA+5GwsLC+ncGSKdr9Oc1VJUaXdFm94buOhvJ87rzzTm699VajS1IuYLVaefLJJ5k4cSJbTjezt6zV6JKuaE9ZC1tONzNx4kSefPJJ03+GoALYz/R+kLKEpKQkCnevobm61OiSLqp/2qGh/CQ//vGPmT9/vtElKRdhtVp5/PHHz3fC+/w4hPeWtbK5qJkbbriBxx9/3PThCyqA/VJoaChLlywhKbF3OsLfVkdIKSk99M35aYcFCxYYXZJyGf2d8IQJE/i2qIlDFf73wdyhirbz0w5PPPHEoAhfUAHst8LCwliyZAlxsbEU7FpNe2O10SUBfet8c7dSW3qMBQsWqGmHANEfwjmjR7PhVKNfrRM+XtXOhlON5IwePSimHS6kAtiPhYeHs2TJYiLCwijY+SnO1nqjS6Iyfw9VhQeYOXMmd9xxh9HlKFfBarWycNEiRmRk8LcT9RTVGX/FXGFdJ2tPNpCRkcHCRYsGVfiCCmC/Fx0dzdKlSwi2Wzm1cxU9znbDaqktPX7+Crf7779frXYIQHa7nWeffZbU1FQ+y2vgXEu3YbWca+lmTV4DqampPPPss9jtg2tLTVABHBDi4+N5/vnn8fY4Kdi1Go+rx+c1tNScofTgBrKysnjkkUfURRYBzOFw8NxzzxMZGcUnuXU0dbp8XkNjp4tPcuuIjIziueeeN+VFFgOhXkUBIi0tjaeffprO5lqK9q5Fen13CkJnSx2Fuz8nKSnR9OsyB4uIiAief+EFpMXOR7l1OF0en43tdHn4OLcOrEE8u6h/tQAACxtJREFU/8ILptrb4WqpAA4gY8aM4f7776e5qpizeTt9Mqa720nhd2sIdQTz/PPPqy0lTSQxMZFnnn2WFqeHz/Pq8frgqlivlHyeV0+L08NPn3mGxMRE3cf0ZyqAA8ysWbOYNm0alaf20nD2lK5jSa+Xon1f0tPZxqJFi4iOjtZ1PMX3MjIyuP+BByhp6GJbcbPu420rbqakoYsHHnyQjIzAudxeLyqAA9ADDzzAsPR0Sg6sp7NFv5URFSd20VJdykMPPcjw4cN1G0cx1owZM5g2bRq7z7RySse9hE/VdrL7TCvTp09n+vTpuo0TSFQAByCbzcZPFy0iODiI03vX4vW4NR+jpaaMc/l7mDp1KtOmTdP88RX/8sADDzA0LY2v8htp6dLh+dTl5qv8RoampXH//fdr/viBSgVwgIqMjOTxxx6js6WO8txtmj62q7uT4v1fkZCQyH333afpYyv+yWaz8eRTT+EVVr7QeD7Y65V8kVePFFaefOop9SHuBVQAB7CcnBxuvvlmqk8forlau417Sg99g6fHyVNPPamOEhpE4uPjeeihhzjb3M2eM9rtGbGnrJWzzd08+NBDxMfHa/a4ZqACOMDdeeedJCQk9oamBuuDGysKaKwo5Pbbbyc1NfXK36CYyqRJkxg/fjw7Slto6Lj+9cENHS52lLYwYcIEJk+erEGF5qICOMDZ7XYeeeQndHe0cvbE9S1Nc/d0cebIJoYMGcLcuXM1qlAJJEIIHnjgAYKCgll3qpHrObBBSsm6/EaCgoLVvO8lqAA2gREjRjBjxgyqiw7R0VRzzY9zNm8nrq4OHnnkkUF3Tb7yd5GRkdxz772UN3VxrOraN+05VtVBeXMX99x7L5GRgXUih6+oADaJH//4x4Q4Qig/tvWauhZnawO1xUeYPn06aWlpOlSoBJKbbrqJoUPT2FbcQo/n6q+67PF42VrcwrChQ7npppt0qNAcVACbRGhoKLfd9iNaasqu6SSN8mPbsAcFcdttt+lQnRJohBDce+99tHW7r+kkjb1lrbR3u7n3vvvUpk2XoQLYRGbOnElcXDxn87ZfVRfc1nCOpsrTLJg/f1Bfl6/8dyNGjGD8+PHsLW+7qr0inC4Pe8vbGD9+vLqA5wpUAJuI1Wrl1lsX0NlcR/NVHOp57uQeQkJCmT17to7VKYHotttuo8ft5cBVHG+/v7yNHrdXvZsaABXAJjNp0iSiY2I4l79nQF1wR3MtzVXFzJ07R635VX4gJSWFsWPHsv9sO93uK88Fd7u9HKhoZ+zYsaSkpPigwsCmAthkrFYr8265hfaGStobq654/+rCg9iDgpg1a5YPqlMC0fz58+lyeTg+gBURx6s66HJ51DmBA6QC2IQmT55MUFAQtcVHLns/d08XDWfzmTxpktpmUrmk9PR00lJTOfz/t3d/v22ddRzH39/YSdpoSCNbaeOY/ki0uAvR6tFQlArE+CWKmDQJ7WITFyCEJiS4BMRUtH8AxMUYXOwCJMSPDQ1NmhBItBJDQrCiVNvadbRbu6VrsmW1mzmJm9Su4y8Xdhu3abrGaf30HH9eUiT3nOPoo8b55PHjc54zVbzuuyp35/BUkXS6n61bt7YwYXSpgGNow4YN7N69m3NnjlMpX1j1uNzEa1SXKoyNjbUwnUTR2N69nC2WmbzOLYwmZ0vkimXGxva2MFm0qYBjas+ePVSXKsxMnlj1mHPvHKO/v1+XHMuHymazdCaT172b8tH3ztPZ2Uk2m21hsmhTAcdUOp3mo729qy7afqFYoDgzrV8WuSHd3d3cOzzM/84uUq2unIaoVp3juUWGh4f1Ye4aqIBjysy4P5tl7uxpLpZWLrJ9qZh37drV6mgSUdlsloXyEqcLK6e1Jj64wEJ5SX/Q10gFHGMjIyO4O7PvT6zYV5h+i1QqRW9vb+uDSSRlMhkSiQQn84sr9p06t0gykSCTyQRIFl1BCtjMfmpmx83siJk9b2Z3Nux73MxOmtkJM/tKiHxxkU6n2bixh8L021dsr1wsUcxPsXPnzkDJJIq6u7vZsWMHb82s/CDu1EyJHQMDdHV1BUgWXaFGwAeAEXe/D3gDeBzAzIaBR4BPAPuAX5mZluVqUkdHB0ND9zD3/sQVpw/N587gXmVoaChgOomiTCZDrlhmvrR826L5UoV8sazRbxOCFLC7/93dL/0EXwIuLb/1EPCMu5fc/W3gJLAnRMa4GBgYoLxYpLSwvKDKfH6Sjo4E27ZtC5hMomhwcBCAycLyKPhM/bHucrx2t8Mc8LeBv9Uf9wNnGvZN1retYGaPmdm4mY3ncrlbHDG6Li2GUsxPXd42f+5d+vtTdHZ2BkolUZVKpUgmk1ecDzw1WyKZTJJKpQImi6ZbVsBmdtDMXrvG10MNx+wHKsDv1/r93f1pdx9199FNmzbdzOixsmXLFjo7OynOvAuAV6ssfDCt0a80JZlMkk6nmZpbvv3V1GyZdDqtm2024Zb9j7n7l66338y+BTwIfNGXJyingI83HJaub5MmJRIJtvT1MVuovUu4cL7AUuWiLr6QpqVSKQ5PvnP5c4Wz5y/yqRG9npoR5E+Wme0DfgR8zt0bT1J9AfiDmf0cSAH3AP8NEDFWUn19vPfyq0y/eZiFuTyAVqqSpvX19VGqVPl3/c7J5UpVr6cmhXrP8BTQDRyor5b/krt/192PmdmfgNepTU18z91vfCVouabBwUEOHTrExMsHgdrdMzZv3hw4lUTV9u3b6TDjH6cKAHSYaUqrSbaeu57eLkZHR318fDx0jNvawsLC5beMXV1d+gBO1qVUKlGp1E5kSiaTuvz4w13zvkyaNW8TPT09oSNIjHR3d6t0b4Lb4TQ0EZG2pAIWEQlEBSwiEogKWEQkEBWwiEggKmARkUBUwCIigaiARUQCUQGLiASiAhYRCUQFLCISSCwW4zGzHHA6dI4IuBvIhw4hsaLX1I3Ju/u+qzfGooDlxpjZuLuPhs4h8aHX1PpoCkJEJBAVsIhIICrg9vJ06AASO3pNrYPmgEVEAtEIWEQkEBWwiEggKuA2YGZLZvZKw9f20JkkmszMzex3Df9OmlnOzP4SMldU6aac7WHR3bOhQ0gsnAdGzGyjuy8CXwamAmeKLI2ARWSt/gp8rf74UeCPAbNEmgq4PWxsmH54PnQYibxngEfMbANwH3AocJ7I0hREe9AUhNw07n6k/jnCo9RGw9IkFbCINOMF4GfAA8BdYaNElwpYRJrxa6Dg7kfN7IHQYaJKBSwia+buk8CToXNEnS5FFhEJRGdBiIgEogIWEQlEBSwiEogKWEQkEBWwiEggKmBpO2a238yOmdmR+uXZnzazF83sRMMl28/Vj33SzJ646rm/DJde4kTnAUtbMbMx4EHgk+5eMrO7ga767m+4+/hVT/kJ8ErDEozfAe5vTVqJOxWwtJs+IO/uJQB3zwOY2TUPdvc5M9sPPFXf9IS7F1oRVOJPF2JIWzGzO4B/AT3AQeBZd/+nmb1IrZwX64cecPcfNjzvP8CSu3+mxZElxjQClrbi7kUz2w18Fvg88KyZ/bi++1pTEJhZmlo5V83sDncvti6xxJlGwNLWzOxh4JvAR4AfrFLAf6a2+te9QKJxZCyyHhoBS1sxswxQdfc365uywGlgZJXjvwp8DPgttWmLI2b2G3d/vRV5Jd40Apa2Up9++AVwJ1ABTgKPAc9x5RxwntrZEq8CD7v70frzvw58392/0OLoEkMqYBGRQHQhhohIICpgEZFAVMAiIoGogEVEAlEBi4gEogIWEQlEBSwiEsj/AavV+E49VHG3AAAAAElFTkSuQmCC\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns.catplot(x=\"SEX\", y=\"Age\", kind=\"violin\", inner=\"stick\", split=True, palette=\"pastel\", data=tot);" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAYAAAAEGCAYAAABsLkJ6AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEgAACxIB0t1+/AAAADh0RVh0U29mdHdhcmUAbWF0cGxvdGxpYiB2ZXJzaW9uMy4xLjEsIGh0dHA6Ly9tYXRwbG90bGliLm9yZy8QZhcZAAAgAElEQVR4nO3deXhc9X3v8fd3ZrTvqxdJlmRbtvCGwcLYLEnZik0SnCbmBtI29IaUpiVNmq7w9Jb2Jg/PU9repmmztBRoyHJDwJDGlxhIwCRAANsym3dblmRLsmTt+zqa7/1jjowiy9LYWs4s39fz6PHMmXNG3znWnM/M7/c7vyOqijHGmNjjcbsAY4wx7rAAMMaYGGUBYIwxMcoCwBhjYpQFgDHGxCif2wVcjNzcXC0pKXG7DGOMiRj79+9vVdW8yR6LqAAoKSmhsrLS7TKMMSZiiMipCz1mTUDGGBOjLACMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAGGNilAWAMcbEKAsAY4yJURYAxhgToyLqTGAztf+757Srv//TVy9x9fe7KZb3fSy/9khn3wCMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAGGNilAWAMcbEqJCGgYrIFuDrgBd4VFX/fsLjCcB3gQ1AG/ApVa0VkRxgB3AV8B1V/cK4bTYA3wGSgF3Al1RVZ/yKTEQb9gdo6BzgbPcgzT1DtPYM0TUwQvfgCN0DfgZHRukf9jMwMsrIqDIyGmDYH2A0oIyqMhpQAqoEAgT/VUUVxv6wgn9hv/5nNht/dYMjozN/EpEPbk74FwneFhFk3G2PCB6B7711iniv4PN6iPd6SIr3khTnJSneS3piHOlJPjKS4shNTSA/LYEF6YkUZCUR57XPgLFs2gAQES/wTeAWoB7YJyI7VfXwuNXuATpUdbmI3Ak8DHwKGAT+Bljj/Iz3beD3gT0EA2AL8PzMXo6JJF39I7xd18E7pzo40NBFTWsfdR0DjAbOPyKnJfhIS/SRnOAjKc5LYpyHxDgPaYk+fB4PcV7B63F+RJyDI3jGDpgCY4fTsQPoeDJxwUU6cbZ3RtvrJHd03IKxkAqGWfB+MOCC/y7KSMIfCDAyGmBoJEBPzwgDw6P0D4/SM+ind8h/3u/0eYQl2ckszUthTUEGVy7JYv2STNIT42b0WkzkCOUbwEagSlWrAUTkSWAbMD4AtgF/59zeAXxDRERV+4DXRWT5+CcUkUVAuqq+5dz/LvBxLACi3um2fp4/2MjzB5t4t64TAI9AWX4aqxdn8LHLF1Ock8LC9ETy0xPIS00gPSkOr2eGR+g5Fu4nQ/lHA3QP+mnpGaK5Z5CmrkFq2/qobumjqrmXl482oxoMwg1Lsti6dhFb1iykIDNpnl6BcUMoAVAA1I27Xw9cfaF1VNUvIl1ADtA6xXPWT3jOgslWFJF7gXsBliyxM/4iUSCg/OJ4M//xy2r21LQDsKYgnS/fvIKrSrJYV5RJaoKdlD6XfF4P2SnxZKfEs3Jh2nmPdw+O8F5dJ/tqO/jZoSa++txhvvrcYa4vy+UPPrSMa5fnIDP9mmTCTti/61T1EeARgIqKCusjiCCqygsHm/jaS8c5fraXxRmJ/NWWcj66bhFF2clul2fGSU+M4/qyPK4vy+NPb1lBTWsfz713hu++dYrfeWwPqxal8+e3ruDG8gVul2pmUSgB0AAUjbtf6CybbJ16EfEBGQQ7g6d6zsJpntNEmPHNIJ39w+x87wxHm3rIT0vgjg2FrCvMxOsRXjtxoS+G5lLNRRNUTmoCf3zDct6t6+TVEy189juVrCnI4GPrFpFm/QRRIZQA2AeUiUgpwYP0ncCnJ6yzE7gbeBPYDuyeakSPqjaKSLeIbCLYCfwZ4N8uoX4Thipr23nuQCOqytY1C7lmWW7Yt+Gbyfm8HipKslm/JJPXTrTyytFmqpp7uP3yAtYXZbpdnpmhaQPAadP/AvAiwWGgj6vqIRH5ClCpqjuBx4DviUgV0E4wJAAQkVogHYgXkY8Dv+mMIPojPhgG+jzWARzxAqo8f6CRX51sY1leCr91RSHZKfFul2Vmgc/j4YaV+axdnMEz79TzVGUdLT2D3HzZAusbiGAh9QGo6i6CQzXHL3tw3O1B4I4LbFtygeWVnD801ESoIf8oT+2r40hTD5uX5fCRtYvw2IEh6uSmJXDPdaX85N0zvHKshba+YT55ZaGdTxChwr4T2IS/YX+Ax1+vob5jgI+tW8TmZblul2TmkM/j4RNXFJCbmsCLh5roHfTze9eU4LMQiDj2P2ZmZDSg/HDvaeo7Brhr4xI7+McIEeHDK/LYvqGQ6tY+nt5fT8BO5I849g3AXDJV5b/fbeDY2R62rV/MmoIMt0sy8+zKJVn0Dvp54VATaYk+PrJ2kfUJRBALAHPJXj7azP5THdywMp+rS3PcLse45PqyXLoHR3jjZBsZScHzCUxksCYgc0mqmnvZfbSZK5dkcfNl+W6XY1wkIty2dhFrFqfz4qEm6tr73S7JhMgCwFy0geFRduyvIzc1gdsvX2xf+Q0eET5xZSHpiXE8VVnHkH8WZkc1c84CwFy0n7zXQO+Qn/9RUUi8z/6ETFBinJftFYW09w2z60CT2+WYENi711yU9+o6eb++ixvLF1CYZfP5mF+3NDeV68py2VfbztHGbrfLMdOwADAh6x/ys/O9MyzJTubDK6yjz0zulssWsCgjkR+/08DQbFwox8wZCwATspePNTM4MspvXVFgc/uYC/J5PXx8fQE9Q35ePdHidjlmChYAJiStPUPsqW7jqpJsFqQnul2OCXNF2cmsK8zgtROtdPYPu12OuQALABOS5w81Eef1cJMN+TQhunX1QgB+fvisy5WYC7EAMNOqbunlSGM3H16RZ/PAm5BlJcdz7fJc3qnrpL7Dzg0IRxYAZkoBVXYdbCQzKY5rl9s8P+bifHhFHinxXnYdaGKKS4QYl1gAmCkdb+rhTOcgN69aYFP+mouWGOflxvJ8atv6qG2zbwHhxt7RZkqvnmghMymOywvt6k/m0lSUZJMS7+XV4zYiKNxYAJgLOu18art2uV3S0Vy6OK+HzctyOHa2h6buQbfLMeNYAJgLevVEK0lxXipKstwuxUS4TaU5xHmF1+xbQFixADCTau4Z5EhjN5uWZpPg87pdjolwyQk+Kkqyea++084LCCMWAGZSr59oxesRu8KXmTXXOX9Lb5xsc7kSM8YCwJynd8jPO3WdbCjOIjXBrhlkZkdWSjzrCjPZW9vOoM0RFBYsAMx53jndwWhA2bTUrvJlZtfmpTkM+wO8X9/ldikGCwAzgaqyr7aDJdnJNuePmXWFWUksSE+g8lS726UYLADMBKfa+mntHeIqG/lj5oCIUFGcTX3HAI1dA26XE/MsAMyvqTzVToLPw5qCDLdLMVHqiqJMvB6hsrbD7VJingWAOWdwZJQDDV2sK8y0oZ9mziQn+Fi9OJ136joYGQ24XU5MswAw57xX38nIqFJRbM0/Zm5VFGczOBLg0Bm7bKSbLADMOZW1HSxMT6QwK8ntUkyUW5qXQlZyHJW11hnsJgsAA0BT9yANnQNsKM5CxOb9MXPLI0JFSTbVrX2099mZwW6xADAAvF/fiQDrCq3z18yPsRlmDzbYOQFuCSkARGSLiBwTkSoRuX+SxxNE5EfO43tEpGTcYw84y4+JyK3jln9ZRA6JyEER+aGI2KBzl6gqB+q7WJqXYlf8MvMmOyWewqwk3m/odLuUmDVtAIiIF/gmsBVYBdwlIqsmrHYP0KGqy4GvAQ87264C7gRWA1uAb4mIV0QKgC8CFaq6BvA66xkXNHYN0tY3zNoCm/PfzK+1BRmc6RykrXfI7VJiUijfADYCVapararDwJPAtgnrbAOecG7vAG6SYEPyNuBJVR1S1Rqgynk+AB+QJCI+IBk4M7OXYi7VgYYuPAKrF6e7XYqJMWud800OWDOQK0IJgAKgbtz9emfZpOuoqh/oAnIutK2qNgD/BJwGGoEuVf3ZZL9cRO4VkUoRqWxpsbnEZ5uq8n59J8vyUkmxid/MPMtMjmdJdrIFgEtc6QQWkSyC3w5KgcVAioj8zmTrquojqlqhqhV5eXnzWWZMaOgcoKN/5NwnMWPm29qCDBq7BmnpsWag+RZKADQARePuFzrLJl3HadLJANqm2PZmoEZVW1R1BHgWuOZSXoCZmQP1XXhFWL3YAsC4Y01BBgIcsM7geRdKAOwDykSkVETiCXbW7pywzk7gbuf2dmC3qqqz/E5nlFApUAbsJdj0s0lEkp2+gpuAIzN/OeZiqCoHGrpYnp9KUrxN/WDckZEUR3FOsk0R7YJpA8Bp0/8C8CLBg/RTqnpIRL4iIrc7qz0G5IhIFfCnwP3OtoeAp4DDwAvAfao6qqp7CHYWvw0ccOp4ZFZfmZlWfccAnQMjrLWx/8ZlawsyaO4ZotkuGj+vQur1U9VdwK4Jyx4cd3sQuOMC2z4EPDTJ8r8F/vZiijWz60hjNx6Byxba6B/jrlWLM/h/7zdypKmHfLsOxbyxM4Fj2NGmHopzUqz5x7guIymOxRmJHG20yeHmkwVAjOroH6ape5DyhWlul2IMAOWL0jnd3k/fkN/tUmKGBUCMGvukZc0/JlyUL0xDgWNne9wuJWZYAMSoo0095KbGk5uW4HYpxgCwODOJtESfNQPNIwuAGDQ0Mkp1ax/l9unfhBGPCOUL0zjR3Is/YFcKmw8WADHoRHMvowG19n8TdsoXpjPkD1DT2ud2KTHBAiAGHW3qJjHOQ3FOitulGPNrluWl4vMIRxutH2A+WADEmIAqR5t6WLEgDa/Hrvxlwku8z8Py/FSONnUTnEzAzCULgBhT395P//Cojf4xYat8YTod/SOctcnh5pwFQIw53tyLAGULUt0uxZhJrXT6pk7YcNA5ZwEQY06c7aEwK4nkeJv734SnjKQ48tMSqGrudbuUqGcBEEMGhkep7xhgeb6N/jHhrSw/lZrWPkZGbTjoXLIAiCFVLb0osMKaf0yYK1uQhj+g1Npw0DllARBDqpp7SPB5KMxKdrsUY6ZUkpOC1yOcsGagOWUBECNUlRPNvSzLS7Xhnybsxfs8lOQkWz/AHLMAiBFtvcN09o+wPN+af0xkKMtPo6l7kO7BEbdLiVoWADHiRHNwSF2ZBYCJEGMfVuxbwNyxAIgRJ5p7yU6JJyfVZv80kWFhRiIpCT47H2AOWQDEAH8gQHVLn336NxHFI0JZfipVzb0EbFqIOWEBEANOt/czPBqwADARpyw/lb7hURq77GLxc8ECIAacdKZ/WJpnAWAiyzLnQ8tJ6weYExYAMaC6pY+CrCQS4+zi7yaypCfGkZeWQHWrBcBcsACIckP+Ueo6+lmaa5/+TWRamptCbWs/owHrB5htFgBR7lRbPwGFZXl28RcTmZblpTI8GqC+o9/tUqKOBUCUq27pxStiV/8yEas0N/i3W23zAs06C4Aod7Klj6LsJOJ99l9tIlNKgo9FGYmcbLF+gNlmR4UoNjA8ypnOARv9YyLe0twUTrf12/TQs8wCIIrVtvWhwFJr/zcRbmleKv6AUtdu/QCzyQIgilW39OLzCEts+mcT4UpzUxCCTZpm9lgARLGTLX0U5yTj89p/s4lsiXFeCrKSqLZ+gFkV0pFBRLaIyDERqRKR+yd5PEFEfuQ8vkdESsY99oCz/JiI3DpueaaI7BCRoyJyREQ2z8YLMkG9Q36augdZZu3/JkoszU2lrqOfYb/1A8yWaQNARLzAN4GtwCrgLhFZNWG1e4AOVV0OfA142Nl2FXAnsBrYAnzLeT6ArwMvqGo5cDlwZOYvx4ypcYbMWQewiRbL8lIIaLBvy8yOUL4BbASqVLVaVYeBJ4FtE9bZBjzh3N4B3CQi4ix/UlWHVLUGqAI2ikgG8CHgMQBVHVbVzpm/HDOmuqWXeJ+Hgswkt0sxZlYU56TgkeDUJmZ2hBIABUDduPv1zrJJ11FVP9AF5EyxbSnQAvyXiLwjIo+KiA1VmUU1rX0UZyfb5R9N1Ih3rmddY/MCzRq3egd9wJXAt1X1CqAPOK9vAUBE7hWRShGpbGlpmc8aI1bfkJ/mnqFzZ1AaEy1Kc1No6BywfoBZEkoANABF4+4XOssmXUdEfEAG0DbFtvVAvarucZbvIBgI51HVR1S1QlUr8vLyQijXjLX/WwCYaFOaG+wHONVuzUCzIZQA2AeUiUipiMQT7NTdOWGdncDdzu3twG5VVWf5nc4ooVKgDNirqk1AnYisdLa5CTg8w9diHDVtfcR5hYIsa/830aU4OxmPfPAhx8yMb7oVVNUvIl8AXgS8wOOqekhEvgJUqupOgp253xORKqCdYEjgrPcUwYO7H7hPVUedp/5j4AdOqFQD/3OWX1vMqm3tY0l2Mj6Pjf830SUhzsvizCQLgFkybQAAqOouYNeEZQ+Ouz0I3HGBbR8CHppk+btAxcUUa6Y3MDxKU9cgN12W73YpxsyJ0pwU3qhuY2Q0QJyd5DgjtveizNj8P6V2ARgTpUpzUxgNKKdtXqAZswCIMjWtffg8QqG1/5soVZwTnBfImoFmzgIgytS09lGUnWxfjU3USor3sigj0QJgFthRIooMjgTn/7fhnybaleamUNfej9+uDzAjFgBR5NS59n8LABPdSnNT8AeU+o4Bt0uJaBYAUaSmtQ+vCEU2/7+JciXOh5wamxhuRiwAokhNax+FWXb9XxP9kuN9LExPpNb6AWbEjhRRon/YT0PnwLlPRsZEu5LcZE61WT/ATFgARIl3TncSUGv/N7GjJCeF4dEAh850u11KxLIAiBJ7atoRYEm2tf+b2DD2bXdvTbvLlUQuC4AosbemjcWZSSTGeadf2ZgokJ4YR05KPHssAC6ZBUAUGPKP8s7pTkpy7NO/iS2luSnsq20nEFC3S4lIFgBR4EB9F0P+gLX/m5hTkptC18AIx5t73C4lIlkARIGxr8DFORYAJraU5lg/wExYAESBvTXtrFiQSkpCSLN7GxM1MpPjWJyRaP0Al8gCIML5RwPsP9XBxtJst0sxZt6JCBtLs9lb007wIoTmYlgARLgjjT30DvnZWJrjdinGuGJjaQ4tPUPUttn1AS6WBUCE21PTBsDGEvsGYGLT2Lffvc57wYTOAiDC7alppzgnmYUZiW6XYowrluWlkJsaz55q6we4WBYAESwQUPbVtnO1tf+bGDbWD2AdwRfPAiCCHW/uobN/xNr/TczbWJJNQ+cA9R3WD3AxLAAi2NhXXvsGYGLd1UuDH4KsGejiWABEsD01bRRkJlFkE8CZGLdyQRoZSXHnBkWY0FgARChVZW9Nu43/NwbweISrSrLtjOCLZAEQoU629NHaO2zNP8Y4Ni3Npratn7Pdg26XEjEsACLUufH/FgDGAB+8F96qtmagUFkARKi9Ne3kpSXYDKDGOFYtSic1wWfNQBfBAiACqSp7qoPj/0XE7XKMCQs+r4eKkiw7H+AiWABEoNPt/TR1D1r7vzETbCzNpqq5l9beIbdLiQgWABFo7BPO2NhnY0zQ1c5JkfvsW0BILAAi0J7qdrJT4inLT3W7FGPCytqCDJLivNYMFKKQAkBEtojIMRGpEpH7J3k8QUR+5Dy+R0RKxj32gLP8mIjcOmE7r4i8IyLPzfSFxApV5a3qNjaWWPu/MRPF+zxsKM7izZM2EigU0waAiHiBbwJbgVXAXSKyasJq9wAdqroc+BrwsLPtKuBOYDWwBfiW83xjvgQcmemLiCV17QM0dA6weZk1/xgzmc3Lcjh2toc26weYVijfADYCVapararDwJPAtgnrbAOecG7vAG6S4MfTbcCTqjqkqjVAlfN8iEgh8BHg0Zm/jNgxNsbZAsCYyW0amxfImoGmFUoAFAB14+7XO8smXUdV/UAXkDPNtv8C/CUQmOqXi8i9IlIpIpUtLS0hlBvd3qxuIzfV2v+NuZB1hRkkx3utGSgErnQCi8hHgWZV3T/duqr6iKpWqGpFXl7ePFQXvlSVN0+2cfXSHGv/N+YC4rwerirJ5k07I3haoQRAA1A07n6hs2zSdUTEB2QAbVNsey1wu4jUEmxSulFEvn8J9ceU2rbg+P/NNvzTmCltXpZDVXMvzT02L9BUQgmAfUCZiJSKSDzBTt2dE9bZCdzt3N4O7FZVdZbf6YwSKgXKgL2q+oCqFqpqifN8u1X1d2bh9US1sa+01v5vzNTGPiS9ZdcHmNK0AeC06X8BeJHgiJ2nVPWQiHxFRG53VnsMyBGRKuBPgfudbQ8BTwGHgReA+1R1dPZfRmx4s7qN/LQEltr8P8ZMafXidNISfNYPMA1fKCup6i5g14RlD467PQjccYFtHwIemuK5fwH8IpQ6YtlY+/+1y63935jp+LweNpZm28yg07AzgSPEyZbg/CbW/m9MaDYvy6GmtY+mLusHuBALgAhh7f/GXJyx8wHerG51uZLwZQEQId6sbmNxRiJL7Pq/xoRk1aJ0MpLirB9gChYAESAQCLb/b16Wa+3/xoTI4xE2Lc3mV1VtBAclmoksACLAoTPddPSPcH1ZrtulGBNRrivLo6FzgNq2frdLCUsWABHgtargFBjXLrcAMOZiXO+8Z14/YdPITMYCIAK8dryV8oVp5KUluF2KMRGlOCeZwqwkXj1hHcGTsQAIcwPDo+w/1WHNP8ZcAhHh+rJc3jrZhn90ynknY5IFQJjbU9PG8GiA68tieyI8Yy7V9WV59Az5ea++0+1Swo4FQJh7/UQr8b7gWY3GmIt3zbIcROA1awY6jwVAmHu9qpWrSrJIjPNOv7Ix5jyZyfGsK8jgdQuA81gAhLHmnkGONvVw3XJr/jFmJq4ry+Wduk56BkfcLiWsWACEsV9VBT+xWAewMTNz3fI8RgNq00NPYAEQxl470Up2SjyrFqW7XYoxEe3K4kyS4rx2PsAEFgBhKhBQXjvRyjXLcvB4bPoHY2Yiwedl09JsOx9gAguAMHXoTDctPUPcsDLf7VKMiQq/sTKfmtY+alr73C4lbFgAhKndR5sRgd9YaR3AxsyGG8uDH6Z2H212uZLwYQEQpnYfa2Z9USY5qTb9gzGzoSg7mbL8VF6xADjHAiAMtfQM8V5dJzda848xs+rG8nz21LTRO+R3u5SwYAEQhn5xLPgJ5YZyCwBjZtMN5fmMjKqNBnJYAIShV441syA9gdWLbfinMbNpQ3EW6Yk+6wdwWACEmWF/gFePt3Jjeb5d/cuYWRbn9fChFXnsPtpCIGBXCbMACDOVte30Dvlt+Kcxc+TG8nxae4c4eKbL7VJcZwEQZnYfbSbe67GrfxkzRz68Ig8RGw4KFgBhRVXZfbSZTctySEnwuV2OMVEpJzWBK4oyefmIBYAFQBg5fraX6tY+brnMmn+MmUu3rFrIgYYu6jti+2LxFgBhZNeBRkTg1jUL3S7FmKh229rge+yFg00uV+IuC4Aw8vzBRq4qySY/LdHtUoyJasU5KaxenM6uA41ul+IqC4AwUdXcw/GzvXxk7SK3SzEmJty2dhFvn+6ksWvA7VJcYwEQJp4/EPwqusWaf4yZF1ud99rYey8WhRQAIrJFRI6JSJWI3D/J4wki8iPn8T0iUjLusQec5cdE5FZnWZGIvCIih0XkkIh8abZeUKTadbCJiuIsFqRb848x82FpXirlC9N4/mDsNgNNGwAi4gW+CWwFVgF3iciqCavdA3So6nLga8DDzrargDuB1cAW4FvO8/mBP1PVVcAm4L5JnjNm1LT2caSxm63W/GPMvLpt7SIqT3VwtnvQ7VJcEco3gI1AlapWq+ow8CSwbcI624AnnNs7gJskOI/BNuBJVR1S1RqgCtioqo2q+jaAqvYAR4CCmb+cyDTWEWXNP8bMr9vWLkQ1dkcDhRIABUDduPv1nH+wPreOqvqBLiAnlG2d5qIrgD2T/XIRuVdEKkWksqUlOmfwe/5gI+uLMinITHK7FGNiyvL8NMryU/lpjI4GcrUTWERSgWeAP1HV7snWUdVHVLVCVSvy8qLv6lhVzT0cbOjmo+us+ccYN3x03WL21bbT0Bl7o4FCCYAGoGjc/UJn2aTriIgPyADaptpWROIIHvx/oKrPXkrx0eDp/fV4PcK29THbAmaMqz5xZQGq8Oz+erdLmXehBMA+oExESkUknmCn7s4J6+wE7nZubwd2q6o6y+90RgmVAmXAXqd/4DHgiKr+82y8kEjkHw3w7NsN3LAyn7w0u/SjMW4oyk5m09JsdrxdT/CwFTumDQCnTf8LwIsEO2ufUtVDIvIVEbndWe0xIEdEqoA/Be53tj0EPAUcBl4A7lPVUeBa4HeBG0XkXefntll+bWHvtROttPQMsX1DodulGBPT7thQxKm2fvbVdrhdyrwKacpJVd0F7Jqw7MFxtweBOy6w7UPAQxOWvQ7E/NVOnt5fR3ZKPDfapR+NcdXWtQt58CcH2bG/jo2l2W6XM2/sTGCXdPQN89LhZj6+voB4n/03GOOm5HgfH1m3iJ++30j/cOxcMN6OPC7Z+d4ZhkcD3FFhzT/GhIM7KoroGx5lVwxNDWEB4JKn99expiCdyxbZhd+NCQcVxVmU5CSzY3/d9CtHCQsAF7xX18nBhm7u2FA0/crGmHkhItxRUcRb1e1UNfe4Xc68sABwwaOv15CW4OOTNvrHmLBy18YlJPg8PPZ6rdulzAsLgHnW0DnArgON3HX1ElLtur/GhJXslHg+cWUhz75dT1vvkNvlzDkLgHn2xBu1ANx9TYmrdRhjJnfPdSUM+QP8YM9pt0uZcxYA86h3yM8P95zmtrWLbOI3Y8LU8vw0bliZx3ffrGVwZNTtcuaUBcA8empfHT1Dfu65rtTtUowxU/jc9Utp7R1m53tn3C5lTlkAzJPRgPJfb9RQUZzF+qJMt8sxxkzhmmU5lC9M47HXaqJ6fiALgHny7Nv11LUP8Lnrl7pdijFmGiLC71+/lGNne3jxUPSeGGYBMA8GR0b52s+Pc3lhBreuXuB2OcaYEGxbv5iy/FT+4YVj+EcDbpczJywA5sH33jzFma5B/mprOcGZsI0x4c7n9fAXt66kurWPpyqj81oBFgBzrGtghG+8Uq25EA8AAAuTSURBVMWHVuRxzbJct8sxxlyEW1YtYENxFv/y0nEGhqNvRJAFwBz7j1+epGtghL/astLtUowxF0lEuH9rOc09Qzz+qxq3y5l1FgBz6EznAI//qoZt6xezenGG2+UYYy7BVSXZ3HxZPv/+i5O0RtnZwRYAc0RVeeDZAwjCn/+mffo3JpLdv7WcIX+Av/3JIbdLmVUWAHPk6cp6fnm8hfu3llOUnex2OcaYGVien8aXbi7jpwca+en7jW6XM2ssAOZAY9cAX33uMFeXZvO7m4rdLscYMwv+4ENLWVuQwYM/ORg1E8VZAMwyVeX+Zw7gDyj/uP1yPB4b9mlMNPB5PfzTHZfTM+jnwZ3R0RRkATDLHnu95lzTz5Ica/oxJpqsXOg0Bb3fyA/3Rv5soRYAs+ilw2d5aNcRblu70Jp+jIlSf/ChpXx4RR5/898HeaOq1e1yZsQCYJYcOtPFF598h3UFGfyfO9Zb048xUcrn9fBvn76CpXkpfP77+znZ0ut2SZfMAmAWNHYN8LknKslIiuM/P1NBUrzX7ZKMMXMoPTGOx+6+ijivh89+Z1/Enh9gATBDVc29bP/2m/QM+nn07gry0xPdLskYMw+KspN55DMVnO0eZPu336Cuvd/tki6aBcAMvH26g+3//gZD/gBP3rvJzvY1JsZsKM7iB5/bREf/CJ/49hscOtPldkkXxQLgEqgqP3m3gU//51tkJMXxzB9uZk2BHfyNiUUbirPY8fnN+DzCnf/xFi8cjJzrB1gAXKS23iH+6Adv86Un32XVonR2fP4ainNS3C7LGOOisgVpPPOH11Ccm8znv7+fL//oXbr6R9wua1o+twuIFCOjAZ59u55/eOEYPYN+7t9azu9fvxSvjfYxxgCLM5P48R9dyzd2V/HNV6p442Qr928t52PrFuPzhudnbQuAaQz5R3lmfwPf+kUV9R0DXF6UyT98ch0rF6a5XZoxJszEeT18+ZYV3LJqAX+x432+/KP3+NeXq7jvhuVsW7+YuDALAguASYwGlD01bex89wy7DjTSPejn8qJMvrJtNTeszLerehljprSmIIOf/vF1/OxwE19/uYo/f/o9HvrpYT6ybhG3X15ARXFWWJwrFFIAiMgW4OuAF3hUVf9+wuMJwHeBDUAb8ClVrXUeewC4BxgFvqiqL4bynPOprXeIE829vFvXyd6advbVttMz6Ccl3stvrl7IJ68s5NrlOXbgN8aEzOMRtqxZxK2rF/KLYy08+04DO/bX8/23TpORFMdVJdlcXZrN5UWZlOWnkpUSP+81ThsAIuIFvgncAtQD+0Rkp6oeHrfaPUCHqi4XkTuBh4FPicgq4E5gNbAYeElEVjjbTPecs0JVefNkG10DI3QOjNA1MEJz9xBN3QM0dQ1S29ZPe9/wufWX5aXw0XWLuW55LjeW59tJXcaYGRERbijP54byfPqG/Lx05CxvVLWxp6aNl46cPbdebmo8xTkpLMxIZGF6InlpCWQmxZGZHEdWcjxXL82Z9dpC+QawEahS1WrnxTwJbAPGH6y3AX/n3N4BfEOCH5e3AU+q6hBQIyJVzvMRwnPOChHhs0/sY3AkcG5ZcryXRRmJLMxI5NbVC1ien0ZZfiqXLUonLy1htkswxhgAUhJ8bFtfwLb1BQA0dw9yuLGbquZeTpztpa6jnyNnutl9pJmBkQ+uQZybmkDl/7p51usJJQAKgLpx9+uBqy+0jqr6RaQLyHGWvzVh2wLn9nTPCYCI3Avc69ztFZFjIdQ8rSOXtlkuEI6zP4VrXWC1XYpwrQvCsLbf/uBm2NXmmHFdpwD5m0ve/IIzU4Z9J7CqPgI84nYdACJSqaoVbtcxUbjWBVbbpQjXusBquxThWheEdiJYA1A07n6hs2zSdUTEB2QQ7Ay+0LahPKcxxpg5FEoA7APKRKRUROIJdurunLDOTuBu5/Z2YLeqqrP8ThFJEJFSoAzYG+JzGmOMmUPTNgE5bfpfAF4kOGTzcVU9JCJfASpVdSfwGPA9p5O3neABHWe9pwh27vqB+1R1FGCy55z9lzfrwqIpahLhWhdYbZciXOsCq+1ShGtdSPCDujHGmFgTXuclG2OMmTcWAMYYE6MsAKYhIv8oIkdF5H0R+bGIZI577AERqRKRYyJyq0v1bXF+f5WI3O9GDU4dRSLyiogcFpFDIvIlZ3m2iPxcRE44/2a5WKNXRN4Rkeec+6UissfZdz9yBiS4UVemiOxw/s6OiMjmcNhvIvJl5//yoIj8UEQS3dpnIvK4iDSLyMFxyybdRxL0r06N74vIlS7UFtbHjTEWANP7ObBGVdcBx4EHACZMc7EF+JYzbca8GTdNx1ZgFXCXU5cb/MCfqeoqYBNwn1PL/cDLqloGvOzcd8uX+PVzAB8Gvqaqy4EOglOauOHrwAuqWg5cTrBGV/ebiBQAXwQqVHUNwcEaY9O8uLHPvkPwfTbehfbRVoIjDssInkT6bRdqC9vjxngWANNQ1Z+pqt+5+xbBcxZg3DQXqloDjJ/mYr6cm6ZDVYeBsSk15p2qNqrq287tHoIHsQKnniec1Z4APu5GfSJSCHwEeNS5L8CNBKcuca02EckAPkRwJB2qOqyqnYTHfvMBSc65PclAIy7tM1V9leAIw/EutI+2Ad/VoLeATBFZNJ+1hflx4xwLgIvzWeB55/ZkU2QUnLfF3AqHGs4jIiXAFcAeYIGqNjoPNQELXCrrX4C/BMYmhcoBOse9Sd3ad6VAC/BfTvPUoyKSgsv7TVUbgH8CThM88HcB+wmPfTbmQvso3N4X4XbcOMcCABCRl5x2zok/28at89cEmzl+4F6l4U9EUoFngD9R1e7xjzknB877uGMR+SjQrKr75/t3h8AHXAl8W1WvAPqY0Nzjxn5z2tO3EQyoxUAK5zdzhA23/ramE+7HjbCfC2g+qOqU0+yJyO8BHwVu0g9OnAiH6SzCoYZzRCSO4MH/B6r6rLP4rIgsUtVG52t4swulXQvcLiK3AYlAOsF290wR8TmfaN3ad/VAvaruce7vIBgAbu+3m4EaVW0BEJFnCe7HcNhnYy60j8LifRHGx41z7BvANCR44Zq/BG5X1f5xD11omov5FDZTajht6o8BR1T1n8c9NH6akLuBn8x3bar6gKoWqmoJwX20W1V/G3iF4NQlbtbWBNSJyEpn0U0Ez5x3e7+dBjaJSLLzfztWl+v7bJwL7aOdwGec0UCbgK5xTUXzIsyPGx9QVfuZ4odgJ00d8K7z8+/jHvtr4CRwDNjqUn23ERxlcBL4axf303UEv4K/P25f3Uawrf1l4ATwEpDt8v/nbwDPObeXEnzzVQFPAwku1bQeqHT23X8DWeGw34D/DRwFDgLfAxLc2mfADwn2RYwQ/NZ0z4X2ESAER8edBA4QHMk037WF9XFj7MemgjDGmBhlTUDGGBOjLACMMSZGWQAYY0yMsgAwxpgYZQFgjDExygLAmBCIyMdFREWk3O1ajJktFgDGhOYu4HXnX2OiggWAMdNw5je6juAJPnc6yzwi8i1nzvefi8guEdnuPLZBRH4pIvtF5MW5nInSmJmwADBmetsIztd/HGgTkQ3AJ4ASgtdh+F1gM5ybD+nfgO2qugF4HHjIjaKNmY5NBmfM9O4iOHkcBK+5cBfB987TqhoAmkTkFefxlcAa4OfBKXTwEpwmwJiwYwFgzBREJJvgRVDWiogSPKAr8OMLbQIcUtXN81SiMZfMmoCMmdp24HuqWqyqJapaBNQQvALUJ52+gAUEJ5mD4ARfeSJyrklIRFa7Ubgx07EAMGZqd3H+p/1ngIUEZ348DHwfeJvgtMPDBEPjYRF5j+BMkNfMX7nGhM5mAzXmEolIqqr2ikgOwSmSr9Xg/P7GRATrAzDm0j0nIplAPPBVO/ibSGPfAIwxJkZZH4AxxsQoCwBjjIlRFgDGGBOjLACMMSZGWQAYY0yM+v8o85YVwHpvVAAAAABJRU5ErkJggg==\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "sns." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.8" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/Project/work.csv b/Project/work.csv new file mode 100644 index 0000000..01059a7 --- /dev/null +++ b/Project/work.csv @@ -0,0 +1,27767 @@ +;Country;Sex;Occupation;Industry;Age;Value;count;Relative / all countries;Total_Population;Relative per country;Young;Old;Young or Old +0;Belgium;F;Not applicable;Not applicable  ;Y15-29;553484;1;0.0021091766385399925;11000638;0.05031380907180111;1;0;Young +1;Belgium;F;Not applicable;Not applicable  ;Y30-49;314136;1;0.001197086659279038;11000638;0.028556161924426567;1;0;Young +2;Belgium;F;Not applicable;Not applicable  ;Y50-64;529957;1;0.0020195216552434015;11000638;0.0481751149342429;0;1;Old +3;Belgium;F;Not applicable;Not applicable  ;Y65-84;899599;1;0.00342812654901305;11000638;0.08177698420764323;0;1;Old +4;Belgium;F;Not applicable;Not applicable  ;Y_GE85;173933;1;0.0006628112470661782;11000638;0.015811173861006972;0;1;Old +5;Belgium;F;Not applicable;Not applicable  ;Y_LT15;912815;1;0.00347848912219483;11000638;0.0829783690727756;0;1;Old +6;Belgium;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;2027;1;7.72434441884601e-06;11000638;0.00018426204007440295;1;0;Young +7;Belgium;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;10266;1;3.912092738227585e-05;11000638;0.0009332186005938929;1;0;Young +8;Belgium;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;7651;1;2.9155875258308252e-05;11000638;0.0006955051152487701;0;1;Old +9;Belgium;F;Not stated;Agriculture, forestry and fishing   ;Y65-84;1184;1;4.511901229360472e-06;11000638;0.00010763012108934046;0;1;Old +10;Belgium;F;Not stated;Agriculture, forestry and fishing   ;Y_GE85;53;1;2.019685516521157e-07;11000638;4.8179023798437875e-06;0;1;Old +11;Belgium;F;Not stated;Mining and quarrying   ;Y15-29;17;1;6.478236562426352e-08;11000638;1.5453649142895168e-06;1;0;Young +12;Belgium;F;Not stated;Mining and quarrying   ;Y30-49;161;1;6.135271097356723e-07;11000638;1.46355147765066e-05;1;0;Young +13;Belgium;F;Not stated;Mining and quarrying   ;Y50-64;83;1;3.1629037334199253e-07;11000638;7.545016934472346e-06;0;1;Old +14;Belgium;F;Not stated;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;11000638;1.8180763697523725e-07;0;1;Old +15;Belgium;F;Not stated;Manufacturing   ;Y15-29;20851;1;7.945747680185404e-05;11000638;0.001895435519285336;1;0;Young +16;Belgium;F;Not stated;Manufacturing   ;Y30-49;79267;1;0.0003020649279963822;11000638;0.007205672980058066;1;0;Young +17;Belgium;F;Not stated;Manufacturing   ;Y50-64;30248;1;0.00011526688208251313;11000638;0.002749658701613488;0;1;Old +18;Belgium;F;Not stated;Manufacturing   ;Y65-84;507;1;1.9320387865589183e-06;11000638;4.608823597322264e-05;0;1;Old +19;Belgium;F;Not stated;Manufacturing   ;Y_GE85;6;1;2.2864364337975363e-08;11000638;5.454229109257117e-07;0;1;Old +20;Belgium;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;1842;1;7.019359851758437e-06;11000638;0.00016744483365419352;1;0;Young +21;Belgium;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;2993;1;1.1405507077260044e-05;11000638;0.00027207512873344257;1;0;Young +22;Belgium;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;657;1;2.5036478950083024e-06;11000638;5.972380874636544e-05;0;1;Old +23;Belgium;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;805;1;3.0676355486783614e-06;11000638;7.3177573882533e-05;1;0;Young +24;Belgium;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3108;1;1.1843740727071238e-05;11000638;0.0002825290678595187;1;0;Young +25;Belgium;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;891;1;3.3953581041893413e-06;11000638;8.09953022724682e-05;0;1;Old +26;Belgium;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;12;1;4.5728728675950726e-08;11000638;1.0908458218514234e-06;0;1;Old +27;Belgium;F;Not stated;Construction   ;Y15-29;4477;1;1.7060626523519282e-05;11000638;0.00040697639536906857;1;0;Young +28;Belgium;F;Not stated;Construction   ;Y30-49;16597;1;6.324664248622951e-05;11000638;0.0015087306754390064;1;0;Young +29;Belgium;F;Not stated;Construction   ;Y50-64;6990;1;2.6636984453741298e-05;11000638;0.0006354176912284542;0;1;Old +30;Belgium;F;Not stated;Construction   ;Y65-84;379;1;1.4442656806821104e-06;11000638;3.445254720680746e-05;0;1;Old +31;Belgium;F;Not stated;Construction   ;Y_GE85;5;1;1.9053636948312802e-08;11000638;4.5451909243809313e-07;0;1;Old +32;Belgium;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;73435;1;0.00027984076585987016;11000638;0.006675521910638274;1;0;Young +33;Belgium;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;165448;1;0.0006304772251648913;11000638;0.015039854961139527;1;0;Young +34;Belgium;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;65845;1;0.0002509173449723313;11000638;0.005985561928317248;0;1;Old +35;Belgium;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2640;1;1.006032030870916e-05;11000638;0.00023998608080731318;0;1;Old +36;Belgium;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;34;1;1.2956473124852705e-07;11000638;3.0907298285790335e-06;0;1;Old +37;Belgium;F;Not stated;Transportation and storage   ;Y15-29;8494;1;3.236831844779379e-05;11000638;0.0007721370342338327;1;0;Young +38;Belgium;F;Not stated;Transportation and storage   ;Y30-49;28773;1;0.00010964605918276085;11000638;0.0026155755693442508;1;0;Young +39;Belgium;F;Not stated;Transportation and storage   ;Y50-64;11538;1;4.3968172621926624e-05;11000638;0.0010488482577101438;0;1;Old +40;Belgium;F;Not stated;Transportation and storage   ;Y65-84;167;1;6.363914740736477e-07;11000638;1.5180937687432311e-05;0;1;Old +41;Belgium;F;Not stated;Transportation and storage   ;Y_GE85;2;1;7.62145477932512e-09;11000638;1.8180763697523725e-07;0;1;Old +42;Belgium;F;Not stated;Accommodation and food service activities   ;Y15-29;24636;1;9.388107997172684e-05;11000638;0.0022395064722609726;1;0;Young +43;Belgium;F;Not stated;Accommodation and food service activities   ;Y30-49;42785;1;0.00016304197136671265;11000638;0.003889319873992763;1;0;Young +44;Belgium;F;Not stated;Accommodation and food service activities   ;Y50-64;19516;1;7.437015573665454e-05;11000638;0.0017740789216043652;0;1;Old +45;Belgium;F;Not stated;Accommodation and food service activities   ;Y65-84;1159;1;4.416633044618908e-06;11000638;0.00010535752562714999;0;1;Old +46;Belgium;F;Not stated;Accommodation and food service activities   ;Y_GE85;17;1;6.478236562426352e-08;11000638;1.5453649142895168e-06;0;1;Old +47;Belgium;F;Not stated;Information and communication   ;Y15-29;7163;1;2.729624029215292e-05;11000638;0.0006511440518268122;1;0;Young +48;Belgium;F;Not stated;Information and communication   ;Y30-49;21105;1;8.042540155882833e-05;11000638;0.0019185250891811912;1;0;Young +49;Belgium;F;Not stated;Information and communication   ;Y50-64;6337;1;2.4148579468291645e-05;11000638;0.0005760574977560392;0;1;Old +50;Belgium;F;Not stated;Information and communication   ;Y65-84;97;1;3.6964055679726836e-07;11000638;8.817670393299007e-06;0;1;Old +51;Belgium;F;Not stated;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;11000638;9.090381848761862e-08;0;1;Old +52;Belgium;F;Not stated;Financial and insurance activities   ;Y15-29;11276;1;4.296976204583503e-05;11000638;0.0010250314572663875;1;0;Young +53;Belgium;F;Not stated;Financial and insurance activities   ;Y30-49;43839;1;0.00016705847803541698;11000638;0.003985132498678713;1;0;Young +54;Belgium;F;Not stated;Financial and insurance activities   ;Y50-64;19116;1;7.284586478078951e-05;11000638;0.0017377173942093177;0;1;Old +55;Belgium;F;Not stated;Financial and insurance activities   ;Y65-84;336;1;1.2804044029266203e-06;11000638;3.054368301183986e-05;0;1;Old +56;Belgium;F;Not stated;Financial and insurance activities   ;Y_GE85;6;1;2.2864364337975363e-08;11000638;5.454229109257117e-07;0;1;Old +57;Belgium;F;Not stated;Real estate activities   ;Y15-29;2232;1;8.505543533726835e-06;11000638;0.00020289732286436478;1;0;Young +58;Belgium;F;Not stated;Real estate activities   ;Y30-49;7608;1;2.8992013980552762e-05;11000638;0.0006915962510538025;1;0;Young +59;Belgium;F;Not stated;Real estate activities   ;Y50-64;4605;1;1.7548399629396092e-05;11000638;0.0004186120841354838;0;1;Old +60;Belgium;F;Not stated;Real estate activities   ;Y65-84;455;1;1.7338809622964651e-06;11000638;4.136123741186648e-05;0;1;Old +61;Belgium;F;Not stated;Real estate activities   ;Y_GE85;6;1;2.2864364337975363e-08;11000638;5.454229109257117e-07;0;1;Old +62;Belgium;F;Not stated;Professional, scientific and technical activities   ;Y15-29;24210;1;9.225771010373059e-05;11000638;0.002200781445585247;1;0;Young +63;Belgium;F;Not stated;Professional, scientific and technical activities   ;Y30-49;57650;1;0.00021968843401404663;11000638;0.005240605135811214;1;0;Young +64;Belgium;F;Not stated;Professional, scientific and technical activities   ;Y50-64;18902;1;7.203036911940172e-05;11000638;0.0017182639770529672;0;1;Old +65;Belgium;F;Not stated;Professional, scientific and technical activities   ;Y65-84;800;1;3.0485819117300484e-06;11000638;7.272305479009491e-05;0;1;Old +66;Belgium;F;Not stated;Professional, scientific and technical activities   ;Y_GE85;10;1;3.8107273896625604e-08;11000638;9.090381848761863e-07;0;1;Old +67;Belgium;F;Not stated;Administrative and support service activities   ;Y15-29;61357;1;0.00023381480044752572;11000638;0.005577585590944816;1;0;Young +68;Belgium;F;Not stated;Administrative and support service activities   ;Y30-49;116622;1;0.0004444146496372271;11000638;0.01060138511966306;1;0;Young +69;Belgium;F;Not stated;Administrative and support service activities   ;Y50-64;36974;1;0.0001408978345053835;11000638;0.003361077784761211;0;1;Old +70;Belgium;F;Not stated;Administrative and support service activities   ;Y65-84;725;1;2.7627773575053563e-06;11000638;6.59052684035235e-05;0;1;Old +71;Belgium;F;Not stated;Administrative and support service activities   ;Y_GE85;2;1;7.62145477932512e-09;11000638;1.8180763697523725e-07;0;1;Old +72;Belgium;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;41804;1;0.0001593036477974537;11000638;0.003800143228056409;1;0;Young +73;Belgium;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;155845;1;0.0005938828100419618;11000638;0.014166905592202924;1;0;Young +74;Belgium;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;90451;1;0.0003446841031223683;11000638;0.008222341286023593;0;1;Old +75;Belgium;F;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;510;1;1.943470968727906e-06;11000638;4.63609474286855e-05;0;1;Old +76;Belgium;F;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;4;1;1.524290955865024e-08;11000638;3.636152739504745e-07;0;1;Old +77;Belgium;F;Not stated;Education   ;Y15-29;53163;1;0.0002025897002166307;11000638;0.004832719702257269;1;0;Young +78;Belgium;F;Not stated;Education   ;Y30-49;144267;1;0.0005497622083244486;11000638;0.013114421181753277;1;0;Young +79;Belgium;F;Not stated;Education   ;Y50-64;70161;1;0.0002673644443861149;11000638;0.00637790280890981;0;1;Old +80;Belgium;F;Not stated;Education   ;Y65-84;391;1;1.4899944093580612e-06;11000638;3.554339302865888e-05;0;1;Old +81;Belgium;F;Not stated;Human health and social work activities   ;Y15-29;81743;1;0.0003115002890131867;11000638;0.007430750834633409;1;0;Young +82;Belgium;F;Not stated;Human health and social work activities   ;Y30-49;226023;1;0.0008613120367937009;11000638;0.020546353766027026;1;0;Young +83;Belgium;F;Not stated;Human health and social work activities   ;Y50-64;101573;1;0.0003870670131501953;11000638;0.009233373555242886;0;1;Old +84;Belgium;F;Not stated;Human health and social work activities   ;Y65-84;1421;1;5.415043620710499e-06;11000638;0.00012917432607090608;0;1;Old +85;Belgium;F;Not stated;Human health and social work activities   ;Y_GE85;7;1;2.6675091727637924e-08;11000638;6.363267294133304e-07;0;1;Old +86;Belgium;F;Not stated;Arts, entertainment and recreation   ;Y15-29;4958;1;1.8893586397946975e-05;11000638;0.00045070113206161313;1;0;Young +87;Belgium;F;Not stated;Arts, entertainment and recreation   ;Y30-49;11332;1;4.318316277965614e-05;11000638;0.0010301220711016943;1;0;Young +88;Belgium;F;Not stated;Arts, entertainment and recreation   ;Y50-64;4950;1;1.8863100578829674e-05;11000638;0.0004499739015137122;0;1;Old +89;Belgium;F;Not stated;Arts, entertainment and recreation   ;Y65-84;231;1;8.802780270120515e-07;11000638;2.0998782070639902e-05;0;1;Old +90;Belgium;F;Not stated;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;11000638;9.090381848761862e-08;0;1;Old +91;Belgium;F;Not stated;Other service activities   ;Y15-29;21287;1;8.111895394374693e-05;11000638;0.0019350695841459378;1;0;Young +92;Belgium;F;Not stated;Other service activities   ;Y30-49;42248;1;0.00016099561075846386;11000638;0.003840504523464912;1;0;Young +93;Belgium;F;Not stated;Other service activities   ;Y50-64;18190;1;6.931713121796198e-05;11000638;0.0016535404582897829;0;1;Old +94;Belgium;F;Not stated;Other service activities   ;Y65-84;1370;1;5.220696523837708e-06;11000638;0.00012453823132803753;0;1;Old +95;Belgium;F;Not stated;Other service activities   ;Y_GE85;19;1;7.240382040358865e-08;11000638;1.727172551264754e-06;0;1;Old +96;Belgium;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;264;1;1.006032030870916e-06;11000638;2.3998608080731316e-05;1;0;Young +97;Belgium;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1188;1;4.527144138919122e-06;11000638;0.00010799373636329093;1;0;Young +98;Belgium;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1035;1;3.94410284830075e-06;11000638;9.408545213468527e-05;0;1;Old +99;Belgium;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;128;1;4.877731058768077e-07;11000638;1.1635688766415184e-05;0;1;Old +100;Belgium;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2;1;7.62145477932512e-09;11000638;1.8180763697523725e-07;0;1;Old +101;Belgium;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;160;1;6.097163823460097e-07;11000638;1.454461095801898e-05;1;0;Young +102;Belgium;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;848;1;3.231496826433851e-06;11000638;7.70864380775006e-05;1;0;Young +103;Belgium;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;469;1;1.787231145751741e-06;11000638;4.263389087069314e-05;0;1;Old +104;Belgium;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;19;1;7.240382040358865e-08;11000638;1.727172551264754e-06;0;1;Old +105;Belgium;F;Not stated;Not stated   ;Y15-29;6317;1;2.4072364920498397e-05;11000638;0.0005742394213862869;1;0;Young +106;Belgium;F;Not stated;Not stated   ;Y30-49;29193;1;0.00011124656468641912;11000638;0.002653755173109051;1;0;Young +107;Belgium;F;Not stated;Not stated   ;Y50-64;26324;1;0.00010031358780547724;11000638;0.0023929521178680728;0;1;Old +108;Belgium;F;Not stated;Not stated   ;Y65-84;95;1;3.6201910201794326e-07;11000638;8.63586275632377e-06;0;1;Old +109;Belgium;F;Not stated;Not stated   ;Y_GE85;3;1;1.1432182168987682e-08;11000638;2.7271145546285586e-07;0;1;Old +110;Belgium;M;Not applicable;Not applicable  ;Y15-29;526527;1;0.002006450860296859;11000638;0.04786331483683037;1;0;Young +111;Belgium;M;Not applicable;Not applicable  ;Y30-49;187458;1;0.0007143513350113642;11000638;0.01704064800605201;1;0;Young +112;Belgium;M;Not applicable;Not applicable  ;Y50-64;369495;1;0.0014080447168433679;11000638;0.03358850641208264;0;1;Old +113;Belgium;M;Not applicable;Not applicable  ;Y65-84;690939;1;0.00263298017188606;11000638;0.06280899344201672;0;1;Old +114;Belgium;M;Not applicable;Not applicable  ;Y_GE85;73649;1;0.00028065626152125794;11000638;0.0066949753277946245;0;1;Old +115;Belgium;M;Not applicable;Not applicable  ;Y_LT15;954482;1;0.0036372707003399;11000638;0.0867660584776992;0;1;Old +116;Belgium;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;5974;1;2.2765285425844136e-05;11000638;0.0005430594116450336;1;0;Young +117;Belgium;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;20438;1;7.788364638992341e-05;11000638;0.0018578922422499496;1;0;Young +118;Belgium;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;13996;1;5.33349405457172e-05;11000638;0.0012722898435527103;0;1;Old +119;Belgium;M;Not stated;Agriculture, forestry and fishing   ;Y65-84;2896;1;1.1035866520462775e-05;11000638;0.00026325745834014354;0;1;Old +120;Belgium;M;Not stated;Agriculture, forestry and fishing   ;Y_GE85;111;1;4.2299074025254424e-07;11000638;1.0090323852125667e-05;0;1;Old +121;Belgium;M;Not stated;Mining and quarrying   ;Y15-29;413;1;1.5738304119306376e-06;11000638;3.7543277035386496e-05;1;0;Young +122;Belgium;M;Not stated;Mining and quarrying   ;Y30-49;1610;1;6.135271097356723e-06;11000638;0.000146355147765066;1;0;Young +123;Belgium;M;Not stated;Mining and quarrying   ;Y50-64;843;1;3.2124431894855386e-06;11000638;7.66319189850625e-05;0;1;Old +124;Belgium;M;Not stated;Mining and quarrying   ;Y65-84;35;1;1.3337545863818962e-07;11000638;3.181633647066652e-06;0;1;Old +125;Belgium;M;Not stated;Manufacturing   ;Y15-29;67502;1;0.00025723172025700217;11000638;0.006136189555551233;1;0;Young +126;Belgium;M;Not stated;Manufacturing   ;Y30-49;236852;1;0.0009025784036963567;11000638;0.021530751216429448;1;0;Young +127;Belgium;M;Not stated;Manufacturing   ;Y50-64;104206;1;0.0003971006583671768;11000638;0.009472723309320787;0;1;Old +128;Belgium;M;Not stated;Manufacturing   ;Y65-84;2312;1;8.81040172489984e-06;11000638;0.00021016962834337428;0;1;Old +129;Belgium;M;Not stated;Manufacturing   ;Y_GE85;16;1;6.097163823460096e-08;11000638;1.454461095801898e-06;0;1;Old +130;Belgium;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2900;1;1.1051109430021425e-05;11000638;0.000263621073614094;1;0;Young +131;Belgium;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;8382;1;3.1941516980151584e-05;11000638;0.0007619558065632193;1;0;Young +132;Belgium;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;4541;1;1.730451307645769e-05;11000638;0.0004127942397522762;0;1;Old +133;Belgium;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;11;1;4.1918001286288165e-08;11000638;9.999420033638048e-07;0;1;Old +134;Belgium;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3201;1;1.2198138374309856e-05;11000638;0.00029098312297886724;1;0;Young +135;Belgium;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;13277;1;5.0595027552549813e-05;11000638;0.0012069299980601125;1;0;Young +136;Belgium;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;5442;1;2.0737978454543653e-05;11000638;0.0004946985802096206;0;1;Old +137;Belgium;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;83;1;3.1629037334199253e-07;11000638;7.545016934472346e-06;0;1;Old +138;Belgium;M;Not stated;Construction   ;Y15-29;73319;1;0.0002793987214826693;11000638;0.00666497706769371;1;0;Young +139;Belgium;M;Not stated;Construction   ;Y30-49;152019;1;0.0005793029670491128;11000638;0.013819107582669295;1;0;Young +140;Belgium;M;Not stated;Construction   ;Y50-64;64584;1;0.0002461120177339668;11000638;0.005870932213204361;0;1;Old +141;Belgium;M;Not stated;Construction   ;Y65-84;2785;1;1.0612875780210231e-05;11000638;0.0002531671344880179;0;1;Old +142;Belgium;M;Not stated;Construction   ;Y_GE85;19;1;7.240382040358865e-08;11000638;1.727172551264754e-06;0;1;Old +143;Belgium;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;75979;1;0.0002895352563391717;11000638;0.0069067812248707755;1;0;Young +144;Belgium;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;195625;1;0.0007454735456027384;11000638;0.017783059491640395;1;0;Young +145;Belgium;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;88228;1;0.0003362128561351484;11000638;0.008020262097525616;0;1;Old +146;Belgium;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;6352;1;2.4205740379136586e-05;11000638;0.0005774210550333535;0;1;Old +147;Belgium;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;84;1;3.201011007316551e-07;11000638;7.635920752959964e-06;0;1;Old +148;Belgium;M;Not stated;Transportation and storage   ;Y15-29;26161;1;9.969243924096224e-05;11000638;0.0023781347954545907;1;0;Young +149;Belgium;M;Not stated;Transportation and storage   ;Y30-49;98468;1;0.000375234704605293;11000638;0.00895111719883883;1;0;Young +150;Belgium;M;Not stated;Transportation and storage   ;Y50-64;66360;1;0.00025287986957800754;11000638;0.006032377394838372;0;1;Old +151;Belgium;M;Not stated;Transportation and storage   ;Y65-84;1944;1;7.408054045504018e-06;11000638;0.0001767170231399306;0;1;Old +152;Belgium;M;Not stated;Transportation and storage   ;Y_GE85;6;1;2.2864364337975363e-08;11000638;5.454229109257117e-07;0;1;Old +153;Belgium;M;Not stated;Accommodation and food service activities   ;Y15-29;27880;1;0.00010624307962379218;11000638;0.0025343984594348072;1;0;Young +154;Belgium;M;Not stated;Accommodation and food service activities   ;Y30-49;47789;1;0.0001821108512245841;11000638;0.004344202581704807;1;0;Young +155;Belgium;M;Not stated;Accommodation and food service activities   ;Y50-64;17727;1;6.755276443654821e-05;11000638;0.0016114519903300153;0;1;Old +156;Belgium;M;Not stated;Accommodation and food service activities   ;Y65-84;1020;1;3.886941937455812e-06;11000638;9.2721894857371e-05;0;1;Old +157;Belgium;M;Not stated;Accommodation and food service activities   ;Y_GE85;10;1;3.8107273896625604e-08;11000638;9.090381848761863e-07;0;1;Old +158;Belgium;M;Not stated;Information and communication   ;Y15-29;16596;1;6.324283175883985e-05;11000638;0.0015086397716205188;1;0;Young +159;Belgium;M;Not stated;Information and communication   ;Y30-49;49447;1;0.00018842903723664464;11000638;0.004494921112757278;1;0;Young +160;Belgium;M;Not stated;Information and communication   ;Y50-64;17900;1;6.821202027495983e-05;11000638;0.0016271783509283733;0;1;Old +161;Belgium;M;Not stated;Information and communication   ;Y65-84;328;1;1.24991858380932e-06;11000638;2.981645246393891e-05;0;1;Old +162;Belgium;M;Not stated;Information and communication   ;Y_GE85;2;1;7.62145477932512e-09;11000638;1.8180763697523725e-07;0;1;Old +163;Belgium;M;Not stated;Financial and insurance activities   ;Y15-29;9103;1;3.468905142809829e-05;11000638;0.0008274974596927924;1;0;Young +164;Belgium;M;Not stated;Financial and insurance activities   ;Y30-49;39538;1;0.0001506685395324783;11000638;0.0035941551753634654;1;0;Young +165;Belgium;M;Not stated;Financial and insurance activities   ;Y50-64;25092;1;9.561877166141297e-05;11000638;0.0022809586134913268;0;1;Old +166;Belgium;M;Not stated;Financial and insurance activities   ;Y65-84;765;1;2.9152064530918587e-06;11000638;6.954142114302825e-05;0;1;Old +167;Belgium;M;Not stated;Financial and insurance activities   ;Y_GE85;11;1;4.1918001286288165e-08;11000638;9.999420033638048e-07;0;1;Old +168;Belgium;M;Not stated;Real estate activities   ;Y15-29;2199;1;8.379789529867971e-06;11000638;0.00019989749685427337;1;0;Young +169;Belgium;M;Not stated;Real estate activities   ;Y30-49;8161;1;3.109934622703616e-05;11000638;0.0007418660626774557;1;0;Young +170;Belgium;M;Not stated;Real estate activities   ;Y50-64;5714;1;2.177449630453187e-05;11000638;0.0005194244188382528;0;1;Old +171;Belgium;M;Not stated;Real estate activities   ;Y65-84;747;1;2.8466133600779327e-06;11000638;6.790515241025111e-05;0;1;Old +172;Belgium;M;Not stated;Real estate activities   ;Y_GE85;16;1;6.097163823460096e-08;11000638;1.454461095801898e-06;0;1;Old +173;Belgium;M;Not stated;Professional, scientific and technical activities   ;Y15-29;24418;1;9.30503414007804e-05;11000638;0.002219689439830672;1;0;Young +174;Belgium;M;Not stated;Professional, scientific and technical activities   ;Y30-49;68293;1;0.00026024600562222523;11000638;0.006208094475974939;1;0;Young +175;Belgium;M;Not stated;Professional, scientific and technical activities   ;Y50-64;30109;1;0.00011473719097535003;11000638;0.0027370230708437093;0;1;Old +176;Belgium;M;Not stated;Professional, scientific and technical activities   ;Y65-84;2871;1;1.0940598335721212e-05;11000638;0.0002609848628779531;0;1;Old +177;Belgium;M;Not stated;Professional, scientific and technical activities   ;Y_GE85;38;1;1.448076408071773e-07;11000638;3.454345102529508e-06;0;1;Old +178;Belgium;M;Not stated;Administrative and support service activities   ;Y15-29;71320;1;0.00027178107743073383;11000638;0.006483260334536961;1;0;Young +179;Belgium;M;Not stated;Administrative and support service activities   ;Y30-49;103077;1;0.00039279834714424773;11000638;0.009370092898248266;1;0;Young +180;Belgium;M;Not stated;Administrative and support service activities   ;Y50-64;31218;1;0.00011896328765048582;11000638;0.0028378354055464783;0;1;Old +181;Belgium;M;Not stated;Administrative and support service activities   ;Y65-84;1281;1;4.88154178615774e-06;11000638;0.00011644779148263946;0;1;Old +182;Belgium;M;Not stated;Administrative and support service activities   ;Y_GE85;10;1;3.8107273896625604e-08;11000638;9.090381848761863e-07;0;1;Old +183;Belgium;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;32391;1;0.00012343327087856;11000638;0.002944465584632455;1;0;Young +184;Belgium;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;133334;1;0.0005080995257732678;11000638;0.012120569734228141;1;0;Young +185;Belgium;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;90142;1;0.00034350658835896256;11000638;0.008194252006110918;0;1;Old +186;Belgium;M;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;1797;1;6.847877119223622e-06;11000638;0.00016335416182225066;0;1;Old +187;Belgium;M;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;38;1;1.448076408071773e-07;11000638;3.454345102529508e-06;0;1;Old +188;Belgium;M;Not stated;Education   ;Y15-29;20165;1;7.684331781254554e-05;11000638;0.0018330754998028295;1;0;Young +189;Belgium;M;Not stated;Education   ;Y30-49;57601;1;0.00021950170837195315;11000638;0.005236150848705321;1;0;Young +190;Belgium;M;Not stated;Education   ;Y50-64;41633;1;0.0001586520134138214;11000638;0.0037845986750950265;0;1;Old +191;Belgium;M;Not stated;Education   ;Y65-84;794;1;3.0257175473920732e-06;11000638;7.217763187916918e-05;0;1;Old +192;Belgium;M;Not stated;Education   ;Y_GE85;3;1;1.1432182168987682e-08;11000638;2.7271145546285586e-07;0;1;Old +193;Belgium;M;Not stated;Human health and social work activities   ;Y15-29;19031;1;7.252195295266818e-05;11000638;0.0017299905696378701;1;0;Young +194;Belgium;M;Not stated;Human health and social work activities   ;Y30-49;61864;1;0.00023574683923408465;11000638;0.005623673826918038;1;0;Young +195;Belgium;M;Not stated;Human health and social work activities   ;Y50-64;38667;1;0.00014734939597608223;11000638;0.0035149779494607495;0;1;Old +196;Belgium;M;Not stated;Human health and social work activities   ;Y65-84;2629;1;1.0018402307422872e-05;11000638;0.00023898613880394938;0;1;Old +197;Belgium;M;Not stated;Human health and social work activities   ;Y_GE85;43;1;1.638612777554901e-07;11000638;3.908864194967601e-06;0;1;Old +198;Belgium;M;Not stated;Arts, entertainment and recreation   ;Y15-29;7049;1;2.686181736973139e-05;11000638;0.0006407810165192237;1;0;Young +199;Belgium;M;Not stated;Arts, entertainment and recreation   ;Y30-49;15061;1;5.7393365215707825e-05;11000638;0.0013691024102420242;1;0;Young +200;Belgium;M;Not stated;Arts, entertainment and recreation   ;Y50-64;7291;1;2.778401339802973e-05;11000638;0.0006627797405932274;0;1;Old +201;Belgium;M;Not stated;Arts, entertainment and recreation   ;Y65-84;681;1;2.5951053523602036e-06;11000638;6.190550039006829e-05;0;1;Old +202;Belgium;M;Not stated;Arts, entertainment and recreation   ;Y_GE85;8;1;3.048581911730048e-08;11000638;7.27230547900949e-07;0;1;Old +203;Belgium;M;Not stated;Other service activities   ;Y15-29;7120;1;2.713237901439743e-05;11000638;0.0006472351876318447;1;0;Young +204;Belgium;M;Not stated;Other service activities   ;Y30-49;21939;1;8.360354820180691e-05;11000638;0.001994338873799865;1;0;Young +205;Belgium;M;Not stated;Other service activities   ;Y50-64;12657;1;4.823237657095903e-05;11000638;0.001150569630597789;0;1;Old +206;Belgium;M;Not stated;Other service activities   ;Y65-84;1950;1;7.430918409841993e-06;11000638;0.00017726244605085632;0;1;Old +207;Belgium;M;Not stated;Other service activities   ;Y_GE85;40;1;1.5242909558650242e-07;11000638;3.636152739504745e-06;0;1;Old +208;Belgium;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;109;1;4.153692854732191e-07;11000638;9.90851621515043e-06;1;0;Young +209;Belgium;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;561;1;2.1378180656006966e-06;11000638;5.099704217155405e-05;1;0;Young +210;Belgium;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;457;1;1.7415024170757901e-06;11000638;4.154304504884171e-05;0;1;Old +211;Belgium;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;124;1;4.725301963181575e-07;11000638;1.127207349246471e-05;0;1;Old +212;Belgium;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;7;1;2.6675091727637924e-08;11000638;6.363267294133304e-07;0;1;Old +213;Belgium;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;86;1;3.277225555109802e-07;11000638;7.817728389935202e-06;1;0;Young +214;Belgium;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;671;1;2.556998078463578e-06;11000638;6.09964622051921e-05;1;0;Young +215;Belgium;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;510;1;1.943470968727906e-06;11000638;4.63609474286855e-05;0;1;Old +216;Belgium;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;11;1;4.1918001286288165e-08;11000638;9.999420033638048e-07;0;1;Old +217;Belgium;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y_GE85;1;1;3.81072738966256e-09;11000638;9.090381848761862e-08;0;1;Old +218;Belgium;M;Not stated;Not stated   ;Y15-29;8039;1;3.0634437485497324e-05;11000638;0.0007307757968219662;1;0;Young +219;Belgium;M;Not stated;Not stated   ;Y30-49;39435;1;0.00015027603461134308;11000638;0.0035847920820592408;1;0;Young +220;Belgium;M;Not stated;Not stated   ;Y50-64;25200;1;9.603033021949652e-05;11000638;0.0022907762258879893;0;1;Old +221;Belgium;M;Not stated;Not stated   ;Y65-84;373;1;1.421401316344135e-06;11000638;3.3907124295881746e-05;0;1;Old +222;Belgium;M;Not stated;Not stated   ;Y_GE85;2;1;7.62145477932512e-09;11000638;1.8180763697523725e-07;0;1;Old +223;Bulgaria;F;Not applicable;Not applicable  ;Y15-29;386073;1;0.0014712189555091937;7364309;0.052424877880599526;1;0;Young +224;Bulgaria;F;Not applicable;Not applicable  ;Y30-49;211765;1;0.0008069786856718922;7364309;0.028755583178272395;1;0;Young +225;Bulgaria;F;Not applicable;Not applicable  ;Y50-64;394630;1;0.0015038273497825362;7364309;0.05358683346937235;0;1;Old +226;Bulgaria;F;Not applicable;Not applicable  ;Y65-84;719844;1;0.0027431292470842562;7364309;0.09774766376587403;0;1;Old +227;Bulgaria;F;Not applicable;Not applicable  ;Y_GE85;70955;1;0.000270390161933507;7364309;0.009634984083367496;0;1;Old +228;Bulgaria;F;Not applicable;Not applicable  ;Y_LT15;473554;1;0.0018045851982842643;7364309;0.06430392858311622;0;1;Old +229;Bulgaria;F;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +230;Bulgaria;F;Armed forces occupations;Manufacturing   ;Y30-49;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;1;0;Young +231;Bulgaria;F;Armed forces occupations;Manufacturing   ;Y50-64;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +232;Bulgaria;F;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +233;Bulgaria;F;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;1;0;Young +234;Bulgaria;F;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +235;Bulgaria;F;Armed forces occupations;Transportation and storage   ;Y30-49;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +236;Bulgaria;F;Armed forces occupations;Information and communication   ;Y15-29;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;1;0;Young +237;Bulgaria;F;Armed forces occupations;Information and communication   ;Y30-49;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;1;0;Young +238;Bulgaria;F;Armed forces occupations;Financial and insurance activities   ;Y30-49;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +239;Bulgaria;F;Armed forces occupations;Financial and insurance activities   ;Y50-64;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +240;Bulgaria;F;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;42;1;1.6005055036582754e-07;7364309;5.703182742603549e-06;1;0;Young +241;Bulgaria;F;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;152;1;5.792305632287092e-07;7364309;2.0640089925612843e-05;1;0;Young +242;Bulgaria;F;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +243;Bulgaria;F;Armed forces occupations;Administrative and support service activities   ;Y15-29;149;1;5.677983810597215e-07;7364309;2.023271972971259e-05;1;0;Young +244;Bulgaria;F;Armed forces occupations;Administrative and support service activities   ;Y30-49;370;1;1.4099691341751475e-06;7364309;5.024232416103127e-05;1;0;Young +245;Bulgaria;F;Armed forces occupations;Administrative and support service activities   ;Y50-64;46;1;1.7529345992447778e-07;7364309;6.246343003803887e-06;0;1;Old +246;Bulgaria;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;1235;1;4.706248326233262e-06;7364309;0.00016770073064560436;1;0;Young +247;Bulgaria;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2553;1;9.728787025808516e-06;7364309;0.0003466720367111157;1;0;Young +248;Bulgaria;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;227;1;8.650351174534013e-07;7364309;3.0824344823119184e-05;0;1;Old +249;Bulgaria;F;Armed forces occupations;Education   ;Y15-29;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;1;0;Young +250;Bulgaria;F;Armed forces occupations;Education   ;Y30-49;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;1;0;Young +251;Bulgaria;F;Armed forces occupations;Education   ;Y50-64;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +252;Bulgaria;F;Armed forces occupations;Human health and social work activities   ;Y15-29;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +253;Bulgaria;F;Armed forces occupations;Human health and social work activities   ;Y30-49;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;1;0;Young +254;Bulgaria;F;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;1;0;Young +255;Bulgaria;F;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +256;Bulgaria;F;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +257;Bulgaria;F;Armed forces occupations;Other service activities   ;Y15-29;74;1;2.819938268350295e-07;7364309;1.0048464832206252e-05;1;0;Young +258;Bulgaria;F;Armed forces occupations;Other service activities   ;Y30-49;238;1;9.069531187396895e-07;7364309;3.231803554142011e-05;1;0;Young +259;Bulgaria;F;Armed forces occupations;Other service activities   ;Y50-64;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +260;Bulgaria;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;1;0;Young +261;Bulgaria;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;39;1;1.4861836819683987e-07;7364309;5.2958125467032954e-06;1;0;Young +262;Bulgaria;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +263;Bulgaria;F;Armed forces occupations;Not stated   ;Y15-29;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +264;Bulgaria;F;Armed forces occupations;Not stated   ;Y30-49;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +265;Bulgaria;F;Managers;Agriculture, forestry and fishing   ;Y15-29;147;1;5.601769262803964e-07;7364309;1.9961139599112422e-05;1;0;Young +266;Bulgaria;F;Managers;Agriculture, forestry and fishing   ;Y30-49;915;1;3.486815561541243e-06;7364309;0.0001242479097495773;1;0;Young +267;Bulgaria;F;Managers;Agriculture, forestry and fishing   ;Y50-64;477;1;1.8177169648690413e-06;7364309;6.477186114814031e-05;0;1;Old +268;Bulgaria;F;Managers;Agriculture, forestry and fishing   ;Y65-84;49;1;1.8672564209346548e-07;7364309;6.653713199704141e-06;0;1;Old +269;Bulgaria;F;Managers;Mining and quarrying   ;Y15-29;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +270;Bulgaria;F;Managers;Mining and quarrying   ;Y30-49;136;1;5.182589249941082e-07;7364309;1.8467448880811493e-05;1;0;Young +271;Bulgaria;F;Managers;Mining and quarrying   ;Y50-64;88;1;3.353440102903053e-07;7364309;1.1949525746407437e-05;0;1;Old +272;Bulgaria;F;Managers;Manufacturing   ;Y15-29;801;1;3.052392639119711e-06;7364309;0.00010876784230536769;1;0;Young +273;Bulgaria;F;Managers;Manufacturing   ;Y30-49;6705;1;2.555092714768747e-05;7364309;0.0009104723878370666;1;0;Young +274;Bulgaria;F;Managers;Manufacturing   ;Y50-64;3359;1;1.280023330187654e-05;7364309;0.00045611882934298387;0;1;Old +275;Bulgaria;F;Managers;Manufacturing   ;Y65-84;146;1;5.563661988907339e-07;7364309;1.9825349533812336e-05;0;1;Old +276;Bulgaria;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;1;0;Young +277;Bulgaria;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;313;1;1.1927576729643815e-06;7364309;4.250229043892645e-05;1;0;Young +278;Bulgaria;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;191;1;7.27848931425549e-07;7364309;2.593590247231614e-05;0;1;Old +279;Bulgaria;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;1;0;Young +280;Bulgaria;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;230;1;8.76467299622389e-07;7364309;3.1231715019019436e-05;1;0;Young +281;Bulgaria;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;154;1;5.868520180080343e-07;7364309;2.0911670056213013e-05;0;1;Old +282;Bulgaria;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +283;Bulgaria;F;Managers;Construction   ;Y15-29;364;1;1.387104769837172e-06;7364309;4.9427583769230756e-05;1;0;Young +284;Bulgaria;F;Managers;Construction   ;Y30-49;1930;1;7.3547038620487416e-06;7364309;0.0002620748260291631;1;0;Young +285;Bulgaria;F;Managers;Construction   ;Y50-64;1050;1;4.0012637591456885e-06;7364309;0.00014257956856508872;0;1;Old +286;Bulgaria;F;Managers;Construction   ;Y65-84;57;1;2.1721146121076594e-07;7364309;7.740033722104816e-06;0;1;Old +287;Bulgaria;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3421;1;1.303649840003562e-05;7364309;0.00046453781339158906;1;0;Young +288;Bulgaria;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;18753;1;7.146257073834199e-05;7364309;0.0025464710945724846;1;0;Young +289;Bulgaria;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7701;1;2.934641162779138e-05;7364309;0.0010457192928759508;0;1;Old +290;Bulgaria;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;652;1;2.4845942580599894e-06;7364309;8.853512257565509e-05;0;1;Old +291;Bulgaria;F;Managers;Transportation and storage   ;Y15-29;343;1;1.3070794946542583e-06;7364309;4.6575992397928985e-05;1;0;Young +292;Bulgaria;F;Managers;Transportation and storage   ;Y30-49;2268;1;8.642729719754687e-06;7364309;0.00030797186810059166;1;0;Young +293;Bulgaria;F;Managers;Transportation and storage   ;Y50-64;1026;1;3.909806301793787e-06;7364309;0.0001393206069978867;0;1;Old +294;Bulgaria;F;Managers;Transportation and storage   ;Y65-84;40;1;1.5242909558650242e-07;7364309;5.43160261200338e-06;0;1;Old +295;Bulgaria;F;Managers;Accommodation and food service activities   ;Y15-29;1061;1;4.043181760431977e-06;7364309;0.00014407325928338967;1;0;Young +296;Bulgaria;F;Managers;Accommodation and food service activities   ;Y30-49;4201;1;1.6008865763972418e-05;7364309;0.000570454064325655;1;0;Young +297;Bulgaria;F;Managers;Accommodation and food service activities   ;Y50-64;1615;1;6.154324734305035e-06;7364309;0.00021930095545963648;0;1;Old +298;Bulgaria;F;Managers;Accommodation and food service activities   ;Y65-84;79;1;3.010474637833423e-07;7364309;1.0727415158706675e-05;0;1;Old +299;Bulgaria;F;Managers;Information and communication   ;Y15-29;596;1;2.271193524238886e-06;7364309;8.093087891885036e-05;1;0;Young +300;Bulgaria;F;Managers;Information and communication   ;Y30-49;2091;1;7.968230971784414e-06;7364309;0.0002839370265424767;1;0;Young +301;Bulgaria;F;Managers;Information and communication   ;Y50-64;521;1;1.9853889700141942e-06;7364309;7.074662402134403e-05;0;1;Old +302;Bulgaria;F;Managers;Information and communication   ;Y65-84;33;1;1.257540038588645e-07;7364309;4.481072154902789e-06;0;1;Old +303;Bulgaria;F;Managers;Financial and insurance activities   ;Y15-29;571;1;2.175925339497322e-06;7364309;7.753612728634825e-05;1;0;Young +304;Bulgaria;F;Managers;Financial and insurance activities   ;Y30-49;3468;1;1.321560258734976e-05;7364309;0.00047091994646069306;1;0;Young +305;Bulgaria;F;Managers;Financial and insurance activities   ;Y50-64;954;1;3.6354339297380826e-06;7364309;0.00012954372229628062;0;1;Old +306;Bulgaria;F;Managers;Financial and insurance activities   ;Y65-84;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;0;1;Old +307;Bulgaria;F;Managers;Real estate activities   ;Y15-29;253;1;9.641140295846278e-07;7364309;3.435488652092138e-05;1;0;Young +308;Bulgaria;F;Managers;Real estate activities   ;Y30-49;1521;1;5.796116359676755e-06;7364309;0.00020653668932142853;1;0;Young +309;Bulgaria;F;Managers;Real estate activities   ;Y50-64;715;1;2.7246700836087308e-06;7364309;9.708989668956042e-05;0;1;Old +310;Bulgaria;F;Managers;Real estate activities   ;Y65-84;45;1;1.7148273253481523e-07;7364309;6.110552938503802e-06;0;1;Old +311;Bulgaria;F;Managers;Professional, scientific and technical activities   ;Y15-29;631;1;2.4045689828770757e-06;7364309;8.568353120435332e-05;1;0;Young +312;Bulgaria;F;Managers;Professional, scientific and technical activities   ;Y30-49;4516;1;1.7209244891716122e-05;7364309;0.0006132279348951816;1;0;Young +313;Bulgaria;F;Managers;Professional, scientific and technical activities   ;Y50-64;2226;1;8.48267916938886e-06;7364309;0.0003022686853579881;0;1;Old +314;Bulgaria;F;Managers;Professional, scientific and technical activities   ;Y65-84;96;1;3.658298294076058e-07;7364309;1.3035846268808112e-05;0;1;Old +315;Bulgaria;F;Managers;Administrative and support service activities   ;Y15-29;303;1;1.1546503990677558e-06;7364309;4.114438978592561e-05;1;0;Young +316;Bulgaria;F;Managers;Administrative and support service activities   ;Y30-49;1348;1;5.136860521265132e-06;7364309;0.00018304500802451392;1;0;Young +317;Bulgaria;F;Managers;Administrative and support service activities   ;Y50-64;620;1;2.3626509815907875e-06;7364309;8.41898404860524e-05;0;1;Old +318;Bulgaria;F;Managers;Administrative and support service activities   ;Y65-84;42;1;1.6005055036582754e-07;7364309;5.703182742603549e-06;0;1;Old +319;Bulgaria;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;114;1;4.344229224215319e-07;7364309;1.548006744420963e-05;1;0;Young +320;Bulgaria;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;3487;1;1.3288006407753348e-05;7364309;0.00047349995770139464;1;0;Young +321;Bulgaria;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2481;1;9.454414653752813e-06;7364309;0.00033689515200950967;0;1;Old +322;Bulgaria;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;55;1;2.0959000643144082e-07;7364309;7.4684535915046475e-06;0;1;Old +323;Bulgaria;F;Managers;Education   ;Y15-29;96;1;3.658298294076058e-07;7364309;1.3035846268808112e-05;1;0;Young +324;Bulgaria;F;Managers;Education   ;Y30-49;1927;1;7.343271679879754e-06;7364309;0.00026166745583326283;1;0;Young +325;Bulgaria;F;Managers;Education   ;Y50-64;2038;1;7.766262420132299e-06;7364309;0.0002767401530815722;0;1;Old +326;Bulgaria;F;Managers;Education   ;Y65-84;68;1;2.591294624970541e-07;7364309;9.233724440405746e-06;0;1;Old +327;Bulgaria;F;Managers;Human health and social work activities   ;Y15-29;86;1;3.277225555109802e-07;7364309;1.1677945615807268e-05;1;0;Young +328;Bulgaria;F;Managers;Human health and social work activities   ;Y30-49;1691;1;6.44394001591939e-06;7364309;0.0002296210004224429;1;0;Young +329;Bulgaria;F;Managers;Human health and social work activities   ;Y50-64;1642;1;6.257214373825924e-06;7364309;0.00022296728722273875;0;1;Old +330;Bulgaria;F;Managers;Human health and social work activities   ;Y65-84;96;1;3.658298294076058e-07;7364309;1.3035846268808112e-05;0;1;Old +331;Bulgaria;F;Managers;Arts, entertainment and recreation   ;Y15-29;213;1;8.116849339981254e-07;7364309;2.8923283908918e-05;1;0;Young +332;Bulgaria;F;Managers;Arts, entertainment and recreation   ;Y30-49;715;1;2.7246700836087308e-06;7364309;9.708989668956042e-05;1;0;Young +333;Bulgaria;F;Managers;Arts, entertainment and recreation   ;Y50-64;310;1;1.1813254907953937e-06;7364309;4.20949202430262e-05;0;1;Old +334;Bulgaria;F;Managers;Arts, entertainment and recreation   ;Y65-84;28;1;1.067003669105517e-07;7364309;3.802121828402366e-06;0;1;Old +335;Bulgaria;F;Managers;Other service activities   ;Y15-29;314;1;1.196568400354044e-06;7364309;4.2638080504226536e-05;1;0;Young +336;Bulgaria;F;Managers;Other service activities   ;Y30-49;1773;1;6.75641966187172e-06;7364309;0.0002407557857770498;1;0;Young +337;Bulgaria;F;Managers;Other service activities   ;Y50-64;974;1;3.7116484775313338e-06;7364309;0.0001322595236022823;0;1;Old +338;Bulgaria;F;Managers;Other service activities   ;Y65-84;141;1;5.37312561942421e-07;7364309;1.9146399207311914e-05;0;1;Old +339;Bulgaria;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;1;0;Young +340;Bulgaria;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +341;Bulgaria;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +342;Bulgaria;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;1;0;Young +343;Bulgaria;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +344;Bulgaria;F;Managers;Not stated   ;Y15-29;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;1;0;Young +345;Bulgaria;F;Managers;Not stated   ;Y30-49;80;1;3.0485819117300483e-07;7364309;1.086320522400676e-05;1;0;Young +346;Bulgaria;F;Managers;Not stated   ;Y50-64;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;0;1;Old +347;Bulgaria;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;272;1;1.0365178499882164e-06;7364309;3.6934897761622986e-05;1;0;Young +348;Bulgaria;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;1326;1;5.053024518692555e-06;7364309;0.00018005762658791205;1;0;Young +349;Bulgaria;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;882;1;3.3610615576823783e-06;7364309;0.00011976683759467453;0;1;Old +350;Bulgaria;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;50;1;1.9053636948312803e-07;7364309;6.789503265004225e-06;0;1;Old +351;Bulgaria;F;Professionals;Mining and quarrying   ;Y15-29;69;1;2.629401898867167e-07;7364309;9.369514505705831e-06;1;0;Young +352;Bulgaria;F;Professionals;Mining and quarrying   ;Y30-49;303;1;1.1546503990677558e-06;7364309;4.114438978592561e-05;1;0;Young +353;Bulgaria;F;Professionals;Mining and quarrying   ;Y50-64;220;1;8.383600257257633e-07;7364309;2.987381436601859e-05;0;1;Old +354;Bulgaria;F;Professionals;Mining and quarrying   ;Y65-84;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +355;Bulgaria;F;Professionals;Manufacturing   ;Y15-29;2004;1;7.63669768888377e-06;7364309;0.00027212329086136937;1;0;Young +356;Bulgaria;F;Professionals;Manufacturing   ;Y30-49;7944;1;3.0272418383479382e-05;7364309;0.0010787162787438713;1;0;Young +357;Bulgaria;F;Professionals;Manufacturing   ;Y50-64;4288;1;1.634039904687306e-05;7364309;0.0005822678000067624;0;1;Old +358;Bulgaria;F;Professionals;Manufacturing   ;Y65-84;102;1;3.886941937455812e-07;7364309;1.385058666060862e-05;0;1;Old +359;Bulgaria;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;196;1;7.469025683738619e-07;7364309;2.6614852798816563e-05;1;0;Young +360;Bulgaria;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1092;1;4.161314309511516e-06;7364309;0.0001482827513076923;1;0;Young +361;Bulgaria;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;531;1;2.02349624391082e-06;7364309;7.210452467434488e-05;0;1;Old +362;Bulgaria;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +363;Bulgaria;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;111;1;4.2299074025254424e-07;7364309;1.507269724830938e-05;1;0;Young +364;Bulgaria;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;539;1;2.0539820630281202e-06;7364309;7.319084519674554e-05;1;0;Young +365;Bulgaria;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;296;1;1.127975307340118e-06;7364309;4.019385932882501e-05;0;1;Old +366;Bulgaria;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +367;Bulgaria;F;Professionals;Construction   ;Y15-29;899;1;3.425843923306642e-06;7364309;0.00012207526870477596;1;0;Young +368;Bulgaria;F;Professionals;Construction   ;Y30-49;2657;1;1.0125102674333424e-05;7364309;0.00036079420350232453;1;0;Young +369;Bulgaria;F;Professionals;Construction   ;Y50-64;1644;1;6.26483582860525e-06;7364309;0.00022323886735333892;0;1;Old +370;Bulgaria;F;Professionals;Construction   ;Y65-84;76;1;2.896152816143546e-07;7364309;1.0320044962806422e-05;0;1;Old +371;Bulgaria;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3094;1;1.1790390543615963e-05;7364309;0.00042013446203846143;1;0;Young +372;Bulgaria;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8959;1;3.414030668398688e-05;7364309;0.001216543195023457;1;0;Young +373;Bulgaria;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3979;1;1.516288428346733e-05;7364309;0.0005403086698290362;0;1;Old +374;Bulgaria;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;465;1;1.7719882361930907e-06;7364309;6.314238036453929e-05;0;1;Old +375;Bulgaria;F;Professionals;Transportation and storage   ;Y15-29;401;1;1.5281016832546868e-06;7364309;5.445181618533389e-05;1;0;Young +376;Bulgaria;F;Professionals;Transportation and storage   ;Y30-49;1817;1;6.924091667016873e-06;7364309;0.00024673054865025356;1;0;Young +377;Bulgaria;F;Professionals;Transportation and storage   ;Y50-64;1158;1;4.412822317229245e-06;7364309;0.00015724489561749785;0;1;Old +378;Bulgaria;F;Professionals;Transportation and storage   ;Y65-84;28;1;1.067003669105517e-07;7364309;3.802121828402366e-06;0;1;Old +379;Bulgaria;F;Professionals;Accommodation and food service activities   ;Y15-29;661;1;2.5188908045669524e-06;7364309;8.975723316335585e-05;1;0;Young +380;Bulgaria;F;Professionals;Accommodation and food service activities   ;Y30-49;1290;1;4.915838332664703e-06;7364309;0.000175169184237109;1;0;Young +381;Bulgaria;F;Professionals;Accommodation and food service activities   ;Y50-64;653;1;2.488404985449652e-06;7364309;8.867091264095518e-05;0;1;Old +382;Bulgaria;F;Professionals;Accommodation and food service activities   ;Y65-84;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;0;1;Old +383;Bulgaria;F;Professionals;Information and communication   ;Y15-29;3697;1;1.4088259159582486e-05;7364309;0.0005020158714144124;1;0;Young +384;Bulgaria;F;Professionals;Information and communication   ;Y30-49;5655;1;2.154966338854178e-05;7364309;0.0007678928192719779;1;0;Young +385;Bulgaria;F;Professionals;Information and communication   ;Y50-64;1663;1;6.337239649008838e-06;7364309;0.00022581887859404054;0;1;Old +386;Bulgaria;F;Professionals;Information and communication   ;Y65-84;77;1;2.9342600900401714e-07;7364309;1.0455835028106506e-05;0;1;Old +387;Bulgaria;F;Professionals;Financial and insurance activities   ;Y15-29;2135;1;8.135902976929566e-06;7364309;0.0002899117894156804;1;0;Young +388;Bulgaria;F;Professionals;Financial and insurance activities   ;Y30-49;5764;1;2.1965032674015e-05;7364309;0.000782693936389687;1;0;Young +389;Bulgaria;F;Professionals;Financial and insurance activities   ;Y50-64;1895;1;7.221328403410552e-06;7364309;0.0002573221737436601;0;1;Old +390;Bulgaria;F;Professionals;Financial and insurance activities   ;Y65-84;79;1;3.010474637833423e-07;7364309;1.0727415158706675e-05;0;1;Old +391;Bulgaria;F;Professionals;Real estate activities   ;Y15-29;308;1;1.1737040360160685e-06;7364309;4.1823340112426025e-05;1;0;Young +392;Bulgaria;F;Professionals;Real estate activities   ;Y30-49;1066;1;4.062235397380289e-06;7364309;0.00014475220960989007;1;0;Young +393;Bulgaria;F;Professionals;Real estate activities   ;Y50-64;601;1;2.290247161187199e-06;7364309;8.160982924535078e-05;0;1;Old +394;Bulgaria;F;Professionals;Real estate activities   ;Y65-84;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;0;1;Old +395;Bulgaria;F;Professionals;Professional, scientific and technical activities   ;Y15-29;4654;1;1.7735125271489558e-05;7364309;0.0006319669639065933;1;0;Young +396;Bulgaria;F;Professionals;Professional, scientific and technical activities   ;Y30-49;14298;1;5.448578021739529e-05;7364309;0.0019415263536606082;1;0;Young +397;Bulgaria;F;Professionals;Professional, scientific and technical activities   ;Y50-64;7869;1;2.998661382925469e-05;7364309;0.0010685320238463648;0;1;Old +398;Bulgaria;F;Professionals;Professional, scientific and technical activities   ;Y65-84;465;1;1.7719882361930907e-06;7364309;6.314238036453929e-05;0;1;Old +399;Bulgaria;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +400;Bulgaria;F;Professionals;Administrative and support service activities   ;Y15-29;729;1;2.7780202670640067e-06;7364309;9.89909576037616e-05;1;0;Young +401;Bulgaria;F;Professionals;Administrative and support service activities   ;Y30-49;1834;1;6.988874032641136e-06;7364309;0.00024903897976035497;1;0;Young +402;Bulgaria;F;Professionals;Administrative and support service activities   ;Y50-64;894;1;3.406790286358329e-06;7364309;0.00012139631837827554;0;1;Old +403;Bulgaria;F;Professionals;Administrative and support service activities   ;Y65-84;73;1;2.7818309944536694e-07;7364309;9.912674766906168e-06;0;1;Old +404;Bulgaria;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;3134;1;1.1942819639202465e-05;7364309;0.00042556606465046483;1;0;Young +405;Bulgaria;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;21927;1;8.355781947313097e-05;7364309;0.002977468761834953;1;0;Young +406;Bulgaria;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;13016;1;4.960042770384789e-05;7364309;0.0017674434899458999;0;1;Old +407;Bulgaria;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;234;1;8.917102091810392e-07;7364309;3.1774875280219774e-05;0;1;Old +408;Bulgaria;F;Professionals;Education   ;Y15-29;4310;1;1.6424235049445637e-05;7364309;0.0005852551814433642;1;0;Young +409;Bulgaria;F;Professionals;Education   ;Y30-49;45965;1;0.0001751600844658396;7364309;0.006241590351518384;1;0;Young +410;Bulgaria;F;Professionals;Education   ;Y50-64;35099;1;0.0001337527206497662;7364309;0.004766095501967666;0;1;Old +411;Bulgaria;F;Professionals;Education   ;Y65-84;921;1;3.5096799258792185e-06;7364309;0.00012506265014137783;0;1;Old +412;Bulgaria;F;Professionals;Education   ;Y_GE85;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +413;Bulgaria;F;Professionals;Human health and social work activities   ;Y15-29;3585;1;1.366145769194028e-05;7364309;0.00048680738410080294;1;0;Young +414;Bulgaria;F;Professionals;Human health and social work activities   ;Y30-49;27493;1;0.00010476832812399278;7364309;0.003733276265295223;1;0;Young +415;Bulgaria;F;Professionals;Human health and social work activities   ;Y50-64;25565;1;9.742124571672336e-05;7364309;0.00347147301939666;0;1;Old +416;Bulgaria;F;Professionals;Human health and social work activities   ;Y65-84;1915;1;7.297542951203803e-06;7364309;0.0002600379750496618;0;1;Old +417;Bulgaria;F;Professionals;Human health and social work activities   ;Y_GE85;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +418;Bulgaria;F;Professionals;Arts, entertainment and recreation   ;Y15-29;954;1;3.6354339297380826e-06;7364309;0.00012954372229628062;1;0;Young +419;Bulgaria;F;Professionals;Arts, entertainment and recreation   ;Y30-49;2856;1;1.0883437424876273e-05;7364309;0.0003878164264970413;1;0;Young +420;Bulgaria;F;Professionals;Arts, entertainment and recreation   ;Y50-64;2007;1;7.648129871052758e-06;7364309;0.0002725306610572696;0;1;Old +421;Bulgaria;F;Professionals;Arts, entertainment and recreation   ;Y65-84;131;1;4.992052880457954e-07;7364309;1.7788498554311068e-05;0;1;Old +422;Bulgaria;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +423;Bulgaria;F;Professionals;Other service activities   ;Y15-29;875;1;3.3343864659547405e-06;7364309;0.00011881630713757394;1;0;Young +424;Bulgaria;F;Professionals;Other service activities   ;Y30-49;2982;1;1.1363589075973755e-05;7364309;0.000404925974724852;1;0;Young +425;Bulgaria;F;Professionals;Other service activities   ;Y50-64;2047;1;7.80055896663926e-06;7364309;0.00027796226366927297;0;1;Old +426;Bulgaria;F;Professionals;Other service activities   ;Y65-84;171;1;6.516343836322978e-07;7364309;2.322010116631445e-05;0;1;Old +427;Bulgaria;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +428;Bulgaria;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;1;0;Young +429;Bulgaria;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;0;1;Old +430;Bulgaria;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;28;1;1.067003669105517e-07;7364309;3.802121828402366e-06;1;0;Young +431;Bulgaria;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;132;1;5.03016015435458e-07;7364309;1.7924288619611155e-05;1;0;Young +432;Bulgaria;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;71;1;2.705616446660418e-07;7364309;9.641094636306e-06;0;1;Old +433;Bulgaria;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +434;Bulgaria;F;Professionals;Not stated   ;Y15-29;57;1;2.1721146121076594e-07;7364309;7.740033722104816e-06;1;0;Young +435;Bulgaria;F;Professionals;Not stated   ;Y30-49;275;1;1.0479500321572042e-06;7364309;3.734226795752324e-05;1;0;Young +436;Bulgaria;F;Professionals;Not stated   ;Y50-64;143;1;5.449340167217462e-07;7364309;1.9417979337912084e-05;0;1;Old +437;Bulgaria;F;Professionals;Not stated   ;Y65-84;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +438;Bulgaria;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;118;1;4.496658319801821e-07;7364309;1.602322770540997e-05;1;0;Young +439;Bulgaria;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;409;1;1.5585875023719872e-06;7364309;5.553813670773456e-05;1;0;Young +440;Bulgaria;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;283;1;1.0784358512745046e-06;7364309;3.8428588479923915e-05;0;1;Old +441;Bulgaria;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +442;Bulgaria;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;1;0;Young +443;Bulgaria;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;349;1;1.3299438589922337e-06;7364309;4.739073278972949e-05;1;0;Young +444;Bulgaria;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;152;1;5.792305632287092e-07;7364309;2.0640089925612843e-05;0;1;Old +445;Bulgaria;F;Technicians and associate professionals;Manufacturing   ;Y15-29;2508;1;9.557304293273701e-06;7364309;0.00034056148377261194;1;0;Young +446;Bulgaria;F;Technicians and associate professionals;Manufacturing   ;Y30-49;8876;1;3.3824016310644885e-05;7364309;0.00120527261960355;1;0;Young +447;Bulgaria;F;Technicians and associate professionals;Manufacturing   ;Y50-64;3467;1;1.3211791859960098e-05;7364309;0.00047078415639539297;0;1;Old +448;Bulgaria;F;Technicians and associate professionals;Manufacturing   ;Y65-84;72;1;2.7437237205570434e-07;7364309;9.776884701606085e-06;0;1;Old +449;Bulgaria;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;144;1;5.487447441114087e-07;7364309;1.955376940321217e-05;1;0;Young +450;Bulgaria;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1255;1;4.782462874026513e-06;7364309;0.00017041653195160606;1;0;Young +451;Bulgaria;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;603;1;2.297868615966524e-06;7364309;8.188140937595096e-05;0;1;Old +452;Bulgaria;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;100;1;3.8107273896625605e-07;7364309;1.357900653000845e-05;1;0;Young +453;Bulgaria;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;380;1;1.448076408071773e-06;7364309;5.160022481403211e-05;1;0;Young +454;Bulgaria;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;293;1;1.1165431251711302e-06;7364309;3.978648913292476e-05;0;1;Old +455;Bulgaria;F;Technicians and associate professionals;Construction   ;Y15-29;695;1;2.6484555358154796e-06;7364309;9.437409538355873e-05;1;0;Young +456;Bulgaria;F;Technicians and associate professionals;Construction   ;Y30-49;1454;1;5.540797624569363e-06;7364309;0.00019743875494632288;1;0;Young +457;Bulgaria;F;Technicians and associate professionals;Construction   ;Y50-64;1096;1;4.176557219070166e-06;7364309;0.0001488259115688926;0;1;Old +458;Bulgaria;F;Technicians and associate professionals;Construction   ;Y65-84;40;1;1.5242909558650242e-07;7364309;5.43160261200338e-06;0;1;Old +459;Bulgaria;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3321;1;1.2655425661069363e-05;7364309;0.00045095880686158064;1;0;Young +460;Bulgaria;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;6813;1;2.5962485705771026e-05;7364309;0.0009251377148894757;1;0;Young +461;Bulgaria;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2228;1;8.490300624168185e-06;7364309;0.00030254026548858827;0;1;Old +462;Bulgaria;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;184;1;7.011738396979111e-07;7364309;2.4985372015215547e-05;0;1;Old +463;Bulgaria;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;617;1;2.3512187994217997e-06;7364309;8.378247029015214e-05;1;0;Young +464;Bulgaria;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;1860;1;7.087952944772363e-06;7364309;0.00025256952145815716;1;0;Young +465;Bulgaria;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;826;1;3.147660823861275e-06;7364309;0.0001121625939378698;0;1;Old +466;Bulgaria;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +467;Bulgaria;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;418;1;1.5928840488789504e-06;7364309;5.676024729543532e-05;1;0;Young +468;Bulgaria;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;763;1;2.907584998312534e-06;7364309;0.00010360781982396448;1;0;Young +469;Bulgaria;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;356;1;1.3566189507198715e-06;7364309;4.834126324683008e-05;0;1;Old +470;Bulgaria;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +471;Bulgaria;F;Technicians and associate professionals;Information and communication   ;Y15-29;1763;1;6.718312387975094e-06;7364309;0.00023939788512404898;1;0;Young +472;Bulgaria;F;Technicians and associate professionals;Information and communication   ;Y30-49;2347;1;8.943777183538029e-06;7364309;0.0003186992832592983;1;0;Young +473;Bulgaria;F;Technicians and associate professionals;Information and communication   ;Y50-64;726;1;2.766588084895019e-06;7364309;9.858358740786135e-05;0;1;Old +474;Bulgaria;F;Technicians and associate professionals;Information and communication   ;Y65-84;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;0;1;Old +475;Bulgaria;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;3259;1;1.2419160562910285e-05;7364309;0.0004425398228129754;1;0;Young +476;Bulgaria;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;5917;1;2.254807396463337e-05;7364309;0.0008034698163806;1;0;Young +477;Bulgaria;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;1448;1;5.5179332602313875e-06;7364309;0.00019662401455452236;0;1;Old +478;Bulgaria;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;55;1;2.0959000643144082e-07;7364309;7.4684535915046475e-06;0;1;Old +479;Bulgaria;F;Technicians and associate professionals;Real estate activities   ;Y15-29;403;1;1.5357231380340118e-06;7364309;5.4723396315934054e-05;1;0;Young +480;Bulgaria;F;Technicians and associate professionals;Real estate activities   ;Y30-49;991;1;3.7764308431555976e-06;7364309;0.00013456795471238374;1;0;Young +481;Bulgaria;F;Technicians and associate professionals;Real estate activities   ;Y50-64;511;1;1.9472816961175682e-06;7364309;6.938872336834318e-05;0;1;Old +482;Bulgaria;F;Technicians and associate professionals;Real estate activities   ;Y65-84;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;0;1;Old +483;Bulgaria;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2283;1;8.699890630599626e-06;7364309;0.0003100087190800929;1;0;Young +484;Bulgaria;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;3412;1;1.3002201853528657e-05;7364309;0.00046331570280388833;1;0;Young +485;Bulgaria;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;1563;1;5.956166910042582e-06;7364309;0.00021223987206403207;0;1;Old +486;Bulgaria;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;57;1;2.1721146121076594e-07;7364309;7.740033722104816e-06;0;1;Old +487;Bulgaria;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;761;1;2.8999635435332087e-06;7364309;0.0001033362396933643;1;0;Young +488;Bulgaria;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;928;1;3.5363550176068562e-06;7364309;0.0001260131805984784;1;0;Young +489;Bulgaria;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;359;1;1.3680511328888593e-06;7364309;4.874863344273034e-05;0;1;Old +490;Bulgaria;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +491;Bulgaria;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;1977;1;7.533808049362882e-06;7364309;0.00026845695909826704;1;0;Young +492;Bulgaria;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;8873;1;3.38125841284759e-05;7364309;0.0012048652494076498;1;0;Young +493;Bulgaria;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;5417;1;2.064271026980209e-05;7364309;0.0007355747837305578;0;1;Old +494;Bulgaria;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;65;1;2.4769728032806646e-07;7364309;8.826354244505493e-06;0;1;Old +495;Bulgaria;F;Technicians and associate professionals;Education   ;Y15-29;233;1;8.878994817913766e-07;7364309;3.163908521491969e-05;1;0;Young +496;Bulgaria;F;Technicians and associate professionals;Education   ;Y30-49;783;1;2.983799546105785e-06;7364309;0.00010632362112996616;1;0;Young +497;Bulgaria;F;Technicians and associate professionals;Education   ;Y50-64;641;1;2.4426762567737013e-06;7364309;8.704143185735417e-05;0;1;Old +498;Bulgaria;F;Technicians and associate professionals;Education   ;Y65-84;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;0;1;Old +499;Bulgaria;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;705;1;2.686562809712105e-06;7364309;9.573199603655957e-05;1;0;Young +500;Bulgaria;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;3222;1;1.227816364949277e-05;7364309;0.00043751559039687226;1;0;Young +501;Bulgaria;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2640;1;1.006032030870916e-05;7364309;0.00035848577239222306;0;1;Old +502;Bulgaria;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;152;1;5.792305632287092e-07;7364309;2.0640089925612843e-05;0;1;Old +503;Bulgaria;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;518;1;1.9739567878452064e-06;7364309;7.033925382544377e-05;1;0;Young +504;Bulgaria;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;1117;1;4.25658249425308e-06;7364309;0.0001516775029401944;1;0;Young +505;Bulgaria;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;594;1;2.263572069459561e-06;7364309;8.065929878825019e-05;0;1;Old +506;Bulgaria;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;28;1;1.067003669105517e-07;7364309;3.802121828402366e-06;0;1;Old +507;Bulgaria;F;Technicians and associate professionals;Other service activities   ;Y15-29;447;1;1.7033951431791645e-06;7364309;6.069815918913777e-05;1;0;Young +508;Bulgaria;F;Technicians and associate professionals;Other service activities   ;Y30-49;1153;1;4.393768680280932e-06;7364309;0.00015656594529099742;1;0;Young +509;Bulgaria;F;Technicians and associate professionals;Other service activities   ;Y50-64;623;1;2.3740831637597753e-06;7364309;8.459721068195264e-05;0;1;Old +510;Bulgaria;F;Technicians and associate professionals;Other service activities   ;Y65-84;39;1;1.4861836819683987e-07;7364309;5.2958125467032954e-06;0;1;Old +511;Bulgaria;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;1;0;Young +512;Bulgaria;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +513;Bulgaria;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;1;0;Young +514;Bulgaria;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;58;1;2.2102218860042852e-07;7364309;7.8758237874049e-06;1;0;Young +515;Bulgaria;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;28;1;1.067003669105517e-07;7364309;3.802121828402366e-06;0;1;Old +516;Bulgaria;F;Technicians and associate professionals;Not stated   ;Y15-29;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;1;0;Young +517;Bulgaria;F;Technicians and associate professionals;Not stated   ;Y30-49;47;1;1.7910418731414036e-07;7364309;6.3821330691039714e-06;1;0;Young +518;Bulgaria;F;Technicians and associate professionals;Not stated   ;Y50-64;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;0;1;Old +519;Bulgaria;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;510;1;1.943470968727906e-06;7364309;6.925293330304309e-05;1;0;Young +520;Bulgaria;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;1821;1;6.939334576575523e-06;7364309;0.0002472737089114539;1;0;Young +521;Bulgaria;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;1699;1;6.47442583503669e-06;7364309;0.00023070732094484356;0;1;Old +522;Bulgaria;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;64;1;2.4388655293840386e-07;7364309;8.690564179205408e-06;0;1;Old +523;Bulgaria;F;Clerical support workers;Mining and quarrying   ;Y15-29;97;1;3.6964055679726836e-07;7364309;1.3171636334108197e-05;1;0;Young +524;Bulgaria;F;Clerical support workers;Mining and quarrying   ;Y30-49;496;1;1.89012078527263e-06;7364309;6.735187238884191e-05;1;0;Young +525;Bulgaria;F;Clerical support workers;Mining and quarrying   ;Y50-64;375;1;1.4290227711234603e-06;7364309;5.0921274487531685e-05;0;1;Old +526;Bulgaria;F;Clerical support workers;Mining and quarrying   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +527;Bulgaria;F;Clerical support workers;Manufacturing   ;Y15-29;3805;1;1.4499817717666043e-05;7364309;0.0005166811984668215;1;0;Young +528;Bulgaria;F;Clerical support workers;Manufacturing   ;Y30-49;12595;1;4.799611147279995e-05;7364309;0.0017102758724545644;1;0;Young +529;Bulgaria;F;Clerical support workers;Manufacturing   ;Y50-64;6361;1;2.4240036925643548e-05;7364309;0.0008637606053738375;0;1;Old +530;Bulgaria;F;Clerical support workers;Manufacturing   ;Y65-84;139;1;5.296911071630959e-07;7364309;1.8874819076711745e-05;0;1;Old +531;Bulgaria;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;196;1;7.469025683738619e-07;7364309;2.6614852798816563e-05;1;0;Young +532;Bulgaria;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1039;1;3.959345757859401e-06;7364309;0.0001410858778467878;1;0;Young +533;Bulgaria;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;663;1;2.5265122593462776e-06;7364309;9.002881329395602e-05;0;1;Old +534;Bulgaria;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +535;Bulgaria;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;243;1;9.260067556880022e-07;7364309;3.299698586792053e-05;1;0;Young +536;Bulgaria;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1393;1;5.308343253799947e-06;7364309;0.00018915556096301772;1;0;Young +537;Bulgaria;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1104;1;4.207043038187467e-06;7364309;0.0001499122320912933;0;1;Old +538;Bulgaria;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +539;Bulgaria;F;Clerical support workers;Construction   ;Y15-29;2473;1;9.423928834635512e-06;7364309;0.000335808831487109;1;0;Young +540;Bulgaria;F;Clerical support workers;Construction   ;Y30-49;4922;1;1.8756400211919124e-05;7364309;0.0006683587014070159;1;0;Young +541;Bulgaria;F;Clerical support workers;Construction   ;Y50-64;2216;1;8.444571895492234e-06;7364309;0.00030091078470498723;0;1;Old +542;Bulgaria;F;Clerical support workers;Construction   ;Y65-84;77;1;2.9342600900401714e-07;7364309;1.0455835028106506e-05;0;1;Old +543;Bulgaria;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;8798;1;3.3526779574251206e-05;7364309;0.0011946809945101436;1;0;Young +544;Bulgaria;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;17365;1;6.617328112149036e-05;7364309;0.0023579944839359672;1;0;Young +545;Bulgaria;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5011;1;1.909555494959909e-05;7364309;0.0006804440172187234;0;1;Old +546;Bulgaria;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;156;1;5.944734727873595e-07;7364309;2.1183250186813182e-05;0;1;Old +547;Bulgaria;F;Clerical support workers;Transportation and storage   ;Y15-29;2260;1;8.612243900637386e-06;7364309;0.000306885547578191;1;0;Young +548;Bulgaria;F;Clerical support workers;Transportation and storage   ;Y30-49;9860;1;3.7573772062072844e-05;7364309;0.0013388900438588331;1;0;Young +549;Bulgaria;F;Clerical support workers;Transportation and storage   ;Y50-64;6752;1;2.573003133500161e-05;7364309;0.0009168545209061706;0;1;Old +550;Bulgaria;F;Clerical support workers;Transportation and storage   ;Y65-84;77;1;2.9342600900401714e-07;7364309;1.0455835028106506e-05;0;1;Old +551;Bulgaria;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;3000;1;1.1432182168987682e-05;7364309;0.0004073701959002535;1;0;Young +552;Bulgaria;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;3541;1;1.3493785686795127e-05;7364309;0.0004808326212275992;1;0;Young +553;Bulgaria;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;1312;1;4.99967433523728e-06;7364309;0.00017815656567371087;0;1;Old +554;Bulgaria;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;29;1;1.1051109430021426e-07;7364309;3.93791189370245e-06;0;1;Old +555;Bulgaria;F;Clerical support workers;Information and communication   ;Y15-29;2812;1;1.071576541973112e-05;7364309;0.00038184166362383764;1;0;Young +556;Bulgaria;F;Clerical support workers;Information and communication   ;Y30-49;3356;1;1.2788801119707553e-05;7364309;0.0004557114591470836;1;0;Young +557;Bulgaria;F;Clerical support workers;Information and communication   ;Y50-64;1074;1;4.09272121649759e-06;7364309;0.00014583853013229076;0;1;Old +558;Bulgaria;F;Clerical support workers;Information and communication   ;Y65-84;46;1;1.7529345992447778e-07;7364309;6.246343003803887e-06;0;1;Old +559;Bulgaria;F;Clerical support workers;Financial and insurance activities   ;Y15-29;5025;1;1.9148905133054367e-05;7364309;0.0006823450781329246;1;0;Young +560;Bulgaria;F;Clerical support workers;Financial and insurance activities   ;Y30-49;7583;1;2.8896745795811195e-05;7364309;0.0010296960651705407;1;0;Young +561;Bulgaria;F;Clerical support workers;Financial and insurance activities   ;Y50-64;2420;1;9.221960282983397e-06;7364309;0.0003286119580262045;0;1;Old +562;Bulgaria;F;Clerical support workers;Financial and insurance activities   ;Y65-84;77;1;2.9342600900401714e-07;7364309;1.0455835028106506e-05;0;1;Old +563;Bulgaria;F;Clerical support workers;Real estate activities   ;Y15-29;979;1;3.7307021144796468e-06;7364309;0.00013293847392878273;1;0;Young +564;Bulgaria;F;Clerical support workers;Real estate activities   ;Y30-49;1896;1;7.225139130800215e-06;7364309;0.0002574579638089602;1;0;Young +565;Bulgaria;F;Clerical support workers;Real estate activities   ;Y50-64;1011;1;3.852645390948849e-06;7364309;0.00013728375601838543;0;1;Old +566;Bulgaria;F;Clerical support workers;Real estate activities   ;Y65-84;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;0;1;Old +567;Bulgaria;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;4354;1;1.6591907054590788e-05;7364309;0.000591229944316568;1;0;Young +568;Bulgaria;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;7591;1;2.8927231614928496e-05;7364309;0.0010307823856929414;1;0;Young +569;Bulgaria;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;3120;1;1.1889469455747189e-05;7364309;0.0004236650037362636;0;1;Old +570;Bulgaria;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;124;1;4.725301963181575e-07;7364309;1.6837968097210478e-05;0;1;Old +571;Bulgaria;F;Clerical support workers;Administrative and support service activities   ;Y15-29;2713;1;1.0338503408154527e-05;7364309;0.00036839844715912926;1;0;Young +572;Bulgaria;F;Clerical support workers;Administrative and support service activities   ;Y30-49;4435;1;1.6900575973153457e-05;7364309;0.0006022289396058748;1;0;Young +573;Bulgaria;F;Clerical support workers;Administrative and support service activities   ;Y50-64;1926;1;7.339460952490092e-06;7364309;0.00026153166576796275;0;1;Old +574;Bulgaria;F;Clerical support workers;Administrative and support service activities   ;Y65-84;111;1;4.2299074025254424e-07;7364309;1.507269724830938e-05;0;1;Old +575;Bulgaria;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2167;1;8.25784625339877e-06;7364309;0.0002942570715052831;1;0;Young +576;Bulgaria;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;13125;1;5.0015796989321105e-05;7364309;0.0017822446070636091;1;0;Young +577;Bulgaria;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;8470;1;3.2276860990441886e-05;7364309;0.0011501418530917157;0;1;Old +578;Bulgaria;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;102;1;3.886941937455812e-07;7364309;1.385058666060862e-05;0;1;Old +579;Bulgaria;F;Clerical support workers;Education   ;Y15-29;824;1;3.14003936908195e-06;7364309;0.00011189101380726963;1;0;Young +580;Bulgaria;F;Clerical support workers;Education   ;Y30-49;4470;1;1.7033951431791646e-05;7364309;0.0006069815918913777;1;0;Young +581;Bulgaria;F;Clerical support workers;Education   ;Y50-64;4398;1;1.6759579059735942e-05;7364309;0.0005972047071897716;0;1;Old +582;Bulgaria;F;Clerical support workers;Education   ;Y65-84;85;1;3.239118281213176e-07;7364309;1.1542155550507183e-05;0;1;Old +583;Bulgaria;F;Clerical support workers;Human health and social work activities   ;Y15-29;837;1;3.1895788251475634e-06;7364309;0.00011365628465617073;1;0;Young +584;Bulgaria;F;Clerical support workers;Human health and social work activities   ;Y30-49;3062;1;1.166844726714676e-05;7364309;0.0004157891799488587;1;0;Young +585;Bulgaria;F;Clerical support workers;Human health and social work activities   ;Y50-64;2345;1;8.936155728758704e-06;7364309;0.00031842770312869815;0;1;Old +586;Bulgaria;F;Clerical support workers;Human health and social work activities   ;Y65-84;85;1;3.239118281213176e-07;7364309;1.1542155550507183e-05;0;1;Old +587;Bulgaria;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2515;1;9.58397938500134e-06;7364309;0.00034151201422971255;1;0;Young +588;Bulgaria;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2220;1;8.459814805050884e-06;7364309;0.0003014539449661876;1;0;Young +589;Bulgaria;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;1096;1;4.176557219070166e-06;7364309;0.0001488259115688926;0;1;Old +590;Bulgaria;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;70;1;2.6675091727637925e-07;7364309;9.505304571005916e-06;0;1;Old +591;Bulgaria;F;Clerical support workers;Other service activities   ;Y15-29;1290;1;4.915838332664703e-06;7364309;0.000175169184237109;1;0;Young +592;Bulgaria;F;Clerical support workers;Other service activities   ;Y30-49;2767;1;1.0544282687196305e-05;7364309;0.0003757311106853338;1;0;Young +593;Bulgaria;F;Clerical support workers;Other service activities   ;Y50-64;1780;1;6.783094753599357e-06;7364309;0.00024170631623415042;0;1;Old +594;Bulgaria;F;Clerical support workers;Other service activities   ;Y65-84;123;1;4.6871946892849497e-07;7364309;1.6702178031910395e-05;0;1;Old +595;Bulgaria;F;Clerical support workers;Other service activities   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +596;Bulgaria;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;1;0;Young +597;Bulgaria;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;1;0;Young +598;Bulgaria;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;16;1;6.097163823460096e-08;7364309;2.172641044801352e-06;0;1;Old +599;Bulgaria;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;1;0;Young +600;Bulgaria;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;160;1;6.097163823460097e-07;7364309;2.172641044801352e-05;1;0;Young +601;Bulgaria;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;103;1;3.9250492113524375e-07;7364309;1.3986376725908704e-05;0;1;Old +602;Bulgaria;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;0;1;Old +603;Bulgaria;F;Clerical support workers;Not stated   ;Y15-29;107;1;4.07747830693894e-07;7364309;1.4529536987109041e-05;1;0;Young +604;Bulgaria;F;Clerical support workers;Not stated   ;Y30-49;271;1;1.032707122598554e-06;7364309;3.67991076963229e-05;1;0;Young +605;Bulgaria;F;Clerical support workers;Not stated   ;Y50-64;144;1;5.487447441114087e-07;7364309;1.955376940321217e-05;0;1;Old +606;Bulgaria;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;281;1;1.0708143964951796e-06;7364309;3.815700834932374e-05;1;0;Young +607;Bulgaria;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;975;1;3.7154592049209964e-06;7364309;0.00013239531366758238;1;0;Young +608;Bulgaria;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;691;1;2.633212626256829e-06;7364309;9.383093512235839e-05;0;1;Old +609;Bulgaria;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;28;1;1.067003669105517e-07;7364309;3.802121828402366e-06;0;1;Old +610;Bulgaria;F;Service and sales workers;Mining and quarrying   ;Y15-29;38;1;1.448076408071773e-07;7364309;5.160022481403211e-06;1;0;Young +611;Bulgaria;F;Service and sales workers;Mining and quarrying   ;Y30-49;183;1;6.973631123082485e-07;7364309;2.4849581949915464e-05;1;0;Young +612;Bulgaria;F;Service and sales workers;Mining and quarrying   ;Y50-64;153;1;5.830412906183718e-07;7364309;2.077587999091293e-05;0;1;Old +613;Bulgaria;F;Service and sales workers;Manufacturing   ;Y15-29;4180;1;1.5928840488789502e-05;7364309;0.0005676024729543533;1;0;Young +614;Bulgaria;F;Service and sales workers;Manufacturing   ;Y30-49;10119;1;3.856075045599545e-05;7364309;0.001374059670771555;1;0;Young +615;Bulgaria;F;Service and sales workers;Manufacturing   ;Y50-64;4190;1;1.5966947762686128e-05;7364309;0.000568960373607354;0;1;Old +616;Bulgaria;F;Service and sales workers;Manufacturing   ;Y65-84;124;1;4.725301963181575e-07;7364309;1.6837968097210478e-05;0;1;Old +617;Bulgaria;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;74;1;2.819938268350295e-07;7364309;1.0048464832206252e-05;1;0;Young +618;Bulgaria;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;240;1;9.145745735190145e-07;7364309;3.258961567202028e-05;1;0;Young +619;Bulgaria;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;156;1;5.944734727873595e-07;7364309;2.1183250186813182e-05;0;1;Old +620;Bulgaria;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;47;1;1.7910418731414036e-07;7364309;6.3821330691039714e-06;1;0;Young +621;Bulgaria;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;297;1;1.1317860347297806e-06;7364309;4.0329649394125096e-05;1;0;Young +622;Bulgaria;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;232;1;8.840887544017141e-07;7364309;3.15032951496196e-05;0;1;Old +623;Bulgaria;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +624;Bulgaria;F;Service and sales workers;Construction   ;Y15-29;961;1;3.662109021465721e-06;7364309;0.0001304942527533812;1;0;Young +625;Bulgaria;F;Service and sales workers;Construction   ;Y30-49;1722;1;6.562072564998929e-06;7364309;0.00023383049244674552;1;0;Young +626;Bulgaria;F;Service and sales workers;Construction   ;Y50-64;766;1;2.9190171804815213e-06;7364309;0.00010401519001986472;0;1;Old +627;Bulgaria;F;Service and sales workers;Construction   ;Y65-84;24;1;9.145745735190145e-08;7364309;3.258961567202028e-06;0;1;Old +628;Bulgaria;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;51028;1;0.00019445379723970115;7364309;0.006929095452132712;1;0;Young +629;Bulgaria;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;98626;1;0.0003758367995328597;7364309;0.013392430980286134;1;0;Young +630;Bulgaria;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;33438;1;0.0001274231024555367;7364309;0.004540548203504226;0;1;Old +631;Bulgaria;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2014;1;7.674804962780397e-06;7364309;0.0002734811915143702;0;1;Old +632;Bulgaria;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;0;1;Old +633;Bulgaria;F;Service and sales workers;Transportation and storage   ;Y15-29;1387;1;5.285478889461971e-06;7364309;0.0001883408205712172;1;0;Young +634;Bulgaria;F;Service and sales workers;Transportation and storage   ;Y30-49;4300;1;1.638612777554901e-05;7364309;0.0005838972807903634;1;0;Young +635;Bulgaria;F;Service and sales workers;Transportation and storage   ;Y50-64;2624;1;9.99934867047456e-06;7364309;0.00035631313134742174;0;1;Old +636;Bulgaria;F;Service and sales workers;Transportation and storage   ;Y65-84;57;1;2.1721146121076594e-07;7364309;7.740033722104816e-06;0;1;Old +637;Bulgaria;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;24414;1;9.303509849122175e-05;7364309;0.003315178654236263;1;0;Young +638;Bulgaria;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;28187;1;0.0001074129729324186;7364309;0.003827514570613482;1;0;Young +639;Bulgaria;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;10661;1;4.062616470119256e-05;7364309;0.0014476578861642008;0;1;Old +640;Bulgaria;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;262;1;9.984105760915908e-07;7364309;3.5576997108622137e-05;0;1;Old +641;Bulgaria;F;Service and sales workers;Information and communication   ;Y15-29;1547;1;5.8951952718079816e-06;7364309;0.00021006723101923072;1;0;Young +642;Bulgaria;F;Service and sales workers;Information and communication   ;Y30-49;1542;1;5.8761416348596686e-06;7364309;0.0002093882806927303;1;0;Young +643;Bulgaria;F;Service and sales workers;Information and communication   ;Y50-64;407;1;1.5509660475926622e-06;7364309;5.526655657713439e-05;0;1;Old +644;Bulgaria;F;Service and sales workers;Information and communication   ;Y65-84;26;1;9.907891213122657e-08;7364309;3.5305416978021972e-06;0;1;Old +645;Bulgaria;F;Service and sales workers;Financial and insurance activities   ;Y15-29;905;1;3.4487082876446173e-06;7364309;0.00012289000909657648;1;0;Young +646;Bulgaria;F;Service and sales workers;Financial and insurance activities   ;Y30-49;1329;1;5.064456700861543e-06;7364309;0.0001804649967838123;1;0;Young +647;Bulgaria;F;Service and sales workers;Financial and insurance activities   ;Y50-64;467;1;1.7796096909724157e-06;7364309;6.341396049513946e-05;0;1;Old +648;Bulgaria;F;Service and sales workers;Financial and insurance activities   ;Y65-84;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;0;1;Old +649;Bulgaria;F;Service and sales workers;Real estate activities   ;Y15-29;567;1;2.1606824299386718e-06;7364309;7.699296702514792e-05;1;0;Young +650;Bulgaria;F;Service and sales workers;Real estate activities   ;Y30-49;987;1;3.761187933596947e-06;7364309;0.0001340247944511834;1;0;Young +651;Bulgaria;F;Service and sales workers;Real estate activities   ;Y50-64;568;1;2.1644931573283344e-06;7364309;7.7128757090448e-05;0;1;Old +652;Bulgaria;F;Service and sales workers;Real estate activities   ;Y65-84;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;0;1;Old +653;Bulgaria;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;1099;1;4.187989401239154e-06;7364309;0.00014923328176479287;1;0;Young +654;Bulgaria;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;2520;1;9.603033021949652e-06;7364309;0.0003421909645562129;1;0;Young +655;Bulgaria;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;1500;1;5.716091084493841e-06;7364309;0.00020368509795012674;0;1;Old +656;Bulgaria;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;41;1;1.56239822976165e-07;7364309;5.567392677303465e-06;0;1;Old +657;Bulgaria;F;Service and sales workers;Administrative and support service activities   ;Y15-29;1645;1;6.268646555994912e-06;7364309;0.000223374657418639;1;0;Young +658;Bulgaria;F;Service and sales workers;Administrative and support service activities   ;Y30-49;3709;1;1.4133987888258437e-05;7364309;0.0005036453521980134;1;0;Young +659;Bulgaria;F;Service and sales workers;Administrative and support service activities   ;Y50-64;1489;1;5.674173083207552e-06;7364309;0.00020219140723182582;0;1;Old +660;Bulgaria;F;Service and sales workers;Administrative and support service activities   ;Y65-84;76;1;2.896152816143546e-07;7364309;1.0320044962806422e-05;0;1;Old +661;Bulgaria;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;1225;1;4.668141052336637e-06;7364309;0.00016634282999260352;1;0;Young +662;Bulgaria;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;7760;1;2.957124454378147e-05;7364309;0.0010537309067286558;1;0;Young +663;Bulgaria;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;6427;1;2.4491544933361276e-05;7364309;0.0008727227496836431;0;1;Old +664;Bulgaria;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;124;1;4.725301963181575e-07;7364309;1.6837968097210478e-05;0;1;Old +665;Bulgaria;F;Service and sales workers;Education   ;Y15-29;723;1;2.755155902726031e-06;7364309;9.81762172119611e-05;1;0;Young +666;Bulgaria;F;Service and sales workers;Education   ;Y30-49;6928;1;2.640071935558222e-05;7364309;0.0009407535723989854;1;0;Young +667;Bulgaria;F;Service and sales workers;Education   ;Y50-64;7184;1;2.7376265567335836e-05;7364309;0.0009755158291158071;0;1;Old +668;Bulgaria;F;Service and sales workers;Education   ;Y65-84;184;1;7.011738396979111e-07;7364309;2.4985372015215547e-05;0;1;Old +669;Bulgaria;F;Service and sales workers;Human health and social work activities   ;Y15-29;1120;1;4.268014676422068e-06;7364309;0.00015208487313609465;1;0;Young +670;Bulgaria;F;Service and sales workers;Human health and social work activities   ;Y30-49;11466;1;4.3693800249870916e-05;7364309;0.0015569688887307688;1;0;Young +671;Bulgaria;F;Service and sales workers;Human health and social work activities   ;Y50-64;12553;1;4.7836060922434124e-05;7364309;0.0017045726897119608;0;1;Old +672;Bulgaria;F;Service and sales workers;Human health and social work activities   ;Y65-84;306;1;1.1660825812367436e-06;7364309;4.155175998182586e-05;0;1;Old +673;Bulgaria;F;Service and sales workers;Human health and social work activities   ;Y_GE85;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +674;Bulgaria;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;1876;1;7.148924583006964e-06;7364309;0.00025474216250295854;1;0;Young +675;Bulgaria;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;1967;1;7.495700775466257e-06;7364309;0.00026709905844526623;1;0;Young +676;Bulgaria;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;1232;1;4.694816144064274e-06;7364309;0.0001672933604497041;0;1;Old +677;Bulgaria;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;52;1;1.9815782426245315e-07;7364309;7.0610833956043945e-06;0;1;Old +678;Bulgaria;F;Service and sales workers;Other service activities   ;Y15-29;3899;1;1.4858026092294323e-05;7364309;0.0005294454646050295;1;0;Young +679;Bulgaria;F;Service and sales workers;Other service activities   ;Y30-49;8853;1;3.373636958068265e-05;7364309;0.001202149448101648;1;0;Young +680;Bulgaria;F;Service and sales workers;Other service activities   ;Y50-64;3399;1;1.2952662397463043e-05;7364309;0.0004615504319549872;0;1;Old +681;Bulgaria;F;Service and sales workers;Other service activities   ;Y65-84;274;1;1.0441393047675416e-06;7364309;3.720647789222315e-05;0;1;Old +682;Bulgaria;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;89;1;3.3915473767996787e-07;7364309;1.208531581170752e-05;1;0;Young +683;Bulgaria;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;455;1;1.7338809622964651e-06;7364309;6.178447971153845e-05;1;0;Young +684;Bulgaria;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;377;1;1.4366442259027852e-06;7364309;5.119285461813186e-05;0;1;Old +685;Bulgaria;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;41;1;1.56239822976165e-07;7364309;5.567392677303465e-06;0;1;Old +686;Bulgaria;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;1;0;Young +687;Bulgaria;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;72;1;2.7437237205570434e-07;7364309;9.776884701606085e-06;1;0;Young +688;Bulgaria;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;48;1;1.829149147038029e-07;7364309;6.517923134404056e-06;0;1;Old +689;Bulgaria;F;Service and sales workers;Not stated   ;Y15-29;272;1;1.0365178499882164e-06;7364309;3.6934897761622986e-05;1;0;Young +690;Bulgaria;F;Service and sales workers;Not stated   ;Y30-49;562;1;2.141628792990359e-06;7364309;7.631401669864748e-05;1;0;Young +691;Bulgaria;F;Service and sales workers;Not stated   ;Y50-64;259;1;9.869783939226032e-07;7364309;3.5169626912721884e-05;0;1;Old +692;Bulgaria;F;Service and sales workers;Not stated   ;Y65-84;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +693;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;4259;1;1.6229887952572846e-05;7364309;0.0005783298881130599;1;0;Young +694;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;16946;1;6.457658634522175e-05;7364309;0.0023010984465752318;1;0;Young +695;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;12169;1;4.63727416048037e-05;7364309;0.0016524293046367284;0;1;Old +696;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;625;1;2.3817046185391005e-06;7364309;8.486879081255281e-05;0;1;Old +697;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;0;1;Old +698;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +699;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;1;0;Young +700;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +701;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;137;1;5.220696523837708e-07;7364309;1.8603238946111576e-05;1;0;Young +702;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;552;1;2.1035215190937336e-06;7364309;7.495611604564665e-05;1;0;Young +703;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;285;1;1.0860573060538298e-06;7364309;3.870016861052408e-05;0;1;Old +704;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +705;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +706;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +707;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +708;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;43;1;1.638612777554901e-07;7364309;5.838972807903634e-06;1;0;Young +709;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;0;1;Old +710;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +711;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;1;0;Young +712;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;0;1;Old +713;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;64;1;2.4388655293840386e-07;7364309;8.690564179205408e-06;1;0;Young +714;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;225;1;8.574136626740762e-07;7364309;3.055276469251901e-05;1;0;Young +715;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;118;1;4.496658319801821e-07;7364309;1.602322770540997e-05;0;1;Old +716;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +717;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +718;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;14;1;5.335018345527585e-08;7364309;1.901060914201183e-06;1;0;Young +719;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +720;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;1;0;Young +721;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;66;1;2.51508007717729e-07;7364309;8.962144309805577e-06;1;0;Young +722;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;0;1;Old +723;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +724;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +725;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;1;0;Young +726;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +727;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;14;1;5.335018345527585e-08;7364309;1.901060914201183e-06;1;0;Young +728;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +729;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;1;0;Young +730;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;104;1;3.963156485249063e-07;7364309;1.4122166791208789e-05;1;0;Young +731;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;125;1;4.7634092370782007e-07;7364309;1.6973758162510564e-05;0;1;Old +732;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +733;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;30;1;1.1432182168987682e-07;7364309;4.073701959002535e-06;1;0;Young +734;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;149;1;5.677983810597215e-07;7364309;2.023271972971259e-05;1;0;Young +735;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;118;1;4.496658319801821e-07;7364309;1.602322770540997e-05;0;1;Old +736;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +737;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;1;0;Young +738;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;128;1;4.877731058768077e-07;7364309;1.7381128358410816e-05;1;0;Young +739;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;122;1;4.6490874153883237e-07;7364309;1.656638796661031e-05;0;1;Old +740;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +741;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;1;0;Young +742;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;0;1;Old +743;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;1;0;Young +744;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;0;1;Old +745;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;1;0;Young +746;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;0;1;Old +747;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;1;0;Young +748;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;1;0;Young +749;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;0;1;Old +750;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;1;0;Young +751;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;98;1;3.7345128418693096e-07;7364309;1.3307426399408281e-05;1;0;Young +752;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;86;1;3.277225555109802e-07;7364309;1.1677945615807268e-05;0;1;Old +753;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;0;1;Old +754;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;1;0;Young +755;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +756;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;1;0;Young +757;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;1;0;Young +758;Bulgaria;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;38;1;1.448076408071773e-07;7364309;5.160022481403211e-06;0;1;Old +759;Bulgaria;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;56;1;2.134007338211034e-07;7364309;7.604243656804732e-06;1;0;Young +760;Bulgaria;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;319;1;1.2156220373023567e-06;7364309;4.3317030830726954e-05;1;0;Young +761;Bulgaria;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;204;1;7.773883874911624e-07;7364309;2.770117332121724e-05;0;1;Old +762;Bulgaria;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +763;Bulgaria;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;1;0;Young +764;Bulgaria;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;240;1;9.145745735190145e-07;7364309;3.258961567202028e-05;1;0;Young +765;Bulgaria;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;122;1;4.6490874153883237e-07;7364309;1.656638796661031e-05;0;1;Old +766;Bulgaria;F;Craft and related trades workers;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +767;Bulgaria;F;Craft and related trades workers;Manufacturing   ;Y15-29;12926;1;4.925746223877826e-05;7364309;0.0017552223840688922;1;0;Young +768;Bulgaria;F;Craft and related trades workers;Manufacturing   ;Y30-49;57235;1;0.00021810698214733666;7364309;0.007771944387450337;1;0;Young +769;Bulgaria;F;Craft and related trades workers;Manufacturing   ;Y50-64;23953;1;9.127835316458731e-05;7364309;0.0032525794341329243;0;1;Old +770;Bulgaria;F;Craft and related trades workers;Manufacturing   ;Y65-84;360;1;1.3718618602785219e-06;7364309;4.888442350803042e-05;0;1;Old +771;Bulgaria;F;Craft and related trades workers;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +772;Bulgaria;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;1;0;Young +773;Bulgaria;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;384;1;1.4633193176304232e-06;7364309;5.214338507523245e-05;1;0;Young +774;Bulgaria;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;160;1;6.097163823460097e-07;7364309;2.172641044801352e-05;0;1;Old +775;Bulgaria;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;1;0;Young +776;Bulgaria;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;128;1;4.877731058768077e-07;7364309;1.7381128358410816e-05;1;0;Young +777;Bulgaria;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;84;1;3.201011007316551e-07;7364309;1.1406365485207099e-05;0;1;Old +778;Bulgaria;F;Craft and related trades workers;Construction   ;Y15-29;238;1;9.069531187396895e-07;7364309;3.231803554142011e-05;1;0;Young +779;Bulgaria;F;Craft and related trades workers;Construction   ;Y30-49;963;1;3.669730476245046e-06;7364309;0.00013076583288398137;1;0;Young +780;Bulgaria;F;Craft and related trades workers;Construction   ;Y50-64;562;1;2.141628792990359e-06;7364309;7.631401669864748e-05;0;1;Old +781;Bulgaria;F;Craft and related trades workers;Construction   ;Y65-84;33;1;1.257540038588645e-07;7364309;4.481072154902789e-06;0;1;Old +782;Bulgaria;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;695;1;2.6484555358154796e-06;7364309;9.437409538355873e-05;1;0;Young +783;Bulgaria;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2807;1;1.0696711782782807e-05;7364309;0.0003811627132973372;1;0;Young +784;Bulgaria;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1014;1;3.8640775731178365e-06;7364309;0.0001376911262142857;0;1;Old +785;Bulgaria;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;24;1;9.145745735190145e-08;7364309;3.258961567202028e-06;0;1;Old +786;Bulgaria;F;Craft and related trades workers;Transportation and storage   ;Y15-29;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;1;0;Young +787;Bulgaria;F;Craft and related trades workers;Transportation and storage   ;Y30-49;221;1;8.421707531154259e-07;7364309;3.0009604431318676e-05;1;0;Young +788;Bulgaria;F;Craft and related trades workers;Transportation and storage   ;Y50-64;156;1;5.944734727873595e-07;7364309;2.1183250186813182e-05;0;1;Old +789;Bulgaria;F;Craft and related trades workers;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +790;Bulgaria;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;276;1;1.0517607595468668e-06;7364309;3.7478058022823324e-05;1;0;Young +791;Bulgaria;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;809;1;3.0828784582370114e-06;7364309;0.00010985416282776837;1;0;Young +792;Bulgaria;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;337;1;1.284215130316283e-06;7364309;4.576125200612848e-05;0;1;Old +793;Bulgaria;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +794;Bulgaria;F;Craft and related trades workers;Information and communication   ;Y15-29;74;1;2.819938268350295e-07;7364309;1.0048464832206252e-05;1;0;Young +795;Bulgaria;F;Craft and related trades workers;Information and communication   ;Y30-49;280;1;1.067003669105517e-06;7364309;3.802121828402366e-05;1;0;Young +796;Bulgaria;F;Craft and related trades workers;Information and communication   ;Y50-64;140;1;5.335018345527585e-07;7364309;1.901060914201183e-05;0;1;Old +797;Bulgaria;F;Craft and related trades workers;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +798;Bulgaria;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;1;0;Young +799;Bulgaria;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;1;0;Young +800;Bulgaria;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +801;Bulgaria;F;Craft and related trades workers;Real estate activities   ;Y15-29;14;1;5.335018345527585e-08;7364309;1.901060914201183e-06;1;0;Young +802;Bulgaria;F;Craft and related trades workers;Real estate activities   ;Y30-49;77;1;2.9342600900401714e-07;7364309;1.0455835028106506e-05;1;0;Young +803;Bulgaria;F;Craft and related trades workers;Real estate activities   ;Y50-64;85;1;3.239118281213176e-07;7364309;1.1542155550507183e-05;0;1;Old +804;Bulgaria;F;Craft and related trades workers;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +805;Bulgaria;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;168;1;6.402022014633102e-07;7364309;2.2812730970414197e-05;1;0;Young +806;Bulgaria;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;529;1;2.0158747891314946e-06;7364309;7.18329445437447e-05;1;0;Young +807;Bulgaria;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;224;1;8.536029352844136e-07;7364309;3.0416974627218928e-05;0;1;Old +808;Bulgaria;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;0;1;Old +809;Bulgaria;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;63;1;2.400758255487413e-07;7364309;8.554774113905323e-06;1;0;Young +810;Bulgaria;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;188;1;7.164167492565614e-07;7364309;2.5528532276415886e-05;1;0;Young +811;Bulgaria;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;84;1;3.201011007316551e-07;7364309;1.1406365485207099e-05;0;1;Old +812;Bulgaria;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;1;0;Young +813;Bulgaria;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;205;1;7.811991148808249e-07;7364309;2.7836963386517322e-05;1;0;Young +814;Bulgaria;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;160;1;6.097163823460097e-07;7364309;2.172641044801352e-05;0;1;Old +815;Bulgaria;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +816;Bulgaria;F;Craft and related trades workers;Education   ;Y15-29;14;1;5.335018345527585e-08;7364309;1.901060914201183e-06;1;0;Young +817;Bulgaria;F;Craft and related trades workers;Education   ;Y30-49;127;1;4.839623784871452e-07;7364309;1.7245338293110733e-05;1;0;Young +818;Bulgaria;F;Craft and related trades workers;Education   ;Y50-64;151;1;5.754198358390467e-07;7364309;2.050429986031276e-05;0;1;Old +819;Bulgaria;F;Craft and related trades workers;Education   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +820;Bulgaria;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;1;0;Young +821;Bulgaria;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;97;1;3.6964055679726836e-07;7364309;1.3171636334108197e-05;1;0;Young +822;Bulgaria;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;115;1;4.382336498111945e-07;7364309;1.5615857509509718e-05;0;1;Old +823;Bulgaria;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +824;Bulgaria;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;33;1;1.257540038588645e-07;7364309;4.481072154902789e-06;1;0;Young +825;Bulgaria;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;184;1;7.011738396979111e-07;7364309;2.4985372015215547e-05;1;0;Young +826;Bulgaria;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;101;1;3.848834663559186e-07;7364309;1.3714796595308535e-05;0;1;Old +827;Bulgaria;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +828;Bulgaria;F;Craft and related trades workers;Other service activities   ;Y15-29;245;1;9.336282104673273e-07;7364309;3.32685659985207e-05;1;0;Young +829;Bulgaria;F;Craft and related trades workers;Other service activities   ;Y30-49;1393;1;5.308343253799947e-06;7364309;0.00018915556096301772;1;0;Young +830;Bulgaria;F;Craft and related trades workers;Other service activities   ;Y50-64;567;1;2.1606824299386718e-06;7364309;7.699296702514792e-05;0;1;Old +831;Bulgaria;F;Craft and related trades workers;Other service activities   ;Y65-84;52;1;1.9815782426245315e-07;7364309;7.0610833956043945e-06;0;1;Old +832;Bulgaria;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;1;0;Young +833;Bulgaria;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;54;1;2.0577927904177827e-07;7364309;7.332663526204563e-06;1;0;Young +834;Bulgaria;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;41;1;1.56239822976165e-07;7364309;5.567392677303465e-06;0;1;Old +835;Bulgaria;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +836;Bulgaria;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +837;Bulgaria;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +838;Bulgaria;F;Craft and related trades workers;Not stated   ;Y15-29;29;1;1.1051109430021426e-07;7364309;3.93791189370245e-06;1;0;Young +839;Bulgaria;F;Craft and related trades workers;Not stated   ;Y30-49;130;1;4.953945606561329e-07;7364309;1.7652708489010985e-05;1;0;Young +840;Bulgaria;F;Craft and related trades workers;Not stated   ;Y50-64;78;1;2.9723673639367974e-07;7364309;1.0591625093406591e-05;0;1;Old +841;Bulgaria;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;1;0;Young +842;Bulgaria;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;135;1;5.144481976044457e-07;7364309;1.8331658815511407e-05;1;0;Young +843;Bulgaria;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;61;1;2.3245437076941619e-07;7364309;8.283193983305154e-06;0;1;Old +844;Bulgaria;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;1;0;Young +845;Bulgaria;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;611;1;2.3283544350838245e-06;7364309;8.296772989835163e-05;1;0;Young +846;Bulgaria;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;382;1;1.455697862851098e-06;7364309;5.187180494463228e-05;0;1;Old +847;Bulgaria;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +848;Bulgaria;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;12220;1;4.656708870167649e-05;7364309;0.0016593545979670327;1;0;Young +849;Bulgaria;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;48168;1;0.00018355511690526622;7364309;0.006540735865374471;1;0;Young +850;Bulgaria;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;18922;1;7.210658366719497e-05;7364309;0.002569419615608199;0;1;Old +851;Bulgaria;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;219;1;8.345492983361008e-07;7364309;2.9738024300718507e-05;0;1;Old +852;Bulgaria;F;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +853;Bulgaria;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;1;0;Young +854;Bulgaria;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;433;1;1.6500449597238888e-06;7364309;5.879709827493659e-05;1;0;Young +855;Bulgaria;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;201;1;7.659562053221747e-07;7364309;2.7293803125316984e-05;0;1;Old +856;Bulgaria;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +857;Bulgaria;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;1;0;Young +858;Bulgaria;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;117;1;4.458551045905196e-07;7364309;1.5887437640109887e-05;1;0;Young +859;Bulgaria;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;55;1;2.0959000643144082e-07;7364309;7.4684535915046475e-06;0;1;Old +860;Bulgaria;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;53;1;2.019685516521157e-07;7364309;7.196873460904478e-06;1;0;Young +861;Bulgaria;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;262;1;9.984105760915908e-07;7364309;3.5576997108622137e-05;1;0;Young +862;Bulgaria;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;228;1;8.688458448430638e-07;7364309;3.096013488841926e-05;0;1;Old +863;Bulgaria;F;Plant and machine operators, and assemblers;Construction   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +864;Bulgaria;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;468;1;1.7834204183620783e-06;7364309;6.354975056043955e-05;1;0;Young +865;Bulgaria;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1504;1;5.731333994052491e-06;7364309;0.00020422825821132709;1;0;Young +866;Bulgaria;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;534;1;2.0349284260798072e-06;7364309;7.251189487024512e-05;0;1;Old +867;Bulgaria;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +868;Bulgaria;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;121;1;4.610980141491698e-07;7364309;1.6430597901310226e-05;1;0;Young +869;Bulgaria;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;1213;1;4.622412323660686e-06;7364309;0.0001647133492090025;1;0;Young +870;Bulgaria;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;716;1;2.7284808109983934e-06;7364309;9.72256867548605e-05;0;1;Old +871;Bulgaria;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;16;1;6.097163823460096e-08;7364309;2.172641044801352e-06;0;1;Old +872;Bulgaria;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;81;1;3.086689185626674e-07;7364309;1.0998995289306845e-05;1;0;Young +873;Bulgaria;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;179;1;6.821202027495983e-07;7364309;2.4306421688715126e-05;1;0;Young +874;Bulgaria;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;82;1;3.1247964595233e-07;7364309;1.113478535460693e-05;0;1;Old +875;Bulgaria;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;1;0;Young +876;Bulgaria;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;90;1;3.4296546506963047e-07;7364309;1.2221105877007604e-05;1;0;Young +877;Bulgaria;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;47;1;1.7910418731414036e-07;7364309;6.3821330691039714e-06;0;1;Old +878;Bulgaria;F;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +879;Bulgaria;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;1;0;Young +880;Bulgaria;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;1;0;Young +881;Bulgaria;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +882;Bulgaria;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +883;Bulgaria;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;52;1;1.9815782426245315e-07;7364309;7.0610833956043945e-06;1;0;Young +884;Bulgaria;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;53;1;2.019685516521157e-07;7364309;7.196873460904478e-06;0;1;Old +885;Bulgaria;F;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +886;Bulgaria;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;61;1;2.3245437076941619e-07;7364309;8.283193983305154e-06;1;0;Young +887;Bulgaria;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;171;1;6.516343836322978e-07;7364309;2.322010116631445e-05;1;0;Young +888;Bulgaria;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;62;1;2.3626509815907876e-07;7364309;8.418984048605239e-06;0;1;Old +889;Bulgaria;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +890;Bulgaria;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;71;1;2.705616446660418e-07;7364309;9.641094636306e-06;1;0;Young +891;Bulgaria;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;199;1;7.583347505428495e-07;7364309;2.7022222994716815e-05;1;0;Young +892;Bulgaria;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;73;1;2.7818309944536694e-07;7364309;9.912674766906168e-06;0;1;Old +893;Bulgaria;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;1;0;Young +894;Bulgaria;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;67;1;2.5531873510739155e-07;7364309;9.097934375105662e-06;1;0;Young +895;Bulgaria;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;78;1;2.9723673639367974e-07;7364309;1.0591625093406591e-05;0;1;Old +896;Bulgaria;F;Plant and machine operators, and assemblers;Education   ;Y15-29;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;1;0;Young +897;Bulgaria;F;Plant and machine operators, and assemblers;Education   ;Y30-49;46;1;1.7529345992447778e-07;7364309;6.246343003803887e-06;1;0;Young +898;Bulgaria;F;Plant and machine operators, and assemblers;Education   ;Y50-64;80;1;3.0485819117300483e-07;7364309;1.086320522400676e-05;0;1;Old +899;Bulgaria;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;1;0;Young +900;Bulgaria;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;125;1;4.7634092370782007e-07;7364309;1.6973758162510564e-05;1;0;Young +901;Bulgaria;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;94;1;3.582083746282807e-07;7364309;1.2764266138207943e-05;0;1;Old +902;Bulgaria;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;1;0;Young +903;Bulgaria;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;1;0;Young +904;Bulgaria;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;0;1;Old +905;Bulgaria;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;84;1;3.201011007316551e-07;7364309;1.1406365485207099e-05;1;0;Young +906;Bulgaria;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;387;1;1.4747514997994108e-06;7364309;5.25507552711327e-05;1;0;Young +907;Bulgaria;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;226;1;8.612243900637387e-07;7364309;3.06885547578191e-05;0;1;Old +908;Bulgaria;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;0;1;Old +909;Bulgaria;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;1;0;Young +910;Bulgaria;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +911;Bulgaria;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +912;Bulgaria;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +913;Bulgaria;F;Plant and machine operators, and assemblers;Not stated   ;Y15-29;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;1;0;Young +914;Bulgaria;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;93;1;3.543976472386181e-07;7364309;1.2628476072907858e-05;1;0;Young +915;Bulgaria;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;54;1;2.0577927904177827e-07;7364309;7.332663526204563e-06;0;1;Old +916;Bulgaria;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;1581;1;6.024760003056508e-06;7364309;0.0002146840932394336;1;0;Young +917;Bulgaria;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;5912;1;2.252902032768506e-05;7364309;0.0008027908660540996;1;0;Young +918;Bulgaria;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;3858;1;1.4701786269318158e-05;7364309;0.000523878071927726;0;1;Old +919;Bulgaria;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;157;1;5.98284200177022e-07;7364309;2.1319040252113268e-05;0;1;Old +920;Bulgaria;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +921;Bulgaria;F;Elementary occupations;Mining and quarrying   ;Y15-29;47;1;1.7910418731414036e-07;7364309;6.3821330691039714e-06;1;0;Young +922;Bulgaria;F;Elementary occupations;Mining and quarrying   ;Y30-49;531;1;2.02349624391082e-06;7364309;7.210452467434488e-05;1;0;Young +923;Bulgaria;F;Elementary occupations;Mining and quarrying   ;Y50-64;448;1;1.7072058705688271e-06;7364309;6.0833949254437856e-05;0;1;Old +924;Bulgaria;F;Elementary occupations;Mining and quarrying   ;Y65-84;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;0;1;Old +925;Bulgaria;F;Elementary occupations;Manufacturing   ;Y15-29;7772;1;2.961697327245742e-05;7364309;0.0010553603875122569;1;0;Young +926;Bulgaria;F;Elementary occupations;Manufacturing   ;Y30-49;27960;1;0.00010654793781496519;7364309;0.0037966902257903627;1;0;Young +927;Bulgaria;F;Elementary occupations;Manufacturing   ;Y50-64;14878;1;5.6696002103399575e-05;7364309;0.0020202845915346574;0;1;Old +928;Bulgaria;F;Elementary occupations;Manufacturing   ;Y65-84;318;1;1.2118113099126943e-06;7364309;4.3181240765426875e-05;0;1;Old +929;Bulgaria;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;38;1;1.448076408071773e-07;7364309;5.160022481403211e-06;1;0;Young +930;Bulgaria;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;483;1;1.8405813292070167e-06;7364309;6.558660153994082e-05;1;0;Young +931;Bulgaria;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;443;1;1.6881522336205144e-06;7364309;6.015499892793743e-05;0;1;Old +932;Bulgaria;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +933;Bulgaria;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;639;1;2.435054801994376e-06;7364309;8.6769851726754e-05;1;0;Young +934;Bulgaria;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3711;1;1.4141609343037762e-05;7364309;0.0005039169323286136;1;0;Young +935;Bulgaria;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2137;1;8.143524431708891e-06;7364309;0.0002901833695462806;0;1;Old +936;Bulgaria;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;0;1;Old +937;Bulgaria;F;Elementary occupations;Construction   ;Y15-29;452;1;1.7224487801274773e-06;7364309;6.13771095156382e-05;1;0;Young +938;Bulgaria;F;Elementary occupations;Construction   ;Y30-49;1694;1;6.455372198088378e-06;7364309;0.00023002837061834316;1;0;Young +939;Bulgaria;F;Elementary occupations;Construction   ;Y50-64;1209;1;4.607169414102036e-06;7364309;0.00016417018894780217;0;1;Old +940;Bulgaria;F;Elementary occupations;Construction   ;Y65-84;69;1;2.629401898867167e-07;7364309;9.369514505705831e-06;0;1;Old +941;Bulgaria;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3057;1;1.1649393630198447e-05;7364309;0.00041511022962235835;1;0;Young +942;Bulgaria;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8151;1;3.106123895313953e-05;7364309;0.0011068248222609889;1;0;Young +943;Bulgaria;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4681;1;1.7838014911010446e-05;7364309;0.0006356332956696956;0;1;Old +944;Bulgaria;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;289;1;1.10130021561248e-06;7364309;3.924332887172442e-05;0;1;Old +945;Bulgaria;F;Elementary occupations;Transportation and storage   ;Y15-29;334;1;1.2727829481472953e-06;7364309;4.535388181022822e-05;1;0;Young +946;Bulgaria;F;Elementary occupations;Transportation and storage   ;Y30-49;1908;1;7.270867859476165e-06;7364309;0.00025908744459256125;1;0;Young +947;Bulgaria;F;Elementary occupations;Transportation and storage   ;Y50-64;1685;1;6.4210756515814145e-06;7364309;0.00022880626003064238;0;1;Old +948;Bulgaria;F;Elementary occupations;Transportation and storage   ;Y65-84;58;1;2.2102218860042852e-07;7364309;7.8758237874049e-06;0;1;Old +949;Bulgaria;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;2035;1;7.754830237963311e-06;7364309;0.00027633278288567194;1;0;Young +950;Bulgaria;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;7165;1;2.7303861746932245e-05;7364309;0.0009729358178751055;1;0;Young +951;Bulgaria;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;5217;1;1.988056479186958e-05;7364309;0.0007084167706705409;0;1;Old +952;Bulgaria;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;225;1;8.574136626740762e-07;7364309;3.055276469251901e-05;0;1;Old +953;Bulgaria;F;Elementary occupations;Information and communication   ;Y15-29;80;1;3.0485819117300483e-07;7364309;1.086320522400676e-05;1;0;Young +954;Bulgaria;F;Elementary occupations;Information and communication   ;Y30-49;307;1;1.1698933086264062e-06;7364309;4.1687550047125946e-05;1;0;Young +955;Bulgaria;F;Elementary occupations;Information and communication   ;Y50-64;298;1;1.135596762119443e-06;7364309;4.046543945942518e-05;0;1;Old +956;Bulgaria;F;Elementary occupations;Information and communication   ;Y65-84;30;1;1.1432182168987682e-07;7364309;4.073701959002535e-06;0;1;Old +957;Bulgaria;F;Elementary occupations;Financial and insurance activities   ;Y15-29;91;1;3.46776192459293e-07;7364309;1.2356895942307689e-05;1;0;Young +958;Bulgaria;F;Elementary occupations;Financial and insurance activities   ;Y30-49;311;1;1.1851362181850563e-06;7364309;4.223071030832628e-05;1;0;Young +959;Bulgaria;F;Elementary occupations;Financial and insurance activities   ;Y50-64;443;1;1.6881522336205144e-06;7364309;6.015499892793743e-05;0;1;Old +960;Bulgaria;F;Elementary occupations;Financial and insurance activities   ;Y65-84;70;1;2.6675091727637925e-07;7364309;9.505304571005916e-06;0;1;Old +961;Bulgaria;F;Elementary occupations;Real estate activities   ;Y15-29;89;1;3.3915473767996787e-07;7364309;1.208531581170752e-05;1;0;Young +962;Bulgaria;F;Elementary occupations;Real estate activities   ;Y30-49;552;1;2.1035215190937336e-06;7364309;7.495611604564665e-05;1;0;Young +963;Bulgaria;F;Elementary occupations;Real estate activities   ;Y50-64;562;1;2.141628792990359e-06;7364309;7.631401669864748e-05;0;1;Old +964;Bulgaria;F;Elementary occupations;Real estate activities   ;Y65-84;37;1;1.4099691341751475e-07;7364309;5.024232416103126e-06;0;1;Old +965;Bulgaria;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;227;1;8.650351174534013e-07;7364309;3.0824344823119184e-05;1;0;Young +966;Bulgaria;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;853;1;3.250550463382164e-06;7364309;0.00011582892570097208;1;0;Young +967;Bulgaria;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;905;1;3.4487082876446173e-06;7364309;0.00012289000909657648;0;1;Old +968;Bulgaria;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;84;1;3.201011007316551e-07;7364309;1.1406365485207099e-05;0;1;Old +969;Bulgaria;F;Elementary occupations;Administrative and support service activities   ;Y15-29;1027;1;3.9136170291834495e-06;7364309;0.0001394563970631868;1;0;Young +970;Bulgaria;F;Elementary occupations;Administrative and support service activities   ;Y30-49;4108;1;1.5654468116733798e-05;7364309;0.0005578255882527472;1;0;Young +971;Bulgaria;F;Elementary occupations;Administrative and support service activities   ;Y50-64;2890;1;1.10130021561248e-05;7364309;0.0003924332887172442;0;1;Old +972;Bulgaria;F;Elementary occupations;Administrative and support service activities   ;Y65-84;131;1;4.992052880457954e-07;7364309;1.7788498554311068e-05;0;1;Old +973;Bulgaria;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;1693;1;6.451561470698715e-06;7364309;0.00022989258055304307;1;0;Young +974;Bulgaria;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;8503;1;3.240261499430075e-05;7364309;0.0011546229252466186;1;0;Young +975;Bulgaria;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;7419;1;2.8271786503906535e-05;7364309;0.001007426494461327;0;1;Old +976;Bulgaria;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;118;1;4.496658319801821e-07;7364309;1.602322770540997e-05;0;1;Old +977;Bulgaria;F;Elementary occupations;Education   ;Y15-29;348;1;1.326133131602571e-06;7364309;4.725494272442941e-05;1;0;Young +978;Bulgaria;F;Elementary occupations;Education   ;Y30-49;5388;1;2.0532199175501876e-05;7364309;0.0007316368718368553;1;0;Young +979;Bulgaria;F;Elementary occupations;Education   ;Y50-64;7541;1;2.873669524544537e-05;7364309;0.0010239928824279372;0;1;Old +980;Bulgaria;F;Elementary occupations;Education   ;Y65-84;176;1;6.706880205806106e-07;7364309;2.3899051492814874e-05;0;1;Old +981;Bulgaria;F;Elementary occupations;Human health and social work activities   ;Y15-29;294;1;1.1203538525607928e-06;7364309;3.9922279198224844e-05;1;0;Young +982;Bulgaria;F;Elementary occupations;Human health and social work activities   ;Y30-49;2629;1;1.0018402307422872e-05;7364309;0.00035699208167392217;1;0;Young +983;Bulgaria;F;Elementary occupations;Human health and social work activities   ;Y50-64;3192;1;1.2163841827802893e-05;7364309;0.0004334418884378697;0;1;Old +984;Bulgaria;F;Elementary occupations;Human health and social work activities   ;Y65-84;88;1;3.353440102903053e-07;7364309;1.1949525746407437e-05;0;1;Old +985;Bulgaria;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;139;1;5.296911071630959e-07;7364309;1.8874819076711745e-05;1;0;Young +986;Bulgaria;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;595;1;2.2673827968492233e-06;7364309;8.079508885355028e-05;1;0;Young +987;Bulgaria;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;826;1;3.147660823861275e-06;7364309;0.0001121625939378698;0;1;Old +988;Bulgaria;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;69;1;2.629401898867167e-07;7364309;9.369514505705831e-06;0;1;Old +989;Bulgaria;F;Elementary occupations;Other service activities   ;Y15-29;456;1;1.7376916896861275e-06;7364309;6.192026977683853e-05;1;0;Young +990;Bulgaria;F;Elementary occupations;Other service activities   ;Y30-49;1741;1;6.634476385402518e-06;7364309;0.0002364105036874471;1;0;Young +991;Bulgaria;F;Elementary occupations;Other service activities   ;Y50-64;1421;1;5.415043620710499e-06;7364309;0.00019295768279142009;0;1;Old +992;Bulgaria;F;Elementary occupations;Other service activities   ;Y65-84;127;1;4.839623784871452e-07;7364309;1.7245338293110733e-05;0;1;Old +993;Bulgaria;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;153;1;5.830412906183718e-07;7364309;2.077587999091293e-05;1;0;Young +994;Bulgaria;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;507;1;1.9320387865589183e-06;7364309;6.884556310714285e-05;1;0;Young +995;Bulgaria;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;306;1;1.1660825812367436e-06;7364309;4.155175998182586e-05;0;1;Old +996;Bulgaria;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;33;1;1.257540038588645e-07;7364309;4.481072154902789e-06;0;1;Old +997;Bulgaria;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +998;Bulgaria;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;1;0;Young +999;Bulgaria;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;67;1;2.5531873510739155e-07;7364309;9.097934375105662e-06;1;0;Young +1000;Bulgaria;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;65;1;2.4769728032806646e-07;7364309;8.826354244505493e-06;0;1;Old +1001;Bulgaria;F;Elementary occupations;Not stated   ;Y15-29;66;1;2.51508007717729e-07;7364309;8.962144309805577e-06;1;0;Young +1002;Bulgaria;F;Elementary occupations;Not stated   ;Y30-49;275;1;1.0479500321572042e-06;7364309;3.734226795752324e-05;1;0;Young +1003;Bulgaria;F;Elementary occupations;Not stated   ;Y50-64;176;1;6.706880205806106e-07;7364309;2.3899051492814874e-05;0;1;Old +1004;Bulgaria;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;350;1;1.3337545863818963e-06;7364309;4.7526522855029575e-05;1;0;Young +1005;Bulgaria;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;502;1;1.9129851496106053e-06;7364309;6.816661278064242e-05;1;0;Young +1006;Bulgaria;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;239;1;9.10763846129352e-07;7364309;3.24538256067202e-05;0;1;Old +1007;Bulgaria;F;Not stated;Agriculture, forestry and fishing   ;Y65-84;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +1008;Bulgaria;F;Not stated;Mining and quarrying   ;Y15-29;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;1;0;Young +1009;Bulgaria;F;Not stated;Mining and quarrying   ;Y30-49;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;1;0;Young +1010;Bulgaria;F;Not stated;Mining and quarrying   ;Y50-64;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +1011;Bulgaria;F;Not stated;Manufacturing   ;Y15-29;1257;1;4.790084328805838e-06;7364309;0.00017068811208220623;1;0;Young +1012;Bulgaria;F;Not stated;Manufacturing   ;Y30-49;2482;1;9.458225381142475e-06;7364309;0.00033703094207480975;1;0;Young +1013;Bulgaria;F;Not stated;Manufacturing   ;Y50-64;677;1;2.5798624428015536e-06;7364309;9.19298742081572e-05;0;1;Old +1014;Bulgaria;F;Not stated;Manufacturing   ;Y65-84;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;0;1;Old +1015;Bulgaria;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;1;0;Young +1016;Bulgaria;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;1;0;Young +1017;Bulgaria;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;0;1;Old +1018;Bulgaria;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;52;1;1.9815782426245315e-07;7364309;7.0610833956043945e-06;1;0;Young +1019;Bulgaria;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;160;1;6.097163823460097e-07;7364309;2.172641044801352e-05;1;0;Young +1020;Bulgaria;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;60;1;2.2864364337975364e-07;7364309;8.14740391800507e-06;0;1;Old +1021;Bulgaria;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1022;Bulgaria;F;Not stated;Construction   ;Y15-29;227;1;8.650351174534013e-07;7364309;3.0824344823119184e-05;1;0;Young +1023;Bulgaria;F;Not stated;Construction   ;Y30-49;291;1;1.1089216703918052e-06;7364309;3.951490900232459e-05;1;0;Young +1024;Bulgaria;F;Not stated;Construction   ;Y50-64;104;1;3.963156485249063e-07;7364309;1.4122166791208789e-05;0;1;Old +1025;Bulgaria;F;Not stated;Construction   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1026;Bulgaria;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2017;1;7.686237144949384e-06;7364309;0.00027388856171027044;1;0;Young +1027;Bulgaria;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2377;1;9.058099005227907e-06;7364309;0.00032277298521830085;1;0;Young +1028;Bulgaria;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;705;1;2.686562809712105e-06;7364309;9.573199603655957e-05;0;1;Old +1029;Bulgaria;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;37;1;1.4099691341751475e-07;7364309;5.024232416103126e-06;0;1;Old +1030;Bulgaria;F;Not stated;Transportation and storage   ;Y15-29;134;1;5.106374702147831e-07;7364309;1.8195868750211324e-05;1;0;Young +1031;Bulgaria;F;Not stated;Transportation and storage   ;Y30-49;249;1;9.488711200259775e-07;7364309;3.381172625972104e-05;1;0;Young +1032;Bulgaria;F;Not stated;Transportation and storage   ;Y50-64;122;1;4.6490874153883237e-07;7364309;1.656638796661031e-05;0;1;Old +1033;Bulgaria;F;Not stated;Accommodation and food service activities   ;Y15-29;1661;1;6.329618194229513e-06;7364309;0.00022554729846344036;1;0;Young +1034;Bulgaria;F;Not stated;Accommodation and food service activities   ;Y30-49;1164;1;4.435686681567221e-06;7364309;0.00015805963600929837;1;0;Young +1035;Bulgaria;F;Not stated;Accommodation and food service activities   ;Y50-64;416;1;1.5852625940996252e-06;7364309;5.6488667164835156e-05;0;1;Old +1036;Bulgaria;F;Not stated;Accommodation and food service activities   ;Y65-84;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;0;1;Old +1037;Bulgaria;F;Not stated;Information and communication   ;Y15-29;175;1;6.668772931909481e-07;7364309;2.3763261427514788e-05;1;0;Young +1038;Bulgaria;F;Not stated;Information and communication   ;Y30-49;180;1;6.859309301392609e-07;7364309;2.444221175401521e-05;1;0;Young +1039;Bulgaria;F;Not stated;Information and communication   ;Y50-64;43;1;1.638612777554901e-07;7364309;5.838972807903634e-06;0;1;Old +1040;Bulgaria;F;Not stated;Financial and insurance activities   ;Y15-29;160;1;6.097163823460097e-07;7364309;2.172641044801352e-05;1;0;Young +1041;Bulgaria;F;Not stated;Financial and insurance activities   ;Y30-49;193;1;7.354703862048742e-07;7364309;2.620748260291631e-05;1;0;Young +1042;Bulgaria;F;Not stated;Financial and insurance activities   ;Y50-64;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;0;1;Old +1043;Bulgaria;F;Not stated;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +1044;Bulgaria;F;Not stated;Real estate activities   ;Y15-29;85;1;3.239118281213176e-07;7364309;1.1542155550507183e-05;1;0;Young +1045;Bulgaria;F;Not stated;Real estate activities   ;Y30-49;139;1;5.296911071630959e-07;7364309;1.8874819076711745e-05;1;0;Young +1046;Bulgaria;F;Not stated;Real estate activities   ;Y50-64;71;1;2.705616446660418e-07;7364309;9.641094636306e-06;0;1;Old +1047;Bulgaria;F;Not stated;Real estate activities   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1048;Bulgaria;F;Not stated;Professional, scientific and technical activities   ;Y15-29;267;1;1.0174642130399036e-06;7364309;3.625594743512256e-05;1;0;Young +1049;Bulgaria;F;Not stated;Professional, scientific and technical activities   ;Y30-49;463;1;1.7643667814137655e-06;7364309;6.287080023393913e-05;1;0;Young +1050;Bulgaria;F;Not stated;Professional, scientific and technical activities   ;Y50-64;164;1;6.2495929190466e-07;7364309;2.226957070921386e-05;0;1;Old +1051;Bulgaria;F;Not stated;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;0;1;Old +1052;Bulgaria;F;Not stated;Administrative and support service activities   ;Y15-29;259;1;9.869783939226032e-07;7364309;3.5169626912721884e-05;1;0;Young +1053;Bulgaria;F;Not stated;Administrative and support service activities   ;Y30-49;284;1;1.0822465786641672e-06;7364309;3.8564378545224e-05;1;0;Young +1054;Bulgaria;F;Not stated;Administrative and support service activities   ;Y50-64;111;1;4.2299074025254424e-07;7364309;1.507269724830938e-05;0;1;Old +1055;Bulgaria;F;Not stated;Administrative and support service activities   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +1056;Bulgaria;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;115;1;4.382336498111945e-07;7364309;1.5615857509509718e-05;1;0;Young +1057;Bulgaria;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;455;1;1.7338809622964651e-06;7364309;6.178447971153845e-05;1;0;Young +1058;Bulgaria;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;217;1;8.269278435567757e-07;7364309;2.9466444170118338e-05;0;1;Old +1059;Bulgaria;F;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;0;1;Old +1060;Bulgaria;F;Not stated;Education   ;Y15-29;99;1;3.772620115765935e-07;7364309;1.3443216464708366e-05;1;0;Young +1061;Bulgaria;F;Not stated;Education   ;Y30-49;373;1;1.421401316344135e-06;7364309;5.064969435693152e-05;1;0;Young +1062;Bulgaria;F;Not stated;Education   ;Y50-64;283;1;1.0784358512745046e-06;7364309;3.8428588479923915e-05;0;1;Old +1063;Bulgaria;F;Not stated;Education   ;Y65-84;16;1;6.097163823460096e-08;7364309;2.172641044801352e-06;0;1;Old +1064;Bulgaria;F;Not stated;Human health and social work activities   ;Y15-29;101;1;3.848834663559186e-07;7364309;1.3714796595308535e-05;1;0;Young +1065;Bulgaria;F;Not stated;Human health and social work activities   ;Y30-49;549;1;2.092089336924746e-06;7364309;7.454874584974639e-05;1;0;Young +1066;Bulgaria;F;Not stated;Human health and social work activities   ;Y50-64;338;1;1.2880258577059455e-06;7364309;4.589704207142856e-05;0;1;Old +1067;Bulgaria;F;Not stated;Human health and social work activities   ;Y65-84;14;1;5.335018345527585e-08;7364309;1.901060914201183e-06;0;1;Old +1068;Bulgaria;F;Not stated;Arts, entertainment and recreation   ;Y15-29;241;1;9.18385300908677e-07;7364309;3.2725405737320365e-05;1;0;Young +1069;Bulgaria;F;Not stated;Arts, entertainment and recreation   ;Y30-49;186;1;7.087952944772362e-07;7364309;2.5256952145815717e-05;1;0;Young +1070;Bulgaria;F;Not stated;Arts, entertainment and recreation   ;Y50-64;40;1;1.5242909558650242e-07;7364309;5.43160261200338e-06;0;1;Old +1071;Bulgaria;F;Not stated;Arts, entertainment and recreation   ;Y65-84;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +1072;Bulgaria;F;Not stated;Other service activities   ;Y15-29;214;1;8.15495661387788e-07;7364309;2.9059073974218082e-05;1;0;Young +1073;Bulgaria;F;Not stated;Other service activities   ;Y30-49;365;1;1.3909154972268347e-06;7364309;4.956337383453084e-05;1;0;Young +1074;Bulgaria;F;Not stated;Other service activities   ;Y50-64;116;1;4.4204437720085703e-07;7364309;1.57516475748098e-05;0;1;Old +1075;Bulgaria;F;Not stated;Other service activities   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1076;Bulgaria;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;1;0;Young +1077;Bulgaria;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +1078;Bulgaria;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;1;0;Young +1079;Bulgaria;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1080;Bulgaria;F;Not stated;Not stated   ;Y15-29;2977;1;1.1344535439025442e-05;7364309;0.00040424702439835155;1;0;Young +1081;Bulgaria;F;Not stated;Not stated   ;Y30-49;5846;1;2.227751231996733e-05;7364309;0.000793828721744294;1;0;Young +1082;Bulgaria;F;Not stated;Not stated   ;Y50-64;3410;1;1.2994580398749331e-05;7364309;0.00046304412267328816;0;1;Old +1083;Bulgaria;F;Not stated;Not stated   ;Y65-84;179;1;6.821202027495983e-07;7364309;2.4306421688715126e-05;0;1;Old +1084;Bulgaria;M;Not applicable;Not applicable  ;Y15-29;376698;1;0.0014354933862311071;7364309;0.05115184601841123;1;0;Young +1085;Bulgaria;M;Not applicable;Not applicable  ;Y30-49;210168;1;0.000800892954030601;7364309;0.02853872644398816;1;0;Young +1086;Bulgaria;M;Not applicable;Not applicable  ;Y50-64;301567;1;0.0011491896267183694;7364309;0.04094980262235058;0;1;Old +1087;Bulgaria;M;Not applicable;Not applicable  ;Y65-84;487572;1;0.0018580039748325539;7364309;0.0662074337184928;0;1;Old +1088;Bulgaria;M;Not applicable;Not applicable  ;Y_GE85;36240;1;0.0001381007606013712;7364309;0.0049210319664750625;0;1;Old +1089;Bulgaria;M;Not applicable;Not applicable  ;Y_LT15;501718;1;0.0019119105244867205;7364309;0.06812831998222779;0;1;Old +1090;Bulgaria;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;1;0;Young +1091;Bulgaria;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;0;1;Old +1092;Bulgaria;M;Armed forces occupations;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +1093;Bulgaria;M;Armed forces occupations;Manufacturing   ;Y15-29;16;1;6.097163823460096e-08;7364309;2.172641044801352e-06;1;0;Young +1094;Bulgaria;M;Armed forces occupations;Manufacturing   ;Y30-49;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;1;0;Young +1095;Bulgaria;M;Armed forces occupations;Manufacturing   ;Y50-64;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;0;1;Old +1096;Bulgaria;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;1;0;Young +1097;Bulgaria;M;Armed forces occupations;Construction   ;Y15-29;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;1;0;Young +1098;Bulgaria;M;Armed forces occupations;Construction   ;Y30-49;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;1;0;Young +1099;Bulgaria;M;Armed forces occupations;Construction   ;Y50-64;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1100;Bulgaria;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;30;1;1.1432182168987682e-07;7364309;4.073701959002535e-06;1;0;Young +1101;Bulgaria;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;38;1;1.448076408071773e-07;7364309;5.160022481403211e-06;1;0;Young +1102;Bulgaria;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1103;Bulgaria;M;Armed forces occupations;Transportation and storage   ;Y15-29;46;1;1.7529345992447778e-07;7364309;6.246343003803887e-06;1;0;Young +1104;Bulgaria;M;Armed forces occupations;Transportation and storage   ;Y30-49;140;1;5.335018345527585e-07;7364309;1.901060914201183e-05;1;0;Young +1105;Bulgaria;M;Armed forces occupations;Transportation and storage   ;Y50-64;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;0;1;Old +1106;Bulgaria;M;Armed forces occupations;Accommodation and food service activities   ;Y15-29;16;1;6.097163823460096e-08;7364309;2.172641044801352e-06;1;0;Young +1107;Bulgaria;M;Armed forces occupations;Accommodation and food service activities   ;Y30-49;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;1;0;Young +1108;Bulgaria;M;Armed forces occupations;Accommodation and food service activities   ;Y50-64;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;0;1;Old +1109;Bulgaria;M;Armed forces occupations;Information and communication   ;Y15-29;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +1110;Bulgaria;M;Armed forces occupations;Information and communication   ;Y30-49;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;1;0;Young +1111;Bulgaria;M;Armed forces occupations;Financial and insurance activities   ;Y30-49;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;1;0;Young +1112;Bulgaria;M;Armed forces occupations;Financial and insurance activities   ;Y50-64;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +1113;Bulgaria;M;Armed forces occupations;Real estate activities   ;Y15-29;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +1114;Bulgaria;M;Armed forces occupations;Real estate activities   ;Y30-49;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;1;0;Young +1115;Bulgaria;M;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;255;1;9.71735484363953e-07;7364309;3.4626466651521546e-05;1;0;Young +1116;Bulgaria;M;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;886;1;3.3763044672410287e-06;7364309;0.00012030999785587486;1;0;Young +1117;Bulgaria;M;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;60;1;2.2864364337975364e-07;7364309;8.14740391800507e-06;0;1;Old +1118;Bulgaria;M;Armed forces occupations;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1119;Bulgaria;M;Armed forces occupations;Administrative and support service activities   ;Y15-29;685;1;2.610348261918854e-06;7364309;9.301619473055788e-05;1;0;Young +1120;Bulgaria;M;Armed forces occupations;Administrative and support service activities   ;Y30-49;3236;1;1.2331513832948046e-05;7364309;0.00043941665131107347;1;0;Young +1121;Bulgaria;M;Armed forces occupations;Administrative and support service activities   ;Y50-64;369;1;1.4061584067854849e-06;7364309;5.010653409573118e-05;0;1;Old +1122;Bulgaria;M;Armed forces occupations;Administrative and support service activities   ;Y65-84;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +1123;Bulgaria;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;7012;1;2.6720820456313875e-05;7364309;0.0009521599378841926;1;0;Young +1124;Bulgaria;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;18532;1;7.062039998522657e-05;7364309;0.002516461490141166;1;0;Young +1125;Bulgaria;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;1409;1;5.369314892034548e-06;7364309;0.00019132820200781905;0;1;Old +1126;Bulgaria;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;57;1;2.1721146121076594e-07;7364309;7.740033722104816e-06;0;1;Old +1127;Bulgaria;M;Armed forces occupations;Education   ;Y15-29;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;1;0;Young +1128;Bulgaria;M;Armed forces occupations;Education   ;Y30-49;308;1;1.1737040360160685e-06;7364309;4.1823340112426025e-05;1;0;Young +1129;Bulgaria;M;Armed forces occupations;Education   ;Y50-64;57;1;2.1721146121076594e-07;7364309;7.740033722104816e-06;0;1;Old +1130;Bulgaria;M;Armed forces occupations;Human health and social work activities   ;Y30-49;54;1;2.0577927904177827e-07;7364309;7.332663526204563e-06;1;0;Young +1131;Bulgaria;M;Armed forces occupations;Human health and social work activities   ;Y50-64;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;0;1;Old +1132;Bulgaria;M;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;1;0;Young +1133;Bulgaria;M;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;114;1;4.344229224215319e-07;7364309;1.548006744420963e-05;1;0;Young +1134;Bulgaria;M;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;0;1;Old +1135;Bulgaria;M;Armed forces occupations;Other service activities   ;Y15-29;367;1;1.3985369520061597e-06;7364309;4.9834953965131015e-05;1;0;Young +1136;Bulgaria;M;Armed forces occupations;Other service activities   ;Y30-49;1440;1;5.4874474411140875e-06;7364309;0.00019553769403212167;1;0;Young +1137;Bulgaria;M;Armed forces occupations;Other service activities   ;Y50-64;109;1;4.153692854732191e-07;7364309;1.480111711770921e-05;0;1;Old +1138;Bulgaria;M;Armed forces occupations;Other service activities   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +1139;Bulgaria;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;133;1;5.068267428251205e-07;7364309;1.8060078684911237e-05;1;0;Young +1140;Bulgaria;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;482;1;1.836770601817354e-06;7364309;6.545081147464073e-05;1;0;Young +1141;Bulgaria;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;0;1;Old +1142;Bulgaria;M;Armed forces occupations;Not stated   ;Y15-29;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;1;0;Young +1143;Bulgaria;M;Armed forces occupations;Not stated   ;Y30-49;134;1;5.106374702147831e-07;7364309;1.8195868750211324e-05;1;0;Young +1144;Bulgaria;M;Armed forces occupations;Not stated   ;Y50-64;32;1;1.2194327646920193e-07;7364309;4.345282089602704e-06;0;1;Old +1145;Bulgaria;M;Managers;Agriculture, forestry and fishing   ;Y15-29;337;1;1.284215130316283e-06;7364309;4.576125200612848e-05;1;0;Young +1146;Bulgaria;M;Managers;Agriculture, forestry and fishing   ;Y30-49;2903;1;1.1062541612190413e-05;7364309;0.00039419855956614533;1;0;Young +1147;Bulgaria;M;Managers;Agriculture, forestry and fishing   ;Y50-64;1952;1;7.438539864621318e-06;7364309;0.00026506220746576494;0;1;Old +1148;Bulgaria;M;Managers;Agriculture, forestry and fishing   ;Y65-84;326;1;1.2422971290299947e-06;7364309;4.4267561287827545e-05;0;1;Old +1149;Bulgaria;M;Managers;Mining and quarrying   ;Y15-29;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;1;0;Young +1150;Bulgaria;M;Managers;Mining and quarrying   ;Y30-49;609;1;2.3207329803044993e-06;7364309;8.269614976775146e-05;1;0;Young +1151;Bulgaria;M;Managers;Mining and quarrying   ;Y50-64;439;1;1.6729093240618642e-06;7364309;5.961183866673709e-05;0;1;Old +1152;Bulgaria;M;Managers;Mining and quarrying   ;Y65-84;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;0;1;Old +1153;Bulgaria;M;Managers;Manufacturing   ;Y15-29;1539;1;5.864709452690681e-06;7364309;0.00020898091049683005;1;0;Young +1154;Bulgaria;M;Managers;Manufacturing   ;Y30-49;14949;1;5.696656374806562e-05;7364309;0.002029925686170963;1;0;Young +1155;Bulgaria;M;Managers;Manufacturing   ;Y50-64;9998;1;3.809965244184628e-05;7364309;0.001357629072870245;0;1;Old +1156;Bulgaria;M;Managers;Manufacturing   ;Y65-84;898;1;3.4220331959169795e-06;7364309;0.00012193947863947589;0;1;Old +1157;Bulgaria;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;60;1;2.2864364337975364e-07;7364309;8.14740391800507e-06;1;0;Young +1158;Bulgaria;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1086;1;4.13844994517354e-06;7364309;0.00014746801091589177;1;0;Young +1159;Bulgaria;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;817;1;3.113364277354312e-06;7364309;0.00011094048335016904;0;1;Old +1160;Bulgaria;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;36;1;1.3718618602785217e-07;7364309;4.8884423508030425e-06;0;1;Old +1161;Bulgaria;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;41;1;1.56239822976165e-07;7364309;5.567392677303465e-06;1;0;Young +1162;Bulgaria;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;605;1;2.3054900707458493e-06;7364309;8.215298950655113e-05;1;0;Young +1163;Bulgaria;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;549;1;2.092089336924746e-06;7364309;7.454874584974639e-05;0;1;Old +1164;Bulgaria;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;24;1;9.145745735190145e-08;7364309;3.258961567202028e-06;0;1;Old +1165;Bulgaria;M;Managers;Construction   ;Y15-29;1160;1;4.42044377200857e-06;7364309;0.00015751647574809802;1;0;Young +1166;Bulgaria;M;Managers;Construction   ;Y30-49;8263;1;3.148804042078174e-05;7364309;0.0011220333095745983;1;0;Young +1167;Bulgaria;M;Managers;Construction   ;Y50-64;5472;1;2.085230027623353e-05;7364309;0.0007430432373220624;0;1;Old +1168;Bulgaria;M;Managers;Construction   ;Y65-84;490;1;1.8672564209346547e-06;7364309;6.65371319970414e-05;0;1;Old +1169;Bulgaria;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4411;1;1.6809118515801554e-05;7364309;0.0005989699780386727;1;0;Young +1170;Bulgaria;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;32052;1;0.0001221414342934644;7364309;0.004352343172998308;1;0;Young +1171;Bulgaria;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;13282;1;5.061408118949813e-05;7364309;0.0018035636473157223;0;1;Old +1172;Bulgaria;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1156;1;4.40520086244992e-06;7364309;0.00015697331548689768;0;1;Old +1173;Bulgaria;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1174;Bulgaria;M;Managers;Transportation and storage   ;Y15-29;618;1;2.3550295268114623e-06;7364309;8.391826035545222e-05;1;0;Young +1175;Bulgaria;M;Managers;Transportation and storage   ;Y30-49;5627;1;2.144296302163123e-05;7364309;0.0007640906974435755;1;0;Young +1176;Bulgaria;M;Managers;Transportation and storage   ;Y50-64;3138;1;1.1958062548761114e-05;7364309;0.0004261092249116652;0;1;Old +1177;Bulgaria;M;Managers;Transportation and storage   ;Y65-84;158;1;6.020949275666846e-07;7364309;2.145483031741335e-05;0;1;Old +1178;Bulgaria;M;Managers;Accommodation and food service activities   ;Y15-29;1040;1;3.963156485249063e-06;7364309;0.00014122166791208788;1;0;Young +1179;Bulgaria;M;Managers;Accommodation and food service activities   ;Y30-49;6209;1;2.366080636241484e-05;7364309;0.0008431205154482246;1;0;Young +1180;Bulgaria;M;Managers;Accommodation and food service activities   ;Y50-64;2852;1;1.0868194515317622e-05;7364309;0.000387273266235841;0;1;Old +1181;Bulgaria;M;Managers;Accommodation and food service activities   ;Y65-84;202;1;7.697669327118372e-07;7364309;2.742959319061707e-05;0;1;Old +1182;Bulgaria;M;Managers;Information and communication   ;Y15-29;841;1;3.2048217347062134e-06;7364309;0.00011419944491737106;1;0;Young +1183;Bulgaria;M;Managers;Information and communication   ;Y30-49;3605;1;1.373767223973353e-05;7364309;0.0004895231854068047;1;0;Young +1184;Bulgaria;M;Managers;Information and communication   ;Y50-64;960;1;3.658298294076058e-06;7364309;0.00013035846268808111;0;1;Old +1185;Bulgaria;M;Managers;Information and communication   ;Y65-84;81;1;3.086689185626674e-07;7364309;1.0998995289306845e-05;0;1;Old +1186;Bulgaria;M;Managers;Financial and insurance activities   ;Y15-29;405;1;1.543344592813337e-06;7364309;5.499497644653422e-05;1;0;Young +1187;Bulgaria;M;Managers;Financial and insurance activities   ;Y30-49;3167;1;1.206857364306133e-05;7364309;0.0004300471368053676;1;0;Young +1188;Bulgaria;M;Managers;Financial and insurance activities   ;Y50-64;925;1;3.5249228354378684e-06;7364309;0.00012560581040257818;0;1;Old +1189;Bulgaria;M;Managers;Financial and insurance activities   ;Y65-84;64;1;2.4388655293840386e-07;7364309;8.690564179205408e-06;0;1;Old +1190;Bulgaria;M;Managers;Real estate activities   ;Y15-29;288;1;1.0974894882228174e-06;7364309;3.910753880642434e-05;1;0;Young +1191;Bulgaria;M;Managers;Real estate activities   ;Y30-49;2027;1;7.72434441884601e-06;7364309;0.0002752464623632713;1;0;Young +1192;Bulgaria;M;Managers;Real estate activities   ;Y50-64;1197;1;4.561440685426085e-06;7364309;0.00016254070816420116;0;1;Old +1193;Bulgaria;M;Managers;Real estate activities   ;Y65-84;131;1;4.992052880457954e-07;7364309;1.7788498554311068e-05;0;1;Old +1194;Bulgaria;M;Managers;Professional, scientific and technical activities   ;Y15-29;677;1;2.5798624428015536e-06;7364309;9.19298742081572e-05;1;0;Young +1195;Bulgaria;M;Managers;Professional, scientific and technical activities   ;Y30-49;4335;1;1.65195032341872e-05;7364309;0.0005886499330758664;1;0;Young +1196;Bulgaria;M;Managers;Professional, scientific and technical activities   ;Y50-64;2527;1;9.62970811367729e-06;7364309;0.00034314149501331353;0;1;Old +1197;Bulgaria;M;Managers;Professional, scientific and technical activities   ;Y65-84;341;1;1.299458039874933e-06;7364309;4.630441226732881e-05;0;1;Old +1198;Bulgaria;M;Managers;Administrative and support service activities   ;Y15-29;336;1;1.2804044029266203e-06;7364309;4.5625461940828394e-05;1;0;Young +1199;Bulgaria;M;Managers;Administrative and support service activities   ;Y30-49;1852;1;7.057467125655062e-06;7364309;0.0002514832009357565;1;0;Young +1200;Bulgaria;M;Managers;Administrative and support service activities   ;Y50-64;1161;1;4.424254499398233e-06;7364309;0.0001576522658133981;0;1;Old +1201;Bulgaria;M;Managers;Administrative and support service activities   ;Y65-84;134;1;5.106374702147831e-07;7364309;1.8195868750211324e-05;0;1;Old +1202;Bulgaria;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;124;1;4.725301963181575e-07;7364309;1.6837968097210478e-05;1;0;Young +1203;Bulgaria;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;3518;1;1.3406138956832887e-05;7364309;0.00047770944972569726;1;0;Young +1204;Bulgaria;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;3385;1;1.2899312214007768e-05;7364309;0.00045964937104078606;0;1;Old +1205;Bulgaria;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;325;1;1.2384864016403321e-06;7364309;4.4131771222527465e-05;0;1;Old +1206;Bulgaria;M;Managers;Education   ;Y15-29;67;1;2.5531873510739155e-07;7364309;9.097934375105662e-06;1;0;Young +1207;Bulgaria;M;Managers;Education   ;Y30-49;814;1;3.1019320951853244e-06;7364309;0.00011053311315426879;1;0;Young +1208;Bulgaria;M;Managers;Education   ;Y50-64;1496;1;5.700848174935191e-06;7364309;0.00020314193768892642;0;1;Old +1209;Bulgaria;M;Managers;Education   ;Y65-84;162;1;6.173378371253348e-07;7364309;2.199799057861369e-05;0;1;Old +1210;Bulgaria;M;Managers;Human health and social work activities   ;Y15-29;36;1;1.3718618602785217e-07;7364309;4.8884423508030425e-06;1;0;Young +1211;Bulgaria;M;Managers;Human health and social work activities   ;Y30-49;654;1;2.4922157128393146e-06;7364309;8.880670270625526e-05;1;0;Young +1212;Bulgaria;M;Managers;Human health and social work activities   ;Y50-64;869;1;3.311522101616765e-06;7364309;0.00011800156674577344;0;1;Old +1213;Bulgaria;M;Managers;Human health and social work activities   ;Y65-84;110;1;4.1918001286288164e-07;7364309;1.4936907183009295e-05;0;1;Old +1214;Bulgaria;M;Managers;Arts, entertainment and recreation   ;Y15-29;261;1;9.945998487019282e-07;7364309;3.544120704332206e-05;1;0;Young +1215;Bulgaria;M;Managers;Arts, entertainment and recreation   ;Y30-49;1312;1;4.99967433523728e-06;7364309;0.00017815656567371087;1;0;Young +1216;Bulgaria;M;Managers;Arts, entertainment and recreation   ;Y50-64;727;1;2.7703988122846815e-06;7364309;9.871937747316144e-05;0;1;Old +1217;Bulgaria;M;Managers;Arts, entertainment and recreation   ;Y65-84;84;1;3.201011007316551e-07;7364309;1.1406365485207099e-05;0;1;Old +1218;Bulgaria;M;Managers;Other service activities   ;Y15-29;300;1;1.1432182168987682e-06;7364309;4.073701959002535e-05;1;0;Young +1219;Bulgaria;M;Managers;Other service activities   ;Y30-49;2107;1;8.029202610019015e-06;7364309;0.00028610966758727804;1;0;Young +1220;Bulgaria;M;Managers;Other service activities   ;Y50-64;1410;1;5.37312561942421e-06;7364309;0.00019146399207311914;0;1;Old +1221;Bulgaria;M;Managers;Other service activities   ;Y65-84;292;1;1.1127323977814678e-06;7364309;3.965069906762467e-05;0;1;Old +1222;Bulgaria;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;1;0;Young +1223;Bulgaria;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;26;1;9.907891213122657e-08;7364309;3.5305416978021972e-06;1;0;Young +1224;Bulgaria;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;0;1;Old +1225;Bulgaria;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +1226;Bulgaria;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;29;1;1.1051109430021426e-07;7364309;3.93791189370245e-06;1;0;Young +1227;Bulgaria;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;0;1;Old +1228;Bulgaria;M;Managers;Not stated   ;Y15-29;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;1;0;Young +1229;Bulgaria;M;Managers;Not stated   ;Y30-49;123;1;4.6871946892849497e-07;7364309;1.6702178031910395e-05;1;0;Young +1230;Bulgaria;M;Managers;Not stated   ;Y50-64;67;1;2.5531873510739155e-07;7364309;9.097934375105662e-06;0;1;Old +1231;Bulgaria;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;285;1;1.0860573060538298e-06;7364309;3.870016861052408e-05;1;0;Young +1232;Bulgaria;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;1104;1;4.207043038187467e-06;7364309;0.0001499122320912933;1;0;Young +1233;Bulgaria;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;672;1;2.5608088058532406e-06;7364309;9.125092388165679e-05;0;1;Old +1234;Bulgaria;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;89;1;3.3915473767996787e-07;7364309;1.208531581170752e-05;0;1;Old +1235;Bulgaria;M;Professionals;Mining and quarrying   ;Y15-29;81;1;3.086689185626674e-07;7364309;1.0998995289306845e-05;1;0;Young +1236;Bulgaria;M;Professionals;Mining and quarrying   ;Y30-49;369;1;1.4061584067854849e-06;7364309;5.010653409573118e-05;1;0;Young +1237;Bulgaria;M;Professionals;Mining and quarrying   ;Y50-64;222;1;8.459814805050885e-07;7364309;3.014539449661876e-05;0;1;Old +1238;Bulgaria;M;Professionals;Mining and quarrying   ;Y65-84;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;0;1;Old +1239;Bulgaria;M;Professionals;Manufacturing   ;Y15-29;2020;1;7.697669327118372e-06;7364309;0.0002742959319061707;1;0;Young +1240;Bulgaria;M;Professionals;Manufacturing   ;Y30-49;6294;1;2.3984718190536155e-05;7364309;0.0008546626709987319;1;0;Young +1241;Bulgaria;M;Professionals;Manufacturing   ;Y50-64;3287;1;1.2525860929820837e-05;7364309;0.00044634194464137776;0;1;Old +1242;Bulgaria;M;Professionals;Manufacturing   ;Y65-84;221;1;8.421707531154259e-07;7364309;3.0009604431318676e-05;0;1;Old +1243;Bulgaria;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;317;1;1.2080005825230317e-06;7364309;4.304545070012679e-05;1;0;Young +1244;Bulgaria;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1596;1;6.0819209139014465e-06;7364309;0.00021672094421893486;1;0;Young +1245;Bulgaria;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;851;1;3.242929008602839e-06;7364309;0.00011555734557037191;0;1;Old +1246;Bulgaria;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;24;1;9.145745735190145e-08;7364309;3.258961567202028e-06;0;1;Old +1247;Bulgaria;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;60;1;2.2864364337975364e-07;7364309;8.14740391800507e-06;1;0;Young +1248;Bulgaria;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;326;1;1.2422971290299947e-06;7364309;4.4267561287827545e-05;1;0;Young +1249;Bulgaria;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;255;1;9.71735484363953e-07;7364309;3.4626466651521546e-05;0;1;Old +1250;Bulgaria;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;14;1;5.335018345527585e-08;7364309;1.901060914201183e-06;0;1;Old +1251;Bulgaria;M;Professionals;Construction   ;Y15-29;978;1;3.726891387089984e-06;7364309;0.00013280268386348264;1;0;Young +1252;Bulgaria;M;Professionals;Construction   ;Y30-49;2501;1;9.530629201546065e-06;7364309;0.00033961095331551134;1;0;Young +1253;Bulgaria;M;Professionals;Construction   ;Y50-64;1655;1;6.306753829891537e-06;7364309;0.00022473255807163985;0;1;Old +1254;Bulgaria;M;Professionals;Construction   ;Y65-84;221;1;8.421707531154259e-07;7364309;3.0009604431318676e-05;0;1;Old +1255;Bulgaria;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2116;1;8.063499156525979e-06;7364309;0.0002873317781749788;1;0;Young +1256;Bulgaria;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5227;1;1.9918672065766202e-05;7364309;0.0007097746713235417;1;0;Young +1257;Bulgaria;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1588;1;6.0514350947841465e-06;7364309;0.0002156346236965342;0;1;Old +1258;Bulgaria;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;192;1;7.316596588152116e-07;7364309;2.6071692537616224e-05;0;1;Old +1259;Bulgaria;M;Professionals;Transportation and storage   ;Y15-29;389;1;1.482372954578736e-06;7364309;5.282233540173287e-05;1;0;Young +1260;Bulgaria;M;Professionals;Transportation and storage   ;Y30-49;1746;1;6.653530022350831e-06;7364309;0.00023708945401394754;1;0;Young +1261;Bulgaria;M;Professionals;Transportation and storage   ;Y50-64;1190;1;4.534765593698447e-06;7364309;0.00016159017770710056;0;1;Old +1262;Bulgaria;M;Professionals;Transportation and storage   ;Y65-84;64;1;2.4388655293840386e-07;7364309;8.690564179205408e-06;0;1;Old +1263;Bulgaria;M;Professionals;Transportation and storage   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1264;Bulgaria;M;Professionals;Accommodation and food service activities   ;Y15-29;364;1;1.387104769837172e-06;7364309;4.9427583769230756e-05;1;0;Young +1265;Bulgaria;M;Professionals;Accommodation and food service activities   ;Y30-49;751;1;2.861856269636583e-06;7364309;0.00010197833904036346;1;0;Young +1266;Bulgaria;M;Professionals;Accommodation and food service activities   ;Y50-64;288;1;1.0974894882228174e-06;7364309;3.910753880642434e-05;0;1;Old +1267;Bulgaria;M;Professionals;Accommodation and food service activities   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1268;Bulgaria;M;Professionals;Information and communication   ;Y15-29;6393;1;2.436198020211275e-05;7364309;0.0008681058874634402;1;0;Young +1269;Bulgaria;M;Professionals;Information and communication   ;Y30-49;7597;1;2.895009597926647e-05;7364309;0.001031597126084742;1;0;Young +1270;Bulgaria;M;Professionals;Information and communication   ;Y50-64;1419;1;5.407422165931174e-06;7364309;0.0001926861026608199;0;1;Old +1271;Bulgaria;M;Professionals;Information and communication   ;Y65-84;91;1;3.46776192459293e-07;7364309;1.2356895942307689e-05;0;1;Old +1272;Bulgaria;M;Professionals;Financial and insurance activities   ;Y15-29;1306;1;4.976809970899304e-06;7364309;0.00017734182528191035;1;0;Young +1273;Bulgaria;M;Professionals;Financial and insurance activities   ;Y30-49;2606;1;9.930755577460633e-06;7364309;0.00035386891017202024;1;0;Young +1274;Bulgaria;M;Professionals;Financial and insurance activities   ;Y50-64;838;1;3.1933895525372256e-06;7364309;0.00011379207472147082;0;1;Old +1275;Bulgaria;M;Professionals;Financial and insurance activities   ;Y65-84;73;1;2.7818309944536694e-07;7364309;9.912674766906168e-06;0;1;Old +1276;Bulgaria;M;Professionals;Financial and insurance activities   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1277;Bulgaria;M;Professionals;Real estate activities   ;Y15-29;167;1;6.363914740736477e-07;7364309;2.267694090511411e-05;1;0;Young +1278;Bulgaria;M;Professionals;Real estate activities   ;Y30-49;515;1;1.9625246056762186e-06;7364309;6.993188362954352e-05;1;0;Young +1279;Bulgaria;M;Professionals;Real estate activities   ;Y50-64;258;1;9.831676665329406e-07;7364309;3.5033836847421805e-05;0;1;Old +1280;Bulgaria;M;Professionals;Real estate activities   ;Y65-84;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;0;1;Old +1281;Bulgaria;M;Professionals;Professional, scientific and technical activities   ;Y15-29;3247;1;1.2373431834234334e-05;7364309;0.00044091034202937436;1;0;Young +1282;Bulgaria;M;Professionals;Professional, scientific and technical activities   ;Y30-49;8918;1;3.398406686101072e-05;7364309;0.0012109758023461537;1;0;Young +1283;Bulgaria;M;Professionals;Professional, scientific and technical activities   ;Y50-64;5007;1;1.908031204004044e-05;7364309;0.0006799008569575231;0;1;Old +1284;Bulgaria;M;Professionals;Professional, scientific and technical activities   ;Y65-84;791;1;3.0142853652230854e-06;7364309;0.00010740994165236684;0;1;Old +1285;Bulgaria;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +1286;Bulgaria;M;Professionals;Administrative and support service activities   ;Y15-29;566;1;2.156871702549009e-06;7364309;7.685717695984783e-05;1;0;Young +1287;Bulgaria;M;Professionals;Administrative and support service activities   ;Y30-49;1434;1;5.464583076776112e-06;7364309;0.00019472295364032118;1;0;Young +1288;Bulgaria;M;Professionals;Administrative and support service activities   ;Y50-64;683;1;2.602726807139529e-06;7364309;9.274461459995771e-05;0;1;Old +1289;Bulgaria;M;Professionals;Administrative and support service activities   ;Y65-84;81;1;3.086689185626674e-07;7364309;1.0998995289306845e-05;0;1;Old +1290;Bulgaria;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;1459;1;5.559851261517676e-06;7364309;0.00019811770527282328;1;0;Young +1291;Bulgaria;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;8948;1;3.409838868270059e-05;7364309;0.0012150495043051562;1;0;Young +1292;Bulgaria;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;5472;1;2.085230027623353e-05;7364309;0.0007430432373220624;0;1;Old +1293;Bulgaria;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;277;1;1.0555714869365292e-06;7364309;3.7613848088123404e-05;0;1;Old +1294;Bulgaria;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1295;Bulgaria;M;Professionals;Education   ;Y15-29;1296;1;4.938702697002678e-06;7364309;0.00017598392462890952;1;0;Young +1296;Bulgaria;M;Professionals;Education   ;Y30-49;8334;1;3.175860206544778e-05;7364309;0.0011316744042109042;1;0;Young +1297;Bulgaria;M;Professionals;Education   ;Y50-64;10037;1;3.824827081004312e-05;7364309;0.001362924885416948;0;1;Old +1298;Bulgaria;M;Professionals;Education   ;Y65-84;1173;1;4.469983228074183e-06;7364309;0.00015928174659699912;0;1;Old +1299;Bulgaria;M;Professionals;Education   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1300;Bulgaria;M;Professionals;Human health and social work activities   ;Y15-29;1065;1;4.058424669990627e-06;7364309;0.00014461641954458999;1;0;Young +1301;Bulgaria;M;Professionals;Human health and social work activities   ;Y30-49;7489;1;2.8538537421182917e-05;7364309;0.001016931799032333;1;0;Young +1302;Bulgaria;M;Professionals;Human health and social work activities   ;Y50-64;5946;1;2.2658585058933584e-05;7364309;0.0008074077282743024;0;1;Old +1303;Bulgaria;M;Professionals;Human health and social work activities   ;Y65-84;1324;1;5.04540306391323e-06;7364309;0.00017978604645731188;0;1;Old +1304;Bulgaria;M;Professionals;Human health and social work activities   ;Y_GE85;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +1305;Bulgaria;M;Professionals;Arts, entertainment and recreation   ;Y15-29;931;1;3.547787199775844e-06;7364309;0.00012642055079437867;1;0;Young +1306;Bulgaria;M;Professionals;Arts, entertainment and recreation   ;Y30-49;2459;1;9.370578651180237e-06;7364309;0.00033390777057290777;1;0;Young +1307;Bulgaria;M;Professionals;Arts, entertainment and recreation   ;Y50-64;1704;1;6.493479471985003e-06;7364309;0.000231386271271344;0;1;Old +1308;Bulgaria;M;Professionals;Arts, entertainment and recreation   ;Y65-84;223;1;8.49792207894751e-07;7364309;3.0281184561918845e-05;0;1;Old +1309;Bulgaria;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1310;Bulgaria;M;Professionals;Other service activities   ;Y15-29;615;1;2.343597344642475e-06;7364309;8.351089015955196e-05;1;0;Young +1311;Bulgaria;M;Professionals;Other service activities   ;Y30-49;1945;1;7.4118647728936806e-06;7364309;0.00026411167700866433;1;0;Young +1312;Bulgaria;M;Professionals;Other service activities   ;Y50-64;1304;1;4.969188516119979e-06;7364309;0.00017707024515131018;0;1;Old +1313;Bulgaria;M;Professionals;Other service activities   ;Y65-84;271;1;1.032707122598554e-06;7364309;3.67991076963229e-05;0;1;Old +1314;Bulgaria;M;Professionals;Other service activities   ;Y_GE85;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +1315;Bulgaria;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +1316;Bulgaria;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +1317;Bulgaria;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +1318;Bulgaria;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;1;0;Young +1319;Bulgaria;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;88;1;3.353440102903053e-07;7364309;1.1949525746407437e-05;1;0;Young +1320;Bulgaria;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;53;1;2.019685516521157e-07;7364309;7.196873460904478e-06;0;1;Old +1321;Bulgaria;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1322;Bulgaria;M;Professionals;Not stated   ;Y15-29;60;1;2.2864364337975364e-07;7364309;8.14740391800507e-06;1;0;Young +1323;Bulgaria;M;Professionals;Not stated   ;Y30-49;157;1;5.98284200177022e-07;7364309;2.1319040252113268e-05;1;0;Young +1324;Bulgaria;M;Professionals;Not stated   ;Y50-64;91;1;3.46776192459293e-07;7364309;1.2356895942307689e-05;0;1;Old +1325;Bulgaria;M;Professionals;Not stated   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +1326;Bulgaria;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;242;1;9.221960282983396e-07;7364309;3.286119580262045e-05;1;0;Young +1327;Bulgaria;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;858;1;3.269604100330477e-06;7364309;0.0001165078760274725;1;0;Young +1328;Bulgaria;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;663;1;2.5265122593462776e-06;7364309;9.002881329395602e-05;0;1;Old +1329;Bulgaria;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;45;1;1.7148273253481523e-07;7364309;6.110552938503802e-06;0;1;Old +1330;Bulgaria;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;95;1;3.6201910201794326e-07;7364309;1.2900056203508027e-05;1;0;Young +1331;Bulgaria;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;722;1;2.7513451753363685e-06;7364309;9.804042714666101e-05;1;0;Young +1332;Bulgaria;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;387;1;1.4747514997994108e-06;7364309;5.25507552711327e-05;0;1;Old +1333;Bulgaria;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;0;1;Old +1334;Bulgaria;M;Technicians and associate professionals;Manufacturing   ;Y15-29;3893;1;1.4835161727956349e-05;7364309;0.000528630724213229;1;0;Young +1335;Bulgaria;M;Technicians and associate professionals;Manufacturing   ;Y30-49;11196;1;4.266490385466203e-05;7364309;0.001520305571099746;1;0;Young +1336;Bulgaria;M;Technicians and associate professionals;Manufacturing   ;Y50-64;5976;1;2.277290688062346e-05;7364309;0.000811481430233305;0;1;Old +1337;Bulgaria;M;Technicians and associate professionals;Manufacturing   ;Y65-84;280;1;1.067003669105517e-06;7364309;3.802121828402366e-05;0;1;Old +1338;Bulgaria;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;551;1;2.099710791704071e-06;7364309;7.482032598034656e-05;1;0;Young +1339;Bulgaria;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;3452;1;1.3154630949115159e-05;7364309;0.0004687473054158917;1;0;Young +1340;Bulgaria;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1995;1;7.602401142376808e-06;7364309;0.0002709011802736686;0;1;Old +1341;Bulgaria;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;0;1;Old +1342;Bulgaria;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;200;1;7.621454779325121e-07;7364309;2.71580130600169e-05;1;0;Young +1343;Bulgaria;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1179;1;4.492847592412159e-06;7364309;0.00016009648698879963;1;0;Young +1344;Bulgaria;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1243;1;4.736734145350563e-06;7364309;0.00016878705116800505;0;1;Old +1345;Bulgaria;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;0;1;Old +1346;Bulgaria;M;Technicians and associate professionals;Construction   ;Y15-29;1817;1;6.924091667016873e-06;7364309;0.00024673054865025356;1;0;Young +1347;Bulgaria;M;Technicians and associate professionals;Construction   ;Y30-49;4612;1;1.757507472112373e-05;7364309;0.0006262637811639897;1;0;Young +1348;Bulgaria;M;Technicians and associate professionals;Construction   ;Y50-64;3466;1;1.3207981132570435e-05;7364309;0.0004706483663300929;0;1;Old +1349;Bulgaria;M;Technicians and associate professionals;Construction   ;Y65-84;261;1;9.945998487019282e-07;7364309;3.544120704332206e-05;0;1;Old +1350;Bulgaria;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3936;1;1.4999023005711839e-05;7364309;0.0005344696970211326;1;0;Young +1351;Bulgaria;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7939;1;3.0253364746531067e-05;7364309;0.0010780373284173708;1;0;Young +1352;Bulgaria;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2017;1;7.686237144949384e-06;7364309;0.00027388856171027044;0;1;Old +1353;Bulgaria;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;113;1;4.3061219503186933e-07;7364309;1.534427737890955e-05;0;1;Old +1354;Bulgaria;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;1065;1;4.058424669990627e-06;7364309;0.00014461641954458999;1;0;Young +1355;Bulgaria;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;5543;1;2.1122861920899574e-05;7364309;0.0007526843319583684;1;0;Young +1356;Bulgaria;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;3675;1;1.400442315700991e-05;7364309;0.0004990284899778106;0;1;Old +1357;Bulgaria;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;74;1;2.819938268350295e-07;7364309;1.0048464832206252e-05;0;1;Old +1358;Bulgaria;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;423;1;1.6119376858272632e-06;7364309;5.7439197621935746e-05;1;0;Young +1359;Bulgaria;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;807;1;3.075257003457686e-06;7364309;0.0001095825826971682;1;0;Young +1360;Bulgaria;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;342;1;1.3032687672645957e-06;7364309;4.64402023326289e-05;0;1;Old +1361;Bulgaria;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;0;1;Old +1362;Bulgaria;M;Technicians and associate professionals;Information and communication   ;Y15-29;3372;1;1.2849772757942154e-05;7364309;0.00045788410019188494;1;0;Young +1363;Bulgaria;M;Technicians and associate professionals;Information and communication   ;Y30-49;4754;1;1.8116198010455814e-05;7364309;0.0006455459704366017;1;0;Young +1364;Bulgaria;M;Technicians and associate professionals;Information and communication   ;Y50-64;1270;1;4.839623784871452e-06;7364309;0.00017245338293110733;0;1;Old +1365;Bulgaria;M;Technicians and associate professionals;Information and communication   ;Y65-84;61;1;2.3245437076941619e-07;7364309;8.283193983305154e-06;0;1;Old +1366;Bulgaria;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;1437;1;5.4760152589451e-06;7364309;0.00019513032383622144;1;0;Young +1367;Bulgaria;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2089;1;7.960609517005088e-06;7364309;0.00028366544641187654;1;0;Young +1368;Bulgaria;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;521;1;1.9853889700141942e-06;7364309;7.074662402134403e-05;0;1;Old +1369;Bulgaria;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;40;1;1.5242909558650242e-07;7364309;5.43160261200338e-06;0;1;Old +1370;Bulgaria;M;Technicians and associate professionals;Real estate activities   ;Y15-29;323;1;1.2308649468610071e-06;7364309;4.386019109192729e-05;1;0;Young +1371;Bulgaria;M;Technicians and associate professionals;Real estate activities   ;Y30-49;746;1;2.84280263268827e-06;7364309;0.00010129938871386304;1;0;Young +1372;Bulgaria;M;Technicians and associate professionals;Real estate activities   ;Y50-64;413;1;1.5738304119306376e-06;7364309;5.60812969689349e-05;0;1;Old +1373;Bulgaria;M;Technicians and associate professionals;Real estate activities   ;Y65-84;29;1;1.1051109430021426e-07;7364309;3.93791189370245e-06;0;1;Old +1374;Bulgaria;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;1474;1;5.617012172362614e-06;7364309;0.00020015455625232455;1;0;Young +1375;Bulgaria;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;2270;1;8.650351174534012e-06;7364309;0.00030824344823119184;1;0;Young +1376;Bulgaria;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;1284;1;4.892973968326728e-06;7364309;0.0001743544438453085;0;1;Old +1377;Bulgaria;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;160;1;6.097163823460097e-07;7364309;2.172641044801352e-05;0;1;Old +1378;Bulgaria;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;788;1;3.0028531830540976e-06;7364309;0.00010700257145646658;1;0;Young +1379;Bulgaria;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;1375;1;5.239750160786021e-06;7364309;0.0001867113397876162;1;0;Young +1380;Bulgaria;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;653;1;2.488404985449652e-06;7364309;8.867091264095518e-05;0;1;Old +1381;Bulgaria;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;41;1;1.56239822976165e-07;7364309;5.567392677303465e-06;0;1;Old +1382;Bulgaria;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;860;1;3.277225555109802e-06;7364309;0.00011677945615807267;1;0;Young +1383;Bulgaria;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;3607;1;1.3745293694512855e-05;7364309;0.0004897947655374048;1;0;Young +1384;Bulgaria;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2719;1;1.0361367772492501e-05;7364309;0.0003692131875509298;0;1;Old +1385;Bulgaria;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;147;1;5.601769262803964e-07;7364309;1.9961139599112422e-05;0;1;Old +1386;Bulgaria;M;Technicians and associate professionals;Education   ;Y15-29;187;1;7.126060218668988e-07;7364309;2.5392742211115803e-05;1;0;Young +1387;Bulgaria;M;Technicians and associate professionals;Education   ;Y30-49;389;1;1.482372954578736e-06;7364309;5.282233540173287e-05;1;0;Young +1388;Bulgaria;M;Technicians and associate professionals;Education   ;Y50-64;444;1;1.691962961010177e-06;7364309;6.029078899323752e-05;0;1;Old +1389;Bulgaria;M;Technicians and associate professionals;Education   ;Y65-84;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;0;1;Old +1390;Bulgaria;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;220;1;8.383600257257633e-07;7364309;2.987381436601859e-05;1;0;Young +1391;Bulgaria;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;680;1;2.591294624970541e-06;7364309;9.233724440405746e-05;1;0;Young +1392;Bulgaria;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;615;1;2.343597344642475e-06;7364309;8.351089015955196e-05;0;1;Old +1393;Bulgaria;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;64;1;2.4388655293840386e-07;7364309;8.690564179205408e-06;0;1;Old +1394;Bulgaria;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;1904;1;7.255624949917516e-06;7364309;0.0002585442843313609;1;0;Young +1395;Bulgaria;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2167;1;8.25784625339877e-06;7364309;0.0002942570715052831;1;0;Young +1396;Bulgaria;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;1089;1;4.149882127342528e-06;7364309;0.00014787538111179203;0;1;Old +1397;Bulgaria;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;108;1;4.1155855808355654e-07;7364309;1.4665327052409126e-05;0;1;Old +1398;Bulgaria;M;Technicians and associate professionals;Other service activities   ;Y15-29;749;1;2.854234814857258e-06;7364309;0.0001017067589097633;1;0;Young +1399;Bulgaria;M;Technicians and associate professionals;Other service activities   ;Y30-49;1867;1;7.1146280365e-06;7364309;0.00025352005191525776;1;0;Young +1400;Bulgaria;M;Technicians and associate professionals;Other service activities   ;Y50-64;1110;1;4.229907402525442e-06;7364309;0.0001507269724830938;0;1;Old +1401;Bulgaria;M;Technicians and associate professionals;Other service activities   ;Y65-84;135;1;5.144481976044457e-07;7364309;1.8331658815511407e-05;0;1;Old +1402;Bulgaria;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +1403;Bulgaria;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +1404;Bulgaria;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;1;0;Young +1405;Bulgaria;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;65;1;2.4769728032806646e-07;7364309;8.826354244505493e-06;1;0;Young +1406;Bulgaria;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;30;1;1.1432182168987682e-07;7364309;4.073701959002535e-06;0;1;Old +1407;Bulgaria;M;Technicians and associate professionals;Not stated   ;Y15-29;46;1;1.7529345992447778e-07;7364309;6.246343003803887e-06;1;0;Young +1408;Bulgaria;M;Technicians and associate professionals;Not stated   ;Y30-49;112;1;4.268014676422068e-07;7364309;1.5208487313609464e-05;1;0;Young +1409;Bulgaria;M;Technicians and associate professionals;Not stated   ;Y50-64;71;1;2.705616446660418e-07;7364309;9.641094636306e-06;0;1;Old +1410;Bulgaria;M;Technicians and associate professionals;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1411;Bulgaria;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;137;1;5.220696523837708e-07;7364309;1.8603238946111576e-05;1;0;Young +1412;Bulgaria;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;446;1;1.699584415789502e-06;7364309;6.056236912383769e-05;1;0;Young +1413;Bulgaria;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;488;1;1.8596349661553295e-06;7364309;6.626555186644123e-05;0;1;Old +1414;Bulgaria;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;41;1;1.56239822976165e-07;7364309;5.567392677303465e-06;0;1;Old +1415;Bulgaria;M;Clerical support workers;Mining and quarrying   ;Y15-29;38;1;1.448076408071773e-07;7364309;5.160022481403211e-06;1;0;Young +1416;Bulgaria;M;Clerical support workers;Mining and quarrying   ;Y30-49;129;1;4.915838332664703e-07;7364309;1.7516918423710902e-05;1;0;Young +1417;Bulgaria;M;Clerical support workers;Mining and quarrying   ;Y50-64;92;1;3.5058691984895557e-07;7364309;1.2492686007607774e-05;0;1;Old +1418;Bulgaria;M;Clerical support workers;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1419;Bulgaria;M;Clerical support workers;Manufacturing   ;Y15-29;1671;1;6.367725468126139e-06;7364309;0.0002269051991164412;1;0;Young +1420;Bulgaria;M;Clerical support workers;Manufacturing   ;Y30-49;4172;1;1.58983546696722e-05;7364309;0.0005665161524319526;1;0;Young +1421;Bulgaria;M;Clerical support workers;Manufacturing   ;Y50-64;2004;1;7.63669768888377e-06;7364309;0.00027212329086136937;0;1;Old +1422;Bulgaria;M;Clerical support workers;Manufacturing   ;Y65-84;124;1;4.725301963181575e-07;7364309;1.6837968097210478e-05;0;1;Old +1423;Bulgaria;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;101;1;3.848834663559186e-07;7364309;1.3714796595308535e-05;1;0;Young +1424;Bulgaria;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;329;1;1.2537293111989825e-06;7364309;4.4674931483727804e-05;1;0;Young +1425;Bulgaria;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;249;1;9.488711200259775e-07;7364309;3.381172625972104e-05;0;1;Old +1426;Bulgaria;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1427;Bulgaria;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;104;1;3.963156485249063e-07;7364309;1.4122166791208789e-05;1;0;Young +1428;Bulgaria;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;591;1;2.2521398872905733e-06;7364309;8.025192859234995e-05;1;0;Young +1429;Bulgaria;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;583;1;2.221654068173273e-06;7364309;7.916560806994927e-05;0;1;Old +1430;Bulgaria;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;0;1;Old +1431;Bulgaria;M;Clerical support workers;Construction   ;Y15-29;875;1;3.3343864659547405e-06;7364309;0.00011881630713757394;1;0;Young +1432;Bulgaria;M;Clerical support workers;Construction   ;Y30-49;1846;1;7.0346027613170865e-06;7364309;0.000250668460543956;1;0;Young +1433;Bulgaria;M;Clerical support workers;Construction   ;Y50-64;1111;1;4.2337181299151046e-06;7364309;0.00015086276254839387;0;1;Old +1434;Bulgaria;M;Clerical support workers;Construction   ;Y65-84;106;1;4.039371033042314e-07;7364309;1.4393746921808956e-05;0;1;Old +1435;Bulgaria;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4889;1;1.8630646208060257e-05;7364309;0.0006638776292521131;1;0;Young +1436;Bulgaria;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8591;1;3.273795900459106e-05;7364309;0.001166572450993026;1;0;Young +1437;Bulgaria;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2416;1;9.206717373424747e-06;7364309;0.00032806879776500417;0;1;Old +1438;Bulgaria;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;167;1;6.363914740736477e-07;7364309;2.267694090511411e-05;0;1;Old +1439;Bulgaria;M;Clerical support workers;Transportation and storage   ;Y15-29;1298;1;4.946324151782003e-06;7364309;0.0001762555047595097;1;0;Young +1440;Bulgaria;M;Clerical support workers;Transportation and storage   ;Y30-49;2708;1;1.0319449771206214e-05;7364309;0.0003677194968326288;1;0;Young +1441;Bulgaria;M;Clerical support workers;Transportation and storage   ;Y50-64;1740;1;6.630665658012855e-06;7364309;0.00023627471362214705;0;1;Old +1442;Bulgaria;M;Clerical support workers;Transportation and storage   ;Y65-84;81;1;3.086689185626674e-07;7364309;1.0998995289306845e-05;0;1;Old +1443;Bulgaria;M;Clerical support workers;Transportation and storage   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1444;Bulgaria;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;1262;1;4.809137965754151e-06;7364309;0.00017136706240870664;1;0;Young +1445;Bulgaria;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;1130;1;4.306121950318693e-06;7364309;0.0001534427737890955;1;0;Young +1446;Bulgaria;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;400;1;1.5242909558650242e-06;7364309;5.43160261200338e-05;0;1;Old +1447;Bulgaria;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;0;1;Old +1448;Bulgaria;M;Clerical support workers;Information and communication   ;Y15-29;1941;1;7.39662186333503e-06;7364309;0.00026356851674746404;1;0;Young +1449;Bulgaria;M;Clerical support workers;Information and communication   ;Y30-49;1315;1;5.0111065174062675e-06;7364309;0.00017856393586961113;1;0;Young +1450;Bulgaria;M;Clerical support workers;Information and communication   ;Y50-64;309;1;1.1775147634057311e-06;7364309;4.195913017772611e-05;0;1;Old +1451;Bulgaria;M;Clerical support workers;Information and communication   ;Y65-84;26;1;9.907891213122657e-08;7364309;3.5305416978021972e-06;0;1;Old +1452;Bulgaria;M;Clerical support workers;Financial and insurance activities   ;Y15-29;1442;1;5.495068895893413e-06;7364309;0.00019580927416272184;1;0;Young +1453;Bulgaria;M;Clerical support workers;Financial and insurance activities   ;Y30-49;1859;1;7.0841422173827e-06;7364309;0.00025243373139285707;1;0;Young +1454;Bulgaria;M;Clerical support workers;Financial and insurance activities   ;Y50-64;486;1;1.8520135113760045e-06;7364309;6.599397173584106e-05;0;1;Old +1455;Bulgaria;M;Clerical support workers;Financial and insurance activities   ;Y65-84;48;1;1.829149147038029e-07;7364309;6.517923134404056e-06;0;1;Old +1456;Bulgaria;M;Clerical support workers;Real estate activities   ;Y15-29;325;1;1.2384864016403321e-06;7364309;4.4131771222527465e-05;1;0;Young +1457;Bulgaria;M;Clerical support workers;Real estate activities   ;Y30-49;630;1;2.400758255487413e-06;7364309;8.554774113905323e-05;1;0;Young +1458;Bulgaria;M;Clerical support workers;Real estate activities   ;Y50-64;340;1;1.2956473124852705e-06;7364309;4.616862220202873e-05;0;1;Old +1459;Bulgaria;M;Clerical support workers;Real estate activities   ;Y65-84;47;1;1.7910418731414036e-07;7364309;6.3821330691039714e-06;0;1;Old +1460;Bulgaria;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;1381;1;5.262614525123996e-06;7364309;0.0001875260801794167;1;0;Young +1461;Bulgaria;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;1945;1;7.4118647728936806e-06;7364309;0.00026411167700866433;1;0;Young +1462;Bulgaria;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;814;1;3.1019320951853244e-06;7364309;0.00011053311315426879;0;1;Old +1463;Bulgaria;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;64;1;2.4388655293840386e-07;7364309;8.690564179205408e-06;0;1;Old +1464;Bulgaria;M;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1465;Bulgaria;M;Clerical support workers;Administrative and support service activities   ;Y15-29;1216;1;4.633844505829673e-06;7364309;0.00016512071940490275;1;0;Young +1466;Bulgaria;M;Clerical support workers;Administrative and support service activities   ;Y30-49;1544;1;5.883763089638994e-06;7364309;0.00020965986082333048;1;0;Young +1467;Bulgaria;M;Clerical support workers;Administrative and support service activities   ;Y50-64;853;1;3.250550463382164e-06;7364309;0.00011582892570097208;0;1;Old +1468;Bulgaria;M;Clerical support workers;Administrative and support service activities   ;Y65-84;111;1;4.2299074025254424e-07;7364309;1.507269724830938e-05;0;1;Old +1469;Bulgaria;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;640;1;2.4388655293840387e-06;7364309;8.690564179205408e-05;1;0;Young +1470;Bulgaria;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;3679;1;1.4019666066568561e-05;7364309;0.0004995716502390108;1;0;Young +1471;Bulgaria;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;2836;1;1.0807222877083022e-05;7364309;0.00038510062519103965;0;1;Old +1472;Bulgaria;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;182;1;6.93552384918586e-07;7364309;2.4713791884615378e-05;0;1;Old +1473;Bulgaria;M;Clerical support workers;Education   ;Y15-29;172;1;6.554451110219605e-07;7364309;2.3355891231614535e-05;1;0;Young +1474;Bulgaria;M;Clerical support workers;Education   ;Y30-49;509;1;1.9396602413382435e-06;7364309;6.9117143237743e-05;1;0;Young +1475;Bulgaria;M;Clerical support workers;Education   ;Y50-64;692;1;2.6370233536464918e-06;7364309;9.396672518765847e-05;0;1;Old +1476;Bulgaria;M;Clerical support workers;Education   ;Y65-84;71;1;2.705616446660418e-07;7364309;9.641094636306e-06;0;1;Old +1477;Bulgaria;M;Clerical support workers;Human health and social work activities   ;Y15-29;161;1;6.135271097356723e-07;7364309;2.1862200513313606e-05;1;0;Young +1478;Bulgaria;M;Clerical support workers;Human health and social work activities   ;Y30-49;364;1;1.387104769837172e-06;7364309;4.9427583769230756e-05;1;0;Young +1479;Bulgaria;M;Clerical support workers;Human health and social work activities   ;Y50-64;445;1;1.6957736883998393e-06;7364309;6.0426579058537604e-05;0;1;Old +1480;Bulgaria;M;Clerical support workers;Human health and social work activities   ;Y65-84;37;1;1.4099691341751475e-07;7364309;5.024232416103126e-06;0;1;Old +1481;Bulgaria;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;1388;1;5.289289616851634e-06;7364309;0.0001884766106365173;1;0;Young +1482;Bulgaria;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;1182;1;4.504279774581147e-06;7364309;0.0001605038571846999;1;0;Young +1483;Bulgaria;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;471;1;1.7948526005310661e-06;7364309;6.39571207563398e-05;0;1;Old +1484;Bulgaria;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;75;1;2.8580455422469204e-07;7364309;1.0184254897506337e-05;0;1;Old +1485;Bulgaria;M;Clerical support workers;Other service activities   ;Y15-29;519;1;1.977767515234869e-06;7364309;7.047504389074386e-05;1;0;Young +1486;Bulgaria;M;Clerical support workers;Other service activities   ;Y30-49;883;1;3.364872285072041e-06;7364309;0.00011990262765997462;1;0;Young +1487;Bulgaria;M;Clerical support workers;Other service activities   ;Y50-64;508;1;1.935849513948581e-06;7364309;6.898135317244293e-05;0;1;Old +1488;Bulgaria;M;Clerical support workers;Other service activities   ;Y65-84;78;1;2.9723673639367974e-07;7364309;1.0591625093406591e-05;0;1;Old +1489;Bulgaria;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;1;0;Young +1490;Bulgaria;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;14;1;5.335018345527585e-08;7364309;1.901060914201183e-06;1;0;Young +1491;Bulgaria;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;16;1;6.097163823460096e-08;7364309;2.172641044801352e-06;1;0;Young +1492;Bulgaria;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;83;1;3.1629037334199253e-07;7364309;1.1270575419907014e-05;1;0;Young +1493;Bulgaria;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;37;1;1.4099691341751475e-07;7364309;5.024232416103126e-06;0;1;Old +1494;Bulgaria;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1495;Bulgaria;M;Clerical support workers;Not stated   ;Y15-29;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;1;0;Young +1496;Bulgaria;M;Clerical support workers;Not stated   ;Y30-49;85;1;3.239118281213176e-07;7364309;1.1542155550507183e-05;1;0;Young +1497;Bulgaria;M;Clerical support workers;Not stated   ;Y50-64;41;1;1.56239822976165e-07;7364309;5.567392677303465e-06;0;1;Old +1498;Bulgaria;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;682;1;2.598916079749866e-06;7364309;9.260882453465762e-05;1;0;Young +1499;Bulgaria;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2895;1;1.1032055793073112e-05;7364309;0.00039311223904374464;1;0;Young +1500;Bulgaria;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;3824;1;1.4572221538069631e-05;7364309;0.0005192612097075232;0;1;Old +1501;Bulgaria;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;309;1;1.1775147634057311e-06;7364309;4.195913017772611e-05;0;1;Old +1502;Bulgaria;M;Service and sales workers;Mining and quarrying   ;Y15-29;125;1;4.7634092370782007e-07;7364309;1.6973758162510564e-05;1;0;Young +1503;Bulgaria;M;Service and sales workers;Mining and quarrying   ;Y30-49;471;1;1.7948526005310661e-06;7364309;6.39571207563398e-05;1;0;Young +1504;Bulgaria;M;Service and sales workers;Mining and quarrying   ;Y50-64;535;1;2.03873915346947e-06;7364309;7.264768493554521e-05;0;1;Old +1505;Bulgaria;M;Service and sales workers;Mining and quarrying   ;Y65-84;47;1;1.7910418731414036e-07;7364309;6.3821330691039714e-06;0;1;Old +1506;Bulgaria;M;Service and sales workers;Manufacturing   ;Y15-29;2878;1;1.096727342744885e-05;7364309;0.00039080380793364317;1;0;Young +1507;Bulgaria;M;Service and sales workers;Manufacturing   ;Y30-49;7061;1;2.690754609840734e-05;7364309;0.0009588136510838966;1;0;Young +1508;Bulgaria;M;Service and sales workers;Manufacturing   ;Y50-64;6532;1;2.4891671309275844e-05;7364309;0.000886980706540152;0;1;Old +1509;Bulgaria;M;Service and sales workers;Manufacturing   ;Y65-84;775;1;2.9533137269884843e-06;7364309;0.00010523730060756549;0;1;Old +1510;Bulgaria;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;142;1;5.411232893320836e-07;7364309;1.9282189272612e-05;1;0;Young +1511;Bulgaria;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;354;1;1.3489974959405465e-06;7364309;4.8069683116229914e-05;1;0;Young +1512;Bulgaria;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;235;1;8.955209365707018e-07;7364309;3.191066534551986e-05;0;1;Old +1513;Bulgaria;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;32;1;1.2194327646920193e-07;7364309;4.345282089602704e-06;0;1;Old +1514;Bulgaria;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;102;1;3.886941937455812e-07;7364309;1.385058666060862e-05;1;0;Young +1515;Bulgaria;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;542;1;2.065414245197108e-06;7364309;7.35982153926458e-05;1;0;Young +1516;Bulgaria;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;775;1;2.9533137269884843e-06;7364309;0.00010523730060756549;0;1;Old +1517;Bulgaria;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;81;1;3.086689185626674e-07;7364309;1.0998995289306845e-05;0;1;Old +1518;Bulgaria;M;Service and sales workers;Construction   ;Y15-29;1371;1;5.224507251227371e-06;7364309;0.00018616817952641585;1;0;Young +1519;Bulgaria;M;Service and sales workers;Construction   ;Y30-49;2756;1;1.0502364685910018e-05;7364309;0.0003742374199670329;1;0;Young +1520;Bulgaria;M;Service and sales workers;Construction   ;Y50-64;3001;1;1.1435992896377345e-05;7364309;0.00040750598596555357;0;1;Old +1521;Bulgaria;M;Service and sales workers;Construction   ;Y65-84;429;1;1.6348020501652386e-06;7364309;5.825393801373625e-05;0;1;Old +1522;Bulgaria;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;29050;1;0.00011070163066969738;7364309;0.003944701396967455;1;0;Young +1523;Bulgaria;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;43315;1;0.0001650616568832338;7364309;0.00588174667847316;1;0;Young +1524;Bulgaria;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;14900;1;5.6779838105972155e-05;7364309;0.002023271972971259;0;1;Old +1525;Bulgaria;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1619;1;6.1695676438636854e-06;7364309;0.00021984411572083682;0;1;Old +1526;Bulgaria;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1527;Bulgaria;M;Service and sales workers;Transportation and storage   ;Y15-29;1466;1;5.5865263532453134e-06;7364309;0.0001990682357299239;1;0;Young +1528;Bulgaria;M;Service and sales workers;Transportation and storage   ;Y30-49;5421;1;2.065795317936074e-05;7364309;0.0007361179439917581;1;0;Young +1529;Bulgaria;M;Service and sales workers;Transportation and storage   ;Y50-64;3461;1;1.3188927495622122e-05;7364309;0.00046996941600359245;0;1;Old +1530;Bulgaria;M;Service and sales workers;Transportation and storage   ;Y65-84;219;1;8.345492983361008e-07;7364309;2.9738024300718507e-05;0;1;Old +1531;Bulgaria;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;16769;1;6.390208759725147e-05;7364309;0.002277063605017117;1;0;Young +1532;Bulgaria;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;14873;1;5.667694846645126e-05;7364309;0.0020196056412081567;1;0;Young +1533;Bulgaria;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;3695;1;1.408063770480316e-05;7364309;0.0005017442912838122;0;1;Old +1534;Bulgaria;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;225;1;8.574136626740762e-07;7364309;3.055276469251901e-05;0;1;Old +1535;Bulgaria;M;Service and sales workers;Information and communication   ;Y15-29;772;1;2.941881544819497e-06;7364309;0.00010482993041166524;1;0;Young +1536;Bulgaria;M;Service and sales workers;Information and communication   ;Y30-49;508;1;1.935849513948581e-06;7364309;6.898135317244293e-05;1;0;Young +1537;Bulgaria;M;Service and sales workers;Information and communication   ;Y50-64;205;1;7.811991148808249e-07;7364309;2.7836963386517322e-05;0;1;Old +1538;Bulgaria;M;Service and sales workers;Information and communication   ;Y65-84;44;1;1.6767200514515266e-07;7364309;5.9747628732037185e-06;0;1;Old +1539;Bulgaria;M;Service and sales workers;Financial and insurance activities   ;Y15-29;502;1;1.9129851496106053e-06;7364309;6.816661278064242e-05;1;0;Young +1540;Bulgaria;M;Service and sales workers;Financial and insurance activities   ;Y30-49;1263;1;4.812948693143814e-06;7364309;0.00017150285247400672;1;0;Young +1541;Bulgaria;M;Service and sales workers;Financial and insurance activities   ;Y50-64;974;1;3.7116484775313338e-06;7364309;0.0001322595236022823;0;1;Old +1542;Bulgaria;M;Service and sales workers;Financial and insurance activities   ;Y65-84;48;1;1.829149147038029e-07;7364309;6.517923134404056e-06;0;1;Old +1543;Bulgaria;M;Service and sales workers;Real estate activities   ;Y15-29;560;1;2.134007338211034e-06;7364309;7.604243656804733e-05;1;0;Young +1544;Bulgaria;M;Service and sales workers;Real estate activities   ;Y30-49;842;1;3.208632462095876e-06;7364309;0.00011433523498267115;1;0;Young +1545;Bulgaria;M;Service and sales workers;Real estate activities   ;Y50-64;901;1;3.433465378085967e-06;7364309;0.00012234684883537613;0;1;Old +1546;Bulgaria;M;Service and sales workers;Real estate activities   ;Y65-84;182;1;6.93552384918586e-07;7364309;2.4713791884615378e-05;0;1;Old +1547;Bulgaria;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;729;1;2.7780202670640067e-06;7364309;9.89909576037616e-05;1;0;Young +1548;Bulgaria;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;1319;1;5.026349426964917e-06;7364309;0.00017910709613081145;1;0;Young +1549;Bulgaria;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;748;1;2.8504240874675953e-06;7364309;0.00010157096884446321;0;1;Old +1550;Bulgaria;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;131;1;4.992052880457954e-07;7364309;1.7788498554311068e-05;0;1;Old +1551;Bulgaria;M;Service and sales workers;Administrative and support service activities   ;Y15-29;8825;1;3.36296692137721e-05;7364309;0.0011983473262732458;1;0;Young +1552;Bulgaria;M;Service and sales workers;Administrative and support service activities   ;Y30-49;22973;1;8.7543840322718e-05;7364309;0.0031195051701388412;1;0;Young +1553;Bulgaria;M;Service and sales workers;Administrative and support service activities   ;Y50-64;20657;1;7.871819568825952e-05;7364309;0.0028050153789038455;0;1;Old +1554;Bulgaria;M;Service and sales workers;Administrative and support service activities   ;Y65-84;3287;1;1.2525860929820837e-05;7364309;0.00044634194464137776;0;1;Old +1555;Bulgaria;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2918;1;1.1119702523035352e-05;7364309;0.00039623541054564657;1;0;Young +1556;Bulgaria;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;17773;1;6.772805789647269e-05;7364309;0.002413396830578402;1;0;Young +1557;Bulgaria;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;5230;1;1.9930104247935192e-05;7364309;0.0007101820415194419;0;1;Old +1558;Bulgaria;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;318;1;1.2118113099126943e-06;7364309;4.3181240765426875e-05;0;1;Old +1559;Bulgaria;M;Service and sales workers;Education   ;Y15-29;299;1;1.1394074895091056e-06;7364309;4.060122952472527e-05;1;0;Young +1560;Bulgaria;M;Service and sales workers;Education   ;Y30-49;1342;1;5.113996156927156e-06;7364309;0.0001822302676327134;1;0;Young +1561;Bulgaria;M;Service and sales workers;Education   ;Y50-64;2134;1;8.132092249539904e-06;7364309;0.0002897759993503803;0;1;Old +1562;Bulgaria;M;Service and sales workers;Education   ;Y65-84;254;1;9.679247569742904e-07;7364309;3.4490676586221466e-05;0;1;Old +1563;Bulgaria;M;Service and sales workers;Human health and social work activities   ;Y15-29;332;1;1.2651614933679701e-06;7364309;4.5082301679628056e-05;1;0;Young +1564;Bulgaria;M;Service and sales workers;Human health and social work activities   ;Y30-49;1501;1;5.719901811883504e-06;7364309;0.00020382088801542683;1;0;Young +1565;Bulgaria;M;Service and sales workers;Human health and social work activities   ;Y50-64;1770;1;6.744987479702732e-06;7364309;0.00024034841558114958;0;1;Old +1566;Bulgaria;M;Service and sales workers;Human health and social work activities   ;Y65-84;149;1;5.677983810597215e-07;7364309;2.023271972971259e-05;0;1;Old +1567;Bulgaria;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;1697;1;6.466804380257365e-06;7364309;0.0002304357408142434;1;0;Young +1568;Bulgaria;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;1783;1;6.794526935768345e-06;7364309;0.00024211368643005068;1;0;Young +1569;Bulgaria;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;751;1;2.861856269636583e-06;7364309;0.00010197833904036346;0;1;Old +1570;Bulgaria;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;91;1;3.46776192459293e-07;7364309;1.2356895942307689e-05;0;1;Old +1571;Bulgaria;M;Service and sales workers;Other service activities   ;Y15-29;1757;1;6.695448023637119e-06;7364309;0.00023858314473224846;1;0;Young +1572;Bulgaria;M;Service and sales workers;Other service activities   ;Y30-49;3428;1;1.3063173491763258e-05;7364309;0.00046548834384868966;1;0;Young +1573;Bulgaria;M;Service and sales workers;Other service activities   ;Y50-64;1863;1;7.099385126941351e-06;7364309;0.0002529768916540574;0;1;Old +1574;Bulgaria;M;Service and sales workers;Other service activities   ;Y65-84;311;1;1.1851362181850563e-06;7364309;4.223071030832628e-05;0;1;Old +1575;Bulgaria;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;1;0;Young +1576;Bulgaria;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;72;1;2.7437237205570434e-07;7364309;9.776884701606085e-06;1;0;Young +1577;Bulgaria;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;56;1;2.134007338211034e-07;7364309;7.604243656804732e-06;0;1;Old +1578;Bulgaria;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +1579;Bulgaria;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;101;1;3.848834663559186e-07;7364309;1.3714796595308535e-05;1;0;Young +1580;Bulgaria;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;573;1;2.1835467942766474e-06;7364309;7.780770741694842e-05;1;0;Young +1581;Bulgaria;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;116;1;4.4204437720085703e-07;7364309;1.57516475748098e-05;0;1;Old +1582;Bulgaria;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +1583;Bulgaria;M;Service and sales workers;Not stated   ;Y15-29;199;1;7.583347505428495e-07;7364309;2.7022222994716815e-05;1;0;Young +1584;Bulgaria;M;Service and sales workers;Not stated   ;Y30-49;392;1;1.4938051367477238e-06;7364309;5.3229705597633125e-05;1;0;Young +1585;Bulgaria;M;Service and sales workers;Not stated   ;Y50-64;163;1;6.211485645149974e-07;7364309;2.2133780643913772e-05;0;1;Old +1586;Bulgaria;M;Service and sales workers;Not stated   ;Y65-84;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;0;1;Old +1587;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;8320;1;3.1705251881992506e-05;7364309;0.001129773343296703;1;0;Young +1588;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;27609;1;0.00010521037250119363;7364309;0.003749027912870033;1;0;Young +1589;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;18434;1;7.024694870103965e-05;7364309;0.0025031540637417576;0;1;Old +1590;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;977;1;3.7230806597003216e-06;7364309;0.00013266689379818255;0;1;Old +1591;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;0;1;Old +1592;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;16;1;6.097163823460096e-08;7364309;2.172641044801352e-06;1;0;Young +1593;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;46;1;1.7529345992447778e-07;7364309;6.246343003803887e-06;1;0;Young +1594;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;0;1;Old +1595;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;272;1;1.0365178499882164e-06;7364309;3.6934897761622986e-05;1;0;Young +1596;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;854;1;3.2543611907718268e-06;7364309;0.00011596471576627217;1;0;Young +1597;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;427;1;1.6271805953859134e-06;7364309;5.7982357883136085e-05;0;1;Old +1598;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1599;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +1600;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;1;0;Young +1601;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;0;1;Old +1602;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;1;0;Young +1603;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;33;1;1.257540038588645e-07;7364309;4.481072154902789e-06;1;0;Young +1604;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;0;1;Old +1605;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;102;1;3.886941937455812e-07;7364309;1.385058666060862e-05;1;0;Young +1606;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;220;1;8.383600257257633e-07;7364309;2.987381436601859e-05;1;0;Young +1607;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;87;1;3.3153328290064277e-07;7364309;1.1813735681107352e-05;0;1;Old +1608;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;179;1;6.821202027495983e-07;7364309;2.4306421688715126e-05;1;0;Young +1609;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;501;1;1.9091744222209427e-06;7364309;6.803082271534234e-05;1;0;Young +1610;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;244;1;9.298174830776647e-07;7364309;3.313277593322062e-05;0;1;Old +1611;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +1612;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;1;0;Young +1613;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;79;1;3.010474637833423e-07;7364309;1.0727415158706675e-05;1;0;Young +1614;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;43;1;1.638612777554901e-07;7364309;5.838972807903634e-06;0;1;Old +1615;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;46;1;1.7529345992447778e-07;7364309;6.246343003803887e-06;1;0;Young +1616;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;97;1;3.6964055679726836e-07;7364309;1.3171636334108197e-05;1;0;Young +1617;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;77;1;2.9342600900401714e-07;7364309;1.0455835028106506e-05;0;1;Old +1618;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;1;0;Young +1619;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +1620;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1621;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;1;0;Young +1622;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +1623;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +1624;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;1;0;Young +1625;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;32;1;1.2194327646920193e-07;7364309;4.345282089602704e-06;1;0;Young +1626;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;25;1;9.526818474156401e-08;7364309;3.3947516325021126e-06;0;1;Old +1627;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;1;0;Young +1628;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;62;1;2.3626509815907876e-07;7364309;8.418984048605239e-06;1;0;Young +1629;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;85;1;3.239118281213176e-07;7364309;1.1542155550507183e-05;0;1;Old +1630;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +1631;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;97;1;3.6964055679726836e-07;7364309;1.3171636334108197e-05;1;0;Young +1632;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;270;1;1.0288963952088914e-06;7364309;3.666331763102281e-05;1;0;Young +1633;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;228;1;8.688458448430638e-07;7364309;3.096013488841926e-05;0;1;Old +1634;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;20;1;7.621454779325121e-08;7364309;2.71580130600169e-06;0;1;Old +1635;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;1;0;Young +1636;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;197;1;7.507132957635244e-07;7364309;2.6750642864116646e-05;1;0;Young +1637;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;161;1;6.135271097356723e-07;7364309;2.1862200513313606e-05;0;1;Old +1638;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1639;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +1640;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;28;1;1.067003669105517e-07;7364309;3.802121828402366e-06;1;0;Young +1641;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;66;1;2.51508007717729e-07;7364309;8.962144309805577e-06;0;1;Old +1642;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +1643;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;1;0;Young +1644;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;0;1;Old +1645;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;1;0;Young +1646;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;60;1;2.2864364337975364e-07;7364309;8.14740391800507e-06;1;0;Young +1647;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;0;1;Old +1648;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;24;1;9.145745735190145e-08;7364309;3.258961567202028e-06;1;0;Young +1649;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;67;1;2.5531873510739155e-07;7364309;9.097934375105662e-06;1;0;Young +1650;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;77;1;2.9342600900401714e-07;7364309;1.0455835028106506e-05;0;1;Old +1651;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +1652;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;56;1;2.134007338211034e-07;7364309;7.604243656804732e-06;1;0;Young +1653;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;200;1;7.621454779325121e-07;7364309;2.71580130600169e-05;1;0;Young +1654;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;158;1;6.020949275666846e-07;7364309;2.145483031741335e-05;0;1;Old +1655;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;24;1;9.145745735190145e-08;7364309;3.258961567202028e-06;0;1;Old +1656;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;1;0;Young +1657;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;1;0;Young +1658;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +1659;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;1;0;Young +1660;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;87;1;3.3153328290064277e-07;7364309;1.1813735681107352e-05;1;0;Young +1661;Bulgaria;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;0;1;Old +1662;Bulgaria;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;282;1;1.074625123884842e-06;7364309;3.829279841462383e-05;1;0;Young +1663;Bulgaria;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;1489;1;5.674173083207552e-06;7364309;0.00020219140723182582;1;0;Young +1664;Bulgaria;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;1587;1;6.047624367394484e-06;7364309;0.00021549883363123411;0;1;Old +1665;Bulgaria;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;66;1;2.51508007717729e-07;7364309;8.962144309805577e-06;0;1;Old +1666;Bulgaria;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;578;1;2.20260043122496e-06;7364309;7.848665774344884e-05;1;0;Young +1667;Bulgaria;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;2865;1;1.0917733971383236e-05;7364309;0.0003890385370847421;1;0;Young +1668;Bulgaria;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;1450;1;5.525554715010713e-06;7364309;0.00019689559468512253;0;1;Old +1669;Bulgaria;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;21;1;8.002527518291377e-08;7364309;2.8515913713017746e-06;0;1;Old +1670;Bulgaria;M;Craft and related trades workers;Manufacturing   ;Y15-29;18495;1;7.047940307180906e-05;7364309;0.0025114372577250627;1;0;Young +1671;Bulgaria;M;Craft and related trades workers;Manufacturing   ;Y30-49;53384;1;0.00020343187096974612;7364309;0.007249016845979711;1;0;Young +1672;Bulgaria;M;Craft and related trades workers;Manufacturing   ;Y50-64;30246;1;0.0001152592606277338;7364309;0.004107106315066356;0;1;Old +1673;Bulgaria;M;Craft and related trades workers;Manufacturing   ;Y65-84;860;1;3.277225555109802e-06;7364309;0.00011677945615807267;0;1;Old +1674;Bulgaria;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;835;1;3.181957370368238e-06;7364309;0.00011338470452557056;1;0;Young +1675;Bulgaria;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;5804;1;2.21174617696015e-05;7364309;0.0007881255390016905;1;0;Young +1676;Bulgaria;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3367;1;1.2830719120993841e-05;7364309;0.0004572051498653845;0;1;Old +1677;Bulgaria;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;25;1;9.526818474156401e-08;7364309;3.3947516325021126e-06;0;1;Old +1678;Bulgaria;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;438;1;1.6690985966722016e-06;7364309;5.9476048601437014e-05;1;0;Young +1679;Bulgaria;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2848;1;1.0852951605758972e-05;7364309;0.00038673010597464064;1;0;Young +1680;Bulgaria;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2573;1;9.805001573601768e-06;7364309;0.00034938783801711744;0;1;Old +1681;Bulgaria;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;32;1;1.2194327646920193e-07;7364309;4.345282089602704e-06;0;1;Old +1682;Bulgaria;M;Craft and related trades workers;Construction   ;Y15-29;18427;1;7.022027360931201e-05;7364309;0.002502203533284657;1;0;Young +1683;Bulgaria;M;Craft and related trades workers;Construction   ;Y30-49;52464;1;0.00019992600177125657;7364309;0.007124089985903633;1;0;Young +1684;Bulgaria;M;Craft and related trades workers;Construction   ;Y50-64;25145;1;9.582074021306508e-05;7364309;0.003414441191970625;0;1;Old +1685;Bulgaria;M;Craft and related trades workers;Construction   ;Y65-84;495;1;1.8863100578829675e-06;7364309;6.721608232354182e-05;0;1;Old +1686;Bulgaria;M;Craft and related trades workers;Construction   ;Y_GE85;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +1687;Bulgaria;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6700;1;2.5531873510739154e-05;7364309;0.0009097934375105662;1;0;Young +1688;Bulgaria;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;15106;1;5.756484794824264e-05;7364309;0.0020512447264230764;1;0;Young +1689;Bulgaria;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4762;1;1.8146683829573112e-05;7364309;0.0006466322909590024;0;1;Old +1690;Bulgaria;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;179;1;6.821202027495983e-07;7364309;2.4306421688715126e-05;0;1;Old +1691;Bulgaria;M;Craft and related trades workers;Transportation and storage   ;Y15-29;1059;1;4.035560305652652e-06;7364309;0.0001438016791527895;1;0;Young +1692;Bulgaria;M;Craft and related trades workers;Transportation and storage   ;Y30-49;5163;1;1.96747855128278e-05;7364309;0.0007010841071443363;1;0;Young +1693;Bulgaria;M;Craft and related trades workers;Transportation and storage   ;Y50-64;3830;1;1.4595085902407607e-05;7364309;0.0005200759500993236;0;1;Old +1694;Bulgaria;M;Craft and related trades workers;Transportation and storage   ;Y65-84;70;1;2.6675091727637925e-07;7364309;9.505304571005916e-06;0;1;Old +1695;Bulgaria;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;569;1;2.168303884717997e-06;7364309;7.726454715574808e-05;1;0;Young +1696;Bulgaria;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;1216;1;4.633844505829673e-06;7364309;0.00016512071940490275;1;0;Young +1697;Bulgaria;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;721;1;2.7475344479467064e-06;7364309;9.790463708136092e-05;0;1;Old +1698;Bulgaria;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;24;1;9.145745735190145e-08;7364309;3.258961567202028e-06;0;1;Old +1699;Bulgaria;M;Craft and related trades workers;Information and communication   ;Y15-29;693;1;2.6408340810361544e-06;7364309;9.410251525295856e-05;1;0;Young +1700;Bulgaria;M;Craft and related trades workers;Information and communication   ;Y30-49;1151;1;4.386147225501607e-06;7364309;0.00015629436516039727;1;0;Young +1701;Bulgaria;M;Craft and related trades workers;Information and communication   ;Y50-64;344;1;1.310890222043921e-06;7364309;4.671178246322907e-05;0;1;Old +1702;Bulgaria;M;Craft and related trades workers;Information and communication   ;Y65-84;11;1;4.1918001286288165e-08;7364309;1.4936907183009296e-06;0;1;Old +1703;Bulgaria;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;17;1;6.478236562426352e-08;7364309;2.3084311101014366e-06;1;0;Young +1704;Bulgaria;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;59;1;2.2483291599009106e-07;7364309;8.011613852704985e-06;1;0;Young +1705;Bulgaria;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;0;1;Old +1706;Bulgaria;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1707;Bulgaria;M;Craft and related trades workers;Real estate activities   ;Y15-29;82;1;3.1247964595233e-07;7364309;1.113478535460693e-05;1;0;Young +1708;Bulgaria;M;Craft and related trades workers;Real estate activities   ;Y30-49;375;1;1.4290227711234603e-06;7364309;5.0921274487531685e-05;1;0;Young +1709;Bulgaria;M;Craft and related trades workers;Real estate activities   ;Y50-64;451;1;1.7186380527378147e-06;7364309;6.124131945033811e-05;0;1;Old +1710;Bulgaria;M;Craft and related trades workers;Real estate activities   ;Y65-84;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;0;1;Old +1711;Bulgaria;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;503;1;1.916795877000268e-06;7364309;6.83024028459425e-05;1;0;Young +1712;Bulgaria;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;1344;1;5.121617611706481e-06;7364309;0.00018250184776331358;1;0;Young +1713;Bulgaria;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;719;1;2.739912993167381e-06;7364309;9.763305695076076e-05;0;1;Old +1714;Bulgaria;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;72;1;2.7437237205570434e-07;7364309;9.776884701606085e-06;0;1;Old +1715;Bulgaria;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;414;1;1.5776411393203e-06;7364309;5.621708703423498e-05;1;0;Young +1716;Bulgaria;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;908;1;3.460140469813605e-06;7364309;0.00012329737929247674;1;0;Young +1717;Bulgaria;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;661;1;2.5188908045669524e-06;7364309;8.975723316335585e-05;0;1;Old +1718;Bulgaria;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;0;1;Old +1719;Bulgaria;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;211;1;8.040634792188003e-07;7364309;2.865170377831783e-05;1;0;Young +1720;Bulgaria;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;930;1;3.5439764723861814e-06;7364309;0.00012628476072907858;1;0;Young +1721;Bulgaria;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;1176;1;4.481415410243171e-06;7364309;0.00015968911679289938;0;1;Old +1722;Bulgaria;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;41;1;1.56239822976165e-07;7364309;5.567392677303465e-06;0;1;Old +1723;Bulgaria;M;Craft and related trades workers;Education   ;Y15-29;30;1;1.1432182168987682e-07;7364309;4.073701959002535e-06;1;0;Young +1724;Bulgaria;M;Craft and related trades workers;Education   ;Y30-49;381;1;1.4518871354614356e-06;7364309;5.1736014879332196e-05;1;0;Young +1725;Bulgaria;M;Craft and related trades workers;Education   ;Y50-64;826;1;3.147660823861275e-06;7364309;0.0001121625939378698;0;1;Old +1726;Bulgaria;M;Craft and related trades workers;Education   ;Y65-84;104;1;3.963156485249063e-07;7364309;1.4122166791208789e-05;0;1;Old +1727;Bulgaria;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;1;0;Young +1728;Bulgaria;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;271;1;1.032707122598554e-06;7364309;3.67991076963229e-05;1;0;Young +1729;Bulgaria;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;577;1;2.1987897038352974e-06;7364309;7.835086767814875e-05;0;1;Old +1730;Bulgaria;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;32;1;1.2194327646920193e-07;7364309;4.345282089602704e-06;0;1;Old +1731;Bulgaria;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;172;1;6.554451110219605e-07;7364309;2.3355891231614535e-05;1;0;Young +1732;Bulgaria;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;624;1;2.377893891149438e-06;7364309;8.473300074725273e-05;1;0;Young +1733;Bulgaria;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;482;1;1.836770601817354e-06;7364309;6.545081147464073e-05;0;1;Old +1734;Bulgaria;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;35;1;1.3337545863818962e-07;7364309;4.752652285502958e-06;0;1;Old +1735;Bulgaria;M;Craft and related trades workers;Other service activities   ;Y15-29;589;1;2.244518432511248e-06;7364309;7.998034846174977e-05;1;0;Young +1736;Bulgaria;M;Craft and related trades workers;Other service activities   ;Y30-49;2117;1;8.067309883915641e-06;7364309;0.0002874675682402789;1;0;Young +1737;Bulgaria;M;Craft and related trades workers;Other service activities   ;Y50-64;1484;1;5.65511944625924e-06;7364309;0.00020151245690532541;0;1;Old +1738;Bulgaria;M;Craft and related trades workers;Other service activities   ;Y65-84;235;1;8.955209365707018e-07;7364309;3.191066534551986e-05;0;1;Old +1739;Bulgaria;M;Craft and related trades workers;Other service activities   ;Y_GE85;5;1;1.9053636948312802e-08;7364309;6.789503265004225e-07;0;1;Old +1740;Bulgaria;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;1;0;Young +1741;Bulgaria;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;79;1;3.010474637833423e-07;7364309;1.0727415158706675e-05;1;0;Young +1742;Bulgaria;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;25;1;9.526818474156401e-08;7364309;3.3947516325021126e-06;0;1;Old +1743;Bulgaria;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +1744;Bulgaria;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;26;1;9.907891213122657e-08;7364309;3.5305416978021972e-06;1;0;Young +1745;Bulgaria;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;22;1;8.383600257257633e-08;7364309;2.9873814366018592e-06;0;1;Old +1746;Bulgaria;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1747;Bulgaria;M;Craft and related trades workers;Not stated   ;Y15-29;141;1;5.37312561942421e-07;7364309;1.9146399207311914e-05;1;0;Young +1748;Bulgaria;M;Craft and related trades workers;Not stated   ;Y30-49;568;1;2.1644931573283344e-06;7364309;7.7128757090448e-05;1;0;Young +1749;Bulgaria;M;Craft and related trades workers;Not stated   ;Y50-64;322;1;1.2270542194713445e-06;7364309;4.372440102662721e-05;0;1;Old +1750;Bulgaria;M;Craft and related trades workers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1751;Bulgaria;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;1691;1;6.44394001591939e-06;7364309;0.0002296210004224429;1;0;Young +1752;Bulgaria;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;8756;1;3.336672902388538e-05;7364309;0.0011889778117675398;1;0;Young +1753;Bulgaria;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;5647;1;2.1519177569424478e-05;7364309;0.0007668064987495772;0;1;Old +1754;Bulgaria;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;126;1;4.801516510974826e-07;7364309;1.7109548227810647e-05;0;1;Old +1755;Bulgaria;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;966;1;3.6811626584140334e-06;7364309;0.00013117320307988163;1;0;Young +1756;Bulgaria;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;6223;1;2.3714156545870116e-05;7364309;0.0008450215763624258;1;0;Young +1757;Bulgaria;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2774;1;1.0570957778923943e-05;7364309;0.0003766816411424344;0;1;Old +1758;Bulgaria;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;51;1;1.943470968727906e-07;7364309;6.92529333030431e-06;0;1;Old +1759;Bulgaria;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;16237;1;6.187478062595099e-05;7364309;0.002204823290277472;1;0;Young +1760;Bulgaria;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;43639;1;0.00016629633255748447;7364309;0.005925742659630388;1;0;Young +1761;Bulgaria;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;21148;1;8.058926283658383e-05;7364309;0.002871688300966187;0;1;Old +1762;Bulgaria;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;532;1;2.027306971300482e-06;7364309;7.224031473964495e-05;0;1;Old +1763;Bulgaria;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;334;1;1.2727829481472953e-06;7364309;4.535388181022822e-05;1;0;Young +1764;Bulgaria;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2179;1;8.303574982074719e-06;7364309;0.00029588655228888415;1;0;Young +1765;Bulgaria;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1348;1;5.136860521265132e-06;7364309;0.00018304500802451392;0;1;Old +1766;Bulgaria;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;26;1;9.907891213122657e-08;7364309;3.5305416978021972e-06;0;1;Old +1767;Bulgaria;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;405;1;1.543344592813337e-06;7364309;5.499497644653422e-05;1;0;Young +1768;Bulgaria;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2933;1;1.117686343388029e-05;7364309;0.00039827226152514786;1;0;Young +1769;Bulgaria;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2690;1;1.0250856678192288e-05;7364309;0.0003652752756572273;0;1;Old +1770;Bulgaria;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;50;1;1.9053636948312803e-07;7364309;6.789503265004225e-06;0;1;Old +1771;Bulgaria;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;4238;1;1.6149862677389933e-05;7364309;0.0005754782967417582;1;0;Young +1772;Bulgaria;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;15237;1;5.8064053236288436e-05;7364309;0.0020690332249773875;1;0;Young +1773;Bulgaria;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;9786;1;3.7291778235237815e-05;7364309;0.0013288415790266269;0;1;Old +1774;Bulgaria;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;260;1;9.907891213122658e-07;7364309;3.530541697802197e-05;0;1;Old +1775;Bulgaria;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;7148;1;2.7239079381307982e-05;7364309;0.000970627386765004;1;0;Young +1776;Bulgaria;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;19033;1;7.252957440744752e-05;7364309;0.0025844923128565084;1;0;Young +1777;Bulgaria;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5639;1;2.148869175030718e-05;7364309;0.0007657201782271765;0;1;Old +1778;Bulgaria;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;124;1;4.725301963181575e-07;7364309;1.6837968097210478e-05;0;1;Old +1779;Bulgaria;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;6468;1;2.464778475633744e-05;7364309;0.0008782901423609466;1;0;Young +1780;Bulgaria;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;42743;1;0.00016288192081634684;7364309;0.0058040747611215115;1;0;Young +1781;Bulgaria;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;20016;1;7.627551943148582e-05;7364309;0.0027179739470464914;0;1;Old +1782;Bulgaria;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;335;1;1.2765936755369577e-06;7364309;4.548967187552831e-05;0;1;Old +1783;Bulgaria;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;534;1;2.0349284260798072e-06;7364309;7.251189487024512e-05;1;0;Young +1784;Bulgaria;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;1029;1;3.921238483962775e-06;7364309;0.00013972797719378696;1;0;Young +1785;Bulgaria;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;558;1;2.1263858834317088e-06;7364309;7.577085643744715e-05;0;1;Old +1786;Bulgaria;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;0;1;Old +1787;Bulgaria;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;442;1;1.6843415062308518e-06;7364309;6.001920886263735e-05;1;0;Young +1788;Bulgaria;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;798;1;3.0409604569507232e-06;7364309;0.00010836047210946743;1;0;Young +1789;Bulgaria;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;288;1;1.0974894882228174e-06;7364309;3.910753880642434e-05;0;1;Old +1790;Bulgaria;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;14;1;5.335018345527585e-08;7364309;1.901060914201183e-06;0;1;Old +1791;Bulgaria;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;66;1;2.51508007717729e-07;7364309;8.962144309805577e-06;1;0;Young +1792;Bulgaria;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;250;1;9.526818474156401e-07;7364309;3.394751632502113e-05;1;0;Young +1793;Bulgaria;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;160;1;6.097163823460097e-07;7364309;2.172641044801352e-05;0;1;Old +1794;Bulgaria;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1795;Bulgaria;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;133;1;5.068267428251205e-07;7364309;1.8060078684911237e-05;1;0;Young +1796;Bulgaria;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;405;1;1.543344592813337e-06;7364309;5.499497644653422e-05;1;0;Young +1797;Bulgaria;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;289;1;1.10130021561248e-06;7364309;3.924332887172442e-05;0;1;Old +1798;Bulgaria;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +1799;Bulgaria;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;367;1;1.3985369520061597e-06;7364309;4.9834953965131015e-05;1;0;Young +1800;Bulgaria;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;1056;1;4.024128123483664e-06;7364309;0.00014339430895688924;1;0;Young +1801;Bulgaria;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;638;1;2.4312440746047135e-06;7364309;8.663406166145391e-05;0;1;Old +1802;Bulgaria;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;50;1;1.9053636948312803e-07;7364309;6.789503265004225e-06;0;1;Old +1803;Bulgaria;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;542;1;2.065414245197108e-06;7364309;7.35982153926458e-05;1;0;Young +1804;Bulgaria;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;1662;1;6.3334289216191756e-06;7364309;0.00022568308852874045;1;0;Young +1805;Bulgaria;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;1074;1;4.09272121649759e-06;7364309;0.00014583853013229076;0;1;Old +1806;Bulgaria;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;25;1;9.526818474156401e-08;7364309;3.3947516325021126e-06;0;1;Old +1807;Bulgaria;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;461;1;1.7567453266344403e-06;7364309;6.259922010333896e-05;1;0;Young +1808;Bulgaria;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;2460;1;9.3743893785699e-06;7364309;0.00033404356063820786;1;0;Young +1809;Bulgaria;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2187;1;8.33406080119202e-06;7364309;0.0002969728728112848;0;1;Old +1810;Bulgaria;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;80;1;3.0485819117300483e-07;7364309;1.086320522400676e-05;0;1;Old +1811;Bulgaria;M;Plant and machine operators, and assemblers;Education   ;Y15-29;61;1;2.3245437076941619e-07;7364309;8.283193983305154e-06;1;0;Young +1812;Bulgaria;M;Plant and machine operators, and assemblers;Education   ;Y30-49;861;1;3.2810362824994645e-06;7364309;0.00011691524622337276;1;0;Young +1813;Bulgaria;M;Plant and machine operators, and assemblers;Education   ;Y50-64;1776;1;6.767851844040708e-06;7364309;0.00024116315597295007;0;1;Old +1814;Bulgaria;M;Plant and machine operators, and assemblers;Education   ;Y65-84;154;1;5.868520180080343e-07;7364309;2.0911670056213013e-05;0;1;Old +1815;Bulgaria;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;139;1;5.296911071630959e-07;7364309;1.8874819076711745e-05;1;0;Young +1816;Bulgaria;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;1947;1;7.419486227673006e-06;7364309;0.0002643832571392645;1;0;Young +1817;Bulgaria;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2300;1;8.764672996223889e-06;7364309;0.00031231715019019437;0;1;Old +1818;Bulgaria;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;100;1;3.8107273896625605e-07;7364309;1.357900653000845e-05;0;1;Old +1819;Bulgaria;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;163;1;6.211485645149974e-07;7364309;2.2133780643913772e-05;1;0;Young +1820;Bulgaria;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;473;1;1.8024740553103911e-06;7364309;6.422870088693997e-05;1;0;Young +1821;Bulgaria;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;294;1;1.1203538525607928e-06;7364309;3.9922279198224844e-05;0;1;Old +1822;Bulgaria;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;24;1;9.145745735190145e-08;7364309;3.258961567202028e-06;0;1;Old +1823;Bulgaria;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;461;1;1.7567453266344403e-06;7364309;6.259922010333896e-05;1;0;Young +1824;Bulgaria;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;1126;1;4.2908790407600436e-06;7364309;0.00015289961352789514;1;0;Young +1825;Bulgaria;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;673;1;2.5646195332429032e-06;7364309;9.138671394695687e-05;0;1;Old +1826;Bulgaria;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;53;1;2.019685516521157e-07;7364309;7.196873460904478e-06;0;1;Old +1827;Bulgaria;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;1;0;Young +1828;Bulgaria;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;32;1;1.2194327646920193e-07;7364309;4.345282089602704e-06;1;0;Young +1829;Bulgaria;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;16;1;6.097163823460096e-08;7364309;2.172641044801352e-06;0;1;Old +1830;Bulgaria;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1831;Bulgaria;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;1;0;Young +1832;Bulgaria;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;72;1;2.7437237205570434e-07;7364309;9.776884701606085e-06;1;0;Young +1833;Bulgaria;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;53;1;2.019685516521157e-07;7364309;7.196873460904478e-06;0;1;Old +1834;Bulgaria;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1835;Bulgaria;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;89;1;3.3915473767996787e-07;7364309;1.208531581170752e-05;1;0;Young +1836;Bulgaria;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;380;1;1.448076408071773e-06;7364309;5.160022481403211e-05;1;0;Young +1837;Bulgaria;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;202;1;7.697669327118372e-07;7364309;2.742959319061707e-05;0;1;Old +1838;Bulgaria;M;Plant and machine operators, and assemblers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1839;Bulgaria;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;3957;1;1.5079048280894752e-05;7364309;0.0005373212883924344;1;0;Young +1840;Bulgaria;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;9346;1;3.561505818378629e-05;7364309;0.0012690939502945898;1;0;Young +1841;Bulgaria;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;5910;1;2.2521398872905733e-05;7364309;0.0008025192859234994;0;1;Old +1842;Bulgaria;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;241;1;9.18385300908677e-07;7364309;3.2725405737320365e-05;0;1;Old +1843;Bulgaria;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1844;Bulgaria;M;Elementary occupations;Mining and quarrying   ;Y15-29;544;1;2.073035699976433e-06;7364309;7.386979552324597e-05;1;0;Young +1845;Bulgaria;M;Elementary occupations;Mining and quarrying   ;Y30-49;2192;1;8.353114438140333e-06;7364309;0.0002976518231377852;1;0;Young +1846;Bulgaria;M;Elementary occupations;Mining and quarrying   ;Y50-64;1027;1;3.9136170291834495e-06;7364309;0.0001394563970631868;0;1;Old +1847;Bulgaria;M;Elementary occupations;Mining and quarrying   ;Y65-84;33;1;1.257540038588645e-07;7364309;4.481072154902789e-06;0;1;Old +1848;Bulgaria;M;Elementary occupations;Manufacturing   ;Y15-29;12489;1;4.759217436949572e-05;7364309;0.0016958821255327553;1;0;Young +1849;Bulgaria;M;Elementary occupations;Manufacturing   ;Y30-49;21016;1;8.008624682114838e-05;7364309;0.002853764012346576;1;0;Young +1850;Bulgaria;M;Elementary occupations;Manufacturing   ;Y50-64;9505;1;3.622096383874264e-05;7364309;0.0012906845706773032;0;1;Old +1851;Bulgaria;M;Elementary occupations;Manufacturing   ;Y65-84;345;1;1.3147009494335833e-06;7364309;4.684757252852915e-05;0;1;Old +1852;Bulgaria;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;199;1;7.583347505428495e-07;7364309;2.7022222994716815e-05;1;0;Young +1853;Bulgaria;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;626;1;2.385515345928763e-06;7364309;8.50045808778529e-05;1;0;Young +1854;Bulgaria;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;414;1;1.5776411393203e-06;7364309;5.621708703423498e-05;0;1;Old +1855;Bulgaria;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +1856;Bulgaria;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1836;1;6.996495487420461e-06;7364309;0.00024931055989095514;1;0;Young +1857;Bulgaria;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;4292;1;1.635564195643171e-05;7364309;0.0005828109602679627;1;0;Young +1858;Bulgaria;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2319;1;8.837076816627478e-06;7364309;0.00031489716143089596;0;1;Old +1859;Bulgaria;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;56;1;2.134007338211034e-07;7364309;7.604243656804732e-06;0;1;Old +1860;Bulgaria;M;Elementary occupations;Construction   ;Y15-29;11057;1;4.2135212747498935e-05;7364309;0.0015014307520230343;1;0;Young +1861;Bulgaria;M;Elementary occupations;Construction   ;Y30-49;21618;1;8.238030470972523e-05;7364309;0.0029355096316572267;1;0;Young +1862;Bulgaria;M;Elementary occupations;Construction   ;Y50-64;9031;1;3.441467905604258e-05;7364309;0.001226320079725063;0;1;Old +1863;Bulgaria;M;Elementary occupations;Construction   ;Y65-84;227;1;8.650351174534013e-07;7364309;3.0824344823119184e-05;0;1;Old +1864;Bulgaria;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;10930;1;4.165125036901179e-05;7364309;0.0014841854137299236;1;0;Young +1865;Bulgaria;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;13896;1;5.2953867806750945e-05;7364309;0.0018869387474099743;1;0;Young +1866;Bulgaria;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4302;1;1.6393749230328336e-05;7364309;0.0005841688609209636;0;1;Old +1867;Bulgaria;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;281;1;1.0708143964951796e-06;7364309;3.815700834932374e-05;0;1;Old +1868;Bulgaria;M;Elementary occupations;Transportation and storage   ;Y15-29;1804;1;6.874552210951259e-06;7364309;0.00024496527780135243;1;0;Young +1869;Bulgaria;M;Elementary occupations;Transportation and storage   ;Y30-49;5312;1;2.0242583893887522e-05;7364309;0.0007213168268740489;1;0;Young +1870;Bulgaria;M;Elementary occupations;Transportation and storage   ;Y50-64;2890;1;1.10130021561248e-05;7364309;0.0003924332887172442;0;1;Old +1871;Bulgaria;M;Elementary occupations;Transportation and storage   ;Y65-84;102;1;3.886941937455812e-07;7364309;1.385058666060862e-05;0;1;Old +1872;Bulgaria;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;1878;1;7.156546037786289e-06;7364309;0.0002550137426335587;1;0;Young +1873;Bulgaria;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;1938;1;7.385189681166042e-06;7364309;0.0002631611465515638;1;0;Young +1874;Bulgaria;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;853;1;3.250550463382164e-06;7364309;0.00011582892570097208;0;1;Old +1875;Bulgaria;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;52;1;1.9815782426245315e-07;7364309;7.0610833956043945e-06;0;1;Old +1876;Bulgaria;M;Elementary occupations;Information and communication   ;Y15-29;287;1;1.0936787608331548e-06;7364309;3.8971748741124253e-05;1;0;Young +1877;Bulgaria;M;Elementary occupations;Information and communication   ;Y30-49;334;1;1.2727829481472953e-06;7364309;4.535388181022822e-05;1;0;Young +1878;Bulgaria;M;Elementary occupations;Information and communication   ;Y50-64;111;1;4.2299074025254424e-07;7364309;1.507269724830938e-05;0;1;Old +1879;Bulgaria;M;Elementary occupations;Information and communication   ;Y65-84;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;0;1;Old +1880;Bulgaria;M;Elementary occupations;Financial and insurance activities   ;Y15-29;51;1;1.943470968727906e-07;7364309;6.92529333030431e-06;1;0;Young +1881;Bulgaria;M;Elementary occupations;Financial and insurance activities   ;Y30-49;84;1;3.201011007316551e-07;7364309;1.1406365485207099e-05;1;0;Young +1882;Bulgaria;M;Elementary occupations;Financial and insurance activities   ;Y50-64;43;1;1.638612777554901e-07;7364309;5.838972807903634e-06;0;1;Old +1883;Bulgaria;M;Elementary occupations;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1884;Bulgaria;M;Elementary occupations;Real estate activities   ;Y15-29;191;1;7.27848931425549e-07;7364309;2.593590247231614e-05;1;0;Young +1885;Bulgaria;M;Elementary occupations;Real estate activities   ;Y30-49;450;1;1.7148273253481523e-06;7364309;6.110552938503802e-05;1;0;Young +1886;Bulgaria;M;Elementary occupations;Real estate activities   ;Y50-64;487;1;1.8558242387656669e-06;7364309;6.612976180114115e-05;0;1;Old +1887;Bulgaria;M;Elementary occupations;Real estate activities   ;Y65-84;74;1;2.819938268350295e-07;7364309;1.0048464832206252e-05;0;1;Old +1888;Bulgaria;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;419;1;1.5966947762686128e-06;7364309;5.689603736073541e-05;1;0;Young +1889;Bulgaria;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;581;1;2.2140326133939478e-06;7364309;7.88940279393491e-05;1;0;Young +1890;Bulgaria;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;335;1;1.2765936755369577e-06;7364309;4.548967187552831e-05;0;1;Old +1891;Bulgaria;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;29;1;1.1051109430021426e-07;7364309;3.93791189370245e-06;0;1;Old +1892;Bulgaria;M;Elementary occupations;Administrative and support service activities   ;Y15-29;1688;1;6.432507833750402e-06;7364309;0.00022921363022654264;1;0;Young +1893;Bulgaria;M;Elementary occupations;Administrative and support service activities   ;Y30-49;2626;1;1.0006970125253885e-05;7364309;0.0003565847114780219;1;0;Young +1894;Bulgaria;M;Elementary occupations;Administrative and support service activities   ;Y50-64;1793;1;6.832634209664971e-06;7364309;0.0002434715870830515;0;1;Old +1895;Bulgaria;M;Elementary occupations;Administrative and support service activities   ;Y65-84;97;1;3.6964055679726836e-07;7364309;1.3171636334108197e-05;0;1;Old +1896;Bulgaria;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;1911;1;7.282300041645153e-06;7364309;0.0002594948147884615;1;0;Young +1897;Bulgaria;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;6263;1;2.3866585641456616e-05;7364309;0.0008504531789744293;1;0;Young +1898;Bulgaria;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;6221;1;2.370653509109079e-05;7364309;0.0008447499962318257;0;1;Old +1899;Bulgaria;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;100;1;3.8107273896625605e-07;7364309;1.357900653000845e-05;0;1;Old +1900;Bulgaria;M;Elementary occupations;Education   ;Y15-29;109;1;4.153692854732191e-07;7364309;1.480111711770921e-05;1;0;Young +1901;Bulgaria;M;Elementary occupations;Education   ;Y30-49;619;1;2.358840254201125e-06;7364309;8.405405042075231e-05;1;0;Young +1902;Bulgaria;M;Elementary occupations;Education   ;Y50-64;1185;1;4.5157119567501345e-06;7364309;0.00016091122738060013;0;1;Old +1903;Bulgaria;M;Elementary occupations;Education   ;Y65-84;197;1;7.507132957635244e-07;7364309;2.6750642864116646e-05;0;1;Old +1904;Bulgaria;M;Elementary occupations;Human health and social work activities   ;Y15-29;116;1;4.4204437720085703e-07;7364309;1.57516475748098e-05;1;0;Young +1905;Bulgaria;M;Elementary occupations;Human health and social work activities   ;Y30-49;447;1;1.7033951431791645e-06;7364309;6.069815918913777e-05;1;0;Young +1906;Bulgaria;M;Elementary occupations;Human health and social work activities   ;Y50-64;624;1;2.377893891149438e-06;7364309;8.473300074725273e-05;0;1;Old +1907;Bulgaria;M;Elementary occupations;Human health and social work activities   ;Y65-84;55;1;2.0959000643144082e-07;7364309;7.4684535915046475e-06;0;1;Old +1908;Bulgaria;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;314;1;1.196568400354044e-06;7364309;4.2638080504226536e-05;1;0;Young +1909;Bulgaria;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;515;1;1.9625246056762186e-06;7364309;6.993188362954352e-05;1;0;Young +1910;Bulgaria;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;385;1;1.4671300450200858e-06;7364309;5.2279175140532535e-05;0;1;Old +1911;Bulgaria;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;42;1;1.6005055036582754e-07;7364309;5.703182742603549e-06;0;1;Old +1912;Bulgaria;M;Elementary occupations;Other service activities   ;Y15-29;1001;1;3.814538117052223e-06;7364309;0.0001359258553653846;1;0;Young +1913;Bulgaria;M;Elementary occupations;Other service activities   ;Y30-49;1350;1;5.144481976044457e-06;7364309;0.00018331658815511407;1;0;Young +1914;Bulgaria;M;Elementary occupations;Other service activities   ;Y50-64;590;1;2.2483291599009107e-06;7364309;8.011613852704986e-05;0;1;Old +1915;Bulgaria;M;Elementary occupations;Other service activities   ;Y65-84;46;1;1.7529345992447778e-07;7364309;6.246343003803887e-06;0;1;Old +1916;Bulgaria;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;175;1;6.668772931909481e-07;7364309;2.3763261427514788e-05;1;0;Young +1917;Bulgaria;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;316;1;1.2041898551333691e-06;7364309;4.29096606348267e-05;1;0;Young +1918;Bulgaria;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;146;1;5.563661988907339e-07;7364309;1.9825349533812336e-05;0;1;Old +1919;Bulgaria;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;18;1;6.859309301392609e-08;7364309;2.4442211754015212e-06;0;1;Old +1920;Bulgaria;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;19;1;7.240382040358865e-08;7364309;2.5800112407016054e-06;1;0;Young +1921;Bulgaria;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;45;1;1.7148273253481523e-07;7364309;6.110552938503802e-06;1;0;Young +1922;Bulgaria;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;33;1;1.257540038588645e-07;7364309;4.481072154902789e-06;0;1;Old +1923;Bulgaria;M;Elementary occupations;Not stated   ;Y15-29;146;1;5.563661988907339e-07;7364309;1.9825349533812336e-05;1;0;Young +1924;Bulgaria;M;Elementary occupations;Not stated   ;Y30-49;378;1;1.4404549532924478e-06;7364309;5.1328644683431944e-05;1;0;Young +1925;Bulgaria;M;Elementary occupations;Not stated   ;Y50-64;174;1;6.630665658012855e-07;7364309;2.3627471362214705e-05;0;1;Old +1926;Bulgaria;M;Elementary occupations;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1927;Bulgaria;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;337;1;1.284215130316283e-06;7364309;4.576125200612848e-05;1;0;Young +1928;Bulgaria;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;595;1;2.2673827968492233e-06;7364309;8.079508885355028e-05;1;0;Young +1929;Bulgaria;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;257;1;9.79356939143278e-07;7364309;3.489804678212172e-05;0;1;Old +1930;Bulgaria;M;Not stated;Agriculture, forestry and fishing   ;Y65-84;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;0;1;Old +1931;Bulgaria;M;Not stated;Mining and quarrying   ;Y15-29;29;1;1.1051109430021426e-07;7364309;3.93791189370245e-06;1;0;Young +1932;Bulgaria;M;Not stated;Mining and quarrying   ;Y30-49;99;1;3.772620115765935e-07;7364309;1.3443216464708366e-05;1;0;Young +1933;Bulgaria;M;Not stated;Mining and quarrying   ;Y50-64;34;1;1.2956473124852705e-07;7364309;4.616862220202873e-06;0;1;Old +1934;Bulgaria;M;Not stated;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;7364309;5.43160261200338e-07;0;1;Old +1935;Bulgaria;M;Not stated;Manufacturing   ;Y15-29;1343;1;5.117806884316819e-06;7364309;0.0001823660576980135;1;0;Young +1936;Bulgaria;M;Not stated;Manufacturing   ;Y30-49;2044;1;7.789126784470273e-06;7364309;0.0002775548934733727;1;0;Young +1937;Bulgaria;M;Not stated;Manufacturing   ;Y50-64;640;1;2.4388655293840387e-06;7364309;8.690564179205408e-05;0;1;Old +1938;Bulgaria;M;Not stated;Manufacturing   ;Y65-84;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;0;1;Old +1939;Bulgaria;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;23;1;8.764672996223889e-08;7364309;3.1231715019019434e-06;1;0;Young +1940;Bulgaria;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;64;1;2.4388655293840386e-07;7364309;8.690564179205408e-06;1;0;Young +1941;Bulgaria;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;31;1;1.1813254907953938e-07;7364309;4.2094920243026194e-06;0;1;Old +1942;Bulgaria;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;108;1;4.1155855808355654e-07;7364309;1.4665327052409126e-05;1;0;Young +1943;Bulgaria;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;201;1;7.659562053221747e-07;7364309;2.7293803125316984e-05;1;0;Young +1944;Bulgaria;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;82;1;3.1247964595233e-07;7364309;1.113478535460693e-05;0;1;Old +1945;Bulgaria;M;Not stated;Construction   ;Y15-29;1734;1;6.60780129367488e-06;7364309;0.00023545997323034653;1;0;Young +1946;Bulgaria;M;Not stated;Construction   ;Y30-49;2903;1;1.1062541612190413e-05;7364309;0.00039419855956614533;1;0;Young +1947;Bulgaria;M;Not stated;Construction   ;Y50-64;881;1;3.3572508302927157e-06;7364309;0.00011963104752937445;0;1;Old +1948;Bulgaria;M;Not stated;Construction   ;Y65-84;32;1;1.2194327646920193e-07;7364309;4.345282089602704e-06;0;1;Old +1949;Bulgaria;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2062;1;7.8577198774842e-06;7364309;0.00027999911464877427;1;0;Young +1950;Bulgaria;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2861;1;1.0902491061824586e-05;7364309;0.00038849537682354176;1;0;Young +1951;Bulgaria;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;544;1;2.073035699976433e-06;7364309;7.386979552324597e-05;0;1;Old +1952;Bulgaria;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;43;1;1.638612777554901e-07;7364309;5.838972807903634e-06;0;1;Old +1953;Bulgaria;M;Not stated;Transportation and storage   ;Y15-29;277;1;1.0555714869365292e-06;7364309;3.7613848088123404e-05;1;0;Young +1954;Bulgaria;M;Not stated;Transportation and storage   ;Y30-49;1172;1;4.466172500684521e-06;7364309;0.00015914595653169903;1;0;Young +1955;Bulgaria;M;Not stated;Transportation and storage   ;Y50-64;425;1;1.6195591406065882e-06;7364309;5.771077775253591e-05;0;1;Old +1956;Bulgaria;M;Not stated;Transportation and storage   ;Y65-84;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;0;1;Old +1957;Bulgaria;M;Not stated;Accommodation and food service activities   ;Y15-29;1099;1;4.187989401239154e-06;7364309;0.00014923328176479287;1;0;Young +1958;Bulgaria;M;Not stated;Accommodation and food service activities   ;Y30-49;921;1;3.5096799258792185e-06;7364309;0.00012506265014137783;1;0;Young +1959;Bulgaria;M;Not stated;Accommodation and food service activities   ;Y50-64;199;1;7.583347505428495e-07;7364309;2.7022222994716815e-05;0;1;Old +1960;Bulgaria;M;Not stated;Accommodation and food service activities   ;Y65-84;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +1961;Bulgaria;M;Not stated;Information and communication   ;Y15-29;249;1;9.488711200259775e-07;7364309;3.381172625972104e-05;1;0;Young +1962;Bulgaria;M;Not stated;Information and communication   ;Y30-49;241;1;9.18385300908677e-07;7364309;3.2725405737320365e-05;1;0;Young +1963;Bulgaria;M;Not stated;Information and communication   ;Y50-64;27;1;1.0288963952088914e-07;7364309;3.6663317631022814e-06;0;1;Old +1964;Bulgaria;M;Not stated;Information and communication   ;Y65-84;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;0;1;Old +1965;Bulgaria;M;Not stated;Financial and insurance activities   ;Y15-29;96;1;3.658298294076058e-07;7364309;1.3035846268808112e-05;1;0;Young +1966;Bulgaria;M;Not stated;Financial and insurance activities   ;Y30-49;114;1;4.344229224215319e-07;7364309;1.548006744420963e-05;1;0;Young +1967;Bulgaria;M;Not stated;Financial and insurance activities   ;Y50-64;30;1;1.1432182168987682e-07;7364309;4.073701959002535e-06;0;1;Old +1968;Bulgaria;M;Not stated;Real estate activities   ;Y15-29;85;1;3.239118281213176e-07;7364309;1.1542155550507183e-05;1;0;Young +1969;Bulgaria;M;Not stated;Real estate activities   ;Y30-49;153;1;5.830412906183718e-07;7364309;2.077587999091293e-05;1;0;Young +1970;Bulgaria;M;Not stated;Real estate activities   ;Y50-64;77;1;2.9342600900401714e-07;7364309;1.0455835028106506e-05;0;1;Old +1971;Bulgaria;M;Not stated;Real estate activities   ;Y65-84;7;1;2.6675091727637924e-08;7364309;9.505304571005915e-07;0;1;Old +1972;Bulgaria;M;Not stated;Professional, scientific and technical activities   ;Y15-29;216;1;8.231171161671131e-07;7364309;2.933065410481825e-05;1;0;Young +1973;Bulgaria;M;Not stated;Professional, scientific and technical activities   ;Y30-49;347;1;1.3223224042129085e-06;7364309;4.711915265912932e-05;1;0;Young +1974;Bulgaria;M;Not stated;Professional, scientific and technical activities   ;Y50-64;131;1;4.992052880457954e-07;7364309;1.7788498554311068e-05;0;1;Old +1975;Bulgaria;M;Not stated;Professional, scientific and technical activities   ;Y65-84;12;1;4.5728728675950726e-08;7364309;1.629480783601014e-06;0;1;Old +1976;Bulgaria;M;Not stated;Administrative and support service activities   ;Y15-29;423;1;1.6119376858272632e-06;7364309;5.7439197621935746e-05;1;0;Young +1977;Bulgaria;M;Not stated;Administrative and support service activities   ;Y30-49;565;1;2.1530609751593466e-06;7364309;7.672138689454774e-05;1;0;Young +1978;Bulgaria;M;Not stated;Administrative and support service activities   ;Y50-64;272;1;1.0365178499882164e-06;7364309;3.6934897761622986e-05;0;1;Old +1979;Bulgaria;M;Not stated;Administrative and support service activities   ;Y65-84;45;1;1.7148273253481523e-07;7364309;6.110552938503802e-06;0;1;Old +1980;Bulgaria;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;64;1;2.4388655293840386e-07;7364309;8.690564179205408e-06;1;0;Young +1981;Bulgaria;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;233;1;8.878994817913766e-07;7364309;3.163908521491969e-05;1;0;Young +1982;Bulgaria;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;154;1;5.868520180080343e-07;7364309;2.0911670056213013e-05;0;1;Old +1983;Bulgaria;M;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;0;1;Old +1984;Bulgaria;M;Not stated;Education   ;Y15-29;51;1;1.943470968727906e-07;7364309;6.92529333030431e-06;1;0;Young +1985;Bulgaria;M;Not stated;Education   ;Y30-49;93;1;3.543976472386181e-07;7364309;1.2628476072907858e-05;1;0;Young +1986;Bulgaria;M;Not stated;Education   ;Y50-64;92;1;3.5058691984895557e-07;7364309;1.2492686007607774e-05;0;1;Old +1987;Bulgaria;M;Not stated;Education   ;Y65-84;13;1;4.953945606561329e-08;7364309;1.7652708489010986e-06;0;1;Old +1988;Bulgaria;M;Not stated;Human health and social work activities   ;Y15-29;36;1;1.3718618602785217e-07;7364309;4.8884423508030425e-06;1;0;Young +1989;Bulgaria;M;Not stated;Human health and social work activities   ;Y30-49;148;1;5.63987653670059e-07;7364309;2.0096929664412505e-05;1;0;Young +1990;Bulgaria;M;Not stated;Human health and social work activities   ;Y50-64;85;1;3.239118281213176e-07;7364309;1.1542155550507183e-05;0;1;Old +1991;Bulgaria;M;Not stated;Human health and social work activities   ;Y65-84;9;1;3.429654650696304e-08;7364309;1.2221105877007606e-06;0;1;Old +1992;Bulgaria;M;Not stated;Arts, entertainment and recreation   ;Y15-29;237;1;9.031423913500269e-07;7364309;3.2182245476120026e-05;1;0;Young +1993;Bulgaria;M;Not stated;Arts, entertainment and recreation   ;Y30-49;215;1;8.193063887774505e-07;7364309;2.919486403951817e-05;1;0;Young +1994;Bulgaria;M;Not stated;Arts, entertainment and recreation   ;Y50-64;82;1;3.1247964595233e-07;7364309;1.113478535460693e-05;0;1;Old +1995;Bulgaria;M;Not stated;Arts, entertainment and recreation   ;Y65-84;8;1;3.048581911730048e-08;7364309;1.086320522400676e-06;0;1;Old +1996;Bulgaria;M;Not stated;Other service activities   ;Y15-29;204;1;7.773883874911624e-07;7364309;2.770117332121724e-05;1;0;Young +1997;Bulgaria;M;Not stated;Other service activities   ;Y30-49;286;1;1.0898680334434924e-06;7364309;3.883595867582417e-05;1;0;Young +1998;Bulgaria;M;Not stated;Other service activities   ;Y50-64;126;1;4.801516510974826e-07;7364309;1.7109548227810647e-05;0;1;Old +1999;Bulgaria;M;Not stated;Other service activities   ;Y65-84;15;1;5.716091084493841e-08;7364309;2.0368509795012674e-06;0;1;Old +2000;Bulgaria;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;7364309;4.073701959002535e-07;1;0;Young +2001;Bulgaria;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;10;1;3.8107273896625604e-08;7364309;1.357900653000845e-06;1;0;Young +2002;Bulgaria;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;6;1;2.2864364337975363e-08;7364309;8.14740391800507e-07;1;0;Young +2003;Bulgaria;M;Not stated;Not stated   ;Y15-29;4853;1;1.8493460022032407e-05;7364309;0.0006589891869013101;1;0;Young +2004;Bulgaria;M;Not stated;Not stated   ;Y30-49;8552;1;3.2589340636394216e-05;7364309;0.0011612766384463227;1;0;Young +2005;Bulgaria;M;Not stated;Not stated   ;Y50-64;4067;1;1.5498228293757633e-05;7364309;0.0005522581955754437;0;1;Old +2006;Bulgaria;M;Not stated;Not stated   ;Y65-84;251;1;9.564925748053026e-07;7364309;3.408330639032121e-05;0;1;Old +2007;Cyprus;F;Not applicable;Not applicable  ;Y15-29;50457;1;0.0001922778719002038;840106;0.06006027810776259;1;0;Young +2008;Cyprus;F;Not applicable;Not applicable  ;Y30-49;25882;1;9.862924629924639e-05;840106;0.030808017083558504;1;0;Young +2009;Cyprus;F;Not applicable;Not applicable  ;Y50-64;37541;1;0.00014305851693532218;840106;0.04468602771555018;0;1;Old +2010;Cyprus;F;Not applicable;Not applicable  ;Y65-84;52638;1;0.00020058906833705787;840106;0.06265637907597374;0;1;Old +2011;Cyprus;F;Not applicable;Not applicable  ;Y_GE85;6413;1;2.4438194749906e-05;840106;0.007633560526885893;0;1;Old +2012;Cyprus;F;Not applicable;Not applicable  ;Y_LT15;65787;1;0.00025069632278373086;840106;0.07830797542214911;0;1;Old +2013;Cyprus;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;28;1;1.067003669105517e-07;840106;3.332912751486122e-05;1;0;Young +2014;Cyprus;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;517;1;1.970146060455544e-06;840106;0.000615398533042259;1;0;Young +2015;Cyprus;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;0;1;Old +2016;Cyprus;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2017;Cyprus;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;1;0;Young +2018;Cyprus;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2019;Cyprus;F;Managers;Agriculture, forestry and fishing   ;Y30-49;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +2020;Cyprus;F;Managers;Manufacturing   ;Y15-29;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +2021;Cyprus;F;Managers;Manufacturing   ;Y30-49;61;1;2.3245437076941619e-07;840106;7.260988494309051e-05;1;0;Young +2022;Cyprus;F;Managers;Manufacturing   ;Y50-64;53;1;2.019685516521157e-07;840106;6.308727708170159e-05;0;1;Old +2023;Cyprus;F;Managers;Manufacturing   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2024;Cyprus;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2025;Cyprus;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2026;Cyprus;F;Managers;Construction   ;Y15-29;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2027;Cyprus;F;Managers;Construction   ;Y30-49;60;1;2.2864364337975364e-07;840106;7.14195589604169e-05;1;0;Young +2028;Cyprus;F;Managers;Construction   ;Y50-64;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;0;1;Old +2029;Cyprus;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;46;1;1.7529345992447778e-07;840106;5.475499520298629e-05;1;0;Young +2030;Cyprus;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;266;1;1.013653485650241e-06;840106;0.0003166267113911816;1;0;Young +2031;Cyprus;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;125;1;4.7634092370782007e-07;840106;0.00014879074783420186;0;1;Old +2032;Cyprus;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +2033;Cyprus;F;Managers;Transportation and storage   ;Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2034;Cyprus;F;Managers;Transportation and storage   ;Y30-49;99;1;3.772620115765935e-07;840106;0.00011784227228468788;1;0;Young +2035;Cyprus;F;Managers;Transportation and storage   ;Y50-64;33;1;1.257540038588645e-07;840106;3.92807574282293e-05;0;1;Old +2036;Cyprus;F;Managers;Accommodation and food service activities   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2037;Cyprus;F;Managers;Accommodation and food service activities   ;Y30-49;212;1;8.078742066084628e-07;840106;0.00025234910832680637;1;0;Young +2038;Cyprus;F;Managers;Accommodation and food service activities   ;Y50-64;101;1;3.848834663559186e-07;840106;0.00012022292425003511;0;1;Old +2039;Cyprus;F;Managers;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2040;Cyprus;F;Managers;Information and communication   ;Y15-29;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2041;Cyprus;F;Managers;Information and communication   ;Y30-49;74;1;2.819938268350295e-07;840106;8.808412271784751e-05;1;0;Young +2042;Cyprus;F;Managers;Information and communication   ;Y50-64;19;1;7.240382040358865e-08;840106;2.2616193670798686e-05;0;1;Old +2043;Cyprus;F;Managers;Financial and insurance activities   ;Y15-29;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;1;0;Young +2044;Cyprus;F;Managers;Financial and insurance activities   ;Y30-49;306;1;1.1660825812367436e-06;840106;0.0003642397506981262;1;0;Young +2045;Cyprus;F;Managers;Financial and insurance activities   ;Y50-64;183;1;6.973631123082485e-07;840106;0.00021782965482927154;0;1;Old +2046;Cyprus;F;Managers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2047;Cyprus;F;Managers;Real estate activities   ;Y30-49;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2048;Cyprus;F;Managers;Real estate activities   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2049;Cyprus;F;Managers;Professional, scientific and technical activities   ;Y15-29;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;1;0;Young +2050;Cyprus;F;Managers;Professional, scientific and technical activities   ;Y30-49;114;1;4.344229224215319e-07;840106;0.0001356971620247921;1;0;Young +2051;Cyprus;F;Managers;Professional, scientific and technical activities   ;Y50-64;40;1;1.5242909558650242e-07;840106;4.76130393069446e-05;0;1;Old +2052;Cyprus;F;Managers;Administrative and support service activities   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2053;Cyprus;F;Managers;Administrative and support service activities   ;Y30-49;59;1;2.2483291599009106e-07;840106;7.022923297774328e-05;1;0;Young +2054;Cyprus;F;Managers;Administrative and support service activities   ;Y50-64;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;0;1;Old +2055;Cyprus;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;1;0;Young +2056;Cyprus;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;107;1;4.07747830693894e-07;840106;0.0001273648801460768;0;1;Old +2057;Cyprus;F;Managers;Education   ;Y15-29;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +2058;Cyprus;F;Managers;Education   ;Y30-49;123;1;4.6871946892849497e-07;840106;0.00014641009586885463;1;0;Young +2059;Cyprus;F;Managers;Education   ;Y50-64;202;1;7.697669327118372e-07;840106;0.00024044584850007022;0;1;Old +2060;Cyprus;F;Managers;Education   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2061;Cyprus;F;Managers;Human health and social work activities   ;Y15-29;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;1;0;Young +2062;Cyprus;F;Managers;Human health and social work activities   ;Y30-49;41;1;1.56239822976165e-07;840106;4.8803365289618215e-05;1;0;Young +2063;Cyprus;F;Managers;Human health and social work activities   ;Y50-64;47;1;1.7910418731414036e-07;840106;5.5945321185659903e-05;0;1;Old +2064;Cyprus;F;Managers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2065;Cyprus;F;Managers;Arts, entertainment and recreation   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2066;Cyprus;F;Managers;Arts, entertainment and recreation   ;Y30-49;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;1;0;Young +2067;Cyprus;F;Managers;Arts, entertainment and recreation   ;Y50-64;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;0;1;Old +2068;Cyprus;F;Managers;Other service activities   ;Y30-49;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;1;0;Young +2069;Cyprus;F;Managers;Other service activities   ;Y50-64;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;0;1;Old +2070;Cyprus;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +2071;Cyprus;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2072;Cyprus;F;Managers;Not stated   ;Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2073;Cyprus;F;Managers;Not stated   ;Y30-49;52;1;1.9815782426245315e-07;840106;6.189695109902798e-05;1;0;Young +2074;Cyprus;F;Managers;Not stated   ;Y50-64;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;0;1;Old +2075;Cyprus;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +2076;Cyprus;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +2077;Cyprus;F;Professionals;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2078;Cyprus;F;Professionals;Mining and quarrying   ;Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2079;Cyprus;F;Professionals;Manufacturing   ;Y15-29;188;1;7.164167492565614e-07;840106;0.00022378128474263961;1;0;Young +2080;Cyprus;F;Professionals;Manufacturing   ;Y30-49;229;1;8.726565722327264e-07;840106;0.0002725846500322578;1;0;Young +2081;Cyprus;F;Professionals;Manufacturing   ;Y50-64;51;1;1.943470968727906e-07;840106;6.070662511635436e-05;0;1;Old +2082;Cyprus;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +2083;Cyprus;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;1;0;Young +2084;Cyprus;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2085;Cyprus;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +2086;Cyprus;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;1;0;Young +2087;Cyprus;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2088;Cyprus;F;Professionals;Construction   ;Y15-29;164;1;6.2495929190466e-07;840106;0.00019521346115847286;1;0;Young +2089;Cyprus;F;Professionals;Construction   ;Y30-49;254;1;9.679247569742904e-07;840106;0.0003023427995990982;1;0;Young +2090;Cyprus;F;Professionals;Construction   ;Y50-64;52;1;1.9815782426245315e-07;840106;6.189695109902798e-05;0;1;Old +2091;Cyprus;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;342;1;1.3032687672645957e-06;840106;0.00040709148607437633;1;0;Young +2092;Cyprus;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;695;1;2.6484555358154796e-06;840106;0.0008272765579581625;1;0;Young +2093;Cyprus;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;185;1;7.049845670875737e-07;840106;0.00022021030679461877;0;1;Old +2094;Cyprus;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2095;Cyprus;F;Professionals;Transportation and storage   ;Y15-29;77;1;2.9342600900401714e-07;840106;9.165510066586836e-05;1;0;Young +2096;Cyprus;F;Professionals;Transportation and storage   ;Y30-49;175;1;6.668772931909481e-07;840106;0.00020830704696788262;1;0;Young +2097;Cyprus;F;Professionals;Transportation and storage   ;Y50-64;49;1;1.8672564209346548e-07;840106;5.832597315100713e-05;0;1;Old +2098;Cyprus;F;Professionals;Accommodation and food service activities   ;Y15-29;137;1;5.220696523837708e-07;840106;0.00016307465962628527;1;0;Young +2099;Cyprus;F;Professionals;Accommodation and food service activities   ;Y30-49;176;1;6.706880205806106e-07;840106;0.00020949737295055624;1;0;Young +2100;Cyprus;F;Professionals;Accommodation and food service activities   ;Y50-64;38;1;1.448076408071773e-07;840106;4.523238734159737e-05;0;1;Old +2101;Cyprus;F;Professionals;Information and communication   ;Y15-29;473;1;1.8024740553103911e-06;840106;0.0005630241898046199;1;0;Young +2102;Cyprus;F;Professionals;Information and communication   ;Y30-49;817;1;3.113364277354312e-06;840106;0.0009724963278443435;1;0;Young +2103;Cyprus;F;Professionals;Information and communication   ;Y50-64;153;1;5.830412906183718e-07;840106;0.0001821198753490631;0;1;Old +2104;Cyprus;F;Professionals;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2105;Cyprus;F;Professionals;Financial and insurance activities   ;Y15-29;192;1;7.316596588152116e-07;840106;0.00022854258867333407;1;0;Young +2106;Cyprus;F;Professionals;Financial and insurance activities   ;Y30-49;600;1;2.2864364337975363e-06;840106;0.000714195589604169;1;0;Young +2107;Cyprus;F;Professionals;Financial and insurance activities   ;Y50-64;74;1;2.819938268350295e-07;840106;8.808412271784751e-05;0;1;Old +2108;Cyprus;F;Professionals;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2109;Cyprus;F;Professionals;Real estate activities   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2110;Cyprus;F;Professionals;Real estate activities   ;Y30-49;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;1;0;Young +2111;Cyprus;F;Professionals;Real estate activities   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2112;Cyprus;F;Professionals;Professional, scientific and technical activities   ;Y15-29;1907;1;7.267057132086503e-06;840106;0.002269951648958584;1;0;Young +2113;Cyprus;F;Professionals;Professional, scientific and technical activities   ;Y30-49;2635;1;1.0041266671760846e-05;840106;0.0031365089643449755;1;0;Young +2114;Cyprus;F;Professionals;Professional, scientific and technical activities   ;Y50-64;521;1;1.9853889700141942e-06;840106;0.0006201598369729534;0;1;Old +2115;Cyprus;F;Professionals;Professional, scientific and technical activities   ;Y65-84;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;0;1;Old +2116;Cyprus;F;Professionals;Administrative and support service activities   ;Y15-29;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;1;0;Young +2117;Cyprus;F;Professionals;Administrative and support service activities   ;Y30-49;40;1;1.5242909558650242e-07;840106;4.76130393069446e-05;1;0;Young +2118;Cyprus;F;Professionals;Administrative and support service activities   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2119;Cyprus;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;345;1;1.3147009494335833e-06;840106;0.00041066246402239717;1;0;Young +2120;Cyprus;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;1497;1;5.704658902324853e-06;840106;0.0017819179960624017;1;0;Young +2121;Cyprus;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;465;1;1.7719882361930907e-06;840106;0.000553501581943231;0;1;Old +2122;Cyprus;F;Professionals;Education   ;Y15-29;4389;1;1.6725282513228977e-05;840106;0.005224340737954496;1;0;Young +2123;Cyprus;F;Professionals;Education   ;Y30-49;9559;1;3.6426743117784416e-05;840106;0.011378326068377086;1;0;Young +2124;Cyprus;F;Professionals;Education   ;Y50-64;2364;1;9.008559549162293e-06;840106;0.0028139306230404258;0;1;Old +2125;Cyprus;F;Professionals;Education   ;Y65-84;52;1;1.9815782426245315e-07;840106;6.189695109902798e-05;0;1;Old +2126;Cyprus;F;Professionals;Human health and social work activities   ;Y15-29;1609;1;6.13146036996706e-06;840106;0.0019152345061218465;1;0;Young +2127;Cyprus;F;Professionals;Human health and social work activities   ;Y30-49;2874;1;1.09520305178902e-05;840106;0.0034209968742039696;1;0;Young +2128;Cyprus;F;Professionals;Human health and social work activities   ;Y50-64;1273;1;4.85105596704044e-06;840106;0.001515284975943512;0;1;Old +2129;Cyprus;F;Professionals;Human health and social work activities   ;Y65-84;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;0;1;Old +2130;Cyprus;F;Professionals;Arts, entertainment and recreation   ;Y15-29;126;1;4.801516510974826e-07;840106;0.00014998107381687548;1;0;Young +2131;Cyprus;F;Professionals;Arts, entertainment and recreation   ;Y30-49;232;1;8.840887544017141e-07;840106;0.00027615562798027866;1;0;Young +2132;Cyprus;F;Professionals;Arts, entertainment and recreation   ;Y50-64;87;1;3.3153328290064277e-07;840106;0.0001035583604926045;0;1;Old +2133;Cyprus;F;Professionals;Arts, entertainment and recreation   ;Y65-84;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;0;1;Old +2134;Cyprus;F;Professionals;Other service activities   ;Y15-29;66;1;2.51508007717729e-07;840106;7.85615148564586e-05;1;0;Young +2135;Cyprus;F;Professionals;Other service activities   ;Y30-49;105;1;4.0012637591456885e-07;840106;0.00012498422818072957;1;0;Young +2136;Cyprus;F;Professionals;Other service activities   ;Y50-64;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;0;1;Old +2137;Cyprus;F;Professionals;Other service activities   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2138;Cyprus;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;1;0;Young +2139;Cyprus;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;114;1;4.344229224215319e-07;840106;0.0001356971620247921;1;0;Young +2140;Cyprus;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;47;1;1.7910418731414036e-07;840106;5.5945321185659903e-05;0;1;Old +2141;Cyprus;F;Professionals;Not stated   ;Y15-29;95;1;3.6201910201794326e-07;840106;0.00011308096835399342;1;0;Young +2142;Cyprus;F;Professionals;Not stated   ;Y30-49;171;1;6.516343836322978e-07;840106;0.00020354574303718816;1;0;Young +2143;Cyprus;F;Professionals;Not stated   ;Y50-64;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;0;1;Old +2144;Cyprus;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +2145;Cyprus;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;1;0;Young +2146;Cyprus;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;19;1;7.240382040358865e-08;840106;2.2616193670798686e-05;0;1;Old +2147;Cyprus;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2148;Cyprus;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;1;0;Young +2149;Cyprus;F;Technicians and associate professionals;Manufacturing   ;Y15-29;168;1;6.402022014633102e-07;840106;0.00019997476508916732;1;0;Young +2150;Cyprus;F;Technicians and associate professionals;Manufacturing   ;Y30-49;463;1;1.7643667814137655e-06;840106;0.0005511209299778838;1;0;Young +2151;Cyprus;F;Technicians and associate professionals;Manufacturing   ;Y50-64;344;1;1.310890222043921e-06;840106;0.00040947213803972356;0;1;Old +2152;Cyprus;F;Technicians and associate professionals;Manufacturing   ;Y65-84;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2153;Cyprus;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2154;Cyprus;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;82;1;3.1247964595233e-07;840106;9.760673057923643e-05;1;0;Young +2155;Cyprus;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +2156;Cyprus;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +2157;Cyprus;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;49;1;1.8672564209346548e-07;840106;5.832597315100713e-05;1;0;Young +2158;Cyprus;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;0;1;Old +2159;Cyprus;F;Technicians and associate professionals;Construction   ;Y15-29;177;1;6.744987479702732e-07;840106;0.00021068769893322985;1;0;Young +2160;Cyprus;F;Technicians and associate professionals;Construction   ;Y30-49;454;1;1.7300702349068025e-06;840106;0.0005404079961338212;1;0;Young +2161;Cyprus;F;Technicians and associate professionals;Construction   ;Y50-64;314;1;1.196568400354044e-06;840106;0.0003737623585595151;0;1;Old +2162;Cyprus;F;Technicians and associate professionals;Construction   ;Y65-84;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2163;Cyprus;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;608;1;2.3169222529148367e-06;840106;0.0007237181974655579;1;0;Young +2164;Cyprus;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1569;1;5.979031274380557e-06;840106;0.001867621466814902;1;0;Young +2165;Cyprus;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;763;1;2.907584998312534e-06;840106;0.0009082187247799683;0;1;Old +2166;Cyprus;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;0;1;Old +2167;Cyprus;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;222;1;8.459814805050885e-07;840106;0.0002642523681535425;1;0;Young +2168;Cyprus;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;579;1;2.2064111586146226e-06;840106;0.0006891987439680231;1;0;Young +2169;Cyprus;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;273;1;1.040328577377879e-06;840106;0.0003249589932698969;0;1;Old +2170;Cyprus;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2171;Cyprus;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;94;1;3.582083746282807e-07;840106;0.00011189064237131981;1;0;Young +2172;Cyprus;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;238;1;9.069531187396895e-07;840106;0.00028329758387632035;1;0;Young +2173;Cyprus;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;92;1;3.5058691984895557e-07;840106;0.00010950999040597258;0;1;Old +2174;Cyprus;F;Technicians and associate professionals;Information and communication   ;Y15-29;141;1;5.37312561942421e-07;840106;0.00016783596355697972;1;0;Young +2175;Cyprus;F;Technicians and associate professionals;Information and communication   ;Y30-49;360;1;1.3718618602785219e-06;840106;0.0004285173537625014;1;0;Young +2176;Cyprus;F;Technicians and associate professionals;Information and communication   ;Y50-64;105;1;4.0012637591456885e-07;840106;0.00012498422818072957;0;1;Old +2177;Cyprus;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;596;1;2.271193524238886e-06;840106;0.0007094342856734746;1;0;Young +2178;Cyprus;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2724;1;1.0380421409440814e-05;840106;0.003242447976802927;1;0;Young +2179;Cyprus;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;774;1;2.9495029995988217e-06;840106;0.000921312310589378;0;1;Old +2180;Cyprus;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2181;Cyprus;F;Technicians and associate professionals;Real estate activities   ;Y15-29;69;1;2.629401898867167e-07;840106;8.213249280447944e-05;1;0;Young +2182;Cyprus;F;Technicians and associate professionals;Real estate activities   ;Y30-49;236;1;8.993316639603643e-07;840106;0.0002809169319109731;1;0;Young +2183;Cyprus;F;Technicians and associate professionals;Real estate activities   ;Y50-64;113;1;4.3061219503186933e-07;840106;0.00013450683604211849;0;1;Old +2184;Cyprus;F;Technicians and associate professionals;Real estate activities   ;Y65-84;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +2185;Cyprus;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;1715;1;6.535397473271292e-06;840106;0.0020414090602852496;1;0;Young +2186;Cyprus;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;1626;1;6.196242735591324e-06;840106;0.001935470047827298;1;0;Young +2187;Cyprus;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;779;1;2.9685566365471347e-06;840106;0.0009272639405027461;0;1;Old +2188;Cyprus;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;0;1;Old +2189;Cyprus;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;78;1;2.9723673639367974e-07;840106;9.284542664854197e-05;1;0;Young +2190;Cyprus;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;199;1;7.583347505428495e-07;840106;0.00023687487055204938;1;0;Young +2191;Cyprus;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;86;1;3.277225555109802e-07;840106;0.00010236803450993089;0;1;Old +2192;Cyprus;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2193;Cyprus;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;260;1;9.907891213122658e-07;840106;0.0003094847554951399;1;0;Young +2194;Cyprus;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;1490;1;5.677983810597215e-06;840106;0.0017735857141836864;1;0;Young +2195;Cyprus;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;1197;1;4.561440685426085e-06;840106;0.0014248202012603173;0;1;Old +2196;Cyprus;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2197;Cyprus;F;Technicians and associate professionals;Education   ;Y15-29;53;1;2.019685516521157e-07;840106;6.308727708170159e-05;1;0;Young +2198;Cyprus;F;Technicians and associate professionals;Education   ;Y30-49;190;1;7.240382040358865e-07;840106;0.00022616193670798684;1;0;Young +2199;Cyprus;F;Technicians and associate professionals;Education   ;Y50-64;150;1;5.716091084493841e-07;840106;0.00017854889740104226;0;1;Old +2200;Cyprus;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;383;1;1.4595085902407606e-06;840106;0.00045589485136399453;1;0;Young +2201;Cyprus;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;979;1;3.7307021144796468e-06;840106;0.0011653291370374692;1;0;Young +2202;Cyprus;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;715;1;2.7246700836087308e-06;840106;0.0008510830776116348;0;1;Old +2203;Cyprus;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2204;Cyprus;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;193;1;7.354703862048742e-07;840106;0.0002297329146560077;1;0;Young +2205;Cyprus;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;253;1;9.641140295846278e-07;840106;0.00030115247361642457;1;0;Young +2206;Cyprus;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;50;1;1.9053636948312803e-07;840106;5.951629913368075e-05;0;1;Old +2207;Cyprus;F;Technicians and associate professionals;Other service activities   ;Y15-29;67;1;2.5531873510739155e-07;840106;7.975184083913221e-05;1;0;Young +2208;Cyprus;F;Technicians and associate professionals;Other service activities   ;Y30-49;221;1;8.421707531154259e-07;840106;0.0002630620421708689;1;0;Young +2209;Cyprus;F;Technicians and associate professionals;Other service activities   ;Y50-64;136;1;5.182589249941082e-07;840106;0.00016188433364361165;0;1;Old +2210;Cyprus;F;Technicians and associate professionals;Other service activities   ;Y65-84;58;1;2.2102218860042852e-07;840106;6.903890699506966e-05;0;1;Old +2211;Cyprus;F;Technicians and associate professionals;Other service activities   ;Y_GE85;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;0;1;Old +2212;Cyprus;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +2213;Cyprus;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;89;1;3.3915473767996787e-07;840106;0.00010593901245795173;1;0;Young +2214;Cyprus;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;53;1;2.019685516521157e-07;840106;6.308727708170159e-05;0;1;Old +2215;Cyprus;F;Technicians and associate professionals;Not stated   ;Y15-29;110;1;4.1918001286288164e-07;840106;0.00013093585809409764;1;0;Young +2216;Cyprus;F;Technicians and associate professionals;Not stated   ;Y30-49;247;1;9.412496652466524e-07;840106;0.0002940105177203829;1;0;Young +2217;Cyprus;F;Technicians and associate professionals;Not stated   ;Y50-64;129;1;4.915838332664703e-07;840106;0.00015355205176489635;0;1;Old +2218;Cyprus;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;1;0;Young +2219;Cyprus;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;79;1;3.010474637833423e-07;840106;9.403575263121559e-05;1;0;Young +2220;Cyprus;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;0;1;Old +2221;Cyprus;F;Clerical support workers;Mining and quarrying   ;Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +2222;Cyprus;F;Clerical support workers;Mining and quarrying   ;Y30-49;28;1;1.067003669105517e-07;840106;3.332912751486122e-05;1;0;Young +2223;Cyprus;F;Clerical support workers;Manufacturing   ;Y15-29;401;1;1.5281016832546868e-06;840106;0.0004773207190521196;1;0;Young +2224;Cyprus;F;Clerical support workers;Manufacturing   ;Y30-49;1039;1;3.959345757859401e-06;840106;0.001236748695997886;1;0;Young +2225;Cyprus;F;Clerical support workers;Manufacturing   ;Y50-64;252;1;9.603033021949652e-07;840106;0.00029996214763375095;0;1;Old +2226;Cyprus;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2227;Cyprus;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;115;1;4.382336498111945e-07;840106;0.00013688748800746572;1;0;Young +2228;Cyprus;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2229;Cyprus;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;36;1;1.3718618602785217e-07;840106;4.285173537625014e-05;1;0;Young +2230;Cyprus;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;82;1;3.1247964595233e-07;840106;9.760673057923643e-05;1;0;Young +2231;Cyprus;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +2232;Cyprus;F;Clerical support workers;Construction   ;Y15-29;447;1;1.7033951431791645e-06;840106;0.0005320757142551059;1;0;Young +2233;Cyprus;F;Clerical support workers;Construction   ;Y30-49;1042;1;3.9707779400283885e-06;840106;0.0012403196739459068;1;0;Young +2234;Cyprus;F;Clerical support workers;Construction   ;Y50-64;155;1;5.906627453976969e-07;840106;0.00018450052731441033;0;1;Old +2235;Cyprus;F;Clerical support workers;Construction   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2236;Cyprus;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1343;1;5.117806884316819e-06;840106;0.001598607794730665;1;0;Young +2237;Cyprus;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3016;1;1.1493153807222282e-05;840106;0.0035900231637436227;1;0;Young +2238;Cyprus;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;699;1;2.66369844537413e-06;840106;0.0008320378618888569;0;1;Old +2239;Cyprus;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2240;Cyprus;F;Clerical support workers;Transportation and storage   ;Y15-29;622;1;2.3702724363701127e-06;840106;0.0007403827612229885;1;0;Young +2241;Cyprus;F;Clerical support workers;Transportation and storage   ;Y30-49;1462;1;5.571283443686664e-06;840106;0.0017402565866688252;1;0;Young +2242;Cyprus;F;Clerical support workers;Transportation and storage   ;Y50-64;248;1;9.45060392636315e-07;840106;0.0002952008437030565;0;1;Old +2243;Cyprus;F;Clerical support workers;Transportation and storage   ;Y65-84;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +2244;Cyprus;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;438;1;1.6690985966722016e-06;840106;0.0005213627804110433;1;0;Young +2245;Cyprus;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;997;1;3.7992952074935727e-06;840106;0.001186755004725594;1;0;Young +2246;Cyprus;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;214;1;8.15495661387788e-07;840106;0.0002547297602921536;0;1;Old +2247;Cyprus;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2248;Cyprus;F;Clerical support workers;Information and communication   ;Y15-29;397;1;1.5128587736960366e-06;840106;0.00047255941512142514;1;0;Young +2249;Cyprus;F;Clerical support workers;Information and communication   ;Y30-49;663;1;2.5265122593462776e-06;840106;0.0007891861265126067;1;0;Young +2250;Cyprus;F;Clerical support workers;Information and communication   ;Y50-64;77;1;2.9342600900401714e-07;840106;9.165510066586836e-05;0;1;Old +2251;Cyprus;F;Clerical support workers;Financial and insurance activities   ;Y15-29;1148;1;4.374715043332619e-06;840106;0.00136649422810931;1;0;Young +2252;Cyprus;F;Clerical support workers;Financial and insurance activities   ;Y30-49;3269;1;1.245726783680691e-05;840106;0.0038911756373600473;1;0;Young +2253;Cyprus;F;Clerical support workers;Financial and insurance activities   ;Y50-64;405;1;1.543344592813337e-06;840106;0.00048208202298281405;0;1;Old +2254;Cyprus;F;Clerical support workers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2255;Cyprus;F;Clerical support workers;Real estate activities   ;Y15-29;124;1;4.725301963181575e-07;840106;0.00014760042185152825;1;0;Young +2256;Cyprus;F;Clerical support workers;Real estate activities   ;Y30-49;201;1;7.659562053221747e-07;840106;0.0002392555225173966;1;0;Young +2257;Cyprus;F;Clerical support workers;Real estate activities   ;Y50-64;33;1;1.257540038588645e-07;840106;3.92807574282293e-05;0;1;Old +2258;Cyprus;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;1489;1;5.674173083207552e-06;840106;0.0017723953882010127;1;0;Young +2259;Cyprus;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2326;1;8.863751908355116e-06;840106;0.0027686982356988285;1;0;Young +2260;Cyprus;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;267;1;1.0174642130399036e-06;840106;0.00031781703737385523;0;1;Old +2261;Cyprus;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2262;Cyprus;F;Clerical support workers;Administrative and support service activities   ;Y15-29;330;1;1.257540038588645e-06;840106;0.00039280757428229295;1;0;Young +2263;Cyprus;F;Clerical support workers;Administrative and support service activities   ;Y30-49;999;1;3.806916662272898e-06;840106;0.0011891356566909414;1;0;Young +2264;Cyprus;F;Clerical support workers;Administrative and support service activities   ;Y50-64;322;1;1.2270542194713445e-06;840106;0.00038328496642090404;0;1;Old +2265;Cyprus;F;Clerical support workers;Administrative and support service activities   ;Y65-84;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +2266;Cyprus;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;1063;1;4.050803215211302e-06;840106;0.0012653165195820528;1;0;Young +2267;Cyprus;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2485;1;9.469657563311463e-06;840106;0.0029579600669439334;1;0;Young +2268;Cyprus;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;499;1;1.9015529674416177e-06;840106;0.0005939726653541339;0;1;Old +2269;Cyprus;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2270;Cyprus;F;Clerical support workers;Education   ;Y15-29;412;1;1.570019684540975e-06;840106;0.0004904143048615294;1;0;Young +2271;Cyprus;F;Clerical support workers;Education   ;Y30-49;728;1;2.774209539674344e-06;840106;0.0008665573153863917;1;0;Young +2272;Cyprus;F;Clerical support workers;Education   ;Y50-64;126;1;4.801516510974826e-07;840106;0.00014998107381687548;0;1;Old +2273;Cyprus;F;Clerical support workers;Education   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2274;Cyprus;F;Clerical support workers;Human health and social work activities   ;Y15-29;342;1;1.3032687672645957e-06;840106;0.00040709148607437633;1;0;Young +2275;Cyprus;F;Clerical support workers;Human health and social work activities   ;Y30-49;589;1;2.244518432511248e-06;840106;0.0007011020037947592;1;0;Young +2276;Cyprus;F;Clerical support workers;Human health and social work activities   ;Y50-64;163;1;6.211485645149974e-07;840106;0.00019402313517579925;0;1;Old +2277;Cyprus;F;Clerical support workers;Human health and social work activities   ;Y65-84;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2278;Cyprus;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;343;1;1.3070794946542583e-06;840106;0.00040828181205704994;1;0;Young +2279;Cyprus;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;374;1;1.4252120437337977e-06;840106;0.000445181917519932;1;0;Young +2280;Cyprus;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;83;1;3.1629037334199253e-07;840106;9.879705656191005e-05;0;1;Old +2281;Cyprus;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2282;Cyprus;F;Clerical support workers;Other service activities   ;Y15-29;143;1;5.449340167217462e-07;840106;0.00017021661552232695;1;0;Young +2283;Cyprus;F;Clerical support workers;Other service activities   ;Y30-49;279;1;1.0631929417158544e-06;840106;0.0003321009491659386;1;0;Young +2284;Cyprus;F;Clerical support workers;Other service activities   ;Y50-64;76;1;2.896152816143546e-07;840106;9.046477468319474e-05;0;1;Old +2285;Cyprus;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +2286;Cyprus;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;162;1;6.173378371253348e-07;840106;0.00019283280919312563;1;0;Young +2287;Cyprus;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;42;1;1.6005055036582754e-07;840106;4.999369127229183e-05;0;1;Old +2288;Cyprus;F;Clerical support workers;Not stated   ;Y15-29;259;1;9.869783939226032e-07;840106;0.0003082944295124663;1;0;Young +2289;Cyprus;F;Clerical support workers;Not stated   ;Y30-49;623;1;2.3740831637597753e-06;840106;0.0007415730872056621;1;0;Young +2290;Cyprus;F;Clerical support workers;Not stated   ;Y50-64;93;1;3.543976472386181e-07;840106;0.00011070031638864619;0;1;Old +2291;Cyprus;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2292;Cyprus;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2293;Cyprus;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2294;Cyprus;F;Service and sales workers;Manufacturing   ;Y15-29;81;1;3.086689185626674e-07;840106;9.641640459656282e-05;1;0;Young +2295;Cyprus;F;Service and sales workers;Manufacturing   ;Y30-49;205;1;7.811991148808249e-07;840106;0.00024401682644809106;1;0;Young +2296;Cyprus;F;Service and sales workers;Manufacturing   ;Y50-64;86;1;3.277225555109802e-07;840106;0.00010236803450993089;0;1;Old +2297;Cyprus;F;Service and sales workers;Manufacturing   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2298;Cyprus;F;Service and sales workers;Construction   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2299;Cyprus;F;Service and sales workers;Construction   ;Y30-49;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;1;0;Young +2300;Cyprus;F;Service and sales workers;Construction   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2301;Cyprus;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6037;1;2.300536125139288e-05;840106;0.007185997957400614;1;0;Young +2302;Cyprus;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;11221;1;4.2760172039403594e-05;840106;0.013356647851580633;1;0;Young +2303;Cyprus;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4621;1;1.7609371267630694e-05;840106;0.005500496365934775;0;1;Old +2304;Cyprus;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;196;1;7.469025683738619e-07;840106;0.00023330389260402853;0;1;Old +2305;Cyprus;F;Service and sales workers;Transportation and storage   ;Y15-29;318;1;1.2118113099126943e-06;840106;0.0003785236624902096;1;0;Young +2306;Cyprus;F;Service and sales workers;Transportation and storage   ;Y30-49;563;1;2.1454395203800218e-06;840106;0.0006701535282452452;1;0;Young +2307;Cyprus;F;Service and sales workers;Transportation and storage   ;Y50-64;105;1;4.0012637591456885e-07;840106;0.00012498422818072957;0;1;Old +2308;Cyprus;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;3089;1;1.177133690666765e-05;840106;0.003676916960478797;1;0;Young +2309;Cyprus;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;4630;1;1.7643667814137655e-05;840106;0.005511209299778838;1;0;Young +2310;Cyprus;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;1776;1;6.767851844040708e-06;840106;0.00211401894522834;0;1;Old +2311;Cyprus;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;49;1;1.8672564209346548e-07;840106;5.832597315100713e-05;0;1;Old +2312;Cyprus;F;Service and sales workers;Information and communication   ;Y15-29;105;1;4.0012637591456885e-07;840106;0.00012498422818072957;1;0;Young +2313;Cyprus;F;Service and sales workers;Information and communication   ;Y30-49;80;1;3.0485819117300483e-07;840106;9.52260786138892e-05;1;0;Young +2314;Cyprus;F;Service and sales workers;Information and communication   ;Y50-64;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;0;1;Old +2315;Cyprus;F;Service and sales workers;Financial and insurance activities   ;Y15-29;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;1;0;Young +2316;Cyprus;F;Service and sales workers;Financial and insurance activities   ;Y30-49;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;1;0;Young +2317;Cyprus;F;Service and sales workers;Financial and insurance activities   ;Y50-64;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;0;1;Old +2318;Cyprus;F;Service and sales workers;Real estate activities   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2319;Cyprus;F;Service and sales workers;Real estate activities   ;Y30-49;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2320;Cyprus;F;Service and sales workers;Real estate activities   ;Y50-64;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2321;Cyprus;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;1;0;Young +2322;Cyprus;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;42;1;1.6005055036582754e-07;840106;4.999369127229183e-05;1;0;Young +2323;Cyprus;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;0;1;Old +2324;Cyprus;F;Service and sales workers;Administrative and support service activities   ;Y15-29;44;1;1.6767200514515266e-07;840106;5.237434323763906e-05;1;0;Young +2325;Cyprus;F;Service and sales workers;Administrative and support service activities   ;Y30-49;235;1;8.955209365707018e-07;840106;0.0002797266059282995;1;0;Young +2326;Cyprus;F;Service and sales workers;Administrative and support service activities   ;Y50-64;129;1;4.915838332664703e-07;840106;0.00015355205176489635;0;1;Old +2327;Cyprus;F;Service and sales workers;Administrative and support service activities   ;Y65-84;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;0;1;Old +2328;Cyprus;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;457;1;1.7415024170757901e-06;840106;0.0005439789740818421;1;0;Young +2329;Cyprus;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;766;1;2.9190171804815213e-06;840106;0.0009117897027279891;1;0;Young +2330;Cyprus;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;118;1;4.496658319801821e-07;840106;0.00014045846595548656;0;1;Old +2331;Cyprus;F;Service and sales workers;Education   ;Y15-29;240;1;9.145745735190145e-07;840106;0.0002856782358416676;1;0;Young +2332;Cyprus;F;Service and sales workers;Education   ;Y30-49;1089;1;4.149882127342528e-06;840106;0.0012962649951315667;1;0;Young +2333;Cyprus;F;Service and sales workers;Education   ;Y50-64;525;1;2.0006318795728442e-06;840106;0.0006249211409036479;0;1;Old +2334;Cyprus;F;Service and sales workers;Education   ;Y65-84;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +2335;Cyprus;F;Service and sales workers;Human health and social work activities   ;Y15-29;202;1;7.697669327118372e-07;840106;0.00024044584850007022;1;0;Young +2336;Cyprus;F;Service and sales workers;Human health and social work activities   ;Y30-49;982;1;3.7421342966486346e-06;840106;0.00116890011498549;1;0;Young +2337;Cyprus;F;Service and sales workers;Human health and social work activities   ;Y50-64;855;1;3.2581719181614894e-06;840106;0.001017728715185941;0;1;Old +2338;Cyprus;F;Service and sales workers;Human health and social work activities   ;Y65-84;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;0;1;Old +2339;Cyprus;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;185;1;7.049845670875737e-07;840106;0.00022021030679461877;1;0;Young +2340;Cyprus;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;136;1;5.182589249941082e-07;840106;0.00016188433364361165;1;0;Young +2341;Cyprus;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;43;1;1.638612777554901e-07;840106;5.1184017254965445e-05;0;1;Old +2342;Cyprus;F;Service and sales workers;Other service activities   ;Y15-29;2000;1;7.621454779325121e-06;840106;0.00238065196534723;1;0;Young +2343;Cyprus;F;Service and sales workers;Other service activities   ;Y30-49;2852;1;1.0868194515317622e-05;840106;0.00339480970258515;1;0;Young +2344;Cyprus;F;Service and sales workers;Other service activities   ;Y50-64;564;1;2.149250247769684e-06;840106;0.0006713438542279189;0;1;Old +2345;Cyprus;F;Service and sales workers;Other service activities   ;Y65-84;19;1;7.240382040358865e-08;840106;2.2616193670798686e-05;0;1;Old +2346;Cyprus;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;47;1;1.7910418731414036e-07;840106;5.5945321185659903e-05;1;0;Young +2347;Cyprus;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;145;1;5.525554715010713e-07;840106;0.00017259726748767418;1;0;Young +2348;Cyprus;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;63;1;2.400758255487413e-07;840106;7.499053690843774e-05;0;1;Old +2349;Cyprus;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2350;Cyprus;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;1;0;Young +2351;Cyprus;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;87;1;3.3153328290064277e-07;840106;0.0001035583604926045;1;0;Young +2352;Cyprus;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;28;1;1.067003669105517e-07;840106;3.332912751486122e-05;0;1;Old +2353;Cyprus;F;Service and sales workers;Not stated   ;Y15-29;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +2354;Cyprus;F;Service and sales workers;Not stated   ;Y30-49;62;1;2.3626509815907876e-07;840106;7.380021092576412e-05;1;0;Young +2355;Cyprus;F;Service and sales workers;Not stated   ;Y50-64;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;0;1;Old +2356;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +2357;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;267;1;1.0174642130399036e-06;840106;0.00031781703737385523;1;0;Young +2358;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;270;1;1.0288963952088914e-06;840106;0.00032138801532187607;0;1;Old +2359;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;0;1;Old +2360;Cyprus;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2361;Cyprus;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2362;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2363;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2364;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2365;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;1;0;Young +2366;Cyprus;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2367;Cyprus;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2368;Cyprus;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2369;Cyprus;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2370;Cyprus;F;Craft and related trades workers;Manufacturing   ;Y15-29;308;1;1.1737040360160685e-06;840106;0.00036662040266347343;1;0;Young +2371;Cyprus;F;Craft and related trades workers;Manufacturing   ;Y30-49;1153;1;4.393768680280932e-06;840106;0.001372445858022678;1;0;Young +2372;Cyprus;F;Craft and related trades workers;Manufacturing   ;Y50-64;1047;1;3.989831576976701e-06;840106;0.001246271303859275;0;1;Old +2373;Cyprus;F;Craft and related trades workers;Manufacturing   ;Y65-84;41;1;1.56239822976165e-07;840106;4.8803365289618215e-05;0;1;Old +2374;Cyprus;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +2375;Cyprus;F;Craft and related trades workers;Construction   ;Y15-29;63;1;2.400758255487413e-07;840106;7.499053690843774e-05;1;0;Young +2376;Cyprus;F;Craft and related trades workers;Construction   ;Y30-49;84;1;3.201011007316551e-07;840106;9.998738254458366e-05;1;0;Young +2377;Cyprus;F;Craft and related trades workers;Construction   ;Y50-64;19;1;7.240382040358865e-08;840106;2.2616193670798686e-05;0;1;Old +2378;Cyprus;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;76;1;2.896152816143546e-07;840106;9.046477468319474e-05;1;0;Young +2379;Cyprus;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;277;1;1.0555714869365292e-06;840106;0.0003297202972005914;1;0;Young +2380;Cyprus;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;150;1;5.716091084493841e-07;840106;0.00017854889740104226;0;1;Old +2381;Cyprus;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +2382;Cyprus;F;Craft and related trades workers;Transportation and storage   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2383;Cyprus;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2384;Cyprus;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;78;1;2.9723673639367974e-07;840106;9.284542664854197e-05;1;0;Young +2385;Cyprus;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;0;1;Old +2386;Cyprus;F;Craft and related trades workers;Information and communication   ;Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2387;Cyprus;F;Craft and related trades workers;Information and communication   ;Y30-49;48;1;1.829149147038029e-07;840106;5.713564716833352e-05;1;0;Young +2388;Cyprus;F;Craft and related trades workers;Information and communication   ;Y50-64;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;0;1;Old +2389;Cyprus;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +2390;Cyprus;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +2391;Cyprus;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;43;1;1.638612777554901e-07;840106;5.1184017254965445e-05;1;0;Young +2392;Cyprus;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;0;1;Old +2393;Cyprus;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2394;Cyprus;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2395;Cyprus;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2396;Cyprus;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +2397;Cyprus;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;0;1;Old +2398;Cyprus;F;Craft and related trades workers;Education   ;Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2399;Cyprus;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2400;Cyprus;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +2401;Cyprus;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2402;Cyprus;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +2403;Cyprus;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +2404;Cyprus;F;Craft and related trades workers;Other service activities   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2405;Cyprus;F;Craft and related trades workers;Other service activities   ;Y30-49;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;1;0;Young +2406;Cyprus;F;Craft and related trades workers;Other service activities   ;Y50-64;56;1;2.134007338211034e-07;840106;6.665825502972244e-05;0;1;Old +2407;Cyprus;F;Craft and related trades workers;Other service activities   ;Y65-84;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +2408;Cyprus;F;Craft and related trades workers;Not stated   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2409;Cyprus;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2410;Cyprus;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2411;Cyprus;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;146;1;5.563661988907339e-07;840106;0.0001737875934703478;1;0;Young +2412;Cyprus;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;892;1;3.399168831579004e-06;840106;0.0010617707765448645;1;0;Young +2413;Cyprus;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;856;1;3.261982645551152e-06;840106;0.0010189190411686144;0;1;Old +2414;Cyprus;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;0;1;Old +2415;Cyprus;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2416;Cyprus;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2417;Cyprus;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +2418;Cyprus;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2419;Cyprus;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;51;1;1.943470968727906e-07;840106;6.070662511635436e-05;1;0;Young +2420;Cyprus;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;183;1;6.973631123082485e-07;840106;0.00021782965482927154;1;0;Young +2421;Cyprus;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;116;1;4.4204437720085703e-07;840106;0.00013807781399013933;0;1;Old +2422;Cyprus;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2423;Cyprus;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;19;1;7.240382040358865e-08;840106;2.2616193670798686e-05;1;0;Young +2424;Cyprus;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;116;1;4.4204437720085703e-07;840106;0.00013807781399013933;1;0;Young +2425;Cyprus;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;45;1;1.7148273253481523e-07;840106;5.3564669220312674e-05;0;1;Old +2426;Cyprus;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2427;Cyprus;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;39;1;1.4861836819683987e-07;840106;4.6422713324270986e-05;1;0;Young +2428;Cyprus;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;45;1;1.7148273253481523e-07;840106;5.3564669220312674e-05;0;1;Old +2429;Cyprus;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +2430;Cyprus;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +2431;Cyprus;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2432;Cyprus;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2433;Cyprus;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;27;1;1.0288963952088914e-07;840106;3.21388015321876e-05;1;0;Young +2434;Cyprus;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;0;1;Old +2435;Cyprus;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2436;Cyprus;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2437;Cyprus;F;Plant and machine operators, and assemblers;Education   ;Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +2438;Cyprus;F;Plant and machine operators, and assemblers;Education   ;Y30-49;52;1;1.9815782426245315e-07;840106;6.189695109902798e-05;1;0;Young +2439;Cyprus;F;Plant and machine operators, and assemblers;Education   ;Y50-64;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +2440;Cyprus;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2441;Cyprus;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;39;1;1.4861836819683987e-07;840106;4.6422713324270986e-05;0;1;Old +2442;Cyprus;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2443;Cyprus;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2444;Cyprus;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;27;1;1.0288963952088914e-07;840106;3.21388015321876e-05;1;0;Young +2445;Cyprus;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;147;1;5.601769262803964e-07;840106;0.0001749779194530214;1;0;Young +2446;Cyprus;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;115;1;4.382336498111945e-07;840106;0.00013688748800746572;0;1;Old +2447;Cyprus;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2448;Cyprus;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2449;Cyprus;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2450;Cyprus;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;0;1;Old +2451;Cyprus;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;268;1;1.0212749404295662e-06;840106;0.00031900736335652884;1;0;Young +2452;Cyprus;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;515;1;1.9625246056762186e-06;840106;0.0006130178810769117;1;0;Young +2453;Cyprus;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;299;1;1.1394074895091056e-06;840106;0.0003559074688194109;0;1;Old +2454;Cyprus;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;0;1;Old +2455;Cyprus;F;Elementary occupations;Mining and quarrying   ;Y30-49;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2456;Cyprus;F;Elementary occupations;Mining and quarrying   ;Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2457;Cyprus;F;Elementary occupations;Manufacturing   ;Y15-29;145;1;5.525554715010713e-07;840106;0.00017259726748767418;1;0;Young +2458;Cyprus;F;Elementary occupations;Manufacturing   ;Y30-49;487;1;1.8558242387656669e-06;840106;0.0005796887535620505;1;0;Young +2459;Cyprus;F;Elementary occupations;Manufacturing   ;Y50-64;361;1;1.3756725876681843e-06;840106;0.000429707679745175;0;1;Old +2460;Cyprus;F;Elementary occupations;Manufacturing   ;Y65-84;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +2461;Cyprus;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;1;0;Young +2462;Cyprus;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;0;1;Old +2463;Cyprus;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +2464;Cyprus;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;45;1;1.7148273253481523e-07;840106;5.3564669220312674e-05;1;0;Young +2465;Cyprus;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;44;1;1.6767200514515266e-07;840106;5.237434323763906e-05;0;1;Old +2466;Cyprus;F;Elementary occupations;Construction   ;Y15-29;49;1;1.8672564209346548e-07;840106;5.832597315100713e-05;1;0;Young +2467;Cyprus;F;Elementary occupations;Construction   ;Y30-49;146;1;5.563661988907339e-07;840106;0.0001737875934703478;1;0;Young +2468;Cyprus;F;Elementary occupations;Construction   ;Y50-64;122;1;4.6490874153883237e-07;840106;0.00014521976988618102;0;1;Old +2469;Cyprus;F;Elementary occupations;Construction   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2470;Cyprus;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;341;1;1.299458039874933e-06;840106;0.0004059011600917027;1;0;Young +2471;Cyprus;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1050;1;4.0012637591456885e-06;840106;0.0012498422818072957;1;0;Young +2472;Cyprus;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;686;1;2.6141589893085166e-06;840106;0.0008165636241140999;0;1;Old +2473;Cyprus;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;0;1;Old +2474;Cyprus;F;Elementary occupations;Transportation and storage   ;Y15-29;37;1;1.4099691341751475e-07;840106;4.404206135892376e-05;1;0;Young +2475;Cyprus;F;Elementary occupations;Transportation and storage   ;Y30-49;150;1;5.716091084493841e-07;840106;0.00017854889740104226;1;0;Young +2476;Cyprus;F;Elementary occupations;Transportation and storage   ;Y50-64;136;1;5.182589249941082e-07;840106;0.00016188433364361165;0;1;Old +2477;Cyprus;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;972;1;3.704027022752009e-06;840106;0.0011569968551587537;1;0;Young +2478;Cyprus;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;3268;1;1.2453457109417247e-05;840106;0.003889985311377374;1;0;Young +2479;Cyprus;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;2590;1;9.869783939226033e-06;840106;0.0030829442951246628;0;1;Old +2480;Cyprus;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;48;1;1.829149147038029e-07;840106;5.713564716833352e-05;0;1;Old +2481;Cyprus;F;Elementary occupations;Information and communication   ;Y15-29;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2482;Cyprus;F;Elementary occupations;Information and communication   ;Y30-49;79;1;3.010474637833423e-07;840106;9.403575263121559e-05;1;0;Young +2483;Cyprus;F;Elementary occupations;Information and communication   ;Y50-64;84;1;3.201011007316551e-07;840106;9.998738254458366e-05;0;1;Old +2484;Cyprus;F;Elementary occupations;Financial and insurance activities   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2485;Cyprus;F;Elementary occupations;Financial and insurance activities   ;Y30-49;215;1;8.193063887774505e-07;840106;0.0002559200862748272;1;0;Young +2486;Cyprus;F;Elementary occupations;Financial and insurance activities   ;Y50-64;344;1;1.310890222043921e-06;840106;0.00040947213803972356;0;1;Old +2487;Cyprus;F;Elementary occupations;Financial and insurance activities   ;Y65-84;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2488;Cyprus;F;Elementary occupations;Real estate activities   ;Y30-49;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;1;0;Young +2489;Cyprus;F;Elementary occupations;Real estate activities   ;Y50-64;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;0;1;Old +2490;Cyprus;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;1;0;Young +2491;Cyprus;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;142;1;5.411232893320836e-07;840106;0.00016902628953965334;1;0;Young +2492;Cyprus;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;148;1;5.63987653670059e-07;840106;0.00017616824543569503;0;1;Old +2493;Cyprus;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2494;Cyprus;F;Elementary occupations;Administrative and support service activities   ;Y15-29;97;1;3.6964055679726836e-07;840106;0.00011546162031934065;1;0;Young +2495;Cyprus;F;Elementary occupations;Administrative and support service activities   ;Y30-49;434;1;1.6538556871135514e-06;840106;0.0005166014764803489;1;0;Young +2496;Cyprus;F;Elementary occupations;Administrative and support service activities   ;Y50-64;310;1;1.1813254907953937e-06;840106;0.00036900105462882066;0;1;Old +2497;Cyprus;F;Elementary occupations;Administrative and support service activities   ;Y65-84;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;0;1;Old +2498;Cyprus;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;1;0;Young +2499;Cyprus;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;460;1;1.752934599244778e-06;840106;0.0005475499520298629;1;0;Young +2500;Cyprus;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;672;1;2.5608088058532406e-06;840106;0.0007998990603566693;0;1;Old +2501;Cyprus;F;Elementary occupations;Education   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2502;Cyprus;F;Elementary occupations;Education   ;Y30-49;627;1;2.3893260733184253e-06;840106;0.0007463343911363566;1;0;Young +2503;Cyprus;F;Elementary occupations;Education   ;Y50-64;695;1;2.6484555358154796e-06;840106;0.0008272765579581625;0;1;Old +2504;Cyprus;F;Elementary occupations;Education   ;Y65-84;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +2505;Cyprus;F;Elementary occupations;Human health and social work activities   ;Y15-29;28;1;1.067003669105517e-07;840106;3.332912751486122e-05;1;0;Young +2506;Cyprus;F;Elementary occupations;Human health and social work activities   ;Y30-49;488;1;1.8596349661553295e-06;840106;0.0005808790795447241;1;0;Young +2507;Cyprus;F;Elementary occupations;Human health and social work activities   ;Y50-64;664;1;2.5303229867359402e-06;840106;0.0007903764524952804;0;1;Old +2508;Cyprus;F;Elementary occupations;Human health and social work activities   ;Y65-84;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +2509;Cyprus;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2510;Cyprus;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;104;1;3.963156485249063e-07;840106;0.00012379390219805595;1;0;Young +2511;Cyprus;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;85;1;3.239118281213176e-07;840106;0.00010117770852725727;0;1;Old +2512;Cyprus;F;Elementary occupations;Other service activities   ;Y15-29;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;1;0;Young +2513;Cyprus;F;Elementary occupations;Other service activities   ;Y30-49;103;1;3.9250492113524375e-07;840106;0.00012260357621538234;1;0;Young +2514;Cyprus;F;Elementary occupations;Other service activities   ;Y50-64;97;1;3.6964055679726836e-07;840106;0.00011546162031934065;0;1;Old +2515;Cyprus;F;Elementary occupations;Other service activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2516;Cyprus;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4930;1;1.8786886031036422e-05;840106;0.005868307094580922;1;0;Young +2517;Cyprus;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;16561;1;6.310945630020167e-05;840106;0.019712988599057738;1;0;Young +2518;Cyprus;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1802;1;6.866930756171934e-06;840106;0.002144967420777854;0;1;Old +2519;Cyprus;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;57;1;2.1721146121076594e-07;840106;6.784858101239605e-05;0;1;Old +2520;Cyprus;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2521;Cyprus;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2522;Cyprus;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;104;1;3.963156485249063e-07;840106;0.00012379390219805595;1;0;Young +2523;Cyprus;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;118;1;4.496658319801821e-07;840106;0.00014045846595548656;0;1;Old +2524;Cyprus;F;Elementary occupations;Not stated   ;Y15-29;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +2525;Cyprus;F;Elementary occupations;Not stated   ;Y30-49;48;1;1.829149147038029e-07;840106;5.713564716833352e-05;1;0;Young +2526;Cyprus;F;Elementary occupations;Not stated   ;Y50-64;63;1;2.400758255487413e-07;840106;7.499053690843774e-05;0;1;Old +2527;Cyprus;F;Not stated;Manufacturing   ;Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +2528;Cyprus;F;Not stated;Manufacturing   ;Y30-49;39;1;1.4861836819683987e-07;840106;4.6422713324270986e-05;1;0;Young +2529;Cyprus;F;Not stated;Manufacturing   ;Y50-64;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +2530;Cyprus;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2531;Cyprus;F;Not stated;Construction   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2532;Cyprus;F;Not stated;Construction   ;Y30-49;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +2533;Cyprus;F;Not stated;Construction   ;Y50-64;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2534;Cyprus;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2535;Cyprus;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;45;1;1.7148273253481523e-07;840106;5.3564669220312674e-05;1;0;Young +2536;Cyprus;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;0;1;Old +2537;Cyprus;F;Not stated;Transportation and storage   ;Y15-29;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;1;0;Young +2538;Cyprus;F;Not stated;Transportation and storage   ;Y30-49;49;1;1.8672564209346548e-07;840106;5.832597315100713e-05;1;0;Young +2539;Cyprus;F;Not stated;Transportation and storage   ;Y50-64;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;0;1;Old +2540;Cyprus;F;Not stated;Accommodation and food service activities   ;Y15-29;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;1;0;Young +2541;Cyprus;F;Not stated;Accommodation and food service activities   ;Y30-49;77;1;2.9342600900401714e-07;840106;9.165510066586836e-05;1;0;Young +2542;Cyprus;F;Not stated;Accommodation and food service activities   ;Y50-64;38;1;1.448076408071773e-07;840106;4.523238734159737e-05;0;1;Old +2543;Cyprus;F;Not stated;Information and communication   ;Y15-29;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2544;Cyprus;F;Not stated;Information and communication   ;Y30-49;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;1;0;Young +2545;Cyprus;F;Not stated;Financial and insurance activities   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2546;Cyprus;F;Not stated;Financial and insurance activities   ;Y30-49;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +2547;Cyprus;F;Not stated;Financial and insurance activities   ;Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2548;Cyprus;F;Not stated;Professional, scientific and technical activities   ;Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2549;Cyprus;F;Not stated;Professional, scientific and technical activities   ;Y30-49;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;1;0;Young +2550;Cyprus;F;Not stated;Professional, scientific and technical activities   ;Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2551;Cyprus;F;Not stated;Administrative and support service activities   ;Y30-49;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +2552;Cyprus;F;Not stated;Administrative and support service activities   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2553;Cyprus;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2554;Cyprus;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;57;1;2.1721146121076594e-07;840106;6.784858101239605e-05;1;0;Young +2555;Cyprus;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2556;Cyprus;F;Not stated;Education   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2557;Cyprus;F;Not stated;Education   ;Y30-49;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +2558;Cyprus;F;Not stated;Education   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2559;Cyprus;F;Not stated;Human health and social work activities   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2560;Cyprus;F;Not stated;Human health and social work activities   ;Y30-49;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +2561;Cyprus;F;Not stated;Human health and social work activities   ;Y50-64;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2562;Cyprus;F;Not stated;Arts, entertainment and recreation   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2563;Cyprus;F;Not stated;Arts, entertainment and recreation   ;Y30-49;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2564;Cyprus;F;Not stated;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2565;Cyprus;F;Not stated;Other service activities   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2566;Cyprus;F;Not stated;Other service activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2567;Cyprus;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2568;Cyprus;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;33;1;1.257540038588645e-07;840106;3.92807574282293e-05;1;0;Young +2569;Cyprus;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2570;Cyprus;F;Not stated;Not stated   ;Y15-29;233;1;8.878994817913766e-07;840106;0.0002773459539629523;1;0;Young +2571;Cyprus;F;Not stated;Not stated   ;Y30-49;522;1;1.9891996974038564e-06;840106;0.0006213501629556271;1;0;Young +2572;Cyprus;F;Not stated;Not stated   ;Y50-64;124;1;4.725301963181575e-07;840106;0.00014760042185152825;0;1;Old +2573;Cyprus;F;Not stated;Not stated   ;Y65-84;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;0;1;Old +2574;Cyprus;M;Not applicable;Not applicable  ;Y15-29;54109;1;0.0002061946483272515;840106;0.06440734859648663;1;0;Young +2575;Cyprus;M;Not applicable;Not applicable  ;Y30-49;7573;1;2.8858638521914572e-05;840106;0.009014338666787287;1;0;Young +2576;Cyprus;M;Not applicable;Not applicable  ;Y50-64;16397;1;6.2484497008297e-05;840106;0.019517775137899266;0;1;Old +2577;Cyprus;M;Not applicable;Not applicable  ;Y65-84;43848;1;0.00016709277458192394;840106;0.05219341368827267;0;1;Old +2578;Cyprus;M;Not applicable;Not applicable  ;Y_GE85;4247;1;1.6184159223896894e-05;840106;0.005055314448414843;0;1;Old +2579;Cyprus;M;Not applicable;Not applicable  ;Y_LT15;69161;1;0.00026355371699645237;840106;0.08232413528768989;0;1;Old +2580;Cyprus;M;Armed forces occupations;Transportation and storage   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2581;Cyprus;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;550;1;2.0959000643144084e-06;840106;0.0006546792904704883;1;0;Young +2582;Cyprus;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2671;1;1.01784528577887e-05;840106;0.003179360699721226;1;0;Young +2583;Cyprus;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;238;1;9.069531187396895e-07;840106;0.00028329758387632035;0;1;Old +2584;Cyprus;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;43;1;1.638612777554901e-07;840106;5.1184017254965445e-05;1;0;Young +2585;Cyprus;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;205;1;7.811991148808249e-07;840106;0.00024401682644809106;1;0;Young +2586;Cyprus;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2587;Cyprus;M;Managers;Agriculture, forestry and fishing   ;Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +2588;Cyprus;M;Managers;Agriculture, forestry and fishing   ;Y30-49;38;1;1.448076408071773e-07;840106;4.523238734159737e-05;1;0;Young +2589;Cyprus;M;Managers;Agriculture, forestry and fishing   ;Y50-64;19;1;7.240382040358865e-08;840106;2.2616193670798686e-05;0;1;Old +2590;Cyprus;M;Managers;Agriculture, forestry and fishing   ;Y65-84;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +2591;Cyprus;M;Managers;Mining and quarrying   ;Y30-49;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +2592;Cyprus;M;Managers;Mining and quarrying   ;Y50-64;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;0;1;Old +2593;Cyprus;M;Managers;Manufacturing   ;Y15-29;42;1;1.6005055036582754e-07;840106;4.999369127229183e-05;1;0;Young +2594;Cyprus;M;Managers;Manufacturing   ;Y30-49;490;1;1.8672564209346547e-06;840106;0.0005832597315100713;1;0;Young +2595;Cyprus;M;Managers;Manufacturing   ;Y50-64;447;1;1.7033951431791645e-06;840106;0.0005320757142551059;0;1;Old +2596;Cyprus;M;Managers;Manufacturing   ;Y65-84;61;1;2.3245437076941619e-07;840106;7.260988494309051e-05;0;1;Old +2597;Cyprus;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2598;Cyprus;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;0;1;Old +2599;Cyprus;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;1;0;Young +2600;Cyprus;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +2601;Cyprus;M;Managers;Construction   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2602;Cyprus;M;Managers;Construction   ;Y30-49;438;1;1.6690985966722016e-06;840106;0.0005213627804110433;1;0;Young +2603;Cyprus;M;Managers;Construction   ;Y50-64;321;1;1.223243492081682e-06;840106;0.0003820946404382304;0;1;Old +2604;Cyprus;M;Managers;Construction   ;Y65-84;43;1;1.638612777554901e-07;840106;5.1184017254965445e-05;0;1;Old +2605;Cyprus;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;130;1;4.953945606561329e-07;840106;0.00015474237774756996;1;0;Young +2606;Cyprus;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1160;1;4.42044377200857e-06;840106;0.0013807781399013935;1;0;Young +2607;Cyprus;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;723;1;2.755155902726031e-06;840106;0.0008606056854730237;0;1;Old +2608;Cyprus;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;99;1;3.772620115765935e-07;840106;0.00011784227228468788;0;1;Old +2609;Cyprus;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2610;Cyprus;M;Managers;Transportation and storage   ;Y15-29;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;1;0;Young +2611;Cyprus;M;Managers;Transportation and storage   ;Y30-49;332;1;1.2651614933679701e-06;840106;0.0003951882262476402;1;0;Young +2612;Cyprus;M;Managers;Transportation and storage   ;Y50-64;231;1;8.802780270120515e-07;840106;0.00027496530199760505;0;1;Old +2613;Cyprus;M;Managers;Transportation and storage   ;Y65-84;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +2614;Cyprus;M;Managers;Accommodation and food service activities   ;Y15-29;103;1;3.9250492113524375e-07;840106;0.00012260357621538234;1;0;Young +2615;Cyprus;M;Managers;Accommodation and food service activities   ;Y30-49;871;1;3.31914355639609e-06;840106;0.0010367739309087188;1;0;Young +2616;Cyprus;M;Managers;Accommodation and food service activities   ;Y50-64;586;1;2.2330862503422603e-06;840106;0.0006975310258467384;0;1;Old +2617;Cyprus;M;Managers;Accommodation and food service activities   ;Y65-84;38;1;1.448076408071773e-07;840106;4.523238734159737e-05;0;1;Old +2618;Cyprus;M;Managers;Information and communication   ;Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2619;Cyprus;M;Managers;Information and communication   ;Y30-49;270;1;1.0288963952088914e-06;840106;0.00032138801532187607;1;0;Young +2620;Cyprus;M;Managers;Information and communication   ;Y50-64;112;1;4.268014676422068e-07;840106;0.00013331651005944487;0;1;Old +2621;Cyprus;M;Managers;Information and communication   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2622;Cyprus;M;Managers;Financial and insurance activities   ;Y15-29;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;1;0;Young +2623;Cyprus;M;Managers;Financial and insurance activities   ;Y30-49;639;1;2.435054801994376e-06;840106;0.0007606183029284399;1;0;Young +2624;Cyprus;M;Managers;Financial and insurance activities   ;Y50-64;564;1;2.149250247769684e-06;840106;0.0006713438542279189;0;1;Old +2625;Cyprus;M;Managers;Financial and insurance activities   ;Y65-84;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;0;1;Old +2626;Cyprus;M;Managers;Real estate activities   ;Y30-49;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;1;0;Young +2627;Cyprus;M;Managers;Real estate activities   ;Y50-64;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;0;1;Old +2628;Cyprus;M;Managers;Professional, scientific and technical activities   ;Y15-29;19;1;7.240382040358865e-08;840106;2.2616193670798686e-05;1;0;Young +2629;Cyprus;M;Managers;Professional, scientific and technical activities   ;Y30-49;271;1;1.032707122598554e-06;840106;0.0003225783413045497;1;0;Young +2630;Cyprus;M;Managers;Professional, scientific and technical activities   ;Y50-64;108;1;4.1155855808355654e-07;840106;0.0001285552061287504;0;1;Old +2631;Cyprus;M;Managers;Professional, scientific and technical activities   ;Y65-84;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;0;1;Old +2632;Cyprus;M;Managers;Administrative and support service activities   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2633;Cyprus;M;Managers;Administrative and support service activities   ;Y30-49;112;1;4.268014676422068e-07;840106;0.00013331651005944487;1;0;Young +2634;Cyprus;M;Managers;Administrative and support service activities   ;Y50-64;67;1;2.5531873510739155e-07;840106;7.975184083913221e-05;0;1;Old +2635;Cyprus;M;Managers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2636;Cyprus;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;100;1;3.8107273896625605e-07;840106;0.0001190325982673615;1;0;Young +2637;Cyprus;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;346;1;1.3185116768232459e-06;840106;0.0004118527900050708;0;1;Old +2638;Cyprus;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;38;1;1.448076408071773e-07;840106;4.523238734159737e-05;0;1;Old +2639;Cyprus;M;Managers;Education   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2640;Cyprus;M;Managers;Education   ;Y30-49;82;1;3.1247964595233e-07;840106;9.760673057923643e-05;1;0;Young +2641;Cyprus;M;Managers;Education   ;Y50-64;141;1;5.37312561942421e-07;840106;0.00016783596355697972;0;1;Old +2642;Cyprus;M;Managers;Education   ;Y65-84;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;0;1;Old +2643;Cyprus;M;Managers;Human health and social work activities   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2644;Cyprus;M;Managers;Human health and social work activities   ;Y30-49;35;1;1.3337545863818962e-07;840106;4.166140939357653e-05;1;0;Young +2645;Cyprus;M;Managers;Human health and social work activities   ;Y50-64;43;1;1.638612777554901e-07;840106;5.1184017254965445e-05;0;1;Old +2646;Cyprus;M;Managers;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2647;Cyprus;M;Managers;Arts, entertainment and recreation   ;Y15-29;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;1;0;Young +2648;Cyprus;M;Managers;Arts, entertainment and recreation   ;Y30-49;67;1;2.5531873510739155e-07;840106;7.975184083913221e-05;1;0;Young +2649;Cyprus;M;Managers;Arts, entertainment and recreation   ;Y50-64;43;1;1.638612777554901e-07;840106;5.1184017254965445e-05;0;1;Old +2650;Cyprus;M;Managers;Arts, entertainment and recreation   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2651;Cyprus;M;Managers;Other service activities   ;Y15-29;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +2652;Cyprus;M;Managers;Other service activities   ;Y30-49;44;1;1.6767200514515266e-07;840106;5.237434323763906e-05;1;0;Young +2653;Cyprus;M;Managers;Other service activities   ;Y50-64;33;1;1.257540038588645e-07;840106;3.92807574282293e-05;0;1;Old +2654;Cyprus;M;Managers;Other service activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2655;Cyprus;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2656;Cyprus;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;0;1;Old +2657;Cyprus;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2658;Cyprus;M;Managers;Not stated   ;Y15-29;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2659;Cyprus;M;Managers;Not stated   ;Y30-49;109;1;4.153692854732191e-07;840106;0.00012974553211142403;1;0;Young +2660;Cyprus;M;Managers;Not stated   ;Y50-64;66;1;2.51508007717729e-07;840106;7.85615148564586e-05;0;1;Old +2661;Cyprus;M;Managers;Not stated   ;Y65-84;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2662;Cyprus;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;1;0;Young +2663;Cyprus;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;1;0;Young +2664;Cyprus;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;0;1;Old +2665;Cyprus;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2666;Cyprus;M;Professionals;Mining and quarrying   ;Y15-29;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;1;0;Young +2667;Cyprus;M;Professionals;Mining and quarrying   ;Y30-49;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +2668;Cyprus;M;Professionals;Mining and quarrying   ;Y50-64;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;0;1;Old +2669;Cyprus;M;Professionals;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2670;Cyprus;M;Professionals;Manufacturing   ;Y15-29;210;1;8.002527518291377e-07;840106;0.00024996845636145914;1;0;Young +2671;Cyprus;M;Professionals;Manufacturing   ;Y30-49;385;1;1.4671300450200858e-06;840106;0.00045827550332934176;1;0;Young +2672;Cyprus;M;Professionals;Manufacturing   ;Y50-64;185;1;7.049845670875737e-07;840106;0.00022021030679461877;0;1;Old +2673;Cyprus;M;Professionals;Manufacturing   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2674;Cyprus;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;1;0;Young +2675;Cyprus;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;199;1;7.583347505428495e-07;840106;0.00023687487055204938;1;0;Young +2676;Cyprus;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;94;1;3.582083746282807e-07;840106;0.00011189064237131981;0;1;Old +2677;Cyprus;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;1;0;Young +2678;Cyprus;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;49;1;1.8672564209346548e-07;840106;5.832597315100713e-05;1;0;Young +2679;Cyprus;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;0;1;Old +2680;Cyprus;M;Professionals;Construction   ;Y15-29;492;1;1.8748778757139799e-06;840106;0.0005856403834754185;1;0;Young +2681;Cyprus;M;Professionals;Construction   ;Y30-49;952;1;3.627812474958758e-06;840106;0.0011331903355052814;1;0;Young +2682;Cyprus;M;Professionals;Construction   ;Y50-64;590;1;2.2483291599009107e-06;840106;0.0007022923297774329;0;1;Old +2683;Cyprus;M;Professionals;Construction   ;Y65-84;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;0;1;Old +2684;Cyprus;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;409;1;1.5585875023719872e-06;840106;0.0004868433269135085;1;0;Young +2685;Cyprus;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;903;1;3.441086832865292e-06;840106;0.0010748643623542744;1;0;Young +2686;Cyprus;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;384;1;1.4633193176304232e-06;840106;0.00045708517734666815;0;1;Old +2687;Cyprus;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;36;1;1.3718618602785217e-07;840106;4.285173537625014e-05;0;1;Old +2688;Cyprus;M;Professionals;Transportation and storage   ;Y15-29;84;1;3.201011007316551e-07;840106;9.998738254458366e-05;1;0;Young +2689;Cyprus;M;Professionals;Transportation and storage   ;Y30-49;368;1;1.4023476793958223e-06;840106;0.0004380399616238903;1;0;Young +2690;Cyprus;M;Professionals;Transportation and storage   ;Y50-64;248;1;9.45060392636315e-07;840106;0.0002952008437030565;0;1;Old +2691;Cyprus;M;Professionals;Transportation and storage   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2692;Cyprus;M;Professionals;Accommodation and food service activities   ;Y15-29;116;1;4.4204437720085703e-07;840106;0.00013807781399013933;1;0;Young +2693;Cyprus;M;Professionals;Accommodation and food service activities   ;Y30-49;247;1;9.412496652466524e-07;840106;0.0002940105177203829;1;0;Young +2694;Cyprus;M;Professionals;Accommodation and food service activities   ;Y50-64;124;1;4.725301963181575e-07;840106;0.00014760042185152825;0;1;Old +2695;Cyprus;M;Professionals;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2696;Cyprus;M;Professionals;Information and communication   ;Y15-29;761;1;2.8999635435332087e-06;840106;0.000905838072814621;1;0;Young +2697;Cyprus;M;Professionals;Information and communication   ;Y30-49;1702;1;6.485858017205678e-06;840106;0.0020259348225104925;1;0;Young +2698;Cyprus;M;Professionals;Information and communication   ;Y50-64;397;1;1.5128587736960366e-06;840106;0.00047255941512142514;0;1;Old +2699;Cyprus;M;Professionals;Information and communication   ;Y65-84;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;0;1;Old +2700;Cyprus;M;Professionals;Financial and insurance activities   ;Y15-29;202;1;7.697669327118372e-07;840106;0.00024044584850007022;1;0;Young +2701;Cyprus;M;Professionals;Financial and insurance activities   ;Y30-49;806;1;3.0714462760680236e-06;840106;0.0009594027420349336;1;0;Young +2702;Cyprus;M;Professionals;Financial and insurance activities   ;Y50-64;162;1;6.173378371253348e-07;840106;0.00019283280919312563;0;1;Old +2703;Cyprus;M;Professionals;Financial and insurance activities   ;Y65-84;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +2704;Cyprus;M;Professionals;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2705;Cyprus;M;Professionals;Real estate activities   ;Y30-49;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;1;0;Young +2706;Cyprus;M;Professionals;Real estate activities   ;Y50-64;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;0;1;Old +2707;Cyprus;M;Professionals;Professional, scientific and technical activities   ;Y15-29;1219;1;4.645276687998661e-06;840106;0.0014510073728791367;1;0;Young +2708;Cyprus;M;Professionals;Professional, scientific and technical activities   ;Y30-49;3541;1;1.3493785686795127e-05;840106;0.004214944304647271;1;0;Young +2709;Cyprus;M;Professionals;Professional, scientific and technical activities   ;Y50-64;1610;1;6.135271097356723e-06;840106;0.0019164248321045202;0;1;Old +2710;Cyprus;M;Professionals;Professional, scientific and technical activities   ;Y65-84;264;1;1.006032030870916e-06;840106;0.0003142460594258344;0;1;Old +2711;Cyprus;M;Professionals;Administrative and support service activities   ;Y15-29;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;1;0;Young +2712;Cyprus;M;Professionals;Administrative and support service activities   ;Y30-49;65;1;2.4769728032806646e-07;840106;7.737118887378498e-05;1;0;Young +2713;Cyprus;M;Professionals;Administrative and support service activities   ;Y50-64;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;0;1;Old +2714;Cyprus;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;168;1;6.402022014633102e-07;840106;0.00019997476508916732;1;0;Young +2715;Cyprus;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;1116;1;4.2527717668634176e-06;840106;0.0013284037966637544;1;0;Young +2716;Cyprus;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;634;1;2.4160011650460635e-06;840106;0.0007546666730150719;0;1;Old +2717;Cyprus;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;0;1;Old +2718;Cyprus;M;Professionals;Education   ;Y15-29;735;1;2.800884631401982e-06;840106;0.0008748895972651071;1;0;Young +2719;Cyprus;M;Professionals;Education   ;Y30-49;3815;1;1.4537924991562668e-05;840106;0.004541093623899841;1;0;Young +2720;Cyprus;M;Professionals;Education   ;Y50-64;1454;1;5.540797624569363e-06;840106;0.0017307339788074363;0;1;Old +2721;Cyprus;M;Professionals;Education   ;Y65-84;69;1;2.629401898867167e-07;840106;8.213249280447944e-05;0;1;Old +2722;Cyprus;M;Professionals;Human health and social work activities   ;Y15-29;601;1;2.290247161187199e-06;840106;0.0007153859155868426;1;0;Young +2723;Cyprus;M;Professionals;Human health and social work activities   ;Y30-49;1522;1;5.799927087066417e-06;840106;0.001811676145629242;1;0;Young +2724;Cyprus;M;Professionals;Human health and social work activities   ;Y50-64;1074;1;4.09272121649759e-06;840106;0.0012784101053914625;0;1;Old +2725;Cyprus;M;Professionals;Human health and social work activities   ;Y65-84;147;1;5.601769262803964e-07;840106;0.0001749779194530214;0;1;Old +2726;Cyprus;M;Professionals;Arts, entertainment and recreation   ;Y15-29;90;1;3.4296546506963047e-07;840106;0.00010712933844062535;1;0;Young +2727;Cyprus;M;Professionals;Arts, entertainment and recreation   ;Y30-49;319;1;1.2156220373023567e-06;840106;0.0003797139884728832;1;0;Young +2728;Cyprus;M;Professionals;Arts, entertainment and recreation   ;Y50-64;151;1;5.754198358390467e-07;840106;0.00017973922338371587;0;1;Old +2729;Cyprus;M;Professionals;Arts, entertainment and recreation   ;Y65-84;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;0;1;Old +2730;Cyprus;M;Professionals;Other service activities   ;Y15-29;101;1;3.848834663559186e-07;840106;0.00012022292425003511;1;0;Young +2731;Cyprus;M;Professionals;Other service activities   ;Y30-49;403;1;1.5357231380340118e-06;840106;0.0004797013710174668;1;0;Young +2732;Cyprus;M;Professionals;Other service activities   ;Y50-64;227;1;8.650351174534013e-07;840106;0.0002702039980669106;0;1;Old +2733;Cyprus;M;Professionals;Other service activities   ;Y65-84;112;1;4.268014676422068e-07;840106;0.00013331651005944487;0;1;Old +2734;Cyprus;M;Professionals;Other service activities   ;Y_GE85;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;0;1;Old +2735;Cyprus;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;1;0;Young +2736;Cyprus;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;137;1;5.220696523837708e-07;840106;0.00016307465962628527;1;0;Young +2737;Cyprus;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;71;1;2.705616446660418e-07;840106;8.451314476982667e-05;0;1;Old +2738;Cyprus;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2739;Cyprus;M;Professionals;Not stated   ;Y15-29;112;1;4.268014676422068e-07;840106;0.00013331651005944487;1;0;Young +2740;Cyprus;M;Professionals;Not stated   ;Y30-49;240;1;9.145745735190145e-07;840106;0.0002856782358416676;1;0;Young +2741;Cyprus;M;Professionals;Not stated   ;Y50-64;89;1;3.3915473767996787e-07;840106;0.00010593901245795173;0;1;Old +2742;Cyprus;M;Professionals;Not stated   ;Y65-84;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +2743;Cyprus;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;1;0;Young +2744;Cyprus;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;64;1;2.4388655293840386e-07;840106;7.618086289111135e-05;1;0;Young +2745;Cyprus;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;53;1;2.019685516521157e-07;840106;6.308727708170159e-05;0;1;Old +2746;Cyprus;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2747;Cyprus;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;32;1;1.2194327646920193e-07;840106;3.8090431445555677e-05;1;0;Young +2748;Cyprus;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;33;1;1.257540038588645e-07;840106;3.92807574282293e-05;0;1;Old +2749;Cyprus;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2750;Cyprus;M;Technicians and associate professionals;Manufacturing   ;Y15-29;318;1;1.2118113099126943e-06;840106;0.0003785236624902096;1;0;Young +2751;Cyprus;M;Technicians and associate professionals;Manufacturing   ;Y30-49;895;1;3.4106010137479917e-06;840106;0.0010653417544928855;1;0;Young +2752;Cyprus;M;Technicians and associate professionals;Manufacturing   ;Y50-64;586;1;2.2330862503422603e-06;840106;0.0006975310258467384;0;1;Old +2753;Cyprus;M;Technicians and associate professionals;Manufacturing   ;Y65-84;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;0;1;Old +2754;Cyprus;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;37;1;1.4099691341751475e-07;840106;4.404206135892376e-05;1;0;Young +2755;Cyprus;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;241;1;9.18385300908677e-07;840106;0.0002868685618243412;1;0;Young +2756;Cyprus;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;120;1;4.572872867595073e-07;840106;0.0001428391179208338;0;1;Old +2757;Cyprus;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;1;0;Young +2758;Cyprus;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;98;1;3.7345128418693096e-07;840106;0.00011665194630201427;1;0;Young +2759;Cyprus;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;82;1;3.1247964595233e-07;840106;9.760673057923643e-05;0;1;Old +2760;Cyprus;M;Technicians and associate professionals;Construction   ;Y15-29;340;1;1.2956473124852705e-06;840106;0.0004047108341090291;1;0;Young +2761;Cyprus;M;Technicians and associate professionals;Construction   ;Y30-49;2108;1;8.033013337408678e-06;840106;0.0025092071714759804;1;0;Young +2762;Cyprus;M;Technicians and associate professionals;Construction   ;Y50-64;1796;1;6.844066391833959e-06;840106;0.0021378254648818126;0;1;Old +2763;Cyprus;M;Technicians and associate professionals;Construction   ;Y65-84;63;1;2.400758255487413e-07;840106;7.499053690843774e-05;0;1;Old +2764;Cyprus;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;893;1;3.4029795589686665e-06;840106;0.0010629611025275382;1;0;Young +2765;Cyprus;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2680;1;1.0212749404295662e-05;840106;0.003190073633565288;1;0;Young +2766;Cyprus;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1421;1;5.415043620710499e-06;840106;0.001691453221379207;0;1;Old +2767;Cyprus;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;121;1;4.610980141491698e-07;840106;0.0001440294439035074;0;1;Old +2768;Cyprus;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;204;1;7.773883874911624e-07;840106;0.00024282650046541745;1;0;Young +2769;Cyprus;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;872;1;3.3229542837857527e-06;840106;0.0010379642568913922;1;0;Young +2770;Cyprus;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;484;1;1.8443920565966793e-06;840106;0.0005761177756140296;0;1;Old +2771;Cyprus;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;27;1;1.0288963952088914e-07;840106;3.21388015321876e-05;0;1;Old +2772;Cyprus;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;89;1;3.3915473767996787e-07;840106;0.00010593901245795173;1;0;Young +2773;Cyprus;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;270;1;1.0288963952088914e-06;840106;0.00032138801532187607;1;0;Young +2774;Cyprus;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;136;1;5.182589249941082e-07;840106;0.00016188433364361165;0;1;Old +2775;Cyprus;M;Technicians and associate professionals;Information and communication   ;Y15-29;345;1;1.3147009494335833e-06;840106;0.00041066246402239717;1;0;Young +2776;Cyprus;M;Technicians and associate professionals;Information and communication   ;Y30-49;812;1;3.0943106404059992e-06;840106;0.0009665446979309753;1;0;Young +2777;Cyprus;M;Technicians and associate professionals;Information and communication   ;Y50-64;311;1;1.1851362181850563e-06;840106;0.0003701913806114943;0;1;Old +2778;Cyprus;M;Technicians and associate professionals;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2779;Cyprus;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;413;1;1.5738304119306376e-06;840106;0.000491604630844203;1;0;Young +2780;Cyprus;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2191;1;8.34930371075067e-06;840106;0.0026080042280378904;1;0;Young +2781;Cyprus;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;979;1;3.7307021144796468e-06;840106;0.0011653291370374692;0;1;Old +2782;Cyprus;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;55;1;2.0959000643144082e-07;840106;6.546792904704882e-05;0;1;Old +2783;Cyprus;M;Technicians and associate professionals;Real estate activities   ;Y15-29;116;1;4.4204437720085703e-07;840106;0.00013807781399013933;1;0;Young +2784;Cyprus;M;Technicians and associate professionals;Real estate activities   ;Y30-49;475;1;1.8100955100897163e-06;840106;0.0005654048417699671;1;0;Young +2785;Cyprus;M;Technicians and associate professionals;Real estate activities   ;Y50-64;292;1;1.1127323977814678e-06;840106;0.0003475751869406956;0;1;Old +2786;Cyprus;M;Technicians and associate professionals;Real estate activities   ;Y65-84;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;0;1;Old +2787;Cyprus;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;918;1;3.4982477437102307e-06;840106;0.0010927192520943786;1;0;Young +2788;Cyprus;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;658;1;2.507458622397965e-06;840106;0.0007832344965992387;1;0;Young +2789;Cyprus;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;456;1;1.7376916896861275e-06;840106;0.0005427886480991684;0;1;Old +2790;Cyprus;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;53;1;2.019685516521157e-07;840106;6.308727708170159e-05;0;1;Old +2791;Cyprus;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;56;1;2.134007338211034e-07;840106;6.665825502972244e-05;1;0;Young +2792;Cyprus;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;150;1;5.716091084493841e-07;840106;0.00017854889740104226;1;0;Young +2793;Cyprus;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;80;1;3.0485819117300483e-07;840106;9.52260786138892e-05;0;1;Old +2794;Cyprus;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;0;1;Old +2795;Cyprus;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;159;1;6.059056549563472e-07;840106;0.0001892618312451048;1;0;Young +2796;Cyprus;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;1233;1;4.698626871453937e-06;840106;0.0014676719366365674;1;0;Young +2797;Cyprus;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;1281;1;4.88154178615774e-06;840106;0.001524807583804901;0;1;Old +2798;Cyprus;M;Technicians and associate professionals;Education   ;Y15-29;35;1;1.3337545863818962e-07;840106;4.166140939357653e-05;1;0;Young +2799;Cyprus;M;Technicians and associate professionals;Education   ;Y30-49;116;1;4.4204437720085703e-07;840106;0.00013807781399013933;1;0;Young +2800;Cyprus;M;Technicians and associate professionals;Education   ;Y50-64;50;1;1.9053636948312803e-07;840106;5.951629913368075e-05;0;1;Old +2801;Cyprus;M;Technicians and associate professionals;Education   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2802;Cyprus;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;131;1;4.992052880457954e-07;840106;0.00015593270373024358;1;0;Young +2803;Cyprus;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;155;1;5.906627453976969e-07;840106;0.00018450052731441033;1;0;Young +2804;Cyprus;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;115;1;4.382336498111945e-07;840106;0.00013688748800746572;0;1;Old +2805;Cyprus;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2806;Cyprus;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;634;1;2.4160011650460635e-06;840106;0.0007546666730150719;1;0;Young +2807;Cyprus;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;641;1;2.4426762567737013e-06;840106;0.0007629989548937872;1;0;Young +2808;Cyprus;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;124;1;4.725301963181575e-07;840106;0.00014760042185152825;0;1;Old +2809;Cyprus;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +2810;Cyprus;M;Technicians and associate professionals;Other service activities   ;Y15-29;111;1;4.2299074025254424e-07;840106;0.00013212618407677126;1;0;Young +2811;Cyprus;M;Technicians and associate professionals;Other service activities   ;Y30-49;306;1;1.1660825812367436e-06;840106;0.0003642397506981262;1;0;Young +2812;Cyprus;M;Technicians and associate professionals;Other service activities   ;Y50-64;159;1;6.059056549563472e-07;840106;0.0001892618312451048;0;1;Old +2813;Cyprus;M;Technicians and associate professionals;Other service activities   ;Y65-84;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;0;1;Old +2814;Cyprus;M;Technicians and associate professionals;Other service activities   ;Y_GE85;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2815;Cyprus;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +2816;Cyprus;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;92;1;3.5058691984895557e-07;840106;0.00010950999040597258;1;0;Young +2817;Cyprus;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;55;1;2.0959000643144082e-07;840106;6.546792904704882e-05;0;1;Old +2818;Cyprus;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2819;Cyprus;M;Technicians and associate professionals;Not stated   ;Y15-29;62;1;2.3626509815907876e-07;840106;7.380021092576412e-05;1;0;Young +2820;Cyprus;M;Technicians and associate professionals;Not stated   ;Y30-49;166;1;6.325807466839851e-07;840106;0.0001975941131238201;1;0;Young +2821;Cyprus;M;Technicians and associate professionals;Not stated   ;Y50-64;87;1;3.3153328290064277e-07;840106;0.0001035583604926045;0;1;Old +2822;Cyprus;M;Technicians and associate professionals;Not stated   ;Y65-84;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +2823;Cyprus;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2824;Cyprus;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +2825;Cyprus;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2826;Cyprus;M;Clerical support workers;Mining and quarrying   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2827;Cyprus;M;Clerical support workers;Mining and quarrying   ;Y30-49;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2828;Cyprus;M;Clerical support workers;Mining and quarrying   ;Y50-64;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2829;Cyprus;M;Clerical support workers;Manufacturing   ;Y15-29;170;1;6.478236562426352e-07;840106;0.00020235541705451455;1;0;Young +2830;Cyprus;M;Clerical support workers;Manufacturing   ;Y30-49;285;1;1.0860573060538298e-06;840106;0.0003392429050619803;1;0;Young +2831;Cyprus;M;Clerical support workers;Manufacturing   ;Y50-64;156;1;5.944734727873595e-07;840106;0.00018569085329708394;0;1;Old +2832;Cyprus;M;Clerical support workers;Manufacturing   ;Y65-84;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2833;Cyprus;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;1;0;Young +2834;Cyprus;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;127;1;4.839623784871452e-07;840106;0.0001511713997995491;1;0;Young +2835;Cyprus;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +2836;Cyprus;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +2837;Cyprus;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;44;1;1.6767200514515266e-07;840106;5.237434323763906e-05;1;0;Young +2838;Cyprus;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;0;1;Old +2839;Cyprus;M;Clerical support workers;Construction   ;Y15-29;73;1;2.7818309944536694e-07;840106;8.68937967351739e-05;1;0;Young +2840;Cyprus;M;Clerical support workers;Construction   ;Y30-49;107;1;4.07747830693894e-07;840106;0.0001273648801460768;1;0;Young +2841;Cyprus;M;Clerical support workers;Construction   ;Y50-64;105;1;4.0012637591456885e-07;840106;0.00012498422818072957;0;1;Old +2842;Cyprus;M;Clerical support workers;Construction   ;Y65-84;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2843;Cyprus;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;778;1;2.964745909157472e-06;840106;0.0009260736145200724;1;0;Young +2844;Cyprus;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1004;1;3.8259702992212105e-06;840106;0.0011950872866043094;1;0;Young +2845;Cyprus;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;466;1;1.7757989635827531e-06;840106;0.0005546919079259045;0;1;Old +2846;Cyprus;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;0;1;Old +2847;Cyprus;M;Clerical support workers;Transportation and storage   ;Y15-29;375;1;1.4290227711234603e-06;840106;0.0004463722435026056;1;0;Young +2848;Cyprus;M;Clerical support workers;Transportation and storage   ;Y30-49;705;1;2.686562809712105e-06;840106;0.0008391798177848986;1;0;Young +2849;Cyprus;M;Clerical support workers;Transportation and storage   ;Y50-64;236;1;8.993316639603643e-07;840106;0.0002809169319109731;0;1;Old +2850;Cyprus;M;Clerical support workers;Transportation and storage   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2851;Cyprus;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;193;1;7.354703862048742e-07;840106;0.0002297329146560077;1;0;Young +2852;Cyprus;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;354;1;1.3489974959405465e-06;840106;0.0004213753978664597;1;0;Young +2853;Cyprus;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;268;1;1.0212749404295662e-06;840106;0.00031900736335652884;0;1;Old +2854;Cyprus;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;0;1;Old +2855;Cyprus;M;Clerical support workers;Information and communication   ;Y15-29;145;1;5.525554715010713e-07;840106;0.00017259726748767418;1;0;Young +2856;Cyprus;M;Clerical support workers;Information and communication   ;Y30-49;196;1;7.469025683738619e-07;840106;0.00023330389260402853;1;0;Young +2857;Cyprus;M;Clerical support workers;Information and communication   ;Y50-64;53;1;2.019685516521157e-07;840106;6.308727708170159e-05;0;1;Old +2858;Cyprus;M;Clerical support workers;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2859;Cyprus;M;Clerical support workers;Financial and insurance activities   ;Y15-29;362;1;1.3794833150578469e-06;840106;0.0004308980057278486;1;0;Young +2860;Cyprus;M;Clerical support workers;Financial and insurance activities   ;Y30-49;1252;1;4.771030691857526e-06;840106;0.001490288130307366;1;0;Young +2861;Cyprus;M;Clerical support workers;Financial and insurance activities   ;Y50-64;340;1;1.2956473124852705e-06;840106;0.0004047108341090291;0;1;Old +2862;Cyprus;M;Clerical support workers;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2863;Cyprus;M;Clerical support workers;Real estate activities   ;Y15-29;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;1;0;Young +2864;Cyprus;M;Clerical support workers;Real estate activities   ;Y30-49;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;1;0;Young +2865;Cyprus;M;Clerical support workers;Real estate activities   ;Y50-64;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2866;Cyprus;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;200;1;7.621454779325121e-07;840106;0.000238065196534723;1;0;Young +2867;Cyprus;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;210;1;8.002527518291377e-07;840106;0.00024996845636145914;1;0;Young +2868;Cyprus;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;0;1;Old +2869;Cyprus;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +2870;Cyprus;M;Clerical support workers;Administrative and support service activities   ;Y15-29;125;1;4.7634092370782007e-07;840106;0.00014879074783420186;1;0;Young +2871;Cyprus;M;Clerical support workers;Administrative and support service activities   ;Y30-49;319;1;1.2156220373023567e-06;840106;0.0003797139884728832;1;0;Young +2872;Cyprus;M;Clerical support workers;Administrative and support service activities   ;Y50-64;198;1;7.54524023153187e-07;840106;0.00023568454456937576;0;1;Old +2873;Cyprus;M;Clerical support workers;Administrative and support service activities   ;Y65-84;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;0;1;Old +2874;Cyprus;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;300;1;1.1432182168987682e-06;840106;0.0003570977948020845;1;0;Young +2875;Cyprus;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;593;1;2.2597613420698985e-06;840106;0.0007058633077254537;1;0;Young +2876;Cyprus;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;281;1;1.0708143964951796e-06;840106;0.00033448160113128583;0;1;Old +2877;Cyprus;M;Clerical support workers;Education   ;Y15-29;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;1;0;Young +2878;Cyprus;M;Clerical support workers;Education   ;Y30-49;51;1;1.943470968727906e-07;840106;6.070662511635436e-05;1;0;Young +2879;Cyprus;M;Clerical support workers;Education   ;Y50-64;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +2880;Cyprus;M;Clerical support workers;Human health and social work activities   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2881;Cyprus;M;Clerical support workers;Human health and social work activities   ;Y30-49;71;1;2.705616446660418e-07;840106;8.451314476982667e-05;1;0;Young +2882;Cyprus;M;Clerical support workers;Human health and social work activities   ;Y50-64;61;1;2.3245437076941619e-07;840106;7.260988494309051e-05;0;1;Old +2883;Cyprus;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;188;1;7.164167492565614e-07;840106;0.00022378128474263961;1;0;Young +2884;Cyprus;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;403;1;1.5357231380340118e-06;840106;0.0004797013710174668;1;0;Young +2885;Cyprus;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;162;1;6.173378371253348e-07;840106;0.00019283280919312563;0;1;Old +2886;Cyprus;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +2887;Cyprus;M;Clerical support workers;Other service activities   ;Y15-29;41;1;1.56239822976165e-07;840106;4.8803365289618215e-05;1;0;Young +2888;Cyprus;M;Clerical support workers;Other service activities   ;Y30-49;78;1;2.9723673639367974e-07;840106;9.284542664854197e-05;1;0;Young +2889;Cyprus;M;Clerical support workers;Other service activities   ;Y50-64;37;1;1.4099691341751475e-07;840106;4.404206135892376e-05;0;1;Old +2890;Cyprus;M;Clerical support workers;Other service activities   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2891;Cyprus;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +2892;Cyprus;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;93;1;3.543976472386181e-07;840106;0.00011070031638864619;1;0;Young +2893;Cyprus;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;48;1;1.829149147038029e-07;840106;5.713564716833352e-05;0;1;Old +2894;Cyprus;M;Clerical support workers;Not stated   ;Y15-29;56;1;2.134007338211034e-07;840106;6.665825502972244e-05;1;0;Young +2895;Cyprus;M;Clerical support workers;Not stated   ;Y30-49;89;1;3.3915473767996787e-07;840106;0.00010593901245795173;1;0;Young +2896;Cyprus;M;Clerical support workers;Not stated   ;Y50-64;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;0;1;Old +2897;Cyprus;M;Clerical support workers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2898;Cyprus;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;129;1;4.915838332664703e-07;840106;0.00015355205176489635;1;0;Young +2899;Cyprus;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;238;1;9.069531187396895e-07;840106;0.00028329758387632035;1;0;Young +2900;Cyprus;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;167;1;6.363914740736477e-07;840106;0.0001987844391064937;0;1;Old +2901;Cyprus;M;Service and sales workers;Manufacturing   ;Y15-29;62;1;2.3626509815907876e-07;840106;7.380021092576412e-05;1;0;Young +2902;Cyprus;M;Service and sales workers;Manufacturing   ;Y30-49;132;1;5.03016015435458e-07;840106;0.0001571230297129172;1;0;Young +2903;Cyprus;M;Service and sales workers;Manufacturing   ;Y50-64;103;1;3.9250492113524375e-07;840106;0.00012260357621538234;0;1;Old +2904;Cyprus;M;Service and sales workers;Manufacturing   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2905;Cyprus;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +2906;Cyprus;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2907;Cyprus;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2908;Cyprus;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +2909;Cyprus;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +2910;Cyprus;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2911;Cyprus;M;Service and sales workers;Construction   ;Y15-29;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;1;0;Young +2912;Cyprus;M;Service and sales workers;Construction   ;Y30-49;62;1;2.3626509815907876e-07;840106;7.380021092576412e-05;1;0;Young +2913;Cyprus;M;Service and sales workers;Construction   ;Y50-64;40;1;1.5242909558650242e-07;840106;4.76130393069446e-05;0;1;Old +2914;Cyprus;M;Service and sales workers;Construction   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2915;Cyprus;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2634;1;1.0037455944371184e-05;840106;0.003135318638362302;1;0;Young +2916;Cyprus;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5392;1;2.0547442085060527e-05;840106;0.006418237698576132;1;0;Young +2917;Cyprus;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3087;1;1.1763715451888325e-05;840106;0.0036745363085134495;0;1;Old +2918;Cyprus;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;393;1;1.4976158641373862e-06;840106;0.0004677981111907307;0;1;Old +2919;Cyprus;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +2920;Cyprus;M;Service and sales workers;Transportation and storage   ;Y15-29;184;1;7.011738396979111e-07;840106;0.00021901998081194516;1;0;Young +2921;Cyprus;M;Service and sales workers;Transportation and storage   ;Y30-49;347;1;1.3223224042129085e-06;840106;0.0004130431159877444;1;0;Young +2922;Cyprus;M;Service and sales workers;Transportation and storage   ;Y50-64;136;1;5.182589249941082e-07;840106;0.00016188433364361165;0;1;Old +2923;Cyprus;M;Service and sales workers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2924;Cyprus;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;2873;1;1.0948219790500537e-05;840106;0.0034198065482212957;1;0;Young +2925;Cyprus;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;4399;1;1.6763389787125603e-05;840106;0.0052362439977812324;1;0;Young +2926;Cyprus;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;1987;1;7.571915323259508e-06;840106;0.002365177727572473;0;1;Old +2927;Cyprus;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;116;1;4.4204437720085703e-07;840106;0.00013807781399013933;0;1;Old +2928;Cyprus;M;Service and sales workers;Information and communication   ;Y15-29;52;1;1.9815782426245315e-07;840106;6.189695109902798e-05;1;0;Young +2929;Cyprus;M;Service and sales workers;Information and communication   ;Y30-49;62;1;2.3626509815907876e-07;840106;7.380021092576412e-05;1;0;Young +2930;Cyprus;M;Service and sales workers;Information and communication   ;Y50-64;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;0;1;Old +2931;Cyprus;M;Service and sales workers;Financial and insurance activities   ;Y15-29;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +2932;Cyprus;M;Service and sales workers;Financial and insurance activities   ;Y30-49;43;1;1.638612777554901e-07;840106;5.1184017254965445e-05;1;0;Young +2933;Cyprus;M;Service and sales workers;Financial and insurance activities   ;Y50-64;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;0;1;Old +2934;Cyprus;M;Service and sales workers;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2935;Cyprus;M;Service and sales workers;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +2936;Cyprus;M;Service and sales workers;Real estate activities   ;Y30-49;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;1;0;Young +2937;Cyprus;M;Service and sales workers;Real estate activities   ;Y50-64;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;0;1;Old +2938;Cyprus;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;1;0;Young +2939;Cyprus;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;1;0;Young +2940;Cyprus;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +2941;Cyprus;M;Service and sales workers;Administrative and support service activities   ;Y15-29;193;1;7.354703862048742e-07;840106;0.0002297329146560077;1;0;Young +2942;Cyprus;M;Service and sales workers;Administrative and support service activities   ;Y30-49;404;1;1.5395338654236744e-06;840106;0.00048089169700014044;1;0;Young +2943;Cyprus;M;Service and sales workers;Administrative and support service activities   ;Y50-64;291;1;1.1089216703918052e-06;840106;0.000346384860958022;0;1;Old +2944;Cyprus;M;Service and sales workers;Administrative and support service activities   ;Y65-84;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +2945;Cyprus;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;834;1;3.1781466429785756e-06;840106;0.000992731869549795;1;0;Young +2946;Cyprus;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;3292;1;1.254491456676915e-05;840106;0.00391855313496154;1;0;Young +2947;Cyprus;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;726;1;2.766588084895019e-06;840106;0.0008641766634210445;0;1;Old +2948;Cyprus;M;Service and sales workers;Education   ;Y15-29;68;1;2.591294624970541e-07;840106;8.094216682180583e-05;1;0;Young +2949;Cyprus;M;Service and sales workers;Education   ;Y30-49;128;1;4.877731058768077e-07;840106;0.0001523617257822227;1;0;Young +2950;Cyprus;M;Service and sales workers;Education   ;Y50-64;127;1;4.839623784871452e-07;840106;0.0001511713997995491;0;1;Old +2951;Cyprus;M;Service and sales workers;Education   ;Y65-84;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;0;1;Old +2952;Cyprus;M;Service and sales workers;Human health and social work activities   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2953;Cyprus;M;Service and sales workers;Human health and social work activities   ;Y30-49;97;1;3.6964055679726836e-07;840106;0.00011546162031934065;1;0;Young +2954;Cyprus;M;Service and sales workers;Human health and social work activities   ;Y50-64;100;1;3.8107273896625605e-07;840106;0.0001190325982673615;0;1;Old +2955;Cyprus;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;91;1;3.46776192459293e-07;840106;0.00010831966442329896;1;0;Young +2956;Cyprus;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;166;1;6.325807466839851e-07;840106;0.0001975941131238201;1;0;Young +2957;Cyprus;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;91;1;3.46776192459293e-07;840106;0.00010831966442329896;0;1;Old +2958;Cyprus;M;Service and sales workers;Other service activities   ;Y15-29;410;1;1.5623982297616498e-06;840106;0.0004880336528961821;1;0;Young +2959;Cyprus;M;Service and sales workers;Other service activities   ;Y30-49;473;1;1.8024740553103911e-06;840106;0.0005630241898046199;1;0;Young +2960;Cyprus;M;Service and sales workers;Other service activities   ;Y50-64;231;1;8.802780270120515e-07;840106;0.00027496530199760505;0;1;Old +2961;Cyprus;M;Service and sales workers;Other service activities   ;Y65-84;56;1;2.134007338211034e-07;840106;6.665825502972244e-05;0;1;Old +2962;Cyprus;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +2963;Cyprus;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;1;0;Young +2964;Cyprus;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2965;Cyprus;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;39;1;1.4861836819683987e-07;840106;4.6422713324270986e-05;1;0;Young +2966;Cyprus;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;316;1;1.2041898551333691e-06;840106;0.00037614301052486235;1;0;Young +2967;Cyprus;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;100;1;3.8107273896625605e-07;840106;0.0001190325982673615;0;1;Old +2968;Cyprus;M;Service and sales workers;Not stated   ;Y15-29;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;1;0;Young +2969;Cyprus;M;Service and sales workers;Not stated   ;Y30-49;74;1;2.819938268350295e-07;840106;8.808412271784751e-05;1;0;Young +2970;Cyprus;M;Service and sales workers;Not stated   ;Y50-64;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;0;1;Old +2971;Cyprus;M;Service and sales workers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2972;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;272;1;1.0365178499882164e-06;840106;0.0003237686672872233;1;0;Young +2973;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;1301;1;4.957756333950991e-06;840106;0.0015486141034583732;1;0;Young +2974;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;1753;1;6.680205114078469e-06;840106;0.0020866414476268472;0;1;Old +2975;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;241;1;9.18385300908677e-07;840106;0.0002868685618243412;0;1;Old +2976;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +2977;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;0;1;Old +2978;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2979;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2980;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2981;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;1;0;Young +2982;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;46;1;1.7529345992447778e-07;840106;5.475499520298629e-05;1;0;Young +2983;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;32;1;1.2194327646920193e-07;840106;3.8090431445555677e-05;0;1;Old +2984;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +2985;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;1;0;Young +2986;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;78;1;2.9723673639367974e-07;840106;9.284542664854197e-05;1;0;Young +2987;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;114;1;4.344229224215319e-07;840106;0.0001356971620247921;0;1;Old +2988;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +2989;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2990;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +2991;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;129;1;4.915838332664703e-07;840106;0.00015355205176489635;1;0;Young +2992;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;272;1;1.0365178499882164e-06;840106;0.0003237686672872233;1;0;Young +2993;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;201;1;7.659562053221747e-07;840106;0.0002392555225173966;0;1;Old +2994;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +2995;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +2996;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +2997;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +2998;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;23;1;8.764672996223889e-08;840106;2.7377497601493144e-05;1;0;Young +2999;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;40;1;1.5242909558650242e-07;840106;4.76130393069446e-05;1;0;Young +3000;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;0;1;Old +3001;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +3002;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +3003;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;1;0;Young +3004;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;1;0;Young +3005;Cyprus;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +3006;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +3007;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +3008;Cyprus;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +3009;Cyprus;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;19;1;7.240382040358865e-08;840106;2.2616193670798686e-05;1;0;Young +3010;Cyprus;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;46;1;1.7529345992447778e-07;840106;5.475499520298629e-05;1;0;Young +3011;Cyprus;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;40;1;1.5242909558650242e-07;840106;4.76130393069446e-05;0;1;Old +3012;Cyprus;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +3013;Cyprus;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;32;1;1.2194327646920193e-07;840106;3.8090431445555677e-05;1;0;Young +3014;Cyprus;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;40;1;1.5242909558650242e-07;840106;4.76130393069446e-05;0;1;Old +3015;Cyprus;M;Craft and related trades workers;Manufacturing   ;Y15-29;2485;1;9.469657563311463e-06;840106;0.0029579600669439334;1;0;Young +3016;Cyprus;M;Craft and related trades workers;Manufacturing   ;Y30-49;5900;1;2.2483291599009107e-05;840106;0.007022923297774328;1;0;Young +3017;Cyprus;M;Craft and related trades workers;Manufacturing   ;Y50-64;3791;1;1.4446467534210767e-05;840106;0.004512525800315675;0;1;Old +3018;Cyprus;M;Craft and related trades workers;Manufacturing   ;Y65-84;193;1;7.354703862048742e-07;840106;0.0002297329146560077;0;1;Old +3019;Cyprus;M;Craft and related trades workers;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3020;Cyprus;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;81;1;3.086689185626674e-07;840106;9.641640459656282e-05;1;0;Young +3021;Cyprus;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;360;1;1.3718618602785219e-06;840106;0.0004285173537625014;1;0;Young +3022;Cyprus;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;71;1;2.705616446660418e-07;840106;8.451314476982667e-05;0;1;Old +3023;Cyprus;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;33;1;1.257540038588645e-07;840106;3.92807574282293e-05;1;0;Young +3024;Cyprus;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;172;1;6.554451110219605e-07;840106;0.00020473606901986178;1;0;Young +3025;Cyprus;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;98;1;3.7345128418693096e-07;840106;0.00011665194630201427;0;1;Old +3026;Cyprus;M;Craft and related trades workers;Construction   ;Y15-29;6224;1;2.3717967273259776e-05;840106;0.0074085889161605795;1;0;Young +3027;Cyprus;M;Craft and related trades workers;Construction   ;Y30-49;14094;1;5.370839182990413e-05;840106;0.01677645439980193;1;0;Young +3028;Cyprus;M;Craft and related trades workers;Construction   ;Y50-64;7054;1;2.68808710066797e-05;840106;0.00839655948177968;0;1;Old +3029;Cyprus;M;Craft and related trades workers;Construction   ;Y65-84;129;1;4.915838332664703e-07;840106;0.00015355205176489635;0;1;Old +3030;Cyprus;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2097;1;7.991095336122389e-06;840106;0.0024961135856665707;1;0;Young +3031;Cyprus;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3583;1;1.3653836237160955e-05;840106;0.004264937995919563;1;0;Young +3032;Cyprus;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1976;1;7.5299973219732195e-06;840106;0.002352084141763063;0;1;Old +3033;Cyprus;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;125;1;4.7634092370782007e-07;840106;0.00014879074783420186;0;1;Old +3034;Cyprus;M;Craft and related trades workers;Transportation and storage   ;Y15-29;61;1;2.3245437076941619e-07;840106;7.260988494309051e-05;1;0;Young +3035;Cyprus;M;Craft and related trades workers;Transportation and storage   ;Y30-49;120;1;4.572872867595073e-07;840106;0.0001428391179208338;1;0;Young +3036;Cyprus;M;Craft and related trades workers;Transportation and storage   ;Y50-64;88;1;3.353440102903053e-07;840106;0.00010474868647527812;0;1;Old +3037;Cyprus;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;118;1;4.496658319801821e-07;840106;0.00014045846595548656;1;0;Young +3038;Cyprus;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;228;1;8.688458448430638e-07;840106;0.0002713943240495842;1;0;Young +3039;Cyprus;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;163;1;6.211485645149974e-07;840106;0.00019402313517579925;0;1;Old +3040;Cyprus;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3041;Cyprus;M;Craft and related trades workers;Information and communication   ;Y15-29;109;1;4.153692854732191e-07;840106;0.00012974553211142403;1;0;Young +3042;Cyprus;M;Craft and related trades workers;Information and communication   ;Y30-49;326;1;1.2422971290299947e-06;840106;0.0003880462703515985;1;0;Young +3043;Cyprus;M;Craft and related trades workers;Information and communication   ;Y50-64;166;1;6.325807466839851e-07;840106;0.0001975941131238201;0;1;Old +3044;Cyprus;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;1;0;Young +3045;Cyprus;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;1;0;Young +3046;Cyprus;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;0;1;Old +3047;Cyprus;M;Craft and related trades workers;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +3048;Cyprus;M;Craft and related trades workers;Real estate activities   ;Y30-49;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +3049;Cyprus;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;71;1;2.705616446660418e-07;840106;8.451314476982667e-05;1;0;Young +3050;Cyprus;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;120;1;4.572872867595073e-07;840106;0.0001428391179208338;1;0;Young +3051;Cyprus;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;50;1;1.9053636948312803e-07;840106;5.951629913368075e-05;0;1;Old +3052;Cyprus;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +3053;Cyprus;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;39;1;1.4861836819683987e-07;840106;4.6422713324270986e-05;1;0;Young +3054;Cyprus;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;62;1;2.3626509815907876e-07;840106;7.380021092576412e-05;1;0;Young +3055;Cyprus;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;0;1;Old +3056;Cyprus;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;46;1;1.7529345992447778e-07;840106;5.475499520298629e-05;1;0;Young +3057;Cyprus;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;486;1;1.8520135113760045e-06;840106;0.0005784984275793768;1;0;Young +3058;Cyprus;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;370;1;1.4099691341751475e-06;840106;0.00044042061358923754;0;1;Old +3059;Cyprus;M;Craft and related trades workers;Education   ;Y15-29;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +3060;Cyprus;M;Craft and related trades workers;Education   ;Y30-49;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +3061;Cyprus;M;Craft and related trades workers;Education   ;Y50-64;27;1;1.0288963952088914e-07;840106;3.21388015321876e-05;0;1;Old +3062;Cyprus;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +3063;Cyprus;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;44;1;1.6767200514515266e-07;840106;5.237434323763906e-05;1;0;Young +3064;Cyprus;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;36;1;1.3718618602785217e-07;840106;4.285173537625014e-05;0;1;Old +3065;Cyprus;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;37;1;1.4099691341751475e-07;840106;4.404206135892376e-05;1;0;Young +3066;Cyprus;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;108;1;4.1155855808355654e-07;840106;0.0001285552061287504;1;0;Young +3067;Cyprus;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;68;1;2.591294624970541e-07;840106;8.094216682180583e-05;0;1;Old +3068;Cyprus;M;Craft and related trades workers;Other service activities   ;Y15-29;170;1;6.478236562426352e-07;840106;0.00020235541705451455;1;0;Young +3069;Cyprus;M;Craft and related trades workers;Other service activities   ;Y30-49;411;1;1.5662089571513124e-06;840106;0.0004892239788788558;1;0;Young +3070;Cyprus;M;Craft and related trades workers;Other service activities   ;Y50-64;182;1;6.93552384918586e-07;840106;0.00021663932884659793;0;1;Old +3071;Cyprus;M;Craft and related trades workers;Other service activities   ;Y65-84;27;1;1.0288963952088914e-07;840106;3.21388015321876e-05;0;1;Old +3072;Cyprus;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;60;1;2.2864364337975364e-07;840106;7.14195589604169e-05;1;0;Young +3073;Cyprus;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;108;1;4.1155855808355654e-07;840106;0.0001285552061287504;1;0;Young +3074;Cyprus;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;99;1;3.772620115765935e-07;840106;0.00011784227228468788;0;1;Old +3075;Cyprus;M;Craft and related trades workers;Not stated   ;Y15-29;83;1;3.1629037334199253e-07;840106;9.879705656191005e-05;1;0;Young +3076;Cyprus;M;Craft and related trades workers;Not stated   ;Y30-49;145;1;5.525554715010713e-07;840106;0.00017259726748767418;1;0;Young +3077;Cyprus;M;Craft and related trades workers;Not stated   ;Y50-64;84;1;3.201011007316551e-07;840106;9.998738254458366e-05;0;1;Old +3078;Cyprus;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;1;0;Young +3079;Cyprus;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;63;1;2.400758255487413e-07;840106;7.499053690843774e-05;1;0;Young +3080;Cyprus;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;39;1;1.4861836819683987e-07;840106;4.6422713324270986e-05;0;1;Old +3081;Cyprus;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;59;1;2.2483291599009106e-07;840106;7.022923297774328e-05;1;0;Young +3082;Cyprus;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;114;1;4.344229224215319e-07;840106;0.0001356971620247921;1;0;Young +3083;Cyprus;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;87;1;3.3153328290064277e-07;840106;0.0001035583604926045;0;1;Old +3084;Cyprus;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3085;Cyprus;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;888;1;3.383925922020354e-06;840106;0.00105700947261417;1;0;Young +3086;Cyprus;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;1879;1;7.1603567651759515e-06;840106;0.0022366225214437226;1;0;Young +3087;Cyprus;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;1142;1;4.351850678994644e-06;840106;0.0013593522722132683;0;1;Old +3088;Cyprus;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +3089;Cyprus;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +3090;Cyprus;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +3091;Cyprus;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;14;1;5.335018345527585e-08;840106;1.666456375743061e-05;0;1;Old +3092;Cyprus;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;55;1;2.0959000643144082e-07;840106;6.546792904704882e-05;1;0;Young +3093;Cyprus;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;188;1;7.164167492565614e-07;840106;0.00022378128474263961;1;0;Young +3094;Cyprus;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;135;1;5.144481976044457e-07;840106;0.00016069400766093804;0;1;Old +3095;Cyprus;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +3096;Cyprus;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;496;1;1.89012078527263e-06;840106;0.000590401687406113;1;0;Young +3097;Cyprus;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;1278;1;4.870109603988752e-06;840106;0.0015212366058568799;1;0;Young +3098;Cyprus;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;693;1;2.6408340810361544e-06;840106;0.0008248959059928152;0;1;Old +3099;Cyprus;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +3100;Cyprus;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1001;1;3.814538117052223e-06;840106;0.0011915163086562886;1;0;Young +3101;Cyprus;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1678;1;6.394400559853776e-06;840106;0.0019973669989263258;1;0;Young +3102;Cyprus;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;909;1;3.4639511972032677e-06;840106;0.001082006318250316;0;1;Old +3103;Cyprus;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;38;1;1.448076408071773e-07;840106;4.523238734159737e-05;0;1;Old +3104;Cyprus;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;693;1;2.6408340810361544e-06;840106;0.0008248959059928152;1;0;Young +3105;Cyprus;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;2512;1;9.572547202832351e-06;840106;0.002990098868476121;1;0;Young +3106;Cyprus;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;1982;1;7.552861686311195e-06;840106;0.002359226097659105;0;1;Old +3107;Cyprus;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;111;1;4.2299074025254424e-07;840106;0.00013212618407677126;0;1;Old +3108;Cyprus;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;292;1;1.1127323977814678e-06;840106;0.0003475751869406956;1;0;Young +3109;Cyprus;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;193;1;7.354703862048742e-07;840106;0.0002297329146560077;1;0;Young +3110;Cyprus;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;28;1;1.067003669105517e-07;840106;3.332912751486122e-05;0;1;Old +3111;Cyprus;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +3112;Cyprus;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +3113;Cyprus;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;0;1;Old +3114;Cyprus;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;11;1;4.1918001286288165e-08;840106;1.3093585809409765e-05;1;0;Young +3115;Cyprus;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;33;1;1.257540038588645e-07;840106;3.92807574282293e-05;1;0;Young +3116;Cyprus;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +3117;Cyprus;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +3118;Cyprus;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;1;0;Young +3119;Cyprus;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;26;1;9.907891213122657e-08;840106;3.094847554951399e-05;1;0;Young +3120;Cyprus;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;32;1;1.2194327646920193e-07;840106;3.8090431445555677e-05;0;1;Old +3121;Cyprus;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;33;1;1.257540038588645e-07;840106;3.92807574282293e-05;1;0;Young +3122;Cyprus;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;86;1;3.277225555109802e-07;840106;0.00010236803450993089;1;0;Young +3123;Cyprus;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;67;1;2.5531873510739155e-07;840106;7.975184083913221e-05;0;1;Old +3124;Cyprus;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +3125;Cyprus;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;96;1;3.658298294076058e-07;840106;0.00011427129433666704;1;0;Young +3126;Cyprus;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;83;1;3.1629037334199253e-07;840106;9.879705656191005e-05;0;1;Old +3127;Cyprus;M;Plant and machine operators, and assemblers;Education   ;Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +3128;Cyprus;M;Plant and machine operators, and assemblers;Education   ;Y30-49;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +3129;Cyprus;M;Plant and machine operators, and assemblers;Education   ;Y50-64;25;1;9.526818474156401e-08;840106;2.9758149566840374e-05;0;1;Old +3130;Cyprus;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;1;0;Young +3131;Cyprus;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;86;1;3.277225555109802e-07;840106;0.00010236803450993089;1;0;Young +3132;Cyprus;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;83;1;3.1629037334199253e-07;840106;9.879705656191005e-05;0;1;Old +3133;Cyprus;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3134;Cyprus;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;21;1;8.002527518291377e-08;840106;2.4996845636145915e-05;1;0;Young +3135;Cyprus;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;49;1;1.8672564209346548e-07;840106;5.832597315100713e-05;1;0;Young +3136;Cyprus;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;0;1;Old +3137;Cyprus;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;36;1;1.3718618602785217e-07;840106;4.285173537625014e-05;1;0;Young +3138;Cyprus;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;127;1;4.839623784871452e-07;840106;0.0001511713997995491;1;0;Young +3139;Cyprus;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;97;1;3.6964055679726836e-07;840106;0.00011546162031934065;0;1;Old +3140;Cyprus;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;18;1;6.859309301392609e-08;840106;2.142586768812507e-05;0;1;Old +3141;Cyprus;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +3142;Cyprus;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;1;0;Young +3143;Cyprus;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +3144;Cyprus;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;89;1;3.3915473767996787e-07;840106;0.00010593901245795173;1;0;Young +3145;Cyprus;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;70;1;2.6675091727637925e-07;840106;8.332281878715305e-05;0;1;Old +3146;Cyprus;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;108;1;4.1155855808355654e-07;840106;0.0001285552061287504;1;0;Young +3147;Cyprus;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;230;1;8.76467299622389e-07;840106;0.00027377497601493143;1;0;Young +3148;Cyprus;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;95;1;3.6201910201794326e-07;840106;0.00011308096835399342;0;1;Old +3149;Cyprus;M;Plant and machine operators, and assemblers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3150;Cyprus;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;1247;1;4.751977054909213e-06;840106;0.0014843365003939979;1;0;Young +3151;Cyprus;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;1023;1;3.898374119624799e-06;840106;0.0012177034802751082;1;0;Young +3152;Cyprus;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;206;1;7.850098422704875e-07;840106;0.0002452071524307647;0;1;Old +3153;Cyprus;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +3154;Cyprus;M;Elementary occupations;Mining and quarrying   ;Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +3155;Cyprus;M;Elementary occupations;Mining and quarrying   ;Y30-49;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;1;0;Young +3156;Cyprus;M;Elementary occupations;Mining and quarrying   ;Y50-64;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +3157;Cyprus;M;Elementary occupations;Manufacturing   ;Y15-29;385;1;1.4671300450200858e-06;840106;0.00045827550332934176;1;0;Young +3158;Cyprus;M;Elementary occupations;Manufacturing   ;Y30-49;445;1;1.6957736883998393e-06;840106;0.0005296950622897587;1;0;Young +3159;Cyprus;M;Elementary occupations;Manufacturing   ;Y50-64;181;1;6.897416575289234e-07;840106;0.0002154490028639243;0;1;Old +3160;Cyprus;M;Elementary occupations;Manufacturing   ;Y65-84;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +3161;Cyprus;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;17;1;6.478236562426352e-08;840106;2.0235541705451456e-05;1;0;Young +3162;Cyprus;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;79;1;3.010474637833423e-07;840106;9.403575263121559e-05;1;0;Young +3163;Cyprus;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;27;1;1.0288963952088914e-07;840106;3.21388015321876e-05;0;1;Old +3164;Cyprus;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;241;1;9.18385300908677e-07;840106;0.0002868685618243412;1;0;Young +3165;Cyprus;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;444;1;1.691962961010177e-06;840106;0.000528504736307085;1;0;Young +3166;Cyprus;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;288;1;1.0974894882228174e-06;840106;0.00034281388301000114;0;1;Old +3167;Cyprus;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;0;1;Old +3168;Cyprus;M;Elementary occupations;Construction   ;Y15-29;1968;1;7.4995115028559195e-06;840106;0.002342561533901674;1;0;Young +3169;Cyprus;M;Elementary occupations;Construction   ;Y30-49;2219;1;8.456004077661221e-06;840106;0.002641333355552752;1;0;Young +3170;Cyprus;M;Elementary occupations;Construction   ;Y50-64;1022;1;3.8945633922351365e-06;840106;0.0012165131542924345;0;1;Old +3171;Cyprus;M;Elementary occupations;Construction   ;Y65-84;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;0;1;Old +3172;Cyprus;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;742;1;2.82755972312962e-06;840106;0.0008832218791438223;1;0;Young +3173;Cyprus;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;711;1;2.7094271740500803e-06;840106;0.0008463217736809403;1;0;Young +3174;Cyprus;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;336;1;1.2804044029266203e-06;840106;0.00039994953017833464;0;1;Old +3175;Cyprus;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;40;1;1.5242909558650242e-07;840106;4.76130393069446e-05;0;1;Old +3176;Cyprus;M;Elementary occupations;Transportation and storage   ;Y15-29;398;1;1.516669501085699e-06;840106;0.00047374974110409875;1;0;Young +3177;Cyprus;M;Elementary occupations;Transportation and storage   ;Y30-49;494;1;1.8824993304933049e-06;840106;0.0005880210354407658;1;0;Young +3178;Cyprus;M;Elementary occupations;Transportation and storage   ;Y50-64;277;1;1.0555714869365292e-06;840106;0.0003297202972005914;0;1;Old +3179;Cyprus;M;Elementary occupations;Transportation and storage   ;Y65-84;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +3180;Cyprus;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;746;1;2.84280263268827e-06;840106;0.0008879831830745168;1;0;Young +3181;Cyprus;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;654;1;2.4922157128393146e-06;840106;0.0007784731926685442;1;0;Young +3182;Cyprus;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;424;1;1.6157484132169256e-06;840106;0.0005046982166536127;0;1;Old +3183;Cyprus;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;28;1;1.067003669105517e-07;840106;3.332912751486122e-05;0;1;Old +3184;Cyprus;M;Elementary occupations;Information and communication   ;Y15-29;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;1;0;Young +3185;Cyprus;M;Elementary occupations;Information and communication   ;Y30-49;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;1;0;Young +3186;Cyprus;M;Elementary occupations;Information and communication   ;Y50-64;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;0;1;Old +3187;Cyprus;M;Elementary occupations;Financial and insurance activities   ;Y15-29;40;1;1.5242909558650242e-07;840106;4.76130393069446e-05;1;0;Young +3188;Cyprus;M;Elementary occupations;Financial and insurance activities   ;Y30-49;84;1;3.201011007316551e-07;840106;9.998738254458366e-05;1;0;Young +3189;Cyprus;M;Elementary occupations;Financial and insurance activities   ;Y50-64;32;1;1.2194327646920193e-07;840106;3.8090431445555677e-05;0;1;Old +3190;Cyprus;M;Elementary occupations;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +3191;Cyprus;M;Elementary occupations;Real estate activities   ;Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +3192;Cyprus;M;Elementary occupations;Real estate activities   ;Y30-49;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;1;0;Young +3193;Cyprus;M;Elementary occupations;Real estate activities   ;Y50-64;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +3194;Cyprus;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;69;1;2.629401898867167e-07;840106;8.213249280447944e-05;1;0;Young +3195;Cyprus;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;131;1;4.992052880457954e-07;840106;0.00015593270373024358;1;0;Young +3196;Cyprus;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;65;1;2.4769728032806646e-07;840106;7.737118887378498e-05;0;1;Old +3197;Cyprus;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;0;1;Old +3198;Cyprus;M;Elementary occupations;Administrative and support service activities   ;Y15-29;232;1;8.840887544017141e-07;840106;0.00027615562798027866;1;0;Young +3199;Cyprus;M;Elementary occupations;Administrative and support service activities   ;Y30-49;300;1;1.1432182168987682e-06;840106;0.0003570977948020845;1;0;Young +3200;Cyprus;M;Elementary occupations;Administrative and support service activities   ;Y50-64;175;1;6.668772931909481e-07;840106;0.00020830704696788262;0;1;Old +3201;Cyprus;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;156;1;5.944734727873595e-07;840106;0.00018569085329708394;1;0;Young +3202;Cyprus;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;651;1;2.480783530670327e-06;840106;0.0007749022147205233;1;0;Young +3203;Cyprus;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;355;1;1.352808223330209e-06;840106;0.0004225657238491333;0;1;Old +3204;Cyprus;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3205;Cyprus;M;Elementary occupations;Education   ;Y15-29;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +3206;Cyprus;M;Elementary occupations;Education   ;Y30-49;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;1;0;Young +3207;Cyprus;M;Elementary occupations;Education   ;Y50-64;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;0;1;Old +3208;Cyprus;M;Elementary occupations;Human health and social work activities   ;Y15-29;16;1;6.097163823460096e-08;840106;1.9045215722777838e-05;1;0;Young +3209;Cyprus;M;Elementary occupations;Human health and social work activities   ;Y30-49;119;1;4.5347655936984473e-07;840106;0.00014164879193816017;1;0;Young +3210;Cyprus;M;Elementary occupations;Human health and social work activities   ;Y50-64;109;1;4.153692854732191e-07;840106;0.00012974553211142403;0;1;Old +3211;Cyprus;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;104;1;3.963156485249063e-07;840106;0.00012379390219805595;1;0;Young +3212;Cyprus;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;139;1;5.296911071630959e-07;840106;0.0001654553115916325;1;0;Young +3213;Cyprus;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;84;1;3.201011007316551e-07;840106;9.998738254458366e-05;0;1;Old +3214;Cyprus;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3215;Cyprus;M;Elementary occupations;Other service activities   ;Y15-29;22;1;8.383600257257633e-08;840106;2.618717161881953e-05;1;0;Young +3216;Cyprus;M;Elementary occupations;Other service activities   ;Y30-49;70;1;2.6675091727637925e-07;840106;8.332281878715305e-05;1;0;Young +3217;Cyprus;M;Elementary occupations;Other service activities   ;Y50-64;41;1;1.56239822976165e-07;840106;4.8803365289618215e-05;0;1;Old +3218;Cyprus;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;174;1;6.630665658012855e-07;840106;0.000207116720985209;1;0;Young +3219;Cyprus;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;429;1;1.6348020501652386e-06;840106;0.0005106498465669809;1;0;Young +3220;Cyprus;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;48;1;1.829149147038029e-07;840106;5.713564716833352e-05;0;1;Old +3221;Cyprus;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +3222;Cyprus;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;52;1;1.9815782426245315e-07;840106;6.189695109902798e-05;1;0;Young +3223;Cyprus;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;32;1;1.2194327646920193e-07;840106;3.8090431445555677e-05;0;1;Old +3224;Cyprus;M;Elementary occupations;Not stated   ;Y15-29;55;1;2.0959000643144082e-07;840106;6.546792904704882e-05;1;0;Young +3225;Cyprus;M;Elementary occupations;Not stated   ;Y30-49;59;1;2.2483291599009106e-07;840106;7.022923297774328e-05;1;0;Young +3226;Cyprus;M;Elementary occupations;Not stated   ;Y50-64;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;0;1;Old +3227;Cyprus;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +3228;Cyprus;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +3229;Cyprus;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +3230;Cyprus;M;Not stated;Manufacturing   ;Y15-29;27;1;1.0288963952088914e-07;840106;3.21388015321876e-05;1;0;Young +3231;Cyprus;M;Not stated;Manufacturing   ;Y30-49;53;1;2.019685516521157e-07;840106;6.308727708170159e-05;1;0;Young +3232;Cyprus;M;Not stated;Manufacturing   ;Y50-64;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;0;1;Old +3233;Cyprus;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +3234;Cyprus;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3235;Cyprus;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +3236;Cyprus;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;1;0;Young +3237;Cyprus;M;Not stated;Construction   ;Y15-29;9;1;3.429654650696304e-08;840106;1.0712933844062536e-05;1;0;Young +3238;Cyprus;M;Not stated;Construction   ;Y30-49;34;1;1.2956473124852705e-07;840106;4.047108341090291e-05;1;0;Young +3239;Cyprus;M;Not stated;Construction   ;Y50-64;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +3240;Cyprus;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;1;0;Young +3241;Cyprus;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;76;1;2.896152816143546e-07;840106;9.046477468319474e-05;1;0;Young +3242;Cyprus;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;28;1;1.067003669105517e-07;840106;3.332912751486122e-05;0;1;Old +3243;Cyprus;M;Not stated;Transportation and storage   ;Y15-29;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +3244;Cyprus;M;Not stated;Transportation and storage   ;Y30-49;51;1;1.943470968727906e-07;840106;6.070662511635436e-05;1;0;Young +3245;Cyprus;M;Not stated;Transportation and storage   ;Y50-64;20;1;7.621454779325121e-08;840106;2.38065196534723e-05;0;1;Old +3246;Cyprus;M;Not stated;Accommodation and food service activities   ;Y15-29;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;1;0;Young +3247;Cyprus;M;Not stated;Accommodation and food service activities   ;Y30-49;66;1;2.51508007717729e-07;840106;7.85615148564586e-05;1;0;Young +3248;Cyprus;M;Not stated;Accommodation and food service activities   ;Y50-64;48;1;1.829149147038029e-07;840106;5.713564716833352e-05;0;1;Old +3249;Cyprus;M;Not stated;Information and communication   ;Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +3250;Cyprus;M;Not stated;Information and communication   ;Y30-49;29;1;1.1051109430021426e-07;840106;3.451945349753483e-05;1;0;Young +3251;Cyprus;M;Not stated;Information and communication   ;Y50-64;12;1;4.5728728675950726e-08;840106;1.428391179208338e-05;0;1;Old +3252;Cyprus;M;Not stated;Financial and insurance activities   ;Y30-49;10;1;3.8107273896625604e-08;840106;1.190325982673615e-05;1;0;Young +3253;Cyprus;M;Not stated;Financial and insurance activities   ;Y50-64;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;0;1;Old +3254;Cyprus;M;Not stated;Professional, scientific and technical activities   ;Y15-29;15;1;5.716091084493841e-08;840106;1.7854889740104224e-05;1;0;Young +3255;Cyprus;M;Not stated;Professional, scientific and technical activities   ;Y30-49;24;1;9.145745735190145e-08;840106;2.856782358416676e-05;1;0;Young +3256;Cyprus;M;Not stated;Professional, scientific and technical activities   ;Y50-64;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;0;1;Old +3257;Cyprus;M;Not stated;Administrative and support service activities   ;Y15-29;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +3258;Cyprus;M;Not stated;Administrative and support service activities   ;Y30-49;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +3259;Cyprus;M;Not stated;Administrative and support service activities   ;Y50-64;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;0;1;Old +3260;Cyprus;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +3261;Cyprus;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;72;1;2.7437237205570434e-07;840106;8.570347075250028e-05;1;0;Young +3262;Cyprus;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;39;1;1.4861836819683987e-07;840106;4.6422713324270986e-05;0;1;Old +3263;Cyprus;M;Not stated;Education   ;Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +3264;Cyprus;M;Not stated;Education   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +3265;Cyprus;M;Not stated;Human health and social work activities   ;Y15-29;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;1;0;Young +3266;Cyprus;M;Not stated;Human health and social work activities   ;Y30-49;7;1;2.6675091727637924e-08;840106;8.332281878715304e-06;1;0;Young +3267;Cyprus;M;Not stated;Arts, entertainment and recreation   ;Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +3268;Cyprus;M;Not stated;Arts, entertainment and recreation   ;Y30-49;8;1;3.048581911730048e-08;840106;9.522607861388919e-06;1;0;Young +3269;Cyprus;M;Not stated;Arts, entertainment and recreation   ;Y50-64;3;1;1.1432182168987682e-08;840106;3.570977948020845e-06;0;1;Old +3270;Cyprus;M;Not stated;Other service activities   ;Y15-29;4;1;1.524290955865024e-08;840106;4.7613039306944596e-06;1;0;Young +3271;Cyprus;M;Not stated;Other service activities   ;Y30-49;5;1;1.9053636948312802e-08;840106;5.951629913368075e-06;1;0;Young +3272;Cyprus;M;Not stated;Other service activities   ;Y50-64;6;1;2.2864364337975363e-08;840106;7.14195589604169e-06;0;1;Old +3273;Cyprus;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;13;1;4.953945606561329e-08;840106;1.5474237774756994e-05;1;0;Young +3274;Cyprus;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;62;1;2.3626509815907876e-07;840106;7.380021092576412e-05;1;0;Young +3275;Cyprus;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;30;1;1.1432182168987682e-07;840106;3.570977948020845e-05;0;1;Old +3276;Cyprus;M;Not stated;Not stated   ;Y15-29;275;1;1.0479500321572042e-06;840106;0.00032733964523524415;1;0;Young +3277;Cyprus;M;Not stated;Not stated   ;Y30-49;839;1;3.197200279926888e-06;840106;0.0009986834994631629;1;0;Young +3278;Cyprus;M;Not stated;Not stated   ;Y50-64;303;1;1.1546503990677558e-06;840106;0.00036066877275010536;0;1;Old +3279;Cyprus;M;Not stated;Not stated   ;Y65-84;31;1;1.1813254907953938e-07;840106;3.690010546288206e-05;0;1;Old +3280;Czechia;F;Not applicable;Not applicable  ;Y15-29;527814;1;0.002011355266447355;10400933;0.05074679358092202;1;0;Young +3281;Czechia;F;Not applicable;Not applicable  ;Y30-49;304312;1;0.001159650073402993;10400933;0.0292581444376192;1;0;Young +3282;Czechia;F;Not applicable;Not applicable  ;Y50-64;520960;1;0.0019852365409186077;10400933;0.050087814237434275;0;1;Old +3283;Czechia;F;Not applicable;Not applicable  ;Y65-84;830883;1;0.0031662686057049973;10400933;0.07988542950906423;0;1;Old +3284;Czechia;F;Not applicable;Not applicable  ;Y_GE85;111330;1;0.00042424828029113287;10400933;0.010703847433686959;0;1;Old +3285;Czechia;F;Not applicable;Not applicable  ;Y_LT15;724979;1;0.0027626973322301736;10400933;0.06970326604353667;0;1;Old +3286;Czechia;F;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3287;Czechia;F;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3288;Czechia;F;Armed forces occupations;Manufacturing   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3289;Czechia;F;Armed forces occupations;Manufacturing   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3290;Czechia;F;Armed forces occupations;Manufacturing   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3291;Czechia;F;Armed forces occupations;Transportation and storage   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3292;Czechia;F;Armed forces occupations;Transportation and storage   ;Y30-49;13;1;4.953945606561329e-08;10400933;1.2498878706362208e-06;1;0;Young +3293;Czechia;F;Armed forces occupations;Transportation and storage   ;Y50-64;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3294;Czechia;F;Armed forces occupations;Accommodation and food service activities   ;Y30-49;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +3295;Czechia;F;Armed forces occupations;Accommodation and food service activities   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3296;Czechia;F;Armed forces occupations;Information and communication   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3297;Czechia;F;Armed forces occupations;Information and communication   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3298;Czechia;F;Armed forces occupations;Financial and insurance activities   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3299;Czechia;F;Armed forces occupations;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3300;Czechia;F;Armed forces occupations;Financial and insurance activities   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3301;Czechia;F;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +3302;Czechia;F;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +3303;Czechia;F;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3304;Czechia;F;Armed forces occupations;Administrative and support service activities   ;Y15-29;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +3305;Czechia;F;Armed forces occupations;Administrative and support service activities   ;Y30-49;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;1;0;Young +3306;Czechia;F;Armed forces occupations;Administrative and support service activities   ;Y50-64;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;0;1;Old +3307;Czechia;F;Armed forces occupations;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3308;Czechia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;701;1;2.6713199001534548e-06;10400933;6.739779979353776e-05;1;0;Young +3309;Czechia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;1110;1;4.229907402525442e-06;10400933;0.00010672119510816962;1;0;Young +3310;Czechia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;86;1;3.277225555109802e-07;10400933;8.268488990362692e-06;0;1;Old +3311;Czechia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3312;Czechia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3313;Czechia;F;Armed forces occupations;Education   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3314;Czechia;F;Armed forces occupations;Education   ;Y30-49;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +3315;Czechia;F;Armed forces occupations;Education   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3316;Czechia;F;Armed forces occupations;Human health and social work activities   ;Y15-29;24;1;9.145745735190145e-08;10400933;2.3074852996361e-06;1;0;Young +3317;Czechia;F;Armed forces occupations;Human health and social work activities   ;Y30-49;20;1;7.621454779325121e-08;10400933;1.9229044163634167e-06;1;0;Young +3318;Czechia;F;Armed forces occupations;Human health and social work activities   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3319;Czechia;F;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3320;Czechia;F;Armed forces occupations;Other service activities   ;Y30-49;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3321;Czechia;F;Armed forces occupations;Not stated   ;Y15-29;47;1;1.7910418731414036e-07;10400933;4.518825378454029e-06;1;0;Young +3322;Czechia;F;Armed forces occupations;Not stated   ;Y30-49;57;1;2.1721146121076594e-07;10400933;5.480277586635738e-06;1;0;Young +3323;Czechia;F;Armed forces occupations;Not stated   ;Y50-64;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;0;1;Old +3324;Czechia;F;Armed forces occupations;Not stated   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3325;Czechia;F;Managers;Agriculture, forestry and fishing   ;Y15-29;81;1;3.086689185626674e-07;10400933;7.787762886271838e-06;1;0;Young +3326;Czechia;F;Managers;Agriculture, forestry and fishing   ;Y30-49;488;1;1.8596349661553295e-06;10400933;4.691886775926736e-05;1;0;Young +3327;Czechia;F;Managers;Agriculture, forestry and fishing   ;Y50-64;353;1;1.3451867685508839e-06;10400933;3.39392629488143e-05;0;1;Old +3328;Czechia;F;Managers;Agriculture, forestry and fishing   ;Y65-84;21;1;8.002527518291377e-08;10400933;2.0190496371815874e-06;0;1;Old +3329;Czechia;F;Managers;Mining and quarrying   ;Y15-29;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;1;0;Young +3330;Czechia;F;Managers;Mining and quarrying   ;Y30-49;106;1;4.039371033042314e-07;10400933;1.0191393406726108e-05;1;0;Young +3331;Czechia;F;Managers;Mining and quarrying   ;Y50-64;67;1;2.5531873510739155e-07;10400933;6.441729794817446e-06;0;1;Old +3332;Czechia;F;Managers;Manufacturing   ;Y15-29;1606;1;6.1200281877980725e-06;10400933;0.00015440922463398236;1;0;Young +3333;Czechia;F;Managers;Manufacturing   ;Y30-49;8451;1;3.22044571700383e-05;10400933;0.0008125232611343617;1;0;Young +3334;Czechia;F;Managers;Manufacturing   ;Y50-64;2801;1;1.0673847418444831e-05;10400933;0.0002693027635116965;0;1;Old +3335;Czechia;F;Managers;Manufacturing   ;Y65-84;71;1;2.705616446660418e-07;10400933;6.826310678090129e-06;0;1;Old +3336;Czechia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;68;1;2.591294624970541e-07;10400933;6.537875015635616e-06;1;0;Young +3337;Czechia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;321;1;1.223243492081682e-06;10400933;3.086261588263284e-05;1;0;Young +3338;Czechia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;136;1;5.182589249941082e-07;10400933;1.3075750031271233e-05;0;1;Old +3339;Czechia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3340;Czechia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;1;0;Young +3341;Czechia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;331;1;1.2613507659783075e-06;10400933;3.182406809081455e-05;1;0;Young +3342;Czechia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;152;1;5.792305632287092e-07;10400933;1.4614073564361967e-05;0;1;Old +3343;Czechia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3344;Czechia;F;Managers;Construction   ;Y15-29;302;1;1.1508396716780934e-06;10400933;2.903585668708759e-05;1;0;Young +3345;Czechia;F;Managers;Construction   ;Y30-49;1408;1;5.365504164644885e-06;10400933;0.00013537247091198454;1;0;Young +3346;Czechia;F;Managers;Construction   ;Y50-64;540;1;2.057792790417783e-06;10400933;5.1918419241812246e-05;0;1;Old +3347;Czechia;F;Managers;Construction   ;Y65-84;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +3348;Czechia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2632;1;1.002983448959186e-05;10400933;0.0002530542211934256;1;0;Young +3349;Czechia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;10726;1;4.0873861981520626e-05;10400933;0.0010312536384957003;1;0;Young +3350;Czechia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3140;1;1.196568400354044e-05;10400933;0.0003018959933690564;0;1;Old +3351;Czechia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;83;1;3.1629037334199253e-07;10400933;7.980053327908178e-06;0;1;Old +3352;Czechia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3353;Czechia;F;Managers;Transportation and storage   ;Y15-29;443;1;1.6881522336205144e-06;10400933;4.2592332822449676e-05;1;0;Young +3354;Czechia;F;Managers;Transportation and storage   ;Y30-49;3119;1;1.1885658728357526e-05;10400933;0.00029987694373187485;1;0;Young +3355;Czechia;F;Managers;Transportation and storage   ;Y50-64;1189;1;4.530954866308785e-06;10400933;0.00011431666755280512;0;1;Old +3356;Czechia;F;Managers;Transportation and storage   ;Y65-84;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;0;1;Old +3357;Czechia;F;Managers;Accommodation and food service activities   ;Y15-29;1082;1;4.123207035614891e-06;10400933;0.00010402912892526084;1;0;Young +3358;Czechia;F;Managers;Accommodation and food service activities   ;Y30-49;3342;1;1.2735450936252278e-05;10400933;0.0003213173279743269;1;0;Young +3359;Czechia;F;Managers;Accommodation and food service activities   ;Y50-64;1512;1;5.761819813169791e-06;10400933;0.0001453715738770743;0;1;Old +3360;Czechia;F;Managers;Accommodation and food service activities   ;Y65-84;71;1;2.705616446660418e-07;10400933;6.826310678090129e-06;0;1;Old +3361;Czechia;F;Managers;Accommodation and food service activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3362;Czechia;F;Managers;Information and communication   ;Y15-29;585;1;2.2292755229525977e-06;10400933;5.624495417862993e-05;1;0;Young +3363;Czechia;F;Managers;Information and communication   ;Y30-49;1890;1;7.202274766462239e-06;10400933;0.00018171446734634286;1;0;Young +3364;Czechia;F;Managers;Information and communication   ;Y50-64;394;1;1.5014265915270488e-06;10400933;3.788121700235931e-05;0;1;Old +3365;Czechia;F;Managers;Information and communication   ;Y65-84;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;0;1;Old +3366;Czechia;F;Managers;Financial and insurance activities   ;Y15-29;643;1;2.4502977115530265e-06;10400933;6.182137698608385e-05;1;0;Young +3367;Czechia;F;Managers;Financial and insurance activities   ;Y30-49;2867;1;1.0925355426162561e-05;10400933;0.00027564834808569577;1;0;Young +3368;Czechia;F;Managers;Financial and insurance activities   ;Y50-64;814;1;3.1019320951853244e-06;10400933;7.826220974599106e-05;0;1;Old +3369;Czechia;F;Managers;Financial and insurance activities   ;Y65-84;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +3370;Czechia;F;Managers;Real estate activities   ;Y15-29;198;1;7.54524023153187e-07;10400933;1.9036753721997825e-05;1;0;Young +3371;Czechia;F;Managers;Real estate activities   ;Y30-49;960;1;3.658298294076058e-06;10400933;9.2299411985444e-05;1;0;Young +3372;Czechia;F;Managers;Real estate activities   ;Y50-64;429;1;1.6348020501652386e-06;10400933;4.1246299730995284e-05;0;1;Old +3373;Czechia;F;Managers;Real estate activities   ;Y65-84;44;1;1.6767200514515266e-07;10400933;4.230389715999517e-06;0;1;Old +3374;Czechia;F;Managers;Professional, scientific and technical activities   ;Y15-29;787;1;2.999042455664435e-06;10400933;7.566628878390044e-05;1;0;Young +3375;Czechia;F;Managers;Professional, scientific and technical activities   ;Y30-49;2692;1;1.0258478132971613e-05;10400933;0.0002588229344425159;1;0;Young +3376;Czechia;F;Managers;Professional, scientific and technical activities   ;Y50-64;727;1;2.7703988122846815e-06;10400933;6.98975755348102e-05;0;1;Old +3377;Czechia;F;Managers;Professional, scientific and technical activities   ;Y65-84;28;1;1.067003669105517e-07;10400933;2.6920661829087833e-06;0;1;Old +3378;Czechia;F;Managers;Administrative and support service activities   ;Y15-29;610;1;2.324543707694162e-06;10400933;5.8648584699084205e-05;1;0;Young +3379;Czechia;F;Managers;Administrative and support service activities   ;Y30-49;2090;1;7.964420244394751e-06;10400933;0.00020094351150997704;1;0;Young +3380;Czechia;F;Managers;Administrative and support service activities   ;Y50-64;745;1;2.8389919052986075e-06;10400933;7.162818950953727e-05;0;1;Old +3381;Czechia;F;Managers;Administrative and support service activities   ;Y65-84;24;1;9.145745735190145e-08;10400933;2.3074852996361e-06;0;1;Old +3382;Czechia;F;Managers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3383;Czechia;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;493;1;1.8786886031036423e-06;10400933;4.739959386335822e-05;1;0;Young +3384;Czechia;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;4128;1;1.573068266452705e-05;10400933;0.00039688747153740917;1;0;Young +3385;Czechia;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2893;1;1.1024434338293787e-05;10400933;0.0002781481238269682;0;1;Old +3386;Czechia;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;63;1;2.400758255487413e-07;10400933;6.0571489115447625e-06;0;1;Old +3387;Czechia;F;Managers;Education   ;Y15-29;454;1;1.7300702349068025e-06;10400933;4.3649930251449556e-05;1;0;Young +3388;Czechia;F;Managers;Education   ;Y30-49;7155;1;2.7265754473035622e-05;10400933;0.0006879190549540123;1;0;Young +3389;Czechia;F;Managers;Education   ;Y50-64;6403;1;2.4400087476009374e-05;10400933;0.0006156178488987478;0;1;Old +3390;Czechia;F;Managers;Education   ;Y65-84;147;1;5.601769262803964e-07;10400933;1.4133347460271113e-05;0;1;Old +3391;Czechia;F;Managers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3392;Czechia;F;Managers;Human health and social work activities   ;Y15-29;415;1;1.5814518667099626e-06;10400933;3.990026663954089e-05;1;0;Young +3393;Czechia;F;Managers;Human health and social work activities   ;Y30-49;3610;1;1.3756725876681843e-05;10400933;0.0003470842471535967;1;0;Young +3394;Czechia;F;Managers;Human health and social work activities   ;Y50-64;2458;1;9.366767923790574e-06;10400933;0.0002363249527710639;0;1;Old +3395;Czechia;F;Managers;Human health and social work activities   ;Y65-84;74;1;2.819938268350295e-07;10400933;7.114746340544641e-06;0;1;Old +3396;Czechia;F;Managers;Arts, entertainment and recreation   ;Y15-29;314;1;1.196568400354044e-06;10400933;3.018959933690564e-05;1;0;Young +3397;Czechia;F;Managers;Arts, entertainment and recreation   ;Y30-49;1245;1;4.744355600129888e-06;10400933;0.00011970079991862268;1;0;Young +3398;Czechia;F;Managers;Arts, entertainment and recreation   ;Y50-64;638;1;2.4312440746047135e-06;10400933;6.134065088199299e-05;0;1;Old +3399;Czechia;F;Managers;Arts, entertainment and recreation   ;Y65-84;31;1;1.1813254907953938e-07;10400933;2.9805018453632957e-06;0;1;Old +3400;Czechia;F;Managers;Other service activities   ;Y15-29;284;1;1.0822465786641672e-06;10400933;2.7305242712360515e-05;1;0;Young +3401;Czechia;F;Managers;Other service activities   ;Y30-49;1166;1;4.443308136346546e-06;10400933;0.00011210532747398719;1;0;Young +3402;Czechia;F;Managers;Other service activities   ;Y50-64;473;1;1.8024740553103911e-06;10400933;4.5476689446994805e-05;0;1;Old +3403;Czechia;F;Managers;Other service activities   ;Y65-84;31;1;1.1813254907953938e-07;10400933;2.9805018453632957e-06;0;1;Old +3404;Czechia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;1;0;Young +3405;Czechia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;20;1;7.621454779325121e-08;10400933;1.9229044163634167e-06;1;0;Young +3406;Czechia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3407;Czechia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3408;Czechia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;1;0;Young +3409;Czechia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;1;0;Young +3410;Czechia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +3411;Czechia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3412;Czechia;F;Managers;Not stated   ;Y15-29;401;1;1.5281016832546868e-06;10400933;3.85542335480865e-05;1;0;Young +3413;Czechia;F;Managers;Not stated   ;Y30-49;1402;1;5.3426398003069095e-06;10400933;0.00013479559958707552;1;0;Young +3414;Czechia;F;Managers;Not stated   ;Y50-64;684;1;2.6065375345291914e-06;10400933;6.576333103962884e-05;0;1;Old +3415;Czechia;F;Managers;Not stated   ;Y65-84;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;0;1;Old +3416;Czechia;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;141;1;5.37312561942421e-07;10400933;1.3556476135362088e-05;1;0;Young +3417;Czechia;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;469;1;1.787231145751741e-06;10400933;4.509210856372212e-05;1;0;Young +3418;Czechia;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;261;1;9.945998487019282e-07;10400933;2.5093902633542588e-05;0;1;Old +3419;Czechia;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +3420;Czechia;F;Professionals;Mining and quarrying   ;Y15-29;55;1;2.0959000643144082e-07;10400933;5.2879871449993955e-06;1;0;Young +3421;Czechia;F;Professionals;Mining and quarrying   ;Y30-49;169;1;6.440129288529728e-07;10400933;1.6248542318270872e-05;1;0;Young +3422;Czechia;F;Professionals;Mining and quarrying   ;Y50-64;97;1;3.6964055679726836e-07;10400933;9.32608641936257e-06;0;1;Old +3423;Czechia;F;Professionals;Mining and quarrying   ;Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3424;Czechia;F;Professionals;Manufacturing   ;Y15-29;3627;1;1.3821508242306107e-05;10400933;0.0003487187159075056;1;0;Young +3425;Czechia;F;Professionals;Manufacturing   ;Y30-49;8803;1;3.354583321119952e-05;10400933;0.0008463663788623578;1;0;Young +3426;Czechia;F;Professionals;Manufacturing   ;Y50-64;2473;1;9.423928834635512e-06;10400933;0.00023776713108333646;0;1;Old +3427;Czechia;F;Professionals;Manufacturing   ;Y65-84;68;1;2.591294624970541e-07;10400933;6.537875015635616e-06;0;1;Old +3428;Czechia;F;Professionals;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3429;Czechia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;236;1;8.993316639603643e-07;10400933;2.2690272113088316e-05;1;0;Young +3430;Czechia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;677;1;2.5798624428015536e-06;10400933;6.509031449390165e-05;1;0;Young +3431;Czechia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;268;1;1.0212749404295662e-06;10400933;2.5766919179269784e-05;0;1;Old +3432;Czechia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3433;Czechia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;129;1;4.915838332664703e-07;10400933;1.2402733485544037e-05;1;0;Young +3434;Czechia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;377;1;1.4366442259027852e-06;10400933;3.62467482484504e-05;1;0;Young +3435;Czechia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;176;1;6.706880205806106e-07;10400933;1.6921558863998068e-05;0;1;Old +3436;Czechia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +3437;Czechia;F;Professionals;Construction   ;Y15-29;1068;1;4.0698568521596144e-06;10400933;0.00010268309583380645;1;0;Young +3438;Czechia;F;Professionals;Construction   ;Y30-49;2351;1;8.95902009309668e-06;10400933;0.0002260374141435196;1;0;Young +3439;Czechia;F;Professionals;Construction   ;Y50-64;1036;1;3.947913575690413e-06;10400933;9.960644876762498e-05;0;1;Old +3440;Czechia;F;Professionals;Construction   ;Y65-84;136;1;5.182589249941082e-07;10400933;1.3075750031271233e-05;0;1;Old +3441;Czechia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2346;1;8.939966456148367e-06;10400933;0.00022555668803942878;1;0;Young +3442;Czechia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4690;1;1.7872311457517408e-05;10400933;0.0004509210856372212;1;0;Young +3443;Czechia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1100;1;4.191800128628817e-06;10400933;0.00010575974289998792;0;1;Old +3444;Czechia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;40;1;1.5242909558650242e-07;10400933;3.845808832726833e-06;0;1;Old +3445;Czechia;F;Professionals;Transportation and storage   ;Y15-29;483;1;1.8405813292070167e-06;10400933;4.643814165517651e-05;1;0;Young +3446;Czechia;F;Professionals;Transportation and storage   ;Y30-49;1428;1;5.441718712438136e-06;10400933;0.00013729537532834794;1;0;Young +3447;Czechia;F;Professionals;Transportation and storage   ;Y50-64;606;1;2.3093007981355115e-06;10400933;5.826400381581152e-05;0;1;Old +3448;Czechia;F;Professionals;Transportation and storage   ;Y65-84;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +3449;Czechia;F;Professionals;Accommodation and food service activities   ;Y15-29;220;1;8.383600257257633e-07;10400933;2.1151948579997582e-05;1;0;Young +3450;Czechia;F;Professionals;Accommodation and food service activities   ;Y30-49;391;1;1.4899944093580612e-06;10400933;3.759278133990479e-05;1;0;Young +3451;Czechia;F;Professionals;Accommodation and food service activities   ;Y50-64;122;1;4.6490874153883237e-07;10400933;1.172971693981684e-05;0;1;Old +3452;Czechia;F;Professionals;Accommodation and food service activities   ;Y65-84;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +3453;Czechia;F;Professionals;Information and communication   ;Y15-29;4532;1;1.7270216529950724e-05;10400933;0.0004357301407479502;1;0;Young +3454;Czechia;F;Professionals;Information and communication   ;Y30-49;7862;1;2.9959938737527052e-05;10400933;0.0007558937260724591;1;0;Young +3455;Czechia;F;Professionals;Information and communication   ;Y50-64;2013;1;7.670994235390734e-06;10400933;0.00019354032950697788;0;1;Old +3456;Czechia;F;Professionals;Information and communication   ;Y65-84;146;1;5.563661988907339e-07;10400933;1.4037202239452942e-05;0;1;Old +3457;Czechia;F;Professionals;Financial and insurance activities   ;Y15-29;6517;1;2.4834510398430907e-05;10400933;0.0006265784040720193;1;0;Young +3458;Czechia;F;Professionals;Financial and insurance activities   ;Y30-49;14124;1;5.3822713651594004e-05;10400933;0.0013579550988358448;1;0;Young +3459;Czechia;F;Professionals;Financial and insurance activities   ;Y50-64;4467;1;1.7022519249622656e-05;10400933;0.00042948070139476913;0;1;Old +3460;Czechia;F;Professionals;Financial and insurance activities   ;Y65-84;173;1;6.592558384116229e-07;10400933;1.6633123201543553e-05;0;1;Old +3461;Czechia;F;Professionals;Real estate activities   ;Y15-29;215;1;8.193063887774505e-07;10400933;2.067122247590673e-05;1;0;Young +3462;Czechia;F;Professionals;Real estate activities   ;Y30-49;516;1;1.9663353330658812e-06;10400933;4.9610933942176147e-05;1;0;Young +3463;Czechia;F;Professionals;Real estate activities   ;Y50-64;185;1;7.049845670875737e-07;10400933;1.7786865851361602e-05;0;1;Old +3464;Czechia;F;Professionals;Real estate activities   ;Y65-84;18;1;6.859309301392609e-08;10400933;1.730613974727075e-06;0;1;Old +3465;Czechia;F;Professionals;Professional, scientific and technical activities   ;Y15-29;10888;1;4.149119981864596e-05;10400933;0.001046829164268244;1;0;Young +3466;Czechia;F;Professionals;Professional, scientific and technical activities   ;Y30-49;18474;1;7.039937779662614e-05;10400933;0.001776186809394888;1;0;Young +3467;Czechia;F;Professionals;Professional, scientific and technical activities   ;Y50-64;6467;1;2.464397402894778e-05;10400933;0.0006217711430311107;0;1;Old +3468;Czechia;F;Professionals;Professional, scientific and technical activities   ;Y65-84;833;1;3.174335915588913e-06;10400933;8.008896894153631e-05;0;1;Old +3469;Czechia;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;0;1;Old +3470;Czechia;F;Professionals;Administrative and support service activities   ;Y15-29;1772;1;6.752608934482057e-06;10400933;0.0001703693312897987;1;0;Young +3471;Czechia;F;Professionals;Administrative and support service activities   ;Y30-49;2253;1;8.58556880890975e-06;10400933;0.00021661518250333888;1;0;Young +3472;Czechia;F;Professionals;Administrative and support service activities   ;Y50-64;500;1;1.9053636948312803e-06;10400933;4.8072610409085416e-05;0;1;Old +3473;Czechia;F;Professionals;Administrative and support service activities   ;Y65-84;39;1;1.4861836819683987e-07;10400933;3.7496636119086623e-06;0;1;Old +3474;Czechia;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;3428;1;1.3063173491763258e-05;10400933;0.0003295858169646896;1;0;Young +3475;Czechia;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;11445;1;4.3613774974688e-05;10400933;0.001100382052263965;1;0;Young +3476;Czechia;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;5926;1;2.2582370511140335e-05;10400933;0.0005697565785684804;0;1;Old +3477;Czechia;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;241;1;9.18385300908677e-07;10400933;2.317099821717917e-05;0;1;Old +3478;Czechia;F;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3479;Czechia;F;Professionals;Education   ;Y15-29;20496;1;7.810466857852384e-05;10400933;0.0019705924458892294;1;0;Young +3480;Czechia;F;Professionals;Education   ;Y30-49;79099;1;0.00030142472579491885;10400933;0.007604990821496495;1;0;Young +3481;Czechia;F;Professionals;Education   ;Y50-64;41450;1;0.00015795465030151313;10400933;0.003985219402913181;0;1;Old +3482;Czechia;F;Professionals;Education   ;Y65-84;3141;1;1.1969494730930102e-05;10400933;0.0003019921385898746;0;1;Old +3483;Czechia;F;Professionals;Education   ;Y_GE85;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +3484;Czechia;F;Professionals;Human health and social work activities   ;Y15-29;21920;1;8.353114438140333e-05;10400933;0.0021075032403343047;1;0;Young +3485;Czechia;F;Professionals;Human health and social work activities   ;Y30-49;69729;1;0.0002657182101537807;10400933;0.006704110102430234;1;0;Young +3486;Czechia;F;Professionals;Human health and social work activities   ;Y50-64;35323;1;0.00013460632358505063;10400933;0.0033961376349602485;0;1;Old +3487;Czechia;F;Professionals;Human health and social work activities   ;Y65-84;3451;1;1.3150820221725496e-05;10400933;0.00033179715704350753;0;1;Old +3488;Czechia;F;Professionals;Human health and social work activities   ;Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3489;Czechia;F;Professionals;Arts, entertainment and recreation   ;Y15-29;2397;1;9.134313553021157e-06;10400933;0.0002304600943011555;1;0;Young +3490;Czechia;F;Professionals;Arts, entertainment and recreation   ;Y30-49;6028;1;2.2971064704885913e-05;10400933;0.0005795633910919337;1;0;Young +3491;Czechia;F;Professionals;Arts, entertainment and recreation   ;Y50-64;3383;1;1.2891690759228443e-05;10400933;0.0003252592820278719;0;1;Old +3492;Czechia;F;Professionals;Arts, entertainment and recreation   ;Y65-84;460;1;1.752934599244778e-06;10400933;4.422680157635858e-05;0;1;Old +3493;Czechia;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;0;1;Old +3494;Czechia;F;Professionals;Other service activities   ;Y15-29;768;1;2.9266386352608465e-06;10400933;7.38395295883552e-05;1;0;Young +3495;Czechia;F;Professionals;Other service activities   ;Y30-49;1671;1;6.367725468126139e-06;10400933;0.00016065866398716345;1;0;Young +3496;Czechia;F;Professionals;Other service activities   ;Y50-64;552;1;2.1035215190937336e-06;10400933;5.30721618916303e-05;0;1;Old +3497;Czechia;F;Professionals;Other service activities   ;Y65-84;62;1;2.3626509815907876e-07;10400933;5.9610036907265914e-06;0;1;Old +3498;Czechia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;44;1;1.6767200514515266e-07;10400933;4.230389715999517e-06;1;0;Young +3499;Czechia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;54;1;2.0577927904177827e-07;10400933;5.191841924181225e-06;1;0;Young +3500;Czechia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;23;1;8.764672996223889e-08;10400933;2.211340078817929e-06;0;1;Old +3501;Czechia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;60;1;2.2864364337975364e-07;10400933;5.76871324909025e-06;1;0;Young +3502;Czechia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;106;1;4.039371033042314e-07;10400933;1.0191393406726108e-05;1;0;Young +3503;Czechia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;10400933;1.9229044163634167e-06;0;1;Old +3504;Czechia;F;Professionals;Not stated   ;Y15-29;2602;1;9.915512667901982e-06;10400933;0.00025016986456888053;1;0;Young +3505;Czechia;F;Professionals;Not stated   ;Y30-49;7951;1;3.029909347520702e-05;10400933;0.0007644506507252762;1;0;Young +3506;Czechia;F;Professionals;Not stated   ;Y50-64;4896;1;1.8657321299787897e-05;10400933;0.0004707270011257644;0;1;Old +3507;Czechia;F;Professionals;Not stated   ;Y65-84;893;1;3.4029795589686665e-06;10400933;8.585768219062655e-05;0;1;Old +3508;Czechia;F;Professionals;Not stated   ;Y_GE85;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +3509;Czechia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;870;1;3.3153328290064275e-06;10400933;8.364634211180863e-05;1;0;Young +3510;Czechia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;5020;1;1.9129851496106053e-05;10400933;0.0004826490085072176;1;0;Young +3511;Czechia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;4073;1;1.552109265809561e-05;10400933;0.00039159948439240977;0;1;Old +3512;Czechia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;139;1;5.296911071630959e-07;10400933;1.3364185693725746e-05;0;1;Old +3513;Czechia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3514;Czechia;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;135;1;5.144481976044457e-07;10400933;1.2979604810453061e-05;1;0;Young +3515;Czechia;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;937;1;3.5706515641138192e-06;10400933;9.008807190662608e-05;1;0;Young +3516;Czechia;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;593;1;2.2597613420698985e-06;10400933;5.70141159451753e-05;0;1;Old +3517;Czechia;F;Technicians and associate professionals;Mining and quarrying   ;Y65-84;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;0;1;Old +3518;Czechia;F;Technicians and associate professionals;Manufacturing   ;Y15-29;16682;1;6.357055431435084e-05;10400933;0.0016038945736887259;1;0;Young +3519;Czechia;F;Technicians and associate professionals;Manufacturing   ;Y30-49;53479;1;0.0002037938900717641;10400933;0.005141750264134958;1;0;Young +3520;Czechia;F;Technicians and associate professionals;Manufacturing   ;Y50-64;20622;1;7.858482022962133e-05;10400933;0.001982706743712319;0;1;Old +3521;Czechia;F;Technicians and associate professionals;Manufacturing   ;Y65-84;352;1;1.3413760411612213e-06;10400933;3.3843117727996135e-05;0;1;Old +3522;Czechia;F;Technicians and associate professionals;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3523;Czechia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;639;1;2.435054801994376e-06;10400933;6.143679610281115e-05;1;0;Young +3524;Czechia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2618;1;9.976484306136584e-06;10400933;0.00025170818810197124;1;0;Young +3525;Czechia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1428;1;5.441718712438136e-06;10400933;0.00013729537532834794;0;1;Old +3526;Czechia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;18;1;6.859309301392609e-08;10400933;1.730613974727075e-06;0;1;Old +3527;Czechia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;464;1;1.7681775088034281e-06;10400933;4.4611382459631263e-05;1;0;Young +3528;Czechia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2378;1;9.06190973261757e-06;10400933;0.00022863333510561023;1;0;Young +3529;Czechia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1248;1;4.755787782298876e-06;10400933;0.0001199892355810772;0;1;Old +3530;Czechia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;0;1;Old +3531;Czechia;F;Technicians and associate professionals;Construction   ;Y15-29;2788;1;1.0624307962379219e-05;10400933;0.00026805287564106027;1;0;Young +3532;Czechia;F;Technicians and associate professionals;Construction   ;Y30-49;9951;1;3.792054825453214e-05;10400933;0.0009567410923616179;1;0;Young +3533;Czechia;F;Technicians and associate professionals;Construction   ;Y50-64;4579;1;1.7449320717264864e-05;10400933;0.0004402489661264042;0;1;Old +3534;Czechia;F;Technicians and associate professionals;Construction   ;Y65-84;190;1;7.240382040358865e-07;10400933;1.826759195545246e-05;0;1;Old +3535;Czechia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9118;1;3.4746212338943225e-05;10400933;0.0008766521234200817;1;0;Young +3536;Czechia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;27084;1;0.00010320974062162079;10400933;0.002603997160639339;1;0;Young +3537;Czechia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9544;1;3.6369582206939476e-05;10400933;0.0009176099874886225;0;1;Old +3538;Czechia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;465;1;1.7719882361930907e-06;10400933;4.4707527680449436e-05;0;1;Old +3539;Czechia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3540;Czechia;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;2403;1;9.157177917359133e-06;10400933;0.00023103696562606452;1;0;Young +3541;Czechia;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;7761;1;2.957505527117113e-05;10400933;0.0007461830587698238;1;0;Young +3542;Czechia;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;3310;1;1.2613507659783075e-05;10400933;0.0003182406809081455;0;1;Old +3543;Czechia;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;58;1;2.2102218860042852e-07;10400933;5.576422807453908e-06;0;1;Old +3544;Czechia;F;Technicians and associate professionals;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3545;Czechia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;717;1;2.732291538388056e-06;10400933;6.893612332662848e-05;1;0;Young +3546;Czechia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2049;1;7.808180421418586e-06;10400933;0.00019700155745643204;1;0;Young +3547;Czechia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;952;1;3.627812474958758e-06;10400933;9.153025021889863e-05;0;1;Old +3548;Czechia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;0;1;Old +3549;Czechia;F;Technicians and associate professionals;Information and communication   ;Y15-29;3498;1;1.3329924409039637e-05;10400933;0.00033631598242196155;1;0;Young +3550;Czechia;F;Technicians and associate professionals;Information and communication   ;Y30-49;6841;1;2.6069186072681576e-05;10400933;0.0006577294556171067;1;0;Young +3551;Czechia;F;Technicians and associate professionals;Information and communication   ;Y50-64;2130;1;8.116849339981253e-06;10400933;0.00020478932034270387;0;1;Old +3552;Czechia;F;Technicians and associate professionals;Information and communication   ;Y65-84;90;1;3.4296546506963047e-07;10400933;8.653069873635374e-06;0;1;Old +3553;Czechia;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;6762;1;2.5768138608898235e-05;10400933;0.0006501339831724712;1;0;Young +3554;Czechia;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;16412;1;6.254165791914195e-05;10400933;0.0015779353640678197;1;0;Young +3555;Czechia;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;7214;1;2.749058738902571e-05;10400933;0.0006935916229822844;0;1;Old +3556;Czechia;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;295;1;1.1241645799504554e-06;10400933;2.8362840141360395e-05;0;1;Old +3557;Czechia;F;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3558;Czechia;F;Technicians and associate professionals;Real estate activities   ;Y15-29;1923;1;7.328028770321104e-06;10400933;0.0001848872596333425;1;0;Young +3559;Czechia;F;Technicians and associate professionals;Real estate activities   ;Y30-49;6325;1;2.4102850739615694e-05;10400933;0.0006081185216749305;1;0;Young +3560;Czechia;F;Technicians and associate professionals;Real estate activities   ;Y50-64;2647;1;1.0086995400436798e-05;10400933;0.0002544963995056982;0;1;Old +3561;Czechia;F;Technicians and associate professionals;Real estate activities   ;Y65-84;156;1;5.944734727873595e-07;10400933;1.499865444763465e-05;0;1;Old +3562;Czechia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;7941;1;3.0260986201310393e-05;10400933;0.0007634891985170946;1;0;Young +3563;Czechia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;22921;1;8.734568249845555e-05;10400933;0.0022037446063732937;1;0;Young +3564;Czechia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;11154;1;4.25048533042962e-05;10400933;0.0010724037930058775;0;1;Old +3565;Czechia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;1177;1;4.485226137632834e-06;10400933;0.00011316292490298707;0;1;Old +3566;Czechia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +3567;Czechia;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;3914;1;1.4915187003139262e-05;10400933;0.0003763123942823206;1;0;Young +3568;Czechia;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;6906;1;2.6316883353009643e-05;10400933;0.0006639788949702877;1;0;Young +3569;Czechia;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2966;1;1.1302617437739155e-05;10400933;0.0002851667249466947;0;1;Old +3570;Czechia;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;156;1;5.944734727873595e-07;10400933;1.499865444763465e-05;0;1;Old +3571;Czechia;F;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3572;Czechia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;9303;1;3.5451196906030804e-05;10400933;0.0008944389892714432;1;0;Young +3573;Czechia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;42983;1;0.00016379649538986584;10400933;0.004132610026427437;1;0;Young +3574;Czechia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;24242;1;9.237965338019979e-05;10400933;0.002330752443074097;0;1;Old +3575;Czechia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;425;1;1.6195591406065882e-06;10400933;4.0861718847722606e-05;0;1;Old +3576;Czechia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3577;Czechia;F;Technicians and associate professionals;Education   ;Y15-29;1238;1;4.71768050840225e-06;10400933;0.0001190277833728955;1;0;Young +3578;Czechia;F;Technicians and associate professionals;Education   ;Y30-49;6877;1;2.620637225870943e-05;10400933;0.0006611906835665608;1;0;Young +3579;Czechia;F;Technicians and associate professionals;Education   ;Y50-64;5002;1;1.906125840309213e-05;10400933;0.0004809183945324905;0;1;Old +3580;Czechia;F;Technicians and associate professionals;Education   ;Y65-84;349;1;1.3299438589922337e-06;10400933;3.355468206554162e-05;0;1;Old +3581;Czechia;F;Technicians and associate professionals;Education   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3582;Czechia;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;10921;1;4.161695382250482e-05;10400933;0.0010500019565552437;1;0;Young +3583;Czechia;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;27681;1;0.00010548474487324934;10400933;0.002661395857467787;1;0;Young +3584;Czechia;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;14959;1;5.7004671021962244e-05;10400933;0.0014382363582190175;0;1;Old +3585;Czechia;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;761;1;2.8999635435332087e-06;10400933;7.3166513042628e-05;0;1;Old +3586;Czechia;F;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3587;Czechia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;1424;1;5.426475802879486e-06;10400933;0.00013691079444507525;1;0;Young +3588;Czechia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;3481;1;1.3265142043415373e-05;10400933;0.0003346815136680527;1;0;Young +3589;Czechia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;1636;1;6.234350009487949e-06;10400933;0.00015729358125852748;0;1;Old +3590;Czechia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;182;1;6.93552384918586e-07;10400933;1.749843018890709e-05;0;1;Old +3591;Czechia;F;Technicians and associate professionals;Other service activities   ;Y15-29;945;1;3.6011373832311196e-06;10400933;9.085723367317143e-05;1;0;Young +3592;Czechia;F;Technicians and associate professionals;Other service activities   ;Y30-49;3055;1;1.1641772175419122e-05;10400933;0.0002937236495995119;1;0;Young +3593;Czechia;F;Technicians and associate professionals;Other service activities   ;Y50-64;1572;1;5.990463456549545e-06;10400933;0.00015114028712616455;0;1;Old +3594;Czechia;F;Technicians and associate professionals;Other service activities   ;Y65-84;132;1;5.03016015435458e-07;10400933;1.269116914799855e-05;0;1;Old +3595;Czechia;F;Technicians and associate professionals;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3596;Czechia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;23;1;8.764672996223889e-08;10400933;2.211340078817929e-06;1;0;Young +3597;Czechia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;83;1;3.1629037334199253e-07;10400933;7.980053327908178e-06;1;0;Young +3598;Czechia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;43;1;1.638612777554901e-07;10400933;4.134244495181346e-06;0;1;Old +3599;Czechia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3600;Czechia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;45;1;1.7148273253481523e-07;10400933;4.326534936817687e-06;1;0;Young +3601;Czechia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;108;1;4.1155855808355654e-07;10400933;1.038368384836245e-05;1;0;Young +3602;Czechia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;30;1;1.1432182168987682e-07;10400933;2.884356624545125e-06;0;1;Old +3603;Czechia;F;Technicians and associate professionals;Not stated   ;Y15-29;3436;1;1.3093659310880557e-05;10400933;0.000330354978731235;1;0;Young +3604;Czechia;F;Technicians and associate professionals;Not stated   ;Y30-49;8886;1;3.3862123584541515e-05;10400933;0.000854346432190266;1;0;Young +3605;Czechia;F;Technicians and associate professionals;Not stated   ;Y50-64;4793;1;1.8264816378652654e-05;10400933;0.0004608240433814928;0;1;Old +3606;Czechia;F;Technicians and associate professionals;Not stated   ;Y65-84;435;1;1.6576664145032138e-06;10400933;4.1823171055904314e-05;0;1;Old +3607;Czechia;F;Technicians and associate professionals;Not stated   ;Y_GE85;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +3608;Czechia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;237;1;9.031423913500269e-07;10400933;2.2786417333906485e-05;1;0;Young +3609;Czechia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;933;1;3.555408654555169e-06;10400933;8.970349102335338e-05;1;0;Young +3610;Czechia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;553;1;2.1073322464833958e-06;10400933;5.316830711244847e-05;0;1;Old +3611;Czechia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;25;1;9.526818474156401e-08;10400933;2.403630520454271e-06;0;1;Old +3612;Czechia;F;Clerical support workers;Mining and quarrying   ;Y15-29;75;1;2.8580455422469204e-07;10400933;7.210891561362812e-06;1;0;Young +3613;Czechia;F;Clerical support workers;Mining and quarrying   ;Y30-49;415;1;1.5814518667099626e-06;10400933;3.990026663954089e-05;1;0;Young +3614;Czechia;F;Clerical support workers;Mining and quarrying   ;Y50-64;267;1;1.0174642130399036e-06;10400933;2.567077395845161e-05;0;1;Old +3615;Czechia;F;Clerical support workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3616;Czechia;F;Clerical support workers;Manufacturing   ;Y15-29;5592;1;2.130958756299304e-05;10400933;0.0005376440748152113;1;0;Young +3617;Czechia;F;Clerical support workers;Manufacturing   ;Y30-49;15620;1;5.9523561826529194e-05;10400933;0.0015017883491798285;1;0;Young +3618;Czechia;F;Clerical support workers;Manufacturing   ;Y50-64;5011;1;1.909555494959909e-05;10400933;0.00048178370151985404;0;1;Old +3619;Czechia;F;Clerical support workers;Manufacturing   ;Y65-84;91;1;3.46776192459293e-07;10400933;8.749215094453545e-06;0;1;Old +3620;Czechia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;351;1;1.3375653137715587e-06;10400933;3.374697250717796e-05;1;0;Young +3621;Czechia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;695;1;2.6484555358154796e-06;10400933;6.682092846862872e-05;1;0;Young +3622;Czechia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;305;1;1.162271853847081e-06;10400933;2.9324292349542103e-05;0;1;Old +3623;Czechia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3624;Czechia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;236;1;8.993316639603643e-07;10400933;2.2690272113088316e-05;1;0;Young +3625;Czechia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;928;1;3.5363550176068562e-06;10400933;8.922276491926253e-05;1;0;Young +3626;Czechia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;394;1;1.5014265915270488e-06;10400933;3.788121700235931e-05;0;1;Old +3627;Czechia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;13;1;4.953945606561329e-08;10400933;1.2498878706362208e-06;0;1;Old +3628;Czechia;F;Clerical support workers;Construction   ;Y15-29;1122;1;4.275636131201393e-06;10400933;0.00010787493775798767;1;0;Young +3629;Czechia;F;Clerical support workers;Construction   ;Y30-49;3345;1;1.2746883118421266e-05;10400933;0.00032160576363678145;1;0;Young +3630;Czechia;F;Clerical support workers;Construction   ;Y50-64;1140;1;4.344229224215319e-06;10400933;0.00010960555173271475;0;1;Old +3631;Czechia;F;Clerical support workers;Construction   ;Y65-84;45;1;1.7148273253481523e-07;10400933;4.326534936817687e-06;0;1;Old +3632;Czechia;F;Clerical support workers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3633;Czechia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4363;1;1.6626203601097753e-05;10400933;0.0004194815984296793;1;0;Young +3634;Czechia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;10243;1;3.903328065231361e-05;10400933;0.0009848154968405238;1;0;Young +3635;Czechia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2651;1;1.0102238309995448e-05;10400933;0.0002548809803889709;0;1;Old +3636;Czechia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;85;1;3.239118281213176e-07;10400933;8.17234376954452e-06;0;1;Old +3637;Czechia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3638;Czechia;F;Clerical support workers;Transportation and storage   ;Y15-29;5407;1;2.0604602995905464e-05;10400933;0.0005198572089638497;1;0;Young +3639;Czechia;F;Clerical support workers;Transportation and storage   ;Y30-49;21235;1;8.092079611948447e-05;10400933;0.0020416437640738577;1;0;Young +3640;Czechia;F;Clerical support workers;Transportation and storage   ;Y50-64;7841;1;2.9879913462344136e-05;10400933;0.0007538746764352774;0;1;Old +3641;Czechia;F;Clerical support workers;Transportation and storage   ;Y65-84;204;1;7.773883874911624e-07;10400933;1.9613625046906848e-05;0;1;Old +3642;Czechia;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;2724;1;1.0380421409440814e-05;10400933;0.0002618995815086973;1;0;Young +3643;Czechia;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;3059;1;1.1657015084977772e-05;10400933;0.00029410823048278456;1;0;Young +3644;Czechia;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;1050;1;4.0012637591456885e-06;10400933;0.00010095248185907938;0;1;Old +3645;Czechia;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;60;1;2.2864364337975364e-07;10400933;5.76871324909025e-06;0;1;Old +3646;Czechia;F;Clerical support workers;Information and communication   ;Y15-29;3827;1;1.4583653720238619e-05;10400933;0.0003679477600711398;1;0;Young +3647;Czechia;F;Clerical support workers;Information and communication   ;Y30-49;4101;1;1.562779302500616e-05;10400933;0.0003942915505753186;1;0;Young +3648;Czechia;F;Clerical support workers;Information and communication   ;Y50-64;1086;1;4.13844994517354e-06;10400933;0.00010441370980853353;0;1;Old +3649;Czechia;F;Clerical support workers;Information and communication   ;Y65-84;81;1;3.086689185626674e-07;10400933;7.787762886271838e-06;0;1;Old +3650;Czechia;F;Clerical support workers;Financial and insurance activities   ;Y15-29;3203;1;1.2205759829089182e-05;10400933;0.00030795314228060117;1;0;Young +3651;Czechia;F;Clerical support workers;Financial and insurance activities   ;Y30-49;4406;1;1.6790064878853243e-05;10400933;0.0004236158429248607;1;0;Young +3652;Czechia;F;Clerical support workers;Financial and insurance activities   ;Y50-64;1431;1;5.453150894607124e-06;10400933;0.00013758381099080247;0;1;Old +3653;Czechia;F;Clerical support workers;Financial and insurance activities   ;Y65-84;57;1;2.1721146121076594e-07;10400933;5.480277586635738e-06;0;1;Old +3654;Czechia;F;Clerical support workers;Real estate activities   ;Y15-29;467;1;1.7796096909724157e-06;10400933;4.4899818122085775e-05;1;0;Young +3655;Czechia;F;Clerical support workers;Real estate activities   ;Y30-49;1076;1;4.100342671276915e-06;10400933;0.00010345225760035181;1;0;Young +3656;Czechia;F;Clerical support workers;Real estate activities   ;Y50-64;471;1;1.7948526005310661e-06;10400933;4.528439900535846e-05;0;1;Old +3657;Czechia;F;Clerical support workers;Real estate activities   ;Y65-84;56;1;2.134007338211034e-07;10400933;5.384132365817567e-06;0;1;Old +3658;Czechia;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2295;1;8.745619359275577e-06;10400933;0.00022065328177770205;1;0;Young +3659;Czechia;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;3529;1;1.3448056958119176e-05;10400933;0.00033929648426732486;1;0;Young +3660;Czechia;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;1327;1;5.056835246082218e-06;10400933;0.0001275847080257127;0;1;Old +3661;Czechia;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;149;1;5.677983810597215e-07;10400933;1.4325637901907453e-05;0;1;Old +3662;Czechia;F;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3663;Czechia;F;Clerical support workers;Administrative and support service activities   ;Y15-29;7180;1;2.7361022657777186e-05;10400933;0.0006903226854744665;1;0;Young +3664;Czechia;F;Clerical support workers;Administrative and support service activities   ;Y30-49;8589;1;3.273033754981173e-05;10400933;0.0008257913016072693;1;0;Young +3665;Czechia;F;Clerical support workers;Administrative and support service activities   ;Y50-64;2852;1;1.0868194515317622e-05;10400933;0.0002742061697734232;0;1;Old +3666;Czechia;F;Clerical support workers;Administrative and support service activities   ;Y65-84;206;1;7.850098422704875e-07;10400933;1.980591548854319e-05;0;1;Old +3667;Czechia;F;Clerical support workers;Administrative and support service activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3668;Czechia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;3199;1;1.2190516919530531e-05;10400933;0.0003075685613973285;1;0;Young +3669;Czechia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;8165;1;3.111458913659481e-05;10400933;0.0007850257279803649;1;0;Young +3670;Czechia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;3932;1;1.4983780096153189e-05;10400933;0.0003780430082570477;0;1;Old +3671;Czechia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;127;1;4.839623784871452e-07;10400933;1.2210443043907696e-05;0;1;Old +3672;Czechia;F;Clerical support workers;Education   ;Y15-29;731;1;2.785641721843332e-06;10400933;7.028215641808287e-05;1;0;Young +3673;Czechia;F;Clerical support workers;Education   ;Y30-49;2514;1;9.580168657611677e-06;10400933;0.00024170908513688146;1;0;Young +3674;Czechia;F;Clerical support workers;Education   ;Y50-64;1756;1;6.691637296247457e-06;10400933;0.000168831007756708;0;1;Old +3675;Czechia;F;Clerical support workers;Education   ;Y65-84;187;1;7.126060218668988e-07;10400933;1.7979156292997945e-05;0;1;Old +3676;Czechia;F;Clerical support workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3677;Czechia;F;Clerical support workers;Human health and social work activities   ;Y15-29;1056;1;4.024128123483664e-06;10400933;0.0001015293531839884;1;0;Young +3678;Czechia;F;Clerical support workers;Human health and social work activities   ;Y30-49;3636;1;1.385580478881307e-05;10400933;0.00034958402289486917;1;0;Young +3679;Czechia;F;Clerical support workers;Human health and social work activities   ;Y50-64;2079;1;7.922502243108464e-06;10400933;0.00019988591408097716;0;1;Old +3680;Czechia;F;Clerical support workers;Human health and social work activities   ;Y65-84;119;1;4.5347655936984473e-07;10400933;1.1441281277362329e-05;0;1;Old +3681;Czechia;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;1787;1;6.809769845326996e-06;10400933;0.00017181150960207127;1;0;Young +3682;Czechia;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2764;1;1.0532850505027317e-05;10400933;0.0002657453903414242;1;0;Young +3683;Czechia;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;856;1;3.261982645551152e-06;10400933;8.230030902035424e-05;0;1;Old +3684;Czechia;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;111;1;4.2299074025254424e-07;10400933;1.0672119510816962e-05;0;1;Old +3685;Czechia;F;Clerical support workers;Other service activities   ;Y15-29;668;1;2.5455658962945906e-06;10400933;6.422500750653812e-05;1;0;Young +3686;Czechia;F;Clerical support workers;Other service activities   ;Y30-49;1447;1;5.514122532841725e-06;10400933;0.0001391221345238932;1;0;Young +3687;Czechia;F;Clerical support workers;Other service activities   ;Y50-64;603;1;2.297868615966524e-06;10400933;5.797556815335701e-05;0;1;Old +3688;Czechia;F;Clerical support workers;Other service activities   ;Y65-84;40;1;1.5242909558650242e-07;10400933;3.845808832726833e-06;0;1;Old +3689;Czechia;F;Clerical support workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3690;Czechia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +3691;Czechia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;1;0;Young +3692;Czechia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;0;1;Old +3693;Czechia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;1;0;Young +3694;Czechia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;36;1;1.3718618602785217e-07;10400933;3.46122794945415e-06;1;0;Young +3695;Czechia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +3696;Czechia;F;Clerical support workers;Not stated   ;Y15-29;1900;1;7.240382040358865e-06;10400933;0.00018267591955452458;1;0;Young +3697;Czechia;F;Clerical support workers;Not stated   ;Y30-49;3990;1;1.5204802284753616e-05;10400933;0.0003836194310645016;1;0;Young +3698;Czechia;F;Clerical support workers;Not stated   ;Y50-64;2088;1;7.956798789615426e-06;10400933;0.0002007512210683407;0;1;Old +3699;Czechia;F;Clerical support workers;Not stated   ;Y65-84;192;1;7.316596588152116e-07;10400933;1.84598823970888e-05;0;1;Old +3700;Czechia;F;Clerical support workers;Not stated   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3701;Czechia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;322;1;1.2270542194713445e-06;10400933;3.0958761103451006e-05;1;0;Young +3702;Czechia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;1260;1;4.801516510974826e-06;10400933;0.00012114297823089525;1;0;Young +3703;Czechia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;889;1;3.3877366494100165e-06;10400933;8.547310130735386e-05;0;1;Old +3704;Czechia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;44;1;1.6767200514515266e-07;10400933;4.230389715999517e-06;0;1;Old +3705;Czechia;F;Service and sales workers;Mining and quarrying   ;Y15-29;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;1;0;Young +3706;Czechia;F;Service and sales workers;Mining and quarrying   ;Y30-49;58;1;2.2102218860042852e-07;10400933;5.576422807453908e-06;1;0;Young +3707;Czechia;F;Service and sales workers;Mining and quarrying   ;Y50-64;60;1;2.2864364337975364e-07;10400933;5.76871324909025e-06;0;1;Old +3708;Czechia;F;Service and sales workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3709;Czechia;F;Service and sales workers;Manufacturing   ;Y15-29;3548;1;1.3520460778522765e-05;10400933;0.0003411232434628701;1;0;Young +3710;Czechia;F;Service and sales workers;Manufacturing   ;Y30-49;10350;1;3.94410284830075e-05;10400933;0.0009951030354680682;1;0;Young +3711;Czechia;F;Service and sales workers;Manufacturing   ;Y50-64;4548;1;1.7331188168185325e-05;10400933;0.00043726846428104096;0;1;Old +3712;Czechia;F;Service and sales workers;Manufacturing   ;Y65-84;129;1;4.915838332664703e-07;10400933;1.2402733485544037e-05;0;1;Old +3713;Czechia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;29;1;1.1051109430021426e-07;10400933;2.788211403726954e-06;1;0;Young +3714;Czechia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;84;1;3.201011007316551e-07;10400933;8.07619854872635e-06;1;0;Young +3715;Czechia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;0;1;Old +3716;Czechia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3717;Czechia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;27;1;1.0288963952088914e-07;10400933;2.5959209620906126e-06;1;0;Young +3718;Czechia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;111;1;4.2299074025254424e-07;10400933;1.0672119510816962e-05;1;0;Young +3719;Czechia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;66;1;2.51508007717729e-07;10400933;6.345584573999275e-06;0;1;Old +3720;Czechia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3721;Czechia;F;Service and sales workers;Construction   ;Y15-29;161;1;6.135271097356723e-07;10400933;1.5479380551725503e-05;1;0;Young +3722;Czechia;F;Service and sales workers;Construction   ;Y30-49;525;1;2.0006318795728442e-06;10400933;5.047624092953969e-05;1;0;Young +3723;Czechia;F;Service and sales workers;Construction   ;Y50-64;272;1;1.0365178499882164e-06;10400933;2.6151500062542465e-05;0;1;Old +3724;Czechia;F;Service and sales workers;Construction   ;Y65-84;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;0;1;Old +3725;Czechia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;32523;1;0.00012393628689399546;10400933;0.0031269310166693698;1;0;Young +3726;Czechia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;93054;1;0.0003546034265176599;10400933;0.008946697378014068;1;0;Young +3727;Czechia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;36976;1;0.00014090545596016284;10400933;0.0035550656849726845;0;1;Old +3728;Czechia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1230;1;4.68719468928495e-06;10400933;0.00011825862160635012;0;1;Old +3729;Czechia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3730;Czechia;F;Service and sales workers;Transportation and storage   ;Y15-29;1181;1;4.500469047191484e-06;10400933;0.00011354750578625975;1;0;Young +3731;Czechia;F;Service and sales workers;Transportation and storage   ;Y30-49;3723;1;1.4187338071713714e-05;10400933;0.00035794865710605;1;0;Young +3732;Czechia;F;Service and sales workers;Transportation and storage   ;Y50-64;1449;1;5.52174398762105e-06;10400933;0.00013931442496552954;0;1;Old +3733;Czechia;F;Service and sales workers;Transportation and storage   ;Y65-84;38;1;1.448076408071773e-07;10400933;3.6535183910904917e-06;0;1;Old +3734;Czechia;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;20412;1;7.778456747779219e-05;10400933;0.001962516247340503;1;0;Young +3735;Czechia;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;31072;1;0.00011840692145159508;10400933;0.0029874243012622042;1;0;Young +3736;Czechia;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;11070;1;4.218475220356455e-05;10400933;0.0010643275944571512;0;1;Old +3737;Czechia;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;351;1;1.3375653137715587e-06;10400933;3.374697250717796e-05;0;1;Old +3738;Czechia;F;Service and sales workers;Accommodation and food service activities   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3739;Czechia;F;Service and sales workers;Information and communication   ;Y15-29;539;1;2.0539820630281202e-06;10400933;5.182227402099408e-05;1;0;Young +3740;Czechia;F;Service and sales workers;Information and communication   ;Y30-49;581;1;2.2140326133939478e-06;10400933;5.5860373295357256e-05;1;0;Young +3741;Czechia;F;Service and sales workers;Information and communication   ;Y50-64;146;1;5.563661988907339e-07;10400933;1.4037202239452942e-05;0;1;Old +3742;Czechia;F;Service and sales workers;Information and communication   ;Y65-84;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;0;1;Old +3743;Czechia;F;Service and sales workers;Financial and insurance activities   ;Y15-29;520;1;1.9815782426245316e-06;10400933;4.999551482544883e-05;1;0;Young +3744;Czechia;F;Service and sales workers;Financial and insurance activities   ;Y30-49;794;1;3.0257175473920732e-06;10400933;7.633930532962765e-05;1;0;Young +3745;Czechia;F;Service and sales workers;Financial and insurance activities   ;Y50-64;313;1;1.1927576729643815e-06;10400933;3.009345411608747e-05;0;1;Old +3746;Czechia;F;Service and sales workers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3747;Czechia;F;Service and sales workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3748;Czechia;F;Service and sales workers;Real estate activities   ;Y15-29;130;1;4.953945606561329e-07;10400933;1.2498878706362208e-05;1;0;Young +3749;Czechia;F;Service and sales workers;Real estate activities   ;Y30-49;640;1;2.4388655293840387e-06;10400933;6.153294132362933e-05;1;0;Young +3750;Czechia;F;Service and sales workers;Real estate activities   ;Y50-64;381;1;1.4518871354614356e-06;10400933;3.6631329131723085e-05;0;1;Old +3751;Czechia;F;Service and sales workers;Real estate activities   ;Y65-84;58;1;2.2102218860042852e-07;10400933;5.576422807453908e-06;0;1;Old +3752;Czechia;F;Service and sales workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3753;Czechia;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;431;1;1.6424235049445636e-06;10400933;4.143859017263163e-05;1;0;Young +3754;Czechia;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;660;1;2.51508007717729e-06;10400933;6.345584573999275e-05;1;0;Young +3755;Czechia;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;276;1;1.0517607595468668e-06;10400933;2.653608094581515e-05;0;1;Old +3756;Czechia;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;25;1;9.526818474156401e-08;10400933;2.403630520454271e-06;0;1;Old +3757;Czechia;F;Service and sales workers;Administrative and support service activities   ;Y15-29;1411;1;5.376936346813873e-06;10400933;0.00013566090657443904;1;0;Young +3758;Czechia;F;Service and sales workers;Administrative and support service activities   ;Y30-49;4122;1;1.5707818300189074e-05;10400933;0.0003963106002125002;1;0;Young +3759;Czechia;F;Service and sales workers;Administrative and support service activities   ;Y50-64;3527;1;1.344043550333985e-05;10400933;0.00033910419382568853;0;1;Old +3760;Czechia;F;Service and sales workers;Administrative and support service activities   ;Y65-84;312;1;1.188946945574719e-06;10400933;2.99973088952693e-05;0;1;Old +3761;Czechia;F;Service and sales workers;Administrative and support service activities   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3762;Czechia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;1954;1;7.446161319400643e-06;10400933;0.0001878677614787058;1;0;Young +3763;Czechia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;5877;1;2.239564486904687e-05;10400933;0.00056504546274839;1;0;Young +3764;Czechia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;1996;1;7.606211869766471e-06;10400933;0.00019190586075306897;0;1;Old +3765;Czechia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;64;1;2.4388655293840386e-07;10400933;6.153294132362934e-06;0;1;Old +3766;Czechia;F;Service and sales workers;Education   ;Y15-29;933;1;3.555408654555169e-06;10400933;8.970349102335338e-05;1;0;Young +3767;Czechia;F;Service and sales workers;Education   ;Y30-49;12228;1;4.659757452079379e-05;10400933;0.001175663760164593;1;0;Young +3768;Czechia;F;Service and sales workers;Education   ;Y50-64;8098;1;3.085927040148741e-05;10400933;0.0007785839981855474;0;1;Old +3769;Czechia;F;Service and sales workers;Education   ;Y65-84;329;1;1.2537293111989825e-06;10400933;3.16317776491782e-05;0;1;Old +3770;Czechia;F;Service and sales workers;Human health and social work activities   ;Y15-29;3076;1;1.1721797450602036e-05;10400933;0.0002957426992366935;1;0;Young +3771;Czechia;F;Service and sales workers;Human health and social work activities   ;Y30-49;17192;1;6.551402528307874e-05;10400933;0.0016529286363059928;1;0;Young +3772;Czechia;F;Service and sales workers;Human health and social work activities   ;Y50-64;9857;1;3.756233987990386e-05;10400933;0.0009477034416047099;0;1;Old +3773;Czechia;F;Service and sales workers;Human health and social work activities   ;Y65-84;231;1;8.802780270120515e-07;10400933;2.2209546008997462e-05;0;1;Old +3774;Czechia;F;Service and sales workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3775;Czechia;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2480;1;9.45060392636315e-06;10400933;0.00023844014762906365;1;0;Young +3776;Czechia;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;3112;1;1.1858983636629888e-05;10400933;0.00029920392718614763;1;0;Young +3777;Czechia;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;1170;1;4.4585510459051955e-06;10400933;0.00011248990835725987;0;1;Old +3778;Czechia;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;287;1;1.0936787608331548e-06;10400933;2.759367837481503e-05;0;1;Old +3779;Czechia;F;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3780;Czechia;F;Service and sales workers;Other service activities   ;Y15-29;8906;1;3.393833813233477e-05;10400933;0.0008562693366066294;1;0;Young +3781;Czechia;F;Service and sales workers;Other service activities   ;Y30-49;17398;1;6.629903512534923e-05;10400933;0.0016727345517945362;1;0;Young +3782;Czechia;F;Service and sales workers;Other service activities   ;Y50-64;5844;1;2.2269890865188005e-05;10400933;0.0005618726704613903;0;1;Old +3783;Czechia;F;Service and sales workers;Other service activities   ;Y65-84;381;1;1.4518871354614356e-06;10400933;3.6631329131723085e-05;0;1;Old +3784;Czechia;F;Service and sales workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3785;Czechia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;458;1;1.7453131444654527e-06;10400933;4.403451113472224e-05;1;0;Young +3786;Czechia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;957;1;3.6468661119070704e-06;10400933;9.201097632298949e-05;1;0;Young +3787;Czechia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;622;1;2.3702724363701127e-06;10400933;5.980232734890226e-05;0;1;Old +3788;Czechia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;27;1;1.0288963952088914e-07;10400933;2.5959209620906126e-06;0;1;Old +3789;Czechia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +3790;Czechia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;1;0;Young +3791;Czechia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3792;Czechia;F;Service and sales workers;Not stated   ;Y15-29;9574;1;3.648390402862936e-05;10400933;0.0009204943441131675;1;0;Young +3793;Czechia;F;Service and sales workers;Not stated   ;Y30-49;24521;1;9.344284632191564e-05;10400933;0.002357576959682367;1;0;Young +3794;Czechia;F;Service and sales workers;Not stated   ;Y50-64;11868;1;4.522571266051527e-05;10400933;0.0011410514806700514;0;1;Old +3795;Czechia;F;Service and sales workers;Not stated   ;Y65-84;676;1;2.576051715411891e-06;10400933;6.499416927308349e-05;0;1;Old +3796;Czechia;F;Service and sales workers;Not stated   ;Y_GE85;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +3797;Czechia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;1712;1;6.523965291102304e-06;10400933;0.00016460061804070847;1;0;Young +3798;Czechia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;9745;1;3.713553841226165e-05;10400933;0.0009369351768730747;1;0;Young +3799;Czechia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;6581;1;2.507839695136931e-05;10400933;0.0006327316982043822;0;1;Old +3800;Czechia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;336;1;1.2804044029266203e-06;10400933;3.23047941949054e-05;0;1;Old +3801;Czechia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +3802;Czechia;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3803;Czechia;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3804;Czechia;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3805;Czechia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;47;1;1.7910418731414036e-07;10400933;4.518825378454029e-06;1;0;Young +3806;Czechia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;226;1;8.612243900637387e-07;10400933;2.172881990490661e-05;1;0;Young +3807;Czechia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;137;1;5.220696523837708e-07;10400933;1.3171895252089404e-05;0;1;Old +3808;Czechia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3809;Czechia;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3810;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;1;0;Young +3811;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3812;Czechia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +3813;Czechia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;1;0;Young +3814;Czechia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3815;Czechia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3816;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;300;1;1.1432182168987682e-06;10400933;2.884356624545125e-05;1;0;Young +3817;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;590;1;2.2483291599009107e-06;10400933;5.672568028272079e-05;1;0;Young +3818;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;102;1;3.886941937455812e-07;10400933;9.806812523453424e-06;0;1;Old +3819;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3820;Czechia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;14;1;5.335018345527585e-08;10400933;1.3460330914543917e-06;1;0;Young +3821;Czechia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;1;0;Young +3822;Czechia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;0;1;Old +3823;Czechia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3824;Czechia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3825;Czechia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;1;0;Young +3826;Czechia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +3827;Czechia;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3828;Czechia;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3829;Czechia;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3830;Czechia;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +3831;Czechia;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +3832;Czechia;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3833;Czechia;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;1;0;Young +3834;Czechia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;22;1;8.383600257257633e-08;10400933;2.1151948579997585e-06;1;0;Young +3835;Czechia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;62;1;2.3626509815907876e-07;10400933;5.9610036907265914e-06;1;0;Young +3836;Czechia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;24;1;9.145745735190145e-08;10400933;2.3074852996361e-06;0;1;Old +3837;Czechia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3838;Czechia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;212;1;8.078742066084628e-07;10400933;2.0382786813452217e-05;1;0;Young +3839;Czechia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;802;1;3.0562033665093736e-06;10400933;7.7108467096173e-05;1;0;Young +3840;Czechia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;352;1;1.3413760411612213e-06;10400933;3.3843117727996135e-05;0;1;Old +3841;Czechia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;13;1;4.953945606561329e-08;10400933;1.2498878706362208e-06;0;1;Old +3842;Czechia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3843;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;21;1;8.002527518291377e-08;10400933;2.0190496371815874e-06;1;0;Young +3844;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;80;1;3.0485819117300483e-07;10400933;7.691617665453667e-06;1;0;Young +3845;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;0;1;Old +3846;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3847;Czechia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;1;0;Young +3848;Czechia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;62;1;2.3626509815907876e-07;10400933;5.9610036907265914e-06;1;0;Young +3849;Czechia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;0;1;Old +3850;Czechia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3851;Czechia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;324;1;1.2346756742506695e-06;10400933;3.115105154508735e-05;1;0;Young +3852;Czechia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;1432;1;5.456961621996787e-06;10400933;0.00013767995621162063;1;0;Young +3853;Czechia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;783;1;2.983799546105785e-06;10400933;7.528170790062776e-05;0;1;Old +3854;Czechia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;0;1;Old +3855;Czechia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;74;1;2.819938268350295e-07;10400933;7.114746340544641e-06;1;0;Young +3856;Czechia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;122;1;4.6490874153883237e-07;10400933;1.172971693981684e-05;1;0;Young +3857;Czechia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;50;1;1.9053636948312803e-07;10400933;4.807261040908542e-06;0;1;Old +3858;Czechia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3859;Czechia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;43;1;1.638612777554901e-07;10400933;4.134244495181346e-06;1;0;Young +3860;Czechia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;120;1;4.572872867595073e-07;10400933;1.15374264981805e-05;1;0;Young +3861;Czechia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;45;1;1.7148273253481523e-07;10400933;4.326534936817687e-06;0;1;Old +3862;Czechia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3863;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +3864;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;13;1;4.953945606561329e-08;10400933;1.2498878706362208e-06;1;0;Young +3865;Czechia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +3866;Czechia;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3867;Czechia;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +3868;Czechia;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;283;1;1.0784358512745046e-06;10400933;2.7209097491542345e-05;1;0;Young +3869;Czechia;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;1293;1;4.927270514833691e-06;10400933;0.00012431577051789488;1;0;Young +3870;Czechia;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;802;1;3.0562033665093736e-06;10400933;7.7108467096173e-05;0;1;Old +3871;Czechia;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;39;1;1.4861836819683987e-07;10400933;3.7496636119086623e-06;0;1;Old +3872;Czechia;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3873;Czechia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;28;1;1.067003669105517e-07;10400933;2.6920661829087833e-06;1;0;Young +3874;Czechia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;122;1;4.6490874153883237e-07;10400933;1.172971693981684e-05;1;0;Young +3875;Czechia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;55;1;2.0959000643144082e-07;10400933;5.2879871449993955e-06;0;1;Old +3876;Czechia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3877;Czechia;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;1;0;Young +3878;Czechia;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;125;1;4.7634092370782007e-07;10400933;1.2018152602271354e-05;1;0;Young +3879;Czechia;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;112;1;4.268014676422068e-07;10400933;1.0768264731635133e-05;0;1;Old +3880;Czechia;F;Craft and related trades workers;Manufacturing   ;Y15-29;11529;1;4.393387607541966e-05;10400933;0.0011084582508126915;1;0;Young +3881;Czechia;F;Craft and related trades workers;Manufacturing   ;Y30-49;46989;1;0.00017906226931285407;10400933;0.004517767781025029;1;0;Young +3882;Czechia;F;Craft and related trades workers;Manufacturing   ;Y50-64;20536;1;7.825709767411034e-05;10400933;0.001974438254721956;0;1;Old +3883;Czechia;F;Craft and related trades workers;Manufacturing   ;Y65-84;269;1;1.0250856678192288e-06;10400933;2.5863064400087954e-05;0;1;Old +3884;Czechia;F;Craft and related trades workers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3885;Czechia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;27;1;1.0288963952088914e-07;10400933;2.5959209620906126e-06;1;0;Young +3886;Czechia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;138;1;5.258803797734334e-07;10400933;1.3268040472907575e-05;1;0;Young +3887;Czechia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;106;1;4.039371033042314e-07;10400933;1.0191393406726108e-05;0;1;Old +3888;Czechia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3889;Czechia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +3890;Czechia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;80;1;3.0485819117300483e-07;10400933;7.691617665453667e-06;1;0;Young +3891;Czechia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;56;1;2.134007338211034e-07;10400933;5.384132365817567e-06;0;1;Old +3892;Czechia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3893;Czechia;F;Craft and related trades workers;Construction   ;Y15-29;545;1;2.0768464273660954e-06;10400933;5.23991453459031e-05;1;0;Young +3894;Czechia;F;Craft and related trades workers;Construction   ;Y30-49;1653;1;6.299132375112213e-06;10400933;0.00015892805001243638;1;0;Young +3895;Czechia;F;Craft and related trades workers;Construction   ;Y50-64;793;1;3.0219068200024106e-06;10400933;7.624316010880947e-05;0;1;Old +3896;Czechia;F;Craft and related trades workers;Construction   ;Y65-84;39;1;1.4861836819683987e-07;10400933;3.7496636119086623e-06;0;1;Old +3897;Czechia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;355;1;1.352808223330209e-06;10400933;3.413155339045065e-05;1;0;Young +3898;Czechia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1147;1;4.370904315942957e-06;10400933;0.00011027856827844194;1;0;Young +3899;Czechia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;451;1;1.7186380527378147e-06;10400933;4.3361494588995044e-05;0;1;Old +3900;Czechia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +3901;Czechia;F;Craft and related trades workers;Transportation and storage   ;Y15-29;93;1;3.543976472386181e-07;10400933;8.941505536089888e-06;1;0;Young +3902;Czechia;F;Craft and related trades workers;Transportation and storage   ;Y30-49;428;1;1.630991322775576e-06;10400933;4.115015451017712e-05;1;0;Young +3903;Czechia;F;Craft and related trades workers;Transportation and storage   ;Y50-64;208;1;7.926312970498126e-07;10400933;1.9998205930179532e-05;0;1;Old +3904;Czechia;F;Craft and related trades workers;Transportation and storage   ;Y65-84;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +3905;Czechia;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;243;1;9.260067556880022e-07;10400933;2.3363288658815512e-05;1;0;Young +3906;Czechia;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;370;1;1.4099691341751475e-06;10400933;3.5573731702723205e-05;1;0;Young +3907;Czechia;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;118;1;4.496658319801821e-07;10400933;1.1345136056544158e-05;0;1;Old +3908;Czechia;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3909;Czechia;F;Craft and related trades workers;Information and communication   ;Y15-29;134;1;5.106374702147831e-07;10400933;1.2883459589634892e-05;1;0;Young +3910;Czechia;F;Craft and related trades workers;Information and communication   ;Y30-49;247;1;9.412496652466524e-07;10400933;2.3747869542088196e-05;1;0;Young +3911;Czechia;F;Craft and related trades workers;Information and communication   ;Y50-64;146;1;5.563661988907339e-07;10400933;1.4037202239452942e-05;0;1;Old +3912;Czechia;F;Craft and related trades workers;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3913;Czechia;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;1;0;Young +3914;Czechia;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;34;1;1.2956473124852705e-07;10400933;3.268937507817808e-06;1;0;Young +3915;Czechia;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;0;1;Old +3916;Czechia;F;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3917;Czechia;F;Craft and related trades workers;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;1;0;Young +3918;Czechia;F;Craft and related trades workers;Real estate activities   ;Y30-49;102;1;3.886941937455812e-07;10400933;9.806812523453424e-06;1;0;Young +3919;Czechia;F;Craft and related trades workers;Real estate activities   ;Y50-64;53;1;2.019685516521157e-07;10400933;5.095696703363054e-06;0;1;Old +3920;Czechia;F;Craft and related trades workers;Real estate activities   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +3921;Czechia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;148;1;5.63987653670059e-07;10400933;1.4229492681089282e-05;1;0;Young +3922;Czechia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;409;1;1.5585875023719872e-06;10400933;3.932339531463187e-05;1;0;Young +3923;Czechia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;183;1;6.973631123082485e-07;10400933;1.7594575409725264e-05;0;1;Old +3924;Czechia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;0;1;Old +3925;Czechia;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;131;1;4.992052880457954e-07;10400933;1.2595023927180379e-05;1;0;Young +3926;Czechia;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;425;1;1.6195591406065882e-06;10400933;4.0861718847722606e-05;1;0;Young +3927;Czechia;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;217;1;8.269278435567757e-07;10400933;2.086351291754307e-05;0;1;Old +3928;Czechia;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;0;1;Old +3929;Czechia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;14;1;5.335018345527585e-08;10400933;1.3460330914543917e-06;1;0;Young +3930;Czechia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;142;1;5.411232893320836e-07;10400933;1.3652621356180257e-05;1;0;Young +3931;Czechia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;97;1;3.6964055679726836e-07;10400933;9.32608641936257e-06;0;1;Old +3932;Czechia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +3933;Czechia;F;Craft and related trades workers;Education   ;Y15-29;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;1;0;Young +3934;Czechia;F;Craft and related trades workers;Education   ;Y30-49;130;1;4.953945606561329e-07;10400933;1.2498878706362208e-05;1;0;Young +3935;Czechia;F;Craft and related trades workers;Education   ;Y50-64;101;1;3.848834663559186e-07;10400933;9.710667302635255e-06;0;1;Old +3936;Czechia;F;Craft and related trades workers;Education   ;Y65-84;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +3937;Czechia;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;55;1;2.0959000643144082e-07;10400933;5.2879871449993955e-06;1;0;Young +3938;Czechia;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;254;1;9.679247569742904e-07;10400933;2.4420886087815392e-05;1;0;Young +3939;Czechia;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;165;1;6.287700192943225e-07;10400933;1.5863961434998187e-05;0;1;Old +3940;Czechia;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +3941;Czechia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;88;1;3.353440102903053e-07;10400933;8.460779431999034e-06;1;0;Young +3942;Czechia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;432;1;1.6462342323342262e-06;10400933;4.15347353934498e-05;1;0;Young +3943;Czechia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;281;1;1.0708143964951796e-06;10400933;2.7016807049906003e-05;0;1;Old +3944;Czechia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +3945;Czechia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3946;Czechia;F;Craft and related trades workers;Other service activities   ;Y15-29;162;1;6.173378371253348e-07;10400933;1.5575525772543676e-05;1;0;Young +3947;Czechia;F;Craft and related trades workers;Other service activities   ;Y30-49;842;1;3.208632462095876e-06;10400933;8.095427592889984e-05;1;0;Young +3948;Czechia;F;Craft and related trades workers;Other service activities   ;Y50-64;450;1;1.7148273253481523e-06;10400933;4.326534936817687e-05;0;1;Old +3949;Czechia;F;Craft and related trades workers;Other service activities   ;Y65-84;24;1;9.145745735190145e-08;10400933;2.3074852996361e-06;0;1;Old +3950;Czechia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +3951;Czechia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;1;0;Young +3952;Czechia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3953;Czechia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +3954;Czechia;F;Craft and related trades workers;Not stated   ;Y15-29;1463;1;5.5750941710763265e-06;10400933;0.00014066045805698392;1;0;Young +3955;Czechia;F;Craft and related trades workers;Not stated   ;Y30-49;4588;1;1.748361726377183e-05;10400933;0.00044111427311376776;1;0;Young +3956;Czechia;F;Craft and related trades workers;Not stated   ;Y50-64;2265;1;8.6312975375857e-06;10400933;0.00021776892515315693;0;1;Old +3957;Czechia;F;Craft and related trades workers;Not stated   ;Y65-84;58;1;2.2102218860042852e-07;10400933;5.576422807453908e-06;0;1;Old +3958;Czechia;F;Craft and related trades workers;Not stated   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +3959;Czechia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;43;1;1.638612777554901e-07;10400933;4.134244495181346e-06;1;0;Young +3960;Czechia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;341;1;1.299458039874933e-06;10400933;3.2785520298996255e-05;1;0;Young +3961;Czechia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;287;1;1.0936787608331548e-06;10400933;2.759367837481503e-05;0;1;Old +3962;Czechia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +3963;Czechia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;1;0;Young +3964;Czechia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;578;1;2.20260043122496e-06;10400933;5.557193763290274e-05;1;0;Young +3965;Czechia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;616;1;2.347408072032137e-06;10400933;5.9225456023993235e-05;0;1;Old +3966;Czechia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3967;Czechia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;19330;1;7.36613604421773e-05;10400933;0.0018584871184152423;1;0;Young +3968;Czechia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;73074;1;0.00027846509327220196;10400933;0.007025715866067015;1;0;Young +3969;Czechia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;32055;1;0.00012215286647563337;10400933;0.003081935053326466;0;1;Old +3970;Czechia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;239;1;9.10763846129352e-07;10400933;2.2978707775542828e-05;0;1;Old +3971;Czechia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +3972;Czechia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;64;1;2.4388655293840386e-07;10400933;6.153294132362934e-06;1;0;Young +3973;Czechia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;270;1;1.0288963952088914e-06;10400933;2.5959209620906123e-05;1;0;Young +3974;Czechia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;254;1;9.679247569742904e-07;10400933;2.4420886087815392e-05;0;1;Old +3975;Czechia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +3976;Czechia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;47;1;1.7910418731414036e-07;10400933;4.518825378454029e-06;1;0;Young +3977;Czechia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;357;1;1.360429678109534e-06;10400933;3.4323843832086986e-05;1;0;Young +3978;Czechia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;335;1;1.2765936755369577e-06;10400933;3.2208648974087225e-05;0;1;Old +3979;Czechia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +3980;Czechia;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;127;1;4.839623784871452e-07;10400933;1.2210443043907696e-05;1;0;Young +3981;Czechia;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;493;1;1.8786886031036423e-06;10400933;4.739959386335822e-05;1;0;Young +3982;Czechia;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;325;1;1.2384864016403321e-06;10400933;3.124719676590552e-05;0;1;Old +3983;Czechia;F;Plant and machine operators, and assemblers;Construction   ;Y65-84;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +3984;Czechia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;807;1;3.075257003457686e-06;10400933;7.758919320026386e-05;1;0;Young +3985;Czechia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3301;1;1.2579211113276113e-05;10400933;0.00031737537392078193;1;0;Young +3986;Czechia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1388;1;5.289289616851634e-06;10400933;0.0001334495664956211;0;1;Old +3987;Czechia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;20;1;7.621454779325121e-08;10400933;1.9229044163634167e-06;0;1;Old +3988;Czechia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;866;1;3.3000899194477775e-06;10400933;8.326176122853594e-05;1;0;Young +3989;Czechia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;4586;1;1.7475995808992504e-05;10400933;0.0004409219826721314;1;0;Young +3990;Czechia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;2609;1;9.94218775962962e-06;10400933;0.0002508428811146077;0;1;Old +3991;Czechia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;25;1;9.526818474156401e-08;10400933;2.403630520454271e-06;0;1;Old +3992;Czechia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;1;0;Young +3993;Czechia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;216;1;8.231171161671131e-07;10400933;2.07673676967249e-05;1;0;Young +3994;Czechia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;145;1;5.525554715010713e-07;10400933;1.394105701863477e-05;0;1;Old +3995;Czechia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +3996;Czechia;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;60;1;2.2864364337975364e-07;10400933;5.76871324909025e-06;1;0;Young +3997;Czechia;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;146;1;5.563661988907339e-07;10400933;1.4037202239452942e-05;1;0;Young +3998;Czechia;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;78;1;2.9723673639367974e-07;10400933;7.499327223817325e-06;0;1;Old +3999;Czechia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;20;1;7.621454779325121e-08;10400933;1.9229044163634167e-06;1;0;Young +4000;Czechia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;36;1;1.3718618602785217e-07;10400933;3.46122794945415e-06;1;0;Young +4001;Czechia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;0;1;Old +4002;Czechia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +4003;Czechia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;20;1;7.621454779325121e-08;10400933;1.9229044163634167e-06;1;0;Young +4004;Czechia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;0;1;Old +4005;Czechia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4006;Czechia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;101;1;3.848834663559186e-07;10400933;9.710667302635255e-06;1;0;Young +4007;Czechia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;306;1;1.1660825812367436e-06;10400933;2.9420437570360275e-05;1;0;Young +4008;Czechia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;144;1;5.487447441114087e-07;10400933;1.38449117978166e-05;0;1;Old +4009;Czechia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;0;1;Old +4010;Czechia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;206;1;7.850098422704875e-07;10400933;1.980591548854319e-05;1;0;Young +4011;Czechia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;661;1;2.5188908045669524e-06;10400933;6.355199096081092e-05;1;0;Young +4012;Czechia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;384;1;1.4633193176304232e-06;10400933;3.69197647941776e-05;0;1;Old +4013;Czechia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +4014;Czechia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;43;1;1.638612777554901e-07;10400933;4.134244495181346e-06;1;0;Young +4015;Czechia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;271;1;1.032707122598554e-06;10400933;2.6055354841724296e-05;1;0;Young +4016;Czechia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;222;1;8.459814805050885e-07;10400933;2.1344239021633924e-05;0;1;Old +4017;Czechia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +4018;Czechia;F;Plant and machine operators, and assemblers;Education   ;Y15-29;13;1;4.953945606561329e-08;10400933;1.2498878706362208e-06;1;0;Young +4019;Czechia;F;Plant and machine operators, and assemblers;Education   ;Y30-49;154;1;5.868520180080343e-07;10400933;1.4806364005998309e-05;1;0;Young +4020;Czechia;F;Plant and machine operators, and assemblers;Education   ;Y50-64;140;1;5.335018345527585e-07;10400933;1.3460330914543917e-05;0;1;Old +4021;Czechia;F;Plant and machine operators, and assemblers;Education   ;Y65-84;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4022;Czechia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;243;1;9.260067556880022e-07;10400933;2.3363288658815512e-05;1;0;Young +4023;Czechia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;1383;1;5.270235979903321e-06;10400933;0.00013296884039153026;1;0;Young +4024;Czechia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;944;1;3.597326655841457e-06;10400933;9.076108845235326e-05;0;1;Old +4025;Czechia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;0;1;Old +4026;Czechia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;40;1;1.5242909558650242e-07;10400933;3.845808832726833e-06;1;0;Young +4027;Czechia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;89;1;3.3915473767996787e-07;10400933;8.556924652817203e-06;1;0;Young +4028;Czechia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;41;1;1.56239822976165e-07;10400933;3.9419540535450045e-06;0;1;Old +4029;Czechia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4030;Czechia;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;177;1;6.744987479702732e-07;10400933;1.7017704084816237e-05;1;0;Young +4031;Czechia;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;881;1;3.3572508302927157e-06;10400933;8.470393954080851e-05;1;0;Young +4032;Czechia;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;564;1;2.149250247769684e-06;10400933;5.422590454144835e-05;0;1;Old +4033;Czechia;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;0;1;Old +4034;Czechia;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;1;0;Young +4035;Czechia;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +4036;Czechia;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4037;Czechia;F;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2008;1;7.651940598442421e-06;10400933;0.00019305960340288702;1;0;Young +4038;Czechia;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;6876;1;2.6202561531319765e-05;10400933;0.0006610945383457426;1;0;Young +4039;Czechia;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;3554;1;1.354332514286074e-05;10400933;0.0003417001147877791;0;1;Old +4040;Czechia;F;Plant and machine operators, and assemblers;Not stated   ;Y65-84;54;1;2.0577927904177827e-07;10400933;5.191841924181225e-06;0;1;Old +4041;Czechia;F;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4042;Czechia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;131;1;4.992052880457954e-07;10400933;1.2595023927180379e-05;1;0;Young +4043;Czechia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;1308;1;4.984431425678629e-06;10400933;0.00012575794883016745;1;0;Young +4044;Czechia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;1165;1;4.439497408956883e-06;10400933;0.00011200918225316902;0;1;Old +4045;Czechia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;117;1;4.458551045905196e-07;10400933;1.1248990835725987e-05;0;1;Old +4046;Czechia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4047;Czechia;F;Elementary occupations;Mining and quarrying   ;Y15-29;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;1;0;Young +4048;Czechia;F;Elementary occupations;Mining and quarrying   ;Y30-49;103;1;3.9250492113524375e-07;10400933;9.902957744271595e-06;1;0;Young +4049;Czechia;F;Elementary occupations;Mining and quarrying   ;Y50-64;141;1;5.37312561942421e-07;10400933;1.3556476135362088e-05;0;1;Old +4050;Czechia;F;Elementary occupations;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4051;Czechia;F;Elementary occupations;Manufacturing   ;Y15-29;2117;1;8.067309883915641e-06;10400933;0.00020353943247206766;1;0;Young +4052;Czechia;F;Elementary occupations;Manufacturing   ;Y30-49;9276;1;3.534830726650991e-05;10400933;0.0008918430683093527;1;0;Young +4053;Czechia;F;Elementary occupations;Manufacturing   ;Y50-64;5547;1;2.1138104830458225e-05;10400933;0.0005333175398783936;0;1;Old +4054;Czechia;F;Elementary occupations;Manufacturing   ;Y65-84;235;1;8.955209365707018e-07;10400933;2.2594126892270147e-05;0;1;Old +4055;Czechia;F;Elementary occupations;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4056;Czechia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;1;0;Young +4057;Czechia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;125;1;4.7634092370782007e-07;10400933;1.2018152602271354e-05;1;0;Young +4058;Czechia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;109;1;4.153692854732191e-07;10400933;1.047982906918062e-05;0;1;Old +4059;Czechia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;0;1;Old +4060;Czechia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;90;1;3.4296546506963047e-07;10400933;8.653069873635374e-06;1;0;Young +4061;Czechia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;659;1;2.5112693497876272e-06;10400933;6.335970051917458e-05;1;0;Young +4062;Czechia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;481;1;1.8329598744276917e-06;10400933;4.624585121354017e-05;0;1;Old +4063;Czechia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;28;1;1.067003669105517e-07;10400933;2.6920661829087833e-06;0;1;Old +4064;Czechia;F;Elementary occupations;Construction   ;Y15-29;108;1;4.1155855808355654e-07;10400933;1.038368384836245e-05;1;0;Young +4065;Czechia;F;Elementary occupations;Construction   ;Y30-49;570;1;2.1721146121076596e-06;10400933;5.4802775866357375e-05;1;0;Young +4066;Czechia;F;Elementary occupations;Construction   ;Y50-64;383;1;1.4595085902407606e-06;10400933;3.682361957335943e-05;0;1;Old +4067;Czechia;F;Elementary occupations;Construction   ;Y65-84;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;0;1;Old +4068;Czechia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;294;1;1.1203538525607928e-06;10400933;2.8266694920542226e-05;1;0;Young +4069;Czechia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1200;1;4.572872867595073e-06;10400933;0.000115374264981805;1;0;Young +4070;Czechia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;872;1;3.3229542837857527e-06;10400933;8.383863255344496e-05;0;1;Old +4071;Czechia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;126;1;4.801516510974826e-07;10400933;1.2114297823089525e-05;0;1;Old +4072;Czechia;F;Elementary occupations;Transportation and storage   ;Y15-29;230;1;8.76467299622389e-07;10400933;2.211340078817929e-05;1;0;Young +4073;Czechia;F;Elementary occupations;Transportation and storage   ;Y30-49;938;1;3.574462291503482e-06;10400933;9.018421712744424e-05;1;0;Young +4074;Czechia;F;Elementary occupations;Transportation and storage   ;Y50-64;752;1;2.8656669970262457e-06;10400933;7.230120605526447e-05;0;1;Old +4075;Czechia;F;Elementary occupations;Transportation and storage   ;Y65-84;57;1;2.1721146121076594e-07;10400933;5.480277586635738e-06;0;1;Old +4076;Czechia;F;Elementary occupations;Transportation and storage   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4077;Czechia;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;707;1;2.6941842644914304e-06;10400933;6.797467111844678e-05;1;0;Young +4078;Czechia;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;3982;1;1.5174316465636315e-05;10400933;0.00038285026929795623;1;0;Young +4079;Czechia;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;2274;1;8.665594084092663e-06;10400933;0.00021863423214052048;0;1;Old +4080;Czechia;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;123;1;4.6871946892849497e-07;10400933;1.1825862160635012e-05;0;1;Old +4081;Czechia;F;Elementary occupations;Information and communication   ;Y15-29;40;1;1.5242909558650242e-07;10400933;3.845808832726833e-06;1;0;Young +4082;Czechia;F;Elementary occupations;Information and communication   ;Y30-49;91;1;3.46776192459293e-07;10400933;8.749215094453545e-06;1;0;Young +4083;Czechia;F;Elementary occupations;Information and communication   ;Y50-64;74;1;2.819938268350295e-07;10400933;7.114746340544641e-06;0;1;Old +4084;Czechia;F;Elementary occupations;Information and communication   ;Y65-84;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +4085;Czechia;F;Elementary occupations;Financial and insurance activities   ;Y15-29;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;1;0;Young +4086;Czechia;F;Elementary occupations;Financial and insurance activities   ;Y30-49;48;1;1.829149147038029e-07;10400933;4.6149705992722e-06;1;0;Young +4087;Czechia;F;Elementary occupations;Financial and insurance activities   ;Y50-64;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;0;1;Old +4088;Czechia;F;Elementary occupations;Financial and insurance activities   ;Y65-84;27;1;1.0288963952088914e-07;10400933;2.5959209620906126e-06;0;1;Old +4089;Czechia;F;Elementary occupations;Real estate activities   ;Y15-29;28;1;1.067003669105517e-07;10400933;2.6920661829087833e-06;1;0;Young +4090;Czechia;F;Elementary occupations;Real estate activities   ;Y30-49;200;1;7.621454779325121e-07;10400933;1.9229044163634167e-05;1;0;Young +4091;Czechia;F;Elementary occupations;Real estate activities   ;Y50-64;184;1;7.011738396979111e-07;10400933;1.7690720630543433e-05;0;1;Old +4092;Czechia;F;Elementary occupations;Real estate activities   ;Y65-84;42;1;1.6005055036582754e-07;10400933;4.038099274363175e-06;0;1;Old +4093;Czechia;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;71;1;2.705616446660418e-07;10400933;6.826310678090129e-06;1;0;Young +4094;Czechia;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;289;1;1.10130021561248e-06;10400933;2.778596881645137e-05;1;0;Young +4095;Czechia;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;244;1;9.298174830776647e-07;10400933;2.345943387963368e-05;0;1;Old +4096;Czechia;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;40;1;1.5242909558650242e-07;10400933;3.845808832726833e-06;0;1;Old +4097;Czechia;F;Elementary occupations;Administrative and support service activities   ;Y15-29;1717;1;6.543018928050616e-06;10400933;0.00016508134414479933;1;0;Young +4098;Czechia;F;Elementary occupations;Administrative and support service activities   ;Y30-49;14556;1;5.5468947883928234e-05;10400933;0.0013994898342292947;1;0;Young +4099;Czechia;F;Elementary occupations;Administrative and support service activities   ;Y50-64;10631;1;4.0511842879502684e-05;10400933;0.0010221198425179742;0;1;Old +4100;Czechia;F;Elementary occupations;Administrative and support service activities   ;Y65-84;1267;1;4.828191602702464e-06;10400933;0.00012181599477662244;0;1;Old +4101;Czechia;F;Elementary occupations;Administrative and support service activities   ;Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4102;Czechia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;145;1;5.525554715010713e-07;10400933;1.394105701863477e-05;1;0;Young +4103;Czechia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;1649;1;6.283889465553563e-06;10400933;0.0001585434691291637;1;0;Young +4104;Czechia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;1551;1;5.910438181366631e-06;10400933;0.00014912123748898296;0;1;Old +4105;Czechia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;145;1;5.525554715010713e-07;10400933;1.394105701863477e-05;0;1;Old +4106;Czechia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4107;Czechia;F;Elementary occupations;Education   ;Y15-29;296;1;1.127975307340118e-06;10400933;2.8458985362178565e-05;1;0;Young +4108;Czechia;F;Elementary occupations;Education   ;Y30-49;6911;1;2.6335936989957954e-05;10400933;0.0006644596210743786;1;0;Young +4109;Czechia;F;Elementary occupations;Education   ;Y50-64;5473;1;2.0856111003623195e-05;10400933;0.000526202793537849;0;1;Old +4110;Czechia;F;Elementary occupations;Education   ;Y65-84;429;1;1.6348020501652386e-06;10400933;4.1246299730995284e-05;0;1;Old +4111;Czechia;F;Elementary occupations;Education   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4112;Czechia;F;Elementary occupations;Human health and social work activities   ;Y15-29;446;1;1.699584415789502e-06;10400933;4.2880768484904194e-05;1;0;Young +4113;Czechia;F;Elementary occupations;Human health and social work activities   ;Y30-49;4146;1;1.5799275757540977e-05;10400933;0.00039861808551213627;1;0;Young +4114;Czechia;F;Elementary occupations;Human health and social work activities   ;Y50-64;3648;1;1.390153351748902e-05;10400933;0.0003507377655446872;0;1;Old +4115;Czechia;F;Elementary occupations;Human health and social work activities   ;Y65-84;259;1;9.869783939226032e-07;10400933;2.4901612191906246e-05;0;1;Old +4116;Czechia;F;Elementary occupations;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4117;Czechia;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;197;1;7.507132957635244e-07;10400933;1.8940608501179655e-05;1;0;Young +4118;Czechia;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;608;1;2.3169222529148367e-06;10400933;5.8456294257447866e-05;1;0;Young +4119;Czechia;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;635;1;2.419811892435726e-06;10400933;6.105221521953848e-05;0;1;Old +4120;Czechia;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;248;1;9.45060392636315e-07;10400933;2.3844014762906366e-05;0;1;Old +4121;Czechia;F;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4122;Czechia;F;Elementary occupations;Other service activities   ;Y15-29;224;1;8.536029352844136e-07;10400933;2.1536529463270266e-05;1;0;Young +4123;Czechia;F;Elementary occupations;Other service activities   ;Y30-49;1592;1;6.066678004342796e-06;10400933;0.00015306319154252795;1;0;Young +4124;Czechia;F;Elementary occupations;Other service activities   ;Y50-64;1221;1;4.652898142777986e-06;10400933;0.00011739331461898659;0;1;Old +4125;Czechia;F;Elementary occupations;Other service activities   ;Y65-84;117;1;4.458551045905196e-07;10400933;1.1248990835725987e-05;0;1;Old +4126;Czechia;F;Elementary occupations;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4127;Czechia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;104;1;3.963156485249063e-07;10400933;9.999102965089766e-06;1;0;Young +4128;Czechia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;293;1;1.1165431251711302e-06;10400933;2.8170549699724053e-05;1;0;Young +4129;Czechia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;165;1;6.287700192943225e-07;10400933;1.5863961434998187e-05;0;1;Old +4130;Czechia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;0;1;Old +4131;Czechia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4132;Czechia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4133;Czechia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4134;Czechia;F;Elementary occupations;Not stated   ;Y15-29;2376;1;9.054288277838245e-06;10400933;0.0002284410446639739;1;0;Young +4135;Czechia;F;Elementary occupations;Not stated   ;Y30-49;11577;1;4.411679099012347e-05;10400933;0.0011130732214119636;1;0;Young +4136;Czechia;F;Elementary occupations;Not stated   ;Y50-64;9029;1;3.440705760126326e-05;10400933;0.0008680951987672644;0;1;Old +4137;Czechia;F;Elementary occupations;Not stated   ;Y65-84;825;1;3.1438500964716126e-06;10400933;7.931980717499094e-05;0;1;Old +4138;Czechia;F;Elementary occupations;Not stated   ;Y_GE85;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +4139;Czechia;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;178;1;6.783094753599357e-07;10400933;1.7113849305634406e-05;1;0;Young +4140;Czechia;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;762;1;2.9037742709228713e-06;10400933;7.326265826344617e-05;1;0;Young +4141;Czechia;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;621;1;2.36646170898045e-06;10400933;5.9706182128084086e-05;0;1;Old +4142;Czechia;F;Not stated;Agriculture, forestry and fishing   ;Y65-84;111;1;4.2299074025254424e-07;10400933;1.0672119510816962e-05;0;1;Old +4143;Czechia;F;Not stated;Agriculture, forestry and fishing   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4144;Czechia;F;Not stated;Mining and quarrying   ;Y15-29;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;1;0;Young +4145;Czechia;F;Not stated;Mining and quarrying   ;Y30-49;61;1;2.3245437076941619e-07;10400933;5.86485846990842e-06;1;0;Young +4146;Czechia;F;Not stated;Mining and quarrying   ;Y50-64;48;1;1.829149147038029e-07;10400933;4.6149705992722e-06;0;1;Old +4147;Czechia;F;Not stated;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4148;Czechia;F;Not stated;Manufacturing   ;Y15-29;2075;1;7.907259333549814e-06;10400933;0.00019950133319770447;1;0;Young +4149;Czechia;F;Not stated;Manufacturing   ;Y30-49;6137;1;2.3386433990359135e-05;10400933;0.0005900432201611144;1;0;Young +4150;Czechia;F;Not stated;Manufacturing   ;Y50-64;2741;1;1.0445203775065079e-05;10400933;0.00026353405026260625;0;1;Old +4151;Czechia;F;Not stated;Manufacturing   ;Y65-84;189;1;7.202274766462239e-07;10400933;1.8171446734634287e-05;0;1;Old +4152;Czechia;F;Not stated;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4153;Czechia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;29;1;1.1051109430021426e-07;10400933;2.788211403726954e-06;1;0;Young +4154;Czechia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;104;1;3.963156485249063e-07;10400933;9.999102965089766e-06;1;0;Young +4155;Czechia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;76;1;2.896152816143546e-07;10400933;7.307036782180983e-06;0;1;Old +4156;Czechia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +4157;Czechia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;1;0;Young +4158;Czechia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;134;1;5.106374702147831e-07;10400933;1.2883459589634892e-05;1;0;Young +4159;Czechia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;84;1;3.201011007316551e-07;10400933;8.07619854872635e-06;0;1;Old +4160;Czechia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4161;Czechia;F;Not stated;Construction   ;Y15-29;171;1;6.516343836322978e-07;10400933;1.644083275990721e-05;1;0;Young +4162;Czechia;F;Not stated;Construction   ;Y30-49;693;1;2.6408340810361544e-06;10400933;6.662863802699239e-05;1;0;Young +4163;Czechia;F;Not stated;Construction   ;Y50-64;407;1;1.5509660475926622e-06;10400933;3.913110487299553e-05;0;1;Old +4164;Czechia;F;Not stated;Construction   ;Y65-84;41;1;1.56239822976165e-07;10400933;3.9419540535450045e-06;0;1;Old +4165;Czechia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1551;1;5.910438181366631e-06;10400933;0.00014912123748898296;1;0;Young +4166;Czechia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5616;1;2.140104502034494e-05;10400933;0.0005399515601148474;1;0;Young +4167;Czechia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3007;1;1.145885726071532e-05;10400933;0.0002891086790002397;0;1;Old +4168;Czechia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;375;1;1.4290227711234603e-06;10400933;3.605445780681406e-05;0;1;Old +4169;Czechia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4170;Czechia;F;Not stated;Transportation and storage   ;Y15-29;243;1;9.260067556880022e-07;10400933;2.3363288658815512e-05;1;0;Young +4171;Czechia;F;Not stated;Transportation and storage   ;Y30-49;798;1;3.0409604569507232e-06;10400933;7.672388621290032e-05;1;0;Young +4172;Czechia;F;Not stated;Transportation and storage   ;Y50-64;410;1;1.5623982297616498e-06;10400933;3.941954053545004e-05;0;1;Old +4173;Czechia;F;Not stated;Transportation and storage   ;Y65-84;26;1;9.907891213122657e-08;10400933;2.4997757412724415e-06;0;1;Old +4174;Czechia;F;Not stated;Accommodation and food service activities   ;Y15-29;830;1;3.162903733419925e-06;10400933;7.980053327908178e-05;1;0;Young +4175;Czechia;F;Not stated;Accommodation and food service activities   ;Y30-49;1990;1;7.583347505428496e-06;10400933;0.00019132898942815995;1;0;Young +4176;Czechia;F;Not stated;Accommodation and food service activities   ;Y50-64;1030;1;3.925049211352437e-06;10400933;9.902957744271596e-05;0;1;Old +4177;Czechia;F;Not stated;Accommodation and food service activities   ;Y65-84;115;1;4.382336498111945e-07;10400933;1.1056700394089645e-05;0;1;Old +4178;Czechia;F;Not stated;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4179;Czechia;F;Not stated;Information and communication   ;Y15-29;312;1;1.188946945574719e-06;10400933;2.99973088952693e-05;1;0;Young +4180;Czechia;F;Not stated;Information and communication   ;Y30-49;599;1;2.2826257064078737e-06;10400933;5.7590987270084325e-05;1;0;Young +4181;Czechia;F;Not stated;Information and communication   ;Y50-64;202;1;7.697669327118372e-07;10400933;1.942133460527051e-05;0;1;Old +4182;Czechia;F;Not stated;Information and communication   ;Y65-84;49;1;1.8672564209346548e-07;10400933;4.711115820090371e-06;0;1;Old +4183;Czechia;F;Not stated;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4184;Czechia;F;Not stated;Financial and insurance activities   ;Y15-29;418;1;1.5928840488789504e-06;10400933;4.018870230199541e-05;1;0;Young +4185;Czechia;F;Not stated;Financial and insurance activities   ;Y30-49;1119;1;4.264203949032405e-06;10400933;0.00010758650209553316;1;0;Young +4186;Czechia;F;Not stated;Financial and insurance activities   ;Y50-64;659;1;2.5112693497876272e-06;10400933;6.335970051917458e-05;0;1;Old +4187;Czechia;F;Not stated;Financial and insurance activities   ;Y65-84;96;1;3.658298294076058e-07;10400933;9.2299411985444e-06;0;1;Old +4188;Czechia;F;Not stated;Real estate activities   ;Y15-29;137;1;5.220696523837708e-07;10400933;1.3171895252089404e-05;1;0;Young +4189;Czechia;F;Not stated;Real estate activities   ;Y30-49;550;1;2.0959000643144084e-06;10400933;5.287987144999396e-05;1;0;Young +4190;Czechia;F;Not stated;Real estate activities   ;Y50-64;261;1;9.945998487019282e-07;10400933;2.5093902633542588e-05;0;1;Old +4191;Czechia;F;Not stated;Real estate activities   ;Y65-84;47;1;1.7910418731414036e-07;10400933;4.518825378454029e-06;0;1;Old +4192;Czechia;F;Not stated;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4193;Czechia;F;Not stated;Professional, scientific and technical activities   ;Y15-29;602;1;2.2940578885768615e-06;10400933;5.787942293253884e-05;1;0;Young +4194;Czechia;F;Not stated;Professional, scientific and technical activities   ;Y30-49;1956;1;7.453782774179968e-06;10400933;0.00018806005192034214;1;0;Young +4195;Czechia;F;Not stated;Professional, scientific and technical activities   ;Y50-64;1462;1;5.571283443686664e-06;10400933;0.00014056431283616575;0;1;Old +4196;Czechia;F;Not stated;Professional, scientific and technical activities   ;Y65-84;433;1;1.6500449597238888e-06;10400933;4.163088061426797e-05;0;1;Old +4197;Czechia;F;Not stated;Professional, scientific and technical activities   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4198;Czechia;F;Not stated;Administrative and support service activities   ;Y15-29;777;1;2.9609351817678095e-06;10400933;7.470483657571874e-05;1;0;Young +4199;Czechia;F;Not stated;Administrative and support service activities   ;Y30-49;1979;1;7.541429504142207e-06;10400933;0.00019027139199916007;1;0;Young +4200;Czechia;F;Not stated;Administrative and support service activities   ;Y50-64;1166;1;4.443308136346546e-06;10400933;0.00011210532747398719;0;1;Old +4201;Czechia;F;Not stated;Administrative and support service activities   ;Y65-84;278;1;1.0593822143261918e-06;10400933;2.672837138745149e-05;0;1;Old +4202;Czechia;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;363;1;1.3832940424475095e-06;10400933;3.490071515699601e-05;1;0;Young +4203;Czechia;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;1321;1;5.033970881744242e-06;10400933;0.00012700783670080367;1;0;Young +4204;Czechia;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;695;1;2.6484555358154796e-06;10400933;6.682092846862872e-05;0;1;Old +4205;Czechia;F;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;0;1;Old +4206;Czechia;F;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4207;Czechia;F;Not stated;Education   ;Y15-29;416;1;1.5852625940996252e-06;10400933;3.9996411860359065e-05;1;0;Young +4208;Czechia;F;Not stated;Education   ;Y30-49;1807;1;6.885984393120247e-06;10400933;0.0001737344140184347;1;0;Young +4209;Czechia;F;Not stated;Education   ;Y50-64;1161;1;4.424254499398233e-06;10400933;0.00011162460136989633;0;1;Old +4210;Czechia;F;Not stated;Education   ;Y65-84;180;1;6.859309301392609e-07;10400933;1.730613974727075e-05;0;1;Old +4211;Czechia;F;Not stated;Education   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4212;Czechia;F;Not stated;Human health and social work activities   ;Y15-29;577;1;2.1987897038352974e-06;10400933;5.547579241208457e-05;1;0;Young +4213;Czechia;F;Not stated;Human health and social work activities   ;Y30-49;2031;1;7.739587328404661e-06;10400933;0.00019527094348170495;1;0;Young +4214;Czechia;F;Not stated;Human health and social work activities   ;Y50-64;1507;1;5.742766176221478e-06;10400933;0.00014489084777298344;0;1;Old +4215;Czechia;F;Not stated;Human health and social work activities   ;Y65-84;206;1;7.850098422704875e-07;10400933;1.980591548854319e-05;0;1;Old +4216;Czechia;F;Not stated;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4217;Czechia;F;Not stated;Arts, entertainment and recreation   ;Y15-29;272;1;1.0365178499882164e-06;10400933;2.6151500062542465e-05;1;0;Young +4218;Czechia;F;Not stated;Arts, entertainment and recreation   ;Y30-49;602;1;2.2940578885768615e-06;10400933;5.787942293253884e-05;1;0;Young +4219;Czechia;F;Not stated;Arts, entertainment and recreation   ;Y50-64;326;1;1.2422971290299947e-06;10400933;3.134334198672369e-05;0;1;Old +4220;Czechia;F;Not stated;Arts, entertainment and recreation   ;Y65-84;92;1;3.5058691984895557e-07;10400933;8.845360315271717e-06;0;1;Old +4221;Czechia;F;Not stated;Other service activities   ;Y15-29;554;1;2.1111429738730584e-06;10400933;5.326445233326664e-05;1;0;Young +4222;Czechia;F;Not stated;Other service activities   ;Y30-49;1724;1;6.569694019778254e-06;10400933;0.00016575436069052652;1;0;Young +4223;Czechia;F;Not stated;Other service activities   ;Y50-64;793;1;3.0219068200024106e-06;10400933;7.624316010880947e-05;0;1;Old +4224;Czechia;F;Not stated;Other service activities   ;Y65-84;105;1;4.0012637591456885e-07;10400933;1.0095248185907937e-05;0;1;Old +4225;Czechia;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;62;1;2.3626509815907876e-07;10400933;5.9610036907265914e-06;1;0;Young +4226;Czechia;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;178;1;6.783094753599357e-07;10400933;1.7113849305634406e-05;1;0;Young +4227;Czechia;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;74;1;2.819938268350295e-07;10400933;7.114746340544641e-06;0;1;Old +4228;Czechia;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;0;1;Old +4229;Czechia;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +4230;Czechia;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;1;0;Young +4231;Czechia;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4232;Czechia;F;Not stated;Not stated   ;Y15-29;56167;1;0.00021403712529517705;10400933;0.005400188617694201;1;0;Young +4233;Czechia;F;Not stated;Not stated   ;Y30-49;85111;1;0.0003243348188615702;10400933;0.008183015889055338;1;0;Young +4234;Czechia;F;Not stated;Not stated   ;Y50-64;44216;1;0.00016849512226131978;10400933;0.004251157083696241;0;1;Old +4235;Czechia;F;Not stated;Not stated   ;Y65-84;8016;1;3.054679075553508e-05;10400933;0.0007707000900784574;0;1;Old +4236;Czechia;F;Not stated;Not stated   ;Y_GE85;214;1;8.15495661387788e-07;10400933;2.057507725508856e-05;0;1;Old +4237;Czechia;M;Not applicable;Not applicable  ;Y15-29;478849;1;0.0018247629998125274;10400933;0.046039042843560286;1;0;Young +4238;Czechia;M;Not applicable;Not applicable  ;Y30-49;203944;1;0.0007771749867573413;10400933;0.019608240914541032;1;0;Young +4239;Czechia;M;Not applicable;Not applicable  ;Y50-64;336583;1;0.0012826260569947937;10400933;0.03236084685864239;0;1;Old +4240;Czechia;M;Not applicable;Not applicable  ;Y65-84;561783;1;0.002140801865146802;10400933;0.05401275058689446;0;1;Old +4241;Czechia;M;Not applicable;Not applicable  ;Y_GE85;42312;1;0.00016123949731140227;10400933;0.004068096583258444;0;1;Old +4242;Czechia;M;Not applicable;Not applicable  ;Y_LT15;763949;1;0.0029112013786053233;10400933;0.07345004529882079;0;1;Old +4243;Czechia;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4244;Czechia;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +4245;Czechia;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4246;Czechia;M;Armed forces occupations;Manufacturing   ;Y15-29;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;1;0;Young +4247;Czechia;M;Armed forces occupations;Manufacturing   ;Y30-49;25;1;9.526818474156401e-08;10400933;2.403630520454271e-06;1;0;Young +4248;Czechia;M;Armed forces occupations;Manufacturing   ;Y50-64;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4249;Czechia;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4250;Czechia;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4251;Czechia;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4252;Czechia;M;Armed forces occupations;Construction   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4253;Czechia;M;Armed forces occupations;Construction   ;Y30-49;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +4254;Czechia;M;Armed forces occupations;Construction   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4255;Czechia;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4256;Czechia;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +4257;Czechia;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4258;Czechia;M;Armed forces occupations;Transportation and storage   ;Y15-29;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;1;0;Young +4259;Czechia;M;Armed forces occupations;Transportation and storage   ;Y30-49;132;1;5.03016015435458e-07;10400933;1.269116914799855e-05;1;0;Young +4260;Czechia;M;Armed forces occupations;Transportation and storage   ;Y50-64;51;1;1.943470968727906e-07;10400933;4.903406261726712e-06;0;1;Old +4261;Czechia;M;Armed forces occupations;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4262;Czechia;M;Armed forces occupations;Accommodation and food service activities   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4263;Czechia;M;Armed forces occupations;Accommodation and food service activities   ;Y30-49;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +4264;Czechia;M;Armed forces occupations;Information and communication   ;Y15-29;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;1;0;Young +4265;Czechia;M;Armed forces occupations;Information and communication   ;Y30-49;18;1;6.859309301392609e-08;10400933;1.730613974727075e-06;1;0;Young +4266;Czechia;M;Armed forces occupations;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4267;Czechia;M;Armed forces occupations;Financial and insurance activities   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4268;Czechia;M;Armed forces occupations;Financial and insurance activities   ;Y30-49;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +4269;Czechia;M;Armed forces occupations;Real estate activities   ;Y30-49;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4270;Czechia;M;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;1;0;Young +4271;Czechia;M;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;1;0;Young +4272;Czechia;M;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4273;Czechia;M;Armed forces occupations;Administrative and support service activities   ;Y15-29;32;1;1.2194327646920193e-07;10400933;3.076647066181467e-06;1;0;Young +4274;Czechia;M;Armed forces occupations;Administrative and support service activities   ;Y30-49;53;1;2.019685516521157e-07;10400933;5.095696703363054e-06;1;0;Young +4275;Czechia;M;Armed forces occupations;Administrative and support service activities   ;Y50-64;18;1;6.859309301392609e-08;10400933;1.730613974727075e-06;0;1;Old +4276;Czechia;M;Armed forces occupations;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4277;Czechia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;4177;1;1.5917408306620516e-05;10400933;0.0004015985873574996;1;0;Young +4278;Czechia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;9050;1;3.4487082876446174e-05;10400933;0.0008701142484044461;1;0;Young +4279;Czechia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;449;1;1.7110165979584897e-06;10400933;4.3169204147358706e-05;0;1;Old +4280;Czechia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4281;Czechia;M;Armed forces occupations;Education   ;Y15-29;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;1;0;Young +4282;Czechia;M;Armed forces occupations;Education   ;Y30-49;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;1;0;Young +4283;Czechia;M;Armed forces occupations;Education   ;Y50-64;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4284;Czechia;M;Armed forces occupations;Human health and social work activities   ;Y15-29;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;1;0;Young +4285;Czechia;M;Armed forces occupations;Human health and social work activities   ;Y30-49;25;1;9.526818474156401e-08;10400933;2.403630520454271e-06;1;0;Young +4286;Czechia;M;Armed forces occupations;Human health and social work activities   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4287;Czechia;M;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;1;0;Young +4288;Czechia;M;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;1;0;Young +4289;Czechia;M;Armed forces occupations;Other service activities   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4290;Czechia;M;Armed forces occupations;Other service activities   ;Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4291;Czechia;M;Armed forces occupations;Other service activities   ;Y50-64;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4292;Czechia;M;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4293;Czechia;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +4294;Czechia;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4295;Czechia;M;Armed forces occupations;Not stated   ;Y15-29;332;1;1.2651614933679701e-06;10400933;3.1920213311632714e-05;1;0;Young +4296;Czechia;M;Armed forces occupations;Not stated   ;Y30-49;576;1;2.1949789764456348e-06;10400933;5.53796471912664e-05;1;0;Young +4297;Czechia;M;Armed forces occupations;Not stated   ;Y50-64;29;1;1.1051109430021426e-07;10400933;2.788211403726954e-06;0;1;Old +4298;Czechia;M;Armed forces occupations;Not stated   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4299;Czechia;M;Managers;Agriculture, forestry and fishing   ;Y15-29;249;1;9.488711200259775e-07;10400933;2.394015998372454e-05;1;0;Young +4300;Czechia;M;Managers;Agriculture, forestry and fishing   ;Y30-49;2358;1;8.985695184824318e-06;10400933;0.00022671043068924683;1;0;Young +4301;Czechia;M;Managers;Agriculture, forestry and fishing   ;Y50-64;2241;1;8.539840080233799e-06;10400933;0.00021546143985352084;0;1;Old +4302;Czechia;M;Managers;Agriculture, forestry and fishing   ;Y65-84;199;1;7.583347505428495e-07;10400933;1.9132898942815994e-05;0;1;Old +4303;Czechia;M;Managers;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4304;Czechia;M;Managers;Mining and quarrying   ;Y15-29;44;1;1.6767200514515266e-07;10400933;4.230389715999517e-06;1;0;Young +4305;Czechia;M;Managers;Mining and quarrying   ;Y30-49;579;1;2.2064111586146226e-06;10400933;5.566808285372091e-05;1;0;Young +4306;Czechia;M;Managers;Mining and quarrying   ;Y50-64;540;1;2.057792790417783e-06;10400933;5.1918419241812246e-05;0;1;Old +4307;Czechia;M;Managers;Mining and quarrying   ;Y65-84;35;1;1.3337545863818962e-07;10400933;3.3650827286359792e-06;0;1;Old +4308;Czechia;M;Managers;Manufacturing   ;Y15-29;3312;1;1.26211291145624e-05;10400933;0.0003184329713497818;1;0;Young +4309;Czechia;M;Managers;Manufacturing   ;Y30-49;29894;1;0.00011391788458657258;10400933;0.002874165231138399;1;0;Young +4310;Czechia;M;Managers;Manufacturing   ;Y50-64;14189;1;5.407041093192207e-05;10400933;0.0013642045381890258;0;1;Old +4311;Czechia;M;Managers;Manufacturing   ;Y65-84;917;1;3.494437016320568e-06;10400933;8.816516749026265e-05;0;1;Old +4312;Czechia;M;Managers;Manufacturing   ;Y_GE85;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +4313;Czechia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;97;1;3.6964055679726836e-07;10400933;9.32608641936257e-06;1;0;Young +4314;Czechia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1809;1;6.893605847899572e-06;10400933;0.00017392670446007103;1;0;Young +4315;Czechia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1109;1;4.226096675135779e-06;10400933;0.00010662504988735146;0;1;Old +4316;Czechia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;48;1;1.829149147038029e-07;10400933;4.6149705992722e-06;0;1;Old +4317;Czechia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4318;Czechia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;109;1;4.153692854732191e-07;10400933;1.047982906918062e-05;1;0;Young +4319;Czechia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1505;1;5.735144721442154e-06;10400933;0.0001446985573313471;1;0;Young +4320;Czechia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;952;1;3.627812474958758e-06;10400933;9.153025021889863e-05;0;1;Old +4321;Czechia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;54;1;2.0577927904177827e-07;10400933;5.191841924181225e-06;0;1;Old +4322;Czechia;M;Managers;Construction   ;Y15-29;2372;1;9.039045368279594e-06;10400933;0.0002280564637807012;1;0;Young +4323;Czechia;M;Managers;Construction   ;Y30-49;14521;1;5.533557242529004e-05;10400933;0.0013961247515006587;1;0;Young +4324;Czechia;M;Managers;Construction   ;Y50-64;7143;1;2.722002574435967e-05;10400933;0.0006867653123041942;0;1;Old +4325;Czechia;M;Managers;Construction   ;Y65-84;428;1;1.630991322775576e-06;10400933;4.115015451017712e-05;0;1;Old +4326;Czechia;M;Managers;Construction   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4327;Czechia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2778;1;1.0586200688482593e-05;10400933;0.00026709142343287856;1;0;Young +4328;Czechia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;18401;1;7.012119469718078e-05;10400933;0.0017691682082751614;1;0;Young +4329;Czechia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;6273;1;2.3904692915353242e-05;10400933;0.0006031189701923857;0;1;Old +4330;Czechia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;383;1;1.4595085902407606e-06;10400933;3.682361957335943e-05;0;1;Old +4331;Czechia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4332;Czechia;M;Managers;Transportation and storage   ;Y15-29;522;1;1.9891996974038564e-06;10400933;5.0187805267085177e-05;1;0;Young +4333;Czechia;M;Managers;Transportation and storage   ;Y30-49;4553;1;1.7350241805133637e-05;10400933;0.0004377491903851318;1;0;Young +4334;Czechia;M;Managers;Transportation and storage   ;Y50-64;2316;1;8.82564463445849e-06;10400933;0.00022267233141488364;0;1;Old +4335;Czechia;M;Managers;Transportation and storage   ;Y65-84;83;1;3.1629037334199253e-07;10400933;7.980053327908178e-06;0;1;Old +4336;Czechia;M;Managers;Accommodation and food service activities   ;Y15-29;916;1;3.4906262889309055e-06;10400933;8.806902226944448e-05;1;0;Young +4337;Czechia;M;Managers;Accommodation and food service activities   ;Y30-49;3735;1;1.4233066800389663e-05;10400933;0.00035910239975586803;1;0;Young +4338;Czechia;M;Managers;Accommodation and food service activities   ;Y50-64;1524;1;5.807548541845743e-06;10400933;0.00014652531652689234;0;1;Old +4339;Czechia;M;Managers;Accommodation and food service activities   ;Y65-84;117;1;4.458551045905196e-07;10400933;1.1248990835725987e-05;0;1;Old +4340;Czechia;M;Managers;Accommodation and food service activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4341;Czechia;M;Managers;Information and communication   ;Y15-29;1258;1;4.793895056195501e-06;10400933;0.00012095068778925891;1;0;Young +4342;Czechia;M;Managers;Information and communication   ;Y30-49;7397;1;2.818795050133396e-05;10400933;0.0007111861983920097;1;0;Young +4343;Czechia;M;Managers;Information and communication   ;Y50-64;1692;1;6.447750743309053e-06;10400933;0.00016267771362434504;0;1;Old +4344;Czechia;M;Managers;Information and communication   ;Y65-84;111;1;4.2299074025254424e-07;10400933;1.0672119510816962e-05;0;1;Old +4345;Czechia;M;Managers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4346;Czechia;M;Managers;Financial and insurance activities   ;Y15-29;607;1;2.313111525525174e-06;10400933;5.8360149036629694e-05;1;0;Young +4347;Czechia;M;Managers;Financial and insurance activities   ;Y30-49;4259;1;1.6229887952572846e-05;10400933;0.00040948249546458957;1;0;Young +4348;Czechia;M;Managers;Financial and insurance activities   ;Y50-64;957;1;3.6468661119070704e-06;10400933;9.201097632298949e-05;0;1;Old +4349;Czechia;M;Managers;Financial and insurance activities   ;Y65-84;40;1;1.5242909558650242e-07;10400933;3.845808832726833e-06;0;1;Old +4350;Czechia;M;Managers;Real estate activities   ;Y15-29;185;1;7.049845670875737e-07;10400933;1.7786865851361602e-05;1;0;Young +4351;Czechia;M;Managers;Real estate activities   ;Y30-49;1683;1;6.413454196802089e-06;10400933;0.00016181240663698152;1;0;Young +4352;Czechia;M;Managers;Real estate activities   ;Y50-64;954;1;3.6354339297380826e-06;10400933;9.172254066053498e-05;0;1;Old +4353;Czechia;M;Managers;Real estate activities   ;Y65-84;140;1;5.335018345527585e-07;10400933;1.3460330914543917e-05;0;1;Old +4354;Czechia;M;Managers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4355;Czechia;M;Managers;Professional, scientific and technical activities   ;Y15-29;707;1;2.6941842644914304e-06;10400933;6.797467111844678e-05;1;0;Young +4356;Czechia;M;Managers;Professional, scientific and technical activities   ;Y30-49;4839;1;1.844010983857713e-05;10400933;0.0004652467235391287;1;0;Young +4357;Czechia;M;Managers;Professional, scientific and technical activities   ;Y50-64;1970;1;7.507132957635244e-06;10400933;0.00018940608501179655;0;1;Old +4358;Czechia;M;Managers;Professional, scientific and technical activities   ;Y65-84;221;1;8.421707531154259e-07;10400933;2.1248093800815755e-05;0;1;Old +4359;Czechia;M;Managers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4360;Czechia;M;Managers;Administrative and support service activities   ;Y15-29;484;1;1.8443920565966793e-06;10400933;4.6534286875994685e-05;1;0;Young +4361;Czechia;M;Managers;Administrative and support service activities   ;Y30-49;2551;1;9.721165571029191e-06;10400933;0.0002452664583071538;1;0;Young +4362;Czechia;M;Managers;Administrative and support service activities   ;Y50-64;1164;1;4.435686681567221e-06;10400933;0.00011191303703235084;0;1;Old +4363;Czechia;M;Managers;Administrative and support service activities   ;Y65-84;112;1;4.268014676422068e-07;10400933;1.0768264731635133e-05;0;1;Old +4364;Czechia;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;369;1;1.4061584067854849e-06;10400933;3.547758648190504e-05;1;0;Young +4365;Czechia;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;5249;1;2.000250806833878e-05;10400933;0.0005046662640745787;1;0;Young +4366;Czechia;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;4564;1;1.7392159806419927e-05;10400933;0.00043880678781413167;0;1;Old +4367;Czechia;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;237;1;9.031423913500269e-07;10400933;2.2786417333906485e-05;0;1;Old +4368;Czechia;M;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4369;Czechia;M;Managers;Education   ;Y15-29;174;1;6.630665658012855e-07;10400933;1.6729268422361726e-05;1;0;Young +4370;Czechia;M;Managers;Education   ;Y30-49;2632;1;1.002983448959186e-05;10400933;0.0002530542211934256;1;0;Young +4371;Czechia;M;Managers;Education   ;Y50-64;2916;1;1.1112081068256027e-05;10400933;0.0002803594639057861;0;1;Old +4372;Czechia;M;Managers;Education   ;Y65-84;209;1;7.964420244394752e-07;10400933;2.0094351150997705e-05;0;1;Old +4373;Czechia;M;Managers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4374;Czechia;M;Managers;Human health and social work activities   ;Y15-29;144;1;5.487447441114087e-07;10400933;1.38449117978166e-05;1;0;Young +4375;Czechia;M;Managers;Human health and social work activities   ;Y30-49;1772;1;6.752608934482057e-06;10400933;0.0001703693312897987;1;0;Young +4376;Czechia;M;Managers;Human health and social work activities   ;Y50-64;1366;1;5.205453614279058e-06;10400933;0.00013133437163762135;0;1;Old +4377;Czechia;M;Managers;Human health and social work activities   ;Y65-84;122;1;4.6490874153883237e-07;10400933;1.172971693981684e-05;0;1;Old +4378;Czechia;M;Managers;Arts, entertainment and recreation   ;Y15-29;293;1;1.1165431251711302e-06;10400933;2.8170549699724053e-05;1;0;Young +4379;Czechia;M;Managers;Arts, entertainment and recreation   ;Y30-49;1810;1;6.8974165752892345e-06;10400933;0.0001740228496808892;1;0;Young +4380;Czechia;M;Managers;Arts, entertainment and recreation   ;Y50-64;870;1;3.3153328290064275e-06;10400933;8.364634211180863e-05;0;1;Old +4381;Czechia;M;Managers;Arts, entertainment and recreation   ;Y65-84;95;1;3.6201910201794326e-07;10400933;9.13379597772623e-06;0;1;Old +4382;Czechia;M;Managers;Other service activities   ;Y15-29;217;1;8.269278435567757e-07;10400933;2.086351291754307e-05;1;0;Young +4383;Czechia;M;Managers;Other service activities   ;Y30-49;1123;1;4.279446858591056e-06;10400933;0.00010797108297880585;1;0;Young +4384;Czechia;M;Managers;Other service activities   ;Y50-64;725;1;2.7627773575053563e-06;10400933;6.970528509317385e-05;0;1;Old +4385;Czechia;M;Managers;Other service activities   ;Y65-84;91;1;3.46776192459293e-07;10400933;8.749215094453545e-06;0;1;Old +4386;Czechia;M;Managers;Other service activities   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4387;Czechia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4388;Czechia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;1;0;Young +4389;Czechia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4390;Czechia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4391;Czechia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4392;Czechia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +4393;Czechia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;23;1;8.764672996223889e-08;10400933;2.211340078817929e-06;1;0;Young +4394;Czechia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;0;1;Old +4395;Czechia;M;Managers;Not stated   ;Y15-29;437;1;1.665287869282539e-06;10400933;4.201546149754065e-05;1;0;Young +4396;Czechia;M;Managers;Not stated   ;Y30-49;2159;1;8.227360434281469e-06;10400933;0.00020757753174643082;1;0;Young +4397;Czechia;M;Managers;Not stated   ;Y50-64;998;1;3.8031059348832353e-06;10400933;9.595293037653449e-05;0;1;Old +4398;Czechia;M;Managers;Not stated   ;Y65-84;119;1;4.5347655936984473e-07;10400933;1.1441281277362329e-05;0;1;Old +4399;Czechia;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;424;1;1.6157484132169256e-06;10400933;4.0765573626904433e-05;1;0;Young +4400;Czechia;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;1731;1;6.5963691115058925e-06;10400933;0.0001664273772362537;1;0;Young +4401;Czechia;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;1158;1;4.412822317229245e-06;10400933;0.00011133616570744182;0;1;Old +4402;Czechia;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;175;1;6.668772931909481e-07;10400933;1.6825413643179895e-05;0;1;Old +4403;Czechia;M;Professionals;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4404;Czechia;M;Professionals;Mining and quarrying   ;Y15-29;96;1;3.658298294076058e-07;10400933;9.2299411985444e-06;1;0;Young +4405;Czechia;M;Professionals;Mining and quarrying   ;Y30-49;479;1;1.8253384196483665e-06;10400933;4.605356077190383e-05;1;0;Young +4406;Czechia;M;Professionals;Mining and quarrying   ;Y50-64;278;1;1.0593822143261918e-06;10400933;2.672837138745149e-05;0;1;Old +4407;Czechia;M;Professionals;Mining and quarrying   ;Y65-84;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;0;1;Old +4408;Czechia;M;Professionals;Manufacturing   ;Y15-29;8436;1;3.214729625919336e-05;10400933;0.0008110810828220891;1;0;Young +4409;Czechia;M;Professionals;Manufacturing   ;Y30-49;21163;1;8.064642374742877e-05;10400933;0.0020347213081749493;1;0;Young +4410;Czechia;M;Professionals;Manufacturing   ;Y50-64;6773;1;2.5810056610184522e-05;10400933;0.0006511915806014711;0;1;Old +4411;Czechia;M;Professionals;Manufacturing   ;Y65-84;677;1;2.5798624428015536e-06;10400933;6.509031449390165e-05;0;1;Old +4412;Czechia;M;Professionals;Manufacturing   ;Y_GE85;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4413;Czechia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;510;1;1.943470968727906e-06;10400933;4.9034062617267123e-05;1;0;Young +4414;Czechia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1518;1;5.784684177507767e-06;10400933;0.00014594844520198332;1;0;Young +4415;Czechia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;764;1;2.911395725702196e-06;10400933;7.345494870508252e-05;0;1;Old +4416;Czechia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;84;1;3.201011007316551e-07;10400933;8.07619854872635e-06;0;1;Old +4417;Czechia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;156;1;5.944734727873595e-07;10400933;1.499865444763465e-05;1;0;Young +4418;Czechia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;554;1;2.1111429738730584e-06;10400933;5.326445233326664e-05;1;0;Young +4419;Czechia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;274;1;1.0441393047675416e-06;10400933;2.6343790504178807e-05;0;1;Old +4420;Czechia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;57;1;2.1721146121076594e-07;10400933;5.480277586635738e-06;0;1;Old +4421;Czechia;M;Professionals;Construction   ;Y15-29;2985;1;1.1375021258142743e-05;10400933;0.00028699348414223995;1;0;Young +4422;Czechia;M;Professionals;Construction   ;Y30-49;6832;1;2.6034889526174614e-05;10400933;0.0006568641486297431;1;0;Young +4423;Czechia;M;Professionals;Construction   ;Y50-64;3363;1;1.2815476211435191e-05;10400933;0.0003233363776115085;0;1;Old +4424;Czechia;M;Professionals;Construction   ;Y65-84;704;1;2.6827520823224426e-06;10400933;6.768623545599227e-05;0;1;Old +4425;Czechia;M;Professionals;Construction   ;Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4426;Czechia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2062;1;7.8577198774842e-06;10400933;0.00019825144532706825;1;0;Young +4427;Czechia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5694;1;2.169828175673862e-05;10400933;0.0005474508873386647;1;0;Young +4428;Czechia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1064;1;4.054613942600964e-06;10400933;0.00010229851495053377;0;1;Old +4429;Czechia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;82;1;3.1247964595233e-07;10400933;7.883908107090009e-06;0;1;Old +4430;Czechia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4431;Czechia;M;Professionals;Transportation and storage   ;Y15-29;650;1;2.4769728032806642e-06;10400933;6.249439353181104e-05;1;0;Young +4432;Czechia;M;Professionals;Transportation and storage   ;Y30-49;2006;1;7.644319143663096e-06;10400933;0.0001928673129612507;1;0;Young +4433;Czechia;M;Professionals;Transportation and storage   ;Y50-64;877;1;3.3420079207340657e-06;10400933;8.431935865753582e-05;0;1;Old +4434;Czechia;M;Professionals;Transportation and storage   ;Y65-84;50;1;1.9053636948312803e-07;10400933;4.807261040908542e-06;0;1;Old +4435;Czechia;M;Professionals;Accommodation and food service activities   ;Y15-29;144;1;5.487447441114087e-07;10400933;1.38449117978166e-05;1;0;Young +4436;Czechia;M;Professionals;Accommodation and food service activities   ;Y30-49;242;1;9.221960282983396e-07;10400933;2.3267143437997343e-05;1;0;Young +4437;Czechia;M;Professionals;Accommodation and food service activities   ;Y50-64;73;1;2.7818309944536694e-07;10400933;7.018601119726471e-06;0;1;Old +4438;Czechia;M;Professionals;Accommodation and food service activities   ;Y65-84;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +4439;Czechia;M;Professionals;Information and communication   ;Y15-29;17672;1;6.734317443011678e-05;10400933;0.001699078342298715;1;0;Young +4440;Czechia;M;Professionals;Information and communication   ;Y30-49;30782;1;0.00011730181050859293;10400933;0.0029595421872249347;1;0;Young +4441;Czechia;M;Professionals;Information and communication   ;Y50-64;5340;1;2.0349284260798075e-05;10400933;0.0005134154791690323;0;1;Old +4442;Czechia;M;Professionals;Information and communication   ;Y65-84;407;1;1.5509660475926622e-06;10400933;3.913110487299553e-05;0;1;Old +4443;Czechia;M;Professionals;Information and communication   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4444;Czechia;M;Professionals;Financial and insurance activities   ;Y15-29;5208;1;1.9846268245362615e-05;10400933;0.0005007243100210337;1;0;Young +4445;Czechia;M;Professionals;Financial and insurance activities   ;Y30-49;10662;1;4.062997542858222e-05;10400933;0.0010251003443633375;1;0;Young +4446;Czechia;M;Professionals;Financial and insurance activities   ;Y50-64;2636;1;1.0045077399150509e-05;10400933;0.00025343880207669833;0;1;Old +4447;Czechia;M;Professionals;Financial and insurance activities   ;Y65-84;201;1;7.659562053221747e-07;10400933;1.9325189384452336e-05;0;1;Old +4448;Czechia;M;Professionals;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4449;Czechia;M;Professionals;Real estate activities   ;Y15-29;148;1;5.63987653670059e-07;10400933;1.4229492681089282e-05;1;0;Young +4450;Czechia;M;Professionals;Real estate activities   ;Y30-49;597;1;2.2750042516285485e-06;10400933;5.7398696828447986e-05;1;0;Young +4451;Czechia;M;Professionals;Real estate activities   ;Y50-64;310;1;1.1813254907953937e-06;10400933;2.9805018453632956e-05;0;1;Old +4452;Czechia;M;Professionals;Real estate activities   ;Y65-84;116;1;4.4204437720085703e-07;10400933;1.1152845614907816e-05;0;1;Old +4453;Czechia;M;Professionals;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4454;Czechia;M;Professionals;Professional, scientific and technical activities   ;Y15-29;11617;1;4.4269220085709964e-05;10400933;0.0011169190302446905;1;0;Young +4455;Czechia;M;Professionals;Professional, scientific and technical activities   ;Y30-49;26825;1;0.0001022227622276982;10400933;0.0025790955484474324;1;0;Young +4456;Czechia;M;Professionals;Professional, scientific and technical activities   ;Y50-64;11460;1;4.3670935885532944e-05;10400933;0.0011018242305762377;0;1;Old +4457;Czechia;M;Professionals;Professional, scientific and technical activities   ;Y65-84;3160;1;1.2041898551333691e-05;10400933;0.0003038188977854198;0;1;Old +4458;Czechia;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;41;1;1.56239822976165e-07;10400933;3.9419540535450045e-06;0;1;Old +4459;Czechia;M;Professionals;Administrative and support service activities   ;Y15-29;788;1;3.0028531830540976e-06;10400933;7.576243400471862e-05;1;0;Young +4460;Czechia;M;Professionals;Administrative and support service activities   ;Y30-49;1393;1;5.308343253799947e-06;10400933;0.00013393029259971197;1;0;Young +4461;Czechia;M;Professionals;Administrative and support service activities   ;Y50-64;381;1;1.4518871354614356e-06;10400933;3.6631329131723085e-05;0;1;Old +4462;Czechia;M;Professionals;Administrative and support service activities   ;Y65-84;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;0;1;Old +4463;Czechia;M;Professionals;Administrative and support service activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4464;Czechia;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;1592;1;6.066678004342796e-06;10400933;0.00015306319154252795;1;0;Young +4465;Czechia;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;7290;1;2.7780202670640065e-05;10400933;0.0007008986597644653;1;0;Young +4466;Czechia;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;3868;1;1.4739893543214784e-05;10400933;0.00037188971412468476;0;1;Old +4467;Czechia;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;307;1;1.1698933086264062e-06;10400933;2.9516582791178445e-05;0;1;Old +4468;Czechia;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4469;Czechia;M;Professionals;Education   ;Y15-29;5780;1;2.20260043122496e-05;10400933;0.0005557193763290274;1;0;Young +4470;Czechia;M;Professionals;Education   ;Y30-49;21870;1;8.33406080119202e-05;10400933;0.0021026959792933963;1;0;Young +4471;Czechia;M;Professionals;Education   ;Y50-64;15254;1;5.81288356019127e-05;10400933;0.0014665991983603779;0;1;Old +4472;Czechia;M;Professionals;Education   ;Y65-84;3698;1;1.4092069886972149e-05;10400933;0.00035554502658559573;0;1;Old +4473;Czechia;M;Professionals;Education   ;Y_GE85;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +4474;Czechia;M;Professionals;Human health and social work activities   ;Y15-29;3114;1;1.1866605091409213e-05;10400933;0.00029939621762778396;1;0;Young +4475;Czechia;M;Professionals;Human health and social work activities   ;Y30-49;11836;1;4.510376938404607e-05;10400933;0.0011379748336038699;1;0;Young +4476;Czechia;M;Professionals;Human health and social work activities   ;Y50-64;8532;1;3.2513126088600964e-05;10400933;0.0008203110240206336;0;1;Old +4477;Czechia;M;Professionals;Human health and social work activities   ;Y65-84;1816;1;6.92028093962721e-06;10400933;0.00017459972100579822;0;1;Old +4478;Czechia;M;Professionals;Human health and social work activities   ;Y_GE85;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;0;1;Old +4479;Czechia;M;Professionals;Arts, entertainment and recreation   ;Y15-29;1968;1;7.4995115028559195e-06;10400933;0.0001892137945701602;1;0;Young +4480;Czechia;M;Professionals;Arts, entertainment and recreation   ;Y30-49;5666;1;2.159158138982807e-05;10400933;0.0005447588211557559;1;0;Young +4481;Czechia;M;Professionals;Arts, entertainment and recreation   ;Y50-64;2671;1;1.01784528577887e-05;10400933;0.0002568038848053343;0;1;Old +4482;Czechia;M;Professionals;Arts, entertainment and recreation   ;Y65-84;573;1;2.1835467942766474e-06;10400933;5.509121152881189e-05;0;1;Old +4483;Czechia;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;27;1;1.0288963952088914e-07;10400933;2.5959209620906126e-06;0;1;Old +4484;Czechia;M;Professionals;Other service activities   ;Y15-29;581;1;2.2140326133939478e-06;10400933;5.5860373295357256e-05;1;0;Young +4485;Czechia;M;Professionals;Other service activities   ;Y30-49;2346;1;8.939966456148367e-06;10400933;0.00022555668803942878;1;0;Young +4486;Czechia;M;Professionals;Other service activities   ;Y50-64;1018;1;3.879320482676487e-06;10400933;9.78758347928979e-05;0;1;Old +4487;Czechia;M;Professionals;Other service activities   ;Y65-84;298;1;1.135596762119443e-06;10400933;2.8651275803814907e-05;0;1;Old +4488;Czechia;M;Professionals;Other service activities   ;Y_GE85;21;1;8.002527518291377e-08;10400933;2.0190496371815874e-06;0;1;Old +4489;Czechia;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;1;0;Young +4490;Czechia;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4491;Czechia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;1;0;Young +4492;Czechia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;57;1;2.1721146121076594e-07;10400933;5.480277586635738e-06;1;0;Young +4493;Czechia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;14;1;5.335018345527585e-08;10400933;1.3460330914543917e-06;0;1;Old +4494;Czechia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4495;Czechia;M;Professionals;Not stated   ;Y15-29;1428;1;5.441718712438136e-06;10400933;0.00013729537532834794;1;0;Young +4496;Czechia;M;Professionals;Not stated   ;Y30-49;3102;1;1.1820876362733262e-05;10400933;0.0002982424749779659;1;0;Young +4497;Czechia;M;Professionals;Not stated   ;Y50-64;1858;1;7.080331489993038e-06;10400933;0.0001786378202801614;0;1;Old +4498;Czechia;M;Professionals;Not stated   ;Y65-84;685;1;2.610348261918854e-06;10400933;6.585947626044702e-05;0;1;Old +4499;Czechia;M;Professionals;Not stated   ;Y_GE85;23;1;8.764672996223889e-08;10400933;2.211340078817929e-06;0;1;Old +4500;Czechia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;1118;1;4.260393221642743e-06;10400933;0.00010749035687471499;1;0;Young +4501;Czechia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;4864;1;1.8535378023318694e-05;10400933;0.00046765035405958293;1;0;Young +4502;Czechia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;4508;1;1.717875907259882e-05;10400933;0.0004334226554483141;0;1;Old +4503;Czechia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;269;1;1.0250856678192288e-06;10400933;2.5863064400087954e-05;0;1;Old +4504;Czechia;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;284;1;1.0822465786641672e-06;10400933;2.7305242712360515e-05;1;0;Young +4505;Czechia;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2368;1;9.023802458720944e-06;10400933;0.00022767188289742852;1;0;Young +4506;Czechia;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;1614;1;6.150514006915372e-06;10400933;0.00015517838640052771;0;1;Old +4507;Czechia;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;61;1;2.3245437076941619e-07;10400933;5.86485846990842e-06;0;1;Old +4508;Czechia;M;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4509;Czechia;M;Technicians and associate professionals;Manufacturing   ;Y15-29;22768;1;8.676264120783717e-05;10400933;0.0021890343875881134;1;0;Young +4510;Czechia;M;Technicians and associate professionals;Manufacturing   ;Y30-49;63019;1;0.0002401482293691449;10400933;0.006058975670740307;1;0;Young +4511;Czechia;M;Technicians and associate professionals;Manufacturing   ;Y50-64;29424;1;0.00011212684271343119;10400933;0.0028289769773538584;0;1;Old +4512;Czechia;M;Technicians and associate professionals;Manufacturing   ;Y65-84;1738;1;6.62304420323353e-06;10400933;0.0001671003937819809;0;1;Old +4513;Czechia;M;Technicians and associate professionals;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4514;Czechia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;1057;1;4.027938850873327e-06;10400933;0.00010162549840480657;1;0;Young +4515;Czechia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;5829;1;2.2212729954343064e-05;10400933;0.0005604304921491178;1;0;Young +4516;Czechia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;3926;1;1.4960915731815213e-05;10400933;0.00037746613693213866;0;1;Old +4517;Czechia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;229;1;8.726565722327264e-07;10400933;2.201725556736112e-05;0;1;Old +4518;Czechia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;453;1;1.72625950751714e-06;10400933;4.355378503063139e-05;1;0;Young +4519;Czechia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2329;1;8.875184090524104e-06;10400933;0.00022392221928551988;1;0;Young +4520;Czechia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1508;1;5.746576903611141e-06;10400933;0.0001449869929938016;0;1;Old +4521;Czechia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;117;1;4.458551045905196e-07;10400933;1.1248990835725987e-05;0;1;Old +4522;Czechia;M;Technicians and associate professionals;Construction   ;Y15-29;5265;1;2.006347970657338e-05;10400933;0.0005062045876076695;1;0;Young +4523;Czechia;M;Technicians and associate professionals;Construction   ;Y30-49;16112;1;6.139843970224317e-05;10400933;0.0015490917978223683;1;0;Young +4524;Czechia;M;Technicians and associate professionals;Construction   ;Y50-64;9017;1;3.436132887258731e-05;10400933;0.0008669414561174464;0;1;Old +4525;Czechia;M;Technicians and associate professionals;Construction   ;Y65-84;852;1;3.2467397359925016e-06;10400933;8.191572813708154e-05;0;1;Old +4526;Czechia;M;Technicians and associate professionals;Construction   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4527;Czechia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9545;1;3.637339293432914e-05;10400933;0.0009177061327094406;1;0;Young +4528;Czechia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;30152;1;0.00011490105225310553;10400933;0.0028989706981094867;1;0;Young +4529;Czechia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;10537;1;4.01536345048744e-05;10400933;0.001013082191761066;0;1;Old +4530;Czechia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;863;1;3.2886577372787897e-06;10400933;8.297332556608142e-05;0;1;Old +4531;Czechia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4532;Czechia;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;2076;1;7.911070060939476e-06;10400933;0.00019959747841852263;1;0;Young +4533;Czechia;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;6569;1;2.5032668222693362e-05;10400933;0.0006315779555545642;1;0;Young +4534;Czechia;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;3618;1;1.3787211695799144e-05;10400933;0.00034785340892014207;0;1;Old +4535;Czechia;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;168;1;6.402022014633102e-07;10400933;1.61523970974527e-05;0;1;Old +4536;Czechia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;517;1;1.970146060455544e-06;10400933;4.970707916299432e-05;1;0;Young +4537;Czechia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;1737;1;6.619233475843868e-06;10400933;0.00016700424856116273;1;0;Young +4538;Czechia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;582;1;2.2178433407836104e-06;10400933;5.595651851617542e-05;0;1;Old +4539;Czechia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;37;1;1.4099691341751475e-07;10400933;3.5573731702723206e-06;0;1;Old +4540;Czechia;M;Technicians and associate professionals;Information and communication   ;Y15-29;5710;1;2.175925339497322e-05;10400933;0.0005489892108717554;1;0;Young +4541;Czechia;M;Technicians and associate professionals;Information and communication   ;Y30-49;11775;1;4.487131501327665e-05;10400933;0.0011321099751339615;1;0;Young +4542;Czechia;M;Technicians and associate professionals;Information and communication   ;Y50-64;3436;1;1.3093659310880557e-05;10400933;0.000330354978731235;0;1;Old +4543;Czechia;M;Technicians and associate professionals;Information and communication   ;Y65-84;273;1;1.040328577377879e-06;10400933;2.6247645283360638e-05;0;1;Old +4544;Czechia;M;Technicians and associate professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4545;Czechia;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;3446;1;1.3131766584777183e-05;10400933;0.0003313164309394167;1;0;Young +4546;Czechia;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;7348;1;2.8001224859240496e-05;10400933;0.0007064750825719193;1;0;Young +4547;Czechia;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;3588;1;1.3672889874109268e-05;10400933;0.0003449690522955969;0;1;Old +4548;Czechia;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;365;1;1.3909154972268347e-06;10400933;3.5093005598632354e-05;0;1;Old +4549;Czechia;M;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4550;Czechia;M;Technicians and associate professionals;Real estate activities   ;Y15-29;1250;1;4.763409237078201e-06;10400933;0.00012018152602271354;1;0;Young +4551;Czechia;M;Technicians and associate professionals;Real estate activities   ;Y30-49;4516;1;1.7209244891716122e-05;10400933;0.0004341918172148595;1;0;Young +4552;Czechia;M;Technicians and associate professionals;Real estate activities   ;Y50-64;2467;1;9.401064470297536e-06;10400933;0.00023719025975842744;0;1;Old +4553;Czechia;M;Technicians and associate professionals;Real estate activities   ;Y65-84;373;1;1.421401316344135e-06;10400933;3.586216736517772e-05;0;1;Old +4554;Czechia;M;Technicians and associate professionals;Real estate activities   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4555;Czechia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;4172;1;1.58983546696722e-05;10400933;0.0004011178612534087;1;0;Young +4556;Czechia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;10237;1;3.901041628797563e-05;10400933;0.000984238625515615;1;0;Young +4557;Czechia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;5998;1;2.285674288319604e-05;10400933;0.0005766790344673887;0;1;Old +4558;Czechia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;1423;1;5.422665075489823e-06;10400933;0.00013681464922425709;0;1;Old +4559;Czechia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4560;Czechia;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2011;1;7.663372780611409e-06;10400933;0.00019334803906534154;1;0;Young +4561;Czechia;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;4868;1;1.8550620932877344e-05;10400933;0.0004680349349428556;1;0;Young +4562;Czechia;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;3305;1;1.2594454022834763e-05;10400933;0.0003177599548040546;0;1;Old +4563;Czechia;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;366;1;1.394726224616497e-06;10400933;3.518915081945053e-05;0;1;Old +4564;Czechia;M;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4565;Czechia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;3961;1;1.5094291190453402e-05;10400933;0.00038083121966077464;1;0;Young +4566;Czechia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;18971;1;7.229330930928844e-05;10400933;0.0018239709841415188;1;0;Young +4567;Czechia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;10960;1;4.1765572190701664e-05;10400933;0.0010537516201671523;0;1;Old +4568;Czechia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;493;1;1.8786886031036423e-06;10400933;4.739959386335822e-05;0;1;Old +4569;Czechia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4570;Czechia;M;Technicians and associate professionals;Education   ;Y15-29;527;1;2.0082533343521694e-06;10400933;5.066853137117603e-05;1;0;Young +4571;Czechia;M;Technicians and associate professionals;Education   ;Y30-49;1199;1;4.56906214020541e-06;10400933;0.00011527811976098683;1;0;Young +4572;Czechia;M;Technicians and associate professionals;Education   ;Y50-64;1064;1;4.054613942600964e-06;10400933;0.00010229851495053377;0;1;Old +4573;Czechia;M;Technicians and associate professionals;Education   ;Y65-84;256;1;9.755462117536154e-07;10400933;2.4613176529451734e-05;0;1;Old +4574;Czechia;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;1844;1;7.026981306537761e-06;10400933;0.000177291787188707;1;0;Young +4575;Czechia;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;4093;1;1.559730720588886e-05;10400933;0.0003935223888087732;1;0;Young +4576;Czechia;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2158;1;8.223549706891806e-06;10400933;0.00020748138652561265;0;1;Old +4577;Czechia;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;224;1;8.536029352844136e-07;10400933;2.1536529463270266e-05;0;1;Old +4578;Czechia;M;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4579;Czechia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2950;1;1.1241645799504554e-05;10400933;0.000283628401413604;1;0;Young +4580;Czechia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;4513;1;1.7197812709547136e-05;10400933;0.000433903381552405;1;0;Young +4581;Czechia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;1654;1;6.302943102501875e-06;10400933;0.00015902419523325454;0;1;Old +4582;Czechia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;273;1;1.040328577377879e-06;10400933;2.6247645283360638e-05;0;1;Old +4583;Czechia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4584;Czechia;M;Technicians and associate professionals;Other service activities   ;Y15-29;1059;1;4.035560305652652e-06;10400933;0.00010181778884644291;1;0;Young +4585;Czechia;M;Technicians and associate professionals;Other service activities   ;Y30-49;2260;1;8.612243900637386e-06;10400933;0.00021728819904906607;1;0;Young +4586;Czechia;M;Technicians and associate professionals;Other service activities   ;Y50-64;1206;1;4.595737231933048e-06;10400933;0.00011595113630671402;0;1;Old +4587;Czechia;M;Technicians and associate professionals;Other service activities   ;Y65-84;186;1;7.087952944772362e-07;10400933;1.7883011072179775e-05;0;1;Old +4588;Czechia;M;Technicians and associate professionals;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4589;Czechia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +4590;Czechia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;29;1;1.1051109430021426e-07;10400933;2.788211403726954e-06;1;0;Young +4591;Czechia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;23;1;8.764672996223889e-08;10400933;2.211340078817929e-06;0;1;Old +4592;Czechia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4593;Czechia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;1;0;Young +4594;Czechia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;61;1;2.3245437076941619e-07;10400933;5.86485846990842e-06;1;0;Young +4595;Czechia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;18;1;6.859309301392609e-08;10400933;1.730613974727075e-06;0;1;Old +4596;Czechia;M;Technicians and associate professionals;Not stated   ;Y15-29;3462;1;1.3192738223011785e-05;10400933;0.0003328547544725074;1;0;Young +4597;Czechia;M;Technicians and associate professionals;Not stated   ;Y30-49;7296;1;2.780306703497804e-05;10400933;0.0007014755310893744;1;0;Young +4598;Czechia;M;Technicians and associate professionals;Not stated   ;Y50-64;4129;1;1.573449339191671e-05;10400933;0.00039698361675822734;0;1;Old +4599;Czechia;M;Technicians and associate professionals;Not stated   ;Y65-84;534;1;2.0349284260798072e-06;10400933;5.134154791690322e-05;0;1;Old +4600;Czechia;M;Technicians and associate professionals;Not stated   ;Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4601;Czechia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;64;1;2.4388655293840386e-07;10400933;6.153294132362934e-06;1;0;Young +4602;Czechia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;264;1;1.006032030870916e-06;10400933;2.53823382959971e-05;1;0;Young +4603;Czechia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;224;1;8.536029352844136e-07;10400933;2.1536529463270266e-05;0;1;Old +4604;Czechia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;21;1;8.002527518291377e-08;10400933;2.0190496371815874e-06;0;1;Old +4605;Czechia;M;Clerical support workers;Mining and quarrying   ;Y15-29;43;1;1.638612777554901e-07;10400933;4.134244495181346e-06;1;0;Young +4606;Czechia;M;Clerical support workers;Mining and quarrying   ;Y30-49;182;1;6.93552384918586e-07;10400933;1.749843018890709e-05;1;0;Young +4607;Czechia;M;Clerical support workers;Mining and quarrying   ;Y50-64;114;1;4.344229224215319e-07;10400933;1.0960555173271475e-05;0;1;Old +4608;Czechia;M;Clerical support workers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4609;Czechia;M;Clerical support workers;Manufacturing   ;Y15-29;3448;1;1.3139388039556509e-05;10400933;0.00033150872138105304;1;0;Young +4610;Czechia;M;Clerical support workers;Manufacturing   ;Y30-49;8180;1;3.117175004743974e-05;10400933;0.0007864679062926374;1;0;Young +4611;Czechia;M;Clerical support workers;Manufacturing   ;Y50-64;2863;1;1.091011251660391e-05;10400933;0.0002752637672024231;0;1;Old +4612;Czechia;M;Clerical support workers;Manufacturing   ;Y65-84;79;1;3.010474637833423e-07;10400933;7.595472444635496e-06;0;1;Old +4613;Czechia;M;Clerical support workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4614;Czechia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;122;1;4.6490874153883237e-07;10400933;1.172971693981684e-05;1;0;Young +4615;Czechia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;302;1;1.1508396716780934e-06;10400933;2.903585668708759e-05;1;0;Young +4616;Czechia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;240;1;9.145745735190145e-07;10400933;2.3074852996361e-05;0;1;Old +4617;Czechia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4618;Czechia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;53;1;2.019685516521157e-07;10400933;5.095696703363054e-06;1;0;Young +4619;Czechia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;201;1;7.659562053221747e-07;10400933;1.9325189384452336e-05;1;0;Young +4620;Czechia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;135;1;5.144481976044457e-07;10400933;1.2979604810453061e-05;0;1;Old +4621;Czechia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4622;Czechia;M;Clerical support workers;Construction   ;Y15-29;366;1;1.394726224616497e-06;10400933;3.518915081945053e-05;1;0;Young +4623;Czechia;M;Clerical support workers;Construction   ;Y30-49;879;1;3.349629375513391e-06;10400933;8.451164909917216e-05;1;0;Young +4624;Czechia;M;Clerical support workers;Construction   ;Y50-64;424;1;1.6157484132169256e-06;10400933;4.0765573626904433e-05;0;1;Old +4625;Czechia;M;Clerical support workers;Construction   ;Y65-84;32;1;1.2194327646920193e-07;10400933;3.076647066181467e-06;0;1;Old +4626;Czechia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1955;1;7.449972046790306e-06;10400933;0.00018796390669952398;1;0;Young +4627;Czechia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4423;1;1.6854847244477505e-05;10400933;0.0004252503116787696;1;0;Young +4628;Czechia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1285;1;4.89678469571639e-06;10400933;0.00012354660875134953;0;1;Old +4629;Czechia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;67;1;2.5531873510739155e-07;10400933;6.441729794817446e-06;0;1;Old +4630;Czechia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4631;Czechia;M;Clerical support workers;Transportation and storage   ;Y15-29;5216;1;1.9876754064479916e-05;10400933;0.000501493471787579;1;0;Young +4632;Czechia;M;Clerical support workers;Transportation and storage   ;Y30-49;16063;1;6.121171406014971e-05;10400933;0.0015443806820022781;1;0;Young +4633;Czechia;M;Clerical support workers;Transportation and storage   ;Y50-64;7158;1;2.727718665520461e-05;10400933;0.0006882074906164669;0;1;Old +4634;Czechia;M;Clerical support workers;Transportation and storage   ;Y65-84;294;1;1.1203538525607928e-06;10400933;2.8266694920542226e-05;0;1;Old +4635;Czechia;M;Clerical support workers;Transportation and storage   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4636;Czechia;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;757;1;2.8847206339745583e-06;10400933;7.278193215935531e-05;1;0;Young +4637;Czechia;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;668;1;2.5455658962945906e-06;10400933;6.422500750653812e-05;1;0;Young +4638;Czechia;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;278;1;1.0593822143261918e-06;10400933;2.672837138745149e-05;0;1;Old +4639;Czechia;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;42;1;1.6005055036582754e-07;10400933;4.038099274363175e-06;0;1;Old +4640;Czechia;M;Clerical support workers;Information and communication   ;Y15-29;2117;1;8.067309883915641e-06;10400933;0.00020353943247206766;1;0;Young +4641;Czechia;M;Clerical support workers;Information and communication   ;Y30-49;1758;1;6.699258751026782e-06;10400933;0.00016902329819834432;1;0;Young +4642;Czechia;M;Clerical support workers;Information and communication   ;Y50-64;389;1;1.482372954578736e-06;10400933;3.7400490898268454e-05;0;1;Old +4643;Czechia;M;Clerical support workers;Information and communication   ;Y65-84;53;1;2.019685516521157e-07;10400933;5.095696703363054e-06;0;1;Old +4644;Czechia;M;Clerical support workers;Financial and insurance activities   ;Y15-29;744;1;2.835181177908945e-06;10400933;7.15320442887191e-05;1;0;Young +4645;Czechia;M;Clerical support workers;Financial and insurance activities   ;Y30-49;870;1;3.3153328290064275e-06;10400933;8.364634211180863e-05;1;0;Young +4646;Czechia;M;Clerical support workers;Financial and insurance activities   ;Y50-64;278;1;1.0593822143261918e-06;10400933;2.672837138745149e-05;0;1;Old +4647;Czechia;M;Clerical support workers;Financial and insurance activities   ;Y65-84;25;1;9.526818474156401e-08;10400933;2.403630520454271e-06;0;1;Old +4648;Czechia;M;Clerical support workers;Real estate activities   ;Y15-29;57;1;2.1721146121076594e-07;10400933;5.480277586635738e-06;1;0;Young +4649;Czechia;M;Clerical support workers;Real estate activities   ;Y30-49;136;1;5.182589249941082e-07;10400933;1.3075750031271233e-05;1;0;Young +4650;Czechia;M;Clerical support workers;Real estate activities   ;Y50-64;90;1;3.4296546506963047e-07;10400933;8.653069873635374e-06;0;1;Old +4651;Czechia;M;Clerical support workers;Real estate activities   ;Y65-84;21;1;8.002527518291377e-08;10400933;2.0190496371815874e-06;0;1;Old +4652;Czechia;M;Clerical support workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4653;Czechia;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;506;1;1.9282280591692557e-06;10400933;4.864948173399444e-05;1;0;Young +4654;Czechia;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;601;1;2.290247161187199e-06;10400933;5.778327771172067e-05;1;0;Young +4655;Czechia;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;208;1;7.926312970498126e-07;10400933;1.9998205930179532e-05;0;1;Old +4656;Czechia;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;55;1;2.0959000643144082e-07;10400933;5.2879871449993955e-06;0;1;Old +4657;Czechia;M;Clerical support workers;Administrative and support service activities   ;Y15-29;1707;1;6.504911654153991e-06;10400933;0.00016411989193661761;1;0;Young +4658;Czechia;M;Clerical support workers;Administrative and support service activities   ;Y30-49;1925;1;7.335650225100429e-06;10400933;0.00018507955007497886;1;0;Young +4659;Czechia;M;Clerical support workers;Administrative and support service activities   ;Y50-64;820;1;3.1247964595232996e-06;10400933;7.883908107090008e-05;0;1;Old +4660;Czechia;M;Clerical support workers;Administrative and support service activities   ;Y65-84;113;1;4.3061219503186933e-07;10400933;1.0864409952453304e-05;0;1;Old +4661;Czechia;M;Clerical support workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4662;Czechia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;513;1;1.9549031508968934e-06;10400933;4.9322498279721635e-05;1;0;Young +4663;Czechia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;1384;1;5.2740467072929836e-06;10400933;0.00013306498561234842;1;0;Young +4664;Czechia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;892;1;3.399168831579004e-06;10400933;8.576153696980839e-05;0;1;Old +4665;Czechia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;78;1;2.9723673639367974e-07;10400933;7.499327223817325e-06;0;1;Old +4666;Czechia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4667;Czechia;M;Clerical support workers;Education   ;Y15-29;120;1;4.572872867595073e-07;10400933;1.15374264981805e-05;1;0;Young +4668;Czechia;M;Clerical support workers;Education   ;Y30-49;147;1;5.601769262803964e-07;10400933;1.4133347460271113e-05;1;0;Young +4669;Czechia;M;Clerical support workers;Education   ;Y50-64;131;1;4.992052880457954e-07;10400933;1.2595023927180379e-05;0;1;Old +4670;Czechia;M;Clerical support workers;Education   ;Y65-84;48;1;1.829149147038029e-07;10400933;4.6149705992722e-06;0;1;Old +4671;Czechia;M;Clerical support workers;Human health and social work activities   ;Y15-29;206;1;7.850098422704875e-07;10400933;1.980591548854319e-05;1;0;Young +4672;Czechia;M;Clerical support workers;Human health and social work activities   ;Y30-49;345;1;1.3147009494335833e-06;10400933;3.317010118226894e-05;1;0;Young +4673;Czechia;M;Clerical support workers;Human health and social work activities   ;Y50-64;222;1;8.459814805050885e-07;10400933;2.1344239021633924e-05;0;1;Old +4674;Czechia;M;Clerical support workers;Human health and social work activities   ;Y65-84;44;1;1.6767200514515266e-07;10400933;4.230389715999517e-06;0;1;Old +4675;Czechia;M;Clerical support workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4676;Czechia;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;812;1;3.0943106404059992e-06;10400933;7.806991930435471e-05;1;0;Young +4677;Czechia;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;1075;1;4.096531943887253e-06;10400933;0.00010335611237953365;1;0;Young +4678;Czechia;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;287;1;1.0936787608331548e-06;10400933;2.759367837481503e-05;0;1;Old +4679;Czechia;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;72;1;2.7437237205570434e-07;10400933;6.9224558989083e-06;0;1;Old +4680;Czechia;M;Clerical support workers;Other service activities   ;Y15-29;181;1;6.897416575289234e-07;10400933;1.740228496808892e-05;1;0;Young +4681;Czechia;M;Clerical support workers;Other service activities   ;Y30-49;295;1;1.1241645799504554e-06;10400933;2.8362840141360395e-05;1;0;Young +4682;Czechia;M;Clerical support workers;Other service activities   ;Y50-64;128;1;4.877731058768077e-07;10400933;1.2306588264725867e-05;0;1;Old +4683;Czechia;M;Clerical support workers;Other service activities   ;Y65-84;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +4684;Czechia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +4685;Czechia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;1;0;Young +4686;Czechia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4687;Czechia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4688;Czechia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;1;0;Young +4689;Czechia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +4690;Czechia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4691;Czechia;M;Clerical support workers;Not stated   ;Y15-29;842;1;3.208632462095876e-06;10400933;8.095427592889984e-05;1;0;Young +4692;Czechia;M;Clerical support workers;Not stated   ;Y30-49;1572;1;5.990463456549545e-06;10400933;0.00015114028712616455;1;0;Young +4693;Czechia;M;Clerical support workers;Not stated   ;Y50-64;854;1;3.2543611907718268e-06;10400933;8.210801857871789e-05;0;1;Old +4694;Czechia;M;Clerical support workers;Not stated   ;Y65-84;81;1;3.086689185626674e-07;10400933;7.787762886271838e-06;0;1;Old +4695;Czechia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;224;1;8.536029352844136e-07;10400933;2.1536529463270266e-05;1;0;Young +4696;Czechia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;883;1;3.364872285072041e-06;10400933;8.489622998244484e-05;1;0;Young +4697;Czechia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;922;1;3.5134906532688806e-06;10400933;8.86458935943535e-05;0;1;Old +4698;Czechia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;106;1;4.039371033042314e-07;10400933;1.0191393406726108e-05;0;1;Old +4699;Czechia;M;Service and sales workers;Mining and quarrying   ;Y15-29;39;1;1.4861836819683987e-07;10400933;3.7496636119086623e-06;1;0;Young +4700;Czechia;M;Service and sales workers;Mining and quarrying   ;Y30-49;218;1;8.307385709464382e-07;10400933;2.095965813836124e-05;1;0;Young +4701;Czechia;M;Service and sales workers;Mining and quarrying   ;Y50-64;173;1;6.592558384116229e-07;10400933;1.6633123201543553e-05;0;1;Old +4702;Czechia;M;Service and sales workers;Mining and quarrying   ;Y65-84;18;1;6.859309301392609e-08;10400933;1.730613974727075e-06;0;1;Old +4703;Czechia;M;Service and sales workers;Manufacturing   ;Y15-29;2292;1;8.73418717710659e-06;10400933;0.00022036484611524755;1;0;Young +4704;Czechia;M;Service and sales workers;Manufacturing   ;Y30-49;5231;1;1.9933914975324853e-05;10400933;0.0005029356500998516;1;0;Young +4705;Czechia;M;Service and sales workers;Manufacturing   ;Y50-64;3702;1;1.4107312796530799e-05;10400933;0.0003559296074688684;0;1;Old +4706;Czechia;M;Service and sales workers;Manufacturing   ;Y65-84;355;1;1.352808223330209e-06;10400933;3.413155339045065e-05;0;1;Old +4707;Czechia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;61;1;2.3245437076941619e-07;10400933;5.86485846990842e-06;1;0;Young +4708;Czechia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;305;1;1.162271853847081e-06;10400933;2.9324292349542103e-05;1;0;Young +4709;Czechia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;223;1;8.49792207894751e-07;10400933;2.1440384242452097e-05;0;1;Old +4710;Czechia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;0;1;Old +4711;Czechia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4712;Czechia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;1;0;Young +4713;Czechia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;193;1;7.354703862048742e-07;10400933;1.855602761790697e-05;1;0;Young +4714;Czechia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;212;1;8.078742066084628e-07;10400933;2.0382786813452217e-05;0;1;Old +4715;Czechia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;50;1;1.9053636948312803e-07;10400933;4.807261040908542e-06;0;1;Old +4716;Czechia;M;Service and sales workers;Construction   ;Y15-29;261;1;9.945998487019282e-07;10400933;2.5093902633542588e-05;1;0;Young +4717;Czechia;M;Service and sales workers;Construction   ;Y30-49;909;1;3.4639511972032677e-06;10400933;8.739600572371729e-05;1;0;Young +4718;Czechia;M;Service and sales workers;Construction   ;Y50-64;652;1;2.4845942580599894e-06;10400933;6.268668397344738e-05;0;1;Old +4719;Czechia;M;Service and sales workers;Construction   ;Y65-84;76;1;2.896152816143546e-07;10400933;7.307036782180983e-06;0;1;Old +4720;Czechia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;14312;1;5.4539130400850566e-05;10400933;0.0013760304003496608;1;0;Young +4721;Czechia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;30702;1;0.00011699695231741994;10400933;0.002951850569559481;1;0;Young +4722;Czechia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;11555;1;4.4032954987550886e-05;10400933;0.0011109580265539639;0;1;Old +4723;Czechia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;859;1;3.2734148277201393e-06;10400933;8.258874468280875e-05;0;1;Old +4724;Czechia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4725;Czechia;M;Service and sales workers;Transportation and storage   ;Y15-29;913;1;3.4791941067619177e-06;10400933;8.778058660698997e-05;1;0;Young +4726;Czechia;M;Service and sales workers;Transportation and storage   ;Y30-49;3052;1;1.1630339993250136e-05;10400933;0.0002934352139370574;1;0;Young +4727;Czechia;M;Service and sales workers;Transportation and storage   ;Y50-64;1608;1;6.127649642577398e-06;10400933;0.0001546015150756187;0;1;Old +4728;Czechia;M;Service and sales workers;Transportation and storage   ;Y65-84;137;1;5.220696523837708e-07;10400933;1.3171895252089404e-05;0;1;Old +4729;Czechia;M;Service and sales workers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4730;Czechia;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;17494;1;6.666486495475684e-05;10400933;0.0016819644929930806;1;0;Young +4731;Czechia;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;25144;1;9.581692948567542e-05;10400933;0.0024174754322520875;1;0;Young +4732;Czechia;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;6758;1;2.5752895699339585e-05;10400933;0.0006497494022891985;0;1;Old +4733;Czechia;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;308;1;1.1737040360160685e-06;10400933;2.9612728011996618e-05;0;1;Old +4734;Czechia;M;Service and sales workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4735;Czechia;M;Service and sales workers;Information and communication   ;Y15-29;514;1;1.958713878286556e-06;10400933;4.941864350053981e-05;1;0;Young +4736;Czechia;M;Service and sales workers;Information and communication   ;Y30-49;669;1;2.549376623684253e-06;10400933;6.432115272735628e-05;1;0;Young +4737;Czechia;M;Service and sales workers;Information and communication   ;Y50-64;202;1;7.697669327118372e-07;10400933;1.942133460527051e-05;0;1;Old +4738;Czechia;M;Service and sales workers;Information and communication   ;Y65-84;31;1;1.1813254907953938e-07;10400933;2.9805018453632957e-06;0;1;Old +4739;Czechia;M;Service and sales workers;Financial and insurance activities   ;Y15-29;214;1;8.15495661387788e-07;10400933;2.057507725508856e-05;1;0;Young +4740;Czechia;M;Service and sales workers;Financial and insurance activities   ;Y30-49;363;1;1.3832940424475095e-06;10400933;3.490071515699601e-05;1;0;Young +4741;Czechia;M;Service and sales workers;Financial and insurance activities   ;Y50-64;121;1;4.610980141491698e-07;10400933;1.1633571718998671e-05;0;1;Old +4742;Czechia;M;Service and sales workers;Financial and insurance activities   ;Y65-84;13;1;4.953945606561329e-08;10400933;1.2498878706362208e-06;0;1;Old +4743;Czechia;M;Service and sales workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4744;Czechia;M;Service and sales workers;Real estate activities   ;Y15-29;215;1;8.193063887774505e-07;10400933;2.067122247590673e-05;1;0;Young +4745;Czechia;M;Service and sales workers;Real estate activities   ;Y30-49;982;1;3.7421342966486346e-06;10400933;9.441460684344376e-05;1;0;Young +4746;Czechia;M;Service and sales workers;Real estate activities   ;Y50-64;969;1;3.692594840583021e-06;10400933;9.316471897280754e-05;0;1;Old +4747;Czechia;M;Service and sales workers;Real estate activities   ;Y65-84;219;1;8.345492983361008e-07;10400933;2.1055803359179413e-05;0;1;Old +4748;Czechia;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;205;1;7.811991148808249e-07;10400933;1.970977026772502e-05;1;0;Young +4749;Czechia;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;455;1;1.7338809622964651e-06;10400933;4.374607547226773e-05;1;0;Young +4750;Czechia;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;284;1;1.0822465786641672e-06;10400933;2.7305242712360515e-05;0;1;Old +4751;Czechia;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;71;1;2.705616446660418e-07;10400933;6.826310678090129e-06;0;1;Old +4752;Czechia;M;Service and sales workers;Administrative and support service activities   ;Y15-29;2872;1;1.0944409063110874e-05;10400933;0.00027612907418978665;1;0;Young +4753;Czechia;M;Service and sales workers;Administrative and support service activities   ;Y30-49;7088;1;2.701043573792823e-05;10400933;0.0006814773251591948;1;0;Young +4754;Czechia;M;Service and sales workers;Administrative and support service activities   ;Y50-64;9251;1;3.525303908176835e-05;10400933;0.0008894394377888983;0;1;Old +4755;Czechia;M;Service and sales workers;Administrative and support service activities   ;Y65-84;1374;1;5.235939433396358e-06;10400933;0.00013210353340416673;0;1;Old +4756;Czechia;M;Service and sales workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4757;Czechia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;11386;1;4.3388942058697915e-05;10400933;0.0010947094842356931;1;0;Young +4758;Czechia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;31517;1;0.00012010269513999492;10400933;0.00303020892452629;1;0;Young +4759;Czechia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;6525;1;2.4864996217548207e-05;10400933;0.0006273475658385647;0;1;Old +4760;Czechia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;247;1;9.412496652466524e-07;10400933;2.3747869542088196e-05;0;1;Old +4761;Czechia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4762;Czechia;M;Service and sales workers;Education   ;Y15-29;346;1;1.3185116768232459e-06;10400933;3.3266246403087105e-05;1;0;Young +4763;Czechia;M;Service and sales workers;Education   ;Y30-49;2121;1;8.082552793474292e-06;10400933;0.00020392401335534035;1;0;Young +4764;Czechia;M;Service and sales workers;Education   ;Y50-64;3383;1;1.2891690759228443e-05;10400933;0.0003252592820278719;0;1;Old +4765;Czechia;M;Service and sales workers;Education   ;Y65-84;611;1;2.3283544350838245e-06;10400933;5.874472991990238e-05;0;1;Old +4766;Czechia;M;Service and sales workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4767;Czechia;M;Service and sales workers;Human health and social work activities   ;Y15-29;1799;1;6.855498574002947e-06;10400933;0.00017296525225188932;1;0;Young +4768;Czechia;M;Service and sales workers;Human health and social work activities   ;Y30-49;3868;1;1.4739893543214784e-05;10400933;0.00037188971412468476;1;0;Young +4769;Czechia;M;Service and sales workers;Human health and social work activities   ;Y50-64;2347;1;8.943777183538029e-06;10400933;0.00022565283326024695;0;1;Old +4770;Czechia;M;Service and sales workers;Human health and social work activities   ;Y65-84;172;1;6.554451110219605e-07;10400933;1.6536977980725383e-05;0;1;Old +4771;Czechia;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;1080;1;4.115585580835566e-06;10400933;0.00010383683848362449;1;0;Young +4772;Czechia;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;1838;1;7.0041169421997865e-06;10400933;0.00017671491586379798;1;0;Young +4773;Czechia;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;1110;1;4.229907402525442e-06;10400933;0.00010672119510816962;0;1;Old +4774;Czechia;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;255;1;9.71735484363953e-07;10400933;2.4517031308633562e-05;0;1;Old +4775;Czechia;M;Service and sales workers;Other service activities   ;Y15-29;1269;1;4.8358130574817896e-06;10400933;0.00012200828521825879;1;0;Young +4776;Czechia;M;Service and sales workers;Other service activities   ;Y30-49;2325;1;8.859941180965454e-06;10400933;0.0002235376384022472;1;0;Young +4777;Czechia;M;Service and sales workers;Other service activities   ;Y50-64;1216;1;4.633844505829673e-06;10400933;0.00011691258851489573;0;1;Old +4778;Czechia;M;Service and sales workers;Other service activities   ;Y65-84;141;1;5.37312561942421e-07;10400933;1.3556476135362088e-05;0;1;Old +4779;Czechia;M;Service and sales workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4780;Czechia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;69;1;2.629401898867167e-07;10400933;6.634020236453787e-06;1;0;Young +4781;Czechia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;212;1;8.078742066084628e-07;10400933;2.0382786813452217e-05;1;0;Young +4782;Czechia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;235;1;8.955209365707018e-07;10400933;2.2594126892270147e-05;0;1;Old +4783;Czechia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;38;1;1.448076408071773e-07;10400933;3.6535183910904917e-06;0;1;Old +4784;Czechia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4785;Czechia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;1;0;Young +4786;Czechia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4787;Czechia;M;Service and sales workers;Not stated   ;Y15-29;4868;1;1.8550620932877344e-05;10400933;0.0004680349349428556;1;0;Young +4788;Czechia;M;Service and sales workers;Not stated   ;Y30-49;8252;1;3.144612241949545e-05;10400933;0.0007933903621915457;1;0;Young +4789;Czechia;M;Service and sales workers;Not stated   ;Y50-64;5124;1;1.952616714463096e-05;10400933;0.0004926481114723073;0;1;Old +4790;Czechia;M;Service and sales workers;Not stated   ;Y65-84;790;1;3.010474637833423e-06;10400933;7.595472444635495e-05;0;1;Old +4791;Czechia;M;Service and sales workers;Not stated   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4792;Czechia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;4455;1;1.697679052094671e-05;10400933;0.00042832695874495103;1;0;Young +4793;Czechia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;16362;1;6.235112154965882e-05;10400933;0.0015731281030269112;1;0;Young +4794;Czechia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;11512;1;4.38690937097954e-05;10400933;0.0011068237820587826;0;1;Old +4795;Czechia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;1103;1;4.203232310797805e-06;10400933;0.00010604817856244243;0;1;Old +4796;Czechia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;0;1;Old +4797;Czechia;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +4798;Czechia;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;20;1;7.621454779325121e-08;10400933;1.9229044163634167e-06;1;0;Young +4799;Czechia;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;14;1;5.335018345527585e-08;10400933;1.3460330914543917e-06;0;1;Old +4800;Czechia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;123;1;4.6871946892849497e-07;10400933;1.1825862160635012e-05;1;0;Young +4801;Czechia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;304;1;1.1584611264574184e-06;10400933;2.9228147128723933e-05;1;0;Young +4802;Czechia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;226;1;8.612243900637387e-07;10400933;2.172881990490661e-05;0;1;Old +4803;Czechia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;0;1;Old +4804;Czechia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +4805;Czechia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4806;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +4807;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;25;1;9.526818474156401e-08;10400933;2.403630520454271e-06;1;0;Young +4808;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;0;1;Old +4809;Czechia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;26;1;9.907891213122657e-08;10400933;2.4997757412724415e-06;1;0;Young +4810;Czechia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;54;1;2.0577927904177827e-07;10400933;5.191841924181225e-06;1;0;Young +4811;Czechia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;20;1;7.621454779325121e-08;10400933;1.9229044163634167e-06;0;1;Old +4812;Czechia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4813;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;36;1;1.3718618602785217e-07;10400933;3.46122794945415e-06;1;0;Young +4814;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;132;1;5.03016015435458e-07;10400933;1.269116914799855e-05;1;0;Young +4815;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;61;1;2.3245437076941619e-07;10400933;5.86485846990842e-06;0;1;Old +4816;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4817;Czechia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;26;1;9.907891213122657e-08;10400933;2.4997757412724415e-06;1;0;Young +4818;Czechia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;50;1;1.9053636948312803e-07;10400933;4.807261040908542e-06;1;0;Young +4819;Czechia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;40;1;1.5242909558650242e-07;10400933;3.845808832726833e-06;0;1;Old +4820;Czechia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4821;Czechia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4822;Czechia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;1;0;Young +4823;Czechia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;0;1;Old +4824;Czechia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4825;Czechia;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;1;0;Young +4826;Czechia;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4827;Czechia;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4828;Czechia;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4829;Czechia;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4830;Czechia;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;1;0;Young +4831;Czechia;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +4832;Czechia;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;1;0;Young +4833;Czechia;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +4834;Czechia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;23;1;8.764672996223889e-08;10400933;2.211340078817929e-06;1;0;Young +4835;Czechia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;39;1;1.4861836819683987e-07;10400933;3.7496636119086623e-06;1;0;Young +4836;Czechia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +4837;Czechia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4838;Czechia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;558;1;2.1263858834317088e-06;10400933;5.364903321653932e-05;1;0;Young +4839;Czechia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;1372;1;5.228317978617033e-06;10400933;0.00013191124296253038;1;0;Young +4840;Czechia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;767;1;2.922827907871184e-06;10400933;7.374338436753703e-05;0;1;Old +4841;Czechia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;44;1;1.6767200514515266e-07;10400933;4.230389715999517e-06;0;1;Old +4842;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;51;1;1.943470968727906e-07;10400933;4.903406261726712e-06;1;0;Young +4843;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;113;1;4.3061219503186933e-07;10400933;1.0864409952453304e-05;1;0;Young +4844;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;93;1;3.543976472386181e-07;10400933;8.941505536089888e-06;0;1;Old +4845;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;0;1;Old +4846;Czechia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;1;0;Young +4847;Czechia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;1;0;Young +4848;Czechia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;28;1;1.067003669105517e-07;10400933;2.6920661829087833e-06;0;1;Old +4849;Czechia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4850;Czechia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;67;1;2.5531873510739155e-07;10400933;6.441729794817446e-06;1;0;Young +4851;Czechia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;142;1;5.411232893320836e-07;10400933;1.3652621356180257e-05;1;0;Young +4852;Czechia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;70;1;2.6675091727637925e-07;10400933;6.7301654572719585e-06;0;1;Old +4853;Czechia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4854;Czechia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;1;0;Young +4855;Czechia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;131;1;4.992052880457954e-07;10400933;1.2595023927180379e-05;1;0;Young +4856;Czechia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;47;1;1.7910418731414036e-07;10400933;4.518825378454029e-06;0;1;Old +4857;Czechia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +4858;Czechia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;25;1;9.526818474156401e-08;10400933;2.403630520454271e-06;1;0;Young +4859;Czechia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;86;1;3.277225555109802e-07;10400933;8.268488990362692e-06;1;0;Young +4860;Czechia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;38;1;1.448076408071773e-07;10400933;3.6535183910904917e-06;0;1;Old +4861;Czechia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4862;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;1;0;Young +4863;Czechia;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4864;Czechia;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +4865;Czechia;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;1;0;Young +4866;Czechia;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4867;Czechia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;478;1;1.821527692258704e-06;10400933;4.5957415551085655e-05;1;0;Young +4868;Czechia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;1501;1;5.719901811883504e-06;10400933;0.00014431397644807441;1;0;Young +4869;Czechia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;1117;1;4.25658249425308e-06;10400933;0.00010739421165389682;0;1;Old +4870;Czechia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;134;1;5.106374702147831e-07;10400933;1.2883459589634892e-05;0;1;Old +4871;Czechia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4872;Czechia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;1157;1;4.4090115898395825e-06;10400933;0.00011124002048662365;1;0;Young +4873;Czechia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;3824;1;1.4572221538069631e-05;10400933;0.00036765932440868524;1;0;Young +4874;Czechia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;4497;1;1.7136841071312534e-05;10400933;0.0004323650580193142;0;1;Old +4875;Czechia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;101;1;3.848834663559186e-07;10400933;9.710667302635255e-06;0;1;Old +4876;Czechia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4877;Czechia;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;592;1;2.255950614680236e-06;10400933;5.691797072435713e-05;1;0;Young +4878;Czechia;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;4642;1;1.7689396542813606e-05;10400933;0.000446306115037949;1;0;Young +4879;Czechia;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;2653;1;1.0109859764774773e-05;10400933;0.0002550732708306072;0;1;Old +4880;Czechia;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;18;1;6.859309301392609e-08;10400933;1.730613974727075e-06;0;1;Old +4881;Czechia;M;Craft and related trades workers;Manufacturing   ;Y15-29;54554;1;0.00020789042201565134;10400933;0.005245106376514492;1;0;Young +4882;Czechia;M;Craft and related trades workers;Manufacturing   ;Y30-49;142246;1;0.0005420607282699406;10400933;0.013676273080501528;1;0;Young +4883;Czechia;M;Craft and related trades workers;Manufacturing   ;Y50-64;75043;1;0.00028596841550244755;10400933;0.007215025805857994;0;1;Old +4884;Czechia;M;Craft and related trades workers;Manufacturing   ;Y65-84;2292;1;8.73418717710659e-06;10400933;0.00022036484611524755;0;1;Old +4885;Czechia;M;Craft and related trades workers;Manufacturing   ;Y_GE85;15;1;5.716091084493841e-08;10400933;1.4421783122725625e-06;0;1;Old +4886;Czechia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1898;1;7.23276058557954e-06;10400933;0.00018248362911288824;1;0;Young +4887;Czechia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;6716;1;2.5592845148973756e-05;10400933;0.0006457113030148353;1;0;Young +4888;Czechia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3909;1;1.4896133366190949e-05;10400933;0.0003758316681782298;0;1;Old +4889;Czechia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;114;1;4.344229224215319e-07;10400933;1.0960555173271475e-05;0;1;Old +4890;Czechia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;546;1;2.080657154755758e-06;10400933;5.2495290566721276e-05;1;0;Young +4891;Czechia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2734;1;1.041852868333744e-05;10400933;0.00026286103371687904;1;0;Young +4892;Czechia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2021;1;7.701480054508035e-06;10400933;0.00019430949127352326;0;1;Old +4893;Czechia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;51;1;1.943470968727906e-07;10400933;4.903406261726712e-06;0;1;Old +4894;Czechia;M;Craft and related trades workers;Construction   ;Y15-29;27970;1;0.00010658604508886182;10400933;0.002689181826284238;1;0;Young +4895;Czechia;M;Craft and related trades workers;Construction   ;Y30-49;100625;1;0.0003834544435847952;10400933;0.00967461284482844;1;0;Young +4896;Czechia;M;Craft and related trades workers;Construction   ;Y50-64;46803;1;0.00017835347401837681;10400933;0.00449988476995285;0;1;Old +4897;Czechia;M;Craft and related trades workers;Construction   ;Y65-84;906;1;3.45251901503428e-06;10400933;8.710757006126278e-05;0;1;Old +4898;Czechia;M;Craft and related trades workers;Construction   ;Y_GE85;8;1;3.048581911730048e-08;10400933;7.691617665453667e-07;0;1;Old +4899;Czechia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;8610;1;3.2810362824994644e-05;10400933;0.0008278103512444508;1;0;Young +4900;Czechia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;17606;1;6.709166642239903e-05;10400933;0.0016927327577247156;1;0;Young +4901;Czechia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7270;1;2.7703988122846816e-05;10400933;0.0006989757553481019;0;1;Old +4902;Czechia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;232;1;8.840887544017141e-07;10400933;2.2305691229815632e-05;0;1;Old +4903;Czechia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4904;Czechia;M;Craft and related trades workers;Transportation and storage   ;Y15-29;1755;1;6.687826568857794e-06;10400933;0.0001687348625358898;1;0;Young +4905;Czechia;M;Craft and related trades workers;Transportation and storage   ;Y30-49;6326;1;2.410666146700536e-05;10400933;0.0006082146668957486;1;0;Young +4906;Czechia;M;Craft and related trades workers;Transportation and storage   ;Y50-64;4363;1;1.6626203601097753e-05;10400933;0.0004194815984296793;0;1;Old +4907;Czechia;M;Craft and related trades workers;Transportation and storage   ;Y65-84;77;1;2.9342600900401714e-07;10400933;7.403182002999154e-06;0;1;Old +4908;Czechia;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;257;1;9.79356939143278e-07;10400933;2.4709321750269904e-05;1;0;Young +4909;Czechia;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;604;1;2.3016793433561867e-06;10400933;5.807171337417518e-05;1;0;Young +4910;Czechia;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;387;1;1.4747514997994108e-06;10400933;3.7208200456632115e-05;0;1;Old +4911;Czechia;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;29;1;1.1051109430021426e-07;10400933;2.788211403726954e-06;0;1;Old +4912;Czechia;M;Craft and related trades workers;Information and communication   ;Y15-29;773;1;2.9456922722091595e-06;10400933;7.432025569244605e-05;1;0;Young +4913;Czechia;M;Craft and related trades workers;Information and communication   ;Y30-49;1702;1;6.485858017205678e-06;10400933;0.00016363916583252676;1;0;Young +4914;Czechia;M;Craft and related trades workers;Information and communication   ;Y50-64;727;1;2.7703988122846815e-06;10400933;6.98975755348102e-05;0;1;Old +4915;Czechia;M;Craft and related trades workers;Information and communication   ;Y65-84;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;0;1;Old +4916;Czechia;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;32;1;1.2194327646920193e-07;10400933;3.076647066181467e-06;1;0;Young +4917;Czechia;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;66;1;2.51508007717729e-07;10400933;6.345584573999275e-06;1;0;Young +4918;Czechia;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;43;1;1.638612777554901e-07;10400933;4.134244495181346e-06;0;1;Old +4919;Czechia;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +4920;Czechia;M;Craft and related trades workers;Real estate activities   ;Y15-29;77;1;2.9342600900401714e-07;10400933;7.403182002999154e-06;1;0;Young +4921;Czechia;M;Craft and related trades workers;Real estate activities   ;Y30-49;465;1;1.7719882361930907e-06;10400933;4.4707527680449436e-05;1;0;Young +4922;Czechia;M;Craft and related trades workers;Real estate activities   ;Y50-64;509;1;1.9396602413382435e-06;10400933;4.893791739644895e-05;0;1;Old +4923;Czechia;M;Craft and related trades workers;Real estate activities   ;Y65-84;42;1;1.6005055036582754e-07;10400933;4.038099274363175e-06;0;1;Old +4924;Czechia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;419;1;1.5966947762686128e-06;10400933;4.0284847522813576e-05;1;0;Young +4925;Czechia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;994;1;3.7878630253245854e-06;10400933;9.556834949326181e-05;1;0;Young +4926;Czechia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;606;1;2.3093007981355115e-06;10400933;5.826400381581152e-05;0;1;Old +4927;Czechia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;95;1;3.6201910201794326e-07;10400933;9.13379597772623e-06;0;1;Old +4928;Czechia;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;337;1;1.284215130316283e-06;10400933;3.240093941572357e-05;1;0;Young +4929;Czechia;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;946;1;3.6049481106207822e-06;10400933;9.095337889398961e-05;1;0;Young +4930;Czechia;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;732;1;2.789452449232994e-06;10400933;7.037830163890105e-05;0;1;Old +4931;Czechia;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;0;1;Old +4932;Czechia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;309;1;1.1775147634057311e-06;10400933;2.9708873232814787e-05;1;0;Young +4933;Czechia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;1527;1;5.8189807240147295e-06;10400933;0.00014681375218934687;1;0;Young +4934;Czechia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;1557;1;5.933302545704607e-06;10400933;0.00014969810881389198;0;1;Old +4935;Czechia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;60;1;2.2864364337975364e-07;10400933;5.76871324909025e-06;0;1;Old +4936;Czechia;M;Craft and related trades workers;Education   ;Y15-29;67;1;2.5531873510739155e-07;10400933;6.441729794817446e-06;1;0;Young +4937;Czechia;M;Craft and related trades workers;Education   ;Y30-49;343;1;1.3070794946542583e-06;10400933;3.2977810740632594e-05;1;0;Young +4938;Czechia;M;Craft and related trades workers;Education   ;Y50-64;730;1;2.7818309944536693e-06;10400933;7.018601119726471e-05;0;1;Old +4939;Czechia;M;Craft and related trades workers;Education   ;Y65-84;144;1;5.487447441114087e-07;10400933;1.38449117978166e-05;0;1;Old +4940;Czechia;M;Craft and related trades workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4941;Czechia;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;158;1;6.020949275666846e-07;10400933;1.5190944889270991e-05;1;0;Young +4942;Czechia;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;886;1;3.3763044672410287e-06;10400933;8.518466564489935e-05;1;0;Young +4943;Czechia;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;1340;1;5.106374702147831e-06;10400933;0.0001288345958963489;0;1;Old +4944;Czechia;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;70;1;2.6675091727637925e-07;10400933;6.7301654572719585e-06;0;1;Old +4945;Czechia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;401;1;1.5281016832546868e-06;10400933;3.85542335480865e-05;1;0;Young +4946;Czechia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;1190;1;4.534765593698447e-06;10400933;0.0001144128127736233;1;0;Young +4947;Czechia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;921;1;3.5096799258792185e-06;10400933;8.854974837353534e-05;0;1;Old +4948;Czechia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;81;1;3.086689185626674e-07;10400933;7.787762886271838e-06;0;1;Old +4949;Czechia;M;Craft and related trades workers;Other service activities   ;Y15-29;773;1;2.9456922722091595e-06;10400933;7.432025569244605e-05;1;0;Young +4950;Czechia;M;Craft and related trades workers;Other service activities   ;Y30-49;2454;1;9.351525014231924e-06;10400933;0.00023594037188779123;1;0;Young +4951;Czechia;M;Craft and related trades workers;Other service activities   ;Y50-64;1878;1;7.156546037786289e-06;10400933;0.00018056072469652481;0;1;Old +4952;Czechia;M;Craft and related trades workers;Other service activities   ;Y65-84;151;1;5.754198358390467e-07;10400933;1.4517928343543796e-05;0;1;Old +4953;Czechia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;1;0;Young +4954;Czechia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;22;1;8.383600257257633e-08;10400933;2.1151948579997585e-06;1;0;Young +4955;Czechia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;22;1;8.383600257257633e-08;10400933;2.1151948579997585e-06;0;1;Old +4956;Czechia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +4957;Czechia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +4958;Czechia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4959;Czechia;M;Craft and related trades workers;Not stated   ;Y15-29;9700;1;3.6964055679726834e-05;10400933;0.0009326086419362571;1;0;Young +4960;Czechia;M;Craft and related trades workers;Not stated   ;Y30-49;26232;1;9.996300088562829e-05;10400933;0.0025220814325022573;1;0;Young +4961;Czechia;M;Craft and related trades workers;Not stated   ;Y50-64;15131;1;5.7660116132984204e-05;10400933;0.0014547733361997429;0;1;Old +4962;Czechia;M;Craft and related trades workers;Not stated   ;Y65-84;614;1;2.3397866172528123e-06;10400933;5.903316558235689e-05;0;1;Old +4963;Czechia;M;Craft and related trades workers;Not stated   ;Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +4964;Czechia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;2618;1;9.976484306136584e-06;10400933;0.00025170818810197124;1;0;Young +4965;Czechia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;9196;1;3.5043449075336904e-05;10400933;0.0008841514506438989;1;0;Young +4966;Czechia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;7673;1;2.9239711260880826e-05;10400933;0.0007377222793378248;0;1;Old +4967;Czechia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;153;1;5.830412906183718e-07;10400933;1.4710218785180138e-05;0;1;Old +4968;Czechia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;1557;1;5.933302545704607e-06;10400933;0.00014969810881389198;1;0;Young +4969;Czechia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;8628;1;3.2878955918008574e-05;10400933;0.0008295409652191779;1;0;Young +4970;Czechia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;4615;1;1.7586506903292718e-05;10400933;0.0004437101940758584;0;1;Old +4971;Czechia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;42;1;1.6005055036582754e-07;10400933;4.038099274363175e-06;0;1;Old +4972;Czechia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4973;Czechia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;44441;1;0.00016935253592399385;10400933;0.00427278975838033;1;0;Young +4974;Czechia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;87560;1;0.0003336672902388538;10400933;0.008418475534839038;1;0;Young +4975;Czechia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;40747;1;0.00015527570894658036;10400933;0.0039176293126780065;0;1;Old +4976;Czechia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;821;1;3.128607186912962e-06;10400933;7.893522629171825e-05;0;1;Old +4977;Czechia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +4978;Czechia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;526;1;2.004442606962507e-06;10400933;5.0572386150357854e-05;1;0;Young +4979;Czechia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2410;1;9.183853009086771e-06;10400933;0.0002317099821717917;1;0;Young +4980;Czechia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2032;1;7.743398055794323e-06;10400933;0.00019536708870252314;0;1;Old +4981;Czechia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;116;1;4.4204437720085703e-07;10400933;1.1152845614907816e-05;0;1;Old +4982;Czechia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;893;1;3.4029795589686665e-06;10400933;8.585768219062655e-05;1;0;Young +4983;Czechia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;4559;1;1.7373106169471612e-05;10400933;0.00043832606171004084;1;0;Young +4984;Czechia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3408;1;1.2986958943970006e-05;10400933;0.0003276629125483262;0;1;Old +4985;Czechia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;136;1;5.182589249941082e-07;10400933;1.3075750031271233e-05;0;1;Old +4986;Czechia;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;4198;1;1.599743358180343e-05;10400933;0.00040361763699468117;1;0;Young +4987;Czechia;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;16157;1;6.1569922434778e-05;10400933;0.001553418332759186;1;0;Young +4988;Czechia;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;9402;1;3.5828458917607396e-05;10400933;0.0009039573661324421;0;1;Old +4989;Czechia;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;183;1;6.973631123082485e-07;10400933;1.7594575409725264e-05;0;1;Old +4990;Czechia;M;Plant and machine operators, and assemblers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +4991;Czechia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5954;1;2.2689070878050884e-05;10400933;0.0005724486447513891;1;0;Young +4992;Czechia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;12565;1;4.7881789651110076e-05;10400933;0.0012080646995803164;1;0;Young +4993;Czechia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4985;1;1.8996476037467863e-05;10400933;0.0004792839257785816;0;1;Old +4994;Czechia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;201;1;7.659562053221747e-07;10400933;1.9325189384452336e-05;0;1;Old +4995;Czechia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;17622;1;6.715263806063364e-05;10400933;0.0016942710812578065;1;0;Young +4996;Czechia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;64312;1;0.0002450754998839786;10400933;0.006183291441258202;1;0;Young +4997;Czechia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;34154;1;0.0001301515832665351;10400933;0.0032837438718238067;0;1;Old +4998;Czechia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;729;1;2.7780202670640067e-06;10400933;7.008986597644653e-05;0;1;Old +4999;Czechia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5000;Czechia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;312;1;1.188946945574719e-06;10400933;2.99973088952693e-05;1;0;Young +5001;Czechia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;525;1;2.0006318795728442e-06;10400933;5.047624092953969e-05;1;0;Young +5002;Czechia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;310;1;1.1813254907953937e-06;10400933;2.9805018453632956e-05;0;1;Old +5003;Czechia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;14;1;5.335018345527585e-08;10400933;1.3460330914543917e-06;0;1;Old +5004;Czechia;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;203;1;7.735776601014998e-07;10400933;1.951747982608868e-05;1;0;Young +5005;Czechia;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;387;1;1.4747514997994108e-06;10400933;3.7208200456632115e-05;1;0;Young +5006;Czechia;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;171;1;6.516343836322978e-07;10400933;1.644083275990721e-05;0;1;Old +5007;Czechia;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;17;1;6.478236562426352e-08;10400933;1.634468753908904e-06;0;1;Old +5008;Czechia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;1;0;Young +5009;Czechia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;71;1;2.705616446660418e-07;10400933;6.826310678090129e-06;1;0;Young +5010;Czechia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;34;1;1.2956473124852705e-07;10400933;3.268937507817808e-06;0;1;Old +5011;Czechia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +5012;Czechia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;22;1;8.383600257257633e-08;10400933;2.1151948579997585e-06;1;0;Young +5013;Czechia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;97;1;3.6964055679726836e-07;10400933;9.32608641936257e-06;1;0;Young +5014;Czechia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;93;1;3.543976472386181e-07;10400933;8.941505536089888e-06;0;1;Old +5015;Czechia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;22;1;8.383600257257633e-08;10400933;2.1151948579997585e-06;0;1;Old +5016;Czechia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;254;1;9.679247569742904e-07;10400933;2.4420886087815392e-05;1;0;Young +5017;Czechia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;564;1;2.149250247769684e-06;10400933;5.422590454144835e-05;1;0;Young +5018;Czechia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;300;1;1.1432182168987682e-06;10400933;2.884356624545125e-05;0;1;Old +5019;Czechia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;38;1;1.448076408071773e-07;10400933;3.6535183910904917e-06;0;1;Old +5020;Czechia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;805;1;3.0676355486783614e-06;10400933;7.739690275862753e-05;1;0;Young +5021;Czechia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2005;1;7.640508416273433e-06;10400933;0.00019277116774043252;1;0;Young +5022;Czechia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;1153;1;4.393768680280932e-06;10400933;0.00011085543960335096;0;1;Old +5023;Czechia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;53;1;2.019685516521157e-07;10400933;5.095696703363054e-06;0;1;Old +5024;Czechia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;432;1;1.6462342323342262e-06;10400933;4.15347353934498e-05;1;0;Young +5025;Czechia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;1949;1;7.42710768245233e-06;10400933;0.00018738703537461495;1;0;Young +5026;Czechia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;1620;1;6.173378371253348e-06;10400933;0.00015575525772543674;0;1;Old +5027;Czechia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;85;1;3.239118281213176e-07;10400933;8.17234376954452e-06;0;1;Old +5028;Czechia;M;Plant and machine operators, and assemblers;Education   ;Y15-29;38;1;1.448076408071773e-07;10400933;3.6535183910904917e-06;1;0;Young +5029;Czechia;M;Plant and machine operators, and assemblers;Education   ;Y30-49;133;1;5.068267428251205e-07;10400933;1.2787314368816721e-05;1;0;Young +5030;Czechia;M;Plant and machine operators, and assemblers;Education   ;Y50-64;270;1;1.0288963952088914e-06;10400933;2.5959209620906123e-05;0;1;Old +5031;Czechia;M;Plant and machine operators, and assemblers;Education   ;Y65-84;83;1;3.1629037334199253e-07;10400933;7.980053327908178e-06;0;1;Old +5032;Czechia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;658;1;2.507458622397965e-06;10400933;6.32635552983564e-05;1;0;Young +5033;Czechia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2662;1;1.0144156311281737e-05;10400933;0.00025593857781797076;1;0;Young +5034;Czechia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2082;1;7.933934425277452e-06;10400933;0.00020017434974343168;0;1;Old +5035;Czechia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;128;1;4.877731058768077e-07;10400933;1.2306588264725867e-05;0;1;Old +5036;Czechia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;120;1;4.572872867595073e-07;10400933;1.15374264981805e-05;1;0;Young +5037;Czechia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;345;1;1.3147009494335833e-06;10400933;3.317010118226894e-05;1;0;Young +5038;Czechia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;281;1;1.0708143964951796e-06;10400933;2.7016807049906003e-05;0;1;Old +5039;Czechia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;38;1;1.448076408071773e-07;10400933;3.6535183910904917e-06;0;1;Old +5040;Czechia;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;382;1;1.455697862851098e-06;10400933;3.672747435254126e-05;1;0;Young +5041;Czechia;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;1206;1;4.595737231933048e-06;10400933;0.00011595113630671402;1;0;Young +5042;Czechia;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;780;1;2.9723673639367973e-06;10400933;7.499327223817325e-05;0;1;Old +5043;Czechia;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;41;1;1.56239822976165e-07;10400933;3.9419540535450045e-06;0;1;Old +5044;Czechia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;22;1;8.383600257257633e-08;10400933;2.1151948579997585e-06;1;0;Young +5045;Czechia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;52;1;1.9815782426245315e-07;10400933;4.999551482544883e-06;1;0;Young +5046;Czechia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;34;1;1.2956473124852705e-07;10400933;3.268937507817808e-06;0;1;Old +5047;Czechia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;0;1;Old +5048;Czechia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;1;0;Young +5049;Czechia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;9;1;3.429654650696304e-08;10400933;8.653069873635375e-07;1;0;Young +5050;Czechia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +5051;Czechia;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;6656;1;2.5364201505594003e-05;10400933;0.000639942589765745;1;0;Young +5052;Czechia;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;17549;1;6.687445496118828e-05;10400933;0.0016872524801380799;1;0;Young +5053;Czechia;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;10913;1;4.158646800338752e-05;10400933;0.0010492327947886984;0;1;Old +5054;Czechia;M;Plant and machine operators, and assemblers;Not stated   ;Y65-84;411;1;1.5662089571513124e-06;10400933;3.9515685756268214e-05;0;1;Old +5055;Czechia;M;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +5056;Czechia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;378;1;1.4404549532924478e-06;10400933;3.6342893469268574e-05;1;0;Young +5057;Czechia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;1066;1;4.062235397380289e-06;10400933;0.0001024908053921701;1;0;Young +5058;Czechia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;1183;1;4.508090501970809e-06;10400933;0.00011373979622789609;0;1;Old +5059;Czechia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;122;1;4.6490874153883237e-07;10400933;1.172971693981684e-05;0;1;Old +5060;Czechia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5061;Czechia;M;Elementary occupations;Mining and quarrying   ;Y15-29;59;1;2.2483291599009106e-07;10400933;5.672568028272079e-06;1;0;Young +5062;Czechia;M;Elementary occupations;Mining and quarrying   ;Y30-49;173;1;6.592558384116229e-07;10400933;1.6633123201543553e-05;1;0;Young +5063;Czechia;M;Elementary occupations;Mining and quarrying   ;Y50-64;152;1;5.792305632287092e-07;10400933;1.4614073564361967e-05;0;1;Old +5064;Czechia;M;Elementary occupations;Mining and quarrying   ;Y65-84;11;1;4.1918001286288165e-08;10400933;1.0575974289998792e-06;0;1;Old +5065;Czechia;M;Elementary occupations;Manufacturing   ;Y15-29;3177;1;1.2106680916957956e-05;10400933;0.00030545336653932875;1;0;Young +5066;Czechia;M;Elementary occupations;Manufacturing   ;Y30-49;5040;1;1.9206066043899305e-05;10400933;0.000484571912923581;1;0;Young +5067;Czechia;M;Elementary occupations;Manufacturing   ;Y50-64;3023;1;1.151982889894992e-05;10400933;0.0002906470025333304;0;1;Old +5068;Czechia;M;Elementary occupations;Manufacturing   ;Y65-84;104;1;3.963156485249063e-07;10400933;9.999102965089766e-06;0;1;Old +5069;Czechia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;86;1;3.277225555109802e-07;10400933;8.268488990362692e-06;1;0;Young +5070;Czechia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;224;1;8.536029352844136e-07;10400933;2.1536529463270266e-05;1;0;Young +5071;Czechia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;158;1;6.020949275666846e-07;10400933;1.5190944889270991e-05;0;1;Old +5072;Czechia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +5073;Czechia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;909;1;3.4639511972032677e-06;10400933;8.739600572371729e-05;1;0;Young +5074;Czechia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2581;1;9.83548739271907e-06;10400933;0.00024815081493169893;1;0;Young +5075;Czechia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1725;1;6.573504747167917e-06;10400933;0.00016585050591134468;0;1;Old +5076;Czechia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;126;1;4.801516510974826e-07;10400933;1.2114297823089525e-05;0;1;Old +5077;Czechia;M;Elementary occupations;Construction   ;Y15-29;1277;1;4.8662988765990895e-06;10400933;0.00012277744698480414;1;0;Young +5078;Czechia;M;Elementary occupations;Construction   ;Y30-49;2533;1;9.652572478015266e-06;10400933;0.00024353584433242672;1;0;Young +5079;Czechia;M;Elementary occupations;Construction   ;Y50-64;1368;1;5.213075069058383e-06;10400933;0.00013152666207925768;0;1;Old +5080;Czechia;M;Elementary occupations;Construction   ;Y65-84;42;1;1.6005055036582754e-07;10400933;4.038099274363175e-06;0;1;Old +5081;Czechia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;366;1;1.394726224616497e-06;10400933;3.518915081945053e-05;1;0;Young +5082;Czechia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;564;1;2.149250247769684e-06;10400933;5.422590454144835e-05;1;0;Young +5083;Czechia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;307;1;1.1698933086264062e-06;10400933;2.9516582791178445e-05;0;1;Old +5084;Czechia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;54;1;2.0577927904177827e-07;10400933;5.191841924181225e-06;0;1;Old +5085;Czechia;M;Elementary occupations;Transportation and storage   ;Y15-29;792;1;3.018096092612748e-06;10400933;7.61470148879913e-05;1;0;Young +5086;Czechia;M;Elementary occupations;Transportation and storage   ;Y30-49;1550;1;5.9066274539769685e-06;10400933;0.0001490250922681648;1;0;Young +5087;Czechia;M;Elementary occupations;Transportation and storage   ;Y50-64;1129;1;4.3023112229290305e-06;10400933;0.00010854795430371487;0;1;Old +5088;Czechia;M;Elementary occupations;Transportation and storage   ;Y65-84;67;1;2.5531873510739155e-07;10400933;6.441729794817446e-06;0;1;Old +5089;Czechia;M;Elementary occupations;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5090;Czechia;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;142;1;5.411232893320836e-07;10400933;1.3652621356180257e-05;1;0;Young +5091;Czechia;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;203;1;7.735776601014998e-07;10400933;1.951747982608868e-05;1;0;Young +5092;Czechia;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;136;1;5.182589249941082e-07;10400933;1.3075750031271233e-05;0;1;Old +5093;Czechia;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;14;1;5.335018345527585e-08;10400933;1.3460330914543917e-06;0;1;Old +5094;Czechia;M;Elementary occupations;Information and communication   ;Y15-29;41;1;1.56239822976165e-07;10400933;3.9419540535450045e-06;1;0;Young +5095;Czechia;M;Elementary occupations;Information and communication   ;Y30-49;60;1;2.2864364337975364e-07;10400933;5.76871324909025e-06;1;0;Young +5096;Czechia;M;Elementary occupations;Information and communication   ;Y50-64;26;1;9.907891213122657e-08;10400933;2.4997757412724415e-06;0;1;Old +5097;Czechia;M;Elementary occupations;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +5098;Czechia;M;Elementary occupations;Financial and insurance activities   ;Y15-29;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;1;0;Young +5099;Czechia;M;Elementary occupations;Financial and insurance activities   ;Y30-49;14;1;5.335018345527585e-08;10400933;1.3460330914543917e-06;1;0;Young +5100;Czechia;M;Elementary occupations;Financial and insurance activities   ;Y50-64;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +5101;Czechia;M;Elementary occupations;Real estate activities   ;Y15-29;35;1;1.3337545863818962e-07;10400933;3.3650827286359792e-06;1;0;Young +5102;Czechia;M;Elementary occupations;Real estate activities   ;Y30-49;73;1;2.7818309944536694e-07;10400933;7.018601119726471e-06;1;0;Young +5103;Czechia;M;Elementary occupations;Real estate activities   ;Y50-64;63;1;2.400758255487413e-07;10400933;6.0571489115447625e-06;0;1;Old +5104;Czechia;M;Elementary occupations;Real estate activities   ;Y65-84;12;1;4.5728728675950726e-08;10400933;1.15374264981805e-06;0;1;Old +5105;Czechia;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;103;1;3.9250492113524375e-07;10400933;9.902957744271595e-06;1;0;Young +5106;Czechia;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;163;1;6.211485645149974e-07;10400933;1.5671670993361845e-05;1;0;Young +5107;Czechia;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;106;1;4.039371033042314e-07;10400933;1.0191393406726108e-05;0;1;Old +5108;Czechia;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;21;1;8.002527518291377e-08;10400933;2.0190496371815874e-06;0;1;Old +5109;Czechia;M;Elementary occupations;Administrative and support service activities   ;Y15-29;1275;1;4.858677421819764e-06;10400933;0.0001225851565431678;1;0;Young +5110;Czechia;M;Elementary occupations;Administrative and support service activities   ;Y30-49;3139;1;1.1961873276150777e-05;10400933;0.0003017998481482382;1;0;Young +5111;Czechia;M;Elementary occupations;Administrative and support service activities   ;Y50-64;3004;1;1.1447425078546332e-05;10400933;0.00028882024333778516;0;1;Old +5112;Czechia;M;Elementary occupations;Administrative and support service activities   ;Y65-84;290;1;1.1051109430021426e-06;10400933;2.788211403726954e-05;0;1;Old +5113;Czechia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;917;1;3.494437016320568e-06;10400933;8.816516749026265e-05;1;0;Young +5114;Czechia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2098;1;7.994906063512052e-06;10400933;0.0002017126732765224;1;0;Young +5115;Czechia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;1501;1;5.719901811883504e-06;10400933;0.00014431397644807441;0;1;Old +5116;Czechia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;63;1;2.400758255487413e-07;10400933;6.0571489115447625e-06;0;1;Old +5117;Czechia;M;Elementary occupations;Education   ;Y15-29;39;1;1.4861836819683987e-07;10400933;3.7496636119086623e-06;1;0;Young +5118;Czechia;M;Elementary occupations;Education   ;Y30-49;76;1;2.896152816143546e-07;10400933;7.307036782180983e-06;1;0;Young +5119;Czechia;M;Elementary occupations;Education   ;Y50-64;122;1;4.6490874153883237e-07;10400933;1.172971693981684e-05;0;1;Old +5120;Czechia;M;Elementary occupations;Education   ;Y65-84;45;1;1.7148273253481523e-07;10400933;4.326534936817687e-06;0;1;Old +5121;Czechia;M;Elementary occupations;Human health and social work activities   ;Y15-29;171;1;6.516343836322978e-07;10400933;1.644083275990721e-05;1;0;Young +5122;Czechia;M;Elementary occupations;Human health and social work activities   ;Y30-49;387;1;1.4747514997994108e-06;10400933;3.7208200456632115e-05;1;0;Young +5123;Czechia;M;Elementary occupations;Human health and social work activities   ;Y50-64;280;1;1.067003669105517e-06;10400933;2.6920661829087834e-05;0;1;Old +5124;Czechia;M;Elementary occupations;Human health and social work activities   ;Y65-84;32;1;1.2194327646920193e-07;10400933;3.076647066181467e-06;0;1;Old +5125;Czechia;M;Elementary occupations;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5126;Czechia;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;125;1;4.7634092370782007e-07;10400933;1.2018152602271354e-05;1;0;Young +5127;Czechia;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;132;1;5.03016015435458e-07;10400933;1.269116914799855e-05;1;0;Young +5128;Czechia;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;96;1;3.658298294076058e-07;10400933;9.2299411985444e-06;0;1;Old +5129;Czechia;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;43;1;1.638612777554901e-07;10400933;4.134244495181346e-06;0;1;Old +5130;Czechia;M;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5131;Czechia;M;Elementary occupations;Other service activities   ;Y15-29;158;1;6.020949275666846e-07;10400933;1.5190944889270991e-05;1;0;Young +5132;Czechia;M;Elementary occupations;Other service activities   ;Y30-49;450;1;1.7148273253481523e-06;10400933;4.326534936817687e-05;1;0;Young +5133;Czechia;M;Elementary occupations;Other service activities   ;Y50-64;353;1;1.3451867685508839e-06;10400933;3.39392629488143e-05;0;1;Old +5134;Czechia;M;Elementary occupations;Other service activities   ;Y65-84;30;1;1.1432182168987682e-07;10400933;2.884356624545125e-06;0;1;Old +5135;Czechia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;23;1;8.764672996223889e-08;10400933;2.211340078817929e-06;1;0;Young +5136;Czechia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;1;0;Young +5137;Czechia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;33;1;1.257540038588645e-07;10400933;3.1727922869996375e-06;0;1;Old +5138;Czechia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +5139;Czechia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;1;0;Young +5140;Czechia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5141;Czechia;M;Elementary occupations;Not stated   ;Y15-29;3398;1;1.294885167007338e-05;10400933;0.00032670146034014446;1;0;Young +5142;Czechia;M;Elementary occupations;Not stated   ;Y30-49;6549;1;2.495645367490011e-05;10400933;0.0006296550511382008;1;0;Young +5143;Czechia;M;Elementary occupations;Not stated   ;Y50-64;4742;1;1.8070469281779863e-05;10400933;0.0004559206371197661;0;1;Old +5144;Czechia;M;Elementary occupations;Not stated   ;Y65-84;209;1;7.964420244394752e-07;10400933;2.0094351150997705e-05;0;1;Old +5145;Czechia;M;Elementary occupations;Not stated   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +5146;Czechia;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;580;1;2.210221886004285e-06;10400933;5.576422807453908e-05;1;0;Young +5147;Czechia;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;2163;1;8.242603343840119e-06;10400933;0.0002079621126297035;1;0;Young +5148;Czechia;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;1770;1;6.744987479702732e-06;10400933;0.00017017704084816237;0;1;Old +5149;Czechia;M;Not stated;Agriculture, forestry and fishing   ;Y65-84;431;1;1.6424235049445636e-06;10400933;4.143859017263163e-05;0;1;Old +5150;Czechia;M;Not stated;Agriculture, forestry and fishing   ;Y_GE85;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +5151;Czechia;M;Not stated;Mining and quarrying   ;Y15-29;67;1;2.5531873510739155e-07;10400933;6.441729794817446e-06;1;0;Young +5152;Czechia;M;Not stated;Mining and quarrying   ;Y30-49;298;1;1.135596762119443e-06;10400933;2.8651275803814907e-05;1;0;Young +5153;Czechia;M;Not stated;Mining and quarrying   ;Y50-64;207;1;7.8882056966015e-07;10400933;1.9902060709361363e-05;0;1;Old +5154;Czechia;M;Not stated;Mining and quarrying   ;Y65-84;19;1;7.240382040358865e-08;10400933;1.8267591955452458e-06;0;1;Old +5155;Czechia;M;Not stated;Manufacturing   ;Y15-29;4053;1;1.5444878110302357e-05;10400933;0.0003896765799760464;1;0;Young +5156;Czechia;M;Not stated;Manufacturing   ;Y30-49;10685;1;4.071762215854446e-05;10400933;0.0010273116844421552;1;0;Young +5157;Czechia;M;Not stated;Manufacturing   ;Y50-64;6218;1;2.36951029089218e-05;10400933;0.0005978309830473863;0;1;Old +5158;Czechia;M;Not stated;Manufacturing   ;Y65-84;962;1;3.6659197488553834e-06;10400933;9.249170242708033e-05;0;1;Old +5159;Czechia;M;Not stated;Manufacturing   ;Y_GE85;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +5160;Czechia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;148;1;5.63987653670059e-07;10400933;1.4229492681089282e-05;1;0;Young +5161;Czechia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;505;1;1.924417331779593e-06;10400933;4.855333651317627e-05;1;0;Young +5162;Czechia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;384;1;1.4633193176304232e-06;10400933;3.69197647941776e-05;0;1;Old +5163;Czechia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;63;1;2.400758255487413e-07;10400933;6.0571489115447625e-06;0;1;Old +5164;Czechia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5165;Czechia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;110;1;4.1918001286288164e-07;10400933;1.0575974289998791e-05;1;0;Young +5166;Czechia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;451;1;1.7186380527378147e-06;10400933;4.3361494588995044e-05;1;0;Young +5167;Czechia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;331;1;1.2613507659783075e-06;10400933;3.182406809081455e-05;0;1;Old +5168;Czechia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;46;1;1.7529345992447778e-07;10400933;4.422680157635858e-06;0;1;Old +5169;Czechia;M;Not stated;Construction   ;Y15-29;2129;1;8.11303861259159e-06;10400933;0.0002046931751218857;1;0;Young +5170;Czechia;M;Not stated;Construction   ;Y30-49;9399;1;3.581702673543841e-05;10400933;0.0009036689304699877;1;0;Young +5171;Czechia;M;Not stated;Construction   ;Y50-64;4564;1;1.7392159806419927e-05;10400933;0.00043880678781413167;0;1;Old +5172;Czechia;M;Not stated;Construction   ;Y65-84;492;1;1.8748778757139799e-06;10400933;4.730344864254005e-05;0;1;Old +5173;Czechia;M;Not stated;Construction   ;Y_GE85;4;1;1.524290955865024e-08;10400933;3.8458088327268335e-07;0;1;Old +5174;Czechia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1921;1;7.320407315541779e-06;10400933;0.00018469496919170617;1;0;Young +5175;Czechia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7306;1;2.7841174308874666e-05;10400933;0.0007024369832975561;1;0;Young +5176;Czechia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3819;1;1.4553167901121318e-05;10400933;0.0003671785983045944;0;1;Old +5177;Czechia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;631;1;2.4045689828770757e-06;10400933;6.066763433626579e-05;0;1;Old +5178;Czechia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;6;1;2.2864364337975363e-08;10400933;5.76871324909025e-07;0;1;Old +5179;Czechia;M;Not stated;Transportation and storage   ;Y15-29;787;1;2.999042455664435e-06;10400933;7.566628878390044e-05;1;0;Young +5180;Czechia;M;Not stated;Transportation and storage   ;Y30-49;3012;1;1.1477910897663632e-05;10400933;0.00028958940510433054;1;0;Young +5181;Czechia;M;Not stated;Transportation and storage   ;Y50-64;1926;1;7.339460952490092e-06;10400933;0.00018517569529579703;0;1;Old +5182;Czechia;M;Not stated;Transportation and storage   ;Y65-84;163;1;6.211485645149974e-07;10400933;1.5671670993361845e-05;0;1;Old +5183;Czechia;M;Not stated;Transportation and storage   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +5184;Czechia;M;Not stated;Accommodation and food service activities   ;Y15-29;697;1;2.6560769905948048e-06;10400933;6.701321891026507e-05;1;0;Young +5185;Czechia;M;Not stated;Accommodation and food service activities   ;Y30-49;2174;1;8.284521345126406e-06;10400933;0.0002090197100587034;1;0;Young +5186;Czechia;M;Not stated;Accommodation and food service activities   ;Y50-64;1106;1;4.2146644929667916e-06;10400933;0.00010633661422489694;0;1;Old +5187;Czechia;M;Not stated;Accommodation and food service activities   ;Y65-84;121;1;4.610980141491698e-07;10400933;1.1633571718998671e-05;0;1;Old +5188;Czechia;M;Not stated;Accommodation and food service activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +5189;Czechia;M;Not stated;Information and communication   ;Y15-29;825;1;3.1438500964716126e-06;10400933;7.931980717499094e-05;1;0;Young +5190;Czechia;M;Not stated;Information and communication   ;Y30-49;1610;1;6.135271097356723e-06;10400933;0.00015479380551725505;1;0;Young +5191;Czechia;M;Not stated;Information and communication   ;Y50-64;432;1;1.6462342323342262e-06;10400933;4.15347353934498e-05;0;1;Old +5192;Czechia;M;Not stated;Information and communication   ;Y65-84;109;1;4.153692854732191e-07;10400933;1.047982906918062e-05;0;1;Old +5193;Czechia;M;Not stated;Information and communication   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +5194;Czechia;M;Not stated;Financial and insurance activities   ;Y15-29;398;1;1.516669501085699e-06;10400933;3.826579788563199e-05;1;0;Young +5195;Czechia;M;Not stated;Financial and insurance activities   ;Y30-49;938;1;3.574462291503482e-06;10400933;9.018421712744424e-05;1;0;Young +5196;Czechia;M;Not stated;Financial and insurance activities   ;Y50-64;528;1;2.012064061741832e-06;10400933;5.07646765919942e-05;0;1;Old +5197;Czechia;M;Not stated;Financial and insurance activities   ;Y65-84;115;1;4.382336498111945e-07;10400933;1.1056700394089645e-05;0;1;Old +5198;Czechia;M;Not stated;Real estate activities   ;Y15-29;138;1;5.258803797734334e-07;10400933;1.3268040472907575e-05;1;0;Young +5199;Czechia;M;Not stated;Real estate activities   ;Y30-49;672;1;2.5608088058532406e-06;10400933;6.46095883898108e-05;1;0;Young +5200;Czechia;M;Not stated;Real estate activities   ;Y50-64;475;1;1.8100955100897163e-06;10400933;4.5668979888631144e-05;0;1;Old +5201;Czechia;M;Not stated;Real estate activities   ;Y65-84;153;1;5.830412906183718e-07;10400933;1.4710218785180138e-05;0;1;Old +5202;Czechia;M;Not stated;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5203;Czechia;M;Not stated;Professional, scientific and technical activities   ;Y15-29;671;1;2.556998078463578e-06;10400933;6.451344316899263e-05;1;0;Young +5204;Czechia;M;Not stated;Professional, scientific and technical activities   ;Y30-49;1957;1;7.457593501569631e-06;10400933;0.0001881561971411603;1;0;Young +5205;Czechia;M;Not stated;Professional, scientific and technical activities   ;Y50-64;1443;1;5.4988796232830745e-06;10400933;0.00013873755364062051;0;1;Old +5206;Czechia;M;Not stated;Professional, scientific and technical activities   ;Y65-84;747;1;2.8466133600779327e-06;10400933;7.182047995117361e-05;0;1;Old +5207;Czechia;M;Not stated;Professional, scientific and technical activities   ;Y_GE85;18;1;6.859309301392609e-08;10400933;1.730613974727075e-06;0;1;Old +5208;Czechia;M;Not stated;Administrative and support service activities   ;Y15-29;490;1;1.8672564209346547e-06;10400933;4.711115820090371e-05;1;0;Young +5209;Czechia;M;Not stated;Administrative and support service activities   ;Y30-49;1294;1;4.931081242223354e-06;10400933;0.00012441191573871305;1;0;Young +5210;Czechia;M;Not stated;Administrative and support service activities   ;Y50-64;1012;1;3.856456118338511e-06;10400933;9.729896346798888e-05;0;1;Old +5211;Czechia;M;Not stated;Administrative and support service activities   ;Y65-84;245;1;9.336282104673273e-07;10400933;2.3555579100451854e-05;0;1;Old +5212;Czechia;M;Not stated;Administrative and support service activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +5213;Czechia;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;517;1;1.970146060455544e-06;10400933;4.970707916299432e-05;1;0;Young +5214;Czechia;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;1872;1;7.133681673448313e-06;10400933;0.0001799838533716158;1;0;Young +5215;Czechia;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;883;1;3.364872285072041e-06;10400933;8.489622998244484e-05;0;1;Old +5216;Czechia;M;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;76;1;2.896152816143546e-07;10400933;7.307036782180983e-06;0;1;Old +5217;Czechia;M;Not stated;Education   ;Y15-29;271;1;1.032707122598554e-06;10400933;2.6055354841724296e-05;1;0;Young +5218;Czechia;M;Not stated;Education   ;Y30-49;501;1;1.9091744222209427e-06;10400933;4.816875562990359e-05;1;0;Young +5219;Czechia;M;Not stated;Education   ;Y50-64;481;1;1.8329598744276917e-06;10400933;4.624585121354017e-05;0;1;Old +5220;Czechia;M;Not stated;Education   ;Y65-84;177;1;6.744987479702732e-07;10400933;1.7017704084816237e-05;0;1;Old +5221;Czechia;M;Not stated;Education   ;Y_GE85;3;1;1.1432182168987682e-08;10400933;2.884356624545125e-07;0;1;Old +5222;Czechia;M;Not stated;Human health and social work activities   ;Y15-29;195;1;7.430918409841993e-07;10400933;1.8748318059543313e-05;1;0;Young +5223;Czechia;M;Not stated;Human health and social work activities   ;Y30-49;583;1;2.221654068173273e-06;10400933;5.6052663736993594e-05;1;0;Young +5224;Czechia;M;Not stated;Human health and social work activities   ;Y50-64;484;1;1.8443920565966793e-06;10400933;4.6534286875994685e-05;0;1;Old +5225;Czechia;M;Not stated;Human health and social work activities   ;Y65-84;122;1;4.6490874153883237e-07;10400933;1.172971693981684e-05;0;1;Old +5226;Czechia;M;Not stated;Human health and social work activities   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +5227;Czechia;M;Not stated;Arts, entertainment and recreation   ;Y15-29;380;1;1.448076408071773e-06;10400933;3.653518391090492e-05;1;0;Young +5228;Czechia;M;Not stated;Arts, entertainment and recreation   ;Y30-49;845;1;3.2200646442648638e-06;10400933;8.124271159135436e-05;1;0;Young +5229;Czechia;M;Not stated;Arts, entertainment and recreation   ;Y50-64;383;1;1.4595085902407606e-06;10400933;3.682361957335943e-05;0;1;Old +5230;Czechia;M;Not stated;Arts, entertainment and recreation   ;Y65-84;148;1;5.63987653670059e-07;10400933;1.4229492681089282e-05;0;1;Old +5231;Czechia;M;Not stated;Arts, entertainment and recreation   ;Y_GE85;2;1;7.62145477932512e-09;10400933;1.9229044163634168e-07;0;1;Old +5232;Czechia;M;Not stated;Other service activities   ;Y15-29;311;1;1.1851362181850563e-06;10400933;2.990116367445113e-05;1;0;Young +5233;Czechia;M;Not stated;Other service activities   ;Y30-49;964;1;3.673541203634708e-06;10400933;9.268399286871668e-05;1;0;Young +5234;Czechia;M;Not stated;Other service activities   ;Y50-64;677;1;2.5798624428015536e-06;10400933;6.509031449390165e-05;0;1;Old +5235;Czechia;M;Not stated;Other service activities   ;Y65-84;131;1;4.992052880457954e-07;10400933;1.2595023927180379e-05;0;1;Old +5236;Czechia;M;Not stated;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5237;Czechia;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;27;1;1.0288963952088914e-07;10400933;2.5959209620906126e-06;1;0;Young +5238;Czechia;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;61;1;2.3245437076941619e-07;10400933;5.86485846990842e-06;1;0;Young +5239;Czechia;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;30;1;1.1432182168987682e-07;10400933;2.884356624545125e-06;0;1;Old +5240;Czechia;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;10;1;3.8107273896625604e-08;10400933;9.614522081817084e-07;0;1;Old +5241;Czechia;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5242;Czechia;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;7;1;2.6675091727637924e-08;10400933;6.730165457271958e-07;1;0;Young +5243;Czechia;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;16;1;6.097163823460096e-08;10400933;1.5383235330907334e-06;1;0;Young +5244;Czechia;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;10400933;4.807261040908542e-07;0;1;Old +5245;Czechia;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10400933;9.614522081817084e-08;0;1;Old +5246;Czechia;M;Not stated;Not stated   ;Y15-29;56441;1;0.00021508126459994457;10400933;0.00542653240819838;1;0;Young +5247;Czechia;M;Not stated;Not stated   ;Y30-49;88598;1;0.0003376228252693235;10400933;0.008518274274048299;1;0;Young +5248;Czechia;M;Not stated;Not stated   ;Y50-64;54470;1;0.00020757032091491969;10400933;0.0052370301779657655;0;1;Old +5249;Czechia;M;Not stated;Not stated   ;Y65-84;10235;1;3.900279483319631e-05;10400933;0.0009840463350739785;0;1;Old +5250;Czechia;M;Not stated;Not stated   ;Y_GE85;217;1;8.269278435567757e-07;10400933;2.086351291754307e-05;0;1;Old +5251;Estonia;F;Not applicable;Not applicable  ;Y15-29;65334;1;0.00024897006327621375;1294455;0.050472206449818646;1;0;Young +5252;Estonia;F;Not applicable;Not applicable  ;Y30-49;30966;1;0.00011800298434829085;1294455;0.023922036687254483;1;0;Young +5253;Estonia;F;Not applicable;Not applicable  ;Y50-64;44386;1;0.0001691429459175624;1294455;0.03428933412130974;0;1;Old +5254;Estonia;F;Not applicable;Not applicable  ;Y65-84;122659;1;0.00046742001088862;1294455;0.09475725305244292;0;1;Old +5255;Estonia;F;Not applicable;Not applicable  ;Y_GE85;18361;1;6.996876560159428e-05;1294455;0.014184347852957422;0;1;Old +5256;Estonia;F;Not applicable;Not applicable  ;Y_LT15;97003;1;0.0003696519889794374;1294455;0.07493732883723266;0;1;Old +5257;Estonia;F;Armed forces occupations;Accommodation and food service activities   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5258;Estonia;F;Armed forces occupations;Accommodation and food service activities   ;Y50-64;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5259;Estonia;F;Armed forces occupations;Administrative and support service activities   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5260;Estonia;F;Armed forces occupations;Administrative and support service activities   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5261;Estonia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;64;1;2.4388655293840386e-07;1294455;4.9441656913527315e-05;1;0;Young +5262;Estonia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;215;1;8.193063887774505e-07;1294455;0.00016609306619388083;1;0;Young +5263;Estonia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;71;1;2.705616446660418e-07;1294455;5.4849338138444365e-05;0;1;Old +5264;Estonia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5265;Estonia;F;Armed forces occupations;Education   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5266;Estonia;F;Armed forces occupations;Education   ;Y30-49;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +5267;Estonia;F;Armed forces occupations;Human health and social work activities   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5268;Estonia;F;Armed forces occupations;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5269;Estonia;F;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5270;Estonia;F;Armed forces occupations;Not stated   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5271;Estonia;F;Managers;Agriculture, forestry and fishing   ;Y15-29;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +5272;Estonia;F;Managers;Agriculture, forestry and fishing   ;Y30-49;86;1;3.277225555109802e-07;1294455;6.643722647755233e-05;1;0;Young +5273;Estonia;F;Managers;Agriculture, forestry and fishing   ;Y50-64;86;1;3.277225555109802e-07;1294455;6.643722647755233e-05;0;1;Old +5274;Estonia;F;Managers;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5275;Estonia;F;Managers;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5276;Estonia;F;Managers;Mining and quarrying   ;Y30-49;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +5277;Estonia;F;Managers;Mining and quarrying   ;Y50-64;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +5278;Estonia;F;Managers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5279;Estonia;F;Managers;Manufacturing   ;Y15-29;131;1;4.992052880457954e-07;1294455;0.00010120089149487622;1;0;Young +5280;Estonia;F;Managers;Manufacturing   ;Y30-49;1172;1;4.466172500684521e-06;1294455;0.0009054003422289689;1;0;Young +5281;Estonia;F;Managers;Manufacturing   ;Y50-64;631;1;2.4045689828770757e-06;1294455;0.00048746383613180837;0;1;Old +5282;Estonia;F;Managers;Manufacturing   ;Y65-84;50;1;1.9053636948312803e-07;1294455;3.8626294463693215e-05;0;1;Old +5283;Estonia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;1;0;Young +5284;Estonia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;1;0;Young +5285;Estonia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;0;1;Old +5286;Estonia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5287;Estonia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5288;Estonia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;31;1;1.1813254907953938e-07;1294455;2.3948302567489792e-05;1;0;Young +5289;Estonia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;0;1;Old +5290;Estonia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5291;Estonia;F;Managers;Construction   ;Y15-29;38;1;1.448076408071773e-07;1294455;2.9355983792406842e-05;1;0;Young +5292;Estonia;F;Managers;Construction   ;Y30-49;201;1;7.659562053221747e-07;1294455;0.00015527770374404673;1;0;Young +5293;Estonia;F;Managers;Construction   ;Y50-64;102;1;3.886941937455812e-07;1294455;7.879764070593416e-05;0;1;Old +5294;Estonia;F;Managers;Construction   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +5295;Estonia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;592;1;2.255950614680236e-06;1294455;0.0004573353264501277;1;0;Young +5296;Estonia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3393;1;1.2929798033125067e-05;1294455;0.0026211803423062214;1;0;Young +5297;Estonia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1344;1;5.121617611706481e-06;1294455;0.0010382747951840736;0;1;Old +5298;Estonia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;67;1;2.5531873510739155e-07;1294455;5.175923458134891e-05;0;1;Old +5299;Estonia;F;Managers;Transportation and storage   ;Y15-29;86;1;3.277225555109802e-07;1294455;6.643722647755233e-05;1;0;Young +5300;Estonia;F;Managers;Transportation and storage   ;Y30-49;500;1;1.9053636948312803e-06;1294455;0.00038626294463693216;1;0;Young +5301;Estonia;F;Managers;Transportation and storage   ;Y50-64;197;1;7.507132957635244e-07;1294455;0.00015218760018695127;0;1;Old +5302;Estonia;F;Managers;Transportation and storage   ;Y65-84;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +5303;Estonia;F;Managers;Accommodation and food service activities   ;Y15-29;317;1;1.2080005825230317e-06;1294455;0.000244890706899815;1;0;Young +5304;Estonia;F;Managers;Accommodation and food service activities   ;Y30-49;810;1;3.086689185626674e-06;1294455;0.00062574597031183;1;0;Young +5305;Estonia;F;Managers;Accommodation and food service activities   ;Y50-64;368;1;1.4023476793958223e-06;1294455;0.0002842895272527821;0;1;Old +5306;Estonia;F;Managers;Accommodation and food service activities   ;Y65-84;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;0;1;Old +5307;Estonia;F;Managers;Information and communication   ;Y15-29;128;1;4.877731058768077e-07;1294455;9.888331382705463e-05;1;0;Young +5308;Estonia;F;Managers;Information and communication   ;Y30-49;418;1;1.5928840488789504e-06;1294455;0.00032291582171647525;1;0;Young +5309;Estonia;F;Managers;Information and communication   ;Y50-64;104;1;3.963156485249063e-07;1294455;8.034269248448189e-05;0;1;Old +5310;Estonia;F;Managers;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +5311;Estonia;F;Managers;Financial and insurance activities   ;Y15-29;93;1;3.543976472386181e-07;1294455;7.184490770246938e-05;1;0;Young +5312;Estonia;F;Managers;Financial and insurance activities   ;Y30-49;522;1;1.9891996974038564e-06;1294455;0.0004032585142009572;1;0;Young +5313;Estonia;F;Managers;Financial and insurance activities   ;Y50-64;97;1;3.6964055679726836e-07;1294455;7.493501125956484e-05;0;1;Old +5314;Estonia;F;Managers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5315;Estonia;F;Managers;Real estate activities   ;Y15-29;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;1;0;Young +5316;Estonia;F;Managers;Real estate activities   ;Y30-49;183;1;6.973631123082485e-07;1294455;0.00014137223773711717;1;0;Young +5317;Estonia;F;Managers;Real estate activities   ;Y50-64;137;1;5.220696523837708e-07;1294455;0.00010583604683051941;0;1;Old +5318;Estonia;F;Managers;Real estate activities   ;Y65-84;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +5319;Estonia;F;Managers;Professional, scientific and technical activities   ;Y15-29;133;1;5.068267428251205e-07;1294455;0.00010274594327342395;1;0;Young +5320;Estonia;F;Managers;Professional, scientific and technical activities   ;Y30-49;698;1;2.6598877179844674e-06;1294455;0.0005392230707131573;1;0;Young +5321;Estonia;F;Managers;Professional, scientific and technical activities   ;Y50-64;247;1;9.412496652466524e-07;1294455;0.0001908138946506445;0;1;Old +5322;Estonia;F;Managers;Professional, scientific and technical activities   ;Y65-84;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;0;1;Old +5323;Estonia;F;Managers;Administrative and support service activities   ;Y15-29;113;1;4.3061219503186933e-07;1294455;8.729542548794667e-05;1;0;Young +5324;Estonia;F;Managers;Administrative and support service activities   ;Y30-49;522;1;1.9891996974038564e-06;1294455;0.0004032585142009572;1;0;Young +5325;Estonia;F;Managers;Administrative and support service activities   ;Y50-64;219;1;8.345492983361008e-07;1294455;0.0001691831697509763;0;1;Old +5326;Estonia;F;Managers;Administrative and support service activities   ;Y65-84;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +5327;Estonia;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;183;1;6.973631123082485e-07;1294455;0.00014137223773711717;1;0;Young +5328;Estonia;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;1233;1;4.698626871453937e-06;1294455;0.0009525244214746747;1;0;Young +5329;Estonia;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;653;1;2.488404985449652e-06;1294455;0.0005044594056958333;0;1;Old +5330;Estonia;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;47;1;1.7910418731414036e-07;1294455;3.630871679587162e-05;0;1;Old +5331;Estonia;F;Managers;Education   ;Y15-29;103;1;3.9250492113524375e-07;1294455;7.957016659520802e-05;1;0;Young +5332;Estonia;F;Managers;Education   ;Y30-49;1390;1;5.296911071630959e-06;1294455;0.0010738109860906713;1;0;Young +5333;Estonia;F;Managers;Education   ;Y50-64;1314;1;5.007295790016605e-06;1294455;0.0010150990185058576;0;1;Old +5334;Estonia;F;Managers;Education   ;Y65-84;106;1;4.039371033042314e-07;1294455;8.188774426302962e-05;0;1;Old +5335;Estonia;F;Managers;Human health and social work activities   ;Y15-29;60;1;2.2864364337975364e-07;1294455;4.635155335643186e-05;1;0;Young +5336;Estonia;F;Managers;Human health and social work activities   ;Y30-49;762;1;2.9037742709228713e-06;1294455;0.0005886647276266846;1;0;Young +5337;Estonia;F;Managers;Human health and social work activities   ;Y50-64;496;1;1.89012078527263e-06;1294455;0.0003831728410798367;0;1;Old +5338;Estonia;F;Managers;Human health and social work activities   ;Y65-84;86;1;3.277225555109802e-07;1294455;6.643722647755233e-05;0;1;Old +5339;Estonia;F;Managers;Arts, entertainment and recreation   ;Y15-29;87;1;3.3153328290064277e-07;1294455;6.720975236682619e-05;1;0;Young +5340;Estonia;F;Managers;Arts, entertainment and recreation   ;Y30-49;596;1;2.271193524238886e-06;1294455;0.0004604254300072231;1;0;Young +5341;Estonia;F;Managers;Arts, entertainment and recreation   ;Y50-64;416;1;1.5852625940996252e-06;1294455;0.00032137076993792756;0;1;Old +5342;Estonia;F;Managers;Arts, entertainment and recreation   ;Y65-84;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;0;1;Old +5343;Estonia;F;Managers;Other service activities   ;Y15-29;118;1;4.496658319801821e-07;1294455;9.115805493431599e-05;1;0;Young +5344;Estonia;F;Managers;Other service activities   ;Y30-49;457;1;1.7415024170757901e-06;1294455;0.000353044331398156;1;0;Young +5345;Estonia;F;Managers;Other service activities   ;Y50-64;207;1;7.8882056966015e-07;1294455;0.0001599128590796899;0;1;Old +5346;Estonia;F;Managers;Other service activities   ;Y65-84;39;1;1.4861836819683987e-07;1294455;3.0128509681680707e-05;0;1;Old +5347;Estonia;F;Managers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5348;Estonia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5349;Estonia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;1;0;Young +5350;Estonia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5351;Estonia;F;Managers;Not stated   ;Y15-29;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;1;0;Young +5352;Estonia;F;Managers;Not stated   ;Y30-49;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;1;0;Young +5353;Estonia;F;Managers;Not stated   ;Y50-64;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5354;Estonia;F;Managers;Not stated   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5355;Estonia;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;46;1;1.7529345992447778e-07;1294455;3.553619090659776e-05;1;0;Young +5356;Estonia;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;252;1;9.603033021949652e-07;1294455;0.0001946765240970138;1;0;Young +5357;Estonia;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;212;1;8.078742066084628e-07;1294455;0.00016377548852605924;0;1;Old +5358;Estonia;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;39;1;1.4861836819683987e-07;1294455;3.0128509681680707e-05;0;1;Old +5359;Estonia;F;Professionals;Mining and quarrying   ;Y15-29;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;1;0;Young +5360;Estonia;F;Professionals;Mining and quarrying   ;Y30-49;48;1;1.829149147038029e-07;1294455;3.7081242685145484e-05;1;0;Young +5361;Estonia;F;Professionals;Mining and quarrying   ;Y50-64;53;1;2.019685516521157e-07;1294455;4.094387213151481e-05;0;1;Old +5362;Estonia;F;Professionals;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5363;Estonia;F;Professionals;Manufacturing   ;Y15-29;477;1;1.8177169648690413e-06;1294455;0.00036849484918363327;1;0;Young +5364;Estonia;F;Professionals;Manufacturing   ;Y30-49;1645;1;6.268646555994912e-06;1294455;0.0012708050878555068;1;0;Young +5365;Estonia;F;Professionals;Manufacturing   ;Y50-64;1070;1;4.07747830693894e-06;1294455;0.0008266027015230348;0;1;Old +5366;Estonia;F;Professionals;Manufacturing   ;Y65-84;92;1;3.5058691984895557e-07;1294455;7.107238181319552e-05;0;1;Old +5367;Estonia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;57;1;2.1721146121076594e-07;1294455;4.4033975688610265e-05;1;0;Young +5368;Estonia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;212;1;8.078742066084628e-07;1294455;0.00016377548852605924;1;0;Young +5369;Estonia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;137;1;5.220696523837708e-07;1294455;0.00010583604683051941;0;1;Old +5370;Estonia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +5371;Estonia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;1;0;Young +5372;Estonia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;79;1;3.010474637833423e-07;1294455;6.102954525263528e-05;1;0;Young +5373;Estonia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;69;1;2.629401898867167e-07;1294455;5.3304286359896634e-05;0;1;Old +5374;Estonia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5375;Estonia;F;Professionals;Construction   ;Y15-29;127;1;4.839623784871452e-07;1294455;9.811078793778077e-05;1;0;Young +5376;Estonia;F;Professionals;Construction   ;Y30-49;455;1;1.7338809622964651e-06;1294455;0.00035149927961960825;1;0;Young +5377;Estonia;F;Professionals;Construction   ;Y50-64;388;1;1.4785622271890734e-06;1294455;0.00029974004503825936;0;1;Old +5378;Estonia;F;Professionals;Construction   ;Y65-84;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;0;1;Old +5379;Estonia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;554;1;2.1111429738730584e-06;1294455;0.0004279793426577208;1;0;Young +5380;Estonia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1906;1;7.26324640469684e-06;1294455;0.0014724343449559853;1;0;Young +5381;Estonia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1064;1;4.054613942600964e-06;1294455;0.0008219675461873916;0;1;Old +5382;Estonia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;140;1;5.335018345527585e-07;1294455;0.000108153624498341;0;1;Old +5383;Estonia;F;Professionals;Transportation and storage   ;Y15-29;154;1;5.868520180080343e-07;1294455;0.0001189689869481751;1;0;Young +5384;Estonia;F;Professionals;Transportation and storage   ;Y30-49;584;1;2.2254647955629356e-06;1294455;0.00045115511933593676;1;0;Young +5385;Estonia;F;Professionals;Transportation and storage   ;Y50-64;344;1;1.310890222043921e-06;1294455;0.0002657489059102093;0;1;Old +5386;Estonia;F;Professionals;Transportation and storage   ;Y65-84;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;0;1;Old +5387;Estonia;F;Professionals;Accommodation and food service activities   ;Y15-29;80;1;3.0485819117300483e-07;1294455;6.180207114190914e-05;1;0;Young +5388;Estonia;F;Professionals;Accommodation and food service activities   ;Y30-49;180;1;6.859309301392609e-07;1294455;0.00013905466006929558;1;0;Young +5389;Estonia;F;Professionals;Accommodation and food service activities   ;Y50-64;85;1;3.239118281213176e-07;1294455;6.566470058827847e-05;0;1;Old +5390;Estonia;F;Professionals;Accommodation and food service activities   ;Y65-84;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;0;1;Old +5391;Estonia;F;Professionals;Information and communication   ;Y15-29;979;1;3.7307021144796468e-06;1294455;0.0007563028455991131;1;0;Young +5392;Estonia;F;Professionals;Information and communication   ;Y30-49;1570;1;5.98284200177022e-06;1294455;0.001212865646159967;1;0;Young +5393;Estonia;F;Professionals;Information and communication   ;Y50-64;572;1;2.1797360668869848e-06;1294455;0.00044188480866465035;0;1;Old +5394;Estonia;F;Professionals;Information and communication   ;Y65-84;89;1;3.3915473767996787e-07;1294455;6.875480414537392e-05;0;1;Old +5395;Estonia;F;Professionals;Financial and insurance activities   ;Y15-29;472;1;1.7986633279207285e-06;1294455;0.00036463221973726396;1;0;Young +5396;Estonia;F;Professionals;Financial and insurance activities   ;Y30-49;1046;1;3.986020849587038e-06;1294455;0.000808062080180462;1;0;Young +5397;Estonia;F;Professionals;Financial and insurance activities   ;Y50-64;212;1;8.078742066084628e-07;1294455;0.00016377548852605924;0;1;Old +5398;Estonia;F;Professionals;Financial and insurance activities   ;Y65-84;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +5399;Estonia;F;Professionals;Real estate activities   ;Y15-29;49;1;1.8672564209346548e-07;1294455;3.785376857441935e-05;1;0;Young +5400;Estonia;F;Professionals;Real estate activities   ;Y30-49;266;1;1.013653485650241e-06;1294455;0.0002054918865468479;1;0;Young +5401;Estonia;F;Professionals;Real estate activities   ;Y50-64;246;1;9.374389378569899e-07;1294455;0.00019004136876137062;0;1;Old +5402;Estonia;F;Professionals;Real estate activities   ;Y65-84;97;1;3.6964055679726836e-07;1294455;7.493501125956484e-05;0;1;Old +5403;Estonia;F;Professionals;Professional, scientific and technical activities   ;Y15-29;1764;1;6.722123115364757e-06;1294455;0.0013627356686790966;1;0;Young +5404;Estonia;F;Professionals;Professional, scientific and technical activities   ;Y30-49;3394;1;1.293360876051473e-05;1294455;0.0026219528681954954;1;0;Young +5405;Estonia;F;Professionals;Professional, scientific and technical activities   ;Y50-64;1621;1;6.177189098643011e-06;1294455;0.001252264466512934;0;1;Old +5406;Estonia;F;Professionals;Professional, scientific and technical activities   ;Y65-84;269;1;1.0250856678192288e-06;1294455;0.0002078094642146695;0;1;Old +5407;Estonia;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5408;Estonia;F;Professionals;Administrative and support service activities   ;Y15-29;144;1;5.487447441114087e-07;1294455;0.00011124372805543646;1;0;Young +5409;Estonia;F;Professionals;Administrative and support service activities   ;Y30-49;393;1;1.4976158641373862e-06;1294455;0.00030360267448462867;1;0;Young +5410;Estonia;F;Professionals;Administrative and support service activities   ;Y50-64;126;1;4.801516510974826e-07;1294455;9.73382620485069e-05;0;1;Old +5411;Estonia;F;Professionals;Administrative and support service activities   ;Y65-84;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +5412;Estonia;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;1299;1;4.950134879171666e-06;1294455;0.0010035111301667497;1;0;Young +5413;Estonia;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;3627;1;1.3821508242306107e-05;1294455;0.002801951400396306;1;0;Young +5414;Estonia;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;1986;1;7.5681045958698455e-06;1294455;0.0015342364160978944;0;1;Old +5415;Estonia;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;201;1;7.659562053221747e-07;1294455;0.00015527770374404673;0;1;Old +5416;Estonia;F;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5417;Estonia;F;Professionals;Education   ;Y15-29;3283;1;1.2510618020262186e-05;1294455;0.0025362024944860966;1;0;Young +5418;Estonia;F;Professionals;Education   ;Y30-49;13206;1;5.0324465907883774e-05;1294455;0.010201976893750651;1;0;Young +5419;Estonia;F;Professionals;Education   ;Y50-64;9452;1;3.601899528709052e-05;1294455;0.007301914705416565;0;1;Old +5420;Estonia;F;Professionals;Education   ;Y65-84;1469;1;5.597958535414301e-06;1294455;0.0011348405313433066;0;1;Old +5421;Estonia;F;Professionals;Education   ;Y_GE85;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5422;Estonia;F;Professionals;Human health and social work activities   ;Y15-29;1568;1;5.975220546990895e-06;1294455;0.0012113205943814192;1;0;Young +5423;Estonia;F;Professionals;Human health and social work activities   ;Y30-49;4211;1;1.6046973037869044e-05;1294455;0.0032531065197322425;1;0;Young +5424;Estonia;F;Professionals;Human health and social work activities   ;Y50-64;2691;1;1.025466740558195e-05;1294455;0.0020788671680359687;0;1;Old +5425;Estonia;F;Professionals;Human health and social work activities   ;Y65-84;714;1;2.720859356219068e-06;1294455;0.0005515834849415391;0;1;Old +5426;Estonia;F;Professionals;Human health and social work activities   ;Y_GE85;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5427;Estonia;F;Professionals;Arts, entertainment and recreation   ;Y15-29;510;1;1.943470968727906e-06;1294455;0.0003939882035296708;1;0;Young +5428;Estonia;F;Professionals;Arts, entertainment and recreation   ;Y30-49;1239;1;4.721491235791912e-06;1294455;0.0009571595768103179;1;0;Young +5429;Estonia;F;Professionals;Arts, entertainment and recreation   ;Y50-64;916;1;3.4906262889309055e-06;1294455;0.0007076337145748597;0;1;Old +5430;Estonia;F;Professionals;Arts, entertainment and recreation   ;Y65-84;232;1;8.840887544017141e-07;1294455;0.00017922600631153652;0;1;Old +5431;Estonia;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5432;Estonia;F;Professionals;Other service activities   ;Y15-29;206;1;7.850098422704875e-07;1294455;0.00015914033319041604;1;0;Young +5433;Estonia;F;Professionals;Other service activities   ;Y30-49;446;1;1.699584415789502e-06;1294455;0.00034454654661614345;1;0;Young +5434;Estonia;F;Professionals;Other service activities   ;Y50-64;210;1;8.002527518291377e-07;1294455;0.0001622304367475115;0;1;Old +5435;Estonia;F;Professionals;Other service activities   ;Y65-84;63;1;2.400758255487413e-07;1294455;4.866913102425345e-05;0;1;Old +5436;Estonia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5437;Estonia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +5438;Estonia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;1;0;Young +5439;Estonia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +5440;Estonia;F;Professionals;Not stated   ;Y15-29;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;1;0;Young +5441;Estonia;F;Professionals;Not stated   ;Y30-49;57;1;2.1721146121076594e-07;1294455;4.4033975688610265e-05;1;0;Young +5442;Estonia;F;Professionals;Not stated   ;Y50-64;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;0;1;Old +5443;Estonia;F;Professionals;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5444;Estonia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;64;1;2.4388655293840386e-07;1294455;4.9441656913527315e-05;1;0;Young +5445;Estonia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;347;1;1.3223224042129085e-06;1294455;0.00026806648357803094;1;0;Young +5446;Estonia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;282;1;1.074625123884842e-06;1294455;0.00021785230077522974;0;1;Old +5447;Estonia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;0;1;Old +5448;Estonia;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;1;0;Young +5449;Estonia;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;60;1;2.2864364337975364e-07;1294455;4.635155335643186e-05;1;0;Young +5450;Estonia;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;81;1;3.086689185626674e-07;1294455;6.257459703118301e-05;0;1;Old +5451;Estonia;F;Technicians and associate professionals;Mining and quarrying   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5452;Estonia;F;Technicians and associate professionals;Manufacturing   ;Y15-29;1071;1;4.081289034328602e-06;1294455;0.0008273752274123087;1;0;Young +5453;Estonia;F;Technicians and associate professionals;Manufacturing   ;Y30-49;3581;1;1.364621478238163e-05;1294455;0.002766415209489708;1;0;Young +5454;Estonia;F;Technicians and associate professionals;Manufacturing   ;Y50-64;1822;1;6.943145303965185e-06;1294455;0.0014075421702569807;0;1;Old +5455;Estonia;F;Technicians and associate professionals;Manufacturing   ;Y65-84;114;1;4.344229224215319e-07;1294455;8.806795137722053e-05;0;1;Old +5456;Estonia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;49;1;1.8672564209346548e-07;1294455;3.785376857441935e-05;1;0;Young +5457;Estonia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;241;1;9.18385300908677e-07;1294455;0.0001861787393150013;1;0;Young +5458;Estonia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;257;1;9.79356939143278e-07;1294455;0.00019853915354338313;0;1;Old +5459;Estonia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +5460;Estonia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;49;1;1.8672564209346548e-07;1294455;3.785376857441935e-05;1;0;Young +5461;Estonia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;137;1;5.220696523837708e-07;1294455;0.00010583604683051941;1;0;Young +5462;Estonia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;129;1;4.915838332664703e-07;1294455;9.965583971632849e-05;0;1;Old +5463;Estonia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5464;Estonia;F;Technicians and associate professionals;Construction   ;Y15-29;304;1;1.1584611264574184e-06;1294455;0.00023484787033925474;1;0;Young +5465;Estonia;F;Technicians and associate professionals;Construction   ;Y30-49;773;1;2.9456922722091595e-06;1294455;0.0005971625124086971;1;0;Young +5466;Estonia;F;Technicians and associate professionals;Construction   ;Y50-64;453;1;1.72625950751714e-06;1294455;0.0003499542278410605;0;1;Old +5467;Estonia;F;Technicians and associate professionals;Construction   ;Y65-84;38;1;1.448076408071773e-07;1294455;2.9355983792406842e-05;0;1;Old +5468;Estonia;F;Technicians and associate professionals;Construction   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5469;Estonia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1919;1;7.312785860762454e-06;1294455;0.0014824771815165456;1;0;Young +5470;Estonia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4992;1;1.9023151129195503e-05;1294455;0.0038564492392551305;1;0;Young +5471;Estonia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1747;1;6.657340749740493e-06;1294455;0.0013496027285614409;0;1;Old +5472;Estonia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;135;1;5.144481976044457e-07;1294455;0.00010429099505197168;0;1;Old +5473;Estonia;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;356;1;1.3566189507198715e-06;1294455;0.0002750192165814957;1;0;Young +5474;Estonia;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;874;1;3.330575738565078e-06;1294455;0.0006751876272253574;1;0;Young +5475;Estonia;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;389;1;1.482372954578736e-06;1294455;0.00030051257092753324;0;1;Old +5476;Estonia;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;39;1;1.4861836819683987e-07;1294455;3.0128509681680707e-05;0;1;Old +5477;Estonia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;270;1;1.0288963952088914e-06;1294455;0.00020858199010394336;1;0;Young +5478;Estonia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;544;1;2.073035699976433e-06;1294455;0.00042025408376498215;1;0;Young +5479;Estonia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;262;1;9.984105760915908e-07;1294455;0.00020240178298975244;0;1;Old +5480;Estonia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;23;1;8.764672996223889e-08;1294455;1.776809545329888e-05;0;1;Old +5481;Estonia;F;Technicians and associate professionals;Information and communication   ;Y15-29;698;1;2.6598877179844674e-06;1294455;0.0005392230707131573;1;0;Young +5482;Estonia;F;Technicians and associate professionals;Information and communication   ;Y30-49;920;1;3.505869198489556e-06;1294455;0.0007107238181319551;1;0;Young +5483;Estonia;F;Technicians and associate professionals;Information and communication   ;Y50-64;296;1;1.127975307340118e-06;1294455;0.00022866766322506384;0;1;Old +5484;Estonia;F;Technicians and associate professionals;Information and communication   ;Y65-84;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;0;1;Old +5485;Estonia;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;681;1;2.5951053523602036e-06;1294455;0.0005260901305955015;1;0;Young +5486;Estonia;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;1206;1;4.595737231933048e-06;1294455;0.0009316662224642803;1;0;Young +5487;Estonia;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;429;1;1.6348020501652386e-06;1294455;0.0003314136064984878;0;1;Old +5488;Estonia;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;0;1;Old +5489;Estonia;F;Technicians and associate professionals;Real estate activities   ;Y15-29;183;1;6.973631123082485e-07;1294455;0.00014137223773711717;1;0;Young +5490;Estonia;F;Technicians and associate professionals;Real estate activities   ;Y30-49;787;1;2.999042455664435e-06;1294455;0.0006079778748585312;1;0;Young +5491;Estonia;F;Technicians and associate professionals;Real estate activities   ;Y50-64;723;1;2.755155902726031e-06;1294455;0.0005585362179450038;0;1;Old +5492;Estonia;F;Technicians and associate professionals;Real estate activities   ;Y65-84;249;1;9.488711200259775e-07;1294455;0.0001923589464291922;0;1;Old +5493;Estonia;F;Technicians and associate professionals;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5494;Estonia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;941;1;3.5858944736724696e-06;1294455;0.0007269468618067063;1;0;Young +5495;Estonia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;1572;1;5.990463456549545e-06;1294455;0.0012144106979385147;1;0;Young +5496;Estonia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;677;1;2.5798624428015536e-06;1294455;0.0005230000270384062;0;1;Old +5497;Estonia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;88;1;3.353440102903053e-07;1294455;6.798227825610006e-05;0;1;Old +5498;Estonia;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;342;1;1.3032687672645957e-06;1294455;0.0002642038541316616;1;0;Young +5499;Estonia;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;546;1;2.080657154755758e-06;1294455;0.0004217991355435299;1;0;Young +5500;Estonia;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;178;1;6.783094753599357e-07;1294455;0.00013750960829074784;0;1;Old +5501;Estonia;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +5502;Estonia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;1091;1;4.157503582121853e-06;1294455;0.0008428257451977859;1;0;Young +5503;Estonia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;3077;1;1.1725608177991699e-05;1294455;0.0023770621612956805;1;0;Young +5504;Estonia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2010;1;7.659562053221746e-06;1294455;0.0015527770374404672;0;1;Old +5505;Estonia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;176;1;6.706880205806106e-07;1294455;0.00013596455651220012;0;1;Old +5506;Estonia;F;Technicians and associate professionals;Education   ;Y15-29;452;1;1.7224487801274773e-06;1294455;0.0003491817019517867;1;0;Young +5507;Estonia;F;Technicians and associate professionals;Education   ;Y30-49;944;1;3.597326655841457e-06;1294455;0.0007292644394745279;1;0;Young +5508;Estonia;F;Technicians and associate professionals;Education   ;Y50-64;690;1;2.6294018988671666e-06;1294455;0.0005330428635989664;0;1;Old +5509;Estonia;F;Technicians and associate professionals;Education   ;Y65-84;155;1;5.906627453976969e-07;1294455;0.00011974151283744897;0;1;Old +5510;Estonia;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;1057;1;4.027938850873327e-06;1294455;0.0008165598649624746;1;0;Young +5511;Estonia;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;4166;1;1.587549030533423e-05;1294455;0.0032183428547149185;1;0;Young +5512;Estonia;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;3755;1;1.4309281348182915e-05;1294455;0.0029008347142233603;0;1;Old +5513;Estonia;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;593;1;2.2597613420698985e-06;1294455;0.0004581078523394015;0;1;Old +5514;Estonia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;387;1;1.4747514997994108e-06;1294455;0.0002989675191489855;1;0;Young +5515;Estonia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;638;1;2.4312440746047135e-06;1294455;0.0004928715173567254;1;0;Young +5516;Estonia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;305;1;1.162271853847081e-06;1294455;0.0002356203962285286;0;1;Old +5517;Estonia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;56;1;2.134007338211034e-07;1294455;4.32614497993364e-05;0;1;Old +5518;Estonia;F;Technicians and associate professionals;Other service activities   ;Y15-29;259;1;9.869783939226032e-07;1294455;0.00020008420532193085;1;0;Young +5519;Estonia;F;Technicians and associate professionals;Other service activities   ;Y30-49;602;1;2.2940578885768615e-06;1294455;0.0004650605853428663;1;0;Young +5520;Estonia;F;Technicians and associate professionals;Other service activities   ;Y50-64;404;1;1.5395338654236744e-06;1294455;0.00031210045926664115;0;1;Old +5521;Estonia;F;Technicians and associate professionals;Other service activities   ;Y65-84;54;1;2.0577927904177827e-07;1294455;4.171639802078867e-05;0;1;Old +5522;Estonia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;1;0;Young +5523;Estonia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;45;1;1.7148273253481523e-07;1294455;3.4763665017323895e-05;1;0;Young +5524;Estonia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +5525;Estonia;F;Technicians and associate professionals;Not stated   ;Y15-29;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;1;0;Young +5526;Estonia;F;Technicians and associate professionals;Not stated   ;Y30-49;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;1;0;Young +5527;Estonia;F;Technicians and associate professionals;Not stated   ;Y50-64;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;0;1;Old +5528;Estonia;F;Technicians and associate professionals;Not stated   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5529;Estonia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;32;1;1.2194327646920193e-07;1294455;2.4720828456763657e-05;1;0;Young +5530;Estonia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;97;1;3.6964055679726836e-07;1294455;7.493501125956484e-05;1;0;Young +5531;Estonia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;76;1;2.896152816143546e-07;1294455;5.8711967584813684e-05;0;1;Old +5532;Estonia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;0;1;Old +5533;Estonia;F;Clerical support workers;Mining and quarrying   ;Y15-29;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;1;0;Young +5534;Estonia;F;Clerical support workers;Mining and quarrying   ;Y30-49;51;1;1.943470968727906e-07;1294455;3.939882035296708e-05;1;0;Young +5535;Estonia;F;Clerical support workers;Mining and quarrying   ;Y50-64;60;1;2.2864364337975364e-07;1294455;4.635155335643186e-05;0;1;Old +5536;Estonia;F;Clerical support workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5537;Estonia;F;Clerical support workers;Manufacturing   ;Y15-29;465;1;1.7719882361930907e-06;1294455;0.0003592245385123469;1;0;Young +5538;Estonia;F;Clerical support workers;Manufacturing   ;Y30-49;1312;1;4.99967433523728e-06;1294455;0.00101355396672731;1;0;Young +5539;Estonia;F;Clerical support workers;Manufacturing   ;Y50-64;831;1;3.1667144608095878e-06;1294455;0.0006419690139865813;0;1;Old +5540;Estonia;F;Clerical support workers;Manufacturing   ;Y65-84;41;1;1.56239822976165e-07;1294455;3.1673561460228434e-05;0;1;Old +5541;Estonia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;41;1;1.56239822976165e-07;1294455;3.1673561460228434e-05;1;0;Young +5542;Estonia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;102;1;3.886941937455812e-07;1294455;7.879764070593416e-05;1;0;Young +5543;Estonia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;105;1;4.0012637591456885e-07;1294455;8.111521837375575e-05;0;1;Old +5544;Estonia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +5545;Estonia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;1;0;Young +5546;Estonia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;85;1;3.239118281213176e-07;1294455;6.566470058827847e-05;1;0;Young +5547;Estonia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;61;1;2.3245437076941619e-07;1294455;4.712407924570572e-05;0;1;Old +5548;Estonia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5549;Estonia;F;Clerical support workers;Construction   ;Y15-29;70;1;2.6675091727637925e-07;1294455;5.40768122491705e-05;1;0;Young +5550;Estonia;F;Clerical support workers;Construction   ;Y30-49;178;1;6.783094753599357e-07;1294455;0.00013750960829074784;1;0;Young +5551;Estonia;F;Clerical support workers;Construction   ;Y50-64;145;1;5.525554715010713e-07;1294455;0.00011201625394471032;0;1;Old +5552;Estonia;F;Clerical support workers;Construction   ;Y65-84;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5553;Estonia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;616;1;2.347408072032137e-06;1294455;0.0004758759477927004;1;0;Young +5554;Estonia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1363;1;5.19402143211007e-06;1294455;0.001052952787080277;1;0;Young +5555;Estonia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;717;1;2.732291538388056e-06;1294455;0.0005539010626093607;0;1;Old +5556;Estonia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;0;1;Old +5557;Estonia;F;Clerical support workers;Transportation and storage   ;Y15-29;1028;1;3.917427756573112e-06;1294455;0.0007941566141735325;1;0;Young +5558;Estonia;F;Clerical support workers;Transportation and storage   ;Y30-49;2513;1;9.576357930222014e-06;1294455;0.001941357559745221;1;0;Young +5559;Estonia;F;Clerical support workers;Transportation and storage   ;Y50-64;1754;1;6.6840158414681314e-06;1294455;0.0013550104097863579;0;1;Old +5560;Estonia;F;Clerical support workers;Transportation and storage   ;Y65-84;145;1;5.525554715010713e-07;1294455;0.00011201625394471032;0;1;Old +5561;Estonia;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;780;1;2.9723673639367973e-06;1294455;0.0006025701936336141;1;0;Young +5562;Estonia;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;465;1;1.7719882361930907e-06;1294455;0.0003592245385123469;1;0;Young +5563;Estonia;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;189;1;7.202274766462239e-07;1294455;0.00014600739307276035;0;1;Old +5564;Estonia;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;0;1;Old +5565;Estonia;F;Clerical support workers;Information and communication   ;Y15-29;246;1;9.374389378569899e-07;1294455;0.00019004136876137062;1;0;Young +5566;Estonia;F;Clerical support workers;Information and communication   ;Y30-49;337;1;1.284215130316283e-06;1294455;0.00026034122468529227;1;0;Young +5567;Estonia;F;Clerical support workers;Information and communication   ;Y50-64;139;1;5.296911071630959e-07;1294455;0.00010738109860906714;0;1;Old +5568;Estonia;F;Clerical support workers;Information and communication   ;Y65-84;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;0;1;Old +5569;Estonia;F;Clerical support workers;Financial and insurance activities   ;Y15-29;753;1;2.869477724415908e-06;1294455;0.0005817119946232198;1;0;Young +5570;Estonia;F;Clerical support workers;Financial and insurance activities   ;Y30-49;1164;1;4.435686681567221e-06;1294455;0.000899220135114778;1;0;Young +5571;Estonia;F;Clerical support workers;Financial and insurance activities   ;Y50-64;262;1;9.984105760915908e-07;1294455;0.00020240178298975244;0;1;Old +5572;Estonia;F;Clerical support workers;Financial and insurance activities   ;Y65-84;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;0;1;Old +5573;Estonia;F;Clerical support workers;Real estate activities   ;Y15-29;62;1;2.3626509815907876e-07;1294455;4.7896605134979584e-05;1;0;Young +5574;Estonia;F;Clerical support workers;Real estate activities   ;Y30-49;85;1;3.239118281213176e-07;1294455;6.566470058827847e-05;1;0;Young +5575;Estonia;F;Clerical support workers;Real estate activities   ;Y50-64;101;1;3.848834663559186e-07;1294455;7.802511481666029e-05;0;1;Old +5576;Estonia;F;Clerical support workers;Real estate activities   ;Y65-84;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;0;1;Old +5577;Estonia;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;214;1;8.15495661387788e-07;1294455;0.00016532054030460696;1;0;Young +5578;Estonia;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;340;1;1.2956473124852705e-06;1294455;0.0002626588023531139;1;0;Young +5579;Estonia;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;213;1;8.116849339981254e-07;1294455;0.0001645480144153331;0;1;Old +5580;Estonia;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;48;1;1.829149147038029e-07;1294455;3.7081242685145484e-05;0;1;Old +5581;Estonia;F;Clerical support workers;Administrative and support service activities   ;Y15-29;805;1;3.0676355486783614e-06;1294455;0.0006218833408654608;1;0;Young +5582;Estonia;F;Clerical support workers;Administrative and support service activities   ;Y30-49;865;1;3.296279192058115e-06;1294455;0.0006682348942218926;1;0;Young +5583;Estonia;F;Clerical support workers;Administrative and support service activities   ;Y50-64;206;1;7.850098422704875e-07;1294455;0.00015914033319041604;0;1;Old +5584;Estonia;F;Clerical support workers;Administrative and support service activities   ;Y65-84;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;0;1;Old +5585;Estonia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;295;1;1.1241645799504554e-06;1294455;0.00022789513733578997;1;0;Young +5586;Estonia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;870;1;3.3153328290064275e-06;1294455;0.0006720975236682619;1;0;Young +5587;Estonia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;815;1;3.105742822574987e-06;1294455;0.0006296085997581994;0;1;Old +5588;Estonia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;75;1;2.8580455422469204e-07;1294455;5.793944169553982e-05;0;1;Old +5589;Estonia;F;Clerical support workers;Education   ;Y15-29;119;1;4.5347655936984473e-07;1294455;9.193058082358985e-05;1;0;Young +5590;Estonia;F;Clerical support workers;Education   ;Y30-49;345;1;1.3147009494335833e-06;1294455;0.0002665214317994832;1;0;Young +5591;Estonia;F;Clerical support workers;Education   ;Y50-64;402;1;1.5319124106443494e-06;1294455;0.00031055540748809346;0;1;Old +5592;Estonia;F;Clerical support workers;Education   ;Y65-84;119;1;4.5347655936984473e-07;1294455;9.193058082358985e-05;0;1;Old +5593;Estonia;F;Clerical support workers;Human health and social work activities   ;Y15-29;134;1;5.106374702147831e-07;1294455;0.00010351846916269782;1;0;Young +5594;Estonia;F;Clerical support workers;Human health and social work activities   ;Y30-49;321;1;1.223243492081682e-06;1294455;0.0002479808104569104;1;0;Young +5595;Estonia;F;Clerical support workers;Human health and social work activities   ;Y50-64;284;1;1.0822465786641672e-06;1294455;0.00021939735255377746;0;1;Old +5596;Estonia;F;Clerical support workers;Human health and social work activities   ;Y65-84;75;1;2.8580455422469204e-07;1294455;5.793944169553982e-05;0;1;Old +5597;Estonia;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;510;1;1.943470968727906e-06;1294455;0.0003939882035296708;1;0;Young +5598;Estonia;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;736;1;2.8046953587916445e-06;1294455;0.0005685790545055642;1;0;Young +5599;Estonia;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;492;1;1.8748778757139799e-06;1294455;0.00038008273752274124;0;1;Old +5600;Estonia;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;82;1;3.1247964595233e-07;1294455;6.334712292045687e-05;0;1;Old +5601;Estonia;F;Clerical support workers;Other service activities   ;Y15-29;324;1;1.2346756742506695e-06;1294455;0.00025029838812473204;1;0;Young +5602;Estonia;F;Clerical support workers;Other service activities   ;Y30-49;269;1;1.0250856678192288e-06;1294455;0.0002078094642146695;1;0;Young +5603;Estonia;F;Clerical support workers;Other service activities   ;Y50-64;123;1;4.6871946892849497e-07;1294455;9.502068438068531e-05;0;1;Old +5604;Estonia;F;Clerical support workers;Other service activities   ;Y65-84;35;1;1.3337545863818962e-07;1294455;2.703840612458525e-05;0;1;Old +5605;Estonia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;1;0;Young +5606;Estonia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;1;0;Young +5607;Estonia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5608;Estonia;F;Clerical support workers;Not stated   ;Y15-29;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;1;0;Young +5609;Estonia;F;Clerical support workers;Not stated   ;Y30-49;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;1;0;Young +5610;Estonia;F;Clerical support workers;Not stated   ;Y50-64;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +5611;Estonia;F;Clerical support workers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5612;Estonia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;1;0;Young +5613;Estonia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;67;1;2.5531873510739155e-07;1294455;5.175923458134891e-05;1;0;Young +5614;Estonia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;67;1;2.5531873510739155e-07;1294455;5.175923458134891e-05;0;1;Old +5615;Estonia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5616;Estonia;F;Service and sales workers;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5617;Estonia;F;Service and sales workers;Mining and quarrying   ;Y50-64;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5618;Estonia;F;Service and sales workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5619;Estonia;F;Service and sales workers;Manufacturing   ;Y15-29;228;1;8.688458448430638e-07;1294455;0.00017613590275444106;1;0;Young +5620;Estonia;F;Service and sales workers;Manufacturing   ;Y30-49;611;1;2.3283544350838245e-06;1294455;0.0004720133183463311;1;0;Young +5621;Estonia;F;Service and sales workers;Manufacturing   ;Y50-64;481;1;1.8329598744276917e-06;1294455;0.0003715849527407287;0;1;Old +5622;Estonia;F;Service and sales workers;Manufacturing   ;Y65-84;36;1;1.3718618602785217e-07;1294455;2.7810932013859115e-05;0;1;Old +5623;Estonia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +5624;Estonia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +5625;Estonia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5626;Estonia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +5627;Estonia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +5628;Estonia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5629;Estonia;F;Service and sales workers;Construction   ;Y15-29;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;1;0;Young +5630;Estonia;F;Service and sales workers;Construction   ;Y30-49;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;1;0;Young +5631;Estonia;F;Service and sales workers;Construction   ;Y50-64;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;0;1;Old +5632;Estonia;F;Service and sales workers;Construction   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5633;Estonia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;7887;1;3.0055206922268615e-05;1294455;0.006092911688702967;1;0;Young +5634;Estonia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;12541;1;4.779033219375817e-05;1294455;0.009688247177383532;1;0;Young +5635;Estonia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7517;1;2.8645237788093467e-05;1294455;0.005807077109671638;0;1;Old +5636;Estonia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;464;1;1.7681775088034281e-06;1294455;0.00035845201262307304;0;1;Old +5637;Estonia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5638;Estonia;F;Service and sales workers;Transportation and storage   ;Y15-29;452;1;1.7224487801274773e-06;1294455;0.0003491817019517867;1;0;Young +5639;Estonia;F;Service and sales workers;Transportation and storage   ;Y30-49;629;1;2.3969475280977505e-06;1294455;0.0004859187843532606;1;0;Young +5640;Estonia;F;Service and sales workers;Transportation and storage   ;Y50-64;479;1;1.8253384196483665e-06;1294455;0.000370039900962181;0;1;Old +5641;Estonia;F;Service and sales workers;Transportation and storage   ;Y65-84;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +5642;Estonia;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;4801;1;1.8295302197769955e-05;1294455;0.0037088967944038224;1;0;Young +5643;Estonia;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;3156;1;1.2026655641775041e-05;1294455;0.002438091706548316;1;0;Young +5644;Estonia;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;1641;1;6.253403646436262e-06;1294455;0.0012677149842984113;0;1;Old +5645;Estonia;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;102;1;3.886941937455812e-07;1294455;7.879764070593416e-05;0;1;Old +5646;Estonia;F;Service and sales workers;Information and communication   ;Y15-29;193;1;7.354703862048742e-07;1294455;0.0001490974966298558;1;0;Young +5647;Estonia;F;Service and sales workers;Information and communication   ;Y30-49;130;1;4.953945606561329e-07;1294455;0.00010042836560560236;1;0;Young +5648;Estonia;F;Service and sales workers;Information and communication   ;Y50-64;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;0;1;Old +5649;Estonia;F;Service and sales workers;Information and communication   ;Y65-84;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +5650;Estonia;F;Service and sales workers;Financial and insurance activities   ;Y15-29;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;1;0;Young +5651;Estonia;F;Service and sales workers;Financial and insurance activities   ;Y30-49;50;1;1.9053636948312803e-07;1294455;3.8626294463693215e-05;1;0;Young +5652;Estonia;F;Service and sales workers;Financial and insurance activities   ;Y50-64;32;1;1.2194327646920193e-07;1294455;2.4720828456763657e-05;0;1;Old +5653;Estonia;F;Service and sales workers;Real estate activities   ;Y15-29;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;1;0;Young +5654;Estonia;F;Service and sales workers;Real estate activities   ;Y30-49;99;1;3.772620115765935e-07;1294455;7.648006303811257e-05;1;0;Young +5655;Estonia;F;Service and sales workers;Real estate activities   ;Y50-64;150;1;5.716091084493841e-07;1294455;0.00011587888339107964;0;1;Old +5656;Estonia;F;Service and sales workers;Real estate activities   ;Y65-84;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;0;1;Old +5657;Estonia;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;153;1;5.830412906183718e-07;1294455;0.00011819646105890124;1;0;Young +5658;Estonia;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;85;1;3.239118281213176e-07;1294455;6.566470058827847e-05;1;0;Young +5659;Estonia;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;0;1;Old +5660;Estonia;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +5661;Estonia;F;Service and sales workers;Administrative and support service activities   ;Y15-29;543;1;2.06922497258677e-06;1294455;0.00041948155787570833;1;0;Young +5662;Estonia;F;Service and sales workers;Administrative and support service activities   ;Y30-49;809;1;3.0828784582370114e-06;1294455;0.0006249734444225562;1;0;Young +5663;Estonia;F;Service and sales workers;Administrative and support service activities   ;Y50-64;655;1;2.4960264402289772e-06;1294455;0.0005060044574743811;0;1;Old +5664;Estonia;F;Service and sales workers;Administrative and support service activities   ;Y65-84;47;1;1.7910418731414036e-07;1294455;3.630871679587162e-05;0;1;Old +5665;Estonia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;298;1;1.135596762119443e-06;1294455;0.00023021271500361156;1;0;Young +5666;Estonia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;674;1;2.568430260632566e-06;1294455;0.0005206824493705845;1;0;Young +5667;Estonia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;577;1;2.1987897038352974e-06;1294455;0.0004457474381110197;0;1;Old +5668;Estonia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;66;1;2.51508007717729e-07;1294455;5.0986708692075045e-05;0;1;Old +5669;Estonia;F;Service and sales workers;Education   ;Y15-29;522;1;1.9891996974038564e-06;1294455;0.0004032585142009572;1;0;Young +5670;Estonia;F;Service and sales workers;Education   ;Y30-49;2351;1;8.95902009309668e-06;1294455;0.001816208365682855;1;0;Young +5671;Estonia;F;Service and sales workers;Education   ;Y50-64;2498;1;9.519197019377077e-06;1294455;0.001929769671406113;0;1;Old +5672;Estonia;F;Service and sales workers;Education   ;Y65-84;319;1;1.2156220373023567e-06;1294455;0.0002464357586783627;0;1;Old +5673;Estonia;F;Service and sales workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5674;Estonia;F;Service and sales workers;Human health and social work activities   ;Y15-29;840;1;3.2010110073165508e-06;1294455;0.000648921746990046;1;0;Young +5675;Estonia;F;Service and sales workers;Human health and social work activities   ;Y30-49;2722;1;1.037279995466149e-05;1294455;0.0021028154706034586;1;0;Young +5676;Estonia;F;Service and sales workers;Human health and social work activities   ;Y50-64;3274;1;1.2476321473755223e-05;1294455;0.0025292497614826316;0;1;Old +5677;Estonia;F;Service and sales workers;Human health and social work activities   ;Y65-84;461;1;1.7567453266344403e-06;1294455;0.0003561344349552514;0;1;Old +5678;Estonia;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;283;1;1.0784358512745046e-06;1294455;0.0002186248266645036;1;0;Young +5679;Estonia;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;313;1;1.1927576729643815e-06;1294455;0.00024180060334271953;1;0;Young +5680;Estonia;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;259;1;9.869783939226032e-07;1294455;0.00020008420532193085;0;1;Old +5681;Estonia;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;111;1;4.2299074025254424e-07;1294455;8.575037370939894e-05;0;1;Old +5682;Estonia;F;Service and sales workers;Other service activities   ;Y15-29;1074;1;4.09272121649759e-06;1294455;0.0008296928050801302;1;0;Young +5683;Estonia;F;Service and sales workers;Other service activities   ;Y30-49;2799;1;1.0666225963665508e-05;1294455;0.002162299964077546;1;0;Young +5684;Estonia;F;Service and sales workers;Other service activities   ;Y50-64;887;1;3.3801151946306913e-06;1294455;0.0006852304637859177;0;1;Old +5685;Estonia;F;Service and sales workers;Other service activities   ;Y65-84;158;1;6.020949275666846e-07;1294455;0.00012205909050527056;0;1;Old +5686;Estonia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;1;0;Young +5687;Estonia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;1;0;Young +5688;Estonia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5689;Estonia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5690;Estonia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5691;Estonia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +5692;Estonia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +5693;Estonia;F;Service and sales workers;Not stated   ;Y15-29;49;1;1.8672564209346548e-07;1294455;3.785376857441935e-05;1;0;Young +5694;Estonia;F;Service and sales workers;Not stated   ;Y30-49;101;1;3.848834663559186e-07;1294455;7.802511481666029e-05;1;0;Young +5695;Estonia;F;Service and sales workers;Not stated   ;Y50-64;64;1;2.4388655293840386e-07;1294455;4.9441656913527315e-05;0;1;Old +5696;Estonia;F;Service and sales workers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5697;Estonia;F;Service and sales workers;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5698;Estonia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;275;1;1.0479500321572042e-06;1294455;0.0002124446195503127;1;0;Young +5699;Estonia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;1605;1;6.11621746040841e-06;1294455;0.0012399040522845521;1;0;Young +5700;Estonia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;1509;1;5.7503876310008036e-06;1294455;0.0011657415669142613;0;1;Old +5701;Estonia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;155;1;5.906627453976969e-07;1294455;0.00011974151283744897;0;1;Old +5702;Estonia;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5703;Estonia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +5704;Estonia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;1;0;Young +5705;Estonia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;0;1;Old +5706;Estonia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5707;Estonia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5708;Estonia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5709;Estonia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;1;0;Young +5710;Estonia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;23;1;8.764672996223889e-08;1294455;1.776809545329888e-05;1;0;Young +5711;Estonia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +5712;Estonia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5713;Estonia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +5714;Estonia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5715;Estonia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5716;Estonia;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5717;Estonia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5718;Estonia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +5719;Estonia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5720;Estonia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +5721;Estonia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;1;0;Young +5722;Estonia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;0;1;Old +5723;Estonia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5724;Estonia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;1;0;Young +5725;Estonia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5726;Estonia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;1;0;Young +5727;Estonia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;1;0;Young +5728;Estonia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;0;1;Old +5729;Estonia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5730;Estonia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5731;Estonia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5732;Estonia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5733;Estonia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +5734;Estonia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;1;0;Young +5735;Estonia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +5736;Estonia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5737;Estonia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +5738;Estonia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +5739;Estonia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;0;1;Old +5740;Estonia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;1;0;Young +5741;Estonia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;56;1;2.134007338211034e-07;1294455;4.32614497993364e-05;1;0;Young +5742;Estonia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;48;1;1.829149147038029e-07;1294455;3.7081242685145484e-05;0;1;Old +5743;Estonia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5744;Estonia;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5745;Estonia;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +5746;Estonia;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;0;1;Old +5747;Estonia;F;Craft and related trades workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5748;Estonia;F;Craft and related trades workers;Manufacturing   ;Y15-29;1552;1;5.914248908756294e-06;1294455;0.0011989601801530375;1;0;Young +5749;Estonia;F;Craft and related trades workers;Manufacturing   ;Y30-49;5901;1;2.2487102326398768e-05;1294455;0.004558675272605073;1;0;Young +5750;Estonia;F;Craft and related trades workers;Manufacturing   ;Y50-64;3797;1;1.4469331898548743e-05;1294455;0.0029332808015728627;0;1;Old +5751;Estonia;F;Craft and related trades workers;Manufacturing   ;Y65-84;166;1;6.325807466839851e-07;1294455;0.00012823929761946148;0;1;Old +5752;Estonia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5753;Estonia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;1;0;Young +5754;Estonia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;0;1;Old +5755;Estonia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5756;Estonia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5757;Estonia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +5758;Estonia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5759;Estonia;F;Craft and related trades workers;Construction   ;Y15-29;141;1;5.37312561942421e-07;1294455;0.00010892615038761487;1;0;Young +5760;Estonia;F;Craft and related trades workers;Construction   ;Y30-49;478;1;1.821527692258704e-06;1294455;0.00036926737507290714;1;0;Young +5761;Estonia;F;Craft and related trades workers;Construction   ;Y50-64;485;1;1.8482027839863419e-06;1294455;0.0003746750562978242;0;1;Old +5762;Estonia;F;Craft and related trades workers;Construction   ;Y65-84;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +5763;Estonia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;95;1;3.6201910201794326e-07;1294455;7.338995948101711e-05;1;0;Young +5764;Estonia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;295;1;1.1241645799504554e-06;1294455;0.00022789513733578997;1;0;Young +5765;Estonia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;176;1;6.706880205806106e-07;1294455;0.00013596455651220012;0;1;Old +5766;Estonia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5767;Estonia;F;Craft and related trades workers;Transportation and storage   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5768;Estonia;F;Craft and related trades workers;Transportation and storage   ;Y30-49;32;1;1.2194327646920193e-07;1294455;2.4720828456763657e-05;1;0;Young +5769;Estonia;F;Craft and related trades workers;Transportation and storage   ;Y50-64;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;0;1;Old +5770;Estonia;F;Craft and related trades workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5771;Estonia;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;73;1;2.7818309944536694e-07;1294455;5.6394389916992095e-05;1;0;Young +5772;Estonia;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;167;1;6.363914740736477e-07;1294455;0.00012901182350873533;1;0;Young +5773;Estonia;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;87;1;3.3153328290064277e-07;1294455;6.720975236682619e-05;0;1;Old +5774;Estonia;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;0;1;Old +5775;Estonia;F;Craft and related trades workers;Information and communication   ;Y15-29;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;1;0;Young +5776;Estonia;F;Craft and related trades workers;Information and communication   ;Y30-49;62;1;2.3626509815907876e-07;1294455;4.7896605134979584e-05;1;0;Young +5777;Estonia;F;Craft and related trades workers;Information and communication   ;Y50-64;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;0;1;Old +5778;Estonia;F;Craft and related trades workers;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5779;Estonia;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5780;Estonia;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5781;Estonia;F;Craft and related trades workers;Real estate activities   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5782;Estonia;F;Craft and related trades workers;Real estate activities   ;Y30-49;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;1;0;Young +5783;Estonia;F;Craft and related trades workers;Real estate activities   ;Y50-64;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +5784;Estonia;F;Craft and related trades workers;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5785;Estonia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;1;0;Young +5786;Estonia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;36;1;1.3718618602785217e-07;1294455;2.7810932013859115e-05;1;0;Young +5787;Estonia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;0;1;Old +5788;Estonia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5789;Estonia;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;1;0;Young +5790;Estonia;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;1;0;Young +5791;Estonia;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;0;1;Old +5792;Estonia;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5793;Estonia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5794;Estonia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;1;0;Young +5795;Estonia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5796;Estonia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5797;Estonia;F;Craft and related trades workers;Education   ;Y15-29;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;1;0;Young +5798;Estonia;F;Craft and related trades workers;Education   ;Y30-49;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;1;0;Young +5799;Estonia;F;Craft and related trades workers;Education   ;Y50-64;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;0;1;Old +5800;Estonia;F;Craft and related trades workers;Education   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5801;Estonia;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +5802;Estonia;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;23;1;8.764672996223889e-08;1294455;1.776809545329888e-05;1;0;Young +5803;Estonia;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;0;1;Old +5804;Estonia;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5805;Estonia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +5806;Estonia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;74;1;2.819938268350295e-07;1294455;5.716691580626596e-05;1;0;Young +5807;Estonia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;66;1;2.51508007717729e-07;1294455;5.0986708692075045e-05;0;1;Old +5808;Estonia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +5809;Estonia;F;Craft and related trades workers;Other service activities   ;Y15-29;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;1;0;Young +5810;Estonia;F;Craft and related trades workers;Other service activities   ;Y30-49;73;1;2.7818309944536694e-07;1294455;5.6394389916992095e-05;1;0;Young +5811;Estonia;F;Craft and related trades workers;Other service activities   ;Y50-64;64;1;2.4388655293840386e-07;1294455;4.9441656913527315e-05;0;1;Old +5812;Estonia;F;Craft and related trades workers;Other service activities   ;Y65-84;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +5813;Estonia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5814;Estonia;F;Craft and related trades workers;Not stated   ;Y15-29;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +5815;Estonia;F;Craft and related trades workers;Not stated   ;Y30-49;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +5816;Estonia;F;Craft and related trades workers;Not stated   ;Y50-64;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +5817;Estonia;F;Craft and related trades workers;Not stated   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5818;Estonia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;1;0;Young +5819;Estonia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;58;1;2.2102218860042852e-07;1294455;4.480650157788413e-05;1;0;Young +5820;Estonia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;48;1;1.829149147038029e-07;1294455;3.7081242685145484e-05;0;1;Old +5821;Estonia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5822;Estonia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5823;Estonia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;81;1;3.086689185626674e-07;1294455;6.257459703118301e-05;1;0;Young +5824;Estonia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;100;1;3.8107273896625605e-07;1294455;7.725258892738643e-05;0;1;Old +5825;Estonia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5826;Estonia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;2669;1;1.0170831403009375e-05;1294455;0.0020618715984719437;1;0;Young +5827;Estonia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;9687;1;3.691451622366122e-05;1294455;0.007483458289395923;1;0;Young +5828;Estonia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;5904;1;2.2498534508567758e-05;1294455;0.0045609928502728945;0;1;Old +5829;Estonia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;160;1;6.097163823460097e-07;1294455;0.00012360414228381828;0;1;Old +5830;Estonia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +5831;Estonia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;38;1;1.448076408071773e-07;1294455;2.9355983792406842e-05;1;0;Young +5832;Estonia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;56;1;2.134007338211034e-07;1294455;4.32614497993364e-05;0;1;Old +5833;Estonia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5834;Estonia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5835;Estonia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +5836;Estonia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +5837;Estonia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5838;Estonia;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +5839;Estonia;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;40;1;1.5242909558650242e-07;1294455;3.090103557095457e-05;1;0;Young +5840;Estonia;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;41;1;1.56239822976165e-07;1294455;3.1673561460228434e-05;0;1;Old +5841;Estonia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;56;1;2.134007338211034e-07;1294455;4.32614497993364e-05;1;0;Young +5842;Estonia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;161;1;6.135271097356723e-07;1294455;0.00012437666817309215;1;0;Young +5843;Estonia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;96;1;3.658298294076058e-07;1294455;7.416248537029097e-05;0;1;Old +5844;Estonia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +5845;Estonia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;47;1;1.7910418731414036e-07;1294455;3.630871679587162e-05;1;0;Young +5846;Estonia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;339;1;1.2918365850956081e-06;1294455;0.00026188627646384;1;0;Young +5847;Estonia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;276;1;1.0517607595468668e-06;1294455;0.00021321714543958654;0;1;Old +5848;Estonia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;0;1;Old +5849;Estonia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5850;Estonia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;1;0;Young +5851;Estonia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5852;Estonia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5853;Estonia;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +5854;Estonia;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;1;0;Young +5855;Estonia;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5856;Estonia;F;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5857;Estonia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +5858;Estonia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5859;Estonia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;1;0;Young +5860;Estonia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;1;0;Young +5861;Estonia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5862;Estonia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;1;0;Young +5863;Estonia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;54;1;2.0577927904177827e-07;1294455;4.171639802078867e-05;1;0;Young +5864;Estonia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;36;1;1.3718618602785217e-07;1294455;2.7810932013859115e-05;0;1;Old +5865;Estonia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5866;Estonia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5867;Estonia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;1;0;Young +5868;Estonia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +5869;Estonia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5870;Estonia;F;Plant and machine operators, and assemblers;Education   ;Y15-29;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +5871;Estonia;F;Plant and machine operators, and assemblers;Education   ;Y30-49;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;1;0;Young +5872;Estonia;F;Plant and machine operators, and assemblers;Education   ;Y50-64;53;1;2.019685516521157e-07;1294455;4.094387213151481e-05;0;1;Old +5873;Estonia;F;Plant and machine operators, and assemblers;Education   ;Y65-84;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;0;1;Old +5874;Estonia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +5875;Estonia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;45;1;1.7148273253481523e-07;1294455;3.4763665017323895e-05;1;0;Young +5876;Estonia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;62;1;2.3626509815907876e-07;1294455;4.7896605134979584e-05;0;1;Old +5877;Estonia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +5878;Estonia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +5879;Estonia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +5880;Estonia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5881;Estonia;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;58;1;2.2102218860042852e-07;1294455;4.480650157788413e-05;1;0;Young +5882;Estonia;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;173;1;6.592558384116229e-07;1294455;0.00013364697884437853;1;0;Young +5883;Estonia;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;178;1;6.783094753599357e-07;1294455;0.00013750960829074784;0;1;Old +5884;Estonia;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5885;Estonia;F;Plant and machine operators, and assemblers;Not stated   ;Y15-29;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +5886;Estonia;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;1;0;Young +5887;Estonia;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;0;1;Old +5888;Estonia;F;Plant and machine operators, and assemblers;Not stated   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5889;Estonia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;234;1;8.917102091810392e-07;1294455;0.00018077105809008424;1;0;Young +5890;Estonia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;614;1;2.3397866172528123e-06;1294455;0.00047433089601415265;1;0;Young +5891;Estonia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;570;1;2.1721146121076596e-06;1294455;0.00044033975688610266;0;1;Old +5892;Estonia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;64;1;2.4388655293840386e-07;1294455;4.9441656913527315e-05;0;1;Old +5893;Estonia;F;Elementary occupations;Mining and quarrying   ;Y15-29;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +5894;Estonia;F;Elementary occupations;Mining and quarrying   ;Y30-49;71;1;2.705616446660418e-07;1294455;5.4849338138444365e-05;1;0;Young +5895;Estonia;F;Elementary occupations;Mining and quarrying   ;Y50-64;72;1;2.7437237205570434e-07;1294455;5.562186402771823e-05;0;1;Old +5896;Estonia;F;Elementary occupations;Mining and quarrying   ;Y65-84;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +5897;Estonia;F;Elementary occupations;Manufacturing   ;Y15-29;712;1;2.713237901439743e-06;1294455;0.0005500384331629914;1;0;Young +5898;Estonia;F;Elementary occupations;Manufacturing   ;Y30-49;2162;1;8.238792616450456e-06;1294455;0.0016702009726100946;1;0;Young +5899;Estonia;F;Elementary occupations;Manufacturing   ;Y50-64;2289;1;8.722754994937602e-06;1294455;0.0017683117605478754;0;1;Old +5900;Estonia;F;Elementary occupations;Manufacturing   ;Y65-84;269;1;1.0250856678192288e-06;1294455;0.0002078094642146695;0;1;Old +5901;Estonia;F;Elementary occupations;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5902;Estonia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +5903;Estonia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;1;0;Young +5904;Estonia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;82;1;3.1247964595233e-07;1294455;6.334712292045687e-05;0;1;Old +5905;Estonia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;0;1;Old +5906;Estonia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;36;1;1.3718618602785217e-07;1294455;2.7810932013859115e-05;1;0;Young +5907;Estonia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;110;1;4.1918001286288164e-07;1294455;8.497784782012507e-05;1;0;Young +5908;Estonia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;118;1;4.496658319801821e-07;1294455;9.115805493431599e-05;0;1;Old +5909;Estonia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +5910;Estonia;F;Elementary occupations;Construction   ;Y15-29;62;1;2.3626509815907876e-07;1294455;4.7896605134979584e-05;1;0;Young +5911;Estonia;F;Elementary occupations;Construction   ;Y30-49;175;1;6.668772931909481e-07;1294455;0.00013519203062292625;1;0;Young +5912;Estonia;F;Elementary occupations;Construction   ;Y50-64;193;1;7.354703862048742e-07;1294455;0.0001490974966298558;0;1;Old +5913;Estonia;F;Elementary occupations;Construction   ;Y65-84;44;1;1.6767200514515266e-07;1294455;3.399113912805003e-05;0;1;Old +5914;Estonia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;585;1;2.2292755229525977e-06;1294455;0.00045192764522521063;1;0;Young +5915;Estonia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1203;1;4.5843050497640604e-06;1294455;0.0009293486447964587;1;0;Young +5916;Estonia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1323;1;5.0415923365235675e-06;1294455;0.0010220517515093224;0;1;Old +5917;Estonia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;214;1;8.15495661387788e-07;1294455;0.00016532054030460696;0;1;Old +5918;Estonia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5919;Estonia;F;Elementary occupations;Transportation and storage   ;Y15-29;114;1;4.344229224215319e-07;1294455;8.806795137722053e-05;1;0;Young +5920;Estonia;F;Elementary occupations;Transportation and storage   ;Y30-49;327;1;1.2461078564196573e-06;1294455;0.0002526159657925536;1;0;Young +5921;Estonia;F;Elementary occupations;Transportation and storage   ;Y50-64;443;1;1.6881522336205144e-06;1294455;0.0003422289689483219;0;1;Old +5922;Estonia;F;Elementary occupations;Transportation and storage   ;Y65-84;90;1;3.4296546506963047e-07;1294455;6.952733003464779e-05;0;1;Old +5923;Estonia;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;1087;1;4.142260672563203e-06;1294455;0.0008397356416406904;1;0;Young +5924;Estonia;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;1399;1;5.3312076181379226e-06;1294455;0.0010807637190941362;1;0;Young +5925;Estonia;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;1521;1;5.796116359676755e-06;1294455;0.0011750118775855475;0;1;Old +5926;Estonia;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;144;1;5.487447441114087e-07;1294455;0.00011124372805543646;0;1;Old +5927;Estonia;F;Elementary occupations;Information and communication   ;Y15-29;39;1;1.4861836819683987e-07;1294455;3.0128509681680707e-05;1;0;Young +5928;Estonia;F;Elementary occupations;Information and communication   ;Y30-49;38;1;1.448076408071773e-07;1294455;2.9355983792406842e-05;1;0;Young +5929;Estonia;F;Elementary occupations;Information and communication   ;Y50-64;74;1;2.819938268350295e-07;1294455;5.716691580626596e-05;0;1;Old +5930;Estonia;F;Elementary occupations;Information and communication   ;Y65-84;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;0;1;Old +5931;Estonia;F;Elementary occupations;Financial and insurance activities   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5932;Estonia;F;Elementary occupations;Financial and insurance activities   ;Y30-49;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;1;0;Young +5933;Estonia;F;Elementary occupations;Financial and insurance activities   ;Y50-64;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;0;1;Old +5934;Estonia;F;Elementary occupations;Financial and insurance activities   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5935;Estonia;F;Elementary occupations;Real estate activities   ;Y15-29;121;1;4.610980141491698e-07;1294455;9.347563260213758e-05;1;0;Young +5936;Estonia;F;Elementary occupations;Real estate activities   ;Y30-49;575;1;2.191168249055972e-06;1294455;0.00044420238633247197;1;0;Young +5937;Estonia;F;Elementary occupations;Real estate activities   ;Y50-64;1086;1;4.13844994517354e-06;1294455;0.0008389631157514167;0;1;Old +5938;Estonia;F;Elementary occupations;Real estate activities   ;Y65-84;485;1;1.8482027839863419e-06;1294455;0.0003746750562978242;0;1;Old +5939;Estonia;F;Elementary occupations;Real estate activities   ;Y_GE85;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +5940;Estonia;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;1;0;Young +5941;Estonia;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;1;0;Young +5942;Estonia;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;101;1;3.848834663559186e-07;1294455;7.802511481666029e-05;0;1;Old +5943;Estonia;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;56;1;2.134007338211034e-07;1294455;4.32614497993364e-05;0;1;Old +5944;Estonia;F;Elementary occupations;Administrative and support service activities   ;Y15-29;679;1;2.587483897580879e-06;1294455;0.0005245450788169539;1;0;Young +5945;Estonia;F;Elementary occupations;Administrative and support service activities   ;Y30-49;1908;1;7.270867859476165e-06;1294455;0.001473979396734533;1;0;Young +5946;Estonia;F;Elementary occupations;Administrative and support service activities   ;Y50-64;2341;1;8.920912819200054e-06;1294455;0.0018084831067901163;0;1;Old +5947;Estonia;F;Elementary occupations;Administrative and support service activities   ;Y65-84;328;1;1.24991858380932e-06;1294455;0.0002533884916818275;0;1;Old +5948;Estonia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;66;1;2.51508007717729e-07;1294455;5.0986708692075045e-05;1;0;Young +5949;Estonia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;240;1;9.145745735190145e-07;1294455;0.00018540621342572744;1;0;Young +5950;Estonia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;416;1;1.5852625940996252e-06;1294455;0.00032137076993792756;0;1;Old +5951;Estonia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;111;1;4.2299074025254424e-07;1294455;8.575037370939894e-05;0;1;Old +5952;Estonia;F;Elementary occupations;Education   ;Y15-29;163;1;6.211485645149974e-07;1294455;0.0001259217199516399;1;0;Young +5953;Estonia;F;Elementary occupations;Education   ;Y30-49;1155;1;4.401390135060257e-06;1294455;0.0008922674021113133;1;0;Young +5954;Estonia;F;Elementary occupations;Education   ;Y50-64;2072;1;7.895827151380826e-06;1294455;0.0016006736425754468;0;1;Old +5955;Estonia;F;Elementary occupations;Education   ;Y65-84;609;1;2.3207329803044993e-06;1294455;0.00047046826656778335;0;1;Old +5956;Estonia;F;Elementary occupations;Education   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5957;Estonia;F;Elementary occupations;Human health and social work activities   ;Y15-29;123;1;4.6871946892849497e-07;1294455;9.502068438068531e-05;1;0;Young +5958;Estonia;F;Elementary occupations;Human health and social work activities   ;Y30-49;605;1;2.3054900707458493e-06;1294455;0.0004673781630106879;1;0;Young +5959;Estonia;F;Elementary occupations;Human health and social work activities   ;Y50-64;1103;1;4.203232310797805e-06;1294455;0.0008520960558690723;0;1;Old +5960;Estonia;F;Elementary occupations;Human health and social work activities   ;Y65-84;264;1;1.006032030870916e-06;1294455;0.00020394683476830018;0;1;Old +5961;Estonia;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;188;1;7.164167492565614e-07;1294455;0.00014523486718348648;1;0;Young +5962;Estonia;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;294;1;1.1203538525607928e-06;1294455;0.0002271226114465161;1;0;Young +5963;Estonia;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;505;1;1.924417331779593e-06;1294455;0.00039012557408330147;0;1;Old +5964;Estonia;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;218;1;8.307385709464382e-07;1294455;0.00016841064386170242;0;1;Old +5965;Estonia;F;Elementary occupations;Other service activities   ;Y15-29;50;1;1.9053636948312803e-07;1294455;3.8626294463693215e-05;1;0;Young +5966;Estonia;F;Elementary occupations;Other service activities   ;Y30-49;157;1;5.98284200177022e-07;1294455;0.00012128656461599669;1;0;Young +5967;Estonia;F;Elementary occupations;Other service activities   ;Y50-64;187;1;7.126060218668988e-07;1294455;0.00014446234129421263;0;1;Old +5968;Estonia;F;Elementary occupations;Other service activities   ;Y65-84;58;1;2.2102218860042852e-07;1294455;4.480650157788413e-05;0;1;Old +5969;Estonia;F;Elementary occupations;Other service activities   ;Y_GE85;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5970;Estonia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +5971;Estonia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;1;0;Young +5972;Estonia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5973;Estonia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5974;Estonia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +5975;Estonia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +5976;Estonia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +5977;Estonia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5978;Estonia;F;Elementary occupations;Not stated   ;Y15-29;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;1;0;Young +5979;Estonia;F;Elementary occupations;Not stated   ;Y30-49;54;1;2.0577927904177827e-07;1294455;4.171639802078867e-05;1;0;Young +5980;Estonia;F;Elementary occupations;Not stated   ;Y50-64;57;1;2.1721146121076594e-07;1294455;4.4033975688610265e-05;0;1;Old +5981;Estonia;F;Elementary occupations;Not stated   ;Y65-84;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +5982;Estonia;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;1;0;Young +5983;Estonia;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;1;0;Young +5984;Estonia;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;0;1;Old +5985;Estonia;F;Not stated;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +5986;Estonia;F;Not stated;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +5987;Estonia;F;Not stated;Mining and quarrying   ;Y30-49;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;1;0;Young +5988;Estonia;F;Not stated;Mining and quarrying   ;Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +5989;Estonia;F;Not stated;Manufacturing   ;Y15-29;98;1;3.7345128418693096e-07;1294455;7.57075371488387e-05;1;0;Young +5990;Estonia;F;Not stated;Manufacturing   ;Y30-49;326;1;1.2422971290299947e-06;1294455;0.0002518434399032798;1;0;Young +5991;Estonia;F;Not stated;Manufacturing   ;Y50-64;174;1;6.630665658012855e-07;1294455;0.00013441950473365238;0;1;Old +5992;Estonia;F;Not stated;Manufacturing   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +5993;Estonia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +5994;Estonia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;1;0;Young +5995;Estonia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +5996;Estonia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +5997;Estonia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +5998;Estonia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +5999;Estonia;F;Not stated;Construction   ;Y15-29;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +6000;Estonia;F;Not stated;Construction   ;Y30-49;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;1;0;Young +6001;Estonia;F;Not stated;Construction   ;Y50-64;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +6002;Estonia;F;Not stated;Construction   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6003;Estonia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;69;1;2.629401898867167e-07;1294455;5.3304286359896634e-05;1;0;Young +6004;Estonia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;118;1;4.496658319801821e-07;1294455;9.115805493431599e-05;1;0;Young +6005;Estonia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;62;1;2.3626509815907876e-07;1294455;4.7896605134979584e-05;0;1;Old +6006;Estonia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6007;Estonia;F;Not stated;Transportation and storage   ;Y15-29;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;1;0;Young +6008;Estonia;F;Not stated;Transportation and storage   ;Y30-49;99;1;3.772620115765935e-07;1294455;7.648006303811257e-05;1;0;Young +6009;Estonia;F;Not stated;Transportation and storage   ;Y50-64;46;1;1.7529345992447778e-07;1294455;3.553619090659776e-05;0;1;Old +6010;Estonia;F;Not stated;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6011;Estonia;F;Not stated;Accommodation and food service activities   ;Y15-29;71;1;2.705616446660418e-07;1294455;5.4849338138444365e-05;1;0;Young +6012;Estonia;F;Not stated;Accommodation and food service activities   ;Y30-49;68;1;2.591294624970541e-07;1294455;5.253176047062277e-05;1;0;Young +6013;Estonia;F;Not stated;Accommodation and food service activities   ;Y50-64;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;0;1;Old +6014;Estonia;F;Not stated;Accommodation and food service activities   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6015;Estonia;F;Not stated;Information and communication   ;Y15-29;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;1;0;Young +6016;Estonia;F;Not stated;Information and communication   ;Y30-49;40;1;1.5242909558650242e-07;1294455;3.090103557095457e-05;1;0;Young +6017;Estonia;F;Not stated;Information and communication   ;Y50-64;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +6018;Estonia;F;Not stated;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6019;Estonia;F;Not stated;Financial and insurance activities   ;Y15-29;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;1;0;Young +6020;Estonia;F;Not stated;Financial and insurance activities   ;Y30-49;74;1;2.819938268350295e-07;1294455;5.716691580626596e-05;1;0;Young +6021;Estonia;F;Not stated;Financial and insurance activities   ;Y50-64;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +6022;Estonia;F;Not stated;Real estate activities   ;Y15-29;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +6023;Estonia;F;Not stated;Real estate activities   ;Y30-49;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;1;0;Young +6024;Estonia;F;Not stated;Real estate activities   ;Y50-64;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;0;1;Old +6025;Estonia;F;Not stated;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6026;Estonia;F;Not stated;Professional, scientific and technical activities   ;Y15-29;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;1;0;Young +6027;Estonia;F;Not stated;Professional, scientific and technical activities   ;Y30-49;56;1;2.134007338211034e-07;1294455;4.32614497993364e-05;1;0;Young +6028;Estonia;F;Not stated;Professional, scientific and technical activities   ;Y50-64;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;0;1;Old +6029;Estonia;F;Not stated;Administrative and support service activities   ;Y15-29;31;1;1.1813254907953938e-07;1294455;2.3948302567489792e-05;1;0;Young +6030;Estonia;F;Not stated;Administrative and support service activities   ;Y30-49;53;1;2.019685516521157e-07;1294455;4.094387213151481e-05;1;0;Young +6031;Estonia;F;Not stated;Administrative and support service activities   ;Y50-64;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;0;1;Old +6032;Estonia;F;Not stated;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6033;Estonia;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;1;0;Young +6034;Estonia;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;127;1;4.839623784871452e-07;1294455;9.811078793778077e-05;1;0;Young +6035;Estonia;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;55;1;2.0959000643144082e-07;1294455;4.2488923910062534e-05;0;1;Old +6036;Estonia;F;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6037;Estonia;F;Not stated;Education   ;Y15-29;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;1;0;Young +6038;Estonia;F;Not stated;Education   ;Y30-49;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;1;0;Young +6039;Estonia;F;Not stated;Education   ;Y50-64;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;0;1;Old +6040;Estonia;F;Not stated;Education   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6041;Estonia;F;Not stated;Human health and social work activities   ;Y15-29;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +6042;Estonia;F;Not stated;Human health and social work activities   ;Y30-49;69;1;2.629401898867167e-07;1294455;5.3304286359896634e-05;1;0;Young +6043;Estonia;F;Not stated;Human health and social work activities   ;Y50-64;41;1;1.56239822976165e-07;1294455;3.1673561460228434e-05;0;1;Old +6044;Estonia;F;Not stated;Human health and social work activities   ;Y65-84;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6045;Estonia;F;Not stated;Arts, entertainment and recreation   ;Y15-29;23;1;8.764672996223889e-08;1294455;1.776809545329888e-05;1;0;Young +6046;Estonia;F;Not stated;Arts, entertainment and recreation   ;Y30-49;23;1;8.764672996223889e-08;1294455;1.776809545329888e-05;1;0;Young +6047;Estonia;F;Not stated;Arts, entertainment and recreation   ;Y50-64;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +6048;Estonia;F;Not stated;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6049;Estonia;F;Not stated;Other service activities   ;Y15-29;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +6050;Estonia;F;Not stated;Other service activities   ;Y30-49;48;1;1.829149147038029e-07;1294455;3.7081242685145484e-05;1;0;Young +6051;Estonia;F;Not stated;Other service activities   ;Y50-64;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +6052;Estonia;F;Not stated;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6053;Estonia;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6054;Estonia;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6055;Estonia;F;Not stated;Not stated   ;Y15-29;381;1;1.4518871354614356e-06;1294455;0.0002943323638133423;1;0;Young +6056;Estonia;F;Not stated;Not stated   ;Y30-49;537;1;2.046360608248795e-06;1294455;0.0004148464025400651;1;0;Young +6057;Estonia;F;Not stated;Not stated   ;Y50-64;277;1;1.0555714869365292e-06;1294455;0.0002139896713288604;0;1;Old +6058;Estonia;F;Not stated;Not stated   ;Y65-84;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;0;1;Old +6059;Estonia;F;Not stated;Not stated   ;Y_GE85;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6060;Estonia;M;Not applicable;Not applicable  ;Y15-29;61190;1;0.0002331784089734521;1294455;0.04727085916466776;1;0;Young +6061;Estonia;M;Not applicable;Not applicable  ;Y30-49;27648;1;0.00010535899086939047;1294455;0.0213587957866438;1;0;Young +6062;Estonia;M;Not applicable;Not applicable  ;Y50-64;37465;1;0.00014276890165370782;1294455;0.028942682441645325;0;1;Old +6063;Estonia;M;Not applicable;Not applicable  ;Y65-84;61599;1;0.00023473699647582407;1294455;0.04758682225338077;0;1;Old +6064;Estonia;M;Not applicable;Not applicable  ;Y_GE85;4445;1;1.6938683247050083e-05;1294455;0.0034338775778223266;0;1;Old +6065;Estonia;M;Not applicable;Not applicable  ;Y_LT15;102888;1;0.00039207811966760153;1294455;0.07948364369560935;0;1;Old +6066;Estonia;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6067;Estonia;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6068;Estonia;M;Armed forces occupations;Transportation and storage   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6069;Estonia;M;Armed forces occupations;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6070;Estonia;M;Armed forces occupations;Transportation and storage   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6071;Estonia;M;Armed forces occupations;Information and communication   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6072;Estonia;M;Armed forces occupations;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6073;Estonia;M;Armed forces occupations;Administrative and support service activities   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6074;Estonia;M;Armed forces occupations;Administrative and support service activities   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6075;Estonia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;4153;1;1.5825950849268613e-05;1294455;0.0032083000181543585;1;0;Young +6076;Estonia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;1336;1;5.091131792589181e-06;1294455;0.0010320945880698826;1;0;Young +6077;Estonia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;214;1;8.15495661387788e-07;1294455;0.00016532054030460696;0;1;Old +6078;Estonia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;0;1;Old +6079;Estonia;M;Armed forces occupations;Education   ;Y15-29;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;1;0;Young +6080;Estonia;M;Armed forces occupations;Education   ;Y30-49;39;1;1.4861836819683987e-07;1294455;3.0128509681680707e-05;1;0;Young +6081;Estonia;M;Armed forces occupations;Education   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6082;Estonia;M;Armed forces occupations;Education   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6083;Estonia;M;Armed forces occupations;Human health and social work activities   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6084;Estonia;M;Armed forces occupations;Human health and social work activities   ;Y30-49;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6085;Estonia;M;Armed forces occupations;Human health and social work activities   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6086;Estonia;M;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6087;Estonia;M;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +6088;Estonia;M;Armed forces occupations;Other service activities   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6089;Estonia;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6090;Estonia;M;Armed forces occupations;Not stated   ;Y15-29;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6091;Estonia;M;Armed forces occupations;Not stated   ;Y30-49;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6092;Estonia;M;Managers;Agriculture, forestry and fishing   ;Y15-29;50;1;1.9053636948312803e-07;1294455;3.8626294463693215e-05;1;0;Young +6093;Estonia;M;Managers;Agriculture, forestry and fishing   ;Y30-49;396;1;1.509048046306374e-06;1294455;0.0003059202521524503;1;0;Young +6094;Estonia;M;Managers;Agriculture, forestry and fishing   ;Y50-64;215;1;8.193063887774505e-07;1294455;0.00016609306619388083;0;1;Old +6095;Estonia;M;Managers;Agriculture, forestry and fishing   ;Y65-84;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;0;1;Old +6096;Estonia;M;Managers;Mining and quarrying   ;Y15-29;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;1;0;Young +6097;Estonia;M;Managers;Mining and quarrying   ;Y30-49;107;1;4.07747830693894e-07;1294455;8.266027015230348e-05;1;0;Young +6098;Estonia;M;Managers;Mining and quarrying   ;Y50-64;126;1;4.801516510974826e-07;1294455;9.73382620485069e-05;0;1;Old +6099;Estonia;M;Managers;Mining and quarrying   ;Y65-84;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +6100;Estonia;M;Managers;Manufacturing   ;Y15-29;498;1;1.897742240051955e-06;1294455;0.0003847178928583844;1;0;Young +6101;Estonia;M;Managers;Manufacturing   ;Y30-49;3858;1;1.4701786269318158e-05;1294455;0.0029804048808185686;1;0;Young +6102;Estonia;M;Managers;Manufacturing   ;Y50-64;1685;1;6.4210756515814145e-06;1294455;0.0013017061234264612;0;1;Old +6103;Estonia;M;Managers;Manufacturing   ;Y65-84;185;1;7.049845670875737e-07;1294455;0.0001429172895156649;0;1;Old +6104;Estonia;M;Managers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6105;Estonia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;1;0;Young +6106;Estonia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;270;1;1.0288963952088914e-06;1294455;0.00020858199010394336;1;0;Young +6107;Estonia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;165;1;6.287700192943225e-07;1294455;0.0001274667717301876;0;1;Old +6108;Estonia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;0;1;Old +6109;Estonia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;1;0;Young +6110;Estonia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;202;1;7.697669327118372e-07;1294455;0.00015605022963332058;1;0;Young +6111;Estonia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;106;1;4.039371033042314e-07;1294455;8.188774426302962e-05;0;1;Old +6112;Estonia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +6113;Estonia;M;Managers;Construction   ;Y15-29;606;1;2.3093007981355115e-06;1294455;0.0004681506888999618;1;0;Young +6114;Estonia;M;Managers;Construction   ;Y30-49;3417;1;1.302125549047697e-05;1294455;0.0026397209636487944;1;0;Young +6115;Estonia;M;Managers;Construction   ;Y50-64;1300;1;4.9539456065613285e-06;1294455;0.0010042836560560237;0;1;Old +6116;Estonia;M;Managers;Construction   ;Y65-84;114;1;4.344229224215319e-07;1294455;8.806795137722053e-05;0;1;Old +6117;Estonia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;644;1;2.454108438942689e-06;1294455;0.0004975066726923686;1;0;Young +6118;Estonia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4963;1;1.891264003489529e-05;1294455;0.0038340459884661886;1;0;Young +6119;Estonia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1785;1;6.80214839054767e-06;1294455;0.0013789587123538478;0;1;Old +6120;Estonia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;138;1;5.258803797734334e-07;1294455;0.00010660857271979327;0;1;Old +6121;Estonia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6122;Estonia;M;Managers;Transportation and storage   ;Y15-29;249;1;9.488711200259775e-07;1294455;0.0001923589464291922;1;0;Young +6123;Estonia;M;Managers;Transportation and storage   ;Y30-49;1861;1;7.0917636721620255e-06;1294455;0.0014376706799386614;1;0;Young +6124;Estonia;M;Managers;Transportation and storage   ;Y50-64;798;1;3.0409604569507232e-06;1294455;0.0006164756596405437;0;1;Old +6125;Estonia;M;Managers;Transportation and storage   ;Y65-84;79;1;3.010474637833423e-07;1294455;6.102954525263528e-05;0;1;Old +6126;Estonia;M;Managers;Accommodation and food service activities   ;Y15-29;158;1;6.020949275666846e-07;1294455;0.00012205909050527056;1;0;Young +6127;Estonia;M;Managers;Accommodation and food service activities   ;Y30-49;638;1;2.4312440746047135e-06;1294455;0.0004928715173567254;1;0;Young +6128;Estonia;M;Managers;Accommodation and food service activities   ;Y50-64;241;1;9.18385300908677e-07;1294455;0.0001861787393150013;0;1;Old +6129;Estonia;M;Managers;Accommodation and food service activities   ;Y65-84;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +6130;Estonia;M;Managers;Information and communication   ;Y15-29;343;1;1.3070794946542583e-06;1294455;0.00026497638002093545;1;0;Young +6131;Estonia;M;Managers;Information and communication   ;Y30-49;1268;1;4.832002330092127e-06;1294455;0.00097956282759926;1;0;Young +6132;Estonia;M;Managers;Information and communication   ;Y50-64;227;1;8.650351174534013e-07;1294455;0.0001753633768651672;0;1;Old +6133;Estonia;M;Managers;Information and communication   ;Y65-84;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;0;1;Old +6134;Estonia;M;Managers;Financial and insurance activities   ;Y15-29;91;1;3.46776192459293e-07;1294455;7.029985592392165e-05;1;0;Young +6135;Estonia;M;Managers;Financial and insurance activities   ;Y30-49;610;1;2.324543707694162e-06;1294455;0.0004712407924570572;1;0;Young +6136;Estonia;M;Managers;Financial and insurance activities   ;Y50-64;108;1;4.1155855808355654e-07;1294455;8.343279604157734e-05;0;1;Old +6137;Estonia;M;Managers;Financial and insurance activities   ;Y65-84;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +6138;Estonia;M;Managers;Real estate activities   ;Y15-29;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;1;0;Young +6139;Estonia;M;Managers;Real estate activities   ;Y30-49;587;1;2.236896977731923e-06;1294455;0.0004534726970037583;1;0;Young +6140;Estonia;M;Managers;Real estate activities   ;Y50-64;397;1;1.5128587736960366e-06;1294455;0.0003066927780417241;0;1;Old +6141;Estonia;M;Managers;Real estate activities   ;Y65-84;66;1;2.51508007717729e-07;1294455;5.0986708692075045e-05;0;1;Old +6142;Estonia;M;Managers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6143;Estonia;M;Managers;Professional, scientific and technical activities   ;Y15-29;245;1;9.336282104673273e-07;1294455;0.00018926884287209675;1;0;Young +6144;Estonia;M;Managers;Professional, scientific and technical activities   ;Y30-49;1321;1;5.033970881744242e-06;1294455;0.0010205066997307746;1;0;Young +6145;Estonia;M;Managers;Professional, scientific and technical activities   ;Y50-64;521;1;1.9853889700141942e-06;1294455;0.0004024859883116833;0;1;Old +6146;Estonia;M;Managers;Professional, scientific and technical activities   ;Y65-84;123;1;4.6871946892849497e-07;1294455;9.502068438068531e-05;0;1;Old +6147;Estonia;M;Managers;Administrative and support service activities   ;Y15-29;222;1;8.459814805050885e-07;1294455;0.00017150074741879788;1;0;Young +6148;Estonia;M;Managers;Administrative and support service activities   ;Y30-49;982;1;3.7421342966486346e-06;1294455;0.0007586204232669347;1;0;Young +6149;Estonia;M;Managers;Administrative and support service activities   ;Y50-64;292;1;1.1127323977814678e-06;1294455;0.00022557755966796838;0;1;Old +6150;Estonia;M;Managers;Administrative and support service activities   ;Y65-84;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;0;1;Old +6151;Estonia;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;163;1;6.211485645149974e-07;1294455;0.0001259217199516399;1;0;Young +6152;Estonia;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;1520;1;5.792305632287092e-06;1294455;0.0011742393516962738;1;0;Young +6153;Estonia;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;673;1;2.5646195332429032e-06;1294455;0.0005199099234813107;0;1;Old +6154;Estonia;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;83;1;3.1629037334199253e-07;1294455;6.411964880973074e-05;0;1;Old +6155;Estonia;M;Managers;Education   ;Y15-29;61;1;2.3245437076941619e-07;1294455;4.712407924570572e-05;1;0;Young +6156;Estonia;M;Managers;Education   ;Y30-49;449;1;1.7110165979584897e-06;1294455;0.00034686412428396507;1;0;Young +6157;Estonia;M;Managers;Education   ;Y50-64;499;1;1.9015529674416177e-06;1294455;0.0003854904187476583;0;1;Old +6158;Estonia;M;Managers;Education   ;Y65-84;91;1;3.46776192459293e-07;1294455;7.029985592392165e-05;0;1;Old +6159;Estonia;M;Managers;Human health and social work activities   ;Y15-29;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;1;0;Young +6160;Estonia;M;Managers;Human health and social work activities   ;Y30-49;211;1;8.040634792188003e-07;1294455;0.00016300296263678537;1;0;Young +6161;Estonia;M;Managers;Human health and social work activities   ;Y50-64;194;1;7.392811135945367e-07;1294455;0.00014987002251912968;0;1;Old +6162;Estonia;M;Managers;Human health and social work activities   ;Y65-84;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;0;1;Old +6163;Estonia;M;Managers;Arts, entertainment and recreation   ;Y15-29;100;1;3.8107273896625605e-07;1294455;7.725258892738643e-05;1;0;Young +6164;Estonia;M;Managers;Arts, entertainment and recreation   ;Y30-49;427;1;1.6271805953859134e-06;1294455;0.00032986855471994005;1;0;Young +6165;Estonia;M;Managers;Arts, entertainment and recreation   ;Y50-64;242;1;9.221960282983396e-07;1294455;0.00018695126520427516;0;1;Old +6166;Estonia;M;Managers;Arts, entertainment and recreation   ;Y65-84;43;1;1.638612777554901e-07;1294455;3.3218613238776165e-05;0;1;Old +6167;Estonia;M;Managers;Other service activities   ;Y15-29;81;1;3.086689185626674e-07;1294455;6.257459703118301e-05;1;0;Young +6168;Estonia;M;Managers;Other service activities   ;Y30-49;332;1;1.2651614933679701e-06;1294455;0.00025647859523892296;1;0;Young +6169;Estonia;M;Managers;Other service activities   ;Y50-64;179;1;6.821202027495983e-07;1294455;0.0001382821341800217;0;1;Old +6170;Estonia;M;Managers;Other service activities   ;Y65-84;51;1;1.943470968727906e-07;1294455;3.939882035296708e-05;0;1;Old +6171;Estonia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6172;Estonia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;1;0;Young +6173;Estonia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6174;Estonia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6175;Estonia;M;Managers;Not stated   ;Y15-29;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;1;0;Young +6176;Estonia;M;Managers;Not stated   ;Y30-49;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;1;0;Young +6177;Estonia;M;Managers;Not stated   ;Y50-64;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;0;1;Old +6178;Estonia;M;Managers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6179;Estonia;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;1;0;Young +6180;Estonia;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;134;1;5.106374702147831e-07;1294455;0.00010351846916269782;1;0;Young +6181;Estonia;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;95;1;3.6201910201794326e-07;1294455;7.338995948101711e-05;0;1;Old +6182;Estonia;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;0;1;Old +6183;Estonia;M;Professionals;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +6184;Estonia;M;Professionals;Mining and quarrying   ;Y30-49;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;1;0;Young +6185;Estonia;M;Professionals;Mining and quarrying   ;Y50-64;41;1;1.56239822976165e-07;1294455;3.1673561460228434e-05;0;1;Old +6186;Estonia;M;Professionals;Mining and quarrying   ;Y65-84;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +6187;Estonia;M;Professionals;Manufacturing   ;Y15-29;693;1;2.6408340810361544e-06;1294455;0.000535360441266788;1;0;Young +6188;Estonia;M;Professionals;Manufacturing   ;Y30-49;1243;1;4.736734145350563e-06;1294455;0.0009602496803674133;1;0;Young +6189;Estonia;M;Professionals;Manufacturing   ;Y50-64;695;1;2.6484555358154796e-06;1294455;0.0005369054930453356;0;1;Old +6190;Estonia;M;Professionals;Manufacturing   ;Y65-84;136;1;5.182589249941082e-07;1294455;0.00010506352094124554;0;1;Old +6191;Estonia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;102;1;3.886941937455812e-07;1294455;7.879764070593416e-05;1;0;Young +6192;Estonia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;238;1;9.069531187396895e-07;1294455;0.0001838611616471797;1;0;Young +6193;Estonia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;173;1;6.592558384116229e-07;1294455;0.00013364697884437853;0;1;Old +6194;Estonia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;0;1;Old +6195;Estonia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +6196;Estonia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;48;1;1.829149147038029e-07;1294455;3.7081242685145484e-05;1;0;Young +6197;Estonia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;0;1;Old +6198;Estonia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6199;Estonia;M;Professionals;Construction   ;Y15-29;213;1;8.116849339981254e-07;1294455;0.0001645480144153331;1;0;Young +6200;Estonia;M;Professionals;Construction   ;Y30-49;382;1;1.455697862851098e-06;1294455;0.0002951048897026162;1;0;Young +6201;Estonia;M;Professionals;Construction   ;Y50-64;279;1;1.0631929417158544e-06;1294455;0.00021553472310740813;0;1;Old +6202;Estonia;M;Professionals;Construction   ;Y65-84;67;1;2.5531873510739155e-07;1294455;5.175923458134891e-05;0;1;Old +6203;Estonia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;285;1;1.0860573060538298e-06;1294455;0.00022016987844305133;1;0;Young +6204;Estonia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;691;1;2.633212626256829e-06;1294455;0.0005338153894882403;1;0;Young +6205;Estonia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;211;1;8.040634792188003e-07;1294455;0.00016300296263678537;0;1;Old +6206;Estonia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;0;1;Old +6207;Estonia;M;Professionals;Transportation and storage   ;Y15-29;115;1;4.382336498111945e-07;1294455;8.884047726649439e-05;1;0;Young +6208;Estonia;M;Professionals;Transportation and storage   ;Y30-49;288;1;1.0974894882228174e-06;1294455;0.00022248745611087292;1;0;Young +6209;Estonia;M;Professionals;Transportation and storage   ;Y50-64;163;1;6.211485645149974e-07;1294455;0.0001259217199516399;0;1;Old +6210;Estonia;M;Professionals;Transportation and storage   ;Y65-84;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;0;1;Old +6211;Estonia;M;Professionals;Accommodation and food service activities   ;Y15-29;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;1;0;Young +6212;Estonia;M;Professionals;Accommodation and food service activities   ;Y30-49;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;1;0;Young +6213;Estonia;M;Professionals;Accommodation and food service activities   ;Y50-64;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;0;1;Old +6214;Estonia;M;Professionals;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6215;Estonia;M;Professionals;Information and communication   ;Y15-29;2179;1;8.303574982074719e-06;1294455;0.0016833339127277503;1;0;Young +6216;Estonia;M;Professionals;Information and communication   ;Y30-49;2808;1;1.070052251017247e-05;1294455;0.002169252697081011;1;0;Young +6217;Estonia;M;Professionals;Information and communication   ;Y50-64;458;1;1.7453131444654527e-06;1294455;0.00035381685728742986;0;1;Old +6218;Estonia;M;Professionals;Information and communication   ;Y65-84;85;1;3.239118281213176e-07;1294455;6.566470058827847e-05;0;1;Old +6219;Estonia;M;Professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6220;Estonia;M;Professionals;Financial and insurance activities   ;Y15-29;343;1;1.3070794946542583e-06;1294455;0.00026497638002093545;1;0;Young +6221;Estonia;M;Professionals;Financial and insurance activities   ;Y30-49;692;1;2.6370233536464918e-06;1294455;0.0005345879153775141;1;0;Young +6222;Estonia;M;Professionals;Financial and insurance activities   ;Y50-64;104;1;3.963156485249063e-07;1294455;8.034269248448189e-05;0;1;Old +6223;Estonia;M;Professionals;Financial and insurance activities   ;Y65-84;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +6224;Estonia;M;Professionals;Real estate activities   ;Y15-29;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;1;0;Young +6225;Estonia;M;Professionals;Real estate activities   ;Y30-49;72;1;2.7437237205570434e-07;1294455;5.562186402771823e-05;1;0;Young +6226;Estonia;M;Professionals;Real estate activities   ;Y50-64;36;1;1.3718618602785217e-07;1294455;2.7810932013859115e-05;0;1;Old +6227;Estonia;M;Professionals;Real estate activities   ;Y65-84;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;0;1;Old +6228;Estonia;M;Professionals;Professional, scientific and technical activities   ;Y15-29;1248;1;4.755787782298876e-06;1294455;0.0009641123098137826;1;0;Young +6229;Estonia;M;Professionals;Professional, scientific and technical activities   ;Y30-49;2693;1;1.0262288860361275e-05;1294455;0.0020804122198145166;1;0;Young +6230;Estonia;M;Professionals;Professional, scientific and technical activities   ;Y50-64;1099;1;4.187989401239154e-06;1294455;0.0008490059523119769;0;1;Old +6231;Estonia;M;Professionals;Professional, scientific and technical activities   ;Y65-84;328;1;1.24991858380932e-06;1294455;0.0002533884916818275;0;1;Old +6232;Estonia;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6233;Estonia;M;Professionals;Administrative and support service activities   ;Y15-29;72;1;2.7437237205570434e-07;1294455;5.562186402771823e-05;1;0;Young +6234;Estonia;M;Professionals;Administrative and support service activities   ;Y30-49;173;1;6.592558384116229e-07;1294455;0.00013364697884437853;1;0;Young +6235;Estonia;M;Professionals;Administrative and support service activities   ;Y50-64;46;1;1.7529345992447778e-07;1294455;3.553619090659776e-05;0;1;Old +6236;Estonia;M;Professionals;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6237;Estonia;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;551;1;2.099710791704071e-06;1294455;0.0004256617649898992;1;0;Young +6238;Estonia;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;1442;1;5.495068895893413e-06;1294455;0.0011139823323329124;1;0;Young +6239;Estonia;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;716;1;2.7284808109983934e-06;1294455;0.0005531285367200868;0;1;Old +6240;Estonia;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;137;1;5.220696523837708e-07;1294455;0.00010583604683051941;0;1;Old +6241;Estonia;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6242;Estonia;M;Professionals;Education   ;Y15-29;804;1;3.063824821288699e-06;1294455;0.0006211108149761869;1;0;Young +6243;Estonia;M;Professionals;Education   ;Y30-49;2311;1;8.806590997510177e-06;1294455;0.0017853073301119004;1;0;Young +6244;Estonia;M;Professionals;Education   ;Y50-64;1767;1;6.733555297533744e-06;1294455;0.001365053246346918;0;1;Old +6245;Estonia;M;Professionals;Education   ;Y65-84;763;1;2.907584998312534e-06;1294455;0.0005894372535159585;0;1;Old +6246;Estonia;M;Professionals;Education   ;Y_GE85;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6247;Estonia;M;Professionals;Human health and social work activities   ;Y15-29;223;1;8.49792207894751e-07;1294455;0.00017227327330807173;1;0;Young +6248;Estonia;M;Professionals;Human health and social work activities   ;Y30-49;647;1;2.465540621111677e-06;1294455;0.0004998242503601902;1;0;Young +6249;Estonia;M;Professionals;Human health and social work activities   ;Y50-64;457;1;1.7415024170757901e-06;1294455;0.000353044331398156;0;1;Old +6250;Estonia;M;Professionals;Human health and social work activities   ;Y65-84;165;1;6.287700192943225e-07;1294455;0.0001274667717301876;0;1;Old +6251;Estonia;M;Professionals;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6252;Estonia;M;Professionals;Arts, entertainment and recreation   ;Y15-29;321;1;1.223243492081682e-06;1294455;0.0002479808104569104;1;0;Young +6253;Estonia;M;Professionals;Arts, entertainment and recreation   ;Y30-49;768;1;2.9266386352608465e-06;1294455;0.0005932998829623278;1;0;Young +6254;Estonia;M;Professionals;Arts, entertainment and recreation   ;Y50-64;361;1;1.3756725876681843e-06;1294455;0.00027888184602786504;0;1;Old +6255;Estonia;M;Professionals;Arts, entertainment and recreation   ;Y65-84;102;1;3.886941937455812e-07;1294455;7.879764070593416e-05;0;1;Old +6256;Estonia;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6257;Estonia;M;Professionals;Other service activities   ;Y15-29;90;1;3.4296546506963047e-07;1294455;6.952733003464779e-05;1;0;Young +6258;Estonia;M;Professionals;Other service activities   ;Y30-49;283;1;1.0784358512745046e-06;1294455;0.0002186248266645036;1;0;Young +6259;Estonia;M;Professionals;Other service activities   ;Y50-64;176;1;6.706880205806106e-07;1294455;0.00013596455651220012;0;1;Old +6260;Estonia;M;Professionals;Other service activities   ;Y65-84;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;0;1;Old +6261;Estonia;M;Professionals;Other service activities   ;Y_GE85;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6262;Estonia;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6263;Estonia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6264;Estonia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;1;0;Young +6265;Estonia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6266;Estonia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6267;Estonia;M;Professionals;Not stated   ;Y15-29;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;1;0;Young +6268;Estonia;M;Professionals;Not stated   ;Y30-49;43;1;1.638612777554901e-07;1294455;3.3218613238776165e-05;1;0;Young +6269;Estonia;M;Professionals;Not stated   ;Y50-64;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +6270;Estonia;M;Professionals;Not stated   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6271;Estonia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;80;1;3.0485819117300483e-07;1294455;6.180207114190914e-05;1;0;Young +6272;Estonia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;378;1;1.4404549532924478e-06;1294455;0.0002920147861455207;1;0;Young +6273;Estonia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;261;1;9.945998487019282e-07;1294455;0.0002016292571004786;0;1;Old +6274;Estonia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;0;1;Old +6275;Estonia;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;1;0;Young +6276;Estonia;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;170;1;6.478236562426352e-07;1294455;0.00013132940117655694;1;0;Young +6277;Estonia;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;165;1;6.287700192943225e-07;1294455;0.0001274667717301876;0;1;Old +6278;Estonia;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;0;1;Old +6279;Estonia;M;Technicians and associate professionals;Manufacturing   ;Y15-29;1321;1;5.033970881744242e-06;1294455;0.0010205066997307746;1;0;Young +6280;Estonia;M;Technicians and associate professionals;Manufacturing   ;Y30-49;3518;1;1.3406138956832887e-05;1294455;0.0027177460784654547;1;0;Young +6281;Estonia;M;Technicians and associate professionals;Manufacturing   ;Y50-64;1500;1;5.716091084493841e-06;1294455;0.0011587888339107965;0;1;Old +6282;Estonia;M;Technicians and associate professionals;Manufacturing   ;Y65-84;174;1;6.630665658012855e-07;1294455;0.00013441950473365238;0;1;Old +6283;Estonia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;102;1;3.886941937455812e-07;1294455;7.879764070593416e-05;1;0;Young +6284;Estonia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;487;1;1.8558242387656669e-06;1294455;0.00037622010807637193;1;0;Young +6285;Estonia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;408;1;1.5547767749823248e-06;1294455;0.00031519056282373664;0;1;Old +6286;Estonia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;53;1;2.019685516521157e-07;1294455;4.094387213151481e-05;0;1;Old +6287;Estonia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;43;1;1.638612777554901e-07;1294455;3.3218613238776165e-05;1;0;Young +6288;Estonia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;171;1;6.516343836322978e-07;1294455;0.0001321019270658308;1;0;Young +6289;Estonia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;175;1;6.668772931909481e-07;1294455;0.00013519203062292625;0;1;Old +6290;Estonia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;0;1;Old +6291;Estonia;M;Technicians and associate professionals;Construction   ;Y15-29;1202;1;4.580494322374398e-06;1294455;0.0009285761189071848;1;0;Young +6292;Estonia;M;Technicians and associate professionals;Construction   ;Y30-49;2996;1;1.1416939259429032e-05;1294455;0.0023144875642644976;1;0;Young +6293;Estonia;M;Technicians and associate professionals;Construction   ;Y50-64;1212;1;4.618601596271023e-06;1294455;0.0009363013777999236;0;1;Old +6294;Estonia;M;Technicians and associate professionals;Construction   ;Y65-84;101;1;3.848834663559186e-07;1294455;7.802511481666029e-05;0;1;Old +6295;Estonia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1589;1;6.055245822173809e-06;1294455;0.0012275436380561704;1;0;Young +6296;Estonia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4402;1;1.6774821969294592e-05;1294455;0.0034006589645835506;1;0;Young +6297;Estonia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;931;1;3.547787199775844e-06;1294455;0.0007192216029139677;0;1;Old +6298;Estonia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;68;1;2.591294624970541e-07;1294455;5.253176047062277e-05;0;1;Old +6299;Estonia;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;545;1;2.0768464273660954e-06;1294455;0.000421026609654256;1;0;Young +6300;Estonia;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;1459;1;5.559851261517676e-06;1294455;0.001127115272450568;1;0;Young +6301;Estonia;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;778;1;2.964745909157472e-06;1294455;0.0006010251418550665;0;1;Old +6302;Estonia;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;89;1;3.3915473767996787e-07;1294455;6.875480414537392e-05;0;1;Old +6303;Estonia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;211;1;8.040634792188003e-07;1294455;0.00016300296263678537;1;0;Young +6304;Estonia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;286;1;1.0898680334434924e-06;1294455;0.00022094240433232518;1;0;Young +6305;Estonia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;49;1;1.8672564209346548e-07;1294455;3.785376857441935e-05;0;1;Old +6306;Estonia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6307;Estonia;M;Technicians and associate professionals;Information and communication   ;Y15-29;960;1;3.658298294076058e-06;1294455;0.0007416248537029098;1;0;Young +6308;Estonia;M;Technicians and associate professionals;Information and communication   ;Y30-49;1029;1;3.921238483962775e-06;1294455;0.0007949291400628064;1;0;Young +6309;Estonia;M;Technicians and associate professionals;Information and communication   ;Y50-64;243;1;9.260067556880022e-07;1294455;0.00018772379109354903;0;1;Old +6310;Estonia;M;Technicians and associate professionals;Information and communication   ;Y65-84;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;0;1;Old +6311;Estonia;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;185;1;7.049845670875737e-07;1294455;0.0001429172895156649;1;0;Young +6312;Estonia;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;363;1;1.3832940424475095e-06;1294455;0.0002804268978064127;1;0;Young +6313;Estonia;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;67;1;2.5531873510739155e-07;1294455;5.175923458134891e-05;0;1;Old +6314;Estonia;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +6315;Estonia;M;Technicians and associate professionals;Real estate activities   ;Y15-29;152;1;5.792305632287092e-07;1294455;0.00011742393516962737;1;0;Young +6316;Estonia;M;Technicians and associate professionals;Real estate activities   ;Y30-49;676;1;2.576051715411891e-06;1294455;0.0005222275011491323;1;0;Young +6317;Estonia;M;Technicians and associate professionals;Real estate activities   ;Y50-64;450;1;1.7148273253481523e-06;1294455;0.00034763665017323894;0;1;Old +6318;Estonia;M;Technicians and associate professionals;Real estate activities   ;Y65-84;222;1;8.459814805050885e-07;1294455;0.00017150074741879788;0;1;Old +6319;Estonia;M;Technicians and associate professionals;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6320;Estonia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;513;1;1.9549031508968934e-06;1294455;0.0003963057811974924;1;0;Young +6321;Estonia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;876;1;3.338197193344403e-06;1294455;0.0006767326790039052;1;0;Young +6322;Estonia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;383;1;1.4595085902407606e-06;1294455;0.00029587741559189;0;1;Old +6323;Estonia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;76;1;2.896152816143546e-07;1294455;5.8711967584813684e-05;0;1;Old +6324;Estonia;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;287;1;1.0936787608331548e-06;1294455;0.00022171493022159905;1;0;Young +6325;Estonia;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;460;1;1.752934599244778e-06;1294455;0.00035536190906597755;1;0;Young +6326;Estonia;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;145;1;5.525554715010713e-07;1294455;0.00011201625394471032;0;1;Old +6327;Estonia;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +6328;Estonia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;531;1;2.02349624391082e-06;1294455;0.0004102112472044219;1;0;Young +6329;Estonia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;1721;1;6.5582618376092665e-06;1294455;0.0013295170554403204;1;0;Young +6330;Estonia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;616;1;2.347408072032137e-06;1294455;0.0004758759477927004;0;1;Old +6331;Estonia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;81;1;3.086689185626674e-07;1294455;6.257459703118301e-05;0;1;Old +6332;Estonia;M;Technicians and associate professionals;Education   ;Y15-29;222;1;8.459814805050885e-07;1294455;0.00017150074741879788;1;0;Young +6333;Estonia;M;Technicians and associate professionals;Education   ;Y30-49;273;1;1.040328577377879e-06;1294455;0.00021089956777176495;1;0;Young +6334;Estonia;M;Technicians and associate professionals;Education   ;Y50-64;164;1;6.2495929190466e-07;1294455;0.00012669424584091374;0;1;Old +6335;Estonia;M;Technicians and associate professionals;Education   ;Y65-84;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;0;1;Old +6336;Estonia;M;Technicians and associate professionals;Education   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6337;Estonia;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;174;1;6.630665658012855e-07;1294455;0.00013441950473365238;1;0;Young +6338;Estonia;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;356;1;1.3566189507198715e-06;1294455;0.0002750192165814957;1;0;Young +6339;Estonia;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;230;1;8.76467299622389e-07;1294455;0.00017768095453298878;0;1;Old +6340;Estonia;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;0;1;Old +6341;Estonia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;519;1;1.977767515234869e-06;1294455;0.00040094093653313557;1;0;Young +6342;Estonia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;651;1;2.480783530670327e-06;1294455;0.0005029143539172857;1;0;Young +6343;Estonia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;271;1;1.032707122598554e-06;1294455;0.00020935451599321723;0;1;Old +6344;Estonia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;87;1;3.3153328290064277e-07;1294455;6.720975236682619e-05;0;1;Old +6345;Estonia;M;Technicians and associate professionals;Other service activities   ;Y15-29;139;1;5.296911071630959e-07;1294455;0.00010738109860906714;1;0;Young +6346;Estonia;M;Technicians and associate professionals;Other service activities   ;Y30-49;213;1;8.116849339981254e-07;1294455;0.0001645480144153331;1;0;Young +6347;Estonia;M;Technicians and associate professionals;Other service activities   ;Y50-64;94;1;3.582083746282807e-07;1294455;7.261743359174324e-05;0;1;Old +6348;Estonia;M;Technicians and associate professionals;Other service activities   ;Y65-84;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +6349;Estonia;M;Technicians and associate professionals;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6350;Estonia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +6351;Estonia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +6352;Estonia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6353;Estonia;M;Technicians and associate professionals;Not stated   ;Y15-29;31;1;1.1813254907953938e-07;1294455;2.3948302567489792e-05;1;0;Young +6354;Estonia;M;Technicians and associate professionals;Not stated   ;Y30-49;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;1;0;Young +6355;Estonia;M;Technicians and associate professionals;Not stated   ;Y50-64;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;0;1;Old +6356;Estonia;M;Technicians and associate professionals;Not stated   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6357;Estonia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;23;1;8.764672996223889e-08;1294455;1.776809545329888e-05;1;0;Young +6358;Estonia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;61;1;2.3245437076941619e-07;1294455;4.712407924570572e-05;1;0;Young +6359;Estonia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;0;1;Old +6360;Estonia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6361;Estonia;M;Clerical support workers;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6362;Estonia;M;Clerical support workers;Mining and quarrying   ;Y30-49;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +6363;Estonia;M;Clerical support workers;Mining and quarrying   ;Y50-64;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +6364;Estonia;M;Clerical support workers;Manufacturing   ;Y15-29;631;1;2.4045689828770757e-06;1294455;0.00048746383613180837;1;0;Young +6365;Estonia;M;Clerical support workers;Manufacturing   ;Y30-49;769;1;2.930449362650509e-06;1294455;0.0005940724088516016;1;0;Young +6366;Estonia;M;Clerical support workers;Manufacturing   ;Y50-64;299;1;1.1394074895091056e-06;1294455;0.00023098524089288543;0;1;Old +6367;Estonia;M;Clerical support workers;Manufacturing   ;Y65-84;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;0;1;Old +6368;Estonia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;1;0;Young +6369;Estonia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;35;1;1.3337545863818962e-07;1294455;2.703840612458525e-05;1;0;Young +6370;Estonia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6371;Estonia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6372;Estonia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;1;0;Young +6373;Estonia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;38;1;1.448076408071773e-07;1294455;2.9355983792406842e-05;1;0;Young +6374;Estonia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;0;1;Old +6375;Estonia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6376;Estonia;M;Clerical support workers;Construction   ;Y15-29;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;1;0;Young +6377;Estonia;M;Clerical support workers;Construction   ;Y30-49;64;1;2.4388655293840386e-07;1294455;4.9441656913527315e-05;1;0;Young +6378;Estonia;M;Clerical support workers;Construction   ;Y50-64;38;1;1.448076408071773e-07;1294455;2.9355983792406842e-05;0;1;Old +6379;Estonia;M;Clerical support workers;Construction   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6380;Estonia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;763;1;2.907584998312534e-06;1294455;0.0005894372535159585;1;0;Young +6381;Estonia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1061;1;4.043181760431977e-06;1294455;0.00081964996851957;1;0;Young +6382;Estonia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;364;1;1.387104769837172e-06;1294455;0.0002811994236956866;0;1;Old +6383;Estonia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;31;1;1.1813254907953938e-07;1294455;2.3948302567489792e-05;0;1;Old +6384;Estonia;M;Clerical support workers;Transportation and storage   ;Y15-29;1080;1;4.115585580835566e-06;1294455;0.0008343279604157734;1;0;Young +6385;Estonia;M;Clerical support workers;Transportation and storage   ;Y30-49;1437;1;5.4760152589451e-06;1294455;0.001110119702886543;1;0;Young +6386;Estonia;M;Clerical support workers;Transportation and storage   ;Y50-64;627;1;2.3893260733184253e-06;1294455;0.00048437373257471293;0;1;Old +6387;Estonia;M;Clerical support workers;Transportation and storage   ;Y65-84;78;1;2.9723673639367974e-07;1294455;6.0257019363361415e-05;0;1;Old +6388;Estonia;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;231;1;8.802780270120515e-07;1294455;0.00017845348042226265;1;0;Young +6389;Estonia;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;99;1;3.772620115765935e-07;1294455;7.648006303811257e-05;1;0;Young +6390;Estonia;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;0;1;Old +6391;Estonia;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6392;Estonia;M;Clerical support workers;Information and communication   ;Y15-29;178;1;6.783094753599357e-07;1294455;0.00013750960829074784;1;0;Young +6393;Estonia;M;Clerical support workers;Information and communication   ;Y30-49;81;1;3.086689185626674e-07;1294455;6.257459703118301e-05;1;0;Young +6394;Estonia;M;Clerical support workers;Information and communication   ;Y50-64;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;0;1;Old +6395;Estonia;M;Clerical support workers;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6396;Estonia;M;Clerical support workers;Financial and insurance activities   ;Y15-29;96;1;3.658298294076058e-07;1294455;7.416248537029097e-05;1;0;Young +6397;Estonia;M;Clerical support workers;Financial and insurance activities   ;Y30-49;118;1;4.496658319801821e-07;1294455;9.115805493431599e-05;1;0;Young +6398;Estonia;M;Clerical support workers;Financial and insurance activities   ;Y50-64;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;0;1;Old +6399;Estonia;M;Clerical support workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6400;Estonia;M;Clerical support workers;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +6401;Estonia;M;Clerical support workers;Real estate activities   ;Y30-49;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;1;0;Young +6402;Estonia;M;Clerical support workers;Real estate activities   ;Y50-64;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;0;1;Old +6403;Estonia;M;Clerical support workers;Real estate activities   ;Y65-84;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;0;1;Old +6404;Estonia;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;87;1;3.3153328290064277e-07;1294455;6.720975236682619e-05;1;0;Young +6405;Estonia;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;97;1;3.6964055679726836e-07;1294455;7.493501125956484e-05;1;0;Young +6406;Estonia;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;0;1;Old +6407;Estonia;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6408;Estonia;M;Clerical support workers;Administrative and support service activities   ;Y15-29;263;1;1.0022213034812534e-06;1294455;0.0002031743088790263;1;0;Young +6409;Estonia;M;Clerical support workers;Administrative and support service activities   ;Y30-49;246;1;9.374389378569899e-07;1294455;0.00019004136876137062;1;0;Young +6410;Estonia;M;Clerical support workers;Administrative and support service activities   ;Y50-64;69;1;2.629401898867167e-07;1294455;5.3304286359896634e-05;0;1;Old +6411;Estonia;M;Clerical support workers;Administrative and support service activities   ;Y65-84;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +6412;Estonia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;66;1;2.51508007717729e-07;1294455;5.0986708692075045e-05;1;0;Young +6413;Estonia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;143;1;5.449340167217462e-07;1294455;0.00011047120216616259;1;0;Young +6414;Estonia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;103;1;3.9250492113524375e-07;1294455;7.957016659520802e-05;0;1;Old +6415;Estonia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +6416;Estonia;M;Clerical support workers;Education   ;Y15-29;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;1;0;Young +6417;Estonia;M;Clerical support workers;Education   ;Y30-49;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;1;0;Young +6418;Estonia;M;Clerical support workers;Education   ;Y50-64;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;0;1;Old +6419;Estonia;M;Clerical support workers;Education   ;Y65-84;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +6420;Estonia;M;Clerical support workers;Human health and social work activities   ;Y15-29;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;1;0;Young +6421;Estonia;M;Clerical support workers;Human health and social work activities   ;Y30-49;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +6422;Estonia;M;Clerical support workers;Human health and social work activities   ;Y50-64;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +6423;Estonia;M;Clerical support workers;Human health and social work activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6424;Estonia;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;109;1;4.153692854732191e-07;1294455;8.420532193085121e-05;1;0;Young +6425;Estonia;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;174;1;6.630665658012855e-07;1294455;0.00013441950473365238;1;0;Young +6426;Estonia;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;0;1;Old +6427;Estonia;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +6428;Estonia;M;Clerical support workers;Other service activities   ;Y15-29;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;1;0;Young +6429;Estonia;M;Clerical support workers;Other service activities   ;Y30-49;29;1;1.1051109430021426e-07;1294455;2.2403250788942065e-05;1;0;Young +6430;Estonia;M;Clerical support workers;Other service activities   ;Y50-64;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +6431;Estonia;M;Clerical support workers;Other service activities   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6432;Estonia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6433;Estonia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6434;Estonia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6435;Estonia;M;Clerical support workers;Not stated   ;Y15-29;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +6436;Estonia;M;Clerical support workers;Not stated   ;Y30-49;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;1;0;Young +6437;Estonia;M;Clerical support workers;Not stated   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6438;Estonia;M;Clerical support workers;Not stated   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6439;Estonia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;1;0;Young +6440;Estonia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;1;0;Young +6441;Estonia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;0;1;Old +6442;Estonia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6443;Estonia;M;Service and sales workers;Mining and quarrying   ;Y15-29;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6444;Estonia;M;Service and sales workers;Mining and quarrying   ;Y30-49;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +6445;Estonia;M;Service and sales workers;Mining and quarrying   ;Y50-64;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +6446;Estonia;M;Service and sales workers;Mining and quarrying   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6447;Estonia;M;Service and sales workers;Manufacturing   ;Y15-29;68;1;2.591294624970541e-07;1294455;5.253176047062277e-05;1;0;Young +6448;Estonia;M;Service and sales workers;Manufacturing   ;Y30-49;124;1;4.725301963181575e-07;1294455;9.579321026995917e-05;1;0;Young +6449;Estonia;M;Service and sales workers;Manufacturing   ;Y50-64;94;1;3.582083746282807e-07;1294455;7.261743359174324e-05;0;1;Old +6450;Estonia;M;Service and sales workers;Manufacturing   ;Y65-84;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;0;1;Old +6451;Estonia;M;Service and sales workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6452;Estonia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;1;0;Young +6453;Estonia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;0;1;Old +6454;Estonia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6455;Estonia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6456;Estonia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +6457;Estonia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6458;Estonia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6459;Estonia;M;Service and sales workers;Construction   ;Y15-29;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;1;0;Young +6460;Estonia;M;Service and sales workers;Construction   ;Y30-49;38;1;1.448076408071773e-07;1294455;2.9355983792406842e-05;1;0;Young +6461;Estonia;M;Service and sales workers;Construction   ;Y50-64;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;0;1;Old +6462;Estonia;M;Service and sales workers;Construction   ;Y65-84;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;0;1;Old +6463;Estonia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1510;1;5.754198358390466e-06;1294455;0.001166514092803535;1;0;Young +6464;Estonia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2023;1;7.70910150928736e-06;1294455;0.0015628198740010274;1;0;Young +6465;Estonia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;729;1;2.7780202670640067e-06;1294455;0.0005631713732806471;0;1;Old +6466;Estonia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;74;1;2.819938268350295e-07;1294455;5.716691580626596e-05;0;1;Old +6467;Estonia;M;Service and sales workers;Transportation and storage   ;Y15-29;225;1;8.574136626740762e-07;1294455;0.00017381832508661947;1;0;Young +6468;Estonia;M;Service and sales workers;Transportation and storage   ;Y30-49;301;1;1.1470289442884308e-06;1294455;0.00023253029267143315;1;0;Young +6469;Estonia;M;Service and sales workers;Transportation and storage   ;Y50-64;155;1;5.906627453976969e-07;1294455;0.00011974151283744897;0;1;Old +6470;Estonia;M;Service and sales workers;Transportation and storage   ;Y65-84;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;0;1;Old +6471;Estonia;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;1436;1;5.472204531555437e-06;1294455;0.0011093471769972692;1;0;Young +6472;Estonia;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;758;1;2.888531361364221e-06;1294455;0.0005855746240695891;1;0;Young +6473;Estonia;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;162;1;6.173378371253348e-07;1294455;0.00012514919406236602;0;1;Old +6474;Estonia;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +6475;Estonia;M;Service and sales workers;Information and communication   ;Y15-29;68;1;2.591294624970541e-07;1294455;5.253176047062277e-05;1;0;Young +6476;Estonia;M;Service and sales workers;Information and communication   ;Y30-49;31;1;1.1813254907953938e-07;1294455;2.3948302567489792e-05;1;0;Young +6477;Estonia;M;Service and sales workers;Information and communication   ;Y50-64;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;0;1;Old +6478;Estonia;M;Service and sales workers;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6479;Estonia;M;Service and sales workers;Financial and insurance activities   ;Y15-29;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6480;Estonia;M;Service and sales workers;Financial and insurance activities   ;Y30-49;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +6481;Estonia;M;Service and sales workers;Financial and insurance activities   ;Y50-64;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +6482;Estonia;M;Service and sales workers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6483;Estonia;M;Service and sales workers;Real estate activities   ;Y15-29;35;1;1.3337545863818962e-07;1294455;2.703840612458525e-05;1;0;Young +6484;Estonia;M;Service and sales workers;Real estate activities   ;Y30-49;69;1;2.629401898867167e-07;1294455;5.3304286359896634e-05;1;0;Young +6485;Estonia;M;Service and sales workers;Real estate activities   ;Y50-64;110;1;4.1918001286288164e-07;1294455;8.497784782012507e-05;0;1;Old +6486;Estonia;M;Service and sales workers;Real estate activities   ;Y65-84;70;1;2.6675091727637925e-07;1294455;5.40768122491705e-05;0;1;Old +6487;Estonia;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;35;1;1.3337545863818962e-07;1294455;2.703840612458525e-05;1;0;Young +6488;Estonia;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;1;0;Young +6489;Estonia;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;0;1;Old +6490;Estonia;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6491;Estonia;M;Service and sales workers;Administrative and support service activities   ;Y15-29;1167;1;4.4471188637362085e-06;1294455;0.0009015377127825997;1;0;Young +6492;Estonia;M;Service and sales workers;Administrative and support service activities   ;Y30-49;1399;1;5.3312076181379226e-06;1294455;0.0010807637190941362;1;0;Young +6493;Estonia;M;Service and sales workers;Administrative and support service activities   ;Y50-64;1321;1;5.033970881744242e-06;1294455;0.0010205066997307746;0;1;Old +6494;Estonia;M;Service and sales workers;Administrative and support service activities   ;Y65-84;230;1;8.76467299622389e-07;1294455;0.00017768095453298878;0;1;Old +6495;Estonia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;906;1;3.45251901503428e-06;1294455;0.000699908455682121;1;0;Young +6496;Estonia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2238;1;8.52840789806481e-06;1294455;0.0017289129401949082;1;0;Young +6497;Estonia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;791;1;3.0142853652230854e-06;1294455;0.0006110679784156267;0;1;Old +6498;Estonia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;0;1;Old +6499;Estonia;M;Service and sales workers;Education   ;Y15-29;61;1;2.3245437076941619e-07;1294455;4.712407924570572e-05;1;0;Young +6500;Estonia;M;Service and sales workers;Education   ;Y30-49;275;1;1.0479500321572042e-06;1294455;0.0002124446195503127;1;0;Young +6501;Estonia;M;Service and sales workers;Education   ;Y50-64;321;1;1.223243492081682e-06;1294455;0.0002479808104569104;0;1;Old +6502;Estonia;M;Service and sales workers;Education   ;Y65-84;102;1;3.886941937455812e-07;1294455;7.879764070593416e-05;0;1;Old +6503;Estonia;M;Service and sales workers;Human health and social work activities   ;Y15-29;128;1;4.877731058768077e-07;1294455;9.888331382705463e-05;1;0;Young +6504;Estonia;M;Service and sales workers;Human health and social work activities   ;Y30-49;191;1;7.27848931425549e-07;1294455;0.0001475524448513081;1;0;Young +6505;Estonia;M;Service and sales workers;Human health and social work activities   ;Y50-64;166;1;6.325807466839851e-07;1294455;0.00012823929761946148;0;1;Old +6506;Estonia;M;Service and sales workers;Human health and social work activities   ;Y65-84;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;0;1;Old +6507;Estonia;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;68;1;2.591294624970541e-07;1294455;5.253176047062277e-05;1;0;Young +6508;Estonia;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;75;1;2.8580455422469204e-07;1294455;5.793944169553982e-05;1;0;Young +6509;Estonia;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;80;1;3.0485819117300483e-07;1294455;6.180207114190914e-05;0;1;Old +6510;Estonia;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;0;1;Old +6511;Estonia;M;Service and sales workers;Other service activities   ;Y15-29;62;1;2.3626509815907876e-07;1294455;4.7896605134979584e-05;1;0;Young +6512;Estonia;M;Service and sales workers;Other service activities   ;Y30-49;121;1;4.610980141491698e-07;1294455;9.347563260213758e-05;1;0;Young +6513;Estonia;M;Service and sales workers;Other service activities   ;Y50-64;86;1;3.277225555109802e-07;1294455;6.643722647755233e-05;0;1;Old +6514;Estonia;M;Service and sales workers;Other service activities   ;Y65-84;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;0;1;Old +6515;Estonia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6516;Estonia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;1;0;Young +6517;Estonia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;1;0;Young +6518;Estonia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6519;Estonia;M;Service and sales workers;Not stated   ;Y15-29;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;1;0;Young +6520;Estonia;M;Service and sales workers;Not stated   ;Y30-49;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;1;0;Young +6521;Estonia;M;Service and sales workers;Not stated   ;Y50-64;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;0;1;Old +6522;Estonia;M;Service and sales workers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6523;Estonia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;674;1;2.568430260632566e-06;1294455;0.0005206824493705845;1;0;Young +6524;Estonia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2867;1;1.0925355426162561e-05;1294455;0.002214831724548169;1;0;Young +6525;Estonia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;1992;1;7.59096896020782e-06;1294455;0.0015388715714335377;0;1;Old +6526;Estonia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;316;1;1.2041898551333691e-06;1294455;0.00024411818101054112;0;1;Old +6527;Estonia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6528;Estonia;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6529;Estonia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;1;0;Young +6530;Estonia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;39;1;1.4861836819683987e-07;1294455;3.0128509681680707e-05;1;0;Young +6531;Estonia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;23;1;8.764672996223889e-08;1294455;1.776809545329888e-05;0;1;Old +6532;Estonia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6533;Estonia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6534;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6535;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6536;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6537;Estonia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +6538;Estonia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +6539;Estonia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +6540;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;1;0;Young +6541;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;1;0;Young +6542;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +6543;Estonia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6544;Estonia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6545;Estonia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6546;Estonia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6547;Estonia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +6548;Estonia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;0;1;Old +6549;Estonia;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6550;Estonia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6551;Estonia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6552;Estonia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6553;Estonia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;35;1;1.3337545863818962e-07;1294455;2.703840612458525e-05;1;0;Young +6554;Estonia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;50;1;1.9053636948312803e-07;1294455;3.8626294463693215e-05;1;0;Young +6555;Estonia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;21;1;8.002527518291377e-08;1294455;1.622304367475115e-05;0;1;Old +6556;Estonia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6557;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6558;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +6559;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6560;Estonia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6561;Estonia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +6562;Estonia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +6563;Estonia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6564;Estonia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6565;Estonia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +6566;Estonia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;1;0;Young +6567;Estonia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +6568;Estonia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6569;Estonia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;1;0;Young +6570;Estonia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;1;0;Young +6571;Estonia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6572;Estonia;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6573;Estonia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6574;Estonia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;170;1;6.478236562426352e-07;1294455;0.00013132940117655694;1;0;Young +6575;Estonia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;491;1;1.8710671483243173e-06;1294455;0.00037931021163346737;1;0;Young +6576;Estonia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;519;1;1.977767515234869e-06;1294455;0.00040094093653313557;0;1;Old +6577;Estonia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;0;1;Old +6578;Estonia;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;135;1;5.144481976044457e-07;1294455;0.00010429099505197168;1;0;Young +6579;Estonia;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;434;1;1.6538556871135514e-06;1294455;0.0003352762359448571;1;0;Young +6580;Estonia;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;488;1;1.8596349661553295e-06;1294455;0.00037699263396564575;0;1;Old +6581;Estonia;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;19;1;7.240382040358865e-08;1294455;1.4677991896203421e-05;0;1;Old +6582;Estonia;M;Craft and related trades workers;Manufacturing   ;Y15-29;6990;1;2.6636984453741298e-05;1294455;0.0053999559660243114;1;0;Young +6583;Estonia;M;Craft and related trades workers;Manufacturing   ;Y30-49;13072;1;4.981382843766899e-05;1294455;0.010098458424587954;1;0;Young +6584;Estonia;M;Craft and related trades workers;Manufacturing   ;Y50-64;7943;1;3.0268607656089718e-05;1294455;0.006136173138502304;0;1;Old +6585;Estonia;M;Craft and related trades workers;Manufacturing   ;Y65-84;697;1;2.6560769905948048e-06;1294455;0.0005384505448238834;0;1;Old +6586;Estonia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;175;1;6.668772931909481e-07;1294455;0.00013519203062292625;1;0;Young +6587;Estonia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;611;1;2.3283544350838245e-06;1294455;0.0004720133183463311;1;0;Young +6588;Estonia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;654;1;2.4922157128393146e-06;1294455;0.0005052319315851072;0;1;Old +6589;Estonia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;50;1;1.9053636948312803e-07;1294455;3.8626294463693215e-05;0;1;Old +6590;Estonia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;76;1;2.896152816143546e-07;1294455;5.8711967584813684e-05;1;0;Young +6591;Estonia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;197;1;7.507132957635244e-07;1294455;0.00015218760018695127;1;0;Young +6592;Estonia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;240;1;9.145745735190145e-07;1294455;0.00018540621342572744;0;1;Old +6593;Estonia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;0;1;Old +6594;Estonia;M;Craft and related trades workers;Construction   ;Y15-29;9031;1;3.441467905604258e-05;1294455;0.006976681306032268;1;0;Young +6595;Estonia;M;Craft and related trades workers;Construction   ;Y30-49;16800;1;6.402022014633102e-05;1294455;0.01297843493980092;1;0;Young +6596;Estonia;M;Craft and related trades workers;Construction   ;Y50-64;6190;1;2.358840254201125e-05;1294455;0.00478193525460522;0;1;Old +6597;Estonia;M;Craft and related trades workers;Construction   ;Y65-84;227;1;8.650351174534013e-07;1294455;0.0001753633768651672;0;1;Old +6598;Estonia;M;Craft and related trades workers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6599;Estonia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2022;1;7.705290781897697e-06;1294455;0.0015620473481117536;1;0;Young +6600;Estonia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3391;1;1.2922176578345742e-05;1294455;0.002619635290527674;1;0;Young +6601;Estonia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1266;1;4.824380875312802e-06;1294455;0.0009780177758207122;0;1;Old +6602;Estonia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;81;1;3.086689185626674e-07;1294455;6.257459703118301e-05;0;1;Old +6603;Estonia;M;Craft and related trades workers;Transportation and storage   ;Y15-29;255;1;9.71735484363953e-07;1294455;0.0001969941017648354;1;0;Young +6604;Estonia;M;Craft and related trades workers;Transportation and storage   ;Y30-49;878;1;3.3458186481237283e-06;1294455;0.0006782777307824528;1;0;Young +6605;Estonia;M;Craft and related trades workers;Transportation and storage   ;Y50-64;824;1;3.14003936908195e-06;1294455;0.0006365613327616641;0;1;Old +6606;Estonia;M;Craft and related trades workers;Transportation and storage   ;Y65-84;119;1;4.5347655936984473e-07;1294455;9.193058082358985e-05;0;1;Old +6607;Estonia;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;1;0;Young +6608;Estonia;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;92;1;3.5058691984895557e-07;1294455;7.107238181319552e-05;1;0;Young +6609;Estonia;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;0;1;Old +6610;Estonia;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +6611;Estonia;M;Craft and related trades workers;Information and communication   ;Y15-29;93;1;3.543976472386181e-07;1294455;7.184490770246938e-05;1;0;Young +6612;Estonia;M;Craft and related trades workers;Information and communication   ;Y30-49;199;1;7.583347505428495e-07;1294455;0.000153732651965499;1;0;Young +6613;Estonia;M;Craft and related trades workers;Information and communication   ;Y50-64;79;1;3.010474637833423e-07;1294455;6.102954525263528e-05;0;1;Old +6614;Estonia;M;Craft and related trades workers;Information and communication   ;Y65-84;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +6615;Estonia;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +6616;Estonia;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6617;Estonia;M;Craft and related trades workers;Real estate activities   ;Y15-29;53;1;2.019685516521157e-07;1294455;4.094387213151481e-05;1;0;Young +6618;Estonia;M;Craft and related trades workers;Real estate activities   ;Y30-49;202;1;7.697669327118372e-07;1294455;0.00015605022963332058;1;0;Young +6619;Estonia;M;Craft and related trades workers;Real estate activities   ;Y50-64;259;1;9.869783939226032e-07;1294455;0.00020008420532193085;0;1;Old +6620;Estonia;M;Craft and related trades workers;Real estate activities   ;Y65-84;69;1;2.629401898867167e-07;1294455;5.3304286359896634e-05;0;1;Old +6621;Estonia;M;Craft and related trades workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6622;Estonia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;113;1;4.3061219503186933e-07;1294455;8.729542548794667e-05;1;0;Young +6623;Estonia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;187;1;7.126060218668988e-07;1294455;0.00014446234129421263;1;0;Young +6624;Estonia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;126;1;4.801516510974826e-07;1294455;9.73382620485069e-05;0;1;Old +6625;Estonia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;0;1;Old +6626;Estonia;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;353;1;1.3451867685508839e-06;1294455;0.0002727016389136741;1;0;Young +6627;Estonia;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;642;1;2.446486984163364e-06;1294455;0.0004959616209138209;1;0;Young +6628;Estonia;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;260;1;9.907891213122658e-07;1294455;0.00020085673121120472;0;1;Old +6629;Estonia;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;0;1;Old +6630;Estonia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;36;1;1.3718618602785217e-07;1294455;2.7810932013859115e-05;1;0;Young +6631;Estonia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;130;1;4.953945606561329e-07;1294455;0.00010042836560560236;1;0;Young +6632;Estonia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;112;1;4.268014676422068e-07;1294455;8.65228995986728e-05;0;1;Old +6633;Estonia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;0;1;Old +6634;Estonia;M;Craft and related trades workers;Education   ;Y15-29;23;1;8.764672996223889e-08;1294455;1.776809545329888e-05;1;0;Young +6635;Estonia;M;Craft and related trades workers;Education   ;Y30-49;74;1;2.819938268350295e-07;1294455;5.716691580626596e-05;1;0;Young +6636;Estonia;M;Craft and related trades workers;Education   ;Y50-64;125;1;4.7634092370782007e-07;1294455;9.656573615923304e-05;0;1;Old +6637;Estonia;M;Craft and related trades workers;Education   ;Y65-84;53;1;2.019685516521157e-07;1294455;4.094387213151481e-05;0;1;Old +6638;Estonia;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +6639;Estonia;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;82;1;3.1247964595233e-07;1294455;6.334712292045687e-05;1;0;Young +6640;Estonia;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;124;1;4.725301963181575e-07;1294455;9.579321026995917e-05;0;1;Old +6641;Estonia;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;40;1;1.5242909558650242e-07;1294455;3.090103557095457e-05;0;1;Old +6642;Estonia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;41;1;1.56239822976165e-07;1294455;3.1673561460228434e-05;1;0;Young +6643;Estonia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;95;1;3.6201910201794326e-07;1294455;7.338995948101711e-05;1;0;Young +6644;Estonia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;91;1;3.46776192459293e-07;1294455;7.029985592392165e-05;0;1;Old +6645;Estonia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;32;1;1.2194327646920193e-07;1294455;2.4720828456763657e-05;0;1;Old +6646;Estonia;M;Craft and related trades workers;Other service activities   ;Y15-29;122;1;4.6490874153883237e-07;1294455;9.424815849141144e-05;1;0;Young +6647;Estonia;M;Craft and related trades workers;Other service activities   ;Y30-49;404;1;1.5395338654236744e-06;1294455;0.00031210045926664115;1;0;Young +6648;Estonia;M;Craft and related trades workers;Other service activities   ;Y50-64;290;1;1.1051109430021426e-06;1294455;0.00022403250788942064;0;1;Old +6649;Estonia;M;Craft and related trades workers;Other service activities   ;Y65-84;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;0;1;Old +6650;Estonia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6651;Estonia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6652;Estonia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6653;Estonia;M;Craft and related trades workers;Not stated   ;Y15-29;112;1;4.268014676422068e-07;1294455;8.65228995986728e-05;1;0;Young +6654;Estonia;M;Craft and related trades workers;Not stated   ;Y30-49;253;1;9.641140295846278e-07;1294455;0.00019544904998628767;1;0;Young +6655;Estonia;M;Craft and related trades workers;Not stated   ;Y50-64;118;1;4.496658319801821e-07;1294455;9.115805493431599e-05;0;1;Old +6656;Estonia;M;Craft and related trades workers;Not stated   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6657;Estonia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;754;1;2.8732884518055705e-06;1294455;0.0005824845205124937;1;0;Young +6658;Estonia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2338;1;8.909480637031066e-06;1294455;0.0018061655291222948;1;0;Young +6659;Estonia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;1516;1;5.777062722728442e-06;1294455;0.0011711492481391783;0;1;Old +6660;Estonia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;91;1;3.46776192459293e-07;1294455;7.029985592392165e-05;0;1;Old +6661;Estonia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;254;1;9.679247569742904e-07;1294455;0.00019622157587556154;1;0;Young +6662;Estonia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;1019;1;3.8831312100661495e-06;1294455;0.0007872038811700677;1;0;Young +6663;Estonia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;819;1;3.120985732133637e-06;1294455;0.0006326987033152949;0;1;Old +6664;Estonia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;0;1;Old +6665;Estonia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;3845;1;1.4652246813252546e-05;1294455;0.002970362044258008;1;0;Young +6666;Estonia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;5913;1;2.253283105507472e-05;1294455;0.00456794558327636;1;0;Young +6667;Estonia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;3519;1;1.340994968422255e-05;1294455;0.0027185186043547287;0;1;Old +6668;Estonia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;199;1;7.583347505428495e-07;1294455;0.000153732651965499;0;1;Old +6669;Estonia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;49;1;1.8672564209346548e-07;1294455;3.785376857441935e-05;1;0;Young +6670;Estonia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;234;1;8.917102091810392e-07;1294455;0.00018077105809008424;1;0;Young +6671;Estonia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;286;1;1.0898680334434924e-06;1294455;0.00022094240433232518;0;1;Old +6672;Estonia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;30;1;1.1432182168987682e-07;1294455;2.317577667821593e-05;0;1;Old +6673;Estonia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;68;1;2.591294624970541e-07;1294455;5.253176047062277e-05;1;0;Young +6674;Estonia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;379;1;1.4442656806821104e-06;1294455;0.00029278731203479457;1;0;Young +6675;Estonia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;273;1;1.040328577377879e-06;1294455;0.00021089956777176495;0;1;Old +6676;Estonia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;0;1;Old +6677;Estonia;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;650;1;2.4769728032806642e-06;1294455;0.0005021418280280118;1;0;Young +6678;Estonia;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;1973;1;7.518565139804232e-06;1294455;0.0015241935795373342;1;0;Young +6679;Estonia;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;1522;1;5.799927087066417e-06;1294455;0.0011757844034748215;0;1;Old +6680;Estonia;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;110;1;4.1918001286288164e-07;1294455;8.497784782012507e-05;0;1;Old +6681;Estonia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;303;1;1.1546503990677558e-06;1294455;0.0002340753444499809;1;0;Young +6682;Estonia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;954;1;3.6354339297380826e-06;1294455;0.0007369896983672665;1;0;Young +6683;Estonia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;578;1;2.20260043122496e-06;1294455;0.0004465199640002936;0;1;Old +6684;Estonia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;35;1;1.3337545863818962e-07;1294455;2.703840612458525e-05;0;1;Old +6685;Estonia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;1565;1;5.9637883648219075e-06;1294455;0.0012090030167135977;1;0;Young +6686;Estonia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;9237;1;3.519968889831307e-05;1294455;0.007135821639222685;1;0;Young +6687;Estonia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;7942;1;3.0264796928700057e-05;1294455;0.00613540061261303;0;1;Old +6688;Estonia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;478;1;1.821527692258704e-06;1294455;0.00036926737507290714;0;1;Old +6689;Estonia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6690;Estonia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;32;1;1.2194327646920193e-07;1294455;2.4720828456763657e-05;1;0;Young +6691;Estonia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;44;1;1.6767200514515266e-07;1294455;3.399113912805003e-05;1;0;Young +6692;Estonia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;36;1;1.3718618602785217e-07;1294455;2.7810932013859115e-05;0;1;Old +6693;Estonia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6694;Estonia;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;1;0;Young +6695;Estonia;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;1;0;Young +6696;Estonia;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;31;1;1.1813254907953938e-07;1294455;2.3948302567489792e-05;0;1;Old +6697;Estonia;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6698;Estonia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +6699;Estonia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6700;Estonia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6701;Estonia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;1;0;Young +6702;Estonia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;43;1;1.638612777554901e-07;1294455;3.3218613238776165e-05;1;0;Young +6703;Estonia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;65;1;2.4769728032806646e-07;1294455;5.021418280280118e-05;0;1;Old +6704;Estonia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;12;1;4.5728728675950726e-08;1294455;9.270310671286371e-06;0;1;Old +6705;Estonia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6706;Estonia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;1;0;Young +6707;Estonia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;61;1;2.3245437076941619e-07;1294455;4.712407924570572e-05;1;0;Young +6708;Estonia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;55;1;2.0959000643144082e-07;1294455;4.2488923910062534e-05;0;1;Old +6709;Estonia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6710;Estonia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;110;1;4.1918001286288164e-07;1294455;8.497784782012507e-05;1;0;Young +6711;Estonia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;409;1;1.5585875023719872e-06;1294455;0.0003159630887130105;1;0;Young +6712;Estonia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;374;1;1.4252120437337977e-06;1294455;0.00028892468258842526;0;1;Old +6713;Estonia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;0;1;Old +6714;Estonia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;1;0;Young +6715;Estonia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;140;1;5.335018345527585e-07;1294455;0.000108153624498341;1;0;Young +6716;Estonia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;220;1;8.383600257257633e-07;1294455;0.00016995569564025014;0;1;Old +6717;Estonia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;39;1;1.4861836819683987e-07;1294455;3.0128509681680707e-05;0;1;Old +6718;Estonia;M;Plant and machine operators, and assemblers;Education   ;Y15-29;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6719;Estonia;M;Plant and machine operators, and assemblers;Education   ;Y30-49;41;1;1.56239822976165e-07;1294455;3.1673561460228434e-05;1;0;Young +6720;Estonia;M;Plant and machine operators, and assemblers;Education   ;Y50-64;95;1;3.6201910201794326e-07;1294455;7.338995948101711e-05;0;1;Old +6721;Estonia;M;Plant and machine operators, and assemblers;Education   ;Y65-84;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;0;1;Old +6722;Estonia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;1;0;Young +6723;Estonia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;107;1;4.07747830693894e-07;1294455;8.266027015230348e-05;1;0;Young +6724;Estonia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;168;1;6.402022014633102e-07;1294455;0.0001297843493980092;0;1;Old +6725;Estonia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;36;1;1.3718618602785217e-07;1294455;2.7810932013859115e-05;0;1;Old +6726;Estonia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +6727;Estonia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +6728;Estonia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;40;1;1.5242909558650242e-07;1294455;3.090103557095457e-05;0;1;Old +6729;Estonia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +6730;Estonia;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;51;1;1.943470968727906e-07;1294455;3.939882035296708e-05;1;0;Young +6731;Estonia;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;133;1;5.068267428251205e-07;1294455;0.00010274594327342395;1;0;Young +6732;Estonia;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;70;1;2.6675091727637925e-07;1294455;5.40768122491705e-05;0;1;Old +6733;Estonia;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6734;Estonia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;1;0;Young +6735;Estonia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +6736;Estonia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6737;Estonia;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;1;0;Young +6738;Estonia;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;110;1;4.1918001286288164e-07;1294455;8.497784782012507e-05;1;0;Young +6739;Estonia;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;80;1;3.0485819117300483e-07;1294455;6.180207114190914e-05;0;1;Old +6740;Estonia;M;Plant and machine operators, and assemblers;Not stated   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6741;Estonia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;490;1;1.8672564209346547e-06;1294455;0.0003785376857441935;1;0;Young +6742;Estonia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;813;1;3.098121367795662e-06;1294455;0.0006280635479796517;1;0;Young +6743;Estonia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;627;1;2.3893260733184253e-06;1294455;0.00048437373257471293;0;1;Old +6744;Estonia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;44;1;1.6767200514515266e-07;1294455;3.399113912805003e-05;0;1;Old +6745;Estonia;M;Elementary occupations;Mining and quarrying   ;Y15-29;55;1;2.0959000643144082e-07;1294455;4.2488923910062534e-05;1;0;Young +6746;Estonia;M;Elementary occupations;Mining and quarrying   ;Y30-49;147;1;5.601769262803964e-07;1294455;0.00011356130572325805;1;0;Young +6747;Estonia;M;Elementary occupations;Mining and quarrying   ;Y50-64;117;1;4.458551045905196e-07;1294455;9.038552904504212e-05;0;1;Old +6748;Estonia;M;Elementary occupations;Mining and quarrying   ;Y65-84;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;0;1;Old +6749;Estonia;M;Elementary occupations;Manufacturing   ;Y15-29;1276;1;4.862488149209427e-06;1294455;0.0009857430347134507;1;0;Young +6750;Estonia;M;Elementary occupations;Manufacturing   ;Y30-49;1450;1;5.525554715010713e-06;1294455;0.0011201625394471032;1;0;Young +6751;Estonia;M;Elementary occupations;Manufacturing   ;Y50-64;1159;1;4.416633044618908e-06;1294455;0.0008953575056684087;0;1;Old +6752;Estonia;M;Elementary occupations;Manufacturing   ;Y65-84;156;1;5.944734727873595e-07;1294455;0.00012051403872672283;0;1;Old +6753;Estonia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;1;0;Young +6754;Estonia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;1;0;Young +6755;Estonia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;49;1;1.8672564209346548e-07;1294455;3.785376857441935e-05;0;1;Old +6756;Estonia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +6757;Estonia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;87;1;3.3153328290064277e-07;1294455;6.720975236682619e-05;1;0;Young +6758;Estonia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;166;1;6.325807466839851e-07;1294455;0.00012823929761946148;1;0;Young +6759;Estonia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;126;1;4.801516510974826e-07;1294455;9.73382620485069e-05;0;1;Old +6760;Estonia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;0;1;Old +6761;Estonia;M;Elementary occupations;Construction   ;Y15-29;871;1;3.31914355639609e-06;1294455;0.0006728700495575358;1;0;Young +6762;Estonia;M;Elementary occupations;Construction   ;Y30-49;977;1;3.7230806597003216e-06;1294455;0.0007547577938205654;1;0;Young +6763;Estonia;M;Elementary occupations;Construction   ;Y50-64;467;1;1.7796096909724157e-06;1294455;0.0003607695902908946;0;1;Old +6764;Estonia;M;Elementary occupations;Construction   ;Y65-84;53;1;2.019685516521157e-07;1294455;4.094387213151481e-05;0;1;Old +6765;Estonia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;938;1;3.574462291503482e-06;1294455;0.0007246292841388847;1;0;Young +6766;Estonia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;956;1;3.643055384517408e-06;1294455;0.0007385347501458143;1;0;Young +6767;Estonia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;610;1;2.324543707694162e-06;1294455;0.0004712407924570572;0;1;Old +6768;Estonia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;100;1;3.8107273896625605e-07;1294455;7.725258892738643e-05;0;1;Old +6769;Estonia;M;Elementary occupations;Transportation and storage   ;Y15-29;393;1;1.4976158641373862e-06;1294455;0.00030360267448462867;1;0;Young +6770;Estonia;M;Elementary occupations;Transportation and storage   ;Y30-49;516;1;1.9663353330658812e-06;1294455;0.00039862335886531395;1;0;Young +6771;Estonia;M;Elementary occupations;Transportation and storage   ;Y50-64;421;1;1.604316231047938e-06;1294455;0.00032523339938429687;0;1;Old +6772;Estonia;M;Elementary occupations;Transportation and storage   ;Y65-84;105;1;4.0012637591456885e-07;1294455;8.111521837375575e-05;0;1;Old +6773;Estonia;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;328;1;1.24991858380932e-06;1294455;0.0002533884916818275;1;0;Young +6774;Estonia;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;140;1;5.335018345527585e-07;1294455;0.000108153624498341;1;0;Young +6775;Estonia;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;103;1;3.9250492113524375e-07;1294455;7.957016659520802e-05;0;1;Old +6776;Estonia;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;0;1;Old +6777;Estonia;M;Elementary occupations;Information and communication   ;Y15-29;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;1;0;Young +6778;Estonia;M;Elementary occupations;Information and communication   ;Y30-49;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;1;0;Young +6779;Estonia;M;Elementary occupations;Information and communication   ;Y50-64;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +6780;Estonia;M;Elementary occupations;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6781;Estonia;M;Elementary occupations;Financial and insurance activities   ;Y30-49;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6782;Estonia;M;Elementary occupations;Financial and insurance activities   ;Y50-64;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6783;Estonia;M;Elementary occupations;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6784;Estonia;M;Elementary occupations;Real estate activities   ;Y15-29;116;1;4.4204437720085703e-07;1294455;8.961300315576826e-05;1;0;Young +6785;Estonia;M;Elementary occupations;Real estate activities   ;Y30-49;307;1;1.1698933086264062e-06;1294455;0.00023716544800707633;1;0;Young +6786;Estonia;M;Elementary occupations;Real estate activities   ;Y50-64;572;1;2.1797360668869848e-06;1294455;0.00044188480866465035;0;1;Old +6787;Estonia;M;Elementary occupations;Real estate activities   ;Y65-84;292;1;1.1127323977814678e-06;1294455;0.00022557755966796838;0;1;Old +6788;Estonia;M;Elementary occupations;Real estate activities   ;Y_GE85;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6789;Estonia;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;1;0;Young +6790;Estonia;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;1;0;Young +6791;Estonia;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;0;1;Old +6792;Estonia;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;14;1;5.335018345527585e-08;1294455;1.08153624498341e-05;0;1;Old +6793;Estonia;M;Elementary occupations;Administrative and support service activities   ;Y15-29;516;1;1.9663353330658812e-06;1294455;0.00039862335886531395;1;0;Young +6794;Estonia;M;Elementary occupations;Administrative and support service activities   ;Y30-49;719;1;2.739912993167381e-06;1294455;0.0005554461143879085;1;0;Young +6795;Estonia;M;Elementary occupations;Administrative and support service activities   ;Y50-64;703;1;2.67894135493278e-06;1294455;0.0005430857001595266;0;1;Old +6796;Estonia;M;Elementary occupations;Administrative and support service activities   ;Y65-84;121;1;4.610980141491698e-07;1294455;9.347563260213758e-05;0;1;Old +6797;Estonia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;151;1;5.754198358390467e-07;1294455;0.00011665140928035351;1;0;Young +6798;Estonia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;307;1;1.1698933086264062e-06;1294455;0.00023716544800707633;1;0;Young +6799;Estonia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;267;1;1.0174642130399036e-06;1294455;0.00020626441243612177;0;1;Old +6800;Estonia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;53;1;2.019685516521157e-07;1294455;4.094387213151481e-05;0;1;Old +6801;Estonia;M;Elementary occupations;Education   ;Y15-29;66;1;2.51508007717729e-07;1294455;5.0986708692075045e-05;1;0;Young +6802;Estonia;M;Elementary occupations;Education   ;Y30-49;242;1;9.221960282983396e-07;1294455;0.00018695126520427516;1;0;Young +6803;Estonia;M;Elementary occupations;Education   ;Y50-64;517;1;1.970146060455544e-06;1294455;0.0003993958847545878;0;1;Old +6804;Estonia;M;Elementary occupations;Education   ;Y65-84;264;1;1.006032030870916e-06;1294455;0.00020394683476830018;0;1;Old +6805;Estonia;M;Elementary occupations;Human health and social work activities   ;Y15-29;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;1;0;Young +6806;Estonia;M;Elementary occupations;Human health and social work activities   ;Y30-49;113;1;4.3061219503186933e-07;1294455;8.729542548794667e-05;1;0;Young +6807;Estonia;M;Elementary occupations;Human health and social work activities   ;Y50-64;156;1;5.944734727873595e-07;1294455;0.00012051403872672283;0;1;Old +6808;Estonia;M;Elementary occupations;Human health and social work activities   ;Y65-84;38;1;1.448076408071773e-07;1294455;2.9355983792406842e-05;0;1;Old +6809;Estonia;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;86;1;3.277225555109802e-07;1294455;6.643722647755233e-05;1;0;Young +6810;Estonia;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;76;1;2.896152816143546e-07;1294455;5.8711967584813684e-05;1;0;Young +6811;Estonia;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;142;1;5.411232893320836e-07;1294455;0.00010969867627688873;0;1;Old +6812;Estonia;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;48;1;1.829149147038029e-07;1294455;3.7081242685145484e-05;0;1;Old +6813;Estonia;M;Elementary occupations;Other service activities   ;Y15-29;52;1;1.9815782426245315e-07;1294455;4.0171346242240945e-05;1;0;Young +6814;Estonia;M;Elementary occupations;Other service activities   ;Y30-49;72;1;2.7437237205570434e-07;1294455;5.562186402771823e-05;1;0;Young +6815;Estonia;M;Elementary occupations;Other service activities   ;Y50-64;62;1;2.3626509815907876e-07;1294455;4.7896605134979584e-05;0;1;Old +6816;Estonia;M;Elementary occupations;Other service activities   ;Y65-84;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;0;1;Old +6817;Estonia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6818;Estonia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;1;0;Young +6819;Estonia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6820;Estonia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6821;Estonia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6822;Estonia;M;Elementary occupations;Not stated   ;Y15-29;60;1;2.2864364337975364e-07;1294455;4.635155335643186e-05;1;0;Young +6823;Estonia;M;Elementary occupations;Not stated   ;Y30-49;78;1;2.9723673639367974e-07;1294455;6.0257019363361415e-05;1;0;Young +6824;Estonia;M;Elementary occupations;Not stated   ;Y50-64;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;0;1;Old +6825;Estonia;M;Elementary occupations;Not stated   ;Y65-84;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;0;1;Old +6826;Estonia;M;Elementary occupations;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6827;Estonia;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;1;0;Young +6828;Estonia;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;84;1;3.201011007316551e-07;1294455;6.48921746990046e-05;1;0;Young +6829;Estonia;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;34;1;1.2956473124852705e-07;1294455;2.6265880235311384e-05;0;1;Old +6830;Estonia;M;Not stated;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6831;Estonia;M;Not stated;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;1;0;Young +6832;Estonia;M;Not stated;Mining and quarrying   ;Y30-49;25;1;9.526818474156401e-08;1294455;1.9313147231846607e-05;1;0;Young +6833;Estonia;M;Not stated;Mining and quarrying   ;Y50-64;13;1;4.953945606561329e-08;1294455;1.0042836560560236e-05;0;1;Old +6834;Estonia;M;Not stated;Manufacturing   ;Y15-29;273;1;1.040328577377879e-06;1294455;0.00021089956777176495;1;0;Young +6835;Estonia;M;Not stated;Manufacturing   ;Y30-49;552;1;2.1035215190937336e-06;1294455;0.0004264342908791731;1;0;Young +6836;Estonia;M;Not stated;Manufacturing   ;Y50-64;202;1;7.697669327118372e-07;1294455;0.00015605022963332058;0;1;Old +6837;Estonia;M;Not stated;Manufacturing   ;Y65-84;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6838;Estonia;M;Not stated;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6839;Estonia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;16;1;6.097163823460096e-08;1294455;1.2360414228381829e-05;1;0;Young +6840;Estonia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;1;0;Young +6841;Estonia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;0;1;Old +6842;Estonia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6843;Estonia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;1294455;5.40768122491705e-06;1;0;Young +6844;Estonia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;1;0;Young +6845;Estonia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +6846;Estonia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6847;Estonia;M;Not stated;Construction   ;Y15-29;149;1;5.677983810597215e-07;1294455;0.00011510635750180578;1;0;Young +6848;Estonia;M;Not stated;Construction   ;Y30-49;262;1;9.984105760915908e-07;1294455;0.00020240178298975244;1;0;Young +6849;Estonia;M;Not stated;Construction   ;Y50-64;61;1;2.3245437076941619e-07;1294455;4.712407924570572e-05;0;1;Old +6850;Estonia;M;Not stated;Construction   ;Y65-84;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6851;Estonia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;123;1;4.6871946892849497e-07;1294455;9.502068438068531e-05;1;0;Young +6852;Estonia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;249;1;9.488711200259775e-07;1294455;0.0001923589464291922;1;0;Young +6853;Estonia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;64;1;2.4388655293840386e-07;1294455;4.9441656913527315e-05;0;1;Old +6854;Estonia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6855;Estonia;M;Not stated;Transportation and storage   ;Y15-29;75;1;2.8580455422469204e-07;1294455;5.793944169553982e-05;1;0;Young +6856;Estonia;M;Not stated;Transportation and storage   ;Y30-49;240;1;9.145745735190145e-07;1294455;0.00018540621342572744;1;0;Young +6857;Estonia;M;Not stated;Transportation and storage   ;Y50-64;94;1;3.582083746282807e-07;1294455;7.261743359174324e-05;0;1;Old +6858;Estonia;M;Not stated;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6859;Estonia;M;Not stated;Accommodation and food service activities   ;Y15-29;33;1;1.257540038588645e-07;1294455;2.5493354346037523e-05;1;0;Young +6860;Estonia;M;Not stated;Accommodation and food service activities   ;Y30-49;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;1;0;Young +6861;Estonia;M;Not stated;Accommodation and food service activities   ;Y50-64;9;1;3.429654650696304e-08;1294455;6.952733003464779e-06;0;1;Old +6862;Estonia;M;Not stated;Information and communication   ;Y15-29;72;1;2.7437237205570434e-07;1294455;5.562186402771823e-05;1;0;Young +6863;Estonia;M;Not stated;Information and communication   ;Y30-49;95;1;3.6201910201794326e-07;1294455;7.338995948101711e-05;1;0;Young +6864;Estonia;M;Not stated;Information and communication   ;Y50-64;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;0;1;Old +6865;Estonia;M;Not stated;Information and communication   ;Y65-84;3;1;1.1432182168987682e-08;1294455;2.3175776678215928e-06;0;1;Old +6866;Estonia;M;Not stated;Financial and insurance activities   ;Y15-29;24;1;9.145745735190145e-08;1294455;1.8540621342572742e-05;1;0;Young +6867;Estonia;M;Not stated;Financial and insurance activities   ;Y30-49;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;1;0;Young +6868;Estonia;M;Not stated;Financial and insurance activities   ;Y50-64;6;1;2.2864364337975363e-08;1294455;4.6351553356431855e-06;0;1;Old +6869;Estonia;M;Not stated;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6870;Estonia;M;Not stated;Real estate activities   ;Y15-29;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;1;0;Young +6871;Estonia;M;Not stated;Real estate activities   ;Y30-49;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;1;0;Young +6872;Estonia;M;Not stated;Real estate activities   ;Y50-64;20;1;7.621454779325121e-08;1294455;1.5450517785477285e-05;0;1;Old +6873;Estonia;M;Not stated;Real estate activities   ;Y65-84;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;0;1;Old +6874;Estonia;M;Not stated;Professional, scientific and technical activities   ;Y15-29;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;1;0;Young +6875;Estonia;M;Not stated;Professional, scientific and technical activities   ;Y30-49;105;1;4.0012637591456885e-07;1294455;8.111521837375575e-05;1;0;Young +6876;Estonia;M;Not stated;Professional, scientific and technical activities   ;Y50-64;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;0;1;Old +6877;Estonia;M;Not stated;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6878;Estonia;M;Not stated;Administrative and support service activities   ;Y15-29;50;1;1.9053636948312803e-07;1294455;3.8626294463693215e-05;1;0;Young +6879;Estonia;M;Not stated;Administrative and support service activities   ;Y30-49;99;1;3.772620115765935e-07;1294455;7.648006303811257e-05;1;0;Young +6880;Estonia;M;Not stated;Administrative and support service activities   ;Y50-64;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;0;1;Old +6881;Estonia;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;70;1;2.6675091727637925e-07;1294455;5.40768122491705e-05;1;0;Young +6882;Estonia;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;179;1;6.821202027495983e-07;1294455;0.0001382821341800217;1;0;Young +6883;Estonia;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;49;1;1.8672564209346548e-07;1294455;3.785376857441935e-05;0;1;Old +6884;Estonia;M;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;8;1;3.048581911730048e-08;1294455;6.180207114190914e-06;0;1;Old +6885;Estonia;M;Not stated;Education   ;Y15-29;17;1;6.478236562426352e-08;1294455;1.3132940117655692e-05;1;0;Young +6886;Estonia;M;Not stated;Education   ;Y30-49;45;1;1.7148273253481523e-07;1294455;3.4763665017323895e-05;1;0;Young +6887;Estonia;M;Not stated;Education   ;Y50-64;27;1;1.0288963952088914e-07;1294455;2.0858199010394335e-05;0;1;Old +6888;Estonia;M;Not stated;Education   ;Y65-84;5;1;1.9053636948312802e-08;1294455;3.862629446369321e-06;0;1;Old +6889;Estonia;M;Not stated;Human health and social work activities   ;Y15-29;11;1;4.1918001286288165e-08;1294455;8.497784782012508e-06;1;0;Young +6890;Estonia;M;Not stated;Human health and social work activities   ;Y30-49;22;1;8.383600257257633e-08;1294455;1.6995569564025015e-05;1;0;Young +6891;Estonia;M;Not stated;Human health and social work activities   ;Y50-64;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +6892;Estonia;M;Not stated;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6893;Estonia;M;Not stated;Arts, entertainment and recreation   ;Y15-29;28;1;1.067003669105517e-07;1294455;2.16307248996682e-05;1;0;Young +6894;Estonia;M;Not stated;Arts, entertainment and recreation   ;Y30-49;37;1;1.4099691341751475e-07;1294455;2.858345790313298e-05;1;0;Young +6895;Estonia;M;Not stated;Arts, entertainment and recreation   ;Y50-64;10;1;3.8107273896625604e-08;1294455;7.725258892738642e-06;0;1;Old +6896;Estonia;M;Not stated;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6897;Estonia;M;Not stated;Other service activities   ;Y15-29;15;1;5.716091084493841e-08;1294455;1.1587888339107965e-05;1;0;Young +6898;Estonia;M;Not stated;Other service activities   ;Y30-49;42;1;1.6005055036582754e-07;1294455;3.24460873495023e-05;1;0;Young +6899;Estonia;M;Not stated;Other service activities   ;Y50-64;18;1;6.859309301392609e-08;1294455;1.3905466006929557e-05;0;1;Old +6900;Estonia;M;Not stated;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;0;1;Old +6901;Estonia;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;1294455;7.725258892738643e-07;1;0;Young +6902;Estonia;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;1294455;3.090103557095457e-06;1;0;Young +6903;Estonia;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2;1;7.62145477932512e-09;1294455;1.5450517785477286e-06;0;1;Old +6904;Estonia;M;Not stated;Not stated   ;Y15-29;774;1;2.9495029995988217e-06;1294455;0.000597935038297971;1;0;Young +6905;Estonia;M;Not stated;Not stated   ;Y30-49;1311;1;4.995863607847617e-06;1294455;0.0010127814408380361;1;0;Young +6906;Estonia;M;Not stated;Not stated   ;Y50-64;406;1;1.5471553202029996e-06;1294455;0.0003136455110451889;0;1;Old +6907;Estonia;M;Not stated;Not stated   ;Y65-84;26;1;9.907891213122657e-08;1294455;2.0085673121120473e-05;0;1;Old +6908;Greece;F;Not applicable;Not applicable  ;Y15-29;597617;1;0.0022773554704279705;10816286;0.05525159005595821;1;0;Young +6909;Greece;F;Not applicable;Not applicable  ;Y30-49;527073;1;0.0020085315174516146;10816286;0.04872957316402322;1;0;Young +6910;Greece;F;Not applicable;Not applicable  ;Y50-64;697382;1;0.0026575326884576557;10816286;0.06447518122209417;0;1;Old +6911;Greece;F;Not applicable;Not applicable  ;Y65-84;1020968;1;0.003890630721569005;10816286;0.09439173483393468;0;1;Old +6912;Greece;F;Not applicable;Not applicable  ;Y_GE85;145655;1;0.0005550514979413003;10816286;0.013466267441522904;0;1;Old +6913;Greece;F;Not applicable;Not applicable  ;Y_LT15;766261;1;0.0029200117803302233;10816286;0.07084326357494615;0;1;Old +6914;Greece;F;Managers;Agriculture, forestry and fishing   ;Y15-29;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;1;0;Young +6915;Greece;F;Managers;Agriculture, forestry and fishing   ;Y30-49;128;1;4.877731058768077e-07;10816286;1.1834006608183253e-05;1;0;Young +6916;Greece;F;Managers;Agriculture, forestry and fishing   ;Y50-64;79;1;3.010474637833423e-07;10816286;7.303800953488101e-06;0;1;Old +6917;Greece;F;Managers;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +6918;Greece;F;Managers;Mining and quarrying   ;Y30-49;30;1;1.1432182168987682e-07;10816286;2.77359529879295e-06;1;0;Young +6919;Greece;F;Managers;Mining and quarrying   ;Y50-64;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +6920;Greece;F;Managers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +6921;Greece;F;Managers;Manufacturing   ;Y15-29;410;1;1.5623982297616498e-06;10816286;3.790580241683698e-05;1;0;Young +6922;Greece;F;Managers;Manufacturing   ;Y30-49;3861;1;1.4713218451487146e-05;10816286;0.00035696171495465265;1;0;Young +6923;Greece;F;Managers;Manufacturing   ;Y50-64;1800;1;6.859309301392609e-06;10816286;0.00016641571792757698;0;1;Old +6924;Greece;F;Managers;Manufacturing   ;Y65-84;144;1;5.487447441114087e-07;10816286;1.3313257434206159e-05;0;1;Old +6925;Greece;F;Managers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +6926;Greece;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;1;0;Young +6927;Greece;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;144;1;5.487447441114087e-07;10816286;1.3313257434206159e-05;1;0;Young +6928;Greece;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;29;1;1.1051109430021426e-07;10816286;2.681142122166518e-06;0;1;Old +6929;Greece;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +6930;Greece;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;1;0;Young +6931;Greece;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;84;1;3.201011007316551e-07;10816286;7.76606683662026e-06;1;0;Young +6932;Greece;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;37;1;1.4099691341751475e-07;10816286;3.4207675351779714e-06;0;1;Old +6933;Greece;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +6934;Greece;F;Managers;Construction   ;Y15-29;146;1;5.563661988907339e-07;10816286;1.3498163787459022e-05;1;0;Young +6935;Greece;F;Managers;Construction   ;Y30-49;1125;1;4.287068313370381e-06;10816286;0.00010400982370473562;1;0;Young +6936;Greece;F;Managers;Construction   ;Y50-64;441;1;1.6805307788411892e-06;10816286;4.077185089225636e-05;0;1;Old +6937;Greece;F;Managers;Construction   ;Y65-84;30;1;1.1432182168987682e-07;10816286;2.77359529879295e-06;0;1;Old +6938;Greece;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2252;1;8.581758081520087e-06;10816286;0.0002082045537627241;1;0;Young +6939;Greece;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;17973;1;6.84902033744052e-05;10816286;0.0016616609435068563;1;0;Young +6940;Greece;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7734;1;2.9472165631650243e-05;10816286;0.0007150328680288224;0;1;Old +6941;Greece;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;537;1;2.046360608248795e-06;10816286;4.96473558483938e-05;0;1;Old +6942;Greece;F;Managers;Transportation and storage   ;Y15-29;104;1;3.963156485249063e-07;10816286;9.615130369148892e-06;1;0;Young +6943;Greece;F;Managers;Transportation and storage   ;Y30-49;839;1;3.197200279926888e-06;10816286;7.756821518957616e-05;1;0;Young +6944;Greece;F;Managers;Transportation and storage   ;Y50-64;278;1;1.0593822143261918e-06;10816286;2.5701983102148002e-05;0;1;Old +6945;Greece;F;Managers;Transportation and storage   ;Y65-84;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +6946;Greece;F;Managers;Accommodation and food service activities   ;Y15-29;1884;1;7.1794104021242645e-06;10816286;0.00017418178476419726;1;0;Young +6947;Greece;F;Managers;Accommodation and food service activities   ;Y30-49;11993;1;4.570205358422309e-05;10816286;0.001108790947280795;1;0;Young +6948;Greece;F;Managers;Accommodation and food service activities   ;Y50-64;5524;1;2.1050458100495983e-05;10816286;0.0005107113476844085;0;1;Old +6949;Greece;F;Managers;Accommodation and food service activities   ;Y65-84;330;1;1.257540038588645e-06;10816286;3.050954828672245e-05;0;1;Old +6950;Greece;F;Managers;Information and communication   ;Y15-29;168;1;6.402022014633102e-07;10816286;1.553213367324052e-05;1;0;Young +6951;Greece;F;Managers;Information and communication   ;Y30-49;1173;1;4.469983228074183e-06;10816286;0.00010844757618280434;1;0;Young +6952;Greece;F;Managers;Information and communication   ;Y50-64;245;1;9.336282104673273e-07;10816286;2.2651028273475758e-05;0;1;Old +6953;Greece;F;Managers;Information and communication   ;Y65-84;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;0;1;Old +6954;Greece;F;Managers;Financial and insurance activities   ;Y15-29;109;1;4.153692854732191e-07;10816286;1.007739625228105e-05;1;0;Young +6955;Greece;F;Managers;Financial and insurance activities   ;Y30-49;2207;1;8.410275348985272e-06;10816286;0.00020404416081453466;1;0;Young +6956;Greece;F;Managers;Financial and insurance activities   ;Y50-64;710;1;2.705616446660418e-06;10816286;6.564175540476648e-05;0;1;Old +6957;Greece;F;Managers;Financial and insurance activities   ;Y65-84;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +6958;Greece;F;Managers;Real estate activities   ;Y15-29;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;1;0;Young +6959;Greece;F;Managers;Real estate activities   ;Y30-49;49;1;1.8672564209346548e-07;10816286;4.530205654695151e-06;1;0;Young +6960;Greece;F;Managers;Real estate activities   ;Y50-64;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +6961;Greece;F;Managers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +6962;Greece;F;Managers;Professional, scientific and technical activities   ;Y15-29;153;1;5.830412906183718e-07;10816286;1.4145336023844044e-05;1;0;Young +6963;Greece;F;Managers;Professional, scientific and technical activities   ;Y30-49;997;1;3.7992952074935727e-06;10816286;9.217581709655237e-05;1;0;Young +6964;Greece;F;Managers;Professional, scientific and technical activities   ;Y50-64;292;1;1.1127323977814678e-06;10816286;2.6996327574918044e-05;0;1;Old +6965;Greece;F;Managers;Professional, scientific and technical activities   ;Y65-84;13;1;4.953945606561329e-08;10816286;1.2018912961436115e-06;0;1;Old +6966;Greece;F;Managers;Administrative and support service activities   ;Y15-29;143;1;5.449340167217462e-07;10816286;1.3220804257579727e-05;1;0;Young +6967;Greece;F;Managers;Administrative and support service activities   ;Y30-49;857;1;3.2657933729408146e-06;10816286;7.923237236885193e-05;1;0;Young +6968;Greece;F;Managers;Administrative and support service activities   ;Y50-64;305;1;1.162271853847081e-06;10816286;2.8198218871061656e-05;0;1;Old +6969;Greece;F;Managers;Administrative and support service activities   ;Y65-84;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;0;1;Old +6970;Greece;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;101;1;3.848834663559186e-07;10816286;9.337770839269597e-06;1;0;Young +6971;Greece;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;1699;1;6.47442583503669e-06;10816286;0.0001570779470883074;1;0;Young +6972;Greece;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;1282;1;4.8853525135474025e-06;10816286;0.00011852497243508538;0;1;Old +6973;Greece;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;29;1;1.1051109430021426e-07;10816286;2.681142122166518e-06;0;1;Old +6974;Greece;F;Managers;Education   ;Y15-29;57;1;2.1721146121076594e-07;10816286;5.269831067706604e-06;1;0;Young +6975;Greece;F;Managers;Education   ;Y30-49;806;1;3.0714462760680236e-06;10816286;7.451726036090392e-05;1;0;Young +6976;Greece;F;Managers;Education   ;Y50-64;760;1;2.896152816143546e-06;10816286;7.026441423608806e-05;0;1;Old +6977;Greece;F;Managers;Education   ;Y65-84;26;1;9.907891213122657e-08;10816286;2.403782592287223e-06;0;1;Old +6978;Greece;F;Managers;Human health and social work activities   ;Y15-29;139;1;5.296911071630959e-07;10816286;1.2850991551074001e-05;1;0;Young +6979;Greece;F;Managers;Human health and social work activities   ;Y30-49;1380;1;5.258803797734333e-06;10816286;0.0001275853837444757;1;0;Young +6980;Greece;F;Managers;Human health and social work activities   ;Y50-64;703;1;2.67894135493278e-06;10816286;6.499458316838146e-05;0;1;Old +6981;Greece;F;Managers;Human health and social work activities   ;Y65-84;40;1;1.5242909558650242e-07;10816286;3.6981270650572662e-06;0;1;Old +6982;Greece;F;Managers;Arts, entertainment and recreation   ;Y15-29;116;1;4.4204437720085703e-07;10816286;1.0724568488666072e-05;1;0;Young +6983;Greece;F;Managers;Arts, entertainment and recreation   ;Y30-49;636;1;2.4236226198253887e-06;10816286;5.880022033441053e-05;1;0;Young +6984;Greece;F;Managers;Arts, entertainment and recreation   ;Y50-64;228;1;8.688458448430638e-07;10816286;2.1079324270826417e-05;0;1;Old +6985;Greece;F;Managers;Arts, entertainment and recreation   ;Y65-84;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;0;1;Old +6986;Greece;F;Managers;Other service activities   ;Y15-29;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;1;0;Young +6987;Greece;F;Managers;Other service activities   ;Y30-49;198;1;7.54524023153187e-07;10816286;1.830572897203347e-05;1;0;Young +6988;Greece;F;Managers;Other service activities   ;Y50-64;66;1;2.51508007717729e-07;10816286;6.10190965734449e-06;0;1;Old +6989;Greece;F;Managers;Other service activities   ;Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +6990;Greece;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;1;0;Young +6991;Greece;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;0;1;Old +6992;Greece;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;123;1;4.6871946892849497e-07;10816286;1.1371740725051095e-05;1;0;Young +6993;Greece;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;470;1;1.7910418731414035e-06;10816286;4.3452993014422884e-05;1;0;Young +6994;Greece;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;87;1;3.3153328290064277e-07;10816286;8.043426366499555e-06;0;1;Old +6995;Greece;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +6996;Greece;F;Professionals;Mining and quarrying   ;Y15-29;25;1;9.526818474156401e-08;10816286;2.3113294156607915e-06;1;0;Young +6997;Greece;F;Professionals;Mining and quarrying   ;Y30-49;53;1;2.019685516521157e-07;10816286;4.900018361200878e-06;1;0;Young +6998;Greece;F;Professionals;Mining and quarrying   ;Y50-64;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +6999;Greece;F;Professionals;Manufacturing   ;Y15-29;2049;1;7.808180421418586e-06;10816286;0.00018943655890755847;1;0;Young +7000;Greece;F;Professionals;Manufacturing   ;Y30-49;6873;1;2.619112934915078e-05;10816286;0.0006354306829534648;1;0;Young +7001;Greece;F;Professionals;Manufacturing   ;Y50-64;1061;1;4.043181760431977e-06;10816286;9.8092820400644e-05;0;1;Old +7002;Greece;F;Professionals;Manufacturing   ;Y65-84;33;1;1.257540038588645e-07;10816286;3.050954828672245e-06;0;1;Old +7003;Greece;F;Professionals;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7004;Greece;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;175;1;6.668772931909481e-07;10816286;1.617930590962554e-05;1;0;Young +7005;Greece;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;644;1;2.454108438942689e-06;10816286;5.9539845747421986e-05;1;0;Young +7006;Greece;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;102;1;3.886941937455812e-07;10816286;9.430224015896029e-06;0;1;Old +7007;Greece;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7008;Greece;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;42;1;1.6005055036582754e-07;10816286;3.88303341831013e-06;1;0;Young +7009;Greece;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;235;1;8.955209365707018e-07;10816286;2.1726496507211442e-05;1;0;Young +7010;Greece;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;37;1;1.4099691341751475e-07;10816286;3.4207675351779714e-06;0;1;Old +7011;Greece;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7012;Greece;F;Professionals;Construction   ;Y15-29;703;1;2.67894135493278e-06;10816286;6.499458316838146e-05;1;0;Young +7013;Greece;F;Professionals;Construction   ;Y30-49;1819;1;6.931713121796198e-06;10816286;0.0001681723282834792;1;0;Young +7014;Greece;F;Professionals;Construction   ;Y50-64;310;1;1.1813254907953937e-06;10816286;2.8660484754193814e-05;0;1;Old +7015;Greece;F;Professionals;Construction   ;Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7016;Greece;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2786;1;1.0616686507599894e-05;10816286;0.0002575745500812386;1;0;Young +7017;Greece;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8577;1;3.268460882113578e-05;10816286;0.0007929708959249043;1;0;Young +7018;Greece;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3529;1;1.3448056958119176e-05;10816286;0.00032626726031467735;0;1;Old +7019;Greece;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;138;1;5.258803797734334e-07;10816286;1.275853837444757e-05;0;1;Old +7020;Greece;F;Professionals;Transportation and storage   ;Y15-29;405;1;1.543344592813337e-06;10816286;3.744353653370482e-05;1;0;Young +7021;Greece;F;Professionals;Transportation and storage   ;Y30-49;1307;1;4.980620698288967e-06;10816286;0.00012083630185074619;1;0;Young +7022;Greece;F;Professionals;Transportation and storage   ;Y50-64;189;1;7.202274766462239e-07;10816286;1.7473650382395584e-05;0;1;Old +7023;Greece;F;Professionals;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7024;Greece;F;Professionals;Accommodation and food service activities   ;Y15-29;405;1;1.543344592813337e-06;10816286;3.744353653370482e-05;1;0;Young +7025;Greece;F;Professionals;Accommodation and food service activities   ;Y30-49;1020;1;3.886941937455812e-06;10816286;9.43022401589603e-05;1;0;Young +7026;Greece;F;Professionals;Accommodation and food service activities   ;Y50-64;195;1;7.430918409841993e-07;10816286;1.8028369442154173e-05;0;1;Old +7027;Greece;F;Professionals;Accommodation and food service activities   ;Y65-84;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;0;1;Old +7028;Greece;F;Professionals;Information and communication   ;Y15-29;3429;1;1.306698421915292e-05;10816286;0.0003170219426520342;1;0;Young +7029;Greece;F;Professionals;Information and communication   ;Y30-49;10375;1;3.9536296667749065e-05;10816286;0.0009592017074992285;1;0;Young +7030;Greece;F;Professionals;Information and communication   ;Y50-64;1493;1;5.689415992766203e-06;10816286;0.00013803259270326248;0;1;Old +7031;Greece;F;Professionals;Information and communication   ;Y65-84;89;1;3.3915473767996787e-07;10816286;8.228332719752418e-06;0;1;Old +7032;Greece;F;Professionals;Financial and insurance activities   ;Y15-29;938;1;3.574462291503482e-06;10816286;8.67210796755929e-05;1;0;Young +7033;Greece;F;Professionals;Financial and insurance activities   ;Y30-49;2935;1;1.1184484888659615e-05;10816286;0.00027135007339857694;1;0;Young +7034;Greece;F;Professionals;Financial and insurance activities   ;Y50-64;394;1;1.5014265915270488e-06;10816286;3.6426551590814073e-05;0;1;Old +7035;Greece;F;Professionals;Financial and insurance activities   ;Y65-84;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;0;1;Old +7036;Greece;F;Professionals;Real estate activities   ;Y15-29;25;1;9.526818474156401e-08;10816286;2.3113294156607915e-06;1;0;Young +7037;Greece;F;Professionals;Real estate activities   ;Y30-49;56;1;2.134007338211034e-07;10816286;5.177377891080173e-06;1;0;Young +7038;Greece;F;Professionals;Real estate activities   ;Y50-64;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +7039;Greece;F;Professionals;Professional, scientific and technical activities   ;Y15-29;14423;1;5.496212114110311e-05;10816286;0.001333452166483024;1;0;Young +7040;Greece;F;Professionals;Professional, scientific and technical activities   ;Y30-49;39279;1;0.0001496815611385557;10816286;0.003631468324709609;1;0;Young +7041;Greece;F;Professionals;Professional, scientific and technical activities   ;Y50-64;9110;1;3.4715726519825924e-05;10816286;0.0008422484390667924;0;1;Old +7042;Greece;F;Professionals;Professional, scientific and technical activities   ;Y65-84;576;1;2.1949789764456348e-06;10816286;5.3253029736824636e-05;0;1;Old +7043;Greece;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7044;Greece;F;Professionals;Administrative and support service activities   ;Y15-29;229;1;8.726565722327264e-07;10816286;2.117177744745285e-05;1;0;Young +7045;Greece;F;Professionals;Administrative and support service activities   ;Y30-49;589;1;2.244518432511248e-06;10816286;5.445492103296825e-05;1;0;Young +7046;Greece;F;Professionals;Administrative and support service activities   ;Y50-64;92;1;3.5058691984895557e-07;10816286;8.505692249631713e-06;0;1;Old +7047;Greece;F;Professionals;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7048;Greece;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;1923;1;7.328028770321104e-06;10816286;0.00017778745865262808;1;0;Young +7049;Greece;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;13306;1;5.0705538646850034e-05;10816286;0.0012301819681912996;1;0;Young +7050;Greece;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;4063;1;1.5482985384198983e-05;10816286;0.0003756372566331918;0;1;Old +7051;Greece;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;88;1;3.353440102903053e-07;10816286;8.135879543125986e-06;0;1;Old +7052;Greece;F;Professionals;Education   ;Y15-29;28403;1;0.0001082360900485857;10816286;0.0026259475757205385;1;0;Young +7053;Greece;F;Professionals;Education   ;Y30-49;118311;1;0.0004508509681983672;10816286;0.010938227779849756;1;0;Young +7054;Greece;F;Professionals;Education   ;Y50-64;28058;1;0.00010692138909915212;10816286;0.0025940512297844194;0;1;Old +7055;Greece;F;Professionals;Education   ;Y65-84;627;1;2.3893260733184253e-06;10816286;5.796814174477265e-05;0;1;Old +7056;Greece;F;Professionals;Education   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7057;Greece;F;Professionals;Human health and social work activities   ;Y15-29;14696;1;5.600244971848099e-05;10816286;0.0013586918837020397;1;0;Young +7058;Greece;F;Professionals;Human health and social work activities   ;Y30-49;49582;1;0.00018894348543424907;10816286;0.0045840134034917344;1;0;Young +7059;Greece;F;Professionals;Human health and social work activities   ;Y50-64;11051;1;4.2112348383160956e-05;10816286;0.0010217000548986962;0;1;Old +7060;Greece;F;Professionals;Human health and social work activities   ;Y65-84;551;1;2.099710791704071e-06;10816286;5.0941700321163845e-05;0;1;Old +7061;Greece;F;Professionals;Arts, entertainment and recreation   ;Y15-29;1370;1;5.220696523837708e-06;10816286;0.00012666085197821138;1;0;Young +7062;Greece;F;Professionals;Arts, entertainment and recreation   ;Y30-49;5403;1;2.0589360086346813e-05;10816286;0.0004995245133126103;1;0;Young +7063;Greece;F;Professionals;Arts, entertainment and recreation   ;Y50-64;1485;1;5.658930173648902e-06;10816286;0.000137292967290251;0;1;Old +7064;Greece;F;Professionals;Arts, entertainment and recreation   ;Y65-84;161;1;6.135271097356723e-07;10816286;1.4884961436855497e-05;0;1;Old +7065;Greece;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7066;Greece;F;Professionals;Other service activities   ;Y15-29;547;1;2.0844678821454206e-06;10816286;5.057188761465812e-05;1;0;Young +7067;Greece;F;Professionals;Other service activities   ;Y30-49;1450;1;5.525554715010713e-06;10816286;0.0001340571061083259;1;0;Young +7068;Greece;F;Professionals;Other service activities   ;Y50-64;283;1;1.0784358512745046e-06;10816286;2.616424898528016e-05;0;1;Old +7069;Greece;F;Professionals;Other service activities   ;Y65-84;26;1;9.907891213122657e-08;10816286;2.403782592287223e-06;0;1;Old +7070;Greece;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;1;0;Young +7071;Greece;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;59;1;2.2483291599009106e-07;10816286;5.454737420959468e-06;1;0;Young +7072;Greece;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;0;1;Old +7073;Greece;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7074;Greece;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;149;1;5.677983810597215e-07;10816286;1.3775523317338317e-05;1;0;Young +7075;Greece;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;526;1;2.004442606962507e-06;10816286;4.8630370905503055e-05;1;0;Young +7076;Greece;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;71;1;2.705616446660418e-07;10816286;6.564175540476648e-06;0;1;Old +7077;Greece;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7078;Greece;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;28;1;1.067003669105517e-07;10816286;2.5886889455400863e-06;1;0;Young +7079;Greece;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;77;1;2.9342600900401714e-07;10816286;7.118894600235238e-06;1;0;Young +7080;Greece;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;19;1;7.240382040358865e-08;10816286;1.7566103559022015e-06;0;1;Old +7081;Greece;F;Technicians and associate professionals;Manufacturing   ;Y15-29;1889;1;7.198464039072577e-06;10816286;0.0001746440506473294;1;0;Young +7082;Greece;F;Technicians and associate professionals;Manufacturing   ;Y30-49;6534;1;2.489929276405517e-05;10816286;0.0006040890560771045;1;0;Young +7083;Greece;F;Technicians and associate professionals;Manufacturing   ;Y50-64;1322;1;5.037781609133905e-06;10816286;0.00012222309950014266;0;1;Old +7084;Greece;F;Technicians and associate professionals;Manufacturing   ;Y65-84;30;1;1.1432182168987682e-07;10816286;2.77359529879295e-06;0;1;Old +7085;Greece;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;143;1;5.449340167217462e-07;10816286;1.3220804257579727e-05;1;0;Young +7086;Greece;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1156;1;4.40520086244992e-06;10816286;0.000106875872180155;1;0;Young +7087;Greece;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;260;1;9.907891213122658e-07;10816286;2.4037825922872232e-05;0;1;Old +7088;Greece;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7089;Greece;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;61;1;2.3245437076941619e-07;10816286;5.639643774212332e-06;1;0;Young +7090;Greece;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;468;1;1.7834204183620783e-06;10816286;4.326808666117002e-05;1;0;Young +7091;Greece;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;137;1;5.220696523837708e-07;10816286;1.2666085197821138e-05;0;1;Old +7092;Greece;F;Technicians and associate professionals;Construction   ;Y15-29;675;1;2.5722409880222284e-06;10816286;6.240589422284137e-05;1;0;Young +7093;Greece;F;Technicians and associate professionals;Construction   ;Y30-49;1754;1;6.6840158414681314e-06;10816286;0.00016216287180276112;1;0;Young +7094;Greece;F;Technicians and associate professionals;Construction   ;Y50-64;292;1;1.1127323977814678e-06;10816286;2.6996327574918044e-05;0;1;Old +7095;Greece;F;Technicians and associate professionals;Construction   ;Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7096;Greece;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3098;1;1.1805633453174612e-05;10816286;0.0002864199411886853;1;0;Young +7097;Greece;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9526;1;3.630098911392555e-05;10816286;0.000880708960543388;1;0;Young +7098;Greece;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1783;1;6.794526935768345e-06;10816286;0.00016484401392492765;0;1;Old +7099;Greece;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;69;1;2.629401898867167e-07;10816286;6.379269187223785e-06;0;1;Old +7100;Greece;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;1173;1;4.469983228074183e-06;10816286;0.00010844757618280434;1;0;Young +7101;Greece;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;3714;1;1.415304152520675e-05;10816286;0.0003433710979905672;1;0;Young +7102;Greece;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;924;1;3.521112108048206e-06;10816286;8.542673520282285e-05;0;1;Old +7103;Greece;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;0;1;Old +7104;Greece;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;496;1;1.89012078527263e-06;10816286;4.5856775606710106e-05;1;0;Young +7105;Greece;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;1080;1;4.115585580835566e-06;10816286;9.98494307565462e-05;1;0;Young +7106;Greece;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;267;1;1.0174642130399036e-06;10816286;2.4684998159257254e-05;0;1;Old +7107;Greece;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7108;Greece;F;Technicians and associate professionals;Information and communication   ;Y15-29;893;1;3.4029795589686665e-06;10816286;8.256068672740347e-05;1;0;Young +7109;Greece;F;Technicians and associate professionals;Information and communication   ;Y30-49;3258;1;1.2415349835520623e-05;10816286;0.00030121244944891437;1;0;Young +7110;Greece;F;Technicians and associate professionals;Information and communication   ;Y50-64;535;1;2.03873915346947e-06;10816286;4.946244949514094e-05;0;1;Old +7111;Greece;F;Technicians and associate professionals;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7112;Greece;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;5871;1;2.2372780504708894e-05;10816286;0.0005427925999737802;1;0;Young +7113;Greece;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;21759;1;8.291761727166765e-05;10816286;0.0020116886702145264;1;0;Young +7114;Greece;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;4109;1;1.5658278844123462e-05;10816286;0.0003798901027580077;0;1;Old +7115;Greece;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;95;1;3.6201910201794326e-07;10816286;8.783051779511008e-06;0;1;Old +7116;Greece;F;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7117;Greece;F;Technicians and associate professionals;Real estate activities   ;Y15-29;329;1;1.2537293111989825e-06;10816286;3.0417095110096018e-05;1;0;Young +7118;Greece;F;Technicians and associate professionals;Real estate activities   ;Y30-49;1683;1;6.413454196802089e-06;10816286;0.0001555986962622845;1;0;Young +7119;Greece;F;Technicians and associate professionals;Real estate activities   ;Y50-64;564;1;2.149250247769684e-06;10816286;5.2143591617307456e-05;0;1;Old +7120;Greece;F;Technicians and associate professionals;Real estate activities   ;Y65-84;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;0;1;Old +7121;Greece;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;5389;1;2.053600990289154e-05;10816286;0.0004982301688398402;1;0;Young +7122;Greece;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;15091;1;5.75076870373977e-05;10816286;0.00139521088846948;1;0;Young +7123;Greece;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2996;1;1.1416939259429032e-05;10816286;0.00027698971717278925;0;1;Old +7124;Greece;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;93;1;3.543976472386181e-07;10816286;8.598145426258144e-06;0;1;Old +7125;Greece;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;623;1;2.3740831637597753e-06;10816286;5.759832903826692e-05;1;0;Young +7126;Greece;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;1904;1;7.255624949917516e-06;10816286;0.0001760308482967259;1;0;Young +7127;Greece;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;431;1;1.6424235049445636e-06;10816286;3.9847319125992044e-05;0;1;Old +7128;Greece;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;0;1;Old +7129;Greece;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2505;1;9.545872111104715e-06;10816286;0.0002315952074492113;1;0;Young +7130;Greece;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;21766;1;8.294429236339529e-05;10816286;0.0020123358424509116;1;0;Young +7131;Greece;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;9043;1;3.4460407784718535e-05;10816286;0.0008360540762328215;0;1;Old +7132;Greece;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;134;1;5.106374702147831e-07;10816286;1.2388725667941843e-05;0;1;Old +7133;Greece;F;Technicians and associate professionals;Education   ;Y15-29;634;1;2.4160011650460635e-06;10816286;5.861531398115767e-05;1;0;Young +7134;Greece;F;Technicians and associate professionals;Education   ;Y30-49;4198;1;1.599743358180343e-05;10816286;0.0003881184354777601;1;0;Young +7135;Greece;F;Technicians and associate professionals;Education   ;Y50-64;743;1;2.8313704505192823e-06;10816286;6.869271023343872e-05;0;1;Old +7136;Greece;F;Technicians and associate professionals;Education   ;Y65-84;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;0;1;Old +7137;Greece;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;6354;1;2.421336183391591e-05;10816286;0.0005874474842843467;1;0;Young +7138;Greece;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;22941;1;8.742189704624881e-05;10816286;0.0021209683249869687;1;0;Young +7139;Greece;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;4352;1;1.6584285599811462e-05;10816286;0.0004023562246782306;0;1;Old +7140;Greece;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;72;1;2.7437237205570434e-07;10816286;6.6566287171030795e-06;0;1;Old +7141;Greece;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;1269;1;4.8358130574817896e-06;10816286;0.00011732308113894177;1;0;Young +7142;Greece;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2615;1;9.965052123967596e-06;10816286;0.0002417650568781188;1;0;Young +7143;Greece;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;319;1;1.2156220373023567e-06;10816286;2.9492563343831698e-05;0;1;Old +7144;Greece;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +7145;Greece;F;Technicians and associate professionals;Other service activities   ;Y15-29;261;1;9.945998487019282e-07;10816286;2.4130279099498664e-05;1;0;Young +7146;Greece;F;Technicians and associate professionals;Other service activities   ;Y30-49;904;1;3.4448975602549547e-06;10816286;8.357767167029422e-05;1;0;Young +7147;Greece;F;Technicians and associate professionals;Other service activities   ;Y50-64;240;1;9.145745735190145e-07;10816286;2.21887623903436e-05;0;1;Old +7148;Greece;F;Technicians and associate professionals;Other service activities   ;Y65-84;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;0;1;Old +7149;Greece;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;13;1;4.953945606561329e-08;10816286;1.2018912961436115e-06;1;0;Young +7150;Greece;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;40;1;1.5242909558650242e-07;10816286;3.6981270650572662e-06;1;0;Young +7151;Greece;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +7152;Greece;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;1;0;Young +7153;Greece;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;16;1;6.097163823460096e-08;10816286;1.4792508260229066e-06;1;0;Young +7154;Greece;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7155;Greece;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7156;Greece;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;177;1;6.744987479702732e-07;10816286;1.6364212262878404e-05;1;0;Young +7157;Greece;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;410;1;1.5623982297616498e-06;10816286;3.790580241683698e-05;1;0;Young +7158;Greece;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;79;1;3.010474637833423e-07;10816286;7.303800953488101e-06;0;1;Old +7159;Greece;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7160;Greece;F;Clerical support workers;Mining and quarrying   ;Y15-29;39;1;1.4861836819683987e-07;10816286;3.6056738884308346e-06;1;0;Young +7161;Greece;F;Clerical support workers;Mining and quarrying   ;Y30-49;142;1;5.411232893320836e-07;10816286;1.3128351080953296e-05;1;0;Young +7162;Greece;F;Clerical support workers;Mining and quarrying   ;Y50-64;30;1;1.1432182168987682e-07;10816286;2.77359529879295e-06;0;1;Old +7163;Greece;F;Clerical support workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7164;Greece;F;Clerical support workers;Manufacturing   ;Y15-29;3106;1;1.1836119272291913e-05;10816286;0.00028715956660169676;1;0;Young +7165;Greece;F;Clerical support workers;Manufacturing   ;Y30-49;10265;1;3.911711665488618e-05;10816286;0.000949031858070321;1;0;Young +7166;Greece;F;Clerical support workers;Manufacturing   ;Y50-64;1774;1;6.760230389261383e-06;10816286;0.00016401193533528976;0;1;Old +7167;Greece;F;Clerical support workers;Manufacturing   ;Y65-84;41;1;1.56239822976165e-07;10816286;3.7905802416836983e-06;0;1;Old +7168;Greece;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;500;1;1.9053636948312803e-06;10816286;4.622658831321583e-05;1;0;Young +7169;Greece;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2570;1;9.79356939143278e-06;10816286;0.00023760466392992936;1;0;Young +7170;Greece;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;461;1;1.7567453266344403e-06;10816286;4.262091442478499e-05;0;1;Old +7171;Greece;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;0;1;Old +7172;Greece;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;189;1;7.202274766462239e-07;10816286;1.7473650382395584e-05;1;0;Young +7173;Greece;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;617;1;2.3512187994217997e-06;10816286;5.704360997850833e-05;1;0;Young +7174;Greece;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;136;1;5.182589249941082e-07;10816286;1.2573632021194706e-05;0;1;Old +7175;Greece;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7176;Greece;F;Clerical support workers;Construction   ;Y15-29;1396;1;5.319775435968935e-06;10816286;0.0001290646345704986;1;0;Young +7177;Greece;F;Clerical support workers;Construction   ;Y30-49;4103;1;1.5635414479785487e-05;10816286;0.00037933538369824913;1;0;Young +7178;Greece;F;Clerical support workers;Construction   ;Y50-64;706;1;2.6903735371017678e-06;10816286;6.527194269826075e-05;0;1;Old +7179;Greece;F;Clerical support workers;Construction   ;Y65-84;17;1;6.478236562426352e-08;10816286;1.5717040026493382e-06;0;1;Old +7180;Greece;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5685;1;2.1663985210231657e-05;10816286;0.000525596309121264;1;0;Young +7181;Greece;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;16154;1;6.1558490252609e-05;10816286;0.001493488615223377;1;0;Young +7182;Greece;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2205;1;8.402653894205947e-06;10816286;0.0002038592544612818;0;1;Old +7183;Greece;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;57;1;2.1721146121076594e-07;10816286;5.269831067706604e-06;0;1;Old +7184;Greece;F;Clerical support workers;Transportation and storage   ;Y15-29;3175;1;1.209905946217863e-05;10816286;0.00029353883578892053;1;0;Young +7185;Greece;F;Clerical support workers;Transportation and storage   ;Y30-49;10485;1;3.995547668061195e-05;10816286;0.000969371556928136;1;0;Young +7186;Greece;F;Clerical support workers;Transportation and storage   ;Y50-64;1783;1;6.794526935768345e-06;10816286;0.00016484401392492765;0;1;Old +7187;Greece;F;Clerical support workers;Transportation and storage   ;Y65-84;24;1;9.145745735190145e-08;10816286;2.21887623903436e-06;0;1;Old +7188;Greece;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;3541;1;1.3493785686795127e-05;10816286;0.00032737669843419453;1;0;Young +7189;Greece;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;8271;1;3.151852623989904e-05;10816286;0.0007646802238772162;1;0;Young +7190;Greece;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;2001;1;7.625265506714784e-06;10816286;0.00018499880642948975;0;1;Old +7191;Greece;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;79;1;3.010474637833423e-07;10816286;7.303800953488101e-06;0;1;Old +7192;Greece;F;Clerical support workers;Information and communication   ;Y15-29;3655;1;1.3928208609216658e-05;10816286;0.0003379163605696077;1;0;Young +7193;Greece;F;Clerical support workers;Information and communication   ;Y30-49;7407;1;2.8226057775230587e-05;10816286;0.0006848006792719793;1;0;Young +7194;Greece;F;Clerical support workers;Information and communication   ;Y50-64;876;1;3.338197193344403e-06;10816286;8.098898272475413e-05;0;1;Old +7195;Greece;F;Clerical support workers;Information and communication   ;Y65-84;26;1;9.907891213122657e-08;10816286;2.403782592287223e-06;0;1;Old +7196;Greece;F;Clerical support workers;Financial and insurance activities   ;Y15-29;3910;1;1.4899944093580611e-05;10816286;0.0003614919206093478;1;0;Young +7197;Greece;F;Clerical support workers;Financial and insurance activities   ;Y30-49;9980;1;3.8031059348832356e-05;10816286;0.000922682702731788;1;0;Young +7198;Greece;F;Clerical support workers;Financial and insurance activities   ;Y50-64;1480;1;5.63987653670059e-06;10816286;0.00013683070140711886;0;1;Old +7199;Greece;F;Clerical support workers;Financial and insurance activities   ;Y65-84;19;1;7.240382040358865e-08;10816286;1.7566103559022015e-06;0;1;Old +7200;Greece;F;Clerical support workers;Real estate activities   ;Y15-29;299;1;1.1394074895091056e-06;10816286;2.7643499811303066e-05;1;0;Young +7201;Greece;F;Clerical support workers;Real estate activities   ;Y30-49;517;1;1.970146060455544e-06;10816286;4.779829231586517e-05;1;0;Young +7202;Greece;F;Clerical support workers;Real estate activities   ;Y50-64;70;1;2.6675091727637925e-07;10816286;6.471722363850216e-06;0;1;Old +7203;Greece;F;Clerical support workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7204;Greece;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;3884;1;1.4800865181449386e-05;10816286;0.0003590881380170606;1;0;Young +7205;Greece;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;9544;1;3.6369582206939476e-05;10816286;0.0008823731177226637;1;0;Young +7206;Greece;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;1748;1;6.661151477130156e-06;10816286;0.00016160815274300253;0;1;Old +7207;Greece;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;42;1;1.6005055036582754e-07;10816286;3.88303341831013e-06;0;1;Old +7208;Greece;F;Clerical support workers;Administrative and support service activities   ;Y15-29;3500;1;1.3337545863818962e-05;10816286;0.0003235861181925108;1;0;Young +7209;Greece;F;Clerical support workers;Administrative and support service activities   ;Y30-49;8070;1;3.0752570034576866e-05;10816286;0.0007460971353753035;1;0;Young +7210;Greece;F;Clerical support workers;Administrative and support service activities   ;Y50-64;1337;1;5.094942519978844e-06;10816286;0.00012360989714953912;0;1;Old +7211;Greece;F;Clerical support workers;Administrative and support service activities   ;Y65-84;41;1;1.56239822976165e-07;10816286;3.7905802416836983e-06;0;1;Old +7212;Greece;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;4810;1;1.8329598744276917e-05;10816286;0.0004446997795731363;1;0;Young +7213;Greece;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;28146;1;0.00010725673310944243;10816286;0.0026021871093275454;1;0;Young +7214;Greece;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;9631;1;3.6701115489840123e-05;10816286;0.0008904165440891634;0;1;Old +7215;Greece;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;152;1;5.792305632287092e-07;10816286;1.4052882847217612e-05;0;1;Old +7216;Greece;F;Clerical support workers;Education   ;Y15-29;2587;1;9.858351757057045e-06;10816286;0.0002391763679325787;1;0;Young +7217;Greece;F;Clerical support workers;Education   ;Y30-49;7171;1;2.732672611127022e-05;10816286;0.0006629817295881414;1;0;Young +7218;Greece;F;Clerical support workers;Education   ;Y50-64;1693;1;6.451561470698715e-06;10816286;0.0001565232280285488;0;1;Old +7219;Greece;F;Clerical support workers;Education   ;Y65-84;31;1;1.1813254907953938e-07;10816286;2.8660484754193816e-06;0;1;Old +7220;Greece;F;Clerical support workers;Human health and social work activities   ;Y15-29;2374;1;9.04666682305892e-06;10816286;0.00021948384131114876;1;0;Young +7221;Greece;F;Clerical support workers;Human health and social work activities   ;Y30-49;7180;1;2.7361022657777186e-05;10816286;0.0006638138081777793;1;0;Young +7222;Greece;F;Clerical support workers;Human health and social work activities   ;Y50-64;1897;1;7.2289498581898774e-06;10816286;0.00017538367606034086;0;1;Old +7223;Greece;F;Clerical support workers;Human health and social work activities   ;Y65-84;42;1;1.6005055036582754e-07;10816286;3.88303341831013e-06;0;1;Old +7224;Greece;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;1051;1;4.005074486535351e-06;10816286;9.716828863437968e-05;1;0;Young +7225;Greece;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;3915;1;1.4918997730528924e-05;10816286;0.00036195418649247993;1;0;Young +7226;Greece;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;1189;1;4.530954866308785e-06;10816286;0.00010992682700882724;0;1;Old +7227;Greece;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;90;1;3.4296546506963047e-07;10816286;8.32078589637885e-06;0;1;Old +7228;Greece;F;Clerical support workers;Other service activities   ;Y15-29;850;1;3.2391182812131763e-06;10816286;7.858520013246691e-05;1;0;Young +7229;Greece;F;Clerical support workers;Other service activities   ;Y30-49;2588;1;9.862162484446707e-06;10816286;0.00023926882110920512;1;0;Young +7230;Greece;F;Clerical support workers;Other service activities   ;Y50-64;543;1;2.06922497258677e-06;10816286;5.020207490815239e-05;0;1;Old +7231;Greece;F;Clerical support workers;Other service activities   ;Y65-84;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;0;1;Old +7232;Greece;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +7233;Greece;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;1;0;Young +7234;Greece;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7235;Greece;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;1;0;Young +7236;Greece;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;85;1;3.239118281213176e-07;10816286;7.858520013246691e-06;1;0;Young +7237;Greece;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;33;1;1.257540038588645e-07;10816286;3.050954828672245e-06;0;1;Old +7238;Greece;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;35;1;1.3337545863818962e-07;10816286;3.235861181925108e-06;1;0;Young +7239;Greece;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;183;1;6.973631123082485e-07;10816286;1.6918931322636994e-05;1;0;Young +7240;Greece;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;35;1;1.3337545863818962e-07;10816286;3.235861181925108e-06;0;1;Old +7241;Greece;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7242;Greece;F;Service and sales workers;Mining and quarrying   ;Y30-49;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;1;0;Young +7243;Greece;F;Service and sales workers;Mining and quarrying   ;Y50-64;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7244;Greece;F;Service and sales workers;Manufacturing   ;Y15-29;4151;1;1.5818329394489288e-05;10816286;0.00038377313617631785;1;0;Young +7245;Greece;F;Service and sales workers;Manufacturing   ;Y30-49;9388;1;3.5775108734152117e-05;10816286;0.0008679504221689405;1;0;Young +7246;Greece;F;Service and sales workers;Manufacturing   ;Y50-64;1787;1;6.809769845326996e-06;10816286;0.00016521382663143338;0;1;Old +7247;Greece;F;Service and sales workers;Manufacturing   ;Y65-84;47;1;1.7910418731414036e-07;10816286;4.345299301442288e-06;0;1;Old +7248;Greece;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;47;1;1.7910418731414036e-07;10816286;4.345299301442288e-06;1;0;Young +7249;Greece;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;311;1;1.1851362181850563e-06;10816286;2.8752937930820245e-05;1;0;Young +7250;Greece;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;57;1;2.1721146121076594e-07;10816286;5.269831067706604e-06;0;1;Old +7251;Greece;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;22;1;8.383600257257633e-08;10816286;2.0339698857814966e-06;1;0;Young +7252;Greece;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;85;1;3.239118281213176e-07;10816286;7.858520013246691e-06;1;0;Young +7253;Greece;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;21;1;8.002527518291377e-08;10816286;1.941516709155065e-06;0;1;Old +7254;Greece;F;Service and sales workers;Construction   ;Y15-29;124;1;4.725301963181575e-07;10816286;1.1464193901677526e-05;1;0;Young +7255;Greece;F;Service and sales workers;Construction   ;Y30-49;284;1;1.0822465786641672e-06;10816286;2.625670216190659e-05;1;0;Young +7256;Greece;F;Service and sales workers;Construction   ;Y50-64;54;1;2.0577927904177827e-07;10816286;4.992471537827309e-06;0;1;Old +7257;Greece;F;Service and sales workers;Construction   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7258;Greece;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;54222;1;0.00020662526052228335;10816286;0.005012996143038378;1;0;Young +7259;Greece;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;142252;1;0.0005420835926342785;10816286;0.013151649281463156;1;0;Young +7260;Greece;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;34554;1;0.0001316758742224001;10816286;0.0031946270651497196;0;1;Old +7261;Greece;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1521;1;5.796116359676755e-06;10816286;0.00014062128164880257;0;1;Old +7262;Greece;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7263;Greece;F;Service and sales workers;Transportation and storage   ;Y15-29;2152;1;8.20068534255383e-06;10816286;0.00019895923610008094;1;0;Young +7264;Greece;F;Service and sales workers;Transportation and storage   ;Y30-49;3813;1;1.4530303536783343e-05;10816286;0.00035252396247658393;1;0;Young +7265;Greece;F;Service and sales workers;Transportation and storage   ;Y50-64;537;1;2.046360608248795e-06;10816286;4.96473558483938e-05;0;1;Old +7266;Greece;F;Service and sales workers;Transportation and storage   ;Y65-84;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +7267;Greece;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;29914;1;0.00011399409913436583;10816286;0.002765644325603077;1;0;Young +7268;Greece;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;48572;1;0.0001850946507706899;10816286;0.004490635695099039;1;0;Young +7269;Greece;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;12146;1;4.628509487484146e-05;10816286;0.001122936283304639;0;1;Old +7270;Greece;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;388;1;1.4785622271890734e-06;10816286;3.5871832531055484e-05;0;1;Old +7271;Greece;F;Service and sales workers;Information and communication   ;Y15-29;1879;1;7.1603567651759515e-06;10816286;0.0001737195188810651;1;0;Young +7272;Greece;F;Service and sales workers;Information and communication   ;Y30-49;2468;1;9.404875197687199e-06;10816286;0.00022817443991403333;1;0;Young +7273;Greece;F;Service and sales workers;Information and communication   ;Y50-64;299;1;1.1394074895091056e-06;10816286;2.7643499811303066e-05;0;1;Old +7274;Greece;F;Service and sales workers;Information and communication   ;Y65-84;13;1;4.953945606561329e-08;10816286;1.2018912961436115e-06;0;1;Old +7275;Greece;F;Service and sales workers;Financial and insurance activities   ;Y15-29;298;1;1.135596762119443e-06;10816286;2.7551046634676634e-05;1;0;Young +7276;Greece;F;Service and sales workers;Financial and insurance activities   ;Y30-49;766;1;2.9190171804815213e-06;10816286;7.081913329584665e-05;1;0;Young +7277;Greece;F;Service and sales workers;Financial and insurance activities   ;Y50-64;148;1;5.63987653670059e-07;10816286;1.3683070140711885e-05;0;1;Old +7278;Greece;F;Service and sales workers;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7279;Greece;F;Service and sales workers;Real estate activities   ;Y15-29;25;1;9.526818474156401e-08;10816286;2.3113294156607915e-06;1;0;Young +7280;Greece;F;Service and sales workers;Real estate activities   ;Y30-49;90;1;3.4296546506963047e-07;10816286;8.32078589637885e-06;1;0;Young +7281;Greece;F;Service and sales workers;Real estate activities   ;Y50-64;31;1;1.1813254907953938e-07;10816286;2.8660484754193816e-06;0;1;Old +7282;Greece;F;Service and sales workers;Real estate activities   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7283;Greece;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;341;1;1.299458039874933e-06;10816286;3.15265332296132e-05;1;0;Young +7284;Greece;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;387;1;1.4747514997994108e-06;10816286;3.577937935442905e-05;1;0;Young +7285;Greece;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;114;1;4.344229224215319e-07;10816286;1.0539662135413209e-05;0;1;Old +7286;Greece;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7287;Greece;F;Service and sales workers;Administrative and support service activities   ;Y15-29;1603;1;6.108596005629085e-06;10816286;0.00014820244213216996;1;0;Young +7288;Greece;F;Service and sales workers;Administrative and support service activities   ;Y30-49;3900;1;1.4861836819683985e-05;10816286;0.0003605673888430835;1;0;Young +7289;Greece;F;Service and sales workers;Administrative and support service activities   ;Y50-64;1040;1;3.963156485249063e-06;10816286;9.615130369148893e-05;0;1;Old +7290;Greece;F;Service and sales workers;Administrative and support service activities   ;Y65-84;38;1;1.448076408071773e-07;10816286;3.513220711804403e-06;0;1;Old +7291;Greece;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;8187;1;3.119842513916738e-05;10816286;0.000756914157040596;1;0;Young +7292;Greece;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;14696;1;5.600244971848099e-05;10816286;0.0013586918837020397;1;0;Young +7293;Greece;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2380;1;9.069531187396893e-06;10816286;0.00022003856037090735;0;1;Old +7294;Greece;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;63;1;2.400758255487413e-07;10816286;5.824550127465195e-06;0;1;Old +7295;Greece;F;Service and sales workers;Education   ;Y15-29;994;1;3.7878630253245854e-06;10816286;9.189845756667308e-05;1;0;Young +7296;Greece;F;Service and sales workers;Education   ;Y30-49;3251;1;1.2388674743792985e-05;10816286;0.00030056527721252933;1;0;Young +7297;Greece;F;Service and sales workers;Education   ;Y50-64;1313;1;5.003485062626942e-06;10816286;0.00012139102091050478;0;1;Old +7298;Greece;F;Service and sales workers;Education   ;Y65-84;54;1;2.0577927904177827e-07;10816286;4.992471537827309e-06;0;1;Old +7299;Greece;F;Service and sales workers;Human health and social work activities   ;Y15-29;6710;1;2.556998078463578e-05;10816286;0.0006203608151633564;1;0;Young +7300;Greece;F;Service and sales workers;Human health and social work activities   ;Y30-49;23833;1;9.08210658778278e-05;10816286;0.0022034365585377456;1;0;Young +7301;Greece;F;Service and sales workers;Human health and social work activities   ;Y50-64;9445;1;3.599232019536288e-05;10816286;0.000873220253236647;0;1;Old +7302;Greece;F;Service and sales workers;Human health and social work activities   ;Y65-84;386;1;1.4709407724097484e-06;10816286;3.568692617780262e-05;0;1;Old +7303;Greece;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;1030;1;3.925049211352437e-06;10816286;9.522677192522461e-05;1;0;Young +7304;Greece;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2088;1;7.956798789615426e-06;10816286;0.0001930422327959893;1;0;Young +7305;Greece;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;396;1;1.509048046306374e-06;10816286;3.661145794406694e-05;0;1;Old +7306;Greece;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;0;1;Old +7307;Greece;F;Service and sales workers;Other service activities   ;Y15-29;16302;1;6.212247790627906e-05;10816286;0.001507171685364089;1;0;Young +7308;Greece;F;Service and sales workers;Other service activities   ;Y30-49;20606;1;7.852384859138673e-05;10816286;0.0019050901575642508;1;0;Young +7309;Greece;F;Service and sales workers;Other service activities   ;Y50-64;4219;1;1.607745885698634e-05;10816286;0.0003900599521869152;0;1;Old +7310;Greece;F;Service and sales workers;Other service activities   ;Y65-84;192;1;7.316596588152116e-07;10816286;1.775100991227488e-05;0;1;Old +7311;Greece;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;697;1;2.6560769905948048e-06;10816286;6.443986410862287e-05;1;0;Young +7312;Greece;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1992;1;7.59096896020782e-06;10816286;0.00018416672783985188;1;0;Young +7313;Greece;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1262;1;4.809137965754151e-06;10816286;0.00011667590890255675;0;1;Old +7314;Greece;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;67;1;2.5531873510739155e-07;10816286;6.194362833970921e-06;0;1;Old +7315;Greece;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;1;0;Young +7316;Greece;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;1;0;Young +7317;Greece;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7318;Greece;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;5579;1;2.1260048106927424e-05;10816286;0.0005157962723988623;1;0;Young +7319;Greece;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;46949;1;0.00017890984021726755;10816286;0.00434058418943434;1;0;Young +7320;Greece;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;42799;1;0.00016309532155016793;10816286;0.003956903506434649;0;1;Old +7321;Greece;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;1884;1;7.1794104021242645e-06;10816286;0.00017418178476419726;0;1;Old +7322;Greece;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7323;Greece;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;32;1;1.2194327646920193e-07;10816286;2.9585016520458132e-06;1;0;Young +7324;Greece;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;180;1;6.859309301392609e-07;10816286;1.66415717927577e-05;1;0;Young +7325;Greece;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;93;1;3.543976472386181e-07;10816286;8.598145426258144e-06;0;1;Old +7326;Greece;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7327;Greece;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +7328;Greece;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7329;Greece;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;1;0;Young +7330;Greece;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;59;1;2.2483291599009106e-07;10816286;5.454737420959468e-06;1;0;Young +7331;Greece;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;302;1;1.1508396716780934e-06;10816286;2.792085934118236e-05;1;0;Young +7332;Greece;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;175;1;6.668772931909481e-07;10816286;1.617930590962554e-05;0;1;Old +7333;Greece;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7334;Greece;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;1;0;Young +7335;Greece;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;123;1;4.6871946892849497e-07;10816286;1.1371740725051095e-05;1;0;Young +7336;Greece;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;49;1;1.8672564209346548e-07;10816286;4.530205654695151e-06;0;1;Old +7337;Greece;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7338;Greece;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;1;0;Young +7339;Greece;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;16;1;6.097163823460096e-08;10816286;1.4792508260229066e-06;1;0;Young +7340;Greece;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7341;Greece;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;1;0;Young +7342;Greece;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;1;0;Young +7343;Greece;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7344;Greece;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;60;1;2.2864364337975364e-07;10816286;5.5471905975859e-06;1;0;Young +7345;Greece;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;261;1;9.945998487019282e-07;10816286;2.4130279099498664e-05;1;0;Young +7346;Greece;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;108;1;4.1155855808355654e-07;10816286;9.984943075654619e-06;0;1;Old +7347;Greece;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7348;Greece;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;24;1;9.145745735190145e-08;10816286;2.21887623903436e-06;1;0;Young +7349;Greece;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;348;1;1.326133131602571e-06;10816286;3.217370546599822e-05;1;0;Young +7350;Greece;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;109;1;4.153692854732191e-07;10816286;1.007739625228105e-05;0;1;Old +7351;Greece;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7352;Greece;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +7353;Greece;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;1;0;Young +7354;Greece;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7355;Greece;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;13;1;4.953945606561329e-08;10816286;1.2018912961436115e-06;1;0;Young +7356;Greece;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7357;Greece;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;1;0;Young +7358;Greece;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;1;0;Young +7359;Greece;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;45;1;1.7148273253481523e-07;10816286;4.160392948189425e-06;1;0;Young +7360;Greece;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;19;1;7.240382040358865e-08;10816286;1.7566103559022015e-06;0;1;Old +7361;Greece;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;16;1;6.097163823460096e-08;10816286;1.4792508260229066e-06;1;0;Young +7362;Greece;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;62;1;2.3626509815907876e-07;10816286;5.732096950838763e-06;1;0;Young +7363;Greece;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;32;1;1.2194327646920193e-07;10816286;2.9585016520458132e-06;0;1;Old +7364;Greece;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7365;Greece;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +7366;Greece;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;1;0;Young +7367;Greece;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;21;1;8.002527518291377e-08;10816286;1.941516709155065e-06;1;0;Young +7368;Greece;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7369;Greece;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;1;0;Young +7370;Greece;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;21;1;8.002527518291377e-08;10816286;1.941516709155065e-06;1;0;Young +7371;Greece;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;0;1;Old +7372;Greece;F;Craft and related trades workers;Manufacturing   ;Y15-29;3169;1;1.2076195097840655e-05;10816286;0.0002929841167291619;1;0;Young +7373;Greece;F;Craft and related trades workers;Manufacturing   ;Y30-49;18310;1;6.977441850472148e-05;10816286;0.0016928176640299637;1;0;Young +7374;Greece;F;Craft and related trades workers;Manufacturing   ;Y50-64;8711;1;3.3195246291350565e-05;10816286;0.0008053596215928462;0;1;Old +7375;Greece;F;Craft and related trades workers;Manufacturing   ;Y65-84;275;1;1.0479500321572042e-06;10816286;2.5424623572268707e-05;0;1;Old +7376;Greece;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;100;1;3.8107273896625605e-07;10816286;9.245317662643166e-06;1;0;Young +7377;Greece;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;425;1;1.6195591406065882e-06;10816286;3.9292600066233454e-05;1;0;Young +7378;Greece;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;112;1;4.268014676422068e-07;10816286;1.0354755782160345e-05;0;1;Old +7379;Greece;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7380;Greece;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;1;0;Young +7381;Greece;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;156;1;5.944734727873595e-07;10816286;1.4422695553723338e-05;1;0;Young +7382;Greece;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;60;1;2.2864364337975364e-07;10816286;5.5471905975859e-06;0;1;Old +7383;Greece;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7384;Greece;F;Craft and related trades workers;Construction   ;Y15-29;827;1;3.1514715512509374e-06;10816286;7.645877707005898e-05;1;0;Young +7385;Greece;F;Craft and related trades workers;Construction   ;Y30-49;4488;1;1.7102544524805573e-05;10816286;0.0004149298566994253;1;0;Young +7386;Greece;F;Craft and related trades workers;Construction   ;Y50-64;1609;1;6.13146036996706e-06;10816286;0.00014875716119192855;0;1;Old +7387;Greece;F;Craft and related trades workers;Construction   ;Y65-84;26;1;9.907891213122657e-08;10816286;2.403782592287223e-06;0;1;Old +7388;Greece;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1673;1;6.375346922905464e-06;10816286;0.00015467416449602018;1;0;Young +7389;Greece;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;6913;1;2.634355844473728e-05;10816286;0.0006391288100185221;1;0;Young +7390;Greece;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2548;1;9.709733388860205e-06;10816286;0.00023557069404414786;0;1;Old +7391;Greece;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;115;1;4.382336498111945e-07;10816286;1.063211531203964e-05;0;1;Old +7392;Greece;F;Craft and related trades workers;Transportation and storage   ;Y15-29;86;1;3.277225555109802e-07;10816286;7.950973189873123e-06;1;0;Young +7393;Greece;F;Craft and related trades workers;Transportation and storage   ;Y30-49;235;1;8.955209365707018e-07;10816286;2.1726496507211442e-05;1;0;Young +7394;Greece;F;Craft and related trades workers;Transportation and storage   ;Y50-64;55;1;2.0959000643144082e-07;10816286;5.084924714453741e-06;0;1;Old +7395;Greece;F;Craft and related trades workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7396;Greece;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;449;1;1.7110165979584897e-06;10816286;4.151147630526781e-05;1;0;Young +7397;Greece;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;1432;1;5.456961621996787e-06;10816286;0.00013239294892905014;1;0;Young +7398;Greece;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;424;1;1.6157484132169256e-06;10816286;3.920014688960702e-05;0;1;Old +7399;Greece;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;0;1;Old +7400;Greece;F;Craft and related trades workers;Information and communication   ;Y15-29;253;1;9.641140295846278e-07;10816286;2.339065368648721e-05;1;0;Young +7401;Greece;F;Craft and related trades workers;Information and communication   ;Y30-49;1384;1;5.2740467072929836e-06;10816286;0.00012795519645098142;1;0;Young +7402;Greece;F;Craft and related trades workers;Information and communication   ;Y50-64;250;1;9.526818474156401e-07;10816286;2.3113294156607916e-05;0;1;Old +7403;Greece;F;Craft and related trades workers;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7404;Greece;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;1;0;Young +7405;Greece;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;33;1;1.257540038588645e-07;10816286;3.050954828672245e-06;1;0;Young +7406;Greece;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +7407;Greece;F;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7408;Greece;F;Craft and related trades workers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +7409;Greece;F;Craft and related trades workers;Real estate activities   ;Y30-49;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;1;0;Young +7410;Greece;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;167;1;6.363914740736477e-07;10816286;1.5439680496614088e-05;1;0;Young +7411;Greece;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;611;1;2.3283544350838245e-06;10816286;5.648889091874974e-05;1;0;Young +7412;Greece;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;157;1;5.98284200177022e-07;10816286;1.451514873034977e-05;0;1;Old +7413;Greece;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7414;Greece;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;39;1;1.4861836819683987e-07;10816286;3.6056738884308346e-06;1;0;Young +7415;Greece;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;146;1;5.563661988907339e-07;10816286;1.3498163787459022e-05;1;0;Young +7416;Greece;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;49;1;1.8672564209346548e-07;10816286;4.530205654695151e-06;0;1;Old +7417;Greece;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7418;Greece;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;196;1;7.469025683738619e-07;10816286;1.8120822618780605e-05;1;0;Young +7419;Greece;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;724;1;2.7589666301156937e-06;10816286;6.693609987753652e-05;1;0;Young +7420;Greece;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;303;1;1.1546503990677558e-06;10816286;2.8013312517808792e-05;0;1;Old +7421;Greece;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7422;Greece;F;Craft and related trades workers;Education   ;Y15-29;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;1;0;Young +7423;Greece;F;Craft and related trades workers;Education   ;Y30-49;34;1;1.2956473124852705e-07;10816286;3.1434080052986765e-06;1;0;Young +7424;Greece;F;Craft and related trades workers;Education   ;Y50-64;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;0;1;Old +7425;Greece;F;Craft and related trades workers;Education   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7426;Greece;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;19;1;7.240382040358865e-08;10816286;1.7566103559022015e-06;1;0;Young +7427;Greece;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;179;1;6.821202027495983e-07;10816286;1.6549118616131268e-05;1;0;Young +7428;Greece;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;68;1;2.591294624970541e-07;10816286;6.286816010597353e-06;0;1;Old +7429;Greece;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;1;0;Young +7430;Greece;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;98;1;3.7345128418693096e-07;10816286;9.060411309390303e-06;1;0;Young +7431;Greece;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;55;1;2.0959000643144082e-07;10816286;5.084924714453741e-06;0;1;Old +7432;Greece;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7433;Greece;F;Craft and related trades workers;Other service activities   ;Y15-29;115;1;4.382336498111945e-07;10816286;1.063211531203964e-05;1;0;Young +7434;Greece;F;Craft and related trades workers;Other service activities   ;Y30-49;978;1;3.726891387089984e-06;10816286;9.041920674065017e-05;1;0;Young +7435;Greece;F;Craft and related trades workers;Other service activities   ;Y50-64;944;1;3.597326655841457e-06;10816286;8.72757987353515e-05;0;1;Old +7436;Greece;F;Craft and related trades workers;Other service activities   ;Y65-84;49;1;1.8672564209346548e-07;10816286;4.530205654695151e-06;0;1;Old +7437;Greece;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;1;0;Young +7438;Greece;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7439;Greece;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;1;0;Young +7440;Greece;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;50;1;1.9053636948312803e-07;10816286;4.622658831321583e-06;1;0;Young +7441;Greece;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;0;1;Old +7442;Greece;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;1;0;Young +7443;Greece;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;83;1;3.1629037334199253e-07;10816286;7.673613659993828e-06;1;0;Young +7444;Greece;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;36;1;1.3718618602785217e-07;10816286;3.3283143585515397e-06;0;1;Old +7445;Greece;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7446;Greece;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;1564;1;5.959977637432245e-06;10816286;0.00014459676824373911;1;0;Young +7447;Greece;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;11596;1;4.418919481052705e-05;10816286;0.0010720870361601016;1;0;Young +7448;Greece;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;5586;1;2.1286723198655064e-05;10816286;0.0005164434446352472;0;1;Old +7449;Greece;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;91;1;3.46776192459293e-07;10816286;8.413239073005281e-06;0;1;Old +7450;Greece;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;1;0;Young +7451;Greece;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;100;1;3.8107273896625605e-07;10816286;9.245317662643166e-06;1;0;Young +7452;Greece;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;37;1;1.4099691341751475e-07;10816286;3.4207675351779714e-06;0;1;Old +7453;Greece;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7454;Greece;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;1;0;Young +7455;Greece;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;116;1;4.4204437720085703e-07;10816286;1.0724568488666072e-05;1;0;Young +7456;Greece;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;24;1;9.145745735190145e-08;10816286;2.21887623903436e-06;0;1;Old +7457;Greece;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;73;1;2.7818309944536694e-07;10816286;6.749081893729511e-06;1;0;Young +7458;Greece;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;558;1;2.1263858834317088e-06;10816286;5.158887255754887e-05;1;0;Young +7459;Greece;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;202;1;7.697669327118372e-07;10816286;1.8675541678539195e-05;0;1;Old +7460;Greece;F;Plant and machine operators, and assemblers;Construction   ;Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7461;Greece;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;173;1;6.592558384116229e-07;10816286;1.5994399556372678e-05;1;0;Young +7462;Greece;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;848;1;3.231496826433851e-06;10816286;7.840029377921404e-05;1;0;Young +7463;Greece;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;322;1;1.2270542194713445e-06;10816286;2.9769922873710993e-05;0;1;Old +7464;Greece;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7465;Greece;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;685;1;2.610348261918854e-06;10816286;6.333042598910569e-05;1;0;Young +7466;Greece;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;4177;1;1.5917408306620516e-05;10816286;0.00038617691876860504;1;0;Young +7467;Greece;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;1378;1;5.251182342955009e-06;10816286;0.00012740047739122283;0;1;Old +7468;Greece;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;34;1;1.2956473124852705e-07;10816286;3.1434080052986765e-06;0;1;Old +7469;Greece;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;55;1;2.0959000643144082e-07;10816286;5.084924714453741e-06;1;0;Young +7470;Greece;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;362;1;1.3794833150578469e-06;10816286;3.346804993876826e-05;1;0;Young +7471;Greece;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;164;1;6.2495929190466e-07;10816286;1.5162320966734793e-05;0;1;Old +7472;Greece;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;0;1;Old +7473;Greece;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;1;0;Young +7474;Greece;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;91;1;3.46776192459293e-07;10816286;8.413239073005281e-06;1;0;Young +7475;Greece;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;0;1;Old +7476;Greece;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;1;0;Young +7477;Greece;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;27;1;1.0288963952088914e-07;10816286;2.4962357689136547e-06;1;0;Young +7478;Greece;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7479;Greece;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +7480;Greece;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;1;0;Young +7481;Greece;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7482;Greece;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;100;1;3.8107273896625605e-07;10816286;9.245317662643166e-06;1;0;Young +7483;Greece;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;268;1;1.0212749404295662e-06;10816286;2.4777451335883685e-05;1;0;Young +7484;Greece;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;78;1;2.9723673639367974e-07;10816286;7.211347776861669e-06;0;1;Old +7485;Greece;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7486;Greece;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;178;1;6.783094753599357e-07;10816286;1.6456665439504836e-05;1;0;Young +7487;Greece;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;852;1;3.2467397359925016e-06;10816286;7.877010648571977e-05;1;0;Young +7488;Greece;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;272;1;1.0365178499882164e-06;10816286;2.5147264042389412e-05;0;1;Old +7489;Greece;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7490;Greece;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;72;1;2.7437237205570434e-07;10816286;6.6566287171030795e-06;1;0;Young +7491;Greece;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;596;1;2.271193524238886e-06;10816286;5.510209326935327e-05;1;0;Young +7492;Greece;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;294;1;1.1203538525607928e-06;10816286;2.7181233928170908e-05;0;1;Old +7493;Greece;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7494;Greece;F;Plant and machine operators, and assemblers;Education   ;Y15-29;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;1;0;Young +7495;Greece;F;Plant and machine operators, and assemblers;Education   ;Y30-49;140;1;5.335018345527585e-07;10816286;1.2943444727700432e-05;1;0;Young +7496;Greece;F;Plant and machine operators, and assemblers;Education   ;Y50-64;55;1;2.0959000643144082e-07;10816286;5.084924714453741e-06;0;1;Old +7497;Greece;F;Plant and machine operators, and assemblers;Education   ;Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7498;Greece;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;59;1;2.2483291599009106e-07;10816286;5.454737420959468e-06;1;0;Young +7499;Greece;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;562;1;2.141628792990359e-06;10816286;5.195868526405459e-05;1;0;Young +7500;Greece;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;263;1;1.0022213034812534e-06;10816286;2.4315185452751527e-05;0;1;Old +7501;Greece;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;0;1;Old +7502;Greece;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;1;0;Young +7503;Greece;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;32;1;1.2194327646920193e-07;10816286;2.9585016520458132e-06;1;0;Young +7504;Greece;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;0;1;Old +7505;Greece;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;1;0;Young +7506;Greece;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;103;1;3.9250492113524375e-07;10816286;9.52267719252246e-06;1;0;Young +7507;Greece;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;65;1;2.4769728032806646e-07;10816286;6.009456480718058e-06;0;1;Old +7508;Greece;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;1;0;Young +7509;Greece;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7510;Greece;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2740;1;1.0441393047675416e-05;10816286;0.00025332170395642276;1;0;Young +7511;Greece;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;8491;1;3.23568862656248e-05;10816286;0.0007850199227350313;1;0;Young +7512;Greece;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;3842;1;1.4640814631083558e-05;10816286;0.00035520510459875044;0;1;Old +7513;Greece;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;143;1;5.449340167217462e-07;10816286;1.3220804257579727e-05;0;1;Old +7514;Greece;F;Elementary occupations;Mining and quarrying   ;Y15-29;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;1;0;Young +7515;Greece;F;Elementary occupations;Mining and quarrying   ;Y30-49;63;1;2.400758255487413e-07;10816286;5.824550127465195e-06;1;0;Young +7516;Greece;F;Elementary occupations;Mining and quarrying   ;Y50-64;33;1;1.257540038588645e-07;10816286;3.050954828672245e-06;0;1;Old +7517;Greece;F;Elementary occupations;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7518;Greece;F;Elementary occupations;Manufacturing   ;Y15-29;1928;1;7.347082407269416e-06;10816286;0.00017824972453576025;1;0;Young +7519;Greece;F;Elementary occupations;Manufacturing   ;Y30-49;12123;1;4.619744814487922e-05;10816286;0.001120809860242231;1;0;Young +7520;Greece;F;Elementary occupations;Manufacturing   ;Y50-64;4831;1;1.840962401945983e-05;10816286;0.00044664129628229135;0;1;Old +7521;Greece;F;Elementary occupations;Manufacturing   ;Y65-84;68;1;2.591294624970541e-07;10816286;6.286816010597353e-06;0;1;Old +7522;Greece;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;94;1;3.582083746282807e-07;10816286;8.690598602884576e-06;1;0;Young +7523;Greece;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;448;1;1.7072058705688271e-06;10816286;4.141902312864138e-05;1;0;Young +7524;Greece;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;194;1;7.392811135945367e-07;10816286;1.7935916265527742e-05;0;1;Old +7525;Greece;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;257;1;9.79356939143278e-07;10816286;2.3760466392992938e-05;1;0;Young +7526;Greece;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1318;1;5.0225386995752545e-06;10816286;0.00012185328679363693;1;0;Young +7527;Greece;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;392;1;1.4938051367477238e-06;10816286;3.624164523756121e-05;0;1;Old +7528;Greece;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7529;Greece;F;Elementary occupations;Construction   ;Y15-29;306;1;1.1660825812367436e-06;10816286;2.8290672047688087e-05;1;0;Young +7530;Greece;F;Elementary occupations;Construction   ;Y30-49;1056;1;4.024128123483664e-06;10816286;9.763055451751184e-05;1;0;Young +7531;Greece;F;Elementary occupations;Construction   ;Y50-64;416;1;1.5852625940996252e-06;10816286;3.846052147659557e-05;0;1;Old +7532;Greece;F;Elementary occupations;Construction   ;Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7533;Greece;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1340;1;5.106374702147831e-06;10816286;0.00012388725667941843;1;0;Young +7534;Greece;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5138;1;1.9579517328086236e-05;10816286;0.0004750244215066059;1;0;Young +7535;Greece;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1631;1;6.215296372539637e-06;10816286;0.00015079113107771005;0;1;Old +7536;Greece;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;27;1;1.0288963952088914e-07;10816286;2.4962357689136547e-06;0;1;Old +7537;Greece;F;Elementary occupations;Transportation and storage   ;Y15-29;455;1;1.7338809622964651e-06;10816286;4.20661953650264e-05;1;0;Young +7538;Greece;F;Elementary occupations;Transportation and storage   ;Y30-49;1720;1;6.554451110219604e-06;10816286;0.00015901946379746245;1;0;Young +7539;Greece;F;Elementary occupations;Transportation and storage   ;Y50-64;592;1;2.255950614680236e-06;10816286;5.473228056284754e-05;0;1;Old +7540;Greece;F;Elementary occupations;Transportation and storage   ;Y65-84;16;1;6.097163823460096e-08;10816286;1.4792508260229066e-06;0;1;Old +7541;Greece;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;5888;1;2.2437562870333156e-05;10816286;0.0005443643039764296;1;0;Young +7542;Greece;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;25061;1;9.550063911233343e-05;10816286;0.0023169690594350037;1;0;Young +7543;Greece;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;9362;1;3.567602982202089e-05;10816286;0.0008655466395766532;0;1;Old +7544;Greece;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;171;1;6.516343836322978e-07;10816286;1.5809493203119815e-05;0;1;Old +7545;Greece;F;Elementary occupations;Information and communication   ;Y15-29;107;1;4.07747830693894e-07;10816286;9.892489899028187e-06;1;0;Young +7546;Greece;F;Elementary occupations;Information and communication   ;Y30-49;405;1;1.543344592813337e-06;10816286;3.744353653370482e-05;1;0;Young +7547;Greece;F;Elementary occupations;Information and communication   ;Y50-64;260;1;9.907891213122658e-07;10816286;2.4037825922872232e-05;0;1;Old +7548;Greece;F;Elementary occupations;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7549;Greece;F;Elementary occupations;Financial and insurance activities   ;Y15-29;52;1;1.9815782426245315e-07;10816286;4.807565184574446e-06;1;0;Young +7550;Greece;F;Elementary occupations;Financial and insurance activities   ;Y30-49;577;1;2.1987897038352974e-06;10816286;5.334548291345107e-05;1;0;Young +7551;Greece;F;Elementary occupations;Financial and insurance activities   ;Y50-64;628;1;2.393136800708088e-06;10816286;5.806059492139908e-05;0;1;Old +7552;Greece;F;Elementary occupations;Financial and insurance activities   ;Y65-84;19;1;7.240382040358865e-08;10816286;1.7566103559022015e-06;0;1;Old +7553;Greece;F;Elementary occupations;Real estate activities   ;Y15-29;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;1;0;Young +7554;Greece;F;Elementary occupations;Real estate activities   ;Y30-49;16;1;6.097163823460096e-08;10816286;1.4792508260229066e-06;1;0;Young +7555;Greece;F;Elementary occupations;Real estate activities   ;Y50-64;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;0;1;Old +7556;Greece;F;Elementary occupations;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7557;Greece;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;307;1;1.1698933086264062e-06;10816286;2.838312522431452e-05;1;0;Young +7558;Greece;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;583;1;2.221654068173273e-06;10816286;5.390020197320966e-05;1;0;Young +7559;Greece;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;225;1;8.574136626740762e-07;10816286;2.0801964740947122e-05;0;1;Old +7560;Greece;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;0;1;Old +7561;Greece;F;Elementary occupations;Administrative and support service activities   ;Y15-29;3450;1;1.3147009494335834e-05;10816286;0.00031896345936118924;1;0;Young +7562;Greece;F;Elementary occupations;Administrative and support service activities   ;Y30-49;25176;1;9.593887276214462e-05;10816286;0.0023276011747470435;1;0;Young +7563;Greece;F;Elementary occupations;Administrative and support service activities   ;Y50-64;13734;1;5.233652996962561e-05;10816286;0.0012697519277874124;0;1;Old +7564;Greece;F;Elementary occupations;Administrative and support service activities   ;Y65-84;337;1;1.284215130316283e-06;10816286;3.115672052310747e-05;0;1;Old +7565;Greece;F;Elementary occupations;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7566;Greece;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;1173;1;4.469983228074183e-06;10816286;0.00010844757618280434;1;0;Young +7567;Greece;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;9419;1;3.589324128323166e-05;10816286;0.0008708164706443598;1;0;Young +7568;Greece;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;3805;1;1.4499817717666043e-05;10816286;0.0003517843370635725;0;1;Old +7569;Greece;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;103;1;3.9250492113524375e-07;10816286;9.52267719252246e-06;0;1;Old +7570;Greece;F;Elementary occupations;Education   ;Y15-29;173;1;6.592558384116229e-07;10816286;1.5994399556372678e-05;1;0;Young +7571;Greece;F;Elementary occupations;Education   ;Y30-49;3215;1;1.2251488557765133e-05;10816286;0.0002972369628539778;1;0;Young +7572;Greece;F;Elementary occupations;Education   ;Y50-64;2294;1;8.741808631885915e-06;10816286;0.00021208758718103423;0;1;Old +7573;Greece;F;Elementary occupations;Education   ;Y65-84;77;1;2.9342600900401714e-07;10816286;7.118894600235238e-06;0;1;Old +7574;Greece;F;Elementary occupations;Human health and social work activities   ;Y15-29;493;1;1.8786886031036423e-06;10816286;4.557941607683081e-05;1;0;Young +7575;Greece;F;Elementary occupations;Human health and social work activities   ;Y30-49;5207;1;1.9842457517972954e-05;10816286;0.00048140369069382964;1;0;Young +7576;Greece;F;Elementary occupations;Human health and social work activities   ;Y50-64;3293;1;1.2548725294158812e-05;10816286;0.00030444831063083943;0;1;Old +7577;Greece;F;Elementary occupations;Human health and social work activities   ;Y65-84;90;1;3.4296546506963047e-07;10816286;8.32078589637885e-06;0;1;Old +7578;Greece;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;111;1;4.2299074025254424e-07;10816286;1.0262302605533914e-05;1;0;Young +7579;Greece;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;605;1;2.3054900707458493e-06;10816286;5.593417185899115e-05;1;0;Young +7580;Greece;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;278;1;1.0593822143261918e-06;10816286;2.5701983102148002e-05;0;1;Old +7581;Greece;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7582;Greece;F;Elementary occupations;Other service activities   ;Y15-29;106;1;4.039371033042314e-07;10816286;9.800036722401756e-06;1;0;Young +7583;Greece;F;Elementary occupations;Other service activities   ;Y30-49;567;1;2.1606824299386718e-06;10816286;5.242095114718675e-05;1;0;Young +7584;Greece;F;Elementary occupations;Other service activities   ;Y50-64;315;1;1.2003791277437065e-06;10816286;2.9122750637325972e-05;0;1;Old +7585;Greece;F;Elementary occupations;Other service activities   ;Y65-84;13;1;4.953945606561329e-08;10816286;1.2018912961436115e-06;0;1;Old +7586;Greece;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4453;1;1.6969169066167383e-05;10816286;0.00041169399551750017;1;0;Young +7587;Greece;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;28249;1;0.00010764923803057767;10816286;0.002611709786520068;1;0;Young +7588;Greece;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;17785;1;6.777378662514863e-05;10816286;0.0016442797463010871;0;1;Old +7589;Greece;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1031;1;3.9288599387421e-06;10816286;9.531922510185105e-05;0;1;Old +7590;Greece;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;1;0;Young +7591;Greece;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +7592;Greece;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7593;Greece;M;Not applicable;Not applicable  ;Y15-29;568798;1;0.002167534117785285;10816286;0.052587181958761074;1;0;Young +7594;Greece;M;Not applicable;Not applicable  ;Y30-49;121574;1;0.0004632853716708361;10816286;0.011239902495181803;1;0;Young +7595;Greece;M;Not applicable;Not applicable  ;Y50-64;349452;1;0.0013316663077723612;10816286;0.032307947478459796;0;1;Old +7596;Greece;M;Not applicable;Not applicable  ;Y65-84;812414;1;0.0030958882815453194;10816286;0.07511025503578585;0;1;Old +7597;Greece;M;Not applicable;Not applicable  ;Y_GE85;85217;1;0.00032473875596487445;10816286;0.007878582352574626;0;1;Old +7598;Greece;M;Not applicable;Not applicable  ;Y_LT15;803007;1;0.003060040768990764;10816286;0.074240548003261;0;1;Old +7599;Greece;M;Managers;Agriculture, forestry and fishing   ;Y15-29;35;1;1.3337545863818962e-07;10816286;3.235861181925108e-06;1;0;Young +7600;Greece;M;Managers;Agriculture, forestry and fishing   ;Y30-49;323;1;1.2308649468610071e-06;10816286;2.9862376050337425e-05;1;0;Young +7601;Greece;M;Managers;Agriculture, forestry and fishing   ;Y50-64;210;1;8.002527518291377e-07;10816286;1.9415167091550648e-05;0;1;Old +7602;Greece;M;Managers;Agriculture, forestry and fishing   ;Y65-84;16;1;6.097163823460096e-08;10816286;1.4792508260229066e-06;0;1;Old +7603;Greece;M;Managers;Mining and quarrying   ;Y15-29;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;1;0;Young +7604;Greece;M;Managers;Mining and quarrying   ;Y30-49;133;1;5.068267428251205e-07;10816286;1.2296272491315411e-05;1;0;Young +7605;Greece;M;Managers;Mining and quarrying   ;Y50-64;102;1;3.886941937455812e-07;10816286;9.430224015896029e-06;0;1;Old +7606;Greece;M;Managers;Mining and quarrying   ;Y65-84;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +7607;Greece;M;Managers;Manufacturing   ;Y15-29;815;1;3.105742822574987e-06;10816286;7.53493389505418e-05;1;0;Young +7608;Greece;M;Managers;Manufacturing   ;Y30-49;10075;1;3.83930784508503e-05;10816286;0.000931465754511299;1;0;Young +7609;Greece;M;Managers;Manufacturing   ;Y50-64;5949;1;2.2670017241102573e-05;10816286;0.0005500039477506419;0;1;Old +7610;Greece;M;Managers;Manufacturing   ;Y65-84;598;1;2.278814979018211e-06;10816286;5.528699962260613e-05;0;1;Old +7611;Greece;M;Managers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7612;Greece;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;39;1;1.4861836819683987e-07;10816286;3.6056738884308346e-06;1;0;Young +7613;Greece;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;391;1;1.4899944093580612e-06;10816286;3.614919206093478e-05;1;0;Young +7614;Greece;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;243;1;9.260067556880022e-07;10816286;2.2466121920222895e-05;0;1;Old +7615;Greece;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +7616;Greece;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;51;1;1.943470968727906e-07;10816286;4.7151120079480145e-06;1;0;Young +7617;Greece;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;247;1;9.412496652466524e-07;10816286;2.283593462672862e-05;1;0;Young +7618;Greece;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;164;1;6.2495929190466e-07;10816286;1.5162320966734793e-05;0;1;Old +7619;Greece;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;0;1;Old +7620;Greece;M;Managers;Construction   ;Y15-29;1079;1;4.111774853445903e-06;10816286;9.975697757991976e-05;1;0;Young +7621;Greece;M;Managers;Construction   ;Y30-49;8947;1;3.409457795531093e-05;10816286;0.0008271785712766841;1;0;Young +7622;Greece;M;Managers;Construction   ;Y50-64;4433;1;1.689295451837413e-05;10816286;0.00040984493198497154;0;1;Old +7623;Greece;M;Managers;Construction   ;Y65-84;333;1;1.2689722207576327e-06;10816286;3.0786907816601744e-05;0;1;Old +7624;Greece;M;Managers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7625;Greece;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4466;1;1.7018708522232995e-05;10816286;0.00041289588681364377;1;0;Young +7626;Greece;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;34797;1;0.00013260188097808813;10816286;0.0032170931870699423;1;0;Young +7627;Greece;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;17343;1;6.608944511891778e-05;10816286;0.0016034154422322044;0;1;Old +7628;Greece;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1350;1;5.144481976044457e-06;10816286;0.00012481178844568275;0;1;Old +7629;Greece;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7630;Greece;M;Managers;Transportation and storage   ;Y15-29;175;1;6.668772931909481e-07;10816286;1.617930590962554e-05;1;0;Young +7631;Greece;M;Managers;Transportation and storage   ;Y30-49;2242;1;8.543650807623461e-06;10816286;0.00020728002199645978;1;0;Young +7632;Greece;M;Managers;Transportation and storage   ;Y50-64;1618;1;6.165756916474023e-06;10816286;0.00014958923978156642;0;1;Old +7633;Greece;M;Managers;Transportation and storage   ;Y65-84;158;1;6.020949275666846e-07;10816286;1.4607601906976202e-05;0;1;Old +7634;Greece;M;Managers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7635;Greece;M;Managers;Accommodation and food service activities   ;Y15-29;4120;1;1.570019684540975e-05;10816286;0.00038090708770089845;1;0;Young +7636;Greece;M;Managers;Accommodation and food service activities   ;Y30-49;24966;1;9.513862001031549e-05;10816286;0.002308186007655493;1;0;Young +7637;Greece;M;Managers;Accommodation and food service activities   ;Y50-64;11785;1;4.4909422287173274e-05;10816286;0.0010895606865424972;0;1;Old +7638;Greece;M;Managers;Accommodation and food service activities   ;Y65-84;851;1;3.242929008602839e-06;10816286;7.867765330909334e-05;0;1;Old +7639;Greece;M;Managers;Information and communication   ;Y15-29;237;1;9.031423913500269e-07;10816286;2.1911402860464305e-05;1;0;Young +7640;Greece;M;Managers;Information and communication   ;Y30-49;2707;1;1.0315639043816552e-05;10816286;0.00025027074912775053;1;0;Young +7641;Greece;M;Managers;Information and communication   ;Y50-64;939;1;3.5782730188931444e-06;10816286;8.681353285221934e-05;0;1;Old +7642;Greece;M;Managers;Information and communication   ;Y65-84;55;1;2.0959000643144082e-07;10816286;5.084924714453741e-06;0;1;Old +7643;Greece;M;Managers;Financial and insurance activities   ;Y15-29;66;1;2.51508007717729e-07;10816286;6.10190965734449e-06;1;0;Young +7644;Greece;M;Managers;Financial and insurance activities   ;Y30-49;2755;1;1.0498553958520355e-05;10816286;0.00025470850160581925;1;0;Young +7645;Greece;M;Managers;Financial and insurance activities   ;Y50-64;2118;1;8.071120611305304e-06;10816286;0.00019581582809478226;0;1;Old +7646;Greece;M;Managers;Financial and insurance activities   ;Y65-84;82;1;3.1247964595233e-07;10816286;7.5811604833673966e-06;0;1;Old +7647;Greece;M;Managers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7648;Greece;M;Managers;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;1;0;Young +7649;Greece;M;Managers;Real estate activities   ;Y30-49;105;1;4.0012637591456885e-07;10816286;9.707583545775324e-06;1;0;Young +7650;Greece;M;Managers;Real estate activities   ;Y50-64;39;1;1.4861836819683987e-07;10816286;3.6056738884308346e-06;0;1;Old +7651;Greece;M;Managers;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7652;Greece;M;Managers;Professional, scientific and technical activities   ;Y15-29;198;1;7.54524023153187e-07;10816286;1.830572897203347e-05;1;0;Young +7653;Greece;M;Managers;Professional, scientific and technical activities   ;Y30-49;1925;1;7.335650225100429e-06;10816286;0.00017797236500588094;1;0;Young +7654;Greece;M;Managers;Professional, scientific and technical activities   ;Y50-64;1095;1;4.172746491680504e-06;10816286;0.00010123622840594267;0;1;Old +7655;Greece;M;Managers;Professional, scientific and technical activities   ;Y65-84;109;1;4.153692854732191e-07;10816286;1.007739625228105e-05;0;1;Old +7656;Greece;M;Managers;Administrative and support service activities   ;Y15-29;241;1;9.18385300908677e-07;10816286;2.228121556697003e-05;1;0;Young +7657;Greece;M;Managers;Administrative and support service activities   ;Y30-49;1730;1;6.59255838411623e-06;10816286;0.00015994399556372676;1;0;Young +7658;Greece;M;Managers;Administrative and support service activities   ;Y50-64;794;1;3.0257175473920732e-06;10816286;7.340782224138674e-05;0;1;Old +7659;Greece;M;Managers;Administrative and support service activities   ;Y65-84;74;1;2.819938268350295e-07;10816286;6.841535070355943e-06;0;1;Old +7660;Greece;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;88;1;3.353440102903053e-07;10816286;8.135879543125986e-06;1;0;Young +7661;Greece;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;1595;1;6.078110186511784e-06;10816286;0.0001474628167191585;1;0;Young +7662;Greece;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2313;1;8.814212452289502e-06;10816286;0.00021384419753693644;0;1;Old +7663;Greece;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;109;1;4.153692854732191e-07;10816286;1.007739625228105e-05;0;1;Old +7664;Greece;M;Managers;Education   ;Y15-29;38;1;1.448076408071773e-07;10816286;3.513220711804403e-06;1;0;Young +7665;Greece;M;Managers;Education   ;Y30-49;887;1;3.3801151946306913e-06;10816286;8.200596766764488e-05;1;0;Young +7666;Greece;M;Managers;Education   ;Y50-64;1608;1;6.127649642577398e-06;10816286;0.0001486647080153021;0;1;Old +7667;Greece;M;Managers;Education   ;Y65-84;77;1;2.9342600900401714e-07;10816286;7.118894600235238e-06;0;1;Old +7668;Greece;M;Managers;Human health and social work activities   ;Y15-29;61;1;2.3245437076941619e-07;10816286;5.639643774212332e-06;1;0;Young +7669;Greece;M;Managers;Human health and social work activities   ;Y30-49;691;1;2.633212626256829e-06;10816286;6.388514504886428e-05;1;0;Young +7670;Greece;M;Managers;Human health and social work activities   ;Y50-64;757;1;2.8847206339745583e-06;10816286;6.998705470620877e-05;0;1;Old +7671;Greece;M;Managers;Human health and social work activities   ;Y65-84;80;1;3.0485819117300483e-07;10816286;7.3962541301145325e-06;0;1;Old +7672;Greece;M;Managers;Arts, entertainment and recreation   ;Y15-29;226;1;8.612243900637387e-07;10816286;2.0894417917573554e-05;1;0;Young +7673;Greece;M;Managers;Arts, entertainment and recreation   ;Y30-49;1324;1;5.04540306391323e-06;10816286;0.00012240800585339552;1;0;Young +7674;Greece;M;Managers;Arts, entertainment and recreation   ;Y50-64;561;1;2.1378180656006966e-06;10816286;5.186623208742816e-05;0;1;Old +7675;Greece;M;Managers;Arts, entertainment and recreation   ;Y65-84;41;1;1.56239822976165e-07;10816286;3.7905802416836983e-06;0;1;Old +7676;Greece;M;Managers;Other service activities   ;Y15-29;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;1;0;Young +7677;Greece;M;Managers;Other service activities   ;Y30-49;223;1;8.49792207894751e-07;10816286;2.061705838769426e-05;1;0;Young +7678;Greece;M;Managers;Other service activities   ;Y50-64;134;1;5.106374702147831e-07;10816286;1.2388725667941843e-05;0;1;Old +7679;Greece;M;Managers;Other service activities   ;Y65-84;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;0;1;Old +7680;Greece;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;1;0;Young +7681;Greece;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +7682;Greece;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7683;Greece;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;134;1;5.106374702147831e-07;10816286;1.2388725667941843e-05;1;0;Young +7684;Greece;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;691;1;2.633212626256829e-06;10816286;6.388514504886428e-05;1;0;Young +7685;Greece;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;284;1;1.0822465786641672e-06;10816286;2.625670216190659e-05;0;1;Old +7686;Greece;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;0;1;Old +7687;Greece;M;Professionals;Mining and quarrying   ;Y15-29;22;1;8.383600257257633e-08;10816286;2.0339698857814966e-06;1;0;Young +7688;Greece;M;Professionals;Mining and quarrying   ;Y30-49;147;1;5.601769262803964e-07;10816286;1.3590616964085454e-05;1;0;Young +7689;Greece;M;Professionals;Mining and quarrying   ;Y50-64;58;1;2.2102218860042852e-07;10816286;5.362284244333036e-06;0;1;Old +7690;Greece;M;Professionals;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7691;Greece;M;Professionals;Manufacturing   ;Y15-29;1621;1;6.177189098643011e-06;10816286;0.00014986659931144573;1;0;Young +7692;Greece;M;Professionals;Manufacturing   ;Y30-49;8756;1;3.336672902388538e-05;10816286;0.0008095200145410356;1;0;Young +7693;Greece;M;Professionals;Manufacturing   ;Y50-64;2637;1;1.0048888126540172e-05;10816286;0.0002437990267639003;0;1;Old +7694;Greece;M;Professionals;Manufacturing   ;Y65-84;120;1;4.572872867595073e-07;10816286;1.10943811951718e-05;0;1;Old +7695;Greece;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;231;1;8.802780270120515e-07;10816286;2.1356683800705712e-05;1;0;Young +7696;Greece;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1242;1;4.7329234179609e-06;10816286;0.00011482684537002812;1;0;Young +7697;Greece;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;654;1;2.4922157128393146e-06;10816286;6.046437751368631e-05;0;1;Old +7698;Greece;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;24;1;9.145745735190145e-08;10816286;2.21887623903436e-06;0;1;Old +7699;Greece;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;29;1;1.1051109430021426e-07;10816286;2.681142122166518e-06;1;0;Young +7700;Greece;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;292;1;1.1127323977814678e-06;10816286;2.6996327574918044e-05;1;0;Young +7701;Greece;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;144;1;5.487447441114087e-07;10816286;1.3313257434206159e-05;0;1;Old +7702;Greece;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7703;Greece;M;Professionals;Construction   ;Y15-29;682;1;2.598916079749866e-06;10816286;6.30530664592264e-05;1;0;Young +7704;Greece;M;Professionals;Construction   ;Y30-49;3410;1;1.2994580398749331e-05;10816286;0.000315265332296132;1;0;Young +7705;Greece;M;Professionals;Construction   ;Y50-64;1309;1;4.988242153068292e-06;10816286;0.00012102120820399905;0;1;Old +7706;Greece;M;Professionals;Construction   ;Y65-84;119;1;4.5347655936984473e-07;10816286;1.1001928018545368e-05;0;1;Old +7707;Greece;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1593;1;6.070488731732459e-06;10816286;0.00014727791036590565;1;0;Young +7708;Greece;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9079;1;3.459759397074639e-05;10816286;0.000839382390591373;1;0;Young +7709;Greece;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3778;1;1.4396928078145153e-05;10816286;0.0003492881012946588;0;1;Old +7710;Greece;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;235;1;8.955209365707018e-07;10816286;2.1726496507211442e-05;0;1;Old +7711;Greece;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7712;Greece;M;Professionals;Transportation and storage   ;Y15-29;410;1;1.5623982297616498e-06;10816286;3.790580241683698e-05;1;0;Young +7713;Greece;M;Professionals;Transportation and storage   ;Y30-49;1954;1;7.446161319400643e-06;10816286;0.00018065350712804748;1;0;Young +7714;Greece;M;Professionals;Transportation and storage   ;Y50-64;712;1;2.713237901439743e-06;10816286;6.582666175801934e-05;0;1;Old +7715;Greece;M;Professionals;Transportation and storage   ;Y65-84;54;1;2.0577927904177827e-07;10816286;4.992471537827309e-06;0;1;Old +7716;Greece;M;Professionals;Accommodation and food service activities   ;Y15-29;521;1;1.9853889700141942e-06;10816286;4.8168105022370897e-05;1;0;Young +7717;Greece;M;Professionals;Accommodation and food service activities   ;Y30-49;1342;1;5.113996156927156e-06;10816286;0.0001240721630326713;1;0;Young +7718;Greece;M;Professionals;Accommodation and food service activities   ;Y50-64;513;1;1.9549031508968934e-06;10816286;4.7428479609359444e-05;0;1;Old +7719;Greece;M;Professionals;Accommodation and food service activities   ;Y65-84;19;1;7.240382040358865e-08;10816286;1.7566103559022015e-06;0;1;Old +7720;Greece;M;Professionals;Information and communication   ;Y15-29;4374;1;1.666812160238404e-05;10816286;0.00040439019456401206;1;0;Young +7721;Greece;M;Professionals;Information and communication   ;Y30-49;17615;1;6.712596296890601e-05;10816286;0.0016285627062745938;1;0;Young +7722;Greece;M;Professionals;Information and communication   ;Y50-64;3430;1;1.3070794946542583e-05;10816286;0.0003171143958286606;0;1;Old +7723;Greece;M;Professionals;Information and communication   ;Y65-84;243;1;9.260067556880022e-07;10816286;2.2466121920222895e-05;0;1;Old +7724;Greece;M;Professionals;Information and communication   ;Y_GE85;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7725;Greece;M;Professionals;Financial and insurance activities   ;Y15-29;646;1;2.4617298937220143e-06;10816286;5.972475210067485e-05;1;0;Young +7726;Greece;M;Professionals;Financial and insurance activities   ;Y30-49;3373;1;1.2853583485331817e-05;10816286;0.000311844564760954;1;0;Young +7727;Greece;M;Professionals;Financial and insurance activities   ;Y50-64;929;1;3.540165744996519e-06;10816286;8.5889001085955e-05;0;1;Old +7728;Greece;M;Professionals;Financial and insurance activities   ;Y65-84;50;1;1.9053636948312803e-07;10816286;4.622658831321583e-06;0;1;Old +7729;Greece;M;Professionals;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7730;Greece;M;Professionals;Real estate activities   ;Y15-29;33;1;1.257540038588645e-07;10816286;3.050954828672245e-06;1;0;Young +7731;Greece;M;Professionals;Real estate activities   ;Y30-49;60;1;2.2864364337975364e-07;10816286;5.5471905975859e-06;1;0;Young +7732;Greece;M;Professionals;Real estate activities   ;Y50-64;25;1;9.526818474156401e-08;10816286;2.3113294156607915e-06;0;1;Old +7733;Greece;M;Professionals;Real estate activities   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7734;Greece;M;Professionals;Professional, scientific and technical activities   ;Y15-29;9087;1;3.462807978986369e-05;10816286;0.0008401220160043845;1;0;Young +7735;Greece;M;Professionals;Professional, scientific and technical activities   ;Y30-49;45335;1;0.0001727593262103522;10816286;0.004191364762359279;1;0;Young +7736;Greece;M;Professionals;Professional, scientific and technical activities   ;Y50-64;22464;1;8.560418008137976e-05;10816286;0.002076868159736161;0;1;Old +7737;Greece;M;Professionals;Professional, scientific and technical activities   ;Y65-84;2988;1;1.138645344031173e-05;10816286;0.0002762500917597778;0;1;Old +7738;Greece;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;13;1;4.953945606561329e-08;10816286;1.2018912961436115e-06;0;1;Old +7739;Greece;M;Professionals;Administrative and support service activities   ;Y15-29;161;1;6.135271097356723e-07;10816286;1.4884961436855497e-05;1;0;Young +7740;Greece;M;Professionals;Administrative and support service activities   ;Y30-49;754;1;2.8732884518055705e-06;10816286;6.970969517632947e-05;1;0;Young +7741;Greece;M;Professionals;Administrative and support service activities   ;Y50-64;249;1;9.488711200259775e-07;10816286;2.3020840979981485e-05;0;1;Old +7742;Greece;M;Professionals;Administrative and support service activities   ;Y65-84;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;0;1;Old +7743;Greece;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;1022;1;3.8945633922351365e-06;10816286;9.448714651221316e-05;1;0;Young +7744;Greece;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;9552;1;3.6400068026056776e-05;10816286;0.0008831127431356752;1;0;Young +7745;Greece;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;5754;1;2.1926925400118374e-05;10816286;0.0005319755783084878;0;1;Old +7746;Greece;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;348;1;1.326133131602571e-06;10816286;3.217370546599822e-05;0;1;Old +7747;Greece;M;Professionals;Education   ;Y15-29;5851;1;2.229656595691564e-05;10816286;0.0005409435364412517;1;0;Young +7748;Greece;M;Professionals;Education   ;Y30-49;51743;1;0.00019717846732330988;10816286;0.0047838047181814536;1;0;Young +7749;Greece;M;Professionals;Education   ;Y50-64;27645;1;0.00010534755868722149;10816286;0.002555868067837703;0;1;Old +7750;Greece;M;Professionals;Education   ;Y65-84;1096;1;4.176557219070166e-06;10816286;0.0001013286815825691;0;1;Old +7751;Greece;M;Professionals;Education   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7752;Greece;M;Professionals;Human health and social work activities   ;Y15-29;3167;1;1.206857364306133e-05;10816286;0.0002927992103759091;1;0;Young +7753;Greece;M;Professionals;Human health and social work activities   ;Y30-49;28193;1;0.00010743583729675656;10816286;0.002606532408628988;1;0;Young +7754;Greece;M;Professionals;Human health and social work activities   ;Y50-64;14930;1;5.689415992766203e-05;10816286;0.0013803259270326247;0;1;Old +7755;Greece;M;Professionals;Human health and social work activities   ;Y65-84;2199;1;8.379789529867971e-06;10816286;0.0002033045354015232;0;1;Old +7756;Greece;M;Professionals;Human health and social work activities   ;Y_GE85;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7757;Greece;M;Professionals;Arts, entertainment and recreation   ;Y15-29;1610;1;6.135271097356723e-06;10816286;0.00014884961436855497;1;0;Young +7758;Greece;M;Professionals;Arts, entertainment and recreation   ;Y30-49;6427;1;2.4491544933361276e-05;10816286;0.0005941965661780763;1;0;Young +7759;Greece;M;Professionals;Arts, entertainment and recreation   ;Y50-64;2879;1;1.0971084154838512e-05;10816286;0.00026617269550749677;0;1;Old +7760;Greece;M;Professionals;Arts, entertainment and recreation   ;Y65-84;282;1;1.074625123884842e-06;10816286;2.6071795808653728e-05;0;1;Old +7761;Greece;M;Professionals;Other service activities   ;Y15-29;686;1;2.6141589893085166e-06;10816286;6.342287916573212e-05;1;0;Young +7762;Greece;M;Professionals;Other service activities   ;Y30-49;5232;1;1.9937725702714517e-05;10816286;0.0004837150201094905;1;0;Young +7763;Greece;M;Professionals;Other service activities   ;Y50-64;3104;1;1.1828497817512587e-05;10816286;0.00028697466024844387;0;1;Old +7764;Greece;M;Professionals;Other service activities   ;Y65-84;1577;1;6.009517093497858e-06;10816286;0.00014579865953988274;0;1;Old +7765;Greece;M;Professionals;Other service activities   ;Y_GE85;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +7766;Greece;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;1;0;Young +7767;Greece;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;42;1;1.6005055036582754e-07;10816286;3.88303341831013e-06;1;0;Young +7768;Greece;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;0;1;Old +7769;Greece;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;125;1;4.7634092370782007e-07;10816286;1.1556647078303958e-05;1;0;Young +7770;Greece;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;503;1;1.916795877000268e-06;10816286;4.650394784309513e-05;1;0;Young +7771;Greece;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;203;1;7.735776601014998e-07;10816286;1.8767994855165626e-05;0;1;Old +7772;Greece;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +7773;Greece;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;52;1;1.9815782426245315e-07;10816286;4.807565184574446e-06;1;0;Young +7774;Greece;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;263;1;1.0022213034812534e-06;10816286;2.4315185452751527e-05;1;0;Young +7775;Greece;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;108;1;4.1155855808355654e-07;10816286;9.984943075654619e-06;0;1;Old +7776;Greece;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7777;Greece;M;Technicians and associate professionals;Manufacturing   ;Y15-29;2664;1;1.0151777766061062e-05;10816286;0.00024629526253281396;1;0;Young +7778;Greece;M;Technicians and associate professionals;Manufacturing   ;Y30-49;10509;1;4.004693413796385e-05;10816286;0.0009715904331671704;1;0;Young +7779;Greece;M;Technicians and associate professionals;Manufacturing   ;Y50-64;3986;1;1.5189559375194966e-05;10816286;0.0003685183620329566;0;1;Old +7780;Greece;M;Technicians and associate professionals;Manufacturing   ;Y65-84;126;1;4.801516510974826e-07;10816286;1.164910025493039e-05;0;1;Old +7781;Greece;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;468;1;1.7834204183620783e-06;10816286;4.326808666117002e-05;1;0;Young +7782;Greece;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2569;1;9.789758664043118e-06;10816286;0.00023751221075330294;1;0;Young +7783;Greece;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1339;1;5.102563974758168e-06;10816286;0.00012379480350279199;0;1;Old +7784;Greece;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +7785;Greece;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;73;1;2.7818309944536694e-07;10816286;6.749081893729511e-06;1;0;Young +7786;Greece;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;674;1;2.568430260632566e-06;10816286;6.231344104621494e-05;1;0;Young +7787;Greece;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;374;1;1.4252120437337977e-06;10816286;3.457748805828544e-05;0;1;Old +7788;Greece;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +7789;Greece;M;Technicians and associate professionals;Construction   ;Y15-29;989;1;3.7688093883762724e-06;10816286;9.143619168354092e-05;1;0;Young +7790;Greece;M;Technicians and associate professionals;Construction   ;Y30-49;3716;1;1.4160662979986075e-05;10816286;0.00034355600434382;1;0;Young +7791;Greece;M;Technicians and associate professionals;Construction   ;Y50-64;1413;1;5.384557801593198e-06;10816286;0.00013063633857314793;0;1;Old +7792;Greece;M;Technicians and associate professionals;Construction   ;Y65-84;60;1;2.2864364337975364e-07;10816286;5.5471905975859e-06;0;1;Old +7793;Greece;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2220;1;8.459814805050884e-06;10816286;0.0002052460521106783;1;0;Young +7794;Greece;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8633;1;3.2898009554956885e-05;10816286;0.0007981482738159846;1;0;Young +7795;Greece;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2642;1;1.0067941763488485e-05;10816286;0.00024426129264703243;0;1;Old +7796;Greece;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;149;1;5.677983810597215e-07;10816286;1.3775523317338317e-05;0;1;Old +7797;Greece;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7798;Greece;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;3551;1;1.3531892960691753e-05;10816286;0.0003283012302004588;1;0;Young +7799;Greece;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;11786;1;4.491323301456294e-05;10816286;0.0010896531397191235;1;0;Young +7800;Greece;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;5859;1;2.2327051776032942e-05;10816286;0.0005416831618542631;0;1;Old +7801;Greece;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;259;1;9.869783939226032e-07;10816286;2.39453727462458e-05;0;1;Old +7802;Greece;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;861;1;3.2810362824994645e-06;10816286;7.960218507535766e-05;1;0;Young +7803;Greece;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;1741;1;6.634476385402518e-06;10816286;0.00016096098050661753;1;0;Young +7804;Greece;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;448;1;1.7072058705688271e-06;10816286;4.141902312864138e-05;0;1;Old +7805;Greece;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +7806;Greece;M;Technicians and associate professionals;Information and communication   ;Y15-29;2432;1;9.267689011659347e-06;10816286;0.0002248461255554818;1;0;Young +7807;Greece;M;Technicians and associate professionals;Information and communication   ;Y30-49;7766;1;2.9594108908119446e-05;10816286;0.0007179913696808682;1;0;Young +7808;Greece;M;Technicians and associate professionals;Information and communication   ;Y50-64;2230;1;8.49792207894751e-06;10816286;0.0002061705838769426;0;1;Old +7809;Greece;M;Technicians and associate professionals;Information and communication   ;Y65-84;31;1;1.1813254907953938e-07;10816286;2.8660484754193816e-06;0;1;Old +7810;Greece;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;3670;1;1.3985369520061597e-05;10816286;0.0003393031582190042;1;0;Young +7811;Greece;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;19534;1;7.443874882966846e-05;10816286;0.0018059803522207161;1;0;Young +7812;Greece;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;6789;1;2.5871028248419124e-05;10816286;0.0006276646161168445;0;1;Old +7813;Greece;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;195;1;7.430918409841993e-07;10816286;1.8028369442154173e-05;0;1;Old +7814;Greece;M;Technicians and associate professionals;Real estate activities   ;Y15-29;388;1;1.4785622271890734e-06;10816286;3.5871832531055484e-05;1;0;Young +7815;Greece;M;Technicians and associate professionals;Real estate activities   ;Y30-49;2283;1;8.699890630599626e-06;10816286;0.0002110706022381435;1;0;Young +7816;Greece;M;Technicians and associate professionals;Real estate activities   ;Y50-64;844;1;3.216253916875201e-06;10816286;7.803048107270832e-05;0;1;Old +7817;Greece;M;Technicians and associate professionals;Real estate activities   ;Y65-84;52;1;1.9815782426245315e-07;10816286;4.807565184574446e-06;0;1;Old +7818;Greece;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;3413;1;1.300601258091832e-05;10816286;0.0003155426918260113;1;0;Young +7819;Greece;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;11294;1;4.3038355138848956e-05;10816286;0.0010441661768189191;1;0;Young +7820;Greece;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;4208;1;1.6035540855700055e-05;10816286;0.00038904296724402444;0;1;Old +7821;Greece;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;209;1;7.964420244394752e-07;10816286;1.9322713914924216e-05;0;1;Old +7822;Greece;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;482;1;1.836770601817354e-06;10816286;4.456243113394006e-05;1;0;Young +7823;Greece;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;2004;1;7.63669768888377e-06;10816286;0.00018527616595936906;1;0;Young +7824;Greece;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;851;1;3.242929008602839e-06;10816286;7.867765330909334e-05;0;1;Old +7825;Greece;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;56;1;2.134007338211034e-07;10816286;5.177377891080173e-06;0;1;Old +7826;Greece;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;1561;1;5.948545455263257e-06;10816286;0.00014431940871385983;1;0;Young +7827;Greece;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;14107;1;5.375793128596974e-05;10816286;0.0013042369626690715;1;0;Young +7828;Greece;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;9419;1;3.589324128323166e-05;10816286;0.0008708164706443598;0;1;Old +7829;Greece;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;207;1;7.8882056966015e-07;10816286;1.9137807561671353e-05;0;1;Old +7830;Greece;M;Technicians and associate professionals;Education   ;Y15-29;534;1;2.0349284260798072e-06;10816286;4.936999631851451e-05;1;0;Young +7831;Greece;M;Technicians and associate professionals;Education   ;Y30-49;4063;1;1.5482985384198983e-05;10816286;0.0003756372566331918;1;0;Young +7832;Greece;M;Technicians and associate professionals;Education   ;Y50-64;1002;1;3.818348844441885e-06;10816286;9.263808297968453e-05;0;1;Old +7833;Greece;M;Technicians and associate professionals;Education   ;Y65-84;21;1;8.002527518291377e-08;10816286;1.941516709155065e-06;0;1;Old +7834;Greece;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;1369;1;5.216885796448045e-06;10816286;0.00012656839880158493;1;0;Young +7835;Greece;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;7460;1;2.84280263268827e-05;10816286;0.0006897006976331802;1;0;Young +7836;Greece;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2363;1;9.00474882177263e-06;10816286;0.00021846685636825802;0;1;Old +7837;Greece;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;42;1;1.6005055036582754e-07;10816286;3.88303341831013e-06;0;1;Old +7838;Greece;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2473;1;9.423928834635512e-06;10816286;0.0002286367057971655;1;0;Young +7839;Greece;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;3747;1;1.4278795529065614e-05;10816286;0.0003464220528192394;1;0;Young +7840;Greece;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;656;1;2.49983716761864e-06;10816286;6.064928386693917e-05;0;1;Old +7841;Greece;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;43;1;1.638612777554901e-07;10816286;3.9754865949365615e-06;0;1;Old +7842;Greece;M;Technicians and associate professionals;Other service activities   ;Y15-29;394;1;1.5014265915270488e-06;10816286;3.6426551590814073e-05;1;0;Young +7843;Greece;M;Technicians and associate professionals;Other service activities   ;Y30-49;1220;1;4.649087415388324e-06;10816286;0.00011279287548424662;1;0;Young +7844;Greece;M;Technicians and associate professionals;Other service activities   ;Y50-64;310;1;1.1813254907953937e-06;10816286;2.8660484754193814e-05;0;1;Old +7845;Greece;M;Technicians and associate professionals;Other service activities   ;Y65-84;30;1;1.1432182168987682e-07;10816286;2.77359529879295e-06;0;1;Old +7846;Greece;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;1;0;Young +7847;Greece;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;1;0;Young +7848;Greece;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7849;Greece;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;1;0;Young +7850;Greece;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;1;0;Young +7851;Greece;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +7852;Greece;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;115;1;4.382336498111945e-07;10816286;1.063211531203964e-05;1;0;Young +7853;Greece;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;301;1;1.1470289442884308e-06;10816286;2.782840616455593e-05;1;0;Young +7854;Greece;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;91;1;3.46776192459293e-07;10816286;8.413239073005281e-06;0;1;Old +7855;Greece;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7856;Greece;M;Clerical support workers;Mining and quarrying   ;Y15-29;33;1;1.257540038588645e-07;10816286;3.050954828672245e-06;1;0;Young +7857;Greece;M;Clerical support workers;Mining and quarrying   ;Y30-49;132;1;5.03016015435458e-07;10816286;1.220381931468898e-05;1;0;Young +7858;Greece;M;Clerical support workers;Mining and quarrying   ;Y50-64;34;1;1.2956473124852705e-07;10816286;3.1434080052986765e-06;0;1;Old +7859;Greece;M;Clerical support workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7860;Greece;M;Clerical support workers;Manufacturing   ;Y15-29;2099;1;7.998716790901714e-06;10816286;0.00019405921773888005;1;0;Young +7861;Greece;M;Clerical support workers;Manufacturing   ;Y30-49;7847;1;2.990277782668211e-05;10816286;0.0007254800769876092;1;0;Young +7862;Greece;M;Clerical support workers;Manufacturing   ;Y50-64;2114;1;8.055877701746653e-06;10816286;0.00019544601538827653;0;1;Old +7863;Greece;M;Clerical support workers;Manufacturing   ;Y65-84;31;1;1.1813254907953938e-07;10816286;2.8660484754193816e-06;0;1;Old +7864;Greece;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;251;1;9.564925748053026e-07;10816286;2.3205747333234348e-05;1;0;Young +7865;Greece;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1543;1;5.879952362249331e-06;10816286;0.00014265525153458406;1;0;Young +7866;Greece;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;836;1;3.1857680977579008e-06;10816286;7.729085565969686e-05;0;1;Old +7867;Greece;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7868;Greece;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;120;1;4.572872867595073e-07;10816286;1.10943811951718e-05;1;0;Young +7869;Greece;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;608;1;2.3169222529148367e-06;10816286;5.621153138887045e-05;1;0;Young +7870;Greece;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;241;1;9.18385300908677e-07;10816286;2.228121556697003e-05;0;1;Old +7871;Greece;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7872;Greece;M;Clerical support workers;Construction   ;Y15-29;452;1;1.7224487801274773e-06;10816286;4.178883583514711e-05;1;0;Young +7873;Greece;M;Clerical support workers;Construction   ;Y30-49;1538;1;5.860898725301018e-06;10816286;0.0001421929856514519;1;0;Young +7874;Greece;M;Clerical support workers;Construction   ;Y50-64;379;1;1.4442656806821104e-06;10816286;3.50397539414176e-05;0;1;Old +7875;Greece;M;Clerical support workers;Construction   ;Y65-84;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +7876;Greece;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5723;1;2.1808792851038836e-05;10816286;0.0005291095298330684;1;0;Young +7877;Greece;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;14556;1;5.5468947883928234e-05;10816286;0.0013457484389743392;1;0;Young +7878;Greece;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2776;1;1.0578579233703268e-05;10816286;0.0002566500183149743;0;1;Old +7879;Greece;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;82;1;3.1247964595233e-07;10816286;7.5811604833673966e-06;0;1;Old +7880;Greece;M;Clerical support workers;Transportation and storage   ;Y15-29;2613;1;9.95743066918827e-06;10816286;0.00024158015052486593;1;0;Young +7881;Greece;M;Clerical support workers;Transportation and storage   ;Y30-49;10082;1;3.841975354257794e-05;10816286;0.000932112926747684;1;0;Young +7882;Greece;M;Clerical support workers;Transportation and storage   ;Y50-64;4222;1;1.608889103915533e-05;10816286;0.00039033731171679445;0;1;Old +7883;Greece;M;Clerical support workers;Transportation and storage   ;Y65-84;42;1;1.6005055036582754e-07;10816286;3.88303341831013e-06;0;1;Old +7884;Greece;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;2259;1;8.608433173247724e-06;10816286;0.00020885172599910913;1;0;Young +7885;Greece;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;6222;1;2.371034581848045e-05;10816286;0.0005752436649696578;1;0;Young +7886;Greece;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;2160;1;8.231171161671131e-06;10816286;0.0001996988615130924;0;1;Old +7887;Greece;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;115;1;4.382336498111945e-07;10816286;1.063211531203964e-05;0;1;Old +7888;Greece;M;Clerical support workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7889;Greece;M;Clerical support workers;Information and communication   ;Y15-29;1571;1;5.986652729159882e-06;10816286;0.00014524394048012415;1;0;Young +7890;Greece;M;Clerical support workers;Information and communication   ;Y30-49;3331;1;1.269353293496599e-05;10816286;0.00030796153134264386;1;0;Young +7891;Greece;M;Clerical support workers;Information and communication   ;Y50-64;810;1;3.086689185626674e-06;10816286;7.488707306740964e-05;0;1;Old +7892;Greece;M;Clerical support workers;Information and communication   ;Y65-84;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;0;1;Old +7893;Greece;M;Clerical support workers;Financial and insurance activities   ;Y15-29;1626;1;6.196242735591324e-06;10816286;0.00015032886519457788;1;0;Young +7894;Greece;M;Clerical support workers;Financial and insurance activities   ;Y30-49;5974;1;2.2765285425844136e-05;10816286;0.0005523152771663028;1;0;Young +7895;Greece;M;Clerical support workers;Financial and insurance activities   ;Y50-64;2101;1;8.00633824568104e-06;10816286;0.0001942441240921329;0;1;Old +7896;Greece;M;Clerical support workers;Financial and insurance activities   ;Y65-84;37;1;1.4099691341751475e-07;10816286;3.4207675351779714e-06;0;1;Old +7897;Greece;M;Clerical support workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7898;Greece;M;Clerical support workers;Real estate activities   ;Y15-29;49;1;1.8672564209346548e-07;10816286;4.530205654695151e-06;1;0;Young +7899;Greece;M;Clerical support workers;Real estate activities   ;Y30-49;157;1;5.98284200177022e-07;10816286;1.451514873034977e-05;1;0;Young +7900;Greece;M;Clerical support workers;Real estate activities   ;Y50-64;44;1;1.6767200514515266e-07;10816286;4.067939771562993e-06;0;1;Old +7901;Greece;M;Clerical support workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7902;Greece;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;1138;1;4.336607769435994e-06;10816286;0.00010521171500087923;1;0;Young +7903;Greece;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;3125;1;1.1908523092695502e-05;10816286;0.0002889161769575989;1;0;Young +7904;Greece;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;964;1;3.673541203634708e-06;10816286;8.912486226788013e-05;0;1;Old +7905;Greece;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;35;1;1.3337545863818962e-07;10816286;3.235861181925108e-06;0;1;Old +7906;Greece;M;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7907;Greece;M;Clerical support workers;Administrative and support service activities   ;Y15-29;1373;1;5.232128706006696e-06;10816286;0.00012693821150809066;1;0;Young +7908;Greece;M;Clerical support workers;Administrative and support service activities   ;Y30-49;3245;1;1.2365810379455009e-05;10816286;0.0003000105581527707;1;0;Young +7909;Greece;M;Clerical support workers;Administrative and support service activities   ;Y50-64;924;1;3.521112108048206e-06;10816286;8.542673520282285e-05;0;1;Old +7910;Greece;M;Clerical support workers;Administrative and support service activities   ;Y65-84;38;1;1.448076408071773e-07;10816286;3.513220711804403e-06;0;1;Old +7911;Greece;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;1867;1;7.1146280365e-06;10816286;0.0001726100807615479;1;0;Young +7912;Greece;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;14470;1;5.5141225328417254e-05;10816286;0.001337797465784466;1;0;Young +7913;Greece;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;8286;1;3.1575687150743975e-05;10816286;0.0007660670215266128;0;1;Old +7914;Greece;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;187;1;7.126060218668988e-07;10816286;1.728874402914272e-05;0;1;Old +7915;Greece;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7916;Greece;M;Clerical support workers;Education   ;Y15-29;461;1;1.7567453266344403e-06;10816286;4.262091442478499e-05;1;0;Young +7917;Greece;M;Clerical support workers;Education   ;Y30-49;1783;1;6.794526935768345e-06;10816286;0.00016484401392492765;1;0;Young +7918;Greece;M;Clerical support workers;Education   ;Y50-64;735;1;2.800884631401982e-06;10816286;6.795308482042727e-05;0;1;Old +7919;Greece;M;Clerical support workers;Education   ;Y65-84;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;0;1;Old +7920;Greece;M;Clerical support workers;Human health and social work activities   ;Y15-29;353;1;1.3451867685508839e-06;10816286;3.263597134913038e-05;1;0;Young +7921;Greece;M;Clerical support workers;Human health and social work activities   ;Y30-49;1778;1;6.775473298820033e-06;10816286;0.00016438174804179548;1;0;Young +7922;Greece;M;Clerical support workers;Human health and social work activities   ;Y50-64;1018;1;3.879320482676487e-06;10816286;9.411733380570743e-05;0;1;Old +7923;Greece;M;Clerical support workers;Human health and social work activities   ;Y65-84;24;1;9.145745735190145e-08;10816286;2.21887623903436e-06;0;1;Old +7924;Greece;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;784;1;2.9876102734954477e-06;10816286;7.248329047512242e-05;1;0;Young +7925;Greece;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;3714;1;1.415304152520675e-05;10816286;0.0003433710979905672;1;0;Young +7926;Greece;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;1439;1;5.483636713724425e-06;10816286;0.00013304012116543515;0;1;Old +7927;Greece;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;127;1;4.839623784871452e-07;10816286;1.1741553431556821e-05;0;1;Old +7928;Greece;M;Clerical support workers;Other service activities   ;Y15-29;231;1;8.802780270120515e-07;10816286;2.1356683800705712e-05;1;0;Young +7929;Greece;M;Clerical support workers;Other service activities   ;Y30-49;938;1;3.574462291503482e-06;10816286;8.67210796755929e-05;1;0;Young +7930;Greece;M;Clerical support workers;Other service activities   ;Y50-64;295;1;1.1241645799504554e-06;10816286;2.727368710479734e-05;0;1;Old +7931;Greece;M;Clerical support workers;Other service activities   ;Y65-84;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;0;1;Old +7932;Greece;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +7933;Greece;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;1;0;Young +7934;Greece;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;53;1;2.019685516521157e-07;10816286;4.900018361200878e-06;1;0;Young +7935;Greece;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;0;1;Old +7936;Greece;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +7937;Greece;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;110;1;4.1918001286288164e-07;10816286;1.0169849428907482e-05;1;0;Young +7938;Greece;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;781;1;2.97617809132646e-06;10816286;7.220593094524313e-05;1;0;Young +7939;Greece;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;414;1;1.5776411393203e-06;10816286;3.8275615123342706e-05;0;1;Old +7940;Greece;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;17;1;6.478236562426352e-08;10816286;1.5717040026493382e-06;0;1;Old +7941;Greece;M;Service and sales workers;Mining and quarrying   ;Y15-29;13;1;4.953945606561329e-08;10816286;1.2018912961436115e-06;1;0;Young +7942;Greece;M;Service and sales workers;Mining and quarrying   ;Y30-49;63;1;2.400758255487413e-07;10816286;5.824550127465195e-06;1;0;Young +7943;Greece;M;Service and sales workers;Mining and quarrying   ;Y50-64;39;1;1.4861836819683987e-07;10816286;3.6056738884308346e-06;0;1;Old +7944;Greece;M;Service and sales workers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7945;Greece;M;Service and sales workers;Manufacturing   ;Y15-29;2361;1;8.997127366993306e-06;10816286;0.00021828195001500516;1;0;Young +7946;Greece;M;Service and sales workers;Manufacturing   ;Y30-49;8377;1;3.192246334320327e-05;10816286;0.000774480260599618;1;0;Young +7947;Greece;M;Service and sales workers;Manufacturing   ;Y50-64;2538;1;9.671626114963579e-06;10816286;0.00023464616227788354;0;1;Old +7948;Greece;M;Service and sales workers;Manufacturing   ;Y65-84;98;1;3.7345128418693096e-07;10816286;9.060411309390303e-06;0;1;Old +7949;Greece;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;77;1;2.9342600900401714e-07;10816286;7.118894600235238e-06;1;0;Young +7950;Greece;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;445;1;1.6957736883998393e-06;10816286;4.1141663598762086e-05;1;0;Young +7951;Greece;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;257;1;9.79356939143278e-07;10816286;2.3760466392992938e-05;0;1;Old +7952;Greece;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +7953;Greece;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;25;1;9.526818474156401e-08;10816286;2.3113294156607915e-06;1;0;Young +7954;Greece;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;192;1;7.316596588152116e-07;10816286;1.775100991227488e-05;1;0;Young +7955;Greece;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;116;1;4.4204437720085703e-07;10816286;1.0724568488666072e-05;0;1;Old +7956;Greece;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7957;Greece;M;Service and sales workers;Construction   ;Y15-29;123;1;4.6871946892849497e-07;10816286;1.1371740725051095e-05;1;0;Young +7958;Greece;M;Service and sales workers;Construction   ;Y30-49;481;1;1.8329598744276917e-06;10816286;4.446997795731363e-05;1;0;Young +7959;Greece;M;Service and sales workers;Construction   ;Y50-64;224;1;8.536029352844136e-07;10816286;2.070951156432069e-05;0;1;Old +7960;Greece;M;Service and sales workers;Construction   ;Y65-84;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;0;1;Old +7961;Greece;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;37976;1;0.0001447161833498254;10816286;0.0035110018355653688;1;0;Young +7962;Greece;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;117855;1;0.0004491132765086811;10816286;0.010896069131308103;1;0;Young +7963;Greece;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;40166;1;0.0001530616763331864;10816286;0.003713474292377254;0;1;Old +7964;Greece;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2359;1;8.98950591221398e-06;10816286;0.0002180970436617523;0;1;Old +7965;Greece;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +7966;Greece;M;Service and sales workers;Transportation and storage   ;Y15-29;1366;1;5.205453614279058e-06;10816286;0.00012629103927170565;1;0;Young +7967;Greece;M;Service and sales workers;Transportation and storage   ;Y30-49;4738;1;1.8055226372221213e-05;10816286;0.0004380431508560332;1;0;Young +7968;Greece;M;Service and sales workers;Transportation and storage   ;Y50-64;1783;1;6.794526935768345e-06;10816286;0.00016484401392492765;0;1;Old +7969;Greece;M;Service and sales workers;Transportation and storage   ;Y65-84;38;1;1.448076408071773e-07;10816286;3.513220711804403e-06;0;1;Old +7970;Greece;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;32585;1;0.00012417255199215454;10816286;0.003012586760372276;1;0;Young +7971;Greece;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;48337;1;0.0001841991298341192;10816286;0.004468909198591827;1;0;Young +7972;Greece;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;14576;1;5.554516243172148e-05;10816286;0.0013475975025068678;0;1;Old +7973;Greece;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;556;1;2.1187644286523836e-06;10816286;5.1403966204296003e-05;0;1;Old +7974;Greece;M;Service and sales workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +7975;Greece;M;Service and sales workers;Information and communication   ;Y15-29;1497;1;5.704658902324853e-06;10816286;0.0001384024054097682;1;0;Young +7976;Greece;M;Service and sales workers;Information and communication   ;Y30-49;3075;1;1.1717986723212374e-05;10816286;0.00028429351812627737;1;0;Young +7977;Greece;M;Service and sales workers;Information and communication   ;Y50-64;560;1;2.134007338211034e-06;10816286;5.177377891080173e-05;0;1;Old +7978;Greece;M;Service and sales workers;Information and communication   ;Y65-84;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +7979;Greece;M;Service and sales workers;Financial and insurance activities   ;Y15-29;233;1;8.878994817913766e-07;10816286;2.1541590153958575e-05;1;0;Young +7980;Greece;M;Service and sales workers;Financial and insurance activities   ;Y30-49;841;1;3.2048217347062134e-06;10816286;7.775312154282902e-05;1;0;Young +7981;Greece;M;Service and sales workers;Financial and insurance activities   ;Y50-64;324;1;1.2346756742506695e-06;10816286;2.9954829226963856e-05;0;1;Old +7982;Greece;M;Service and sales workers;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7983;Greece;M;Service and sales workers;Real estate activities   ;Y15-29;24;1;9.145745735190145e-08;10816286;2.21887623903436e-06;1;0;Young +7984;Greece;M;Service and sales workers;Real estate activities   ;Y30-49;120;1;4.572872867595073e-07;10816286;1.10943811951718e-05;1;0;Young +7985;Greece;M;Service and sales workers;Real estate activities   ;Y50-64;65;1;2.4769728032806646e-07;10816286;6.009456480718058e-06;0;1;Old +7986;Greece;M;Service and sales workers;Real estate activities   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7987;Greece;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;125;1;4.7634092370782007e-07;10816286;1.1556647078303958e-05;1;0;Young +7988;Greece;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;248;1;9.45060392636315e-07;10816286;2.2928387803355053e-05;1;0;Young +7989;Greece;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;112;1;4.268014676422068e-07;10816286;1.0354755782160345e-05;0;1;Old +7990;Greece;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +7991;Greece;M;Service and sales workers;Administrative and support service activities   ;Y15-29;4401;1;1.6771011241904928e-05;10816286;0.00040688643033292573;1;0;Young +7992;Greece;M;Service and sales workers;Administrative and support service activities   ;Y30-49;10828;1;4.126255617526621e-05;10816286;0.0010010829965110021;1;0;Young +7993;Greece;M;Service and sales workers;Administrative and support service activities   ;Y50-64;3526;1;1.3436624775950188e-05;10816286;0.00032598990078479804;0;1;Old +7994;Greece;M;Service and sales workers;Administrative and support service activities   ;Y65-84;136;1;5.182589249941082e-07;10816286;1.2573632021194706e-05;0;1;Old +7995;Greece;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;36839;1;0.00014038338630777906;10816286;0.003405882573741116;1;0;Young +7996;Greece;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;88336;1;0.00033662441469323195;10816286;0.008166943810472466;1;0;Young +7997;Greece;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;9006;1;3.431941087130102e-05;10816286;0.0008326333086976436;0;1;Old +7998;Greece;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;346;1;1.3185116768232459e-06;10816286;3.1988799112745356e-05;0;1;Old +7999;Greece;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8000;Greece;M;Service and sales workers;Education   ;Y15-29;566;1;2.156871702549009e-06;10816286;5.232849797056032e-05;1;0;Young +8001;Greece;M;Service and sales workers;Education   ;Y30-49;2490;1;9.488711200259776e-06;10816286;0.00023020840979981483;1;0;Young +8002;Greece;M;Service and sales workers;Education   ;Y50-64;1422;1;5.418854348100161e-06;10816286;0.00013146841716278582;0;1;Old +8003;Greece;M;Service and sales workers;Education   ;Y65-84;137;1;5.220696523837708e-07;10816286;1.2666085197821138e-05;0;1;Old +8004;Greece;M;Service and sales workers;Human health and social work activities   ;Y15-29;1154;1;4.397579407670595e-06;10816286;0.00010669096582690214;1;0;Young +8005;Greece;M;Service and sales workers;Human health and social work activities   ;Y30-49;5601;1;2.13438841095e-05;10816286;0.0005178302422846438;1;0;Young +8006;Greece;M;Service and sales workers;Human health and social work activities   ;Y50-64;3148;1;1.199616982265774e-05;10816286;0.00029104260002000686;0;1;Old +8007;Greece;M;Service and sales workers;Human health and social work activities   ;Y65-84;87;1;3.3153328290064277e-07;10816286;8.043426366499555e-06;0;1;Old +8008;Greece;M;Service and sales workers;Human health and social work activities   ;Y_GE85;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +8009;Greece;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;1133;1;4.317554132487681e-06;10816286;0.00010474944911774707;1;0;Young +8010;Greece;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2260;1;8.612243900637386e-06;10816286;0.00020894417917573555;1;0;Young +8011;Greece;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;686;1;2.6141589893085166e-06;10816286;6.342287916573212e-05;0;1;Old +8012;Greece;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;33;1;1.257540038588645e-07;10816286;3.050954828672245e-06;0;1;Old +8013;Greece;M;Service and sales workers;Other service activities   ;Y15-29;2612;1;9.953619941798608e-06;10816286;0.0002414876973482395;1;0;Young +8014;Greece;M;Service and sales workers;Other service activities   ;Y30-49;6341;1;2.4163822377850296e-05;10816286;0.0005862455929882031;1;0;Young +8015;Greece;M;Service and sales workers;Other service activities   ;Y50-64;1897;1;7.2289498581898774e-06;10816286;0.00017538367606034086;0;1;Old +8016;Greece;M;Service and sales workers;Other service activities   ;Y65-84;187;1;7.126060218668988e-07;10816286;1.728874402914272e-05;0;1;Old +8017;Greece;M;Service and sales workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8018;Greece;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;46;1;1.7529345992447778e-07;10816286;4.252846124815856e-06;1;0;Young +8019;Greece;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;247;1;9.412496652466524e-07;10816286;2.283593462672862e-05;1;0;Young +8020;Greece;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;215;1;8.193063887774505e-07;10816286;1.9877432974682806e-05;0;1;Old +8021;Greece;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;26;1;9.907891213122657e-08;10816286;2.403782592287223e-06;0;1;Old +8022;Greece;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;1;0;Young +8023;Greece;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;1;0;Young +8024;Greece;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +8025;Greece;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;23686;1;9.02608889515474e-05;10816286;0.0021898459415736603;1;0;Young +8026;Greece;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;115499;1;0.0004401352027786361;10816286;0.01067824944717623;1;0;Young +8027;Greece;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;82777;1;0.00031544058113409777;10816286;0.007652996601606133;0;1;Old +8028;Greece;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;5453;1;2.0779896455829943e-05;10816286;0.0005041471721439319;0;1;Old +8029;Greece;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;11;1;4.1918001286288165e-08;10816286;1.0169849428907483e-06;0;1;Old +8030;Greece;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;108;1;4.1155855808355654e-07;10816286;9.984943075654619e-06;1;0;Young +8031;Greece;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;360;1;1.3718618602785219e-06;10816286;3.32831435855154e-05;1;0;Young +8032;Greece;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;174;1;6.630665658012855e-07;10816286;1.608685273299911e-05;0;1;Old +8033;Greece;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;13;1;4.953945606561329e-08;10816286;1.2018912961436115e-06;0;1;Old +8034;Greece;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;1;0;Young +8035;Greece;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +8036;Greece;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;1;0;Young +8037;Greece;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;20;1;7.621454779325121e-08;10816286;1.8490635325286331e-06;1;0;Young +8038;Greece;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +8039;Greece;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +8040;Greece;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;159;1;6.059056549563472e-07;10816286;1.4700055083602633e-05;1;0;Young +8041;Greece;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;660;1;2.51508007717729e-06;10816286;6.10190965734449e-05;1;0;Young +8042;Greece;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;287;1;1.0936787608331548e-06;10816286;2.6534061691785886e-05;0;1;Old +8043;Greece;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;0;1;Old +8044;Greece;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;1;0;Young +8045;Greece;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;1;0;Young +8046;Greece;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8047;Greece;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;159;1;6.059056549563472e-07;10816286;1.4700055083602633e-05;1;0;Young +8048;Greece;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;662;1;2.522701531956615e-06;10816286;6.120400292669776e-05;1;0;Young +8049;Greece;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;436;1;1.6614771418928764e-06;10816286;4.03095850091242e-05;0;1;Old +8050;Greece;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;21;1;8.002527518291377e-08;10816286;1.941516709155065e-06;0;1;Old +8051;Greece;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +8052;Greece;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +8053;Greece;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +8054;Greece;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8055;Greece;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;1;0;Young +8056;Greece;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;42;1;1.6005055036582754e-07;10816286;3.88303341831013e-06;1;0;Young +8057;Greece;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;26;1;9.907891213122657e-08;10816286;2.403782592287223e-06;0;1;Old +8058;Greece;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +8059;Greece;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +8060;Greece;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;1;0;Young +8061;Greece;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;0;1;Old +8062;Greece;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;735;1;2.800884631401982e-06;10816286;6.795308482042727e-05;1;0;Young +8063;Greece;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2603;1;9.919323395291645e-06;10816286;0.0002406556187586016;1;0;Young +8064;Greece;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;1396;1;5.319775435968935e-06;10816286;0.0001290646345704986;0;1;Old +8065;Greece;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;78;1;2.9723673639367974e-07;10816286;7.211347776861669e-06;0;1;Old +8066;Greece;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;123;1;4.6871946892849497e-07;10816286;1.1371740725051095e-05;1;0;Young +8067;Greece;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;844;1;3.216253916875201e-06;10816286;7.803048107270832e-05;1;0;Young +8068;Greece;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;659;1;2.5112693497876272e-06;10816286;6.092664339681847e-05;0;1;Old +8069;Greece;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;0;1;Old +8070;Greece;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;1;0;Young +8071;Greece;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;27;1;1.0288963952088914e-07;10816286;2.4962357689136547e-06;1;0;Young +8072;Greece;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;25;1;9.526818474156401e-08;10816286;2.3113294156607915e-06;0;1;Old +8073;Greece;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +8074;Greece;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;1;0;Young +8075;Greece;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;48;1;1.829149147038029e-07;10816286;4.43775247806872e-06;1;0;Young +8076;Greece;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;49;1;1.8672564209346548e-07;10816286;4.530205654695151e-06;0;1;Old +8077;Greece;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +8078;Greece;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;1;0;Young +8079;Greece;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;1;0;Young +8080;Greece;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;0;1;Old +8081;Greece;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8082;Greece;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;17;1;6.478236562426352e-08;10816286;1.5717040026493382e-06;1;0;Young +8083;Greece;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;83;1;3.1629037334199253e-07;10816286;7.673613659993828e-06;1;0;Young +8084;Greece;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;42;1;1.6005055036582754e-07;10816286;3.88303341831013e-06;0;1;Old +8085;Greece;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;10816286;1.8490635325286333e-07;0;1;Old +8086;Greece;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;122;1;4.6490874153883237e-07;10816286;1.1279287548424663e-05;1;0;Young +8087;Greece;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;385;1;1.4671300450200858e-06;10816286;3.559447300117619e-05;1;0;Young +8088;Greece;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;179;1;6.821202027495983e-07;10816286;1.6549118616131268e-05;0;1;Old +8089;Greece;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +8090;Greece;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;179;1;6.821202027495983e-07;10816286;1.6549118616131268e-05;1;0;Young +8091;Greece;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;503;1;1.916795877000268e-06;10816286;4.650394784309513e-05;1;0;Young +8092;Greece;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;162;1;6.173378371253348e-07;10816286;1.4977414613481928e-05;0;1;Old +8093;Greece;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +8094;Greece;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;275;1;1.0479500321572042e-06;10816286;2.5424623572268707e-05;1;0;Young +8095;Greece;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;1058;1;4.031749578262989e-06;10816286;9.78154608707647e-05;1;0;Young +8096;Greece;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;454;1;1.7300702349068025e-06;10816286;4.197374218839997e-05;0;1;Old +8097;Greece;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +8098;Greece;M;Craft and related trades workers;Manufacturing   ;Y15-29;21140;1;8.055877701746653e-05;10816286;0.0019544601538827653;1;0;Young +8099;Greece;M;Craft and related trades workers;Manufacturing   ;Y30-49;75420;1;0.0002874050597283503;10816286;0.0069728185811654755;1;0;Young +8100;Greece;M;Craft and related trades workers;Manufacturing   ;Y50-64;35930;1;0.0001369194351105758;10816286;0.0033218426361876895;0;1;Old +8101;Greece;M;Craft and related trades workers;Manufacturing   ;Y65-84;1079;1;4.111774853445903e-06;10816286;9.975697757991976e-05;0;1;Old +8102;Greece;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1682;1;6.409643469412427e-06;10816286;0.00015550624308565805;1;0;Young +8103;Greece;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;6715;1;2.5589034421584095e-05;10816286;0.0006208230810464886;1;0;Young +8104;Greece;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2758;1;1.0509986140689343e-05;10816286;0.0002549858611356985;0;1;Old +8105;Greece;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;28;1;1.067003669105517e-07;10816286;2.5886889455400863e-06;0;1;Old +8106;Greece;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;343;1;1.3070794946542583e-06;10816286;3.171143958286606e-05;1;0;Young +8107;Greece;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1845;1;7.030792033927424e-06;10816286;0.00017057611087576641;1;0;Young +8108;Greece;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1032;1;3.9326706661317625e-06;10816286;9.541167827847748e-05;0;1;Old +8109;Greece;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;17;1;6.478236562426352e-08;10816286;1.5717040026493382e-06;0;1;Old +8110;Greece;M;Craft and related trades workers;Construction   ;Y15-29;43977;1;0.00016758435841519043;10816286;0.004065813348500585;1;0;Young +8111;Greece;M;Craft and related trades workers;Construction   ;Y30-49;143515;1;0.0005468965413274224;10816286;0.01326841764354234;1;0;Young +8112;Greece;M;Craft and related trades workers;Construction   ;Y50-64;61758;1;0.0002353429021307804;10816286;0.0057097232820951666;0;1;Old +8113;Greece;M;Craft and related trades workers;Construction   ;Y65-84;1186;1;4.519522684139797e-06;10816286;0.00010964946747894795;0;1;Old +8114;Greece;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;16259;1;6.195861662852357e-05;10816286;0.0015031961987691524;1;0;Young +8115;Greece;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;43837;1;0.00016705085658063766;10816286;0.004052869903772884;1;0;Young +8116;Greece;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;17150;1;6.535397473271292e-05;10816286;0.001585571979143303;0;1;Old +8117;Greece;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;533;1;2.0311176986901446e-06;10816286;4.9277543141888076e-05;0;1;Old +8118;Greece;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8119;Greece;M;Craft and related trades workers;Transportation and storage   ;Y15-29;711;1;2.7094271740500803e-06;10816286;6.573420858139291e-05;1;0;Young +8120;Greece;M;Craft and related trades workers;Transportation and storage   ;Y30-49;3370;1;1.2842151303162829e-05;10816286;0.0003115672052310747;1;0;Young +8121;Greece;M;Craft and related trades workers;Transportation and storage   ;Y50-64;1740;1;6.630665658012855e-06;10816286;0.00016086852732999108;0;1;Old +8122;Greece;M;Craft and related trades workers;Transportation and storage   ;Y65-84;32;1;1.2194327646920193e-07;10816286;2.9585016520458132e-06;0;1;Old +8123;Greece;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;1033;1;3.936481393521425e-06;10816286;9.550413145510391e-05;1;0;Young +8124;Greece;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2826;1;1.0769115603186396e-05;10816286;0.00026127267714629585;1;0;Young +8125;Greece;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;1186;1;4.519522684139797e-06;10816286;0.00010964946747894795;0;1;Old +8126;Greece;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;43;1;1.638612777554901e-07;10816286;3.9754865949365615e-06;0;1;Old +8127;Greece;M;Craft and related trades workers;Information and communication   ;Y15-29;1241;1;4.729112690571238e-06;10816286;0.00011473439219340169;1;0;Young +8128;Greece;M;Craft and related trades workers;Information and communication   ;Y30-49;5813;1;2.2151758316108463e-05;10816286;0.0005374303157294472;1;0;Young +8129;Greece;M;Craft and related trades workers;Information and communication   ;Y50-64;2235;1;8.516975715895823e-06;10816286;0.00020663284976007475;0;1;Old +8130;Greece;M;Craft and related trades workers;Information and communication   ;Y65-84;55;1;2.0959000643144082e-07;10816286;5.084924714453741e-06;0;1;Old +8131;Greece;M;Craft and related trades workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8132;Greece;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;39;1;1.4861836819683987e-07;10816286;3.6056738884308346e-06;1;0;Young +8133;Greece;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;198;1;7.54524023153187e-07;10816286;1.830572897203347e-05;1;0;Young +8134;Greece;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;65;1;2.4769728032806646e-07;10816286;6.009456480718058e-06;0;1;Old +8135;Greece;M;Craft and related trades workers;Real estate activities   ;Y15-29;65;1;2.4769728032806646e-07;10816286;6.009456480718058e-06;1;0;Young +8136;Greece;M;Craft and related trades workers;Real estate activities   ;Y30-49;61;1;2.3245437076941619e-07;10816286;5.639643774212332e-06;1;0;Young +8137;Greece;M;Craft and related trades workers;Real estate activities   ;Y50-64;26;1;9.907891213122657e-08;10816286;2.403782592287223e-06;0;1;Old +8138;Greece;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;882;1;3.3610615576823783e-06;10816286;8.154370178451272e-05;1;0;Young +8139;Greece;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2740;1;1.0441393047675416e-05;10816286;0.00025332170395642276;1;0;Young +8140;Greece;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;1114;1;4.245150312084092e-06;10816286;0.00010299283876184487;0;1;Old +8141;Greece;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;43;1;1.638612777554901e-07;10816286;3.9754865949365615e-06;0;1;Old +8142;Greece;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;264;1;1.006032030870916e-06;10816286;2.440763862937796e-05;1;0;Young +8143;Greece;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;893;1;3.4029795589686665e-06;10816286;8.256068672740347e-05;1;0;Young +8144;Greece;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;263;1;1.0022213034812534e-06;10816286;2.4315185452751527e-05;0;1;Old +8145;Greece;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +8146;Greece;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;1659;1;6.321996739450188e-06;10816286;0.00015337982002325013;1;0;Young +8147;Greece;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;6513;1;2.4819267488872256e-05;10816286;0.0006021475393679494;1;0;Young +8148;Greece;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;3905;1;1.4880890456632298e-05;10816286;0.00036102965472621564;0;1;Old +8149;Greece;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;106;1;4.039371033042314e-07;10816286;9.800036722401756e-06;0;1;Old +8150;Greece;M;Craft and related trades workers;Education   ;Y15-29;62;1;2.3626509815907876e-07;10816286;5.732096950838763e-06;1;0;Young +8151;Greece;M;Craft and related trades workers;Education   ;Y30-49;345;1;1.3147009494335833e-06;10816286;3.1896345936118924e-05;1;0;Young +8152;Greece;M;Craft and related trades workers;Education   ;Y50-64;213;1;8.116849339981254e-07;10816286;1.9692526621429943e-05;0;1;Old +8153;Greece;M;Craft and related trades workers;Education   ;Y65-84;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;0;1;Old +8154;Greece;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;227;1;8.650351174534013e-07;10816286;2.0986871094199985e-05;1;0;Young +8155;Greece;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;1374;1;5.235939433396358e-06;10816286;0.0001270306646847171;1;0;Young +8156;Greece;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;977;1;3.7230806597003216e-06;10816286;9.032675356402374e-05;0;1;Old +8157;Greece;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;17;1;6.478236562426352e-08;10816286;1.5717040026493382e-06;0;1;Old +8158;Greece;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;155;1;5.906627453976969e-07;10816286;1.4330242377096907e-05;1;0;Young +8159;Greece;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;743;1;2.8313704505192823e-06;10816286;6.869271023343872e-05;1;0;Young +8160;Greece;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;415;1;1.5814518667099626e-06;10816286;3.836806829996914e-05;0;1;Old +8161;Greece;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;0;1;Old +8162;Greece;M;Craft and related trades workers;Other service activities   ;Y15-29;598;1;2.278814979018211e-06;10816286;5.528699962260613e-05;1;0;Young +8163;Greece;M;Craft and related trades workers;Other service activities   ;Y30-49;2471;1;9.416307379856187e-06;10816286;0.00022845179944391264;1;0;Young +8164;Greece;M;Craft and related trades workers;Other service activities   ;Y50-64;1174;1;4.473793955463846e-06;10816286;0.00010854002935943077;0;1;Old +8165;Greece;M;Craft and related trades workers;Other service activities   ;Y65-84;53;1;2.019685516521157e-07;10816286;4.900018361200878e-06;0;1;Old +8166;Greece;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;1;0;Young +8167;Greece;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;1;0;Young +8168;Greece;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +8169;Greece;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;188;1;7.164167492565614e-07;10816286;1.7381197205769152e-05;1;0;Young +8170;Greece;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;926;1;3.528733562827531e-06;10816286;8.561164155607571e-05;1;0;Young +8171;Greece;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;418;1;1.5928840488789504e-06;10816286;3.864542782984843e-05;0;1;Old +8172;Greece;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +8173;Greece;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;582;1;2.2178433407836104e-06;10816286;5.3807748796583226e-05;1;0;Young +8174;Greece;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;2654;1;1.0113670492164436e-05;10816286;0.0002453707307665496;1;0;Young +8175;Greece;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;1076;1;4.100342671276915e-06;10816286;9.947961805004047e-05;0;1;Old +8176;Greece;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;29;1;1.1051109430021426e-07;10816286;2.681142122166518e-06;0;1;Old +8177;Greece;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;8000;1;3.0485819117300484e-05;10816286;0.0007396254130114533;1;0;Young +8178;Greece;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;33826;1;0.00012890166468272578;10816286;0.0031273211525656773;1;0;Young +8179;Greece;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;12716;1;4.845720948694912e-05;10816286;0.001175634593981705;0;1;Old +8180;Greece;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;320;1;1.2194327646920193e-06;10816286;2.958501652045813e-05;0;1;Old +8181;Greece;M;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8182;Greece;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;303;1;1.1546503990677558e-06;10816286;2.8013312517808792e-05;1;0;Young +8183;Greece;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1755;1;6.687826568857794e-06;10816286;0.00016225532497938757;1;0;Young +8184;Greece;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;762;1;2.9037742709228713e-06;10816286;7.044932058934092e-05;0;1;Old +8185;Greece;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +8186;Greece;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;370;1;1.4099691341751475e-06;10816286;3.4207675351779715e-05;1;0;Young +8187;Greece;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2527;1;9.62970811367729e-06;10816286;0.0002336291773349928;1;0;Young +8188;Greece;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1059;1;4.035560305652652e-06;10816286;9.790791404739113e-05;0;1;Old +8189;Greece;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;18;1;6.859309301392609e-08;10816286;1.6641571792757699e-06;0;1;Old +8190;Greece;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;2410;1;9.183853009086771e-06;10816286;0.0002228121556697003;1;0;Young +8191;Greece;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;11742;1;4.474556100941779e-05;10816286;0.0010855851999475605;1;0;Young +8192;Greece;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;5281;1;2.0124451344807983e-05;10816286;0.0004882452257641856;0;1;Old +8193;Greece;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;146;1;5.563661988907339e-07;10816286;1.3498163787459022e-05;0;1;Old +8194;Greece;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3684;1;1.4038719703516874e-05;10816286;0.0003405975026917742;1;0;Young +8195;Greece;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;13930;1;5.308343253799947e-05;10816286;0.001287872750406193;1;0;Young +8196;Greece;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3659;1;1.3943451518775309e-05;10816286;0.00033828617327611343;0;1;Old +8197;Greece;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;83;1;3.1629037334199253e-07;10816286;7.673613659993828e-06;0;1;Old +8198;Greece;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;11051;1;4.2112348383160956e-05;10816286;0.0010217000548986962;1;0;Young +8199;Greece;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;68288;1;0.0002602269519852769;10816286;0.006313442525465765;1;0;Young +8200;Greece;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;31565;1;0.00012028561005469872;10816286;0.0029182845202133153;0;1;Old +8201;Greece;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;1155;1;4.401390135060257e-06;10816286;0.00010678341900352857;0;1;Old +8202;Greece;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;319;1;1.2156220373023567e-06;10816286;2.9492563343831698e-05;1;0;Young +8203;Greece;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;949;1;3.61638029278977e-06;10816286;8.773806461848365e-05;1;0;Young +8204;Greece;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;307;1;1.1698933086264062e-06;10816286;2.838312522431452e-05;0;1;Old +8205;Greece;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;12;1;4.5728728675950726e-08;10816286;1.10943811951718e-06;0;1;Old +8206;Greece;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;92;1;3.5058691984895557e-07;10816286;8.505692249631713e-06;1;0;Young +8207;Greece;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;545;1;2.0768464273660954e-06;10816286;5.0386981261405256e-05;1;0;Young +8208;Greece;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;209;1;7.964420244394752e-07;10816286;1.9322713914924216e-05;0;1;Old +8209;Greece;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +8210;Greece;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;39;1;1.4861836819683987e-07;10816286;3.6056738884308346e-06;1;0;Young +8211;Greece;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;215;1;8.193063887774505e-07;10816286;1.9877432974682806e-05;1;0;Young +8212;Greece;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;71;1;2.705616446660418e-07;10816286;6.564175540476648e-06;0;1;Old +8213;Greece;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;10;1;3.8107273896625604e-08;10816286;9.245317662643166e-07;1;0;Young +8214;Greece;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;35;1;1.3337545863818962e-07;10816286;3.235861181925108e-06;1;0;Young +8215;Greece;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;0;1;Old +8216;Greece;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;225;1;8.574136626740762e-07;10816286;2.0801964740947122e-05;1;0;Young +8217;Greece;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;888;1;3.383925922020354e-06;10816286;8.209842084427131e-05;1;0;Young +8218;Greece;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;339;1;1.2918365850956081e-06;10816286;3.1341626876360334e-05;0;1;Old +8219;Greece;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;8;1;3.048581911730048e-08;10816286;7.396254130114533e-07;0;1;Old +8220;Greece;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;830;1;3.162903733419925e-06;10816286;7.673613659993828e-05;1;0;Young +8221;Greece;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;3797;1;1.4469331898548743e-05;10816286;0.000351044711650561;1;0;Young +8222;Greece;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;1780;1;6.783094753599357e-06;10816286;0.00016456665439504835;0;1;Old +8223;Greece;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;51;1;1.943470968727906e-07;10816286;4.7151120079480145e-06;0;1;Old +8224;Greece;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;718;1;2.7361022657777186e-06;10816286;6.638138081777793e-05;1;0;Young +8225;Greece;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;6251;1;2.3820856912780665e-05;10816286;0.0005779248070918243;1;0;Young +8226;Greece;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;3459;1;1.3181306040842797e-05;10816286;0.0003197955379508271;0;1;Old +8227;Greece;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;66;1;2.51508007717729e-07;10816286;6.10190965734449e-06;0;1;Old +8228;Greece;M;Plant and machine operators, and assemblers;Education   ;Y15-29;349;1;1.3299438589922337e-06;10816286;3.226615864262465e-05;1;0;Young +8229;Greece;M;Plant and machine operators, and assemblers;Education   ;Y30-49;1807;1;6.885984393120247e-06;10816286;0.000167062890163962;1;0;Young +8230;Greece;M;Plant and machine operators, and assemblers;Education   ;Y50-64;793;1;3.0219068200024106e-06;10816286;7.33153690647603e-05;0;1;Old +8231;Greece;M;Plant and machine operators, and assemblers;Education   ;Y65-84;22;1;8.383600257257633e-08;10816286;2.0339698857814966e-06;0;1;Old +8232;Greece;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;275;1;1.0479500321572042e-06;10816286;2.5424623572268707e-05;1;0;Young +8233;Greece;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;2133;1;8.128281522150241e-06;10816286;0.00019720262574417872;1;0;Young +8234;Greece;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;1207;1;4.599547959322711e-06;10816286;0.00011159098418810301;0;1;Old +8235;Greece;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;30;1;1.1432182168987682e-07;10816286;2.77359529879295e-06;0;1;Old +8236;Greece;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;65;1;2.4769728032806646e-07;10816286;6.009456480718058e-06;1;0;Young +8237;Greece;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;289;1;1.10130021561248e-06;10816286;2.671896804503875e-05;1;0;Young +8238;Greece;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;121;1;4.610980141491698e-07;10816286;1.1186834371798232e-05;0;1;Old +8239;Greece;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;7;1;2.6675091727637924e-08;10816286;6.471722363850216e-07;0;1;Old +8240;Greece;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;59;1;2.2483291599009106e-07;10816286;5.454737420959468e-06;1;0;Young +8241;Greece;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;363;1;1.3832940424475095e-06;10816286;3.356050311539469e-05;1;0;Young +8242;Greece;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;124;1;4.725301963181575e-07;10816286;1.1464193901677526e-05;0;1;Old +8243;Greece;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +8244;Greece;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +8245;Greece;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +8246;Greece;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;1;0;Young +8247;Greece;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;0;1;Old +8248;Greece;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;14410;1;5.49125816850375e-05;10816286;0.0013322502751868803;1;0;Young +8249;Greece;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;28549;1;0.00010879245624747644;10816286;0.0026394457395079976;1;0;Young +8250;Greece;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;9470;1;3.6087588380104446e-05;10816286;0.0008755315826523078;0;1;Old +8251;Greece;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;469;1;1.787231145751741e-06;10816286;4.336053983779645e-05;0;1;Old +8252;Greece;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8253;Greece;M;Elementary occupations;Mining and quarrying   ;Y15-29;204;1;7.773883874911624e-07;10816286;1.8860448031792058e-05;1;0;Young +8254;Greece;M;Elementary occupations;Mining and quarrying   ;Y30-49;698;1;2.6598877179844674e-06;10816286;6.45323172852493e-05;1;0;Young +8255;Greece;M;Elementary occupations;Mining and quarrying   ;Y50-64;288;1;1.0974894882228174e-06;10816286;2.6626514868412318e-05;0;1;Old +8256;Greece;M;Elementary occupations;Mining and quarrying   ;Y65-84;5;1;1.9053636948312802e-08;10816286;4.622658831321583e-07;0;1;Old +8257;Greece;M;Elementary occupations;Manufacturing   ;Y15-29;7241;1;2.7593477028546602e-05;10816286;0.0006694534519519916;1;0;Young +8258;Greece;M;Elementary occupations;Manufacturing   ;Y30-49;19562;1;7.454544919657901e-05;10816286;0.001808569041166256;1;0;Young +8259;Greece;M;Elementary occupations;Manufacturing   ;Y50-64;6443;1;2.4552516571595878e-05;10816286;0.0005956758170040992;0;1;Old +8260;Greece;M;Elementary occupations;Manufacturing   ;Y65-84;136;1;5.182589249941082e-07;10816286;1.2573632021194706e-05;0;1;Old +8261;Greece;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;641;1;2.4426762567737013e-06;10816286;5.926248621754269e-05;1;0;Young +8262;Greece;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;1748;1;6.661151477130156e-06;10816286;0.00016160815274300253;1;0;Young +8263;Greece;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;772;1;2.941881544819497e-06;10816286;7.137385235560524e-05;0;1;Old +8264;Greece;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +8265;Greece;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1458;1;5.5560405341280135e-06;10816286;0.00013479673152133736;1;0;Young +8266;Greece;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5248;1;1.999869734094912e-05;10816286;0.0004851942709355134;1;0;Young +8267;Greece;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2491;1;9.492521927649439e-06;10816286;0.00023030086297644127;0;1;Old +8268;Greece;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;89;1;3.3915473767996787e-07;10816286;8.228332719752418e-06;0;1;Old +8269;Greece;M;Elementary occupations;Construction   ;Y15-29;6539;1;2.4918346401003484e-05;10816286;0.0006045513219602366;1;0;Young +8270;Greece;M;Elementary occupations;Construction   ;Y30-49;14885;1;5.6722677195127214e-05;10816286;0.0013761655340844353;1;0;Young +8271;Greece;M;Elementary occupations;Construction   ;Y50-64;5471;1;2.084848954884387e-05;10816286;0.0005058113293232076;0;1;Old +8272;Greece;M;Elementary occupations;Construction   ;Y65-84;123;1;4.6871946892849497e-07;10816286;1.1371740725051095e-05;0;1;Old +8273;Greece;M;Elementary occupations;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8274;Greece;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5455;1;2.078751791060927e-05;10816286;0.0005043320784971847;1;0;Young +8275;Greece;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9313;1;3.5489304179927427e-05;10816286;0.0008610164339219581;1;0;Young +8276;Greece;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2370;1;9.031423913500269e-06;10816286;0.00021911402860464303;0;1;Old +8277;Greece;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;95;1;3.6201910201794326e-07;10816286;8.783051779511008e-06;0;1;Old +8278;Greece;M;Elementary occupations;Transportation and storage   ;Y15-29;2486;1;9.473468290701126e-06;10816286;0.0002298385970933091;1;0;Young +8279;Greece;M;Elementary occupations;Transportation and storage   ;Y30-49;6699;1;2.5528062783349493e-05;10816286;0.0006193438302204657;1;0;Young +8280;Greece;M;Elementary occupations;Transportation and storage   ;Y50-64;2053;1;7.823423330977236e-06;10816286;0.0001898063716140642;0;1;Old +8281;Greece;M;Elementary occupations;Transportation and storage   ;Y65-84;59;1;2.2483291599009106e-07;10816286;5.454737420959468e-06;0;1;Old +8282;Greece;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;6981;1;2.6602687907234336e-05;10816286;0.0006454156260291194;1;0;Young +8283;Greece;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;12171;1;4.638036305958303e-05;10816286;0.0011252476127202996;1;0;Young +8284;Greece;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;3325;1;1.2670668570628014e-05;10816286;0.00030740681228288525;0;1;Old +8285;Greece;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;138;1;5.258803797734334e-07;10816286;1.275853837444757e-05;0;1;Old +8286;Greece;M;Elementary occupations;Information and communication   ;Y15-29;197;1;7.507132957635244e-07;10816286;1.8213275795407037e-05;1;0;Young +8287;Greece;M;Elementary occupations;Information and communication   ;Y30-49;562;1;2.141628792990359e-06;10816286;5.195868526405459e-05;1;0;Young +8288;Greece;M;Elementary occupations;Information and communication   ;Y50-64;220;1;8.383600257257633e-07;10816286;2.0339698857814964e-05;0;1;Old +8289;Greece;M;Elementary occupations;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;10816286;5.5471905975859e-07;0;1;Old +8290;Greece;M;Elementary occupations;Financial and insurance activities   ;Y15-29;52;1;1.9815782426245315e-07;10816286;4.807565184574446e-06;1;0;Young +8291;Greece;M;Elementary occupations;Financial and insurance activities   ;Y30-49;262;1;9.984105760915908e-07;10816286;2.4222732276125096e-05;1;0;Young +8292;Greece;M;Elementary occupations;Financial and insurance activities   ;Y50-64;169;1;6.440129288529728e-07;10816286;1.562458684986695e-05;0;1;Old +8293;Greece;M;Elementary occupations;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8294;Greece;M;Elementary occupations;Real estate activities   ;Y15-29;27;1;1.0288963952088914e-07;10816286;2.4962357689136547e-06;1;0;Young +8295;Greece;M;Elementary occupations;Real estate activities   ;Y30-49;32;1;1.2194327646920193e-07;10816286;2.9585016520458132e-06;1;0;Young +8296;Greece;M;Elementary occupations;Real estate activities   ;Y50-64;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +8297;Greece;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;436;1;1.6614771418928764e-06;10816286;4.03095850091242e-05;1;0;Young +8298;Greece;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;703;1;2.67894135493278e-06;10816286;6.499458316838146e-05;1;0;Young +8299;Greece;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;195;1;7.430918409841993e-07;10816286;1.8028369442154173e-05;0;1;Old +8300;Greece;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;10816286;8.320785896378849e-07;0;1;Old +8301;Greece;M;Elementary occupations;Administrative and support service activities   ;Y15-29;1910;1;7.27848931425549e-06;10816286;0.00017658556735648448;1;0;Young +8302;Greece;M;Elementary occupations;Administrative and support service activities   ;Y30-49;7546;1;2.875574888239368e-05;10816286;0.0006976516708230533;1;0;Young +8303;Greece;M;Elementary occupations;Administrative and support service activities   ;Y50-64;3465;1;1.3204170405180773e-05;10816286;0.0003203502570105857;0;1;Old +8304;Greece;M;Elementary occupations;Administrative and support service activities   ;Y65-84;116;1;4.4204437720085703e-07;10816286;1.0724568488666072e-05;0;1;Old +8305;Greece;M;Elementary occupations;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;0;1;Old +8306;Greece;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;1721;1;6.5582618376092665e-06;10816286;0.0001591119169740889;1;0;Young +8307;Greece;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;11240;1;4.283257585980718e-05;10816286;0.0010391737052810918;1;0;Young +8308;Greece;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;6838;1;2.605775389051259e-05;10816286;0.0006321948217715397;0;1;Old +8309;Greece;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;161;1;6.135271097356723e-07;10816286;1.4884961436855497e-05;0;1;Old +8310;Greece;M;Elementary occupations;Education   ;Y15-29;66;1;2.51508007717729e-07;10816286;6.10190965734449e-06;1;0;Young +8311;Greece;M;Elementary occupations;Education   ;Y30-49;400;1;1.5242909558650242e-06;10816286;3.698127065057266e-05;1;0;Young +8312;Greece;M;Elementary occupations;Education   ;Y50-64;282;1;1.074625123884842e-06;10816286;2.6071795808653728e-05;0;1;Old +8313;Greece;M;Elementary occupations;Education   ;Y65-84;16;1;6.097163823460096e-08;10816286;1.4792508260229066e-06;0;1;Old +8314;Greece;M;Elementary occupations;Human health and social work activities   ;Y15-29;176;1;6.706880205806106e-07;10816286;1.6271759086251973e-05;1;0;Young +8315;Greece;M;Elementary occupations;Human health and social work activities   ;Y30-49;999;1;3.806916662272898e-06;10816286;9.236072344980523e-05;1;0;Young +8316;Greece;M;Elementary occupations;Human health and social work activities   ;Y50-64;709;1;2.7018057192707556e-06;10816286;6.554930222814005e-05;0;1;Old +8317;Greece;M;Elementary occupations;Human health and social work activities   ;Y65-84;23;1;8.764672996223889e-08;10816286;2.126423062407928e-06;0;1;Old +8318;Greece;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;209;1;7.964420244394752e-07;10816286;1.9322713914924216e-05;1;0;Young +8319;Greece;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;733;1;2.7932631766226567e-06;10816286;6.776817846717441e-05;1;0;Young +8320;Greece;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;386;1;1.4709407724097484e-06;10816286;3.568692617780262e-05;0;1;Old +8321;Greece;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;15;1;5.716091084493841e-08;10816286;1.386797649396475e-06;0;1;Old +8322;Greece;M;Elementary occupations;Other service activities   ;Y15-29;302;1;1.1508396716780934e-06;10816286;2.792085934118236e-05;1;0;Young +8323;Greece;M;Elementary occupations;Other service activities   ;Y30-49;872;1;3.3229542837857527e-06;10816286;8.06191700182484e-05;1;0;Young +8324;Greece;M;Elementary occupations;Other service activities   ;Y50-64;349;1;1.3299438589922337e-06;10816286;3.226615864262465e-05;0;1;Old +8325;Greece;M;Elementary occupations;Other service activities   ;Y65-84;14;1;5.335018345527585e-08;10816286;1.2943444727700432e-06;0;1;Old +8326;Greece;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;349;1;1.3299438589922337e-06;10816286;3.226615864262465e-05;1;0;Young +8327;Greece;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2107;1;8.029202610019015e-06;10816286;0.0001947988431518915;1;0;Young +8328;Greece;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;854;1;3.2543611907718268e-06;10816286;7.895501283897263e-05;0;1;Old +8329;Greece;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;49;1;1.8672564209346548e-07;10816286;4.530205654695151e-06;0;1;Old +8330;Greece;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10816286;9.245317662643166e-08;1;0;Young +8331;Greece;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;10816286;3.6981270650572666e-07;1;0;Young +8332;Greece;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;10816286;2.77359529879295e-07;0;1;Old +8333;France;F;Not applicable;Not applicable  ;Y15-29;2732088;1;0.010411242572568405;64932339;0.04207592152193994;1;0;Young +8334;France;F;Not applicable;Not applicable  ;Y30-49;1586306;1;0.006044979722586058;64932339;0.024430137962533585;1;0;Young +8335;France;F;Not applicable;Not applicable  ;Y50-64;3005177;1;0.011451910304683965;64932339;0.04628166867668205;0;1;Old +8336;France;F;Not applicable;Not applicable  ;Y65-84;5142625;1;0.019597141942263425;64932339;0.07919974975797499;0;1;Old +8337;France;F;Not applicable;Not applicable  ;Y_GE85;1130338;1;0.004307409976176399;64932339;0.017407935974707456;0;1;Old +8338;France;F;Not applicable;Not applicable  ;Y_LT15;5876234;1;0.022392725851866385;64932339;0.09049780264345629;0;1;Old +8339;France;F;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;1;0;Young +8340;France;F;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;1;0;Young +8341;France;F;Armed forces occupations;Mining and quarrying   ;Y15-29;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;1;0;Young +8342;France;F;Armed forces occupations;Manufacturing   ;Y15-29;73;1;2.7818309944536694e-07;64932339;1.1242471952227072e-06;1;0;Young +8343;France;F;Armed forces occupations;Manufacturing   ;Y30-49;52;1;1.9815782426245315e-07;64932339;8.008336185148051e-07;1;0;Young +8344;France;F;Armed forces occupations;Manufacturing   ;Y50-64;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +8345;France;F;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;1;0;Young +8346;France;F;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;1;0;Young +8347;France;F;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;1;0;Young +8348;France;F;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;1;0;Young +8349;France;F;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8350;France;F;Armed forces occupations;Construction   ;Y15-29;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;1;0;Young +8351;France;F;Armed forces occupations;Construction   ;Y30-49;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;1;0;Young +8352;France;F;Armed forces occupations;Construction   ;Y50-64;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8353;France;F;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;76;1;2.896152816143546e-07;64932339;1.1704491347524075e-06;1;0;Young +8354;France;F;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;1;0;Young +8355;France;F;Armed forces occupations;Transportation and storage   ;Y15-29;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;1;0;Young +8356;France;F;Armed forces occupations;Transportation and storage   ;Y30-49;28;1;1.067003669105517e-07;64932339;4.312181022772027e-07;1;0;Young +8357;France;F;Armed forces occupations;Transportation and storage   ;Y50-64;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +8358;France;F;Armed forces occupations;Accommodation and food service activities   ;Y15-29;305;1;1.162271853847081e-06;64932339;4.69719718551953e-06;1;0;Young +8359;France;F;Armed forces occupations;Accommodation and food service activities   ;Y30-49;202;1;7.697669327118372e-07;64932339;3.11093059499982e-06;1;0;Young +8360;France;F;Armed forces occupations;Accommodation and food service activities   ;Y50-64;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +8361;France;F;Armed forces occupations;Information and communication   ;Y15-29;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;1;0;Young +8362;France;F;Armed forces occupations;Information and communication   ;Y30-49;43;1;1.638612777554901e-07;64932339;6.622277999257042e-07;1;0;Young +8363;France;F;Armed forces occupations;Information and communication   ;Y50-64;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +8364;France;F;Armed forces occupations;Financial and insurance activities   ;Y15-29;23;1;8.764672996223889e-08;64932339;3.5421486972770223e-07;1;0;Young +8365;France;F;Armed forces occupations;Financial and insurance activities   ;Y30-49;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;1;0;Young +8366;France;F;Armed forces occupations;Financial and insurance activities   ;Y50-64;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8367;France;F;Armed forces occupations;Real estate activities   ;Y15-29;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;1;0;Young +8368;France;F;Armed forces occupations;Real estate activities   ;Y30-49;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;1;0;Young +8369;France;F;Armed forces occupations;Real estate activities   ;Y50-64;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +8370;France;F;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;46;1;1.7529345992447778e-07;64932339;7.084297394554045e-07;1;0;Young +8371;France;F;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;1;0;Young +8372;France;F;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8373;France;F;Armed forces occupations;Administrative and support service activities   ;Y15-29;81;1;3.086689185626674e-07;64932339;1.247452367301908e-06;1;0;Young +8374;France;F;Armed forces occupations;Administrative and support service activities   ;Y30-49;56;1;2.134007338211034e-07;64932339;8.624362045544054e-07;1;0;Young +8375;France;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;16041;1;6.112787805757714e-05;64932339;0.0002470417706653075;1;0;Young +8376;France;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;13194;1;5.027873717920782e-05;64932339;0.0002031961300516219;1;0;Young +8377;France;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;1036;1;3.947913575690413e-06;64932339;1.59550697842565e-05;0;1;Old +8378;France;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;0;1;Old +8379;France;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8380;France;F;Armed forces occupations;Education   ;Y15-29;354;1;1.3489974959405465e-06;64932339;5.451828864504635e-06;1;0;Young +8381;France;F;Armed forces occupations;Education   ;Y30-49;151;1;5.754198358390467e-07;64932339;2.325497622994915e-06;1;0;Young +8382;France;F;Armed forces occupations;Education   ;Y50-64;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +8383;France;F;Armed forces occupations;Education   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8384;France;F;Armed forces occupations;Human health and social work activities   ;Y15-29;514;1;1.958713878286556e-06;64932339;7.91593230608865e-06;1;0;Young +8385;France;F;Armed forces occupations;Human health and social work activities   ;Y30-49;496;1;1.89012078527263e-06;64932339;7.638720668910448e-06;1;0;Young +8386;France;F;Armed forces occupations;Human health and social work activities   ;Y50-64;66;1;2.51508007717729e-07;64932339;1.0164426696534065e-06;0;1;Old +8387;France;F;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;66;1;2.51508007717729e-07;64932339;1.0164426696534065e-06;1;0;Young +8388;France;F;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;68;1;2.591294624970541e-07;64932339;1.0472439626732067e-06;1;0;Young +8389;France;F;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +8390;France;F;Armed forces occupations;Other service activities   ;Y15-29;164;1;6.2495929190466e-07;64932339;2.525706027623616e-06;1;0;Young +8391;France;F;Armed forces occupations;Other service activities   ;Y30-49;134;1;5.106374702147831e-07;64932339;2.063686632326613e-06;1;0;Young +8392;France;F;Armed forces occupations;Other service activities   ;Y50-64;17;1;6.478236562426352e-08;64932339;2.6181099066830167e-07;0;1;Old +8393;France;F;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;1;0;Young +8394;France;F;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;1;0;Young +8395;France;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;9;1;3.429654650696304e-08;64932339;1.3860581858910087e-07;1;0;Young +8396;France;F;Armed forces occupations;Not stated   ;Y15-29;1092;1;4.161314309511516e-06;64932339;1.6817505988810907e-05;1;0;Young +8397;France;F;Armed forces occupations;Not stated   ;Y30-49;1162;1;4.4280652267878955e-06;64932339;1.7895551244503915e-05;1;0;Young +8398;France;F;Armed forces occupations;Not stated   ;Y50-64;478;1;1.821527692258704e-06;64932339;7.361509031732246e-06;0;1;Old +8399;France;F;Armed forces occupations;Not stated   ;Y65-84;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;0;1;Old +8400;France;F;Managers;Agriculture, forestry and fishing   ;Y15-29;245;1;9.336282104673273e-07;64932339;3.773158394925524e-06;1;0;Young +8401;France;F;Managers;Agriculture, forestry and fishing   ;Y30-49;1536;1;5.853277270521693e-06;64932339;2.365539303920655e-05;1;0;Young +8402;France;F;Managers;Agriculture, forestry and fishing   ;Y50-64;989;1;3.7688093883762724e-06;64932339;1.5231239398291196e-05;0;1;Old +8403;France;F;Managers;Agriculture, forestry and fishing   ;Y65-84;87;1;3.3153328290064277e-07;64932339;1.3398562463613084e-06;0;1;Old +8404;France;F;Managers;Agriculture, forestry and fishing   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8405;France;F;Managers;Mining and quarrying   ;Y15-29;67;1;2.5531873510739155e-07;64932339;1.0318433161633065e-06;1;0;Young +8406;France;F;Managers;Mining and quarrying   ;Y30-49;200;1;7.621454779325121e-07;64932339;3.0801293019800195e-06;1;0;Young +8407;France;F;Managers;Mining and quarrying   ;Y50-64;74;1;2.819938268350295e-07;64932339;1.1396478417326071e-06;0;1;Old +8408;France;F;Managers;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8409;France;F;Managers;Manufacturing   ;Y15-29;8942;1;3.4075524318362614e-05;64932339;0.00013771258109152666;1;0;Young +8410;France;F;Managers;Manufacturing   ;Y30-49;36106;1;0.0001375901231311564;64932339;0.0005560557428864529;1;0;Young +8411;France;F;Managers;Manufacturing   ;Y50-64;10552;1;4.0210795415719336e-05;64932339;0.00016250762197246582;0;1;Old +8412;France;F;Managers;Manufacturing   ;Y65-84;156;1;5.944734727873595e-07;64932339;2.4025008555444153e-06;0;1;Old +8413;France;F;Managers;Manufacturing   ;Y_GE85;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;0;1;Old +8414;France;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;771;1;2.9380708174298343e-06;64932339;1.1873898459132975e-05;1;0;Young +8415;France;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;3231;1;1.2312460195999733e-05;64932339;4.975948887348721e-05;1;0;Young +8416;France;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1005;1;3.829781026610873e-06;64932339;1.54776497424496e-05;0;1;Old +8417;France;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8418;France;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;470;1;1.7910418731414035e-06;64932339;7.238303859653046e-06;1;0;Young +8419;France;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1872;1;7.133681673448313e-06;64932339;2.8830010266532982e-05;1;0;Young +8420;France;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;548;1;2.088278609535083e-06;64932339;8.439554287425254e-06;0;1;Old +8421;France;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +8422;France;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8423;France;F;Managers;Construction   ;Y15-29;1890;1;7.202274766462239e-06;64932339;2.9107221903711183e-05;1;0;Young +8424;France;F;Managers;Construction   ;Y30-49;6576;1;2.5059343314421e-05;64932339;0.00010127465144910304;1;0;Young +8425;France;F;Managers;Construction   ;Y50-64;2895;1;1.1032055793073112e-05;64932339;4.4584871646160786e-05;0;1;Old +8426;France;F;Managers;Construction   ;Y65-84;70;1;2.6675091727637925e-07;64932339;1.0780452556930068e-06;0;1;Old +8427;France;F;Managers;Construction   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8428;France;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6613;1;2.5200340227838513e-05;64932339;0.00010184447536996935;1;0;Young +8429;France;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;28777;1;0.00010966130209231951;64932339;0.0004431844046153951;1;0;Young +8430;France;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9772;1;3.723842805178254e-05;64932339;0.00015049511769474376;0;1;Old +8431;France;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;257;1;9.79356939143278e-07;64932339;3.957966153044325e-06;0;1;Old +8432;France;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;43;1;1.638612777554901e-07;64932339;6.622277999257042e-07;0;1;Old +8433;France;F;Managers;Transportation and storage   ;Y15-29;2214;1;8.436950440712908e-06;64932339;3.409703137291882e-05;1;0;Young +8434;France;F;Managers;Transportation and storage   ;Y30-49;13191;1;5.026730499703883e-05;64932339;0.0002031499281120922;1;0;Young +8435;France;F;Managers;Transportation and storage   ;Y50-64;5596;1;2.132483047255169e-05;64932339;8.618201786940094e-05;0;1;Old +8436;France;F;Managers;Transportation and storage   ;Y65-84;59;1;2.2483291599009106e-07;64932339;9.086381440841058e-07;0;1;Old +8437;France;F;Managers;Accommodation and food service activities   ;Y15-29;4607;1;1.7556021084175417e-05;64932339;7.095077847110975e-05;1;0;Young +8438;France;F;Managers;Accommodation and food service activities   ;Y30-49;19290;1;7.350893134659079e-05;64932339;0.0002970784711759729;1;0;Young +8439;France;F;Managers;Accommodation and food service activities   ;Y50-64;8007;1;3.051249420902812e-05;64932339;0.00012331297660477008;0;1;Old +8440;France;F;Managers;Accommodation and food service activities   ;Y65-84;427;1;1.6271805953859134e-06;64932339;6.576076059727341e-06;0;1;Old +8441;France;F;Managers;Accommodation and food service activities   ;Y_GE85;27;1;1.0288963952088914e-07;64932339;4.1581745576730264e-07;0;1;Old +8442;France;F;Managers;Information and communication   ;Y15-29;5880;1;2.2407077051215855e-05;64932339;9.055580147821258e-05;1;0;Young +8443;France;F;Managers;Information and communication   ;Y30-49;20563;1;7.835998731363123e-05;64932339;0.0003166834941830757;1;0;Young +8444;France;F;Managers;Information and communication   ;Y50-64;5483;1;2.0894218277519818e-05;64932339;8.444174481378224e-05;0;1;Old +8445;France;F;Managers;Information and communication   ;Y65-84;66;1;2.51508007717729e-07;64932339;1.0164426696534065e-06;0;1;Old +8446;France;F;Managers;Information and communication   ;Y_GE85;6;1;2.2864364337975363e-08;64932339;9.240387905940059e-08;0;1;Old +8447;France;F;Managers;Financial and insurance activities   ;Y15-29;8317;1;3.169381969982352e-05;64932339;0.0001280871770228391;1;0;Young +8448;France;F;Managers;Financial and insurance activities   ;Y30-49;43613;1;0.00016619725364535326;64932339;0.000671668396236273;1;0;Young +8449;France;F;Managers;Financial and insurance activities   ;Y50-64;16088;1;6.130698224489127e-05;64932339;0.00024776560105127277;0;1;Old +8450;France;F;Managers;Financial and insurance activities   ;Y65-84;146;1;5.563661988907339e-07;64932339;2.2484943904454143e-06;0;1;Old +8451;France;F;Managers;Financial and insurance activities   ;Y_GE85;17;1;6.478236562426352e-08;64932339;2.6181099066830167e-07;0;1;Old +8452;France;F;Managers;Real estate activities   ;Y15-29;804;1;3.063824821288699e-06;64932339;1.2382119793959679e-05;1;0;Young +8453;France;F;Managers;Real estate activities   ;Y30-49;4045;1;1.5414392291185056e-05;64932339;6.229561513254589e-05;1;0;Young +8454;France;F;Managers;Real estate activities   ;Y50-64;1773;1;6.75641966187172e-06;64932339;2.7305346262052875e-05;0;1;Old +8455;France;F;Managers;Real estate activities   ;Y65-84;34;1;1.2956473124852705e-07;64932339;5.236219813366033e-07;0;1;Old +8456;France;F;Managers;Real estate activities   ;Y_GE85;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +8457;France;F;Managers;Professional, scientific and technical activities   ;Y15-29;11630;1;4.4318759541775576e-05;64932339;0.00017910951891013813;1;0;Young +8458;France;F;Managers;Professional, scientific and technical activities   ;Y30-49;35597;1;0.00013565046288981815;64932339;0.0005482168138129138;1;0;Young +8459;France;F;Managers;Professional, scientific and technical activities   ;Y50-64;10329;1;3.936100320782459e-05;64932339;0.00015907327780075812;0;1;Old +8460;France;F;Managers;Professional, scientific and technical activities   ;Y65-84;170;1;6.478236562426352e-07;64932339;2.6181099066830166e-06;0;1;Old +8461;France;F;Managers;Professional, scientific and technical activities   ;Y_GE85;23;1;8.764672996223889e-08;64932339;3.5421486972770223e-07;0;1;Old +8462;France;F;Managers;Administrative and support service activities   ;Y15-29;3229;1;1.2304838741220407e-05;64932339;4.972868758046742e-05;1;0;Young +8463;France;F;Managers;Administrative and support service activities   ;Y30-49;14691;1;5.598339608153268e-05;64932339;0.00022625089787694234;1;0;Young +8464;France;F;Managers;Administrative and support service activities   ;Y50-64;4591;1;1.7495049445940815e-05;64932339;7.070436812695135e-05;0;1;Old +8465;France;F;Managers;Administrative and support service activities   ;Y65-84;125;1;4.7634092370782007e-07;64932339;1.925080813737512e-06;0;1;Old +8466;France;F;Managers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +8467;France;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;8064;1;3.072970567023889e-05;64932339;0.0001241908134558344;1;0;Young +8468;France;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;43400;1;0.00016538556871135513;64932339;0.0006683880585296642;1;0;Young +8469;France;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;29563;1;0.00011265653382059428;64932339;0.0004552893127721766;0;1;Old +8470;France;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;240;1;9.145745735190145e-07;64932339;3.6961551623760234e-06;0;1;Old +8471;France;F;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +8472;France;F;Managers;Education   ;Y15-29;3208;1;1.2224813466037495e-05;64932339;4.940527400375951e-05;1;0;Young +8473;France;F;Managers;Education   ;Y30-49;19761;1;7.530378394712185e-05;64932339;0.0003043321756821358;1;0;Young +8474;France;F;Managers;Education   ;Y50-64;13759;1;5.243179815436717e-05;64932339;0.00021189749532971546;0;1;Old +8475;France;F;Managers;Education   ;Y65-84;119;1;4.5347655936984473e-07;64932339;1.8326769346781117e-06;0;1;Old +8476;France;F;Managers;Education   ;Y_GE85;49;1;1.8672564209346548e-07;64932339;7.546316789851048e-07;0;1;Old +8477;France;F;Managers;Human health and social work activities   ;Y15-29;5313;1;2.0246394621277183e-05;64932339;8.182363490709922e-05;1;0;Young +8478;France;F;Managers;Human health and social work activities   ;Y30-49;42025;1;0.00016014581855056912;64932339;0.0006472121695785516;1;0;Young +8479;France;F;Managers;Human health and social work activities   ;Y50-64;30746;1;0.00011716462432256509;64932339;0.0004735082775933884;0;1;Old +8480;France;F;Managers;Human health and social work activities   ;Y65-84;694;1;2.644644808425817e-06;64932339;1.0688048677870667e-05;0;1;Old +8481;France;F;Managers;Human health and social work activities   ;Y_GE85;46;1;1.7529345992447778e-07;64932339;7.084297394554045e-07;0;1;Old +8482;France;F;Managers;Arts, entertainment and recreation   ;Y15-29;1261;1;4.805327238364489e-06;64932339;1.9420215248984022e-05;1;0;Young +8483;France;F;Managers;Arts, entertainment and recreation   ;Y30-49;5521;1;2.1039025918326997e-05;64932339;8.502696938115844e-05;1;0;Young +8484;France;F;Managers;Arts, entertainment and recreation   ;Y50-64;2446;1;9.321039195114623e-06;64932339;3.766998136321564e-05;0;1;Old +8485;France;F;Managers;Arts, entertainment and recreation   ;Y65-84;67;1;2.5531873510739155e-07;64932339;1.0318433161633065e-06;0;1;Old +8486;France;F;Managers;Arts, entertainment and recreation   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8487;France;F;Managers;Other service activities   ;Y15-29;3074;1;1.1714175995822711e-05;64932339;4.73415873714329e-05;1;0;Young +8488;France;F;Managers;Other service activities   ;Y30-49;14235;1;5.424570439184655e-05;64932339;0.0002192282030684279;1;0;Young +8489;France;F;Managers;Other service activities   ;Y50-64;6262;1;2.3862774914066955e-05;64932339;9.643884844499441e-05;0;1;Old +8490;France;F;Managers;Other service activities   ;Y65-84;94;1;3.582083746282807e-07;64932339;1.4476607719306093e-06;0;1;Old +8491;France;F;Managers;Other service activities   ;Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +8492;France;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;1;0;Young +8493;France;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;178;1;6.783094753599357e-07;64932339;2.741315078762217e-06;1;0;Young +8494;France;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;179;1;6.821202027495983e-07;64932339;2.7567157252721174e-06;0;1;Old +8495;France;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;105;1;4.0012637591456885e-07;64932339;1.6170678835395102e-06;1;0;Young +8496;France;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;906;1;3.45251901503428e-06;64932339;1.3952985737969489e-05;1;0;Young +8497;France;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;551;1;2.099710791704071e-06;64932339;8.485756226954954e-06;0;1;Old +8498;France;F;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;0;1;Old +8499;France;F;Managers;Not stated   ;Y15-29;7442;1;2.8359433233868777e-05;64932339;0.00011461161132667653;1;0;Young +8500;France;F;Managers;Not stated   ;Y30-49;16335;1;6.224823191013792e-05;64932339;0.00025156956073921807;1;0;Young +8501;France;F;Managers;Not stated   ;Y50-64;6577;1;2.506315404181066e-05;64932339;0.00010129005209561294;0;1;Old +8502;France;F;Managers;Not stated   ;Y65-84;493;1;1.8786886031036423e-06;64932339;7.592518729380748e-06;0;1;Old +8503;France;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;441;1;1.6805307788411892e-06;64932339;6.791685110865943e-06;1;0;Young +8504;France;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;2058;1;7.84247696792555e-06;64932339;3.16945305173744e-05;1;0;Young +8505;France;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;1024;1;3.902184847014462e-06;64932339;1.57702620261377e-05;0;1;Old +8506;France;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;66;1;2.51508007717729e-07;64932339;1.0164426696534065e-06;0;1;Old +8507;France;F;Professionals;Mining and quarrying   ;Y15-29;75;1;2.8580455422469204e-07;64932339;1.1550484882425073e-06;1;0;Young +8508;France;F;Professionals;Mining and quarrying   ;Y30-49;296;1;1.127975307340118e-06;64932339;4.5585913669304285e-06;1;0;Young +8509;France;F;Professionals;Mining and quarrying   ;Y50-64;84;1;3.201011007316551e-07;64932339;1.293654306831608e-06;0;1;Old +8510;France;F;Professionals;Manufacturing   ;Y15-29;19081;1;7.271248932215131e-05;64932339;0.00029385973605540374;1;0;Young +8511;France;F;Professionals;Manufacturing   ;Y30-49;63320;1;0.00024129525831343335;64932339;0.0009751689370068742;1;0;Young +8512;France;F;Professionals;Manufacturing   ;Y50-64;15979;1;6.0891612959418056e-05;64932339;0.00024608693058169364;0;1;Old +8513;France;F;Professionals;Manufacturing   ;Y65-84;180;1;6.859309301392609e-07;64932339;2.7721163717820175e-06;0;1;Old +8514;France;F;Professionals;Manufacturing   ;Y_GE85;25;1;9.526818474156401e-08;64932339;3.8501616274750244e-07;0;1;Old +8515;France;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;1968;1;7.4995115028559195e-06;64932339;3.0308472331483393e-05;1;0;Young +8516;France;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;6544;1;2.4937400037951795e-05;64932339;0.00010078183076078624;1;0;Young +8517;France;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2058;1;7.84247696792555e-06;64932339;3.16945305173744e-05;0;1;Old +8518;France;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8519;France;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;743;1;2.8313704505192823e-06;64932339;1.1442680356855772e-05;1;0;Young +8520;France;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2206;1;8.40646462159561e-06;64932339;3.397382620083962e-05;1;0;Young +8521;France;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;658;1;2.507458622397965e-06;64932339;1.0133625403514264e-05;0;1;Old +8522;France;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +8523;France;F;Professionals;Construction   ;Y15-29;3758;1;1.4320713530351903e-05;64932339;5.7875629584204564e-05;1;0;Young +8524;France;F;Professionals;Construction   ;Y30-49;8374;1;3.1911031161034283e-05;64932339;0.00012896501387390342;1;0;Young +8525;France;F;Professionals;Construction   ;Y50-64;2627;1;1.0010780852643547e-05;64932339;4.0457498381507554e-05;0;1;Old +8526;France;F;Professionals;Construction   ;Y65-84;58;1;2.2102218860042852e-07;64932339;8.932374975742057e-07;0;1;Old +8527;France;F;Professionals;Construction   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +8528;France;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;22803;1;8.689601666647537e-05;64932339;0.00035118094236525195;1;0;Young +8529;France;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;67880;1;0.0002586721752102946;64932339;0.0010453958850920187;1;0;Young +8530;France;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;25486;1;9.712019825294002e-05;64932339;0.00039250087695131387;0;1;Old +8531;France;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;608;1;2.3169222529148367e-06;64932339;9.36359307801926e-06;0;1;Old +8532;France;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;53;1;2.019685516521157e-07;64932339;8.162342650247052e-07;0;1;Old +8533;France;F;Professionals;Transportation and storage   ;Y15-29;2865;1;1.0917733971383236e-05;64932339;4.412285225086378e-05;1;0;Young +8534;France;F;Professionals;Transportation and storage   ;Y30-49;13607;1;5.185256759113846e-05;64932339;0.00020955659706021064;1;0;Young +8535;France;F;Professionals;Transportation and storage   ;Y50-64;5640;1;2.149250247769684e-05;64932339;8.685964631583655e-05;0;1;Old +8536;France;F;Professionals;Transportation and storage   ;Y65-84;45;1;1.7148273253481523e-07;64932339;6.930290929455044e-07;0;1;Old +8537;France;F;Professionals;Accommodation and food service activities   ;Y15-29;2869;1;1.0932976880941886e-05;64932339;4.418445483690338e-05;1;0;Young +8538;France;F;Professionals;Accommodation and food service activities   ;Y30-49;6657;1;2.5368012232983664e-05;64932339;0.00010252210381640495;1;0;Young +8539;France;F;Professionals;Accommodation and food service activities   ;Y50-64;2366;1;9.016181003941619e-06;64932339;3.643792964242363e-05;0;1;Old +8540;France;F;Professionals;Accommodation and food service activities   ;Y65-84;65;1;2.4769728032806646e-07;64932339;1.0010420231435063e-06;0;1;Old +8541;France;F;Professionals;Accommodation and food service activities   ;Y_GE85;27;1;1.0288963952088914e-07;64932339;4.1581745576730264e-07;0;1;Old +8542;France;F;Professionals;Information and communication   ;Y15-29;21599;1;8.230790088932165e-05;64932339;0.0003326385639673322;1;0;Young +8543;France;F;Professionals;Information and communication   ;Y30-49;57494;1;0.00021909396054125925;64932339;0.0008854447704401962;1;0;Young +8544;France;F;Professionals;Information and communication   ;Y50-64;13990;1;5.331207618137922e-05;64932339;0.00021545504467350237;0;1;Old +8545;France;F;Professionals;Information and communication   ;Y65-84;455;1;1.7338809622964651e-06;64932339;7.007294162004545e-06;0;1;Old +8546;France;F;Professionals;Information and communication   ;Y_GE85;71;1;2.705616446660418e-07;64932339;1.093445902202907e-06;0;1;Old +8547;France;F;Professionals;Financial and insurance activities   ;Y15-29;9601;1;3.658679366815024e-05;64932339;0.00014786160714155085;1;0;Young +8548;France;F;Professionals;Financial and insurance activities   ;Y30-49;31697;1;0.00012078862607013418;64932339;0.0004881542924243034;1;0;Young +8549;France;F;Professionals;Financial and insurance activities   ;Y50-64;10351;1;3.944483921039716e-05;64932339;0.00015941209202397592;0;1;Old +8550;France;F;Professionals;Financial and insurance activities   ;Y65-84;87;1;3.3153328290064277e-07;64932339;1.3398562463613084e-06;0;1;Old +8551;France;F;Professionals;Financial and insurance activities   ;Y_GE85;18;1;6.859309301392609e-08;64932339;2.7721163717820174e-07;0;1;Old +8552;France;F;Professionals;Real estate activities   ;Y15-29;1462;1;5.571283443686664e-06;64932339;2.2515745197473943e-05;1;0;Young +8553;France;F;Professionals;Real estate activities   ;Y30-49;4949;1;1.8859289851440013e-05;64932339;7.621779957749558e-05;1;0;Young +8554;France;F;Professionals;Real estate activities   ;Y50-64;2130;1;8.116849339981253e-06;64932339;3.280337706608721e-05;0;1;Old +8555;France;F;Professionals;Real estate activities   ;Y65-84;65;1;2.4769728032806646e-07;64932339;1.0010420231435063e-06;0;1;Old +8556;France;F;Professionals;Real estate activities   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +8557;France;F;Professionals;Professional, scientific and technical activities   ;Y15-29;48973;1;0.0001866227524539446;64932339;0.0007542158615293375;1;0;Young +8558;France;F;Professionals;Professional, scientific and technical activities   ;Y30-49;120441;1;0.00045896781753834845;64932339;0.0018548692662988776;1;0;Young +8559;France;F;Professionals;Professional, scientific and technical activities   ;Y50-64;32734;1;0.00012474035037321425;64932339;0.0005041247628550698;0;1;Old +8560;France;F;Professionals;Professional, scientific and technical activities   ;Y65-84;1120;1;4.268014676422068e-06;64932339;1.724872409108811e-05;0;1;Old +8561;France;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;116;1;4.4204437720085703e-07;64932339;1.7864749951484114e-06;0;1;Old +8562;France;F;Professionals;Administrative and support service activities   ;Y15-29;8005;1;3.0504872754248796e-05;64932339;0.00012328217531175028;1;0;Young +8563;France;F;Professionals;Administrative and support service activities   ;Y30-49;19999;1;7.621073706586155e-05;64932339;0.0003079975295514921;1;0;Young +8564;France;F;Professionals;Administrative and support service activities   ;Y50-64;5802;1;2.2109840314822176e-05;64932339;8.935455105044037e-05;0;1;Old +8565;France;F;Professionals;Administrative and support service activities   ;Y65-84;155;1;5.906627453976969e-07;64932339;2.387100209034515e-06;0;1;Old +8566;France;F;Professionals;Administrative and support service activities   ;Y_GE85;9;1;3.429654650696304e-08;64932339;1.3860581858910087e-07;0;1;Old +8567;France;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;13483;1;5.1380037394820306e-05;64932339;0.00020764691689298303;1;0;Young +8568;France;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;63319;1;0.00024129144758604367;64932339;0.0009751535363603643;1;0;Young +8569;France;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;36891;1;0.0001405815441320415;64932339;0.0005681452503967246;0;1;Old +8570;France;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;381;1;1.4518871354614356e-06;64932339;5.867646320271937e-06;0;1;Old +8571;France;F;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;57;1;2.1721146121076594e-07;64932339;8.778368510643056e-07;0;1;Old +8572;France;F;Professionals;Education   ;Y15-29;103999;1;0.00039631183779751663;64932339;0.0016016518363831003;1;0;Young +8573;France;F;Professionals;Education   ;Y30-49;442211;1;0.0016851455697100707;64932339;0.006810335293789432;1;0;Young +8574;France;F;Professionals;Education   ;Y50-64;180377;1;0.0006873675743651636;64932339;0.00277792241551625;0;1;Old +8575;France;F;Professionals;Education   ;Y65-84;2154;1;8.208306797333156e-06;64932339;3.317299258232481e-05;0;1;Old +8576;France;F;Professionals;Education   ;Y_GE85;531;1;2.02349624391082e-06;64932339;8.177743296756952e-06;0;1;Old +8577;France;F;Professionals;Human health and social work activities   ;Y15-29;48354;1;0.00018426391219974344;64932339;0.0007446828613397093;1;0;Young +8578;France;F;Professionals;Human health and social work activities   ;Y30-49;130475;1;0.0004972046561662226;64932339;0.002009399353379215;1;0;Young +8579;France;F;Professionals;Human health and social work activities   ;Y50-64;73729;1;0.0002809611197124309;64932339;0.0011354742665284244;0;1;Old +8580;France;F;Professionals;Human health and social work activities   ;Y65-84;1791;1;6.825012754885646e-06;64932339;2.7582557899231076e-05;0;1;Old +8581;France;F;Professionals;Human health and social work activities   ;Y_GE85;152;1;5.792305632287092e-07;64932339;2.340898269504815e-06;0;1;Old +8582;France;F;Professionals;Arts, entertainment and recreation   ;Y15-29;8997;1;3.428511432479406e-05;64932339;0.00013855961664957118;1;0;Young +8583;France;F;Professionals;Arts, entertainment and recreation   ;Y30-49;25951;1;9.889218648913311e-05;64932339;0.0003996621775784174;1;0;Young +8584;France;F;Professionals;Arts, entertainment and recreation   ;Y50-64;10773;1;4.105296616883476e-05;64932339;0.00016591116485115376;0;1;Old +8585;France;F;Professionals;Arts, entertainment and recreation   ;Y65-84;719;1;2.739912993167381e-06;64932339;1.107306484061817e-05;0;1;Old +8586;France;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;116;1;4.4204437720085703e-07;64932339;1.7864749951484114e-06;0;1;Old +8587;France;F;Professionals;Other service activities   ;Y15-29;8741;1;3.330956811304044e-05;64932339;0.00013461705114303676;1;0;Young +8588;France;F;Professionals;Other service activities   ;Y30-49;30168;1;0.00011496202389134012;64932339;0.00046460670391066614;1;0;Young +8589;France;F;Professionals;Other service activities   ;Y50-64;12719;1;4.8468641669118106e-05;64932339;0.00019588082295941934;0;1;Old +8590;France;F;Professionals;Other service activities   ;Y65-84;430;1;1.638612777554901e-06;64932339;6.622277999257042e-06;0;1;Old +8591;France;F;Professionals;Other service activities   ;Y_GE85;85;1;3.239118281213176e-07;64932339;1.3090549533415083e-06;0;1;Old +8592;France;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;146;1;5.563661988907339e-07;64932339;2.2484943904454143e-06;1;0;Young +8593;France;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;726;1;2.766588084895019e-06;64932339;1.1180869366187471e-05;1;0;Young +8594;France;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;497;1;1.8939315126622927e-06;64932339;7.654121315420349e-06;0;1;Old +8595;France;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +8596;France;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +8597;France;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;214;1;8.15495661387788e-07;64932339;3.2957383531186208e-06;1;0;Young +8598;France;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;1228;1;4.679573234505625e-06;64932339;1.891199391415732e-05;1;0;Young +8599;France;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;662;1;2.522701531956615e-06;64932339;1.0195227989553865e-05;0;1;Old +8600;France;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;14;1;5.335018345527585e-08;64932339;2.1560905113860136e-07;0;1;Old +8601;France;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +8602;France;F;Professionals;Not stated   ;Y15-29;35014;1;0.00013342880882164488;64932339;0.0005392382368976421;1;0;Young +8603;France;F;Professionals;Not stated   ;Y30-49;63638;1;0.00024250706962334603;64932339;0.0009800663425970225;1;0;Young +8604;France;F;Professionals;Not stated   ;Y50-64;29277;1;0.00011156666578715079;64932339;0.00045088472787034513;0;1;Old +8605;France;F;Professionals;Not stated   ;Y65-84;2721;1;1.0368989227271827e-05;64932339;4.190515915343816e-05;0;1;Old +8606;France;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;2433;1;9.27149973904901e-06;64932339;3.746977295858694e-05;1;0;Young +8607;France;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;5723;1;2.1808792851038836e-05;64932339;8.813789997615825e-05;1;0;Young +8608;France;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;2733;1;1.0414717955947778e-05;64932339;4.208996691155697e-05;0;1;Old +8609;France;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;77;1;2.9342600900401714e-07;64932339;1.1858497812623075e-06;0;1;Old +8610;France;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;18;1;6.859309301392609e-08;64932339;2.7721163717820174e-07;0;1;Old +8611;France;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;152;1;5.792305632287092e-07;64932339;2.340898269504815e-06;1;0;Young +8612;France;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;607;1;2.313111525525174e-06;64932339;9.348192431509359e-06;1;0;Young +8613;France;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;324;1;1.2346756742506695e-06;64932339;4.989809469207632e-06;0;1;Old +8614;France;F;Technicians and associate professionals;Manufacturing   ;Y15-29;30796;1;0.00011735516069204821;64932339;0.00047427830991888343;1;0;Young +8615;France;F;Technicians and associate professionals;Manufacturing   ;Y30-49;97936;1;0.00037320739763399254;64932339;0.001508277716593576;1;0;Young +8616;France;F;Technicians and associate professionals;Manufacturing   ;Y50-64;36702;1;0.00013986131665539529;64932339;0.0005652345282063534;0;1;Old +8617;France;F;Technicians and associate professionals;Manufacturing   ;Y65-84;353;1;1.3451867685508839e-06;64932339;5.436428217994735e-06;0;1;Old +8618;France;F;Technicians and associate professionals;Manufacturing   ;Y_GE85;89;1;3.3915473767996787e-07;64932339;1.3706575393811086e-06;0;1;Old +8619;France;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2801;1;1.0673847418444831e-05;64932339;4.313721087423017e-05;1;0;Young +8620;France;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;10461;1;3.9864019223260045e-05;64932339;0.00016110616314006493;1;0;Young +8621;France;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;4653;1;1.7731314544099893e-05;64932339;7.165920821056515e-05;0;1;Old +8622;France;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;0;1;Old +8623;France;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2300;1;8.764672996223889e-06;64932339;3.5421486972770226e-05;1;0;Young +8624;France;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;6576;1;2.5059343314421e-05;64932339;0.00010127465144910304;1;0;Young +8625;France;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2095;1;7.983473881343064e-06;64932339;3.226435443824071e-05;0;1;Old +8626;France;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;25;1;9.526818474156401e-08;64932339;3.8501616274750244e-07;0;1;Old +8627;France;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +8628;France;F;Technicians and associate professionals;Construction   ;Y15-29;7834;1;2.98532383706165e-05;64932339;0.00012064866475855736;1;0;Young +8629;France;F;Technicians and associate professionals;Construction   ;Y30-49;22956;1;8.747905795709373e-05;64932339;0.0003535372412812666;1;0;Young +8630;France;F;Technicians and associate professionals;Construction   ;Y50-64;8088;1;3.082116312759079e-05;64932339;0.000124560428972072;0;1;Old +8631;France;F;Technicians and associate professionals;Construction   ;Y65-84;101;1;3.848834663559186e-07;64932339;1.55546529749991e-06;0;1;Old +8632;France;F;Technicians and associate professionals;Construction   ;Y_GE85;31;1;1.1813254907953938e-07;64932339;4.77420041806903e-07;0;1;Old +8633;France;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;62320;1;0.00023748453092377079;64932339;0.0009597682904969741;1;0;Young +8634;France;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;123815;1;0.00047182521175106996;64932339;0.0019068310476232806;1;0;Young +8635;France;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;37682;1;0.0001435958294972646;64932339;0.0005803271617860555;0;1;Old +8636;France;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;547;1;2.0844678821454206e-06;64932339;8.424153640915353e-06;0;1;Old +8637;France;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;77;1;2.9342600900401714e-07;64932339;1.1858497812623075e-06;0;1;Old +8638;France;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;11761;1;4.481796482982137e-05;64932339;0.00018112700360293504;1;0;Young +8639;France;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;50874;1;0.0001938669452216931;64932339;0.0007834924905446575;1;0;Young +8640;France;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;19564;1;7.455307065135833e-05;64932339;0.00030129824831968553;0;1;Old +8641;France;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;103;1;3.9250492113524375e-07;64932339;1.58626659051971e-06;0;1;Old +8642;France;F;Technicians and associate professionals;Transportation and storage   ;Y_GE85;24;1;9.145745735190145e-08;64932339;3.6961551623760236e-07;0;1;Old +8643;France;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;8858;1;3.375542321763096e-05;64932339;0.00013641892678469507;1;0;Young +8644;France;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;15971;1;6.0861127140300755e-05;64932339;0.00024596372540961446;1;0;Young +8645;France;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;5284;1;2.013588352697697e-05;64932339;8.137701615831212e-05;0;1;Old +8646;France;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;69;1;2.629401898867167e-07;64932339;1.0626446091831066e-06;0;1;Old +8647;France;F;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +8648;France;F;Technicians and associate professionals;Information and communication   ;Y15-29;11093;1;4.227239893352678e-05;64932339;0.0001708393717343218;1;0;Young +8649;France;F;Technicians and associate professionals;Information and communication   ;Y30-49;28493;1;0.00010857905551365534;64932339;0.0004388106210065835;1;0;Young +8650;France;F;Technicians and associate professionals;Information and communication   ;Y50-64;13099;1;4.991671807718988e-05;64932339;0.0002017330686331814;0;1;Old +8651;France;F;Technicians and associate professionals;Information and communication   ;Y65-84;102;1;3.886941937455812e-07;64932339;1.57086594400981e-06;0;1;Old +8652;France;F;Technicians and associate professionals;Information and communication   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +8653;France;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;36108;1;0.00013759774458593573;64932339;0.0005560865441794728;1;0;Young +8654;France;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;98383;1;0.0003749107927771717;64932339;0.0015151618055835013;1;0;Young +8655;France;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;48764;1;0.0001858263104295051;64932339;0.0007509971264087683;0;1;Old +8656;France;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;320;1;1.2194327646920193e-06;64932339;4.928206883168031e-06;0;1;Old +8657;France;F;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;62;1;2.3626509815907876e-07;64932339;9.54840083613806e-07;0;1;Old +8658;France;F;Technicians and associate professionals;Real estate activities   ;Y15-29;16142;1;6.151276152393305e-05;64932339;0.0002485972359628074;1;0;Young +8659;France;F;Technicians and associate professionals;Real estate activities   ;Y30-49;38758;1;0.00014769617216854153;64932339;0.0005968982574307079;1;0;Young +8660;France;F;Technicians and associate professionals;Real estate activities   ;Y50-64;16606;1;6.328093903273647e-05;64932339;0.000255743135943401;0;1;Old +8661;France;F;Technicians and associate professionals;Real estate activities   ;Y65-84;549;1;2.092089336924746e-06;64932339;8.454954933935153e-06;0;1;Old +8662;France;F;Technicians and associate professionals;Real estate activities   ;Y_GE85;31;1;1.1813254907953938e-07;64932339;4.77420041806903e-07;0;1;Old +8663;France;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;46829;1;0.00017845255293050805;64932339;0.0007211968754121116;1;0;Young +8664;France;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;97457;1;0.00037138205921434416;64932339;0.001500900806915334;1;0;Young +8665;France;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;30988;1;0.00011808682035086343;64932339;0.0004772352340487842;0;1;Old +8666;France;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;402;1;1.5319124106443494e-06;64932339;6.191059896979839e-06;0;1;Old +8667;France;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;37;1;1.4099691341751475e-07;64932339;5.698239208663036e-07;0;1;Old +8668;France;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;31269;1;0.00011915763474735861;64932339;0.00048156281571806617;1;0;Young +8669;France;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;54021;1;0.0002058593043169612;64932339;0.0008319583251113131;1;0;Young +8670;France;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;14071;1;5.362074509994189e-05;64932339;0.00021670249704080428;0;1;Old +8671;France;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;240;1;9.145745735190145e-07;64932339;3.6961551623760234e-06;0;1;Old +8672;France;F;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;0;1;Old +8673;France;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;44162;1;0.000168289342982278;64932339;0.0006801233511702081;1;0;Young +8674;France;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;177939;1;0.0006780770209891664;64932339;0.0027403756393251134;1;0;Young +8675;France;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;110157;1;0.00041977829706305866;64932339;0.0016964890175910651;0;1;Old +8676;France;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;490;1;1.8672564209346547e-06;64932339;7.546316789851048e-06;0;1;Old +8677;France;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;94;1;3.582083746282807e-07;64932339;1.4476607719306093e-06;0;1;Old +8678;France;F;Technicians and associate professionals;Education   ;Y15-29;41159;1;0.00015684572863112133;64932339;0.0006338752097009782;1;0;Young +8679;France;F;Technicians and associate professionals;Education   ;Y30-49;73038;1;0.0002783279070861741;64932339;0.0011248324197900834;1;0;Young +8680;France;F;Technicians and associate professionals;Education   ;Y50-64;33239;1;0.00012666476770499386;64932339;0.0005119020893425693;0;1;Old +8681;France;F;Technicians and associate professionals;Education   ;Y65-84;326;1;1.2422971290299947e-06;64932339;5.0206107622274314e-06;0;1;Old +8682;France;F;Technicians and associate professionals;Education   ;Y_GE85;61;1;2.3245437076941619e-07;64932339;9.394394371039059e-07;0;1;Old +8683;France;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;166566;1;0.0006347376183865341;64932339;0.0025652240865680197;1;0;Young +8684;France;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;430456;1;0.0016403504692445873;64932339;0.006629300694065556;1;0;Young +8685;France;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;184629;1;0.0007035707872260089;64932339;0.002843405964476345;0;1;Old +8686;France;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;2112;1;8.048256246967328e-06;64932339;3.252616542890901e-05;0;1;Old +8687;France;F;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;630;1;2.400758255487413e-06;64932339;9.702407301237062e-06;0;1;Old +8688;France;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;12689;1;4.835431984742823e-05;64932339;0.00019541880356412235;1;0;Young +8689;France;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;22935;1;8.739903268191083e-05;64932339;0.00035321382770455876;1;0;Young +8690;France;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;7997;1;3.0474386935131498e-05;64932339;0.00012315897013967107;0;1;Old +8691;France;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;142;1;5.411232893320836e-07;64932339;2.186891804405814e-06;0;1;Old +8692;France;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;6;1;2.2864364337975363e-08;64932339;9.240387905940059e-08;0;1;Old +8693;France;F;Technicians and associate professionals;Other service activities   ;Y15-29;20614;1;7.855433441050403e-05;64932339;0.00031746892715508063;1;0;Young +8694;France;F;Technicians and associate professionals;Other service activities   ;Y30-49;46637;1;0.00017772089327169283;64932339;0.0007182399512822108;1;0;Young +8695;France;F;Technicians and associate professionals;Other service activities   ;Y50-64;19059;1;7.262865331957874e-05;64932339;0.00029352092183218597;0;1;Old +8696;France;F;Technicians and associate professionals;Other service activities   ;Y65-84;761;1;2.8999635435332087e-06;64932339;1.1719891994033975e-05;0;1;Old +8697;France;F;Technicians and associate professionals;Other service activities   ;Y_GE85;522;1;1.9891996974038564e-06;64932339;8.039137478167851e-06;0;1;Old +8698;France;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;220;1;8.383600257257633e-07;64932339;3.3881422321780214e-06;1;0;Young +8699;France;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1045;1;3.9822101221973755e-06;64932339;1.6093675602845603e-05;1;0;Young +8700;France;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;755;1;2.877099179195233e-06;64932339;1.1627488114974574e-05;0;1;Old +8701;France;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +8702;France;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;348;1;1.326133131602571e-06;64932339;5.359424985445234e-06;1;0;Young +8703;France;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2004;1;7.63669768888377e-06;64932339;3.08628956058398e-05;1;0;Young +8704;France;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;994;1;3.7878630253245854e-06;64932339;1.5308242630840698e-05;0;1;Old +8705;France;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +8706;France;F;Technicians and associate professionals;Not stated   ;Y15-29;73744;1;0.0002810182806232759;64932339;0.0011357052762260727;1;0;Young +8707;France;F;Technicians and associate professionals;Not stated   ;Y30-49;112171;1;0.00042745310202583906;64932339;0.001727505919662004;1;0;Young +8708;France;F;Technicians and associate professionals;Not stated   ;Y50-64;50688;1;0.00019315814992721587;64932339;0.0007806279702938162;0;1;Old +8709;France;F;Technicians and associate professionals;Not stated   ;Y65-84;3235;1;1.2327703105558383e-05;64932339;4.982109145952682e-05;0;1;Old +8710;France;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;1450;1;5.525554715010713e-06;64932339;2.233093743935514e-05;1;0;Young +8711;France;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;7599;1;2.8957717434045797e-05;64932339;0.00011702951282873084;1;0;Young +8712;France;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;3977;1;1.5155262828688004e-05;64932339;6.124837116987269e-05;0;1;Old +8713;France;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;72;1;2.7437237205570434e-07;64932339;1.108846548712807e-06;0;1;Old +8714;France;F;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8715;France;F;Clerical support workers;Mining and quarrying   ;Y15-29;258;1;9.831676665329406e-07;64932339;3.973366799554225e-06;1;0;Young +8716;France;F;Clerical support workers;Mining and quarrying   ;Y30-49;998;1;3.8031059348832353e-06;64932339;1.53698452168803e-05;1;0;Young +8717;France;F;Clerical support workers;Mining and quarrying   ;Y50-64;475;1;1.8100955100897163e-06;64932339;7.315307092202547e-06;0;1;Old +8718;France;F;Clerical support workers;Mining and quarrying   ;Y65-84;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +8719;France;F;Clerical support workers;Manufacturing   ;Y15-29;18953;1;7.222471621627451e-05;64932339;0.00029188845330213657;1;0;Young +8720;France;F;Clerical support workers;Manufacturing   ;Y30-49;68412;1;0.0002606994821815951;64932339;0.0010535890290352854;1;0;Young +8721;France;F;Clerical support workers;Manufacturing   ;Y50-64;33528;1;0.00012776606792060634;64932339;0.0005163528761839305;0;1;Old +8722;France;F;Clerical support workers;Manufacturing   ;Y65-84;466;1;1.7757989635827531e-06;64932339;7.176701273613446e-06;0;1;Old +8723;France;F;Clerical support workers;Manufacturing   ;Y_GE85;92;1;3.5058691984895557e-07;64932339;1.416859478910809e-06;0;1;Old +8724;France;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1348;1;5.136860521265132e-06;64932339;2.076007149534533e-05;1;0;Young +8725;France;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;3123;1;1.1900901637916177e-05;64932339;4.8096219050418004e-05;1;0;Young +8726;France;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1440;1;5.4874474411140875e-06;64932339;2.217693097425614e-05;0;1;Old +8727;France;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;42;1;1.6005055036582754e-07;64932339;6.46827153415804e-07;0;1;Old +8728;France;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;9;1;3.429654650696304e-08;64932339;1.3860581858910087e-07;0;1;Old +8729;France;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2346;1;8.939966456148367e-06;64932339;3.612991671222563e-05;1;0;Young +8730;France;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;8058;1;3.0706841305900915e-05;64932339;0.00012409840957677498;1;0;Young +8731;France;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2795;1;1.0650983054106857e-05;64932339;4.304480699517077e-05;0;1;Old +8732;France;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;45;1;1.7148273253481523e-07;64932339;6.930290929455044e-07;0;1;Old +8733;France;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8734;France;F;Clerical support workers;Construction   ;Y15-29;14259;1;5.433716184919845e-05;64932339;0.0002195978185846655;1;0;Young +8735;France;F;Clerical support workers;Construction   ;Y30-49;48228;1;0.00018378376054864598;64932339;0.0007427423798794619;1;0;Young +8736;France;F;Clerical support workers;Construction   ;Y50-64;18849;1;7.18284005677496e-05;64932339;0.00029028678606510695;0;1;Old +8737;France;F;Clerical support workers;Construction   ;Y65-84;399;1;1.5204802284753616e-06;64932339;6.144857957450139e-06;0;1;Old +8738;France;F;Clerical support workers;Construction   ;Y_GE85;57;1;2.1721146121076594e-07;64932339;8.778368510643056e-07;0;1;Old +8739;France;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;39880;1;0.0001519718082997429;64932339;0.0006141777828148159;1;0;Young +8740;France;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;114213;1;0.00043523460735553;64932339;0.0017589540398352198;1;0;Young +8741;France;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;46271;1;0.00017632616704707635;64932339;0.0007126033146595875;0;1;Old +8742;France;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;825;1;3.1438500964716126e-06;64932339;1.270553337066758e-05;0;1;Old +8743;France;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;187;1;7.126060218668988e-07;64932339;2.8799208973513184e-06;0;1;Old +8744;France;F;Clerical support workers;Transportation and storage   ;Y15-29;26540;1;0.00010113670492164436;64932339;0.0004087331583727486;1;0;Young +8745;France;F;Clerical support workers;Transportation and storage   ;Y30-49;87437;1;0.0003331985707699253;64932339;0.0013465863288861348;1;0;Young +8746;France;F;Clerical support workers;Transportation and storage   ;Y50-64;32257;1;0.00012292263340834522;64932339;0.0004967786544698475;0;1;Old +8747;France;F;Clerical support workers;Transportation and storage   ;Y65-84;440;1;1.6767200514515266e-06;64932339;6.776284464356043e-06;0;1;Old +8748;France;F;Clerical support workers;Transportation and storage   ;Y_GE85;105;1;4.0012637591456885e-07;64932339;1.6170678835395102e-06;0;1;Old +8749;France;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;19339;1;7.369565698868426e-05;64932339;0.000297833102854958;1;0;Young +8750;France;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;30819;1;0.00011744280742201045;64932339;0.0004746325247886111;1;0;Young +8751;France;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;11089;1;4.225715602396813e-05;64932339;0.0001707777691482822;0;1;Old +8752;France;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;252;1;9.603033021949652e-07;64932339;3.880962920494825e-06;0;1;Old +8753;France;F;Clerical support workers;Accommodation and food service activities   ;Y_GE85;41;1;1.56239822976165e-07;64932339;6.31426506905904e-07;0;1;Old +8754;France;F;Clerical support workers;Information and communication   ;Y15-29;8821;1;3.361442630421345e-05;64932339;0.00013584910286382876;1;0;Young +8755;France;F;Clerical support workers;Information and communication   ;Y30-49;18060;1;6.882173665730584e-05;64932339;0.00027813567596879574;1;0;Young +8756;France;F;Clerical support workers;Information and communication   ;Y50-64;8288;1;3.15833086055233e-05;64932339;0.000127640558274052;0;1;Old +8757;France;F;Clerical support workers;Information and communication   ;Y65-84;116;1;4.4204437720085703e-07;64932339;1.7864749951484114e-06;0;1;Old +8758;France;F;Clerical support workers;Information and communication   ;Y_GE85;33;1;1.257540038588645e-07;64932339;5.082213348267033e-07;0;1;Old +8759;France;F;Clerical support workers;Financial and insurance activities   ;Y15-29;42109;1;0.00016046591965130077;64932339;0.0006485058238853832;1;0;Young +8760;France;F;Clerical support workers;Financial and insurance activities   ;Y30-49;78082;1;0.00029754921603963207;64932339;0.0012025132807860193;1;0;Young +8761;France;F;Clerical support workers;Financial and insurance activities   ;Y50-64;39778;1;0.00015158311410599733;64932339;0.0006126069168708061;0;1;Old +8762;France;F;Clerical support workers;Financial and insurance activities   ;Y65-84;332;1;1.2651614933679701e-06;64932339;5.1130146412868325e-06;0;1;Old +8763;France;F;Clerical support workers;Financial and insurance activities   ;Y_GE85;103;1;3.9250492113524375e-07;64932339;1.58626659051971e-06;0;1;Old +8764;France;F;Clerical support workers;Real estate activities   ;Y15-29;10693;1;4.074810797766176e-05;64932339;0.00016467911313036175;1;0;Young +8765;France;F;Clerical support workers;Real estate activities   ;Y30-49;23367;1;8.904526691424506e-05;64932339;0.0003598669069968356;1;0;Young +8766;France;F;Clerical support workers;Real estate activities   ;Y50-64;10187;1;3.88198799184925e-05;64932339;0.0001568863859963523;0;1;Old +8767;France;F;Clerical support workers;Real estate activities   ;Y65-84;173;1;6.592558384116229e-07;64932339;2.6643118462127167e-06;0;1;Old +8768;France;F;Clerical support workers;Real estate activities   ;Y_GE85;29;1;1.1051109430021426e-07;64932339;4.4661874878710285e-07;0;1;Old +8769;France;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;37205;1;0.00014177811253239558;64932339;0.0005729810534008331;1;0;Young +8770;France;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;86270;1;0.0003287514519061891;64932339;0.0013286137744090813;1;0;Young +8771;France;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;32260;1;0.0001229340655905142;64932339;0.0004968248564093771;0;1;Old +8772;France;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;686;1;2.6141589893085166e-06;64932339;1.0564843505791467e-05;0;1;Old +8773;France;F;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;155;1;5.906627453976969e-07;64932339;2.387100209034515e-06;0;1;Old +8774;France;F;Clerical support workers;Administrative and support service activities   ;Y15-29;34558;1;0.00013169111713195878;64932339;0.0005322155420891275;1;0;Young +8775;France;F;Clerical support workers;Administrative and support service activities   ;Y30-49;54240;1;0.0002066938536152973;64932339;0.0008353310666969813;1;0;Young +8776;France;F;Clerical support workers;Administrative and support service activities   ;Y50-64;15738;1;5.997322765850938e-05;64932339;0.00024237537477280773;0;1;Old +8777;France;F;Clerical support workers;Administrative and support service activities   ;Y65-84;324;1;1.2346756742506695e-06;64932339;4.989809469207632e-06;0;1;Old +8778;France;F;Clerical support workers;Administrative and support service activities   ;Y_GE85;117;1;4.458551045905196e-07;64932339;1.8018756416583114e-06;0;1;Old +8779;France;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;46966;1;0.00017897462258289183;64932339;0.0007233067639839679;1;0;Young +8780;France;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;226952;1;0.0008648522025386974;64932339;0.003495207526714847;1;0;Young +8781;France;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;134383;1;0.0005120969788050239;64932339;0.002069585079939905;0;1;Old +8782;France;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;775;1;2.9533137269884843e-06;64932339;1.1935501045172576e-05;0;1;Old +8783;France;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;149;1;5.677983810597215e-07;64932339;2.2946963299751144e-06;0;1;Old +8784;France;F;Clerical support workers;Education   ;Y15-29;16088;1;6.130698224489127e-05;64932339;0.00024776560105127277;1;0;Young +8785;France;F;Clerical support workers;Education   ;Y30-49;63223;1;0.00024092561775663606;64932339;0.0009736750742954139;1;0;Young +8786;France;F;Clerical support workers;Education   ;Y50-64;34348;1;0.00013089086438012964;64932339;0.0005289814063220486;0;1;Old +8787;France;F;Clerical support workers;Education   ;Y65-84;284;1;1.0822465786641672e-06;64932339;4.373783608811628e-06;0;1;Old +8788;France;F;Clerical support workers;Education   ;Y_GE85;37;1;1.4099691341751475e-07;64932339;5.698239208663036e-07;0;1;Old +8789;France;F;Clerical support workers;Human health and social work activities   ;Y15-29;26545;1;0.00010115575855859267;64932339;0.0004088101616052981;1;0;Young +8790;France;F;Clerical support workers;Human health and social work activities   ;Y30-49;91796;1;0.00034980953146146443;64932339;0.0014137177470227894;1;0;Young +8791;France;F;Clerical support workers;Human health and social work activities   ;Y50-64;48496;1;0.00018480503548907554;64932339;0.0007468697531441152;0;1;Old +8792;France;F;Clerical support workers;Human health and social work activities   ;Y65-84;461;1;1.7567453266344403e-06;64932339;7.099698041063945e-06;0;1;Old +8793;France;F;Clerical support workers;Human health and social work activities   ;Y_GE85;74;1;2.819938268350295e-07;64932339;1.1396478417326071e-06;0;1;Old +8794;France;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;6491;1;2.473543148629968e-05;64932339;9.996559649576154e-05;1;0;Young +8795;France;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;16812;1;6.406594887500697e-05;64932339;0.00025891566912444045;1;0;Young +8796;France;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;7226;1;2.7536316117701662e-05;64932339;0.00011128507168053811;0;1;Old +8797;France;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;191;1;7.27848931425549e-07;64932339;2.9415234833909187e-06;0;1;Old +8798;France;F;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;74;1;2.819938268350295e-07;64932339;1.1396478417326071e-06;0;1;Old +8799;France;F;Clerical support workers;Other service activities   ;Y15-29;13277;1;5.0595027552549813e-05;64932339;0.0002044743837119436;1;0;Young +8800;France;F;Clerical support workers;Other service activities   ;Y30-49;39739;1;0.0001514344957378005;64932339;0.00061200629165692;1;0;Young +8801;France;F;Clerical support workers;Other service activities   ;Y50-64;20050;1;7.640508416273434e-05;64932339;0.00030878296252349695;0;1;Old +8802;France;F;Clerical support workers;Other service activities   ;Y65-84;383;1;1.4595085902407606e-06;64932339;5.898447613291738e-06;0;1;Old +8803;France;F;Clerical support workers;Other service activities   ;Y_GE85;198;1;7.54524023153187e-07;64932339;3.0493280089602196e-06;0;1;Old +8804;France;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;313;1;1.1927576729643815e-06;64932339;4.820402357598731e-06;1;0;Young +8805;France;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1626;1;6.196242735591324e-06;64932339;2.504145122509756e-05;1;0;Young +8806;France;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1306;1;4.976809970899304e-06;64932339;2.0113244341929528e-05;0;1;Old +8807;France;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +8808;France;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;305;1;1.162271853847081e-06;64932339;4.69719718551953e-06;1;0;Young +8809;France;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1851;1;7.0536563982653995e-06;64932339;2.850659668982508e-05;1;0;Young +8810;France;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1075;1;4.096531943887253e-06;64932339;1.6555694998142604e-05;0;1;Old +8811;France;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;42;1;1.6005055036582754e-07;64932339;6.46827153415804e-07;0;1;Old +8812;France;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8813;France;F;Clerical support workers;Not stated   ;Y15-29;76005;1;0.00028963433525130294;64932339;0.0011705261379849569;1;0;Young +8814;France;F;Clerical support workers;Not stated   ;Y30-49;129251;1;0.0004925403258412756;64932339;0.0019905489620510976;1;0;Young +8815;France;F;Clerical support workers;Not stated   ;Y50-64;74142;1;0.00028253495012436154;64932339;0.001141834733537013;0;1;Old +8816;France;F;Clerical support workers;Not stated   ;Y65-84;4984;1;1.8992665310078202e-05;64932339;7.675682220534208e-05;0;1;Old +8817;France;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;1925;1;7.335650225100429e-06;64932339;2.964624453155769e-05;1;0;Young +8818;France;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;4429;1;1.687771160881548e-05;64932339;6.820946339234754e-05;1;0;Young +8819;France;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2614;1;9.961241396577933e-06;64932339;4.025728997687886e-05;0;1;Old +8820;France;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;167;1;6.363914740736477e-07;64932339;2.5719079671533164e-06;0;1;Old +8821;France;F;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;0;1;Old +8822;France;F;Service and sales workers;Mining and quarrying   ;Y15-29;139;1;5.296911071630959e-07;64932339;2.1406898648761135e-06;1;0;Young +8823;France;F;Service and sales workers;Mining and quarrying   ;Y30-49;210;1;8.002527518291377e-07;64932339;3.2341357670790205e-06;1;0;Young +8824;France;F;Service and sales workers;Mining and quarrying   ;Y50-64;60;1;2.2864364337975364e-07;64932339;9.240387905940058e-07;0;1;Old +8825;France;F;Service and sales workers;Manufacturing   ;Y15-29;31323;1;0.00011936341402640038;64932339;0.0004823944506296008;1;0;Young +8826;France;F;Service and sales workers;Manufacturing   ;Y30-49;52266;1;0.0001991714777481034;64932339;0.0008049301904864385;1;0;Young +8827;France;F;Service and sales workers;Manufacturing   ;Y50-64;18255;1;6.956482849829005e-05;64932339;0.0002811388020382263;0;1;Old +8828;France;F;Service and sales workers;Manufacturing   ;Y65-84;304;1;1.1584611264574184e-06;64932339;4.68179653900963e-06;0;1;Old +8829;France;F;Service and sales workers;Manufacturing   ;Y_GE85;54;1;2.0577927904177827e-07;64932339;8.316349115346053e-07;0;1;Old +8830;France;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;469;1;1.787231145751741e-06;64932339;7.222903213143146e-06;1;0;Young +8831;France;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;782;1;2.9799888187161225e-06;64932339;1.2043305570741876e-05;1;0;Young +8832;France;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;233;1;8.878994817913766e-07;64932339;3.588350636806723e-06;0;1;Old +8833;France;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +8834;France;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;460;1;1.752934599244778e-06;64932339;7.084297394554045e-06;1;0;Young +8835;France;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;967;1;3.684973385803696e-06;64932339;1.4892425175073394e-05;1;0;Young +8836;France;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;353;1;1.3451867685508839e-06;64932339;5.436428217994735e-06;0;1;Old +8837;France;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8838;France;F;Service and sales workers;Construction   ;Y15-29;2480;1;9.45060392636315e-06;64932339;3.819360334455224e-05;1;0;Young +8839;France;F;Service and sales workers;Construction   ;Y30-49;5401;1;2.0581738631567488e-05;64932339;8.317889179997043e-05;1;0;Young +8840;France;F;Service and sales workers;Construction   ;Y50-64;1923;1;7.328028770321104e-06;64932339;2.9615443238537887e-05;0;1;Old +8841;France;F;Service and sales workers;Construction   ;Y65-84;106;1;4.039371033042314e-07;64932339;1.6324685300494104e-06;0;1;Old +8842;France;F;Service and sales workers;Construction   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8843;France;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;252534;1;0.000962338230621045;64932339;0.003889186865731111;1;0;Young +8844;France;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;397447;1;0.0015145621688392157;64932339;0.006120940753420264;1;0;Young +8845;France;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;134698;1;0.0005132973579327675;64932339;0.0020744362835905233;0;1;Old +8846;France;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4954;1;1.8878343488388324e-05;64932339;7.629480281004508e-05;0;1;Old +8847;France;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;578;1;2.20260043122496e-06;64932339;8.901573682722256e-06;0;1;Old +8848;France;F;Service and sales workers;Transportation and storage   ;Y15-29;4535;1;1.7281648712119713e-05;64932339;6.984193192239694e-05;1;0;Young +8849;France;F;Service and sales workers;Transportation and storage   ;Y30-49;15280;1;5.822791451404392e-05;64932339;0.0002353218786712735;1;0;Young +8850;France;F;Service and sales workers;Transportation and storage   ;Y50-64;3097;1;1.180182272578495e-05;64932339;4.7695802241160604e-05;0;1;Old +8851;France;F;Service and sales workers;Transportation and storage   ;Y65-84;117;1;4.458551045905196e-07;64932339;1.8018756416583114e-06;0;1;Old +8852;France;F;Service and sales workers;Transportation and storage   ;Y_GE85;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;0;1;Old +8853;France;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;86475;1;0.0003295326510210699;64932339;0.001331770906943611;1;0;Young +8854;France;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;96106;1;0.00036623376651091007;64932339;0.0014800945334804588;1;0;Young +8855;France;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;36764;1;0.00014009758175355437;64932339;0.0005661893682899672;0;1;Old +8856;France;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;2411;1;9.187663736476434e-06;64932339;3.7130958735369135e-05;0;1;Old +8857;France;F;Service and sales workers;Accommodation and food service activities   ;Y_GE85;332;1;1.2651614933679701e-06;64932339;5.1130146412868325e-06;0;1;Old +8858;France;F;Service and sales workers;Information and communication   ;Y15-29;4855;1;1.8501081476811732e-05;64932339;7.477013880556497e-05;1;0;Young +8859;France;F;Service and sales workers;Information and communication   ;Y30-49;7486;1;2.8527105239013928e-05;64932339;0.00011528923977311213;1;0;Young +8860;France;F;Service and sales workers;Information and communication   ;Y50-64;2767;1;1.0544282687196305e-05;64932339;4.261358889289357e-05;0;1;Old +8861;France;F;Service and sales workers;Information and communication   ;Y65-84;208;1;7.926312970498126e-07;64932339;3.2033344740592205e-06;0;1;Old +8862;France;F;Service and sales workers;Information and communication   ;Y_GE85;40;1;1.5242909558650242e-07;64932339;6.160258603960039e-07;0;1;Old +8863;France;F;Service and sales workers;Financial and insurance activities   ;Y15-29;7345;1;2.7989792677071506e-05;64932339;0.00011311774861521621;1;0;Young +8864;France;F;Service and sales workers;Financial and insurance activities   ;Y30-49;11167;1;4.255439276036181e-05;64932339;0.0001719790195760544;1;0;Young +8865;France;F;Service and sales workers;Financial and insurance activities   ;Y50-64;4223;1;1.6092701766544992e-05;64932339;6.50369302113081e-05;0;1;Old +8866;France;F;Service and sales workers;Financial and insurance activities   ;Y65-84;233;1;8.878994817913766e-07;64932339;3.588350636806723e-06;0;1;Old +8867;France;F;Service and sales workers;Financial and insurance activities   ;Y_GE85;45;1;1.7148273253481523e-07;64932339;6.930290929455044e-07;0;1;Old +8868;France;F;Service and sales workers;Real estate activities   ;Y15-29;6965;1;2.6541716268999735e-05;64932339;0.00010726550294145419;1;0;Young +8869;France;F;Service and sales workers;Real estate activities   ;Y30-49;16608;1;6.328856048751581e-05;64932339;0.00025577393723642084;1;0;Young +8870;France;F;Service and sales workers;Real estate activities   ;Y50-64;13226;1;5.0400680455677026e-05;64932339;0.0002036889507399387;0;1;Old +8871;France;F;Service and sales workers;Real estate activities   ;Y65-84;962;1;3.6659197488553834e-06;64932339;1.4815421942523894e-05;0;1;Old +8872;France;F;Service and sales workers;Real estate activities   ;Y_GE85;100;1;3.8107273896625605e-07;64932339;1.5400646509900097e-06;0;1;Old +8873;France;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;6735;1;2.5665248969377347e-05;64932339;0.00010372335424417716;1;0;Young +8874;France;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;11977;1;4.564108194598849e-05;64932339;0.00018445354324907347;1;0;Young +8875;France;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;5184;1;1.9754810788010712e-05;64932339;7.983695150732211e-05;0;1;Old +8876;France;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;463;1;1.7643667814137655e-06;64932339;7.130499334083745e-06;0;1;Old +8877;France;F;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;78;1;2.9723673639367974e-07;64932339;1.2012504277722076e-06;0;1;Old +8878;France;F;Service and sales workers;Administrative and support service activities   ;Y15-29;23190;1;8.837076816627478e-05;64932339;0.00035714099256458324;1;0;Young +8879;France;F;Service and sales workers;Administrative and support service activities   ;Y30-49;28619;1;0.00010905920716475281;64932339;0.0004407511024668309;1;0;Young +8880;France;F;Service and sales workers;Administrative and support service activities   ;Y50-64;9528;1;3.6308610568704874e-05;64932339;0.00014673735994632814;0;1;Old +8881;France;F;Service and sales workers;Administrative and support service activities   ;Y65-84;503;1;1.916795877000268e-06;64932339;7.746525194479748e-06;0;1;Old +8882;France;F;Service and sales workers;Administrative and support service activities   ;Y_GE85;57;1;2.1721146121076594e-07;64932339;8.778368510643056e-07;0;1;Old +8883;France;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;17981;1;6.85206891935225e-05;64932339;0.0002769190248945137;1;0;Young +8884;France;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;46789;1;0.00017830012383492154;64932339;0.0007205808495517157;1;0;Young +8885;France;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;19113;1;7.283443259862051e-05;64932339;0.0002943525567437206;0;1;Old +8886;France;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;358;1;1.3642404054991967e-06;64932339;5.513431450544235e-06;0;1;Old +8887;France;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;38;1;1.448076408071773e-07;64932339;5.852245673762037e-07;0;1;Old +8888;France;F;Service and sales workers;Education   ;Y15-29;12430;1;4.736734145350563e-05;64932339;0.00019143003611805823;1;0;Young +8889;France;F;Service and sales workers;Education   ;Y30-49;23428;1;8.927772128501447e-05;64932339;0.0003608063464339395;1;0;Young +8890;France;F;Service and sales workers;Education   ;Y50-64;10129;1;3.8598857729892075e-05;64932339;0.0001559931484987781;0;1;Old +8891;France;F;Service and sales workers;Education   ;Y65-84;271;1;1.032707122598554e-06;64932339;4.1735752041829265e-06;0;1;Old +8892;France;F;Service and sales workers;Education   ;Y_GE85;45;1;1.7148273253481523e-07;64932339;6.930290929455044e-07;0;1;Old +8893;France;F;Service and sales workers;Human health and social work activities   ;Y15-29;112202;1;0.00042757123457491864;64932339;0.0017279833397038109;1;0;Young +8894;France;F;Service and sales workers;Human health and social work activities   ;Y30-49;414239;1;0.0015785519031664293;64932339;0.006379548409614507;1;0;Young +8895;France;F;Service and sales workers;Human health and social work activities   ;Y50-64;183231;1;0.0006982433903352606;64932339;0.002821875860655505;0;1;Old +8896;France;F;Service and sales workers;Human health and social work activities   ;Y65-84;2459;1;9.370578651180237e-06;64932339;3.787018976784434e-05;0;1;Old +8897;France;F;Service and sales workers;Human health and social work activities   ;Y_GE85;321;1;1.223243492081682e-06;64932339;4.943607529677931e-06;0;1;Old +8898;France;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;5601;1;2.13438841095e-05;64932339;8.625902110195044e-05;1;0;Young +8899;France;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;7561;1;2.881290979323862e-05;64932339;0.00011644428826135464;1;0;Young +8900;France;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2638;1;1.0052698853929834e-05;64932339;4.0626905493116455e-05;0;1;Old +8901;France;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;160;1;6.097163823460097e-07;64932339;2.4641034415840156e-06;0;1;Old +8902;France;F;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;23;1;8.764672996223889e-08;64932339;3.5421486972770223e-07;0;1;Old +8903;France;F;Service and sales workers;Other service activities   ;Y15-29;82832;1;0.0003156501711405292;64932339;0.0012756663517080448;1;0;Young +8904;France;F;Service and sales workers;Other service activities   ;Y30-49;93856;1;0.00035765962988416926;64932339;0.0014454430788331835;1;0;Young +8905;France;F;Service and sales workers;Other service activities   ;Y50-64;26992;1;0.00010285915370177184;64932339;0.0004156942505952234;0;1;Old +8906;France;F;Service and sales workers;Other service activities   ;Y65-84;1025;1;3.905995574404124e-06;64932339;1.57856626726476e-05;0;1;Old +8907;France;F;Service and sales workers;Other service activities   ;Y_GE85;168;1;6.402022014633102e-07;64932339;2.587308613663216e-06;0;1;Old +8908;France;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3166;1;1.2064762915671667e-05;64932339;4.875844685034371e-05;1;0;Young +8909;France;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;14305;1;5.4512455309122926e-05;64932339;0.0002203062483241209;1;0;Young +8910;France;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;8456;1;3.222351080698661e-05;64932339;0.00013022786688771522;0;1;Old +8911;France;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;222;1;8.459814805050885e-07;64932339;3.418943525197822e-06;0;1;Old +8912;France;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;39;1;1.4861836819683987e-07;64932339;6.006252138861038e-07;0;1;Old +8913;France;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;70;1;2.6675091727637925e-07;64932339;1.0780452556930068e-06;1;0;Young +8914;France;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;162;1;6.173378371253348e-07;64932339;2.494904734603816e-06;1;0;Young +8915;France;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;72;1;2.7437237205570434e-07;64932339;1.108846548712807e-06;0;1;Old +8916;France;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;14;1;5.335018345527585e-08;64932339;2.1560905113860136e-07;0;1;Old +8917;France;F;Service and sales workers;Not stated   ;Y15-29;153695;1;0.0005856897461541873;64932339;0.0023670023653390953;1;0;Young +8918;France;F;Service and sales workers;Not stated   ;Y30-49;164550;1;0.0006270551919689743;64932339;0.002534176383204061;1;0;Young +8919;France;F;Service and sales workers;Not stated   ;Y50-64;72066;1;0.0002746238800634221;64932339;0.0011098629913824604;0;1;Old +8920;France;F;Service and sales workers;Not stated   ;Y65-84;5666;1;2.159158138982807e-05;64932339;8.726006312509395e-05;0;1;Old +8921;France;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;12801;1;4.8781121315070436e-05;64932339;0.00019714367597323116;1;0;Young +8922;France;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;71923;1;0.0002740789460467003;64932339;0.0011076606989315447;1;0;Young +8923;France;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;59292;1;0.00022594564838787255;64932339;0.0009131351328649966;0;1;Old +8924;France;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;5542;1;2.111905119350991e-05;64932339;8.535038295786635e-05;0;1;Old +8925;France;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;779;1;2.9685566365471347e-06;64932339;1.1997103631212177e-05;0;1;Old +8926;France;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;1;0;Young +8927;France;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;57;1;2.1721146121076594e-07;64932339;8.778368510643056e-07;1;0;Young +8928;France;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8929;France;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;319;1;1.2156220373023567e-06;64932339;4.912806236658131e-06;1;0;Young +8930;France;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;1056;1;4.024128123483664e-06;64932339;1.6263082714454504e-05;1;0;Young +8931;France;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;723;1;2.755155902726031e-06;64932339;1.113466742665777e-05;0;1;Old +8932;France;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;66;1;2.51508007717729e-07;64932339;1.0164426696534065e-06;0;1;Old +8933;France;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8934;France;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;1;0;Young +8935;France;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +8936;France;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;17;1;6.478236562426352e-08;64932339;2.6181099066830167e-07;1;0;Young +8937;France;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;33;1;1.257540038588645e-07;64932339;5.082213348267033e-07;1;0;Young +8938;France;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8939;France;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8940;France;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;1;0;Young +8941;France;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;262;1;9.984105760915908e-07;64932339;4.034969385593826e-06;1;0;Young +8942;France;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;174;1;6.630665658012855e-07;64932339;2.679712492722617e-06;0;1;Old +8943;France;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;18;1;6.859309301392609e-08;64932339;2.7721163717820174e-07;0;1;Old +8944;France;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;803;1;3.0600140938990362e-06;64932339;1.2366719147449778e-05;1;0;Young +8945;France;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1947;1;7.419486227673006e-06;64932339;2.998505875477549e-05;1;0;Young +8946;France;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;963;1;3.669730476245046e-06;64932339;1.4830822589033793e-05;0;1;Old +8947;France;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;69;1;2.629401898867167e-07;64932339;1.0626446091831066e-06;0;1;Old +8948;France;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +8949;France;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;28;1;1.067003669105517e-07;64932339;4.312181022772027e-07;1;0;Young +8950;France;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;86;1;3.277225555109802e-07;64932339;1.3244555998514085e-06;1;0;Young +8951;France;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;99;1;3.772620115765935e-07;64932339;1.5246640044801098e-06;0;1;Old +8952;France;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;24;1;9.145745735190145e-08;64932339;3.6961551623760236e-07;0;1;Old +8953;France;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;151;1;5.754198358390467e-07;64932339;2.325497622994915e-06;1;0;Young +8954;France;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;252;1;9.603033021949652e-07;64932339;3.880962920494825e-06;1;0;Young +8955;France;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;199;1;7.583347505428495e-07;64932339;3.0647286554701193e-06;0;1;Old +8956;France;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;31;1;1.1813254907953938e-07;64932339;4.77420041806903e-07;0;1;Old +8957;France;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +8958;France;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;1;0;Young +8959;France;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;51;1;1.943470968727906e-07;64932339;7.85432972004905e-07;1;0;Young +8960;France;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;44;1;1.6767200514515266e-07;64932339;6.776284464356043e-07;0;1;Old +8961;France;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8962;France;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;46;1;1.7529345992447778e-07;64932339;7.084297394554045e-07;1;0;Young +8963;France;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;65;1;2.4769728032806646e-07;64932339;1.0010420231435063e-06;1;0;Young +8964;France;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;108;1;4.1155855808355654e-07;64932339;1.6632698230692106e-06;0;1;Old +8965;France;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +8966;France;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +8967;France;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;50;1;1.9053636948312803e-07;64932339;7.700323254950049e-07;1;0;Young +8968;France;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;246;1;9.374389378569899e-07;64932339;3.788559041435424e-06;1;0;Young +8969;France;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;130;1;4.953945606561329e-07;64932339;2.0020840462870127e-06;0;1;Old +8970;France;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;0;1;Old +8971;France;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;154;1;5.868520180080343e-07;64932339;2.371699562524615e-06;1;0;Young +8972;France;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;885;1;3.372493739851366e-06;64932339;1.3629572161261586e-05;1;0;Young +8973;France;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;431;1;1.6424235049445636e-06;64932339;6.637678645766942e-06;0;1;Old +8974;France;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;20;1;7.621454779325121e-08;64932339;3.0801293019800195e-07;0;1;Old +8975;France;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;1551;1;5.910438181366631e-06;64932339;2.3886402736855053e-05;1;0;Young +8976;France;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2479;1;9.446793198973487e-06;64932339;3.8178202698042344e-05;1;0;Young +8977;France;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;948;1;3.6125695654001074e-06;64932339;1.4599812891385293e-05;0;1;Old +8978;France;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;70;1;2.6675091727637925e-07;64932339;1.0780452556930068e-06;0;1;Old +8979;France;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;14;1;5.335018345527585e-08;64932339;2.1560905113860136e-07;0;1;Old +8980;France;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;759;1;2.8923420887538835e-06;64932339;1.1689090701014175e-05;1;0;Young +8981;France;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;1406;1;5.35788270986556e-06;64932339;2.1653308992919536e-05;1;0;Young +8982;France;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;616;1;2.347408072032137e-06;64932339;9.48679825009846e-06;0;1;Old +8983;France;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;31;1;1.1813254907953938e-07;64932339;4.77420041806903e-07;0;1;Old +8984;France;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +8985;France;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;800;1;3.0485819117300484e-06;64932339;1.2320517207920078e-05;1;0;Young +8986;France;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;545;1;2.0768464273660954e-06;64932339;8.393352347895553e-06;1;0;Young +8987;France;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;251;1;9.564925748053026e-07;64932339;3.8655622739849246e-06;0;1;Old +8988;France;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;29;1;1.1051109430021426e-07;64932339;4.4661874878710285e-07;0;1;Old +8989;France;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +8990;France;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;752;1;2.8656669970262457e-06;64932339;1.1581286175444874e-05;1;0;Young +8991;France;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;1481;1;5.6436872640902524e-06;64932339;2.2808357481162045e-05;1;0;Young +8992;France;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;845;1;3.2200646442648638e-06;64932339;1.3013546300865582e-05;0;1;Old +8993;France;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;38;1;1.448076408071773e-07;64932339;5.852245673762037e-07;0;1;Old +8994;France;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +8995;France;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;1056;1;4.024128123483664e-06;64932339;1.6263082714454504e-05;1;0;Young +8996;France;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;631;1;2.4045689828770757e-06;64932339;9.717807947746962e-06;1;0;Young +8997;France;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;115;1;4.382336498111945e-07;64932339;1.7710743486385112e-06;0;1;Old +8998;France;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;41;1;1.56239822976165e-07;64932339;6.31426506905904e-07;0;1;Old +8999;France;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9000;France;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;461;1;1.7567453266344403e-06;64932339;7.099698041063945e-06;1;0;Young +9001;France;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;912;1;3.475383379372255e-06;64932339;1.404538961702889e-05;1;0;Young +9002;France;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;430;1;1.638612777554901e-06;64932339;6.622277999257042e-06;0;1;Old +9003;France;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;33;1;1.257540038588645e-07;64932339;5.082213348267033e-07;0;1;Old +9004;France;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +9005;France;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;60;1;2.2864364337975364e-07;64932339;9.240387905940058e-07;1;0;Young +9006;France;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;161;1;6.135271097356723e-07;64932339;2.4795040880939158e-06;1;0;Young +9007;France;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;198;1;7.54524023153187e-07;64932339;3.0493280089602196e-06;0;1;Old +9008;France;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;1;0;Young +9009;France;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;1;0;Young +9010;France;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9011;France;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;15501;1;5.907008526715935e-05;64932339;0.0002387254215499614;1;0;Young +9012;France;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;11484;1;4.3762393342884846e-05;64932339;0.00017686102451969273;1;0;Young +9013;France;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;6432;1;2.451059857030959e-05;64932339;9.905695835167743e-05;0;1;Old +9014;France;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;1878;1;7.156546037786289e-06;64932339;2.8922414145592385e-05;0;1;Old +9015;France;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;160;1;6.097163823460097e-07;64932339;2.4641034415840156e-06;1;0;Young +9016;France;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;337;1;1.284215130316283e-06;64932339;5.190017873836333e-06;1;0;Young +9017;France;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;223;1;8.49792207894751e-07;64932339;3.434344171707722e-06;0;1;Old +9018;France;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +9019;France;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;14;1;5.335018345527585e-08;64932339;2.1560905113860136e-07;1;0;Young +9020;France;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;46;1;1.7529345992447778e-07;64932339;7.084297394554045e-07;1;0;Young +9021;France;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9022;France;F;Craft and related trades workers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9023;France;F;Craft and related trades workers;Manufacturing   ;Y15-29;16677;1;6.355150067740252e-05;64932339;0.0002568365818456039;1;0;Young +9024;France;F;Craft and related trades workers;Manufacturing   ;Y30-49;55207;1;0.00021037882700110098;64932339;0.0008502234918720547;1;0;Young +9025;France;F;Craft and related trades workers;Manufacturing   ;Y50-64;25458;1;9.701349788602947e-05;64932339;0.0003920696588490367;0;1;Old +9026;France;F;Craft and related trades workers;Manufacturing   ;Y65-84;1206;1;4.595737231933048e-06;64932339;1.8573179690939516e-05;0;1;Old +9027;France;F;Craft and related trades workers;Manufacturing   ;Y_GE85;334;1;1.2727829481472953e-06;64932339;5.143815934306633e-06;0;1;Old +9028;France;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;100;1;3.8107273896625605e-07;64932339;1.5400646509900097e-06;1;0;Young +9029;France;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;157;1;5.98284200177022e-07;64932339;2.4179015020543155e-06;1;0;Young +9030;France;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;63;1;2.400758255487413e-07;64932339;9.702407301237062e-07;0;1;Old +9031;France;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9032;France;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;63;1;2.400758255487413e-07;64932339;9.702407301237062e-07;1;0;Young +9033;France;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;205;1;7.811991148808249e-07;64932339;3.15713253452952e-06;1;0;Young +9034;France;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;85;1;3.239118281213176e-07;64932339;1.3090549533415083e-06;0;1;Old +9035;France;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9036;France;F;Craft and related trades workers;Construction   ;Y15-29;5438;1;2.0722735544985003e-05;64932339;8.374871572083673e-05;1;0;Young +9037;France;F;Craft and related trades workers;Construction   ;Y30-49;10827;1;4.125874544787654e-05;64932339;0.00016674279976268836;1;0;Young +9038;France;F;Craft and related trades workers;Construction   ;Y50-64;4444;1;1.6934872519660418e-05;64932339;6.844047308999604e-05;0;1;Old +9039;France;F;Craft and related trades workers;Construction   ;Y65-84;275;1;1.0479500321572042e-06;64932339;4.235177790222527e-06;0;1;Old +9040;France;F;Craft and related trades workers;Construction   ;Y_GE85;44;1;1.6767200514515266e-07;64932339;6.776284464356043e-07;0;1;Old +9041;France;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6270;1;2.3893260733184256e-05;64932339;9.656205361707362e-05;1;0;Young +9042;France;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;14536;1;5.539273333613498e-05;64932339;0.0002238637976679078;1;0;Young +9043;France;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7720;1;2.9418815448194966e-05;64932339;0.00011889299105642875;0;1;Old +9044;France;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;457;1;1.7415024170757901e-06;64932339;7.038095455024344e-06;0;1;Old +9045;France;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;110;1;4.1918001286288164e-07;64932339;1.6940711160890107e-06;0;1;Old +9046;France;F;Craft and related trades workers;Transportation and storage   ;Y15-29;430;1;1.638612777554901e-06;64932339;6.622277999257042e-06;1;0;Young +9047;France;F;Craft and related trades workers;Transportation and storage   ;Y30-49;1198;1;4.5652514128157474e-06;64932339;1.8449974518860318e-05;1;0;Young +9048;France;F;Craft and related trades workers;Transportation and storage   ;Y50-64;447;1;1.7033951431791645e-06;64932339;6.884088989925343e-06;0;1;Old +9049;France;F;Craft and related trades workers;Transportation and storage   ;Y65-84;25;1;9.526818474156401e-08;64932339;3.8501616274750244e-07;0;1;Old +9050;France;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;1284;1;4.892973968326728e-06;64932339;1.9774430118711725e-05;1;0;Young +9051;France;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2487;1;9.477279018090788e-06;64932339;3.8301407870121546e-05;1;0;Young +9052;France;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;1358;1;5.174967795161758e-06;64932339;2.0914077960444334e-05;0;1;Old +9053;France;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;0;1;Old +9054;France;F;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9055;France;F;Craft and related trades workers;Information and communication   ;Y15-29;721;1;2.7475344479467064e-06;64932339;1.1103866133637971e-05;1;0;Young +9056;France;F;Craft and related trades workers;Information and communication   ;Y30-49;2336;1;8.901859182251742e-06;64932339;3.597591024712663e-05;1;0;Young +9057;France;F;Craft and related trades workers;Information and communication   ;Y50-64;1100;1;4.191800128628817e-06;64932339;1.694071116089011e-05;0;1;Old +9058;France;F;Craft and related trades workers;Information and communication   ;Y65-84;46;1;1.7529345992447778e-07;64932339;7.084297394554045e-07;0;1;Old +9059;France;F;Craft and related trades workers;Information and communication   ;Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9060;France;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;205;1;7.811991148808249e-07;64932339;3.15713253452952e-06;1;0;Young +9061;France;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;636;1;2.4236226198253887e-06;64932339;9.794811180296462e-06;1;0;Young +9062;France;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;488;1;1.8596349661553295e-06;64932339;7.515515496831247e-06;0;1;Old +9063;France;F;Craft and related trades workers;Financial and insurance activities   ;Y65-84;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;0;1;Old +9064;France;F;Craft and related trades workers;Real estate activities   ;Y15-29;131;1;4.992052880457954e-07;64932339;2.017484692796913e-06;1;0;Young +9065;France;F;Craft and related trades workers;Real estate activities   ;Y30-49;432;1;1.6462342323342262e-06;64932339;6.653079292276842e-06;1;0;Young +9066;France;F;Craft and related trades workers;Real estate activities   ;Y50-64;272;1;1.0365178499882164e-06;64932339;4.188975850692827e-06;0;1;Old +9067;France;F;Craft and related trades workers;Real estate activities   ;Y65-84;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +9068;France;F;Craft and related trades workers;Real estate activities   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +9069;France;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;590;1;2.2483291599009107e-06;64932339;9.086381440841058e-06;1;0;Young +9070;France;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;1562;1;5.95235618265292e-06;64932339;2.4055809848463954e-05;1;0;Young +9071;France;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;687;1;2.617969716698179e-06;64932339;1.0580244152301367e-05;0;1;Old +9072;France;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;38;1;1.448076408071773e-07;64932339;5.852245673762037e-07;0;1;Old +9073;France;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9074;France;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2974;1;1.1333103256856454e-05;64932339;4.580152272044289e-05;1;0;Young +9075;France;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;5384;1;2.0516956265943226e-05;64932339;8.291708080930213e-05;1;0;Young +9076;France;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;1713;1;6.5277760184919665e-06;64932339;2.6381307471458867e-05;0;1;Old +9077;France;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;60;1;2.2864364337975364e-07;64932339;9.240387905940058e-07;0;1;Old +9078;France;F;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;20;1;7.621454779325121e-08;64932339;3.0801293019800195e-07;0;1;Old +9079;France;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;1257;1;4.790084328805838e-06;64932339;1.935861266294442e-05;1;0;Young +9080;France;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;5850;1;2.229275522952598e-05;64932339;9.009378208291557e-05;1;0;Young +9081;France;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;4475;1;1.7053005068739957e-05;64932339;6.891789313180293e-05;0;1;Old +9082;France;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;39;1;1.4861836819683987e-07;64932339;6.006252138861038e-07;0;1;Old +9083;France;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +9084;France;F;Craft and related trades workers;Education   ;Y15-29;1183;1;4.508090501970809e-06;64932339;1.8218964821211816e-05;1;0;Young +9085;France;F;Craft and related trades workers;Education   ;Y30-49;3163;1;1.205333073350268e-05;64932339;4.871224491081401e-05;1;0;Young +9086;France;F;Craft and related trades workers;Education   ;Y50-64;1716;1;6.539208200660954e-06;64932339;2.6427509410988567e-05;0;1;Old +9087;France;F;Craft and related trades workers;Education   ;Y65-84;48;1;1.829149147038029e-07;64932339;7.392310324752047e-07;0;1;Old +9088;France;F;Craft and related trades workers;Education   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9089;France;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;5988;1;2.2818635609299413e-05;64932339;9.221907130128178e-05;1;0;Young +9090;France;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;18102;1;6.898178720767167e-05;64932339;0.0002787825031222116;1;0;Young +9091;France;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;8605;1;3.279130918804633e-05;64932339;0.00013252256321769033;0;1;Old +9092;France;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;109;1;4.153692854732191e-07;64932339;1.6786704695791108e-06;0;1;Old +9093;France;F;Craft and related trades workers;Human health and social work activities   ;Y_GE85;54;1;2.0577927904177827e-07;64932339;8.316349115346053e-07;0;1;Old +9094;France;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;737;1;2.808506086181307e-06;64932339;1.1350276477796372e-05;1;0;Young +9095;France;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;2264;1;8.627486810196037e-06;64932339;3.486706369841382e-05;1;0;Young +9096;France;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;1118;1;4.260393221642743e-06;64932339;1.721792279806831e-05;0;1;Old +9097;France;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;82;1;3.1247964595233e-07;64932339;1.262853013811808e-06;0;1;Old +9098;France;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;9;1;3.429654650696304e-08;64932339;1.3860581858910087e-07;0;1;Old +9099;France;F;Craft and related trades workers;Other service activities   ;Y15-29;3582;1;1.3650025509771292e-05;64932339;5.516511579846215e-05;1;0;Young +9100;France;F;Craft and related trades workers;Other service activities   ;Y30-49;11793;1;4.4939908106290575e-05;64932339;0.00018161982429125184;1;0;Young +9101;France;F;Craft and related trades workers;Other service activities   ;Y50-64;6115;1;2.3302597987786558e-05;64932339;9.417495340803909e-05;0;1;Old +9102;France;F;Craft and related trades workers;Other service activities   ;Y65-84;268;1;1.0212749404295662e-06;64932339;4.127373264653226e-06;0;1;Old +9103;France;F;Craft and related trades workers;Other service activities   ;Y_GE85;90;1;3.4296546506963047e-07;64932339;1.3860581858910088e-06;0;1;Old +9104;France;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;33;1;1.257540038588645e-07;64932339;5.082213348267033e-07;1;0;Young +9105;France;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;189;1;7.202274766462239e-07;64932339;2.9107221903711183e-06;1;0;Young +9106;France;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;238;1;9.069531187396895e-07;64932339;3.6653538693562235e-06;0;1;Old +9107;France;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;6;1;2.2864364337975363e-08;64932339;9.240387905940059e-08;0;1;Old +9108;France;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;1;0;Young +9109;France;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;68;1;2.591294624970541e-07;64932339;1.0472439626732067e-06;1;0;Young +9110;France;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;32;1;1.2194327646920193e-07;64932339;4.928206883168031e-07;0;1;Old +9111;France;F;Craft and related trades workers;Not stated   ;Y15-29;18999;1;7.240000967619898e-05;64932339;0.00029259688304159194;1;0;Young +9112;France;F;Craft and related trades workers;Not stated   ;Y30-49;30140;1;0.00011485532352442957;64932339;0.00046417548580838895;1;0;Young +9113;France;F;Craft and related trades workers;Not stated   ;Y50-64;17193;1;6.55178360104684e-05;64932339;0.0002647833154447124;0;1;Old +9114;France;F;Craft and related trades workers;Not stated   ;Y65-84;1265;1;4.820570147923139e-06;64932339;1.9481817835023623e-05;0;1;Old +9115;France;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;734;1;2.7970739040123193e-06;64932339;1.1304074538266671e-05;1;0;Young +9116;France;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2553;1;9.728787025808516e-06;64932339;3.931785053977495e-05;1;0;Young +9117;France;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;1032;1;3.9326706661317625e-06;64932339;1.58934671982169e-05;0;1;Old +9118;France;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;34;1;1.2956473124852705e-07;64932339;5.236219813366033e-07;0;1;Old +9119;France;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9120;France;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;1;0;Young +9121;France;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;141;1;5.37312561942421e-07;64932339;2.171491157895914e-06;1;0;Young +9122;France;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;49;1;1.8672564209346548e-07;64932339;7.546316789851048e-07;0;1;Old +9123;France;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;29341;1;0.0001118105523400892;64932339;0.00045187036924697875;1;0;Young +9124;France;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;138280;1;0.0005269473834425388;64932339;0.0021296013993889855;1;0;Young +9125;France;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;72013;1;0.00027442191151177;64932339;0.0011090467571174358;0;1;Old +9126;France;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;1069;1;4.073667579549277e-06;64932339;1.6463291119083204e-05;0;1;Old +9127;France;F;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;263;1;1.0022213034812534e-06;64932339;4.050370032103726e-06;0;1;Old +9128;France;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;159;1;6.059056549563472e-07;64932339;2.4487027950741154e-06;1;0;Young +9129;France;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;363;1;1.3832940424475095e-06;64932339;5.590434683093736e-06;1;0;Young +9130;France;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;174;1;6.630665658012855e-07;64932339;2.679712492722617e-06;0;1;Old +9131;France;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9132;France;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +9133;France;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;360;1;1.3718618602785219e-06;64932339;5.544232743564035e-06;1;0;Young +9134;France;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1512;1;5.761819813169791e-06;64932339;2.3285777522968947e-05;1;0;Young +9135;France;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;511;1;1.9472816961175682e-06;64932339;7.86973036655895e-06;0;1;Old +9136;France;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;45;1;1.7148273253481523e-07;64932339;6.930290929455044e-07;0;1;Old +9137;France;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9138;France;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;593;1;2.2597613420698985e-06;64932339;9.132583380370758e-06;1;0;Young +9139;France;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;1517;1;5.780873450118104e-06;64932339;2.336278075551845e-05;1;0;Young +9140;France;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;653;1;2.488404985449652e-06;64932339;1.0056622170964764e-05;0;1;Old +9141;France;F;Plant and machine operators, and assemblers;Construction   ;Y65-84;127;1;4.839623784871452e-07;64932339;1.9558821067573125e-06;0;1;Old +9142;France;F;Plant and machine operators, and assemblers;Construction   ;Y_GE85;27;1;1.0288963952088914e-07;64932339;4.1581745576730264e-07;0;1;Old +9143;France;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;7981;1;3.0413415296896897e-05;64932339;0.00012291255979551268;1;0;Young +9144;France;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;23828;1;9.08020122408795e-05;64932339;0.00036696660503789954;1;0;Young +9145;France;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9419;1;3.589324128323166e-05;64932339;0.00014505868947674902;0;1;Old +9146;France;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;354;1;1.3489974959405465e-06;64932339;5.451828864504635e-06;0;1;Old +9147;France;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;89;1;3.3915473767996787e-07;64932339;1.3706575393811086e-06;0;1;Old +9148;France;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;8244;1;3.141563660037815e-05;64932339;0.0001269629298276164;1;0;Young +9149;France;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;29706;1;0.00011320146783731602;64932339;0.0004574916052230923;1;0;Young +9150;France;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;11368;1;4.332034896568399e-05;64932339;0.0001750745495245443;0;1;Old +9151;France;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;314;1;1.196568400354044e-06;64932339;4.835803004108631e-06;0;1;Old +9152;France;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;59;1;2.2483291599009106e-07;64932339;9.086381440841058e-07;0;1;Old +9153;France;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;1701;1;6.482047289816015e-06;64932339;2.6196499713340065e-05;1;0;Young +9154;France;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2754;1;1.0494743231130692e-05;64932339;4.2413380488264866e-05;1;0;Young +9155;France;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;1029;1;3.921238483962775e-06;64932339;1.58472652586872e-05;0;1;Old +9156;France;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +9157;France;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9158;France;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;452;1;1.7224487801274773e-06;64932339;6.961092222474844e-06;1;0;Young +9159;France;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;1519;1;5.78849490489743e-06;64932339;2.3393582048538247e-05;1;0;Young +9160;France;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;887;1;3.3801151946306913e-06;64932339;1.3660373454281386e-05;0;1;Old +9161;France;F;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;37;1;1.4099691341751475e-07;64932339;5.698239208663036e-07;0;1;Old +9162;France;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;330;1;1.257540038588645e-06;64932339;5.082213348267032e-06;1;0;Young +9163;France;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;1401;1;5.338829072917247e-06;64932339;2.1576305760370037e-05;1;0;Young +9164;France;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;760;1;2.896152816143546e-06;64932339;1.1704491347524074e-05;0;1;Old +9165;France;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;32;1;1.2194327646920193e-07;64932339;4.928206883168031e-07;0;1;Old +9166;France;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9167;France;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;127;1;4.839623784871452e-07;64932339;1.9558821067573125e-06;1;0;Young +9168;France;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;418;1;1.5928840488789504e-06;64932339;6.4374702411382406e-06;1;0;Young +9169;France;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;220;1;8.383600257257633e-07;64932339;3.3881422321780214e-06;0;1;Old +9170;France;F;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +9171;France;F;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +9172;France;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;2121;1;8.082552793474292e-06;64932339;3.266477124749811e-05;1;0;Young +9173;France;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;6645;1;2.5322283504307716e-05;64932339;0.00010233729605828616;1;0;Young +9174;France;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;3253;1;1.239629619857231e-05;64932339;5.0098303096705016e-05;0;1;Old +9175;France;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;93;1;3.543976472386181e-07;64932339;1.4322601254207091e-06;0;1;Old +9176;France;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +9177;France;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;15124;1;5.7633441041256564e-05;64932339;0.00023291937781572908;1;0;Young +9178;France;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;22988;1;8.760100123356294e-05;64932339;0.00035403006196958346;1;0;Young +9179;France;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;6565;1;2.501742531313471e-05;64932339;0.00010110524433749414;0;1;Old +9180;France;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;151;1;5.754198358390467e-07;64932339;2.325497622994915e-06;0;1;Old +9181;France;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;54;1;2.0577927904177827e-07;64932339;8.316349115346053e-07;0;1;Old +9182;France;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;517;1;1.970146060455544e-06;64932339;7.962134245618351e-06;1;0;Young +9183;France;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;1521;1;5.796116359676755e-06;64932339;2.342438334155805e-05;1;0;Young +9184;France;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;1072;1;4.085099761718265e-06;64932339;1.6509493058612904e-05;0;1;Old +9185;France;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +9186;France;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9187;France;F;Plant and machine operators, and assemblers;Education   ;Y15-29;612;1;2.332165162473487e-06;64932339;9.425195664058859e-06;1;0;Young +9188;France;F;Plant and machine operators, and assemblers;Education   ;Y30-49;1953;1;7.4423505920109805e-06;64932339;3.007746263383489e-05;1;0;Young +9189;France;F;Plant and machine operators, and assemblers;Education   ;Y50-64;957;1;3.6468661119070704e-06;64932339;1.4738418709974394e-05;0;1;Old +9190;France;F;Plant and machine operators, and assemblers;Education   ;Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9191;France;F;Plant and machine operators, and assemblers;Education   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +9192;France;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2145;1;8.174010250826192e-06;64932339;3.303438676373571e-05;1;0;Young +9193;France;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;7786;1;2.9670323455912698e-05;64932339;0.00011990943372608216;1;0;Young +9194;France;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;3559;1;1.3562378779809052e-05;64932339;5.4810900928734446e-05;0;1;Old +9195;France;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;83;1;3.1629037334199253e-07;64932339;1.2782536603217081e-06;0;1;Old +9196;France;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +9197;France;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;144;1;5.487447441114087e-07;64932339;2.217693097425614e-06;1;0;Young +9198;France;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;357;1;1.360429678109534e-06;64932339;5.4980308040343345e-06;1;0;Young +9199;France;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;177;1;6.744987479702732e-07;64932339;2.7259144322523174e-06;0;1;Old +9200;France;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9201;France;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9202;France;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;1132;1;4.313743405098018e-06;64932339;1.743353184920691e-05;1;0;Young +9203;France;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;4361;1;1.6618582146318427e-05;64932339;6.716221942967433e-05;1;0;Young +9204;France;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;2573;1;9.805001573601768e-06;64932339;3.962586346997295e-05;0;1;Old +9205;France;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;121;1;4.610980141491698e-07;64932339;1.8634782276979119e-06;0;1;Old +9206;France;F;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;49;1;1.8672564209346548e-07;64932339;7.546316789851048e-07;0;1;Old +9207;France;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;33;1;1.257540038588645e-07;64932339;5.082213348267033e-07;1;0;Young +9208;France;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;170;1;6.478236562426352e-07;64932339;2.6181099066830166e-06;1;0;Young +9209;France;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;171;1;6.516343836322978e-07;64932339;2.6335105531929168e-06;0;1;Old +9210;France;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9211;France;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;1;0;Young +9212;France;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9213;France;F;Plant and machine operators, and assemblers;Not stated   ;Y15-29;21215;1;8.084458157169122e-05;64932339;0.0003267247157075306;1;0;Young +9214;France;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;31866;1;0.00012143263899898716;64932339;0.0004907570016844765;1;0;Young +9215;France;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;22750;1;8.669404811482325e-05;64932339;0.0003503647081002272;0;1;Old +9216;France;F;Plant and machine operators, and assemblers;Not stated   ;Y65-84;1548;1;5.899005999197643e-06;64932339;2.384020079732535e-05;0;1;Old +9217;France;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;575;1;2.191168249055972e-06;64932339;8.855371743192556e-06;1;0;Young +9218;France;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;3011;1;1.147410017027397e-05;64932339;4.63713466413092e-05;1;0;Young +9219;France;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2642;1;1.0067941763488485e-05;64932339;4.068850807915606e-05;0;1;Old +9220;France;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;80;1;3.0485819117300483e-07;64932339;1.2320517207920078e-06;0;1;Old +9221;France;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +9222;France;F;Elementary occupations;Mining and quarrying   ;Y15-29;77;1;2.9342600900401714e-07;64932339;1.1858497812623075e-06;1;0;Young +9223;France;F;Elementary occupations;Mining and quarrying   ;Y30-49;230;1;8.76467299622389e-07;64932339;3.5421486972770224e-06;1;0;Young +9224;France;F;Elementary occupations;Mining and quarrying   ;Y50-64;96;1;3.658298294076058e-07;64932339;1.4784620649504094e-06;0;1;Old +9225;France;F;Elementary occupations;Manufacturing   ;Y15-29;3956;1;1.507523755350509e-05;64932339;6.0924957593164785e-05;1;0;Young +9226;France;F;Elementary occupations;Manufacturing   ;Y30-49;18808;1;7.167216074477344e-05;64932339;0.000289655359558201;1;0;Young +9227;France;F;Elementary occupations;Manufacturing   ;Y50-64;11104;1;4.231431693481307e-05;64932339;0.00017100877884593067;0;1;Old +9228;France;F;Elementary occupations;Manufacturing   ;Y65-84;132;1;5.03016015435458e-07;64932339;2.032885339306813e-06;0;1;Old +9229;France;F;Elementary occupations;Manufacturing   ;Y_GE85;32;1;1.2194327646920193e-07;64932339;4.928206883168031e-07;0;1;Old +9230;France;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;119;1;4.5347655936984473e-07;64932339;1.8326769346781117e-06;1;0;Young +9231;France;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;410;1;1.5623982297616498e-06;64932339;6.31426506905904e-06;1;0;Young +9232;France;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;382;1;1.455697862851098e-06;64932339;5.883046966781837e-06;0;1;Old +9233;France;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;841;1;3.2048217347062134e-06;64932339;1.2951943714825983e-05;1;0;Young +9234;France;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3140;1;1.196568400354044e-05;64932339;4.8358030041086304e-05;1;0;Young +9235;France;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1616;1;6.158135461694698e-06;64932339;2.488744475999856e-05;0;1;Old +9236;France;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;29;1;1.1051109430021426e-07;64932339;4.4661874878710285e-07;0;1;Old +9237;France;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9238;France;F;Elementary occupations;Construction   ;Y15-29;794;1;3.0257175473920732e-06;64932339;1.2228113328860677e-05;1;0;Young +9239;France;F;Elementary occupations;Construction   ;Y30-49;2925;1;1.114637761476299e-05;64932339;4.504689104145778e-05;1;0;Young +9240;France;F;Elementary occupations;Construction   ;Y50-64;1920;1;7.316596588152116e-06;64932339;2.9569241299008187e-05;0;1;Old +9241;France;F;Elementary occupations;Construction   ;Y65-84;73;1;2.7818309944536694e-07;64932339;1.1242471952227072e-06;0;1;Old +9242;France;F;Elementary occupations;Construction   ;Y_GE85;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +9243;France;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;21458;1;8.177058832737923e-05;64932339;0.0003304670728094363;1;0;Young +9244;France;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;46838;1;0.00017848684947701501;64932339;0.0007213354812307008;1;0;Young +9245;France;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;19218;1;7.323455897453509e-05;64932339;0.00029596962462726006;0;1;Old +9246;France;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;286;1;1.0898680334434924e-06;64932339;4.4045849018314275e-06;0;1;Old +9247;France;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;53;1;2.019685516521157e-07;64932339;8.162342650247052e-07;0;1;Old +9248;France;F;Elementary occupations;Transportation and storage   ;Y15-29;2852;1;1.0868194515317622e-05;64932339;4.392264384623508e-05;1;0;Young +9249;France;F;Elementary occupations;Transportation and storage   ;Y30-49;8545;1;3.256266554466658e-05;64932339;0.00013159852442709634;1;0;Young +9250;France;F;Elementary occupations;Transportation and storage   ;Y50-64;4130;1;1.5738304119306375e-05;64932339;6.360467008588741e-05;0;1;Old +9251;France;F;Elementary occupations;Transportation and storage   ;Y65-84;71;1;2.705616446660418e-07;64932339;1.093445902202907e-06;0;1;Old +9252;France;F;Elementary occupations;Transportation and storage   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +9253;France;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;20997;1;8.001384300074478e-05;64932339;0.00032336737476837234;1;0;Young +9254;France;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;48743;1;0.0001857462851543222;64932339;0.0007506737128320605;1;0;Young +9255;France;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;21412;1;8.159529486745475e-05;64932339;0.0003297586430699809;0;1;Old +9256;France;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;333;1;1.2689722207576327e-06;64932339;5.128415287796733e-06;0;1;Old +9257;France;F;Elementary occupations;Accommodation and food service activities   ;Y_GE85;50;1;1.9053636948312803e-07;64932339;7.700323254950049e-07;0;1;Old +9258;France;F;Elementary occupations;Information and communication   ;Y15-29;445;1;1.6957736883998393e-06;64932339;6.853287696905544e-06;1;0;Young +9259;France;F;Elementary occupations;Information and communication   ;Y30-49;1844;1;7.026981306537761e-06;64932339;2.839879216425578e-05;1;0;Young +9260;France;F;Elementary occupations;Information and communication   ;Y50-64;1323;1;5.0415923365235675e-06;64932339;2.037505533259783e-05;0;1;Old +9261;France;F;Elementary occupations;Information and communication   ;Y65-84;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;0;1;Old +9262;France;F;Elementary occupations;Information and communication   ;Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9263;France;F;Elementary occupations;Financial and insurance activities   ;Y15-29;1027;1;3.9136170291834495e-06;64932339;1.58164639656674e-05;1;0;Young +9264;France;F;Elementary occupations;Financial and insurance activities   ;Y30-49;3592;1;1.3688132783667918e-05;64932339;5.531912226356115e-05;1;0;Young +9265;France;F;Elementary occupations;Financial and insurance activities   ;Y50-64;3408;1;1.2986958943970006e-05;64932339;5.2485403305739536e-05;0;1;Old +9266;France;F;Elementary occupations;Financial and insurance activities   ;Y65-84;46;1;1.7529345992447778e-07;64932339;7.084297394554045e-07;0;1;Old +9267;France;F;Elementary occupations;Real estate activities   ;Y15-29;2248;1;8.566515171961437e-06;64932339;3.462065335425542e-05;1;0;Young +9268;France;F;Elementary occupations;Real estate activities   ;Y30-49;9186;1;3.500534180144028e-05;64932339;0.0001414703388399423;1;0;Young +9269;France;F;Elementary occupations;Real estate activities   ;Y50-64;7546;1;2.875574888239368e-05;64932339;0.00011621327856370614;0;1;Old +9270;France;F;Elementary occupations;Real estate activities   ;Y65-84;159;1;6.059056549563472e-07;64932339;2.4487027950741154e-06;0;1;Old +9271;France;F;Elementary occupations;Real estate activities   ;Y_GE85;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +9272;France;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;1805;1;6.8783629383409215e-06;64932339;2.7798166950369677e-05;1;0;Young +9273;France;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;6681;1;2.5459469690335566e-05;64932339;0.00010289171933264255;1;0;Young +9274;France;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;4668;1;1.7788475454944834e-05;64932339;7.189021790821365e-05;0;1;Old +9275;France;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;138;1;5.258803797734334e-07;64932339;2.1252892183662133e-06;0;1;Old +9276;France;F;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;6;1;2.2864364337975363e-08;64932339;9.240387905940059e-08;0;1;Old +9277;France;F;Elementary occupations;Administrative and support service activities   ;Y15-29;24418;1;9.30503414007804e-05;64932339;0.0003760529864787406;1;0;Young +9278;France;F;Elementary occupations;Administrative and support service activities   ;Y30-49;93221;1;0.00035523981799173357;64932339;0.001435663668299397;1;0;Young +9279;France;F;Elementary occupations;Administrative and support service activities   ;Y50-64;51816;1;0.00019745665042275525;64932339;0.0007979998995569835;0;1;Old +9280;France;F;Elementary occupations;Administrative and support service activities   ;Y65-84;713;1;2.7170486288294055e-06;64932339;1.098066096155877e-05;0;1;Old +9281;France;F;Elementary occupations;Administrative and support service activities   ;Y_GE85;93;1;3.543976472386181e-07;64932339;1.4322601254207091e-06;0;1;Old +9282;France;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;19383;1;7.38633289938294e-05;64932339;0.0002985107313013936;1;0;Young +9283;France;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;104844;1;0.0003995319024417815;64932339;0.0016146653826839658;1;0;Young +9284;France;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;69872;1;0.00026626314417050245;64932339;0.0010760739729397397;0;1;Old +9285;France;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;869;1;3.311522101616765e-06;64932339;1.3383161817103185e-05;0;1;Old +9286;France;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;155;1;5.906627453976969e-07;64932339;2.387100209034515e-06;0;1;Old +9287;France;F;Elementary occupations;Education   ;Y15-29;19932;1;7.595541833075415e-05;64932339;0.00030696568623532873;1;0;Young +9288;France;F;Elementary occupations;Education   ;Y30-49;85781;1;0.0003268880062126441;64932339;0.0013210828582657403;1;0;Young +9289;France;F;Elementary occupations;Education   ;Y50-64;51979;1;0.00019807779898727023;64932339;0.0008005102049380971;0;1;Old +9290;France;F;Elementary occupations;Education   ;Y65-84;491;1;1.8710671483243173e-06;64932339;7.561717436360948e-06;0;1;Old +9291;France;F;Elementary occupations;Education   ;Y_GE85;61;1;2.3245437076941619e-07;64932339;9.394394371039059e-07;0;1;Old +9292;France;F;Elementary occupations;Human health and social work activities   ;Y15-29;88871;1;0.00033866315384670144;64932339;0.0013686708559813316;1;0;Young +9293;France;F;Elementary occupations;Human health and social work activities   ;Y30-49;338328;1;0.0012892757762897548;64932339;0.00521046993240148;1;0;Young +9294;France;F;Elementary occupations;Human health and social work activities   ;Y50-64;217823;1;0.000830064072198468;64932339;0.003354615024725969;0;1;Old +9295;France;F;Elementary occupations;Human health and social work activities   ;Y65-84;3951;1;1.5056183916556776e-05;64932339;6.0847954360615284e-05;0;1;Old +9296;France;F;Elementary occupations;Human health and social work activities   ;Y_GE85;949;1;3.61638029278977e-06;64932339;1.4615213537895192e-05;0;1;Old +9297;France;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;1518;1;5.784684177507767e-06;64932339;2.337818140202835e-05;1;0;Young +9298;France;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;4435;1;1.6900575973153457e-05;64932339;6.830186727140693e-05;1;0;Young +9299;France;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;2849;1;1.0856762333148634e-05;64932339;4.387644190670538e-05;0;1;Old +9300;France;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;37;1;1.4099691341751475e-07;64932339;5.698239208663036e-07;0;1;Old +9301;France;F;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9302;France;F;Elementary occupations;Other service activities   ;Y15-29;5703;1;2.1732578303245583e-05;64932339;8.782988704596026e-05;1;0;Young +9303;France;F;Elementary occupations;Other service activities   ;Y30-49;19858;1;7.567342450391912e-05;64932339;0.0003058260383935961;1;0;Young +9304;France;F;Elementary occupations;Other service activities   ;Y50-64;11743;1;4.474937173680745e-05;64932339;0.00018084979196575685;0;1;Old +9305;France;F;Elementary occupations;Other service activities   ;Y65-84;432;1;1.6462342323342262e-06;64932339;6.653079292276842e-06;0;1;Old +9306;France;F;Elementary occupations;Other service activities   ;Y_GE85;279;1;1.0631929417158544e-06;64932339;4.296780376262127e-06;0;1;Old +9307;France;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5722;1;2.180498212364917e-05;64932339;8.812249932964836e-05;1;0;Young +9308;France;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;52081;1;0.0001984664931810158;64932339;0.000802081070882107;1;0;Young +9309;France;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;46528;1;0.00017730552398621962;64932339;0.0007165612808126317;0;1;Old +9310;France;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1088;1;4.146071399952866e-06;64932339;1.6755903402771307e-05;0;1;Old +9311;France;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;300;1;1.1432182168987682e-06;64932339;4.620193952970029e-06;0;1;Old +9312;France;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;28;1;1.067003669105517e-07;64932339;4.312181022772027e-07;1;0;Young +9313;France;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;231;1;8.802780270120515e-07;64932339;3.5575493437869226e-06;1;0;Young +9314;France;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;174;1;6.630665658012855e-07;64932339;2.679712492722617e-06;0;1;Old +9315;France;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9316;France;F;Elementary occupations;Not stated   ;Y15-29;72641;1;0.00027681504831247807;64932339;0.001118718363125653;1;0;Young +9317;France;F;Elementary occupations;Not stated   ;Y30-49;97891;1;0.00037303591490145773;64932339;0.0015075846875006304;1;0;Young +9318;France;F;Elementary occupations;Not stated   ;Y50-64;49624;1;0.0001891035359846149;64932339;0.0007642416824072824;0;1;Old +9319;France;F;Elementary occupations;Not stated   ;Y65-84;3318;1;1.2643993478900376e-05;64932339;5.1099345119848525e-05;0;1;Old +9320;France;F;Not stated;Not stated   ;Y15-29;408442;1;0.0015564611164885556;64932339;0.0062902708617966156;1;0;Young +9321;France;F;Not stated;Not stated   ;Y30-49;114490;1;0.00043629017884246654;64932339;0.001763220018918462;1;0;Young +9322;France;F;Not stated;Not stated   ;Y50-64;79205;1;0.0003018286628982231;64932339;0.0012198082068166373;0;1;Old +9323;France;F;Not stated;Not stated   ;Y65-84;11759;1;4.481034337504205e-05;64932339;0.00018109620230991524;0;1;Old +9324;France;F;Not stated;Not stated   ;Y_LT15;79;1;3.010474637833423e-07;64932339;1.2166510742821076e-06;0;1;Old +9325;France;M;Not applicable;Not applicable  ;Y15-29;2217733;1;0.00845117588605852;64932339;0.034154521986340274;1;0;Young +9326;France;M;Not applicable;Not applicable  ;Y30-49;694330;1;0.0026459023484644057;64932339;0.010693130891218934;1;0;Young +9327;France;M;Not applicable;Not applicable  ;Y50-64;2471558;1;0.00941843376573962;64932339;0.03806359108671566;0;1;Old +9328;France;M;Not applicable;Not applicable  ;Y65-84;3935517;1;0.014997182424382631;64932339;0.0606095061507025;0;1;Old +9329;France;M;Not applicable;Not applicable  ;Y_GE85;480113;1;0.001829579759233061;64932339;0.0073940505978076655;0;1;Old +9330;France;M;Not applicable;Not applicable  ;Y_LT15;6154521;1;0.02345320174495341;64932339;0.09478360235875687;0;1;Old +9331;France;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;108;1;4.1155855808355654e-07;64932339;1.6632698230692106e-06;1;0;Young +9332;France;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y30-49;242;1;9.221960282983396e-07;64932339;3.7269564553958238e-06;1;0;Young +9333;France;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y50-64;54;1;2.0577927904177827e-07;64932339;8.316349115346053e-07;0;1;Old +9334;France;M;Armed forces occupations;Mining and quarrying   ;Y30-49;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;1;0;Young +9335;France;M;Armed forces occupations;Manufacturing   ;Y15-29;444;1;1.691962961010177e-06;64932339;6.837887050395644e-06;1;0;Young +9336;France;M;Armed forces occupations;Manufacturing   ;Y30-49;1089;1;4.149882127342528e-06;64932339;1.6771304049281208e-05;1;0;Young +9337;France;M;Armed forces occupations;Manufacturing   ;Y50-64;224;1;8.536029352844136e-07;64932339;3.4497448182176217e-06;0;1;Old +9338;France;M;Armed forces occupations;Manufacturing   ;Y65-84;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;0;1;Old +9339;France;M;Armed forces occupations;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9340;France;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;1;0;Young +9341;France;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;27;1;1.0288963952088914e-07;64932339;4.1581745576730264e-07;1;0;Young +9342;France;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;24;1;9.145745735190145e-08;64932339;3.6961551623760236e-07;0;1;Old +9343;France;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9344;France;M;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;17;1;6.478236562426352e-08;64932339;2.6181099066830167e-07;1;0;Young +9345;France;M;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;1;0;Young +9346;France;M;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;26;1;9.907891213122657e-08;64932339;4.0041680925740257e-07;0;1;Old +9347;France;M;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9348;France;M;Armed forces occupations;Construction   ;Y15-29;364;1;1.387104769837172e-06;64932339;5.605835329603636e-06;1;0;Young +9349;France;M;Armed forces occupations;Construction   ;Y30-49;443;1;1.6881522336205144e-06;64932339;6.8224864038857434e-06;1;0;Young +9350;France;M;Armed forces occupations;Construction   ;Y50-64;124;1;4.725301963181575e-07;64932339;1.909680167227612e-06;0;1;Old +9351;France;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;332;1;1.2651614933679701e-06;64932339;5.1130146412868325e-06;1;0;Young +9352;France;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;432;1;1.6462342323342262e-06;64932339;6.653079292276842e-06;1;0;Young +9353;France;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;89;1;3.3915473767996787e-07;64932339;1.3706575393811086e-06;0;1;Old +9354;France;M;Armed forces occupations;Transportation and storage   ;Y15-29;153;1;5.830412906183718e-07;64932339;2.3562989160147147e-06;1;0;Young +9355;France;M;Armed forces occupations;Transportation and storage   ;Y30-49;474;1;1.8062847827000537e-06;64932339;7.2999064456926465e-06;1;0;Young +9356;France;M;Armed forces occupations;Transportation and storage   ;Y50-64;129;1;4.915838332664703e-07;64932339;1.9866833997771125e-06;0;1;Old +9357;France;M;Armed forces occupations;Accommodation and food service activities   ;Y15-29;1635;1;6.230539282098286e-06;64932339;2.5180057043686658e-05;1;0;Young +9358;France;M;Armed forces occupations;Accommodation and food service activities   ;Y30-49;1538;1;5.860898725301018e-06;64932339;2.368619433222635e-05;1;0;Young +9359;France;M;Armed forces occupations;Accommodation and food service activities   ;Y50-64;301;1;1.1470289442884308e-06;64932339;4.6355945994799294e-06;0;1;Old +9360;France;M;Armed forces occupations;Information and communication   ;Y15-29;94;1;3.582083746282807e-07;64932339;1.4476607719306093e-06;1;0;Young +9361;France;M;Armed forces occupations;Information and communication   ;Y30-49;205;1;7.811991148808249e-07;64932339;3.15713253452952e-06;1;0;Young +9362;France;M;Armed forces occupations;Information and communication   ;Y50-64;33;1;1.257540038588645e-07;64932339;5.082213348267033e-07;0;1;Old +9363;France;M;Armed forces occupations;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9364;France;M;Armed forces occupations;Financial and insurance activities   ;Y15-29;43;1;1.638612777554901e-07;64932339;6.622277999257042e-07;1;0;Young +9365;France;M;Armed forces occupations;Financial and insurance activities   ;Y30-49;162;1;6.173378371253348e-07;64932339;2.494904734603816e-06;1;0;Young +9366;France;M;Armed forces occupations;Financial and insurance activities   ;Y50-64;41;1;1.56239822976165e-07;64932339;6.31426506905904e-07;0;1;Old +9367;France;M;Armed forces occupations;Real estate activities   ;Y15-29;35;1;1.3337545863818962e-07;64932339;5.390226278465034e-07;1;0;Young +9368;France;M;Armed forces occupations;Real estate activities   ;Y30-49;111;1;4.2299074025254424e-07;64932339;1.709471762598911e-06;1;0;Young +9369;France;M;Armed forces occupations;Real estate activities   ;Y50-64;20;1;7.621454779325121e-08;64932339;3.0801293019800195e-07;0;1;Old +9370;France;M;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;135;1;5.144481976044457e-07;64932339;2.079087278836513e-06;1;0;Young +9371;France;M;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;377;1;1.4366442259027852e-06;64932339;5.8060437342323365e-06;1;0;Young +9372;France;M;Armed forces occupations;Professional, scientific and technical activities   ;Y50-64;76;1;2.896152816143546e-07;64932339;1.1704491347524075e-06;0;1;Old +9373;France;M;Armed forces occupations;Professional, scientific and technical activities   ;Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9374;France;M;Armed forces occupations;Administrative and support service activities   ;Y15-29;453;1;1.72625950751714e-06;64932339;6.976492868984744e-06;1;0;Young +9375;France;M;Armed forces occupations;Administrative and support service activities   ;Y30-49;491;1;1.8710671483243173e-06;64932339;7.561717436360948e-06;1;0;Young +9376;France;M;Armed forces occupations;Administrative and support service activities   ;Y50-64;151;1;5.754198358390467e-07;64932339;2.325497622994915e-06;0;1;Old +9377;France;M;Armed forces occupations;Administrative and support service activities   ;Y65-84;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +9378;France;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;77273;1;0.00029446633758139503;64932339;0.0011900541577595102;1;0;Young +9379;France;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;118822;1;0.0004527982498944848;64932339;0.0018299356195993495;1;0;Young +9380;France;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;19202;1;7.317358733630048e-05;64932339;0.0002957232142831017;0;1;Old +9381;France;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;457;1;1.7415024170757901e-06;64932339;7.038095455024344e-06;0;1;Old +9382;France;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;233;1;8.878994817913766e-07;64932339;3.588350636806723e-06;0;1;Old +9383;France;M;Armed forces occupations;Education   ;Y15-29;925;1;3.5249228354378684e-06;64932339;1.424559802165759e-05;1;0;Young +9384;France;M;Armed forces occupations;Education   ;Y30-49;1218;1;4.641465960608999e-06;64932339;1.875798744905832e-05;1;0;Young +9385;France;M;Armed forces occupations;Education   ;Y50-64;233;1;8.878994817913766e-07;64932339;3.588350636806723e-06;0;1;Old +9386;France;M;Armed forces occupations;Education   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9387;France;M;Armed forces occupations;Education   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9388;France;M;Armed forces occupations;Human health and social work activities   ;Y15-29;584;1;2.2254647955629356e-06;64932339;8.993977561781657e-06;1;0;Young +9389;France;M;Armed forces occupations;Human health and social work activities   ;Y30-49;1129;1;4.3023112229290305e-06;64932339;1.738732990967721e-05;1;0;Young +9390;France;M;Armed forces occupations;Human health and social work activities   ;Y50-64;229;1;8.726565722327264e-07;64932339;3.5267480507671222e-06;0;1;Old +9391;France;M;Armed forces occupations;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +9392;France;M;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;353;1;1.3451867685508839e-06;64932339;5.436428217994735e-06;1;0;Young +9393;France;M;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;511;1;1.9472816961175682e-06;64932339;7.86973036655895e-06;1;0;Young +9394;France;M;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;150;1;5.716091084493841e-07;64932339;2.3100969764850146e-06;0;1;Old +9395;France;M;Armed forces occupations;Other service activities   ;Y15-29;576;1;2.1949789764456348e-06;64932339;8.870772389702456e-06;1;0;Young +9396;France;M;Armed forces occupations;Other service activities   ;Y30-49;958;1;3.650676839296733e-06;64932339;1.4753819356484293e-05;1;0;Young +9397;France;M;Armed forces occupations;Other service activities   ;Y50-64;257;1;9.79356939143278e-07;64932339;3.957966153044325e-06;0;1;Old +9398;France;M;Armed forces occupations;Other service activities   ;Y65-84;6;1;2.2864364337975363e-08;64932339;9.240387905940059e-08;0;1;Old +9399;France;M;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;1;0;Young +9400;France;M;Armed forces occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9401;France;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;87;1;3.3153328290064277e-07;64932339;1.3398562463613084e-06;1;0;Young +9402;France;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9403;France;M;Armed forces occupations;Not stated   ;Y15-29;4197;1;1.5993622854413768e-05;64932339;6.463651340205071e-05;1;0;Young +9404;France;M;Armed forces occupations;Not stated   ;Y30-49;5335;1;2.033023062384976e-05;64932339;8.216244913031702e-05;1;0;Young +9405;France;M;Armed forces occupations;Not stated   ;Y50-64;3213;1;1.2243867102985808e-05;64932339;4.9482277236309015e-05;0;1;Old +9406;France;M;Armed forces occupations;Not stated   ;Y65-84;223;1;8.49792207894751e-07;64932339;3.434344171707722e-06;0;1;Old +9407;France;M;Managers;Agriculture, forestry and fishing   ;Y15-29;924;1;3.521112108048206e-06;64932339;1.423019737514769e-05;1;0;Young +9408;France;M;Managers;Agriculture, forestry and fishing   ;Y30-49;5500;1;2.0959000643144084e-05;64932339;8.470355580445054e-05;1;0;Young +9409;France;M;Managers;Agriculture, forestry and fishing   ;Y50-64;3690;1;1.4061584067854848e-05;64932339;5.682838562153136e-05;0;1;Old +9410;France;M;Managers;Agriculture, forestry and fishing   ;Y65-84;135;1;5.144481976044457e-07;64932339;2.079087278836513e-06;0;1;Old +9411;France;M;Managers;Mining and quarrying   ;Y15-29;164;1;6.2495929190466e-07;64932339;2.525706027623616e-06;1;0;Young +9412;France;M;Managers;Mining and quarrying   ;Y30-49;1023;1;3.898374119624799e-06;64932339;1.57548613796278e-05;1;0;Young +9413;France;M;Managers;Mining and quarrying   ;Y50-64;648;1;2.469351348501339e-06;64932339;9.979618938415264e-06;0;1;Old +9414;France;M;Managers;Mining and quarrying   ;Y65-84;35;1;1.3337545863818962e-07;64932339;5.390226278465034e-07;0;1;Old +9415;France;M;Managers;Manufacturing   ;Y15-29;18599;1;7.087571872033397e-05;64932339;0.0002864366244376319;1;0;Young +9416;France;M;Managers;Manufacturing   ;Y30-49;115981;1;0.00044197197338045343;64932339;0.0017861823828647233;1;0;Young +9417;France;M;Managers;Manufacturing   ;Y50-64;55837;1;0.00021277958525658838;64932339;0.0008599258991732918;0;1;Old +9418;France;M;Managers;Manufacturing   ;Y65-84;846;1;3.2238753716545264e-06;64932339;1.3028946947375483e-05;0;1;Old +9419;France;M;Managers;Manufacturing   ;Y_GE85;110;1;4.1918001286288164e-07;64932339;1.6940711160890107e-06;0;1;Old +9420;France;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1685;1;6.4210756515814145e-06;64932339;2.5950089369181666e-05;1;0;Young +9421;France;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;8195;1;3.122891095828468e-05;64932339;0.0001262082981486313;1;0;Young +9422;France;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;5817;1;2.2167001225667113e-05;64932339;8.958556074808886e-05;0;1;Old +9423;France;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;0;1;Old +9424;France;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;768;1;2.9266386352608465e-06;64932339;1.1827696519603276e-05;1;0;Young +9425;France;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5034;1;1.918320167956133e-05;64932339;7.752685453083709e-05;1;0;Young +9426;France;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2263;1;8.623676082806374e-06;64932339;3.485166305190392e-05;0;1;Old +9427;France;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;0;1;Old +9428;France;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;9;1;3.429654650696304e-08;64932339;1.3860581858910087e-07;0;1;Old +9429;France;M;Managers;Construction   ;Y15-29;10204;1;3.8884662284116765e-05;64932339;0.0001571481969870206;1;0;Young +9430;France;M;Managers;Construction   ;Y30-49;45031;1;0.00017160086508389476;64932339;0.0006935065129873113;1;0;Young +9431;France;M;Managers;Construction   ;Y50-64;23401;1;8.917483164549358e-05;64932339;0.0003603905289781722;0;1;Old +9432;France;M;Managers;Construction   ;Y65-84;341;1;1.299458039874933e-06;64932339;5.251620459875933e-06;0;1;Old +9433;France;M;Managers;Construction   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9434;France;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;8723;1;3.3240975020026516e-05;64932339;0.00013433983950585855;1;0;Young +9435;France;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;68195;1;0.00025987255433803833;64932339;0.0010502470887426372;1;0;Young +9436;France;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;29722;1;0.00011326243947555062;64932339;0.0004577380155672507;0;1;Old +9437;France;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;649;1;2.4731620758910016e-06;64932339;9.995019584925163e-06;0;1;Old +9438;France;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;35;1;1.3337545863818962e-07;64932339;5.390226278465034e-07;0;1;Old +9439;France;M;Managers;Transportation and storage   ;Y15-29;3496;1;1.3322302954260312e-05;64932339;5.384066019861074e-05;1;0;Young +9440;France;M;Managers;Transportation and storage   ;Y30-49;34466;1;0.0001313405302121098;64932339;0.0005307986826102168;1;0;Young +9441;France;M;Managers;Transportation and storage   ;Y50-64;20268;1;7.723582273368077e-05;64932339;0.00031214030346265515;0;1;Old +9442;France;M;Managers;Transportation and storage   ;Y65-84;360;1;1.3718618602785219e-06;64932339;5.544232743564035e-06;0;1;Old +9443;France;M;Managers;Transportation and storage   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9444;France;M;Managers;Accommodation and food service activities   ;Y15-29;6650;1;2.5341337141256027e-05;64932339;0.00010241429929083564;1;0;Young +9445;France;M;Managers;Accommodation and food service activities   ;Y30-49;37302;1;0.00014214775308919283;64932339;0.0005744749161122934;1;0;Young +9446;France;M;Managers;Accommodation and food service activities   ;Y50-64;14727;1;5.612058226756053e-05;64932339;0.00022680532115129873;0;1;Old +9447;France;M;Managers;Accommodation and food service activities   ;Y65-84;426;1;1.6233698679962508e-06;64932339;6.560675413217442e-06;0;1;Old +9448;France;M;Managers;Accommodation and food service activities   ;Y_GE85;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;0;1;Old +9449;France;M;Managers;Information and communication   ;Y15-29;17194;1;6.552164673785806e-05;64932339;0.0002647987160912223;1;0;Young +9450;France;M;Managers;Information and communication   ;Y30-49;53564;1;0.00020411780189988539;64932339;0.0008249202296562888;1;0;Young +9451;France;M;Managers;Information and communication   ;Y50-64;14969;1;5.7042778295858866e-05;64932339;0.00023053227760669456;0;1;Old +9452;France;M;Managers;Information and communication   ;Y65-84;194;1;7.392811135945367e-07;64932339;2.987725422920619e-06;0;1;Old +9453;France;M;Managers;Information and communication   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +9454;France;M;Managers;Financial and insurance activities   ;Y15-29;9723;1;3.7051702409689076e-05;64932339;0.00014974048601575866;1;0;Young +9455;France;M;Managers;Financial and insurance activities   ;Y30-49;64353;1;0.00024523173970695476;64932339;0.000991077804851601;1;0;Young +9456;France;M;Managers;Financial and insurance activities   ;Y50-64;35030;1;0.00013348978045987949;64932339;0.0005394846472418004;0;1;Old +9457;France;M;Managers;Financial and insurance activities   ;Y65-84;435;1;1.6576664145032138e-06;64932339;6.699281231806543e-06;0;1;Old +9458;France;M;Managers;Financial and insurance activities   ;Y_GE85;37;1;1.4099691341751475e-07;64932339;5.698239208663036e-07;0;1;Old +9459;France;M;Managers;Real estate activities   ;Y15-29;851;1;3.242929008602839e-06;64932339;1.3105950179924983e-05;1;0;Young +9460;France;M;Managers;Real estate activities   ;Y30-49;5476;1;2.086754318579218e-05;64932339;8.433394028821294e-05;1;0;Young +9461;France;M;Managers;Real estate activities   ;Y50-64;3224;1;1.2285785104272094e-05;64932339;4.9651684347917916e-05;0;1;Old +9462;France;M;Managers;Real estate activities   ;Y65-84;125;1;4.7634092370782007e-07;64932339;1.925080813737512e-06;0;1;Old +9463;France;M;Managers;Real estate activities   ;Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9464;France;M;Managers;Professional, scientific and technical activities   ;Y15-29;17154;1;6.536921764227156e-05;64932339;0.0002641826902308263;1;0;Young +9465;France;M;Managers;Professional, scientific and technical activities   ;Y30-49;61601;1;0.0002347446179306034;64932339;0.000948695225656356;1;0;Young +9466;France;M;Managers;Professional, scientific and technical activities   ;Y50-64;25999;1;9.907510140383692e-05;64932339;0.0004004014086108926;0;1;Old +9467;France;M;Managers;Professional, scientific and technical activities   ;Y65-84;557;1;2.122575156042046e-06;64932339;8.578160106014355e-06;0;1;Old +9468;France;M;Managers;Professional, scientific and technical activities   ;Y_GE85;64;1;2.4388655293840386e-07;64932339;9.856413766336062e-07;0;1;Old +9469;France;M;Managers;Administrative and support service activities   ;Y15-29;4377;1;1.667955378455303e-05;64932339;6.740862977383272e-05;1;0;Young +9470;France;M;Managers;Administrative and support service activities   ;Y30-49;23255;1;8.861846544660285e-05;64932339;0.00035814203458772677;1;0;Young +9471;France;M;Managers;Administrative and support service activities   ;Y50-64;10342;1;3.94105426638902e-05;64932339;0.0001592734862053868;0;1;Old +9472;France;M;Managers;Administrative and support service activities   ;Y65-84;300;1;1.1432182168987682e-06;64932339;4.620193952970029e-06;0;1;Old +9473;France;M;Managers;Administrative and support service activities   ;Y_GE85;35;1;1.3337545863818962e-07;64932339;5.390226278465034e-07;0;1;Old +9474;France;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;6154;1;2.3451216355983398e-05;64932339;9.477557862192521e-05;1;0;Young +9475;France;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;44346;1;0.00016899051682197591;64932339;0.0006829570701280298;1;0;Young +9476;France;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;37889;1;0.00014438465006692475;64932339;0.0005835150956136048;0;1;Old +9477;France;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;467;1;1.7796096909724157e-06;64932339;7.192101920123345e-06;0;1;Old +9478;France;M;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;38;1;1.448076408071773e-07;64932339;5.852245673762037e-07;0;1;Old +9479;France;M;Managers;Education   ;Y15-29;2711;1;1.0330881953375202e-05;64932339;4.1751152688339166e-05;1;0;Young +9480;France;M;Managers;Education   ;Y30-49;17311;1;6.596750184244858e-05;64932339;0.0002666005917328806;1;0;Young +9481;France;M;Managers;Education   ;Y50-64;15253;1;5.812502487452304e-05;64932339;0.0002349060612155062;0;1;Old +9482;France;M;Managers;Education   ;Y65-84;276;1;1.0517607595468668e-06;64932339;4.2505784367324266e-06;0;1;Old +9483;France;M;Managers;Education   ;Y_GE85;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +9484;France;M;Managers;Human health and social work activities   ;Y15-29;2964;1;1.129499598295983e-05;64932339;4.564751625534389e-05;1;0;Young +9485;France;M;Managers;Human health and social work activities   ;Y30-49;37195;1;0.00014174000525849894;64932339;0.0005728270469357341;1;0;Young +9486;France;M;Managers;Human health and social work activities   ;Y50-64;43202;1;0.00016463104468820194;64932339;0.0006653387305207041;0;1;Old +9487;France;M;Managers;Human health and social work activities   ;Y65-84;2372;1;9.039045368279594e-06;64932339;3.653033352148303e-05;0;1;Old +9488;France;M;Managers;Human health and social work activities   ;Y_GE85;86;1;3.277225555109802e-07;64932339;1.3244555998514085e-06;0;1;Old +9489;France;M;Managers;Arts, entertainment and recreation   ;Y15-29;1700;1;6.478236562426353e-06;64932339;2.6181099066830167e-05;1;0;Young +9490;France;M;Managers;Arts, entertainment and recreation   ;Y30-49;9619;1;3.665538676116417e-05;64932339;0.00014813881877872903;1;0;Young +9491;France;M;Managers;Arts, entertainment and recreation   ;Y50-64;4375;1;1.6671932329773704e-05;64932339;6.737782848081293e-05;0;1;Old +9492;France;M;Managers;Arts, entertainment and recreation   ;Y65-84;213;1;8.116849339981254e-07;64932339;3.280337706608721e-06;0;1;Old +9493;France;M;Managers;Arts, entertainment and recreation   ;Y_GE85;25;1;9.526818474156401e-08;64932339;3.8501616274750244e-07;0;1;Old +9494;France;M;Managers;Other service activities   ;Y15-29;2331;1;8.88280554530343e-06;64932339;3.589890701457713e-05;1;0;Young +9495;France;M;Managers;Other service activities   ;Y30-49;15072;1;5.7435283216994116e-05;64932339;0.00023211854419721427;1;0;Young +9496;France;M;Managers;Other service activities   ;Y50-64;9198;1;3.505107053011623e-05;64932339;0.0001416551465980611;0;1;Old +9497;France;M;Managers;Other service activities   ;Y65-84;214;1;8.15495661387788e-07;64932339;3.2957383531186208e-06;0;1;Old +9498;France;M;Managers;Other service activities   ;Y_GE85;14;1;5.335018345527585e-08;64932339;2.1560905113860136e-07;0;1;Old +9499;France;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;1;0;Young +9500;France;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;59;1;2.2483291599009106e-07;64932339;9.086381440841058e-07;1;0;Young +9501;France;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;32;1;1.2194327646920193e-07;64932339;4.928206883168031e-07;0;1;Old +9502;France;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;144;1;5.487447441114087e-07;64932339;2.217693097425614e-06;1;0;Young +9503;France;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;1368;1;5.213075069058383e-06;64932339;2.1068084425543334e-05;1;0;Young +9504;France;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;879;1;3.349629375513391e-06;64932339;1.3537168282202186e-05;0;1;Old +9505;France;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;161;1;6.135271097356723e-07;64932339;2.4795040880939158e-06;0;1;Old +9506;France;M;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;53;1;2.019685516521157e-07;64932339;8.162342650247052e-07;0;1;Old +9507;France;M;Managers;Not stated   ;Y15-29;8186;1;3.119461441177772e-05;64932339;0.0001260696923300422;1;0;Young +9508;France;M;Managers;Not stated   ;Y30-49;17840;1;6.798337663158008e-05;64932339;0.0002747475337366177;1;0;Young +9509;France;M;Managers;Not stated   ;Y50-64;12855;1;4.898690059411221e-05;64932339;0.00019797531088476577;0;1;Old +9510;France;M;Managers;Not stated   ;Y65-84;1288;1;4.908216877885378e-06;64932339;1.9836032704751326e-05;0;1;Old +9511;France;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;524;1;1.9968211521831816e-06;64932339;8.069938771187651e-06;1;0;Young +9512;France;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;3142;1;1.1973305458319765e-05;64932339;4.8388831334106106e-05;1;0;Young +9513;France;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;2272;1;8.657972629313337e-06;64932339;3.4990268870493024e-05;0;1;Old +9514;France;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;98;1;3.7345128418693096e-07;64932339;1.5092633579702096e-06;0;1;Old +9515;France;M;Professionals;Agriculture, forestry and fishing   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9516;France;M;Professionals;Mining and quarrying   ;Y15-29;187;1;7.126060218668988e-07;64932339;2.8799208973513184e-06;1;0;Young +9517;France;M;Professionals;Mining and quarrying   ;Y30-49;846;1;3.2238753716545264e-06;64932339;1.3028946947375483e-05;1;0;Young +9518;France;M;Professionals;Mining and quarrying   ;Y50-64;578;1;2.20260043122496e-06;64932339;8.901573682722256e-06;0;1;Old +9519;France;M;Professionals;Manufacturing   ;Y15-29;32989;1;0.0001257120858575782;64932339;0.0005080519277150943;1;0;Young +9520;France;M;Professionals;Manufacturing   ;Y30-49;145592;1;0.0005548114221157515;64932339;0.002242210926669375;1;0;Young +9521;France;M;Professionals;Manufacturing   ;Y50-64;60449;1;0.00023035465997771213;64932339;0.0009309536808769511;0;1;Old +9522;France;M;Professionals;Manufacturing   ;Y65-84;642;1;2.446486984163364e-06;64932339;9.887215059355863e-06;0;1;Old +9523;France;M;Professionals;Manufacturing   ;Y_GE85;102;1;3.886941937455812e-07;64932339;1.57086594400981e-06;0;1;Old +9524;France;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;3885;1;1.4804675908839048e-05;64932339;5.9831511690961877e-05;1;0;Young +9525;France;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;15367;1;5.855944779694457e-05;64932339;0.0002366617349176348;1;0;Young +9526;France;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;10233;1;3.8995173378416985e-05;64932339;0.0001575948157358077;0;1;Old +9527;France;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +9528;France;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9529;France;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1166;1;4.443308136346546e-06;64932339;1.7957153830543512e-05;1;0;Young +9530;France;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5029;1;1.9164148042613018e-05;64932339;7.74498512982876e-05;1;0;Young +9531;France;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2245;1;8.555082989792449e-06;64932339;3.457445141472572e-05;0;1;Old +9532;France;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;0;1;Old +9533;France;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9534;France;M;Professionals;Construction   ;Y15-29;13495;1;5.142576612349626e-05;64932339;0.00020783172465110183;1;0;Young +9535;France;M;Professionals;Construction   ;Y30-49;36248;1;0.0001381312464204885;64932339;0.0005582426346908587;1;0;Young +9536;France;M;Professionals;Construction   ;Y50-64;14621;1;5.5716645164256295e-05;64932339;0.00022517285262124934;0;1;Old +9537;France;M;Professionals;Construction   ;Y65-84;323;1;1.2308649468610071e-06;64932339;4.974408822697732e-06;0;1;Old +9538;France;M;Professionals;Construction   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9539;France;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;31223;1;0.00011898234128743413;64932339;0.00048085438597861074;1;0;Young +9540;France;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;111286;1;0.00042408060828598773;64932339;0.0017138763475007422;1;0;Young +9541;France;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;42301;1;0.00016119757931011599;64932339;0.000651462748015284;0;1;Old +9542;France;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;886;1;3.3763044672410287e-06;64932339;1.3644972807771487e-05;0;1;Old +9543;France;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;55;1;2.0959000643144082e-07;64932339;8.470355580445054e-07;0;1;Old +9544;France;M;Professionals;Transportation and storage   ;Y15-29;3742;1;1.4259741892117301e-05;64932339;5.762921924004617e-05;1;0;Young +9545;France;M;Professionals;Transportation and storage   ;Y30-49;24857;1;9.472325072484226e-05;64932339;0.0003828138702965867;1;0;Young +9546;France;M;Professionals;Transportation and storage   ;Y50-64;14924;1;5.687129556332405e-05;64932339;0.00022983924851374907;0;1;Old +9547;France;M;Professionals;Transportation and storage   ;Y65-84;209;1;7.964420244394752e-07;64932339;3.2187351205691203e-06;0;1;Old +9548;France;M;Professionals;Transportation and storage   ;Y_GE85;6;1;2.2864364337975363e-08;64932339;9.240387905940059e-08;0;1;Old +9549;France;M;Professionals;Accommodation and food service activities   ;Y15-29;2316;1;8.82564463445849e-06;64932339;3.566789731692863e-05;1;0;Young +9550;France;M;Professionals;Accommodation and food service activities   ;Y30-49;5833;1;2.2227972863901715e-05;64932339;8.983197109224727e-05;1;0;Young +9551;France;M;Professionals;Accommodation and food service activities   ;Y50-64;2454;1;9.351525014231924e-06;64932339;3.779318653529484e-05;0;1;Old +9552;France;M;Professionals;Accommodation and food service activities   ;Y65-84;108;1;4.1155855808355654e-07;64932339;1.6632698230692106e-06;0;1;Old +9553;France;M;Professionals;Accommodation and food service activities   ;Y_GE85;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;0;1;Old +9554;France;M;Professionals;Information and communication   ;Y15-29;54266;1;0.0002067929325274285;64932339;0.0008357314835062387;1;0;Young +9555;France;M;Professionals;Information and communication   ;Y30-49;143139;1;0.0005454637078289092;64932339;0.00220443314078059;1;0;Young +9556;France;M;Professionals;Information and communication   ;Y50-64;37439;1;0.0001426698227415766;64932339;0.0005765848046841497;0;1;Old +9557;France;M;Professionals;Information and communication   ;Y65-84;947;1;3.608758838010445e-06;64932339;1.4584412244875392e-05;0;1;Old +9558;France;M;Professionals;Information and communication   ;Y_GE85;106;1;4.039371033042314e-07;64932339;1.6324685300494104e-06;0;1;Old +9559;France;M;Professionals;Financial and insurance activities   ;Y15-29;9888;1;3.76804724289834e-05;64932339;0.00015228159268989216;1;0;Young +9560;France;M;Professionals;Financial and insurance activities   ;Y30-49;41463;1;0.00015800418975757874;64932339;0.0006385570062399878;1;0;Young +9561;France;M;Professionals;Financial and insurance activities   ;Y50-64;18517;1;7.056323907438164e-05;64932339;0.0002851737714238201;0;1;Old +9562;France;M;Professionals;Financial and insurance activities   ;Y65-84;389;1;1.482372954578736e-06;64932339;5.990851492351138e-06;0;1;Old +9563;France;M;Professionals;Financial and insurance activities   ;Y_GE85;36;1;1.3718618602785217e-07;64932339;5.544232743564035e-07;0;1;Old +9564;France;M;Professionals;Real estate activities   ;Y15-29;1451;1;5.529365442400375e-06;64932339;2.234633808586504e-05;1;0;Young +9565;France;M;Professionals;Real estate activities   ;Y30-49;5293;1;2.0170180073483934e-05;64932339;8.151562197690121e-05;1;0;Young +9566;France;M;Professionals;Real estate activities   ;Y50-64;2865;1;1.0917733971383236e-05;64932339;4.412285225086378e-05;0;1;Old +9567;France;M;Professionals;Real estate activities   ;Y65-84;84;1;3.201011007316551e-07;64932339;1.293654306831608e-06;0;1;Old +9568;France;M;Professionals;Real estate activities   ;Y_GE85;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +9569;France;M;Professionals;Professional, scientific and technical activities   ;Y15-29;55590;1;0.00021183833559134174;64932339;0.0008561219394853464;1;0;Young +9570;France;M;Professionals;Professional, scientific and technical activities   ;Y30-49;177518;1;0.0006764727047581184;64932339;0.0027338919671444457;1;0;Young +9571;France;M;Professionals;Professional, scientific and technical activities   ;Y50-64;88973;1;0.000339051848040447;64932339;0.0013702417219253415;0;1;Old +9572;France;M;Professionals;Professional, scientific and technical activities   ;Y65-84;5860;1;2.2330862503422603e-05;64932339;9.024778854801457e-05;0;1;Old +9573;France;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;290;1;1.1051109430021426e-06;64932339;4.466187487871028e-06;0;1;Old +9574;France;M;Professionals;Administrative and support service activities   ;Y15-29;7991;1;3.0451522570793523e-05;64932339;0.0001230665662606117;1;0;Young +9575;France;M;Professionals;Administrative and support service activities   ;Y30-49;23854;1;9.090109115301072e-05;64932339;0.0003673670218471569;1;0;Young +9576;France;M;Professionals;Administrative and support service activities   ;Y50-64;9682;1;3.689546258671291e-05;64932339;0.00014910905950885276;0;1;Old +9577;France;M;Professionals;Administrative and support service activities   ;Y65-84;434;1;1.6538556871135514e-06;64932339;6.683880585296643e-06;0;1;Old +9578;France;M;Professionals;Administrative and support service activities   ;Y_GE85;24;1;9.145745735190145e-08;64932339;3.6961551623760236e-07;0;1;Old +9579;France;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;9419;1;3.589324128323166e-05;64932339;0.00014505868947674902;1;0;Young +9580;France;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;53288;1;0.00020306604114033851;64932339;0.0008206696512195564;1;0;Young +9581;France;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;38673;1;0.0001473722603404202;64932339;0.0005955892024773665;0;1;Old +9582;France;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;551;1;2.099710791704071e-06;64932339;8.485756226954954e-06;0;1;Old +9583;France;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;52;1;1.9815782426245315e-07;64932339;8.008336185148051e-07;0;1;Old +9584;France;M;Professionals;Education   ;Y15-29;43289;1;0.0001649625779711026;64932339;0.0006666785867670654;1;0;Young +9585;France;M;Professionals;Education   ;Y30-49;226161;1;0.0008618379171734744;64932339;0.003483025615325516;1;0;Young +9586;France;M;Professionals;Education   ;Y50-64;123992;1;0.0004724997104990402;64932339;0.0019095569620555329;0;1;Old +9587;France;M;Professionals;Education   ;Y65-84;2466;1;9.397253742907874e-06;64932339;3.797799429341364e-05;0;1;Old +9588;France;M;Professionals;Education   ;Y_GE85;154;1;5.868520180080343e-07;64932339;2.371699562524615e-06;0;1;Old +9589;France;M;Professionals;Human health and social work activities   ;Y15-29;18957;1;7.223995912583316e-05;64932339;0.00029195005588817616;1;0;Young +9590;France;M;Professionals;Human health and social work activities   ;Y30-49;66436;1;0.0002531694848596219;64932339;0.0010231573515317228;1;0;Young +9591;France;M;Professionals;Human health and social work activities   ;Y50-64;62203;1;0.00023703867581918026;64932339;0.0009579664148553158;0;1;Old +9592;France;M;Professionals;Human health and social work activities   ;Y65-84;3725;1;1.4194959526493039e-05;64932339;5.736740824937786e-05;0;1;Old +9593;France;M;Professionals;Human health and social work activities   ;Y_GE85;218;1;8.307385709464382e-07;64932339;3.3573409391582215e-06;0;1;Old +9594;France;M;Professionals;Arts, entertainment and recreation   ;Y15-29;8078;1;3.078305585369417e-05;64932339;0.00012440642250697299;1;0;Young +9595;France;M;Professionals;Arts, entertainment and recreation   ;Y30-49;31645;1;0.00012059046824587173;64932339;0.0004873534588057886;1;0;Young +9596;France;M;Professionals;Arts, entertainment and recreation   ;Y50-64;14632;1;5.5758563165542585e-05;64932339;0.00022534225973285823;0;1;Old +9597;France;M;Professionals;Arts, entertainment and recreation   ;Y65-84;1258;1;4.793895056195501e-06;64932339;1.9374013309454322e-05;0;1;Old +9598;France;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;91;1;3.46776192459293e-07;64932339;1.401458832400909e-06;0;1;Old +9599;France;M;Professionals;Other service activities   ;Y15-29;6488;1;2.4723999304130693e-05;64932339;9.991939455623183e-05;1;0;Young +9600;France;M;Professionals;Other service activities   ;Y30-49;29063;1;0.000110751170125763;64932339;0.0004475889895172265;1;0;Young +9601;France;M;Professionals;Other service activities   ;Y50-64;15486;1;5.9012924356314415e-05;64932339;0.00023849441185231293;0;1;Old +9602;France;M;Professionals;Other service activities   ;Y65-84;3178;1;1.2110491644347618e-05;64932339;4.894325460846251e-05;0;1;Old +9603;France;M;Professionals;Other service activities   ;Y_GE85;746;1;2.84280263268827e-06;64932339;1.1488882296385473e-05;0;1;Old +9604;France;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;35;1;1.3337545863818962e-07;64932339;5.390226278465034e-07;1;0;Young +9605;France;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;208;1;7.926312970498126e-07;64932339;3.2033344740592205e-06;1;0;Young +9606;France;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;104;1;3.963156485249063e-07;64932339;1.6016672370296103e-06;0;1;Old +9607;France;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +9608;France;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;135;1;5.144481976044457e-07;64932339;2.079087278836513e-06;1;0;Young +9609;France;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;1439;1;5.483636713724425e-06;64932339;2.216153032774624e-05;1;0;Young +9610;France;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;894;1;3.406790286358329e-06;64932339;1.3768177979850687e-05;0;1;Old +9611;France;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;36;1;1.3718618602785217e-07;64932339;5.544232743564035e-07;0;1;Old +9612;France;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9613;France;M;Professionals;Not stated   ;Y15-29;30219;1;0.00011515637098821292;64932339;0.00046539213688267107;1;0;Young +9614;France;M;Professionals;Not stated   ;Y30-49;48918;1;0.00018641316244751314;64932339;0.000753368825971293;1;0;Young +9615;France;M;Professionals;Not stated   ;Y50-64;26693;1;0.00010171974621226272;64932339;0.0004110894572887633;0;1;Old +9616;France;M;Professionals;Not stated   ;Y65-84;3056;1;1.1645582902808784e-05;64932339;4.70643757342547e-05;0;1;Old +9617;France;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;4834;1;1.842105620162882e-05;64932339;7.444672522885707e-05;1;0;Young +9618;France;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;12655;1;4.8224755116179706e-05;64932339;0.00019489518158278572;1;0;Young +9619;France;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;6302;1;2.4015204009653456e-05;64932339;9.705487430539041e-05;0;1;Old +9620;France;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;75;1;2.8580455422469204e-07;64932339;1.1550484882425073e-06;0;1;Old +9621;France;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9622;France;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;372;1;1.4175905889544725e-06;64932339;5.7290405016828364e-06;1;0;Young +9623;France;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;1884;1;7.1794104021242645e-06;64932339;2.9014818024651784e-05;1;0;Young +9624;France;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;992;1;3.78024157054526e-06;64932339;1.5277441337820896e-05;0;1;Old +9625;France;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9626;France;M;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9627;France;M;Technicians and associate professionals;Manufacturing   ;Y15-29;70005;1;0.0002667699709133275;64932339;0.0010781222589255563;1;0;Young +9628;France;M;Technicians and associate professionals;Manufacturing   ;Y30-49;250226;1;0.0009535430718057039;64932339;0.0038536421735862617;1;0;Young +9629;France;M;Technicians and associate professionals;Manufacturing   ;Y50-64;108040;1;0.00041171098717914304;64932339;0.0016638858489296067;0;1;Old +9630;France;M;Technicians and associate professionals;Manufacturing   ;Y65-84;568;1;2.1644931573283344e-06;64932339;8.747567217623256e-06;0;1;Old +9631;France;M;Technicians and associate professionals;Manufacturing   ;Y_GE85;73;1;2.7818309944536694e-07;64932339;1.1242471952227072e-06;0;1;Old +9632;France;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;8805;1;3.3553454665978846e-05;64932339;0.00013560269251967037;1;0;Young +9633;France;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;31587;1;0.0001203694460572713;64932339;0.0004864602213082144;1;0;Young +9634;France;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;15883;1;6.0525783130010446e-05;64932339;0.00024460846851674325;0;1;Old +9635;France;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;48;1;1.829149147038029e-07;64932339;7.392310324752047e-07;0;1;Old +9636;France;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;39;1;1.4861836819683987e-07;64932339;6.006252138861038e-07;0;1;Old +9637;France;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;5519;1;2.1031404463547672e-05;64932339;8.499616808813863e-05;1;0;Young +9638;France;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;18676;1;7.116914472933798e-05;64932339;0.0002876224742188942;1;0;Young +9639;France;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;7606;1;2.8984392525773437e-05;64932339;0.00011713731735430015;0;1;Old +9640;France;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;55;1;2.0959000643144082e-07;64932339;8.470355580445054e-07;0;1;Old +9641;France;M;Technicians and associate professionals;Construction   ;Y15-29;42698;1;0.000162710438083812;64932339;0.0006575768046797143;1;0;Young +9642;France;M;Technicians and associate professionals;Construction   ;Y30-49;103633;1;0.0003949171115729001;64932339;0.001596015199760477;1;0;Young +9643;France;M;Technicians and associate professionals;Construction   ;Y50-64;38917;1;0.00014830207782349787;64932339;0.0005993469602257821;0;1;Old +9644;France;M;Technicians and associate professionals;Construction   ;Y65-84;394;1;1.5014265915270488e-06;64932339;6.067854724900639e-06;0;1;Old +9645;France;M;Technicians and associate professionals;Construction   ;Y_GE85;42;1;1.6005055036582754e-07;64932339;6.46827153415804e-07;0;1;Old +9646;France;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;59348;1;0.00022615904912169364;64932339;0.000913997569069551;1;0;Young +9647;France;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;141332;1;0.000538577723435789;64932339;0.0021766041725372006;1;0;Young +9648;France;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;50730;1;0.0001933182004775817;64932339;0.0007812747974472319;0;1;Old +9649;France;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;780;1;2.9723673639367973e-06;64932339;1.2012504277722076e-05;0;1;Old +9650;France;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;84;1;3.201011007316551e-07;64932339;1.293654306831608e-06;0;1;Old +9651;France;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;16110;1;6.139081824746385e-05;64932339;0.0002481044152744906;1;0;Young +9652;France;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;66997;1;0.0002553073029252226;64932339;0.0010317971142237768;1;0;Young +9653;France;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;33015;1;0.00012581116476970944;64932339;0.0005084523445243517;0;1;Old +9654;France;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;208;1;7.926312970498126e-07;64932339;3.2033344740592205e-06;0;1;Old +9655;France;M;Technicians and associate professionals;Transportation and storage   ;Y_GE85;28;1;1.067003669105517e-07;64932339;4.312181022772027e-07;0;1;Old +9656;France;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;9990;1;3.806916662272898e-05;64932339;0.00015385245863390196;1;0;Young +9657;France;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;25702;1;9.794331536910712e-05;64932339;0.0003958274165974523;1;0;Young +9658;France;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;7379;1;2.8119357408320035e-05;64932339;0.00011364137059655283;0;1;Old +9659;France;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;151;1;5.754198358390467e-07;64932339;2.325497622994915e-06;0;1;Old +9660;France;M;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;20;1;7.621454779325121e-08;64932339;3.0801293019800195e-07;0;1;Old +9661;France;M;Technicians and associate professionals;Information and communication   ;Y15-29;23197;1;8.839744325800242e-05;64932339;0.00035724879709015257;1;0;Young +9662;France;M;Technicians and associate professionals;Information and communication   ;Y30-49;47064;1;0.00017934807386707876;64932339;0.0007248160273419382;1;0;Young +9663;France;M;Technicians and associate professionals;Information and communication   ;Y50-64;24084;1;9.177755845263311e-05;64932339;0.00037090917054443393;0;1;Old +9664;France;M;Technicians and associate professionals;Information and communication   ;Y65-84;136;1;5.182589249941082e-07;64932339;2.0944879253464133e-06;0;1;Old +9665;France;M;Technicians and associate professionals;Information and communication   ;Y_GE85;18;1;6.859309301392609e-08;64932339;2.7721163717820174e-07;0;1;Old +9666;France;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;22743;1;8.666737302309561e-05;64932339;0.00035025690357465793;1;0;Young +9667;France;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;64669;1;0.00024643592956208815;64932339;0.0009959444091487293;1;0;Young +9668;France;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;38804;1;0.000147871465628466;64932339;0.0005976066871701634;0;1;Old +9669;France;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;505;1;1.924417331779593e-06;64932339;7.777326487499549e-06;0;1;Old +9670;France;M;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;53;1;2.019685516521157e-07;64932339;8.162342650247052e-07;0;1;Old +9671;France;M;Technicians and associate professionals;Real estate activities   ;Y15-29;12257;1;4.6708085615094e-05;64932339;0.0001887657242718455;1;0;Young +9672;France;M;Technicians and associate professionals;Real estate activities   ;Y30-49;38007;1;0.00014483431589890495;64932339;0.000585332371901773;1;0;Young +9673;France;M;Technicians and associate professionals;Real estate activities   ;Y50-64;20014;1;7.626789797670648e-05;64932339;0.00030822853924914053;0;1;Old +9674;France;M;Technicians and associate professionals;Real estate activities   ;Y65-84;727;1;2.7703988122846815e-06;64932339;1.119627001269737e-05;0;1;Old +9675;France;M;Technicians and associate professionals;Real estate activities   ;Y_GE85;57;1;2.1721146121076594e-07;64932339;8.778368510643056e-07;0;1;Old +9676;France;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;46134;1;0.00017580409739469257;64932339;0.0007104934260877312;1;0;Young +9677;France;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;88261;1;0.00033633861013900723;64932339;0.0013592764616102925;1;0;Young +9678;France;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;31328;1;0.0001193824676633487;64932339;0.0004824714538621503;0;1;Old +9679;France;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;678;1;2.5836731701912162e-06;64932339;1.0441638333712266e-05;0;1;Old +9680;France;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;90;1;3.4296546506963047e-07;64932339;1.3860581858910088e-06;0;1;Old +9681;France;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;29222;1;0.00011135707578071934;64932339;0.00045003769231230067;1;0;Young +9682;France;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;49510;1;0.00018866911306219338;64932339;0.0007624860087051538;1;0;Young +9683;France;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;13955;1;5.317870072274103e-05;64932339;0.00021491602204565586;0;1;Old +9684;France;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;217;1;8.269278435567757e-07;64932339;3.3419402926483213e-06;0;1;Old +9685;France;M;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;40;1;1.5242909558650242e-07;64932339;6.160258603960039e-07;0;1;Old +9686;France;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;29454;1;0.00011224116453512105;64932339;0.00045361064230259746;1;0;Young +9687;France;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;140283;1;0.000534580270404033;64932339;0.0021604488943483156;1;0;Young +9688;France;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;79742;1;0.0003038750235064719;64932339;0.0012280783539924537;0;1;Old +9689;France;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;378;1;1.4404549532924478e-06;64932339;5.821444380742237e-06;0;1;Old +9690;France;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;83;1;3.1629037334199253e-07;64932339;1.2782536603217081e-06;0;1;Old +9691;France;M;Technicians and associate professionals;Education   ;Y15-29;25018;1;9.533677783457794e-05;64932339;0.00038529337438468063;1;0;Young +9692;France;M;Technicians and associate professionals;Education   ;Y30-49;35034;1;0.00013350502336943816;64932339;0.0005395462498278401;1;0;Young +9693;France;M;Technicians and associate professionals;Education   ;Y50-64;13352;1;5.088083210677451e-05;64932339;0.0002056294322001861;0;1;Old +9694;France;M;Technicians and associate professionals;Education   ;Y65-84;222;1;8.459814805050885e-07;64932339;3.418943525197822e-06;0;1;Old +9695;France;M;Technicians and associate professionals;Education   ;Y_GE85;43;1;1.638612777554901e-07;64932339;6.622277999257042e-07;0;1;Old +9696;France;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;34291;1;0.00013067365291891887;64932339;0.0005281035694709843;1;0;Young +9697;France;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;109230;1;0.0004162457527728415;64932339;0.0016822126182763878;1;0;Young +9698;France;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;47347;1;0.00018042650971835324;64932339;0.0007291744103042399;0;1;Old +9699;France;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;374;1;1.4252120437337977e-06;64932339;5.759841794702637e-06;0;1;Old +9700;France;M;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;77;1;2.9342600900401714e-07;64932339;1.1858497812623075e-06;0;1;Old +9701;France;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;19083;1;7.272011077693065e-05;64932339;0.00029389053734842356;1;0;Young +9702;France;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;32033;1;0.0001220690304730608;64932339;0.0004933289096516299;1;0;Young +9703;France;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;8940;1;3.406790286358329e-05;64932339;0.00013768177979850687;0;1;Old +9704;France;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;156;1;5.944734727873595e-07;64932339;2.4025008555444153e-06;0;1;Old +9705;France;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;0;1;Old +9706;France;M;Technicians and associate professionals;Other service activities   ;Y15-29;12541;1;4.779033219375817e-05;64932339;0.00019313950788065712;1;0;Young +9707;France;M;Technicians and associate professionals;Other service activities   ;Y30-49;31825;1;0.000121276399176011;64932339;0.0004901255751775706;1;0;Young +9708;France;M;Technicians and associate professionals;Other service activities   ;Y50-64;13213;1;5.0351140999611414e-05;64932339;0.00020348874233531;0;1;Old +9709;France;M;Technicians and associate professionals;Other service activities   ;Y65-84;381;1;1.4518871354614356e-06;64932339;5.867646320271937e-06;0;1;Old +9710;France;M;Technicians and associate professionals;Other service activities   ;Y_GE85;194;1;7.392811135945367e-07;64932339;2.987725422920619e-06;0;1;Old +9711;France;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;58;1;2.2102218860042852e-07;64932339;8.932374975742057e-07;1;0;Young +9712;France;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;222;1;8.459814805050885e-07;64932339;3.418943525197822e-06;1;0;Young +9713;France;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;154;1;5.868520180080343e-07;64932339;2.371699562524615e-06;0;1;Old +9714;France;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;167;1;6.363914740736477e-07;64932339;2.5719079671533164e-06;1;0;Young +9715;France;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;1202;1;4.580494322374398e-06;64932339;1.851157710489992e-05;1;0;Young +9716;France;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;689;1;2.6255911714775044e-06;64932339;1.0611045445321167e-05;0;1;Old +9717;France;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +9718;France;M;Technicians and associate professionals;Not stated   ;Y15-29;72037;1;0.00027451336896912185;64932339;0.0011094163726336733;1;0;Young +9719;France;M;Technicians and associate professionals;Not stated   ;Y30-49;88627;1;0.00033773333636362375;64932339;0.0013649130982329159;1;0;Young +9720;France;M;Technicians and associate professionals;Not stated   ;Y50-64;46405;1;0.00017683680451729112;64932339;0.000714667001291914;0;1;Old +9721;France;M;Technicians and associate professionals;Not stated   ;Y65-84;3518;1;1.3406138956832887e-05;64932339;5.417947442182854e-05;0;1;Old +9722;France;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;428;1;1.630991322775576e-06;64932339;6.5914767062372415e-06;1;0;Young +9723;France;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;1229;1;4.683383961895287e-06;64932339;1.892739456066722e-05;1;0;Young +9724;France;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;699;1;2.66369844537413e-06;64932339;1.0765051910420169e-05;0;1;Old +9725;France;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;0;1;Old +9726;France;M;Clerical support workers;Mining and quarrying   ;Y15-29;77;1;2.9342600900401714e-07;64932339;1.1858497812623075e-06;1;0;Young +9727;France;M;Clerical support workers;Mining and quarrying   ;Y30-49;176;1;6.706880205806106e-07;64932339;2.7105137857424172e-06;1;0;Young +9728;France;M;Clerical support workers;Mining and quarrying   ;Y50-64;112;1;4.268014676422068e-07;64932339;1.7248724091088109e-06;0;1;Old +9729;France;M;Clerical support workers;Mining and quarrying   ;Y65-84;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9730;France;M;Clerical support workers;Manufacturing   ;Y15-29;7080;1;2.697994991881093e-05;64932339;0.00010903657729009269;1;0;Young +9731;France;M;Clerical support workers;Manufacturing   ;Y30-49;21428;1;8.165626650568935e-05;64932339;0.0003300050534141393;1;0;Young +9732;France;M;Clerical support workers;Manufacturing   ;Y50-64;10014;1;3.816062408008088e-05;64932339;0.0001542220741501396;0;1;Old +9733;France;M;Clerical support workers;Manufacturing   ;Y65-84;79;1;3.010474637833423e-07;64932339;1.2166510742821076e-06;0;1;Old +9734;France;M;Clerical support workers;Manufacturing   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9735;France;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;675;1;2.5722409880222284e-06;64932339;1.0395436394182566e-05;1;0;Young +9736;France;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1906;1;7.26324640469684e-06;64932339;2.9353632247869586e-05;1;0;Young +9737;France;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1069;1;4.073667579549277e-06;64932339;1.6463291119083204e-05;0;1;Old +9738;France;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +9739;France;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;985;1;3.753566478817622e-06;64932339;1.5169636812251596e-05;1;0;Young +9740;France;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3596;1;1.3703375693226568e-05;64932339;5.5380724849600754e-05;1;0;Young +9741;France;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1441;1;5.49125816850375e-06;64932339;2.219233162076604e-05;0;1;Old +9742;France;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +9743;France;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9744;France;M;Clerical support workers;Construction   ;Y15-29;3180;1;1.2118113099126942e-05;64932339;4.897405590148231e-05;1;0;Young +9745;France;M;Clerical support workers;Construction   ;Y30-49;5930;1;2.2597613420698985e-05;64932339;9.132583380370758e-05;1;0;Young +9746;France;M;Clerical support workers;Construction   ;Y50-64;2174;1;8.284521345126406e-06;64932339;3.348100551252281e-05;0;1;Old +9747;France;M;Clerical support workers;Construction   ;Y65-84;27;1;1.0288963952088914e-07;64932339;4.1581745576730264e-07;0;1;Old +9748;France;M;Clerical support workers;Construction   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9749;France;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;12221;1;4.6570899429066154e-05;64932339;0.0001882113009974891;1;0;Young +9750;France;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;34653;1;0.00013205313623397671;64932339;0.0005336786035075681;1;0;Young +9751;France;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;11274;1;4.296214059105571e-05;64932339;0.0001736268887526137;0;1;Old +9752;France;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;153;1;5.830412906183718e-07;64932339;2.3562989160147147e-06;0;1;Old +9753;France;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;26;1;9.907891213122657e-08;64932339;4.0041680925740257e-07;0;1;Old +9754;France;M;Clerical support workers;Transportation and storage   ;Y15-29;21681;1;8.262038053527398e-05;64932339;0.000333901416981144;1;0;Young +9755;France;M;Clerical support workers;Transportation and storage   ;Y30-49;73818;1;0.0002813002744501109;64932339;0.0011368449240678055;1;0;Young +9756;France;M;Clerical support workers;Transportation and storage   ;Y50-64;37736;1;0.0001438016087763064;64932339;0.0005811587966975901;0;1;Old +9757;France;M;Clerical support workers;Transportation and storage   ;Y65-84;310;1;1.1813254907953937e-06;64932339;4.77420041806903e-06;0;1;Old +9758;France;M;Clerical support workers;Transportation and storage   ;Y_GE85;61;1;2.3245437076941619e-07;64932339;9.394394371039059e-07;0;1;Old +9759;France;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;8169;1;3.112983204615346e-05;64932339;0.0001258078813393739;1;0;Young +9760;France;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;15466;1;5.8936709808521163e-05;64932339;0.00023818639892211492;1;0;Young +9761;France;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;4613;1;1.7578885448513393e-05;64932339;7.104318235016915e-05;0;1;Old +9762;France;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;122;1;4.6490874153883237e-07;64932339;1.8788788742078118e-06;0;1;Old +9763;France;M;Clerical support workers;Accommodation and food service activities   ;Y_GE85;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;0;1;Old +9764;France;M;Clerical support workers;Information and communication   ;Y15-29;5194;1;1.979291806190734e-05;64932339;7.99909579724211e-05;1;0;Young +9765;France;M;Clerical support workers;Information and communication   ;Y30-49;7394;1;2.8176518319164972e-05;64932339;0.00011387238029420132;1;0;Young +9766;France;M;Clerical support workers;Information and communication   ;Y50-64;4028;1;1.5349609925560793e-05;64932339;6.203380414187759e-05;0;1;Old +9767;France;M;Clerical support workers;Information and communication   ;Y65-84;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;0;1;Old +9768;France;M;Clerical support workers;Information and communication   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +9769;France;M;Clerical support workers;Financial and insurance activities   ;Y15-29;14917;1;5.684462047159642e-05;64932339;0.00022973144398817974;1;0;Young +9770;France;M;Clerical support workers;Financial and insurance activities   ;Y30-49;22874;1;8.71665783111414e-05;64932339;0.00035227438826745483;1;0;Young +9771;France;M;Clerical support workers;Financial and insurance activities   ;Y50-64;13574;1;5.17268135872796e-05;64932339;0.00020904837572538392;0;1;Old +9772;France;M;Clerical support workers;Financial and insurance activities   ;Y65-84;114;1;4.344229224215319e-07;64932339;1.7556737021286112e-06;0;1;Old +9773;France;M;Clerical support workers;Financial and insurance activities   ;Y_GE85;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;0;1;Old +9774;France;M;Clerical support workers;Real estate activities   ;Y15-29;2511;1;9.568736475442689e-06;64932339;3.867102338635914e-05;1;0;Young +9775;France;M;Clerical support workers;Real estate activities   ;Y30-49;4665;1;1.7777043272775845e-05;64932339;7.184401596868396e-05;1;0;Young +9776;France;M;Clerical support workers;Real estate activities   ;Y50-64;2233;1;8.509354261116498e-06;64932339;3.438964365660692e-05;0;1;Old +9777;France;M;Clerical support workers;Real estate activities   ;Y65-84;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;0;1;Old +9778;France;M;Clerical support workers;Real estate activities   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +9779;France;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;11820;1;4.504279774581147e-05;64932339;0.00018203564174701915;1;0;Young +9780;France;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;15949;1;6.077729113772818e-05;64932339;0.0002456249111863967;1;0;Young +9781;France;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;4940;1;1.8824993304933048e-05;64932339;7.607919375890648e-05;0;1;Old +9782;France;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;100;1;3.8107273896625605e-07;64932339;1.5400646509900097e-06;0;1;Old +9783;France;M;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;44;1;1.6767200514515266e-07;64932339;6.776284464356043e-07;0;1;Old +9784;France;M;Clerical support workers;Administrative and support service activities   ;Y15-29;9634;1;3.6712547672009106e-05;64932339;0.00014836982847637754;1;0;Young +9785;France;M;Clerical support workers;Administrative and support service activities   ;Y30-49;13203;1;5.0313033725714784e-05;64932339;0.00020333473587021099;1;0;Young +9786;France;M;Clerical support workers;Administrative and support service activities   ;Y50-64;3250;1;1.2384864016403322e-05;64932339;5.0052101157175316e-05;0;1;Old +9787;France;M;Clerical support workers;Administrative and support service activities   ;Y65-84;53;1;2.019685516521157e-07;64932339;8.162342650247052e-07;0;1;Old +9788;France;M;Clerical support workers;Administrative and support service activities   ;Y_GE85;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +9789;France;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;16631;1;6.337620721747805e-05;64932339;0.00025612815210614853;1;0;Young +9790;France;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;77438;1;0.00029509510760068936;64932339;0.0011925952644336437;1;0;Young +9791;France;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;40023;1;0.00015251674231646467;64932339;0.0006163800752657316;0;1;Old +9792;France;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;233;1;8.878994817913766e-07;64932339;3.588350636806723e-06;0;1;Old +9793;France;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;33;1;1.257540038588645e-07;64932339;5.082213348267033e-07;0;1;Old +9794;France;M;Clerical support workers;Education   ;Y15-29;3808;1;1.4511249899835031e-05;64932339;5.8645661909699575e-05;1;0;Young +9795;France;M;Clerical support workers;Education   ;Y30-49;11669;1;4.446737790997242e-05;64932339;0.00017971014412402424;1;0;Young +9796;France;M;Clerical support workers;Education   ;Y50-64;5518;1;2.1027593736158007e-05;64932339;8.498076744162874e-05;0;1;Old +9797;France;M;Clerical support workers;Education   ;Y65-84;53;1;2.019685516521157e-07;64932339;8.162342650247052e-07;0;1;Old +9798;France;M;Clerical support workers;Education   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9799;France;M;Clerical support workers;Human health and social work activities   ;Y15-29;3605;1;1.373767223973353e-05;64932339;5.551933066818985e-05;1;0;Young +9800;France;M;Clerical support workers;Human health and social work activities   ;Y30-49;11843;1;4.51304444757737e-05;64932339;0.00018238985661674686;1;0;Young +9801;France;M;Clerical support workers;Human health and social work activities   ;Y50-64;6729;1;2.564238460503937e-05;64932339;0.00010363095036511776;0;1;Old +9802;France;M;Clerical support workers;Human health and social work activities   ;Y65-84;90;1;3.4296546506963047e-07;64932339;1.3860581858910088e-06;0;1;Old +9803;France;M;Clerical support workers;Human health and social work activities   ;Y_GE85;34;1;1.2956473124852705e-07;64932339;5.236219813366033e-07;0;1;Old +9804;France;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2789;1;1.0628118689768882e-05;64932339;4.295240311611137e-05;1;0;Young +9805;France;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;5794;1;2.2079354495704875e-05;64932339;8.923134587836116e-05;1;0;Young +9806;France;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2344;1;8.932345001369041e-06;64932339;3.609911541920583e-05;0;1;Old +9807;France;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;29;1;1.1051109430021426e-07;64932339;4.4661874878710285e-07;0;1;Old +9808;France;M;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9809;France;M;Clerical support workers;Other service activities   ;Y15-29;3074;1;1.1714175995822711e-05;64932339;4.73415873714329e-05;1;0;Young +9810;France;M;Clerical support workers;Other service activities   ;Y30-49;8169;1;3.112983204615346e-05;64932339;0.0001258078813393739;1;0;Young +9811;France;M;Clerical support workers;Other service activities   ;Y50-64;3763;1;1.4339767167300216e-05;64932339;5.7952632816754066e-05;0;1;Old +9812;France;M;Clerical support workers;Other service activities   ;Y65-84;80;1;3.0485819117300483e-07;64932339;1.2320517207920078e-06;0;1;Old +9813;France;M;Clerical support workers;Other service activities   ;Y_GE85;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +9814;France;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;57;1;2.1721146121076594e-07;64932339;8.778368510643056e-07;1;0;Young +9815;France;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;118;1;4.496658319801821e-07;64932339;1.8172762881682115e-06;1;0;Young +9816;France;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;55;1;2.0959000643144082e-07;64932339;8.470355580445054e-07;0;1;Old +9817;France;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9818;France;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;107;1;4.07747830693894e-07;64932339;1.6478691765593104e-06;1;0;Young +9819;France;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;917;1;3.494437016320568e-06;64932339;1.412239284957839e-05;1;0;Young +9820;France;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;528;1;2.012064061741832e-06;64932339;8.131541357227252e-06;0;1;Old +9821;France;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;29;1;1.1051109430021426e-07;64932339;4.4661874878710285e-07;0;1;Old +9822;France;M;Clerical support workers;Not stated   ;Y15-29;23956;1;9.12897853467563e-05;64932339;0.00036893788779116676;1;0;Young +9823;France;M;Clerical support workers;Not stated   ;Y30-49;23539;1;8.970071202526702e-05;64932339;0.0003625158181965384;1;0;Young +9824;France;M;Clerical support workers;Not stated   ;Y50-64;13728;1;5.2313665605287634e-05;64932339;0.00021142007528790854;0;1;Old +9825;France;M;Clerical support workers;Not stated   ;Y65-84;1120;1;4.268014676422068e-06;64932339;1.724872409108811e-05;0;1;Old +9826;France;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;1471;1;5.6055799901936264e-06;64932339;2.2654351016063045e-05;1;0;Young +9827;France;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;3693;1;1.4073016250023836e-05;64932339;5.687458756106106e-05;1;0;Young +9828;France;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2020;1;7.697669327118372e-06;64932339;3.1109305949998195e-05;0;1;Old +9829;France;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;107;1;4.07747830693894e-07;64932339;1.6478691765593104e-06;0;1;Old +9830;France;M;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9831;France;M;Service and sales workers;Mining and quarrying   ;Y15-29;56;1;2.134007338211034e-07;64932339;8.624362045544054e-07;1;0;Young +9832;France;M;Service and sales workers;Mining and quarrying   ;Y30-49;152;1;5.792305632287092e-07;64932339;2.340898269504815e-06;1;0;Young +9833;France;M;Service and sales workers;Mining and quarrying   ;Y50-64;58;1;2.2102218860042852e-07;64932339;8.932374975742057e-07;0;1;Old +9834;France;M;Service and sales workers;Mining and quarrying   ;Y65-84;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +9835;France;M;Service and sales workers;Manufacturing   ;Y15-29;7064;1;2.6918978280576327e-05;64932339;0.00010879016694593428;1;0;Young +9836;France;M;Service and sales workers;Manufacturing   ;Y30-49;14110;1;5.376936346813873e-05;64932339;0.00021730312225469038;1;0;Young +9837;France;M;Service and sales workers;Manufacturing   ;Y50-64;6491;1;2.473543148629968e-05;64932339;9.996559649576154e-05;0;1;Old +9838;France;M;Service and sales workers;Manufacturing   ;Y65-84;150;1;5.716091084493841e-07;64932339;2.3100969764850146e-06;0;1;Old +9839;France;M;Service and sales workers;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9840;France;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;300;1;1.1432182168987682e-06;64932339;4.620193952970029e-06;1;0;Young +9841;France;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;746;1;2.84280263268827e-06;64932339;1.1488882296385473e-05;1;0;Young +9842;France;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;420;1;1.6005055036582754e-06;64932339;6.468271534158041e-06;0;1;Old +9843;France;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;0;1;Old +9844;France;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +9845;France;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;441;1;1.6805307788411892e-06;64932339;6.791685110865943e-06;1;0;Young +9846;France;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1097;1;4.180367946459829e-06;64932339;1.6894509221360406e-05;1;0;Young +9847;France;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;449;1;1.7110165979584897e-06;64932339;6.914890282945144e-06;0;1;Old +9848;France;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +9849;France;M;Service and sales workers;Construction   ;Y15-29;3799;1;1.4476953353328068e-05;64932339;5.850705609111047e-05;1;0;Young +9850;France;M;Service and sales workers;Construction   ;Y30-49;5814;1;2.2155569043498127e-05;64932339;8.953935880855917e-05;1;0;Young +9851;France;M;Service and sales workers;Construction   ;Y50-64;2522;1;9.610654476728977e-06;64932339;3.8840430497968044e-05;0;1;Old +9852;France;M;Service and sales workers;Construction   ;Y65-84;74;1;2.819938268350295e-07;64932339;1.1396478417326071e-06;0;1;Old +9853;France;M;Service and sales workers;Construction   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9854;France;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;119268;1;0.0004544978343102743;64932339;0.0018368043079427649;1;0;Young +9855;France;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;246326;1;0.0009386812349860199;64932339;0.0037935796521976514;1;0;Young +9856;France;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;94591;1;0.00036046051451557126;64932339;0.00145676255401796;0;1;Old +9857;France;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3282;1;1.2506807292872524e-05;64932339;5.054492184549212e-05;0;1;Old +9858;France;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;192;1;7.316596588152116e-07;64932339;2.956924129900819e-06;0;1;Old +9859;France;M;Service and sales workers;Transportation and storage   ;Y15-29;4173;1;1.5902165397061865e-05;64932339;6.42668978858131e-05;1;0;Young +9860;France;M;Service and sales workers;Transportation and storage   ;Y30-49;16993;1;6.47556905325359e-05;64932339;0.00026170318614273237;1;0;Young +9861;France;M;Service and sales workers;Transportation and storage   ;Y50-64;4873;1;1.856967456982566e-05;64932339;7.504735044274317e-05;0;1;Old +9862;France;M;Service and sales workers;Transportation and storage   ;Y65-84;83;1;3.1629037334199253e-07;64932339;1.2782536603217081e-06;0;1;Old +9863;France;M;Service and sales workers;Transportation and storage   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +9864;France;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;86469;1;0.00032950978665673196;64932339;0.0013316785030645516;1;0;Young +9865;France;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;116490;1;0.00044391163362179166;64932339;0.0017940213119382624;1;0;Young +9866;France;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;40356;1;0.00015378571453722228;64932339;0.0006215084905535284;0;1;Old +9867;France;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;1243;1;4.736734145350563e-06;64932339;1.914300361180582e-05;0;1;Old +9868;France;M;Service and sales workers;Accommodation and food service activities   ;Y_GE85;107;1;4.07747830693894e-07;64932339;1.6478691765593104e-06;0;1;Old +9869;France;M;Service and sales workers;Information and communication   ;Y15-29;3870;1;1.4747514997994109e-05;64932339;5.960050199331338e-05;1;0;Young +9870;France;M;Service and sales workers;Information and communication   ;Y30-49;9896;1;3.77109582481007e-05;64932339;0.00015240479786197137;1;0;Young +9871;France;M;Service and sales workers;Information and communication   ;Y50-64;3566;1;1.358905387153669e-05;64932339;5.491870545430375e-05;0;1;Old +9872;France;M;Service and sales workers;Information and communication   ;Y65-84;191;1;7.27848931425549e-07;64932339;2.9415234833909187e-06;0;1;Old +9873;France;M;Service and sales workers;Information and communication   ;Y_GE85;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;0;1;Old +9874;France;M;Service and sales workers;Financial and insurance activities   ;Y15-29;3397;1;1.2945040942683718e-05;64932339;5.2315996194130635e-05;1;0;Young +9875;France;M;Service and sales workers;Financial and insurance activities   ;Y30-49;7749;1;2.9529326542495183e-05;64932339;0.00011933960980521586;1;0;Young +9876;France;M;Service and sales workers;Financial and insurance activities   ;Y50-64;4257;1;1.622226649779352e-05;64932339;6.556055219264472e-05;0;1;Old +9877;France;M;Service and sales workers;Financial and insurance activities   ;Y65-84;157;1;5.98284200177022e-07;64932339;2.4179015020543155e-06;0;1;Old +9878;France;M;Service and sales workers;Financial and insurance activities   ;Y_GE85;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +9879;France;M;Service and sales workers;Real estate activities   ;Y15-29;4743;1;1.8074280009169524e-05;64932339;7.304526639645617e-05;1;0;Young +9880;France;M;Service and sales workers;Real estate activities   ;Y30-49;13991;1;5.331588690876889e-05;64932339;0.00021547044532001228;1;0;Young +9881;France;M;Service and sales workers;Real estate activities   ;Y50-64;9123;1;3.476526597589154e-05;64932339;0.00014050009810981858;0;1;Old +9882;France;M;Service and sales workers;Real estate activities   ;Y65-84;322;1;1.2270542194713445e-06;64932339;4.9590081761878316e-06;0;1;Old +9883;France;M;Service and sales workers;Real estate activities   ;Y_GE85;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +9884;France;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;4327;1;1.64890174150699e-05;64932339;6.663859744833772e-05;1;0;Young +9885;France;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;16866;1;6.427172815404874e-05;64932339;0.00025974730403597506;1;0;Young +9886;France;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;8798;1;3.3526779574251206e-05;64932339;0.00013549488799410105;0;1;Old +9887;France;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;533;1;2.0311176986901446e-06;64932339;8.208544589776752e-06;0;1;Old +9888;France;M;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;29;1;1.1051109430021426e-07;64932339;4.4661874878710285e-07;0;1;Old +9889;France;M;Service and sales workers;Administrative and support service activities   ;Y15-29;29774;1;0.00011346059729981307;64932339;0.0004585388491857655;1;0;Young +9890;France;M;Service and sales workers;Administrative and support service activities   ;Y30-49;63873;1;0.00024340259055991674;64932339;0.000983685494526849;1;0;Young +9891;France;M;Service and sales workers;Administrative and support service activities   ;Y50-64;19714;1;7.512467975980772e-05;64932339;0.00030360834529617053;0;1;Old +9892;France;M;Service and sales workers;Administrative and support service activities   ;Y65-84;469;1;1.787231145751741e-06;64932339;7.222903213143146e-06;0;1;Old +9893;France;M;Service and sales workers;Administrative and support service activities   ;Y_GE85;39;1;1.4861836819683987e-07;64932339;6.006252138861038e-07;0;1;Old +9894;France;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;37883;1;0.00014436178570258678;64932339;0.0005834226917345454;1;0;Young +9895;France;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;101494;1;0.0003867659656864119;64932339;0.0015630732168758004;1;0;Young +9896;France;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;22336;1;8.511640697550296e-05;64932339;0.00034398884044512857;0;1;Old +9897;France;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;228;1;8.688458448430638e-07;64932339;3.5113474042572225e-06;0;1;Old +9898;France;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;57;1;2.1721146121076594e-07;64932339;8.778368510643056e-07;0;1;Old +9899;France;M;Service and sales workers;Education   ;Y15-29;7690;1;2.930449362650509e-05;64932339;0.00011843097166113175;1;0;Young +9900;France;M;Service and sales workers;Education   ;Y30-49;16824;1;6.411167760368292e-05;64932339;0.0002591004768825592;1;0;Young +9901;France;M;Service and sales workers;Education   ;Y50-64;7764;1;2.958648745334012e-05;64932339;0.00011957061950286435;0;1;Old +9902;France;M;Service and sales workers;Education   ;Y65-84;270;1;1.0288963952088914e-06;64932339;4.158174557673026e-06;0;1;Old +9903;France;M;Service and sales workers;Education   ;Y_GE85;6;1;2.2864364337975363e-08;64932339;9.240387905940059e-08;0;1;Old +9904;France;M;Service and sales workers;Human health and social work activities   ;Y15-29;13203;1;5.0313033725714784e-05;64932339;0.00020333473587021099;1;0;Young +9905;France;M;Service and sales workers;Human health and social work activities   ;Y30-49;44250;1;0.0001686246869925683;64932339;0.0006814786080630793;1;0;Young +9906;France;M;Service and sales workers;Human health and social work activities   ;Y50-64;17073;1;6.506054872370889e-05;64932339;0.00026293523786352434;0;1;Old +9907;France;M;Service and sales workers;Human health and social work activities   ;Y65-84;279;1;1.0631929417158544e-06;64932339;4.296780376262127e-06;0;1;Old +9908;France;M;Service and sales workers;Human health and social work activities   ;Y_GE85;47;1;1.7910418731414036e-07;64932339;7.238303859653046e-07;0;1;Old +9909;France;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;5615;1;2.1397234292955278e-05;64932339;8.647463015308905e-05;1;0;Young +9910;France;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;8897;1;3.39040415858278e-05;64932339;0.00013701955199858117;1;0;Young +9911;France;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2843;1;1.0833897968810659e-05;64932339;4.378403802764598e-05;0;1;Old +9912;France;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;127;1;4.839623784871452e-07;64932339;1.9558821067573125e-06;0;1;Old +9913;France;M;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +9914;France;M;Service and sales workers;Other service activities   ;Y15-29;9707;1;3.6990730771454474e-05;64932339;0.00014949407567160024;1;0;Young +9915;France;M;Service and sales workers;Other service activities   ;Y30-49;24731;1;9.424309907374479e-05;64932339;0.0003808733888363393;1;0;Young +9916;France;M;Service and sales workers;Other service activities   ;Y50-64;11557;1;4.4040576442330215e-05;64932339;0.00017798527171491543;0;1;Old +9917;France;M;Service and sales workers;Other service activities   ;Y65-84;592;1;2.255950614680236e-06;64932339;9.117182733860857e-06;0;1;Old +9918;France;M;Service and sales workers;Other service activities   ;Y_GE85;52;1;1.9815782426245315e-07;64932339;8.008336185148051e-07;0;1;Old +9919;France;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;134;1;5.106374702147831e-07;64932339;2.063686632326613e-06;1;0;Young +9920;France;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;639;1;2.435054801994376e-06;64932339;9.841013119826163e-06;1;0;Young +9921;France;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;433;1;1.6500449597238888e-06;64932339;6.6684799387867425e-06;0;1;Old +9922;France;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;23;1;8.764672996223889e-08;64932339;3.5421486972770223e-07;0;1;Old +9923;France;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;62;1;2.3626509815907876e-07;64932339;9.54840083613806e-07;1;0;Young +9924;France;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;315;1;1.2003791277437065e-06;64932339;4.851203650618531e-06;1;0;Young +9925;France;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;171;1;6.516343836322978e-07;64932339;2.6335105531929168e-06;0;1;Old +9926;France;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +9927;France;M;Service and sales workers;Not stated   ;Y15-29;83907;1;0.00031974670308441646;64932339;0.0012922220467061875;1;0;Young +9928;France;M;Service and sales workers;Not stated   ;Y30-49;77030;1;0.00029354033082570706;64932339;0.0011863118006576045;1;0;Young +9929;France;M;Service and sales workers;Not stated   ;Y50-64;37191;1;0.0001417247623489403;64932339;0.0005727654443496946;0;1;Old +9930;France;M;Service and sales workers;Not stated   ;Y65-84;2471;1;9.416307379856187e-06;64932339;3.805499752596314e-05;0;1;Old +9931;France;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;62676;1;0.00023884114987449064;64932339;0.0009652509206544986;1;0;Young +9932;France;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;206599;1;0.0007872924679768954;64932339;0.0031817581682988504;1;0;Young +9933;France;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;126447;1;0.0004818550462406618;64932339;0.0019473655492373376;0;1;Old +9934;France;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;5786;1;2.2048868676587574e-05;64932339;8.910814070628197e-05;0;1;Old +9935;France;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;627;1;2.3893260733184253e-06;64932339;9.656205361707361e-06;0;1;Old +9936;France;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;36;1;1.3718618602785217e-07;64932339;5.544232743564035e-07;1;0;Young +9937;France;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;249;1;9.488711200259775e-07;64932339;3.834760980965124e-06;1;0;Young +9938;France;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;86;1;3.277225555109802e-07;64932339;1.3244555998514085e-06;0;1;Old +9939;France;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;1798;1;6.851687846613284e-06;64932339;2.7690362424800377e-05;1;0;Young +9940;France;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;4519;1;1.722067707388511e-05;64932339;6.959552157823854e-05;1;0;Young +9941;France;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2619;1;9.980295033526246e-06;64932339;4.033429320942835e-05;0;1;Old +9942;France;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;90;1;3.4296546506963047e-07;64932339;1.3860581858910088e-06;0;1;Old +9943;France;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9944;France;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;46;1;1.7529345992447778e-07;64932339;7.084297394554045e-07;1;0;Young +9945;France;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;107;1;4.07747830693894e-07;64932339;1.6478691765593104e-06;1;0;Young +9946;France;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;101;1;3.848834663559186e-07;64932339;1.55546529749991e-06;0;1;Old +9947;France;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9948;France;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;164;1;6.2495929190466e-07;64932339;2.525706027623616e-06;1;0;Young +9949;France;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;373;1;1.421401316344135e-06;64932339;5.744441148192737e-06;1;0;Young +9950;France;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;236;1;8.993316639603643e-07;64932339;3.634552576336423e-06;0;1;Old +9951;France;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;17;1;6.478236562426352e-08;64932339;2.6181099066830167e-07;0;1;Old +9952;France;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2257;1;8.600811718468398e-06;64932339;3.475925917284452e-05;1;0;Young +9953;France;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;2741;1;1.0445203775065079e-05;64932339;4.221317208363617e-05;1;0;Young +9954;France;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;1260;1;4.801516510974826e-06;64932339;1.9404814602474125e-05;0;1;Old +9955;France;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;53;1;2.019685516521157e-07;64932339;8.162342650247052e-07;0;1;Old +9956;France;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3015;1;1.148934307983262e-05;64932339;4.6432949227348794e-05;1;0;Young +9957;France;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4981;1;1.8981233127909213e-05;64932339;7.671062026581239e-05;1;0;Young +9958;France;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2590;1;9.869783939226033e-06;64932339;3.988767446064125e-05;0;1;Old +9959;France;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;82;1;3.1247964595233e-07;64932339;1.262853013811808e-06;0;1;Old +9960;France;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;0;1;Old +9961;France;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;303;1;1.1546503990677558e-06;64932339;4.66639589249973e-06;1;0;Young +9962;France;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;887;1;3.3801151946306913e-06;64932339;1.3660373454281386e-05;1;0;Young +9963;France;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;628;1;2.393136800708088e-06;64932339;9.671606008217262e-06;0;1;Old +9964;France;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +9965;France;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;637;1;2.4274333472150513e-06;64932339;9.810211826806363e-06;1;0;Young +9966;France;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;1156;1;4.40520086244992e-06;64932339;1.7803147365444512e-05;1;0;Young +9967;France;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;678;1;2.5836731701912162e-06;64932339;1.0441638333712266e-05;0;1;Old +9968;France;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +9969;France;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +9970;France;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;55;1;2.0959000643144082e-07;64932339;8.470355580445054e-07;1;0;Young +9971;France;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;198;1;7.54524023153187e-07;64932339;3.0493280089602196e-06;1;0;Young +9972;France;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;120;1;4.572872867595073e-07;64932339;1.8480775811880117e-06;0;1;Old +9973;France;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9974;France;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +9975;France;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;196;1;7.469025683738619e-07;64932339;3.018526715940419e-06;1;0;Young +9976;France;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;281;1;1.0708143964951796e-06;64932339;4.3275816692819275e-06;1;0;Young +9977;France;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;255;1;9.71735484363953e-07;64932339;3.927164860024525e-06;0;1;Old +9978;France;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;17;1;6.478236562426352e-08;64932339;2.6181099066830167e-07;0;1;Old +9979;France;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +9980;France;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;516;1;1.9663353330658812e-06;64932339;7.94673359910845e-06;1;0;Young +9981;France;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;1284;1;4.892973968326728e-06;64932339;1.9774430118711725e-05;1;0;Young +9982;France;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;674;1;2.568430260632566e-06;64932339;1.0380035747672665e-05;0;1;Old +9983;France;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;25;1;9.526818474156401e-08;64932339;3.8501616274750244e-07;0;1;Old +9984;France;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;542;1;2.065414245197108e-06;64932339;8.347150408365853e-06;1;0;Young +9985;France;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2186;1;8.330250073802357e-06;64932339;3.366581327064161e-05;1;0;Young +9986;France;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;1393;1;5.308343253799947e-06;64932339;2.1453100588290836e-05;0;1;Old +9987;France;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;106;1;4.039371033042314e-07;64932339;1.6324685300494104e-06;0;1;Old +9988;France;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +9989;France;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;28814;1;0.00010980229900573702;64932339;0.0004437542285362614;1;0;Young +9990;France;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;33466;1;0.00012752980282244725;64932339;0.0005153980361003167;1;0;Young +9991;France;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;10671;1;4.066427197508918e-05;64932339;0.00016434029890714395;0;1;Old +9992;France;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;211;1;8.040634792188003e-07;64932339;3.2495364135889207e-06;0;1;Old +9993;France;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +9994;France;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;7004;1;2.6690334637196575e-05;64932339;0.00010786612815534029;1;0;Young +9995;France;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;13099;1;4.991671807718988e-05;64932339;0.0002017330686331814;1;0;Young +9996;France;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;6402;1;2.4396276748619713e-05;64932339;9.859493895638042e-05;0;1;Old +9997;France;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;72;1;2.7437237205570434e-07;64932339;1.108846548712807e-06;0;1;Old +9998;France;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;12;1;4.5728728675950726e-08;64932339;1.8480775811880118e-07;0;1;Old +9999;France;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;2328;1;8.871373363134441e-06;64932339;3.585270507504743e-05;1;0;Young +10000;France;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2171;1;8.273089162957418e-06;64932339;3.343480357299311e-05;1;0;Young +10001;France;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;1077;1;4.104153398666578e-06;64932339;1.6586496291162406e-05;0;1;Old +10002;France;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;35;1;1.3337545863818962e-07;64932339;5.390226278465034e-07;0;1;Old +10003;France;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +10004;France;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;5100;1;1.9434709687279057e-05;64932339;7.854329720049049e-05;1;0;Young +10005;France;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;9976;1;3.8015816439273705e-05;64932339;0.00015363684958276337;1;0;Young +10006;France;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;3374;1;1.285739421272148e-05;64932339;5.196178132440293e-05;0;1;Old +10007;France;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;48;1;1.829149147038029e-07;64932339;7.392310324752047e-07;0;1;Old +10008;France;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +10009;France;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;1594;1;6.074299459122121e-06;64932339;2.4548630536780757e-05;1;0;Young +10010;France;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;2690;1;1.0250856678192288e-05;64932339;4.142773911163126e-05;1;0;Young +10011;France;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;1077;1;4.104153398666578e-06;64932339;1.6586496291162406e-05;0;1;Old +10012;France;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;40;1;1.5242909558650242e-07;64932339;6.160258603960039e-07;0;1;Old +10013;France;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +10014;France;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;1532;1;5.8380343609630425e-06;64932339;2.359379045316695e-05;1;0;Young +10015;France;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2455;1;9.355335741621587e-06;64932339;3.780858718180474e-05;1;0;Young +10016;France;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;1265;1;4.820570147923139e-06;64932339;1.9481817835023623e-05;0;1;Old +10017;France;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;30;1;1.1432182168987682e-07;64932339;4.620193952970029e-07;0;1;Old +10018;France;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +10019;France;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;389;1;1.482372954578736e-06;64932339;5.990851492351138e-06;1;0;Young +10020;France;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2151;1;8.196874615164168e-06;64932339;3.312679064279511e-05;1;0;Young +10021;France;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1156;1;4.40520086244992e-06;64932339;1.7803147365444512e-05;0;1;Old +10022;France;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +10023;France;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;1;0;Young +10024;France;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;43;1;1.638612777554901e-07;64932339;6.622277999257042e-07;1;0;Young +10025;France;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;42;1;1.6005055036582754e-07;64932339;6.46827153415804e-07;0;1;Old +10026;France;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;32839;1;0.00012514047674912882;64932339;0.0005057418307386093;1;0;Young +10027;France;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;25569;1;9.743648862628201e-05;64932339;0.0003937791306116356;1;0;Young +10028;France;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;15487;1;5.9016735083704076e-05;64932339;0.0002385098124988228;0;1;Old +10029;France;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;2043;1;7.78531605708061e-06;64932339;3.14635208197259e-05;0;1;Old +10030;France;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;3656;1;1.3932019336606321e-05;64932339;5.6304763640194754e-05;1;0;Young +10031;France;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;5479;1;2.0878975367961168e-05;64932339;8.438014222774263e-05;1;0;Young +10032;France;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;2719;1;1.0361367772492501e-05;64932339;4.187435786041837e-05;0;1;Old +10033;France;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;51;1;1.943470968727906e-07;64932339;7.85432972004905e-07;0;1;Old +10034;France;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +10035;France;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;439;1;1.6729093240618642e-06;64932339;6.760883817846143e-06;1;0;Young +10036;France;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;1640;1;6.249592919046599e-06;64932339;2.525706027623616e-05;1;0;Young +10037;France;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;799;1;3.044771184340386e-06;64932339;1.2305116561410179e-05;0;1;Old +10038;France;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;16;1;6.097163823460096e-08;64932339;2.4641034415840154e-07;0;1;Old +10039;France;M;Craft and related trades workers;Mining and quarrying   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +10040;France;M;Craft and related trades workers;Manufacturing   ;Y15-29;138114;1;0.0005263148026958549;64932339;0.002127044892068342;1;0;Young +10041;France;M;Craft and related trades workers;Manufacturing   ;Y30-49;325867;1;0.0012417903022871697;64932339;0.0050185624762416154;1;0;Young +10042;France;M;Craft and related trades workers;Manufacturing   ;Y50-64;142168;1;0.000541763491533547;64932339;0.0021894791130194773;0;1;Old +10043;France;M;Craft and related trades workers;Manufacturing   ;Y65-84;2014;1;7.674804962780397e-06;64932339;3.1016902070938796e-05;0;1;Old +10044;France;M;Craft and related trades workers;Manufacturing   ;Y_GE85;268;1;1.0212749404295662e-06;64932339;4.127373264653226e-06;0;1;Old +10045;France;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3452;1;1.3154630949115159e-05;64932339;5.3163031752175134e-05;1;0;Young +10046;France;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;6922;1;2.6377854991244245e-05;64932339;0.00010660327514152848;1;0;Young +10047;France;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3147;1;1.1992359095268078e-05;64932339;4.846583456665561e-05;0;1;Old +10048;France;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;20;1;7.621454779325121e-08;64932339;3.0801293019800195e-07;0;1;Old +10049;France;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3070;1;1.169893308626406e-05;64932339;4.72799847853933e-05;1;0;Young +10050;France;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;8108;1;3.089737767538404e-05;64932339;0.00012486844190227;1;0;Young +10051;France;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3049;1;1.1618907811081148e-05;64932339;4.6956571208685395e-05;0;1;Old +10052;France;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;39;1;1.4861836819683987e-07;64932339;6.006252138861038e-07;0;1;Old +10053;France;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +10054;France;M;Craft and related trades workers;Construction   ;Y15-29;312696;1;0.001191599211837924;64932339;0.004815720561059721;1;0;Young +10055;France;M;Craft and related trades workers;Construction   ;Y30-49;544668;1;0.0020755812658727274;64932339;0.008388239333254267;1;0;Young +10056;France;M;Craft and related trades workers;Construction   ;Y50-64;209055;1;0.0007966516144459066;64932339;0.003219582156127165;0;1;Old +10057;France;M;Craft and related trades workers;Construction   ;Y65-84;3591;1;1.3684322056278255e-05;64932339;5.530372161705125e-05;0;1;Old +10058;France;M;Craft and related trades workers;Construction   ;Y_GE85;410;1;1.5623982297616498e-06;64932339;6.31426506905904e-06;0;1;Old +10059;France;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;121711;1;0.0004638074413232199;64932339;0.0018744280873664507;1;0;Young +10060;France;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;171966;1;0.0006553155462907118;64932339;0.0026483875777214803;1;0;Young +10061;France;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;68729;1;0.00026190748276411815;64932339;0.001058471033978924;0;1;Old +10062;France;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1259;1;4.7977057835851635e-06;64932339;1.9389413955964223e-05;0;1;Old +10063;France;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;143;1;5.449340167217462e-07;64932339;2.2022924509157138e-06;0;1;Old +10064;France;M;Craft and related trades workers;Transportation and storage   ;Y15-29;12464;1;4.7496906184754155e-05;64932339;0.00019195365809939483;1;0;Young +10065;France;M;Craft and related trades workers;Transportation and storage   ;Y30-49;34892;1;0.00013296390008010606;64932339;0.0005373593580234342;1;0;Young +10066;France;M;Craft and related trades workers;Transportation and storage   ;Y50-64;15560;1;5.9294918183149445e-05;64932339;0.0002396340596940455;0;1;Old +10067;France;M;Craft and related trades workers;Transportation and storage   ;Y65-84;95;1;3.6201910201794326e-07;64932339;1.4630614184405093e-06;0;1;Old +10068;France;M;Craft and related trades workers;Transportation and storage   ;Y_GE85;20;1;7.621454779325121e-08;64932339;3.0801293019800195e-07;0;1;Old +10069;France;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;6272;1;2.390088218796358e-05;64932339;9.659285491009341e-05;1;0;Young +10070;France;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;9704;1;3.6979298589285485e-05;64932339;0.00014944787373207056;1;0;Young +10071;France;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;5181;1;1.9743378605841726e-05;64932339;7.97907495677924e-05;0;1;Old +10072;France;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;143;1;5.449340167217462e-07;64932339;2.2022924509157138e-06;0;1;Old +10073;France;M;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;41;1;1.56239822976165e-07;64932339;6.31426506905904e-07;0;1;Old +10074;France;M;Craft and related trades workers;Information and communication   ;Y15-29;5098;1;1.9427088232499732e-05;64932339;7.85124959074707e-05;1;0;Young +10075;France;M;Craft and related trades workers;Information and communication   ;Y30-49;9611;1;3.662490094204687e-05;64932339;0.00014801561360664985;1;0;Young +10076;France;M;Craft and related trades workers;Information and communication   ;Y50-64;4542;1;1.730832380384735e-05;64932339;6.994973644796624e-05;0;1;Old +10077;France;M;Craft and related trades workers;Information and communication   ;Y65-84;71;1;2.705616446660418e-07;64932339;1.093445902202907e-06;0;1;Old +10078;France;M;Craft and related trades workers;Information and communication   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +10079;France;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;1906;1;7.26324640469684e-06;64932339;2.9353632247869586e-05;1;0;Young +10080;France;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;4434;1;1.6896765245763792e-05;64932339;6.828646662489704e-05;1;0;Young +10081;France;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2220;1;8.459814805050884e-06;64932339;3.418943525197822e-05;0;1;Old +10082;France;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;29;1;1.1051109430021426e-07;64932339;4.4661874878710285e-07;0;1;Old +10083;France;M;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +10084;France;M;Craft and related trades workers;Real estate activities   ;Y15-29;2225;1;8.478868441999197e-06;64932339;3.426643848452772e-05;1;0;Young +10085;France;M;Craft and related trades workers;Real estate activities   ;Y30-49;5535;1;2.1092376101782273e-05;64932339;8.524257843229704e-05;1;0;Young +10086;France;M;Craft and related trades workers;Real estate activities   ;Y50-64;2823;1;1.0757683421017408e-05;64932339;4.347602509744797e-05;0;1;Old +10087;France;M;Craft and related trades workers;Real estate activities   ;Y65-84;54;1;2.0577927904177827e-07;64932339;8.316349115346053e-07;0;1;Old +10088;France;M;Craft and related trades workers;Real estate activities   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +10089;France;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;6245;1;2.379799254844269e-05;64932339;9.617703745432611e-05;1;0;Young +10090;France;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;14573;1;5.5533730249552497e-05;64932339;0.00022443362158877412;1;0;Young +10091;France;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;6027;1;2.2967253977496253e-05;64932339;9.281969651516788e-05;0;1;Old +10092;France;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;68;1;2.591294624970541e-07;64932339;1.0472439626732067e-06;0;1;Old +10093;France;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +10094;France;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;47252;1;0.0001800644906163353;64932339;0.0007277113488857994;1;0;Young +10095;France;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;59579;1;0.0002270393271487057;64932339;0.000917555118413338;1;0;Young +10096;France;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;17520;1;6.676394386688806e-05;64932339;0.0002698193268534497;0;1;Old +10097;France;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;244;1;9.298174830776647e-07;64932339;3.7577577484156237e-06;0;1;Old +10098;France;M;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;60;1;2.2864364337975364e-07;64932339;9.240387905940058e-07;0;1;Old +10099;France;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;19590;1;7.465214956348957e-05;64932339;0.0003016986651289429;1;0;Young +10100;France;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;60248;1;0.00022958870377238995;64932339;0.0009278581509284611;1;0;Young +10101;France;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;31763;1;0.00012104013407785191;64932339;0.0004891707350939568;0;1;Old +10102;France;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;368;1;1.4023476793958223e-06;64932339;5.667437915643236e-06;0;1;Old +10103;France;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;54;1;2.0577927904177827e-07;64932339;8.316349115346053e-07;0;1;Old +10104;France;M;Craft and related trades workers;Education   ;Y15-29;11779;1;4.48865579228353e-05;64932339;0.00018140421524011325;1;0;Young +10105;France;M;Craft and related trades workers;Education   ;Y30-49;12321;1;4.695197216803241e-05;64932339;0.0001897513656484791;1;0;Young +10106;France;M;Craft and related trades workers;Education   ;Y50-64;6744;1;2.569954551588431e-05;64932339;0.00010386196006276625;0;1;Old +10107;France;M;Craft and related trades workers;Education   ;Y65-84;68;1;2.591294624970541e-07;64932339;1.0472439626732067e-06;0;1;Old +10108;France;M;Craft and related trades workers;Education   ;Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +10109;France;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;13072;1;4.981382843766899e-05;64932339;0.00020131725117741408;1;0;Young +10110;France;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;36911;1;0.00014065775867983478;64932339;0.0005684532633269225;1;0;Young +10111;France;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;18980;1;7.23276058557954e-05;64932339;0.00029230427075790385;0;1;Old +10112;France;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;230;1;8.76467299622389e-07;64932339;3.5421486972770224e-06;0;1;Old +10113;France;M;Craft and related trades workers;Human health and social work activities   ;Y_GE85;63;1;2.400758255487413e-07;64932339;9.702407301237062e-07;0;1;Old +10114;France;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2956;1;1.126451016384253e-05;64932339;4.552431108326469e-05;1;0;Young +10115;France;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;6928;1;2.640071935558222e-05;64932339;0.00010669567902058788;1;0;Young +10116;France;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;3661;1;1.3951072973554634e-05;64932339;5.6381766872744256e-05;0;1;Old +10117;France;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;99;1;3.772620115765935e-07;64932339;1.5246640044801098e-06;0;1;Old +10118;France;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +10119;France;M;Craft and related trades workers;Other service activities   ;Y15-29;7652;1;2.9159685985697913e-05;64932339;0.00011784574709375555;1;0;Young +10120;France;M;Craft and related trades workers;Other service activities   ;Y30-49;21283;1;8.110371103418827e-05;64932339;0.0003277719596702038;1;0;Young +10121;France;M;Craft and related trades workers;Other service activities   ;Y50-64;11342;1;4.322127005355276e-05;64932339;0.0001746741327152869;0;1;Old +10122;France;M;Craft and related trades workers;Other service activities   ;Y65-84;357;1;1.360429678109534e-06;64932339;5.4980308040343345e-06;0;1;Old +10123;France;M;Craft and related trades workers;Other service activities   ;Y_GE85;32;1;1.2194327646920193e-07;64932339;4.928206883168031e-07;0;1;Old +10124;France;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;126;1;4.801516510974826e-07;64932339;1.9404814602474124e-06;1;0;Young +10125;France;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;672;1;2.5608088058532406e-06;64932339;1.0349234454652865e-05;1;0;Young +10126;France;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;485;1;1.8482027839863419e-06;64932339;7.469313557301548e-06;0;1;Old +10127;France;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +10128;France;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;42;1;1.6005055036582754e-07;64932339;6.46827153415804e-07;1;0;Young +10129;France;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;171;1;6.516343836322978e-07;64932339;2.6335105531929168e-06;1;0;Young +10130;France;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;126;1;4.801516510974826e-07;64932339;1.9404814602474124e-06;0;1;Old +10131;France;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;6;1;2.2864364337975363e-08;64932339;9.240387905940059e-08;0;1;Old +10132;France;M;Craft and related trades workers;Not stated   ;Y15-29;119370;1;0.00045488652850401984;64932339;0.0018383751738867747;1;0;Young +10133;France;M;Craft and related trades workers;Not stated   ;Y30-49;130718;1;0.0004981306629219106;64932339;0.002013141710481121;1;0;Young +10134;France;M;Craft and related trades workers;Not stated   ;Y50-64;65992;1;0.0002514775218986117;64932339;0.0010163194644813272;0;1;Old +10135;France;M;Craft and related trades workers;Not stated   ;Y65-84;4110;1;1.5662089571513123e-05;64932339;6.32966571556894e-05;0;1;Old +10136;France;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;6864;1;2.6156832802643817e-05;64932339;0.00010571003764395427;1;0;Young +10137;France;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;12782;1;4.870871749466685e-05;64932339;0.00019685106368954304;1;0;Young +10138;France;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;5179;1;1.97357571510624e-05;64932339;7.975994827477261e-05;0;1;Old +10139;France;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;62;1;2.3626509815907876e-07;64932339;9.54840083613806e-07;0;1;Old +10140;France;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;18;1;6.859309301392609e-08;64932339;2.7721163717820174e-07;0;1;Old +10141;France;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;1166;1;4.443308136346546e-06;64932339;1.7957153830543512e-05;1;0;Young +10142;France;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;4956;1;1.888596494316765e-05;64932339;7.632560410306488e-05;1;0;Young +10143;France;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2302;1;8.772294451003214e-06;64932339;3.545228826579003e-05;0;1;Old +10144;France;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;35;1;1.3337545863818962e-07;64932339;5.390226278465034e-07;0;1;Old +10145;France;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;120636;1;0.00045971090937933263;64932339;0.0018578723923683082;1;0;Young +10146;France;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;360852;1;0.0013751086000145143;64932339;0.00555735409439047;1;0;Young +10147;France;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;142563;1;0.0005432687288524636;64932339;0.0021955623683908875;0;1;Old +10148;France;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;1268;1;4.832002330092127e-06;64932339;1.9528019774553323e-05;0;1;Old +10149;France;M;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;246;1;9.374389378569899e-07;64932339;3.788559041435424e-06;0;1;Old +10150;France;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2769;1;1.055190414197563e-05;64932339;4.264439018591337e-05;1;0;Young +10151;France;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;5361;1;2.0429309535980988e-05;64932339;8.256286593957443e-05;1;0;Young +10152;France;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2411;1;9.187663736476434e-06;64932339;3.7130958735369135e-05;0;1;Old +10153;France;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;43;1;1.638612777554901e-07;64932339;6.622277999257042e-07;0;1;Old +10154;France;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +10155;France;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;6373;1;2.42857656543195e-05;64932339;9.814832020759332e-05;1;0;Young +10156;France;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;27303;1;0.00010404428991995689;64932339;0.0004204838516598024;1;0;Young +10157;France;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;9701;1;3.69678664071165e-05;64932339;0.00014940167179254085;0;1;Old +10158;France;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;120;1;4.572872867595073e-07;64932339;1.8480775811880117e-06;0;1;Old +10159;France;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +10160;France;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;30212;1;0.00011512969589648528;64932339;0.00046528433235710175;1;0;Young +10161;France;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;57340;1;0.00021850710852325123;64932339;0.0008830730708776716;1;0;Young +10162;France;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;22677;1;8.641586501537788e-05;64932339;0.0003492404609050045;0;1;Old +10163;France;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;351;1;1.3375653137715587e-06;64932339;5.405626924974934e-06;0;1;Old +10164;France;M;Plant and machine operators, and assemblers;Construction   ;Y_GE85;42;1;1.6005055036582754e-07;64932339;6.46827153415804e-07;0;1;Old +10165;France;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;42028;1;0.00016015725073273808;64932339;0.0006472583715180813;1;0;Young +10166;France;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;105989;1;0.0004038951853029451;64932339;0.0016322991229378015;1;0;Young +10167;France;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;37769;1;0.00014392736278016525;64932339;0.0005816670180324168;0;1;Old +10168;France;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;557;1;2.122575156042046e-06;64932339;8.578160106014355e-06;0;1;Old +10169;France;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;80;1;3.0485819117300483e-07;64932339;1.2320517207920078e-06;0;1;Old +10170;France;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;75802;1;0.0002888607575912014;64932339;0.0011673998067434472;1;0;Young +10171;France;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;290732;1;0.0011079003954513756;64932339;0.004477460761116275;1;0;Young +10172;France;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;115699;1;0.0004408973482565686;64932339;0.0017818394005489314;0;1;Old +10173;France;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;2159;1;8.227360434281469e-06;64932339;3.324999581487431e-05;0;1;Old +10174;France;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;219;1;8.345492983361008e-07;64932339;3.3727415856681213e-06;0;1;Old +10175;France;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;8350;1;3.181957370368238e-05;64932339;0.00012859539835766582;1;0;Young +10176;France;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;8880;1;3.3839259220203536e-05;64932339;0.00013675774100791287;1;0;Young +10177;France;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;2735;1;1.0422339410727103e-05;64932339;4.212076820457677e-05;0;1;Old +10178;France;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;81;1;3.086689185626674e-07;64932339;1.247452367301908e-06;0;1;Old +10179;France;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +10180;France;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;1843;1;7.023170579148099e-06;64932339;2.838339151774588e-05;1;0;Young +10181;France;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;3960;1;1.509048046306374e-05;64932339;6.098656017920439e-05;1;0;Young +10182;France;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2013;1;7.670994235390734e-06;64932339;3.10015014244289e-05;0;1;Old +10183;France;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;43;1;1.638612777554901e-07;64932339;6.622277999257042e-07;0;1;Old +10184;France;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;1627;1;6.200053462980986e-06;64932339;2.505685187160746e-05;1;0;Young +10185;France;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;4553;1;1.7350241805133637e-05;64932339;7.011914355957514e-05;1;0;Young +10186;France;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2211;1;8.425518258543922e-06;64932339;3.405082943338912e-05;0;1;Old +10187;France;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;61;1;2.3245437076941619e-07;64932339;9.394394371039059e-07;0;1;Old +10188;France;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +10189;France;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;1010;1;3.848834663559186e-06;64932339;1.5554652974999098e-05;1;0;Young +10190;France;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2796;1;1.065479378149652e-05;64932339;4.3060207641680676e-05;1;0;Young +10191;France;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;1155;1;4.401390135060257e-06;64932339;1.778774671893461e-05;0;1;Old +10192;France;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;10;1;3.8107273896625604e-08;64932339;1.5400646509900097e-07;0;1;Old +10193;France;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;5703;1;2.1732578303245583e-05;64932339;8.782988704596026e-05;1;0;Young +10194;France;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;13696;1;5.219172232881843e-05;64932339;0.00021092725459959173;1;0;Young +10195;France;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;6511;1;2.481164603409293e-05;64932339;0.00010027360942595953;0;1;Old +10196;France;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;208;1;7.926312970498126e-07;64932339;3.2033344740592205e-06;0;1;Old +10197;France;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;24;1;9.145745735190145e-08;64932339;3.6961551623760236e-07;0;1;Old +10198;France;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;57619;1;0.00021957030146496707;64932339;0.0008873698512539337;1;0;Young +10199;France;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;68142;1;0.0002596705857863862;64932339;0.0010494308544776124;1;0;Young +10200;France;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;16124;1;6.144416843091913e-05;64932339;0.0002483200243256292;0;1;Old +10201;France;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;311;1;1.1851362181850563e-06;64932339;4.78960106457893e-06;0;1;Old +10202;France;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;26;1;9.907891213122657e-08;64932339;4.0041680925740257e-07;0;1;Old +10203;France;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;4162;1;1.586024739577558e-05;64932339;6.40974907742042e-05;1;0;Young +10204;France;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;13211;1;5.0343519544832085e-05;64932339;0.0002034579410422902;1;0;Young +10205;France;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;7677;1;2.9254954170439476e-05;64932339;0.00011823076325650306;0;1;Old +10206;France;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;113;1;4.3061219503186933e-07;64932339;1.740273055618711e-06;0;1;Old +10207;France;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;7;1;2.6675091727637924e-08;64932339;1.0780452556930068e-07;0;1;Old +10208;France;M;Plant and machine operators, and assemblers;Education   ;Y15-29;2780;1;1.0593822143261918e-05;64932339;4.281379729752227e-05;1;0;Young +10209;France;M;Plant and machine operators, and assemblers;Education   ;Y30-49;3122;1;1.1897090910526514e-05;64932339;4.8080818403908106e-05;1;0;Young +10210;France;M;Plant and machine operators, and assemblers;Education   ;Y50-64;1494;1;5.693226720155865e-06;64932339;2.3008565885790745e-05;0;1;Old +10211;France;M;Plant and machine operators, and assemblers;Education   ;Y65-84;31;1;1.1813254907953938e-07;64932339;4.77420041806903e-07;0;1;Old +10212;France;M;Plant and machine operators, and assemblers;Education   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +10213;France;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;4210;1;1.604316231047938e-05;64932339;6.483672180667941e-05;1;0;Young +10214;France;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;13887;1;5.2919571260243976e-05;64932339;0.00021386877808298265;1;0;Young +10215;France;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;6641;1;2.5307040594749066e-05;64932339;0.00010227569347224655;0;1;Old +10216;France;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;111;1;4.2299074025254424e-07;64932339;1.709471762598911e-06;0;1;Old +10217;France;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;0;1;Old +10218;France;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;654;1;2.4922157128393146e-06;64932339;1.0072022817474663e-05;1;0;Young +10219;France;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;1851;1;7.0536563982653995e-06;64932339;2.850659668982508e-05;1;0;Young +10220;France;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;843;1;3.2124431894855386e-06;64932339;1.2982745007845782e-05;0;1;Old +10221;France;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;0;1;Old +10222;France;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2646;1;1.0083184673047135e-05;64932339;4.075011066519566e-05;1;0;Young +10223;France;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;9001;1;3.430035723435271e-05;64932339;0.00013862121923561077;1;0;Young +10224;France;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;4698;1;1.790279727663471e-05;64932339;7.235223730351066e-05;0;1;Old +10225;France;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;202;1;7.697669327118372e-07;64932339;3.11093059499982e-06;0;1;Old +10226;France;M;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +10227;France;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;80;1;3.0485819117300483e-07;64932339;1.2320517207920078e-06;1;0;Young +10228;France;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;197;1;7.507132957635244e-07;64932339;3.0339273624503194e-06;1;0;Young +10229;France;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;151;1;5.754198358390467e-07;64932339;2.325497622994915e-06;0;1;Old +10230;France;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;22;1;8.383600257257633e-08;64932339;3.3881422321780215e-07;1;0;Young +10231;France;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;316;1;1.2041898551333691e-06;64932339;4.8666042971284305e-06;1;0;Young +10232;France;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;242;1;9.221960282983396e-07;64932339;3.7269564553958238e-06;0;1;Old +10233;France;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;13;1;4.953945606561329e-08;64932339;2.0020840462870128e-07;0;1;Old +10234;France;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;94893;1;0.00036161135418724937;64932339;0.00146141354926395;1;0;Young +10235;France;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;110576;1;0.00042137499183932727;64932339;0.0017029418884787133;1;0;Young +10236;France;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;56229;1;0.0002142733903933361;64932339;0.0008659629526051725;0;1;Old +10237;France;M;Plant and machine operators, and assemblers;Not stated   ;Y65-84;3269;1;1.245726783680691e-05;64932339;5.034471344086342e-05;0;1;Old +10238;France;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;1067;1;4.066046124769952e-06;64932339;1.6432489826063405e-05;1;0;Young +10239;France;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2016;1;7.682426417559722e-06;64932339;3.10477033639586e-05;1;0;Young +10240;France;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;837;1;3.1895788251475634e-06;64932339;1.2890341128786382e-05;0;1;Old +10241;France;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +10242;France;M;Elementary occupations;Mining and quarrying   ;Y15-29;1432;1;5.456961621996787e-06;64932339;2.205372580217694e-05;1;0;Young +10243;France;M;Elementary occupations;Mining and quarrying   ;Y30-49;3277;1;1.248775365592421e-05;64932339;5.046791861294262e-05;1;0;Young +10244;France;M;Elementary occupations;Mining and quarrying   ;Y50-64;976;1;3.719269932310659e-06;64932339;1.5031030993662495e-05;0;1;Old +10245;France;M;Elementary occupations;Mining and quarrying   ;Y_GE85;4;1;1.524290955865024e-08;64932339;6.160258603960038e-08;0;1;Old +10246;France;M;Elementary occupations;Manufacturing   ;Y15-29;11744;1;4.475318246419711e-05;64932339;0.00018086519261226674;1;0;Young +10247;France;M;Elementary occupations;Manufacturing   ;Y30-49;35191;1;0.00013410330756961518;64932339;0.0005419641513298943;1;0;Young +10248;France;M;Elementary occupations;Manufacturing   ;Y50-64;16075;1;6.125744278882567e-05;64932339;0.0002475653926466441;0;1;Old +10249;France;M;Elementary occupations;Manufacturing   ;Y65-84;155;1;5.906627453976969e-07;64932339;2.387100209034515e-06;0;1;Old +10250;France;M;Elementary occupations;Manufacturing   ;Y_GE85;27;1;1.0288963952088914e-07;64932339;4.1581745576730264e-07;0;1;Old +10251;France;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;277;1;1.0555714869365292e-06;64932339;4.265979083242327e-06;1;0;Young +10252;France;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;834;1;3.1781466429785756e-06;64932339;1.284413918925668e-05;1;0;Young +10253;France;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;435;1;1.6576664145032138e-06;64932339;6.699281231806543e-06;0;1;Old +10254;France;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;11;1;4.1918001286288165e-08;64932339;1.6940711160890108e-07;0;1;Old +10255;France;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;4884;1;1.8611592571111946e-05;64932339;7.521675755435207e-05;1;0;Young +10256;France;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;15422;1;5.876903780337601e-05;64932339;0.00023750877047567931;1;0;Young +10257;France;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;5395;1;2.0558874267229513e-05;64932339;8.308648792091103e-05;0;1;Old +10258;France;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;104;1;3.963156485249063e-07;64932339;1.6016672370296103e-06;0;1;Old +10259;France;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;1;1;3.81072738966256e-09;64932339;1.5400646509900096e-08;0;1;Old +10260;France;M;Elementary occupations;Construction   ;Y15-29;25017;1;9.533296710718828e-05;64932339;0.0003852779737381707;1;0;Young +10261;France;M;Elementary occupations;Construction   ;Y30-49;33406;1;0.0001273011591790675;64932339;0.0005144739973097226;1;0;Young +10262;France;M;Elementary occupations;Construction   ;Y50-64;11455;1;4.365188224858463e-05;64932339;0.00017641440577090563;0;1;Old +10263;France;M;Elementary occupations;Construction   ;Y65-84;223;1;8.49792207894751e-07;64932339;3.434344171707722e-06;0;1;Old +10264;France;M;Elementary occupations;Construction   ;Y_GE85;49;1;1.8672564209346548e-07;64932339;7.546316789851048e-07;0;1;Old +10265;France;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;37962;1;0.00014466283316637012;64932339;0.0005846393428088275;1;0;Young +10266;France;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;67936;1;0.00025888557594411574;64932339;0.0010462583212965731;1;0;Young +10267;France;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;21249;1;8.097414630293975e-05;64932339;0.0003272483376888672;0;1;Old +10268;France;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;225;1;8.574136626740762e-07;64932339;3.465145464727522e-06;0;1;Old +10269;France;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;50;1;1.9053636948312803e-07;64932339;7.700323254950049e-07;0;1;Old +10270;France;M;Elementary occupations;Transportation and storage   ;Y15-29;13106;1;4.994339316891752e-05;64932339;0.00020184087315875068;1;0;Young +10271;France;M;Elementary occupations;Transportation and storage   ;Y30-49;29477;1;0.0001123288112650833;64932339;0.0004539648571723252;1;0;Young +10272;France;M;Elementary occupations;Transportation and storage   ;Y50-64;9668;1;3.684211240325764e-05;64932339;0.00014889345045771414;0;1;Old +10273;France;M;Elementary occupations;Transportation and storage   ;Y65-84;128;1;4.877731058768077e-07;64932339;1.9712827532672123e-06;0;1;Old +10274;France;M;Elementary occupations;Transportation and storage   ;Y_GE85;32;1;1.2194327646920193e-07;64932339;4.928206883168031e-07;0;1;Old +10275;France;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;21889;1;8.341301183232379e-05;64932339;0.00033710475145520326;1;0;Young +10276;France;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;27907;1;0.00010634596926331308;64932339;0.00042978584215178203;1;0;Young +10277;France;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;10129;1;3.8598857729892075e-05;64932339;0.0001559931484987781;0;1;Old +10278;France;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;250;1;9.526818474156401e-07;64932339;3.850161627475024e-06;0;1;Old +10279;France;M;Elementary occupations;Accommodation and food service activities   ;Y_GE85;24;1;9.145745735190145e-08;64932339;3.6961551623760236e-07;0;1;Old +10280;France;M;Elementary occupations;Information and communication   ;Y15-29;648;1;2.469351348501339e-06;64932339;9.979618938415264e-06;1;0;Young +10281;France;M;Elementary occupations;Information and communication   ;Y30-49;1451;1;5.529365442400375e-06;64932339;2.234633808586504e-05;1;0;Young +10282;France;M;Elementary occupations;Information and communication   ;Y50-64;754;1;2.8732884518055705e-06;64932339;1.1612087468464673e-05;0;1;Old +10283;France;M;Elementary occupations;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +10284;France;M;Elementary occupations;Financial and insurance activities   ;Y15-29;772;1;2.941881544819497e-06;64932339;1.1889299105642876e-05;1;0;Young +10285;France;M;Elementary occupations;Financial and insurance activities   ;Y30-49;1973;1;7.518565139804232e-06;64932339;3.0385475564032894e-05;1;0;Young +10286;France;M;Elementary occupations;Financial and insurance activities   ;Y50-64;1122;1;4.275636131201393e-06;64932339;1.727952538410791e-05;0;1;Old +10287;France;M;Elementary occupations;Financial and insurance activities   ;Y65-84;24;1;9.145745735190145e-08;64932339;3.6961551623760236e-07;0;1;Old +10288;France;M;Elementary occupations;Financial and insurance activities   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +10289;France;M;Elementary occupations;Real estate activities   ;Y15-29;2369;1;9.027613186110606e-06;64932339;3.648413158195333e-05;1;0;Young +10290;France;M;Elementary occupations;Real estate activities   ;Y30-49;7500;1;2.8580455422469204e-05;64932339;0.00011550484882425074;1;0;Young +10291;France;M;Elementary occupations;Real estate activities   ;Y50-64;4450;1;1.6957736883998394e-05;64932339;6.853287696905544e-05;0;1;Old +10292;France;M;Elementary occupations;Real estate activities   ;Y65-84;55;1;2.0959000643144082e-07;64932339;8.470355580445054e-07;0;1;Old +10293;France;M;Elementary occupations;Real estate activities   ;Y_GE85;5;1;1.9053636948312802e-08;64932339;7.700323254950049e-08;0;1;Old +10294;France;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;2384;1;9.084774096955544e-06;64932339;3.671514127960183e-05;1;0;Young +10295;France;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;5043;1;1.9217498226068294e-05;64932339;7.766546034942619e-05;1;0;Young +10296;France;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;2317;1;8.829455361848153e-06;64932339;3.5683297963438526e-05;0;1;Old +10297;France;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;19;1;7.240382040358865e-08;64932339;2.9261228368810187e-07;0;1;Old +10298;France;M;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;15;1;5.716091084493841e-08;64932339;2.3100969764850146e-07;0;1;Old +10299;France;M;Elementary occupations;Administrative and support service activities   ;Y15-29;30416;1;0.00011590708428397645;64932339;0.00046842606424512135;1;0;Young +10300;France;M;Elementary occupations;Administrative and support service activities   ;Y30-49;50357;1;0.00019189679916123756;64932339;0.0007755303562990392;1;0;Young +10301;France;M;Elementary occupations;Administrative and support service activities   ;Y50-64;17538;1;6.683253695990198e-05;64932339;0.0002700965384906279;0;1;Old +10302;France;M;Elementary occupations;Administrative and support service activities   ;Y65-84;330;1;1.257540038588645e-06;64932339;5.082213348267032e-06;0;1;Old +10303;France;M;Elementary occupations;Administrative and support service activities   ;Y_GE85;17;1;6.478236562426352e-08;64932339;2.6181099066830167e-07;0;1;Old +10304;France;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;15403;1;5.869663398297242e-05;64932339;0.00023721615819199122;1;0;Young +10305;France;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;62349;1;0.000237595042018071;64932339;0.0009602149092457612;1;0;Young +10306;France;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;31073;1;0.00011841073217898475;64932339;0.00047854428900212574;0;1;Old +10307;France;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;248;1;9.45060392636315e-07;64932339;3.819360334455224e-06;0;1;Old +10308;France;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;39;1;1.4861836819683987e-07;64932339;6.006252138861038e-07;0;1;Old +10309;France;M;Elementary occupations;Education   ;Y15-29;5247;1;1.9994886613559454e-05;64932339;8.080719223744581e-05;1;0;Young +10310;France;M;Elementary occupations;Education   ;Y30-49;16794;1;6.399735578199304e-05;64932339;0.00025863845748726227;1;0;Young +10311;France;M;Elementary occupations;Education   ;Y50-64;10039;1;3.8255892264822444e-05;64932339;0.00015460709031288707;0;1;Old +10312;France;M;Elementary occupations;Education   ;Y65-84;130;1;4.953945606561329e-07;64932339;2.0020840462870127e-06;0;1;Old +10313;France;M;Elementary occupations;Education   ;Y_GE85;8;1;3.048581911730048e-08;64932339;1.2320517207920077e-07;0;1;Old +10314;France;M;Elementary occupations;Human health and social work activities   ;Y15-29;14693;1;5.5991017536312e-05;64932339;0.00022628169916996213;1;0;Young +10315;France;M;Elementary occupations;Human health and social work activities   ;Y30-49;42224;1;0.00016090415330111195;64932339;0.0006502768982340218;1;0;Young +10316;France;M;Elementary occupations;Human health and social work activities   ;Y50-64;22042;1;8.399605312294216e-05;64932339;0.00033946105037121793;0;1;Old +10317;France;M;Elementary occupations;Human health and social work activities   ;Y65-84;266;1;1.013653485650241e-06;64932339;4.096571971633426e-06;0;1;Old +10318;France;M;Elementary occupations;Human health and social work activities   ;Y_GE85;42;1;1.6005055036582754e-07;64932339;6.46827153415804e-07;0;1;Old +10319;France;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;1130;1;4.306121950318693e-06;64932339;1.740273055618711e-05;1;0;Young +10320;France;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;2962;1;1.1287374528180505e-05;64932339;4.561671496232409e-05;1;0;Young +10321;France;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;1306;1;4.976809970899304e-06;64932339;2.0113244341929528e-05;0;1;Old +10322;France;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;36;1;1.3718618602785217e-07;64932339;5.544232743564035e-07;0;1;Old +10323;France;M;Elementary occupations;Other service activities   ;Y15-29;1934;1;7.369946771607392e-06;64932339;2.9784850350146788e-05;1;0;Young +10324;France;M;Elementary occupations;Other service activities   ;Y30-49;5284;1;2.013588352697697e-05;64932339;8.137701615831212e-05;1;0;Young +10325;France;M;Elementary occupations;Other service activities   ;Y50-64;2439;1;9.294364103386985e-06;64932339;3.756217683764634e-05;0;1;Old +10326;France;M;Elementary occupations;Other service activities   ;Y65-84;48;1;1.829149147038029e-07;64932339;7.392310324752047e-07;0;1;Old +10327;France;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;303;1;1.1546503990677558e-06;64932339;4.66639589249973e-06;1;0;Young +10328;France;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1826;1;6.958388213523835e-06;64932339;2.812158052707758e-05;1;0;Young +10329;France;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1106;1;4.2146644929667916e-06;64932339;1.703311503994951e-05;0;1;Old +10330;France;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;0;1;Old +10331;France;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;3;1;1.1432182168987682e-08;64932339;4.6201939529700295e-08;0;1;Old +10332;France;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;21;1;8.002527518291377e-08;64932339;3.23413576707902e-07;1;0;Young +10333;France;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;143;1;5.449340167217462e-07;64932339;2.2022924509157138e-06;1;0;Young +10334;France;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;72;1;2.7437237205570434e-07;64932339;1.108846548712807e-06;0;1;Old +10335;France;M;Elementary occupations;Not stated   ;Y15-29;71960;1;0.00027421994296011784;64932339;0.001108230522852411;1;0;Young +10336;France;M;Elementary occupations;Not stated   ;Y30-49;61992;1;0.00023623461233996147;64932339;0.0009547168784417269;1;0;Young +10337;France;M;Elementary occupations;Not stated   ;Y50-64;25993;1;9.905223703949894e-05;64932339;0.00040030900473183326;0;1;Old +10338;France;M;Elementary occupations;Not stated   ;Y65-84;1333;1;5.0796996104201935e-06;64932339;2.0529061797696832e-05;0;1;Old +10339;France;M;Not stated;Not stated   ;Y15-29;421968;1;0.0016080050151611313;64932339;0.0064985800064895245;1;0;Young +10340;France;M;Not stated;Not stated   ;Y30-49;65744;1;0.0002505324615059754;64932339;0.001012500104146872;1;0;Young +10341;France;M;Not stated;Not stated   ;Y50-64;59823;1;0.00022796914463178337;64932339;0.0009213128761617536;0;1;Old +10342;France;M;Not stated;Not stated   ;Y65-84;9821;1;3.742515369387601e-05;64932339;0.00015124974937372887;0;1;Old +10343;France;M;Not stated;Not stated   ;Y_LT15;95;1;3.6201910201794326e-07;64932339;1.4630614184405093e-06;0;1;Old +10344;Croatia;F;Not applicable;Not applicable  ;Y15-29;223491;1;0.0008516632750430753;4284889;0.05215794388139343;1;0;Young +10345;Croatia;F;Not applicable;Not applicable  ;Y30-49;125326;1;0.00047758322083685007;4284889;0.029248365593601142;1;0;Young +10346;Croatia;F;Not applicable;Not applicable  ;Y50-64;291649;1;0.001111394832467696;4284889;0.06806454029497613;0;1;Old +10347;Croatia;F;Not applicable;Not applicable  ;Y65-84;413178;1;0.0015745087214059975;4284889;0.09642676858140316;0;1;Old +10348;Croatia;F;Not applicable;Not applicable  ;Y_GE85;45087;1;0.00017181426581771588;4284889;0.010522326249291405;0;1;Old +10349;Croatia;F;Not applicable;Not applicable  ;Y_LT15;317703;1;0.0012106795238779645;4284889;0.07414497785123489;0;1;Old +10350;Croatia;F;Armed forces occupations;Transportation and storage   ;Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10351;Croatia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;272;1;1.0365178499882164e-06;4284889;6.347889058503033e-05;1;0;Young +10352;Croatia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;803;1;3.0600140938990362e-06;4284889;0.00018740275419036525;1;0;Young +10353;Croatia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;77;1;2.9342600900401714e-07;4284889;1.7970127114144615e-05;0;1;Old +10354;Croatia;F;Managers;Agriculture, forestry and fishing   ;Y15-29;16;1;6.097163823460096e-08;4284889;3.734052387354725e-06;1;0;Young +10355;Croatia;F;Managers;Agriculture, forestry and fishing   ;Y30-49;153;1;5.830412906183718e-07;4284889;3.5706875954079555e-05;1;0;Young +10356;Croatia;F;Managers;Agriculture, forestry and fishing   ;Y50-64;57;1;2.1721146121076594e-07;4284889;1.3302561629951207e-05;0;1;Old +10357;Croatia;F;Managers;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10358;Croatia;F;Managers;Mining and quarrying   ;Y15-29;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;1;0;Young +10359;Croatia;F;Managers;Mining and quarrying   ;Y30-49;16;1;6.097163823460096e-08;4284889;3.734052387354725e-06;1;0;Young +10360;Croatia;F;Managers;Mining and quarrying   ;Y50-64;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;0;1;Old +10361;Croatia;F;Managers;Manufacturing   ;Y15-29;140;1;5.335018345527585e-07;4284889;3.267295838935384e-05;1;0;Young +10362;Croatia;F;Managers;Manufacturing   ;Y30-49;1546;1;5.891384544418319e-06;4284889;0.0003608028119281503;1;0;Young +10363;Croatia;F;Managers;Manufacturing   ;Y50-64;720;1;2.7437237205570438e-06;4284889;0.00016803235743096263;0;1;Old +10364;Croatia;F;Managers;Manufacturing   ;Y65-84;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;0;1;Old +10365;Croatia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10366;Croatia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;1;0;Young +10367;Croatia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +10368;Croatia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;1;0;Young +10369;Croatia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;60;1;2.2864364337975364e-07;4284889;1.4002696452580218e-05;1;0;Young +10370;Croatia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;42;1;1.6005055036582754e-07;4284889;9.801887516806153e-06;0;1;Old +10371;Croatia;F;Managers;Construction   ;Y15-29;98;1;3.7345128418693096e-07;4284889;2.287107087254769e-05;1;0;Young +10372;Croatia;F;Managers;Construction   ;Y30-49;610;1;2.324543707694162e-06;4284889;0.00014236074726789889;1;0;Young +10373;Croatia;F;Managers;Construction   ;Y50-64;261;1;9.945998487019282e-07;4284889;6.091172956872395e-05;0;1;Old +10374;Croatia;F;Managers;Construction   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10375;Croatia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;344;1;1.310890222043921e-06;4284889;8.028212632812659e-05;1;0;Young +10376;Croatia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3134;1;1.1942819639202465e-05;4284889;0.0007314075113731067;1;0;Young +10377;Croatia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1399;1;5.3312076181379226e-06;4284889;0.00032649620561932876;0;1;Old +10378;Croatia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;0;1;Old +10379;Croatia;F;Managers;Transportation and storage   ;Y15-29;25;1;9.526818474156401e-08;4284889;5.834456855241758e-06;1;0;Young +10380;Croatia;F;Managers;Transportation and storage   ;Y30-49;334;1;1.2727829481472953e-06;4284889;7.794834358602989e-05;1;0;Young +10381;Croatia;F;Managers;Transportation and storage   ;Y50-64;147;1;5.601769262803964e-07;4284889;3.4306606308821535e-05;0;1;Old +10382;Croatia;F;Managers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10383;Croatia;F;Managers;Accommodation and food service activities   ;Y15-29;263;1;1.0022213034812534e-06;4284889;6.137848611714329e-05;1;0;Young +10384;Croatia;F;Managers;Accommodation and food service activities   ;Y30-49;1181;1;4.500469047191484e-06;4284889;0.00027561974184162064;1;0;Young +10385;Croatia;F;Managers;Accommodation and food service activities   ;Y50-64;463;1;1.7643667814137655e-06;4284889;0.00010805414095907736;0;1;Old +10386;Croatia;F;Managers;Accommodation and food service activities   ;Y65-84;15;1;5.716091084493841e-08;4284889;3.5006741131450546e-06;0;1;Old +10387;Croatia;F;Managers;Information and communication   ;Y15-29;55;1;2.0959000643144082e-07;4284889;1.2835805081531866e-05;1;0;Young +10388;Croatia;F;Managers;Information and communication   ;Y30-49;528;1;2.012064061741832e-06;4284889;0.00012322372878270592;1;0;Young +10389;Croatia;F;Managers;Information and communication   ;Y50-64;124;1;4.725301963181575e-07;4284889;2.8938906001999118e-05;0;1;Old +10390;Croatia;F;Managers;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10391;Croatia;F;Managers;Financial and insurance activities   ;Y15-29;47;1;1.7910418731414036e-07;4284889;1.0968778887854505e-05;1;0;Young +10392;Croatia;F;Managers;Financial and insurance activities   ;Y30-49;834;1;3.1781466429785756e-06;4284889;0.00019463748069086504;1;0;Young +10393;Croatia;F;Managers;Financial and insurance activities   ;Y50-64;305;1;1.162271853847081e-06;4284889;7.118037363394944e-05;0;1;Old +10394;Croatia;F;Managers;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +10395;Croatia;F;Managers;Real estate activities   ;Y15-29;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;1;0;Young +10396;Croatia;F;Managers;Real estate activities   ;Y30-49;163;1;6.211485645149974e-07;4284889;3.804065869617626e-05;1;0;Young +10397;Croatia;F;Managers;Real estate activities   ;Y50-64;84;1;3.201011007316551e-07;4284889;1.9603775033612305e-05;0;1;Old +10398;Croatia;F;Managers;Professional, scientific and technical activities   ;Y15-29;122;1;4.6490874153883237e-07;4284889;2.847214945357978e-05;1;0;Young +10399;Croatia;F;Managers;Professional, scientific and technical activities   ;Y30-49;1239;1;4.721491235791912e-06;4284889;0.0002891556817457815;1;0;Young +10400;Croatia;F;Managers;Professional, scientific and technical activities   ;Y50-64;601;1;2.290247161187199e-06;4284889;0.00014026034280001186;0;1;Old +10401;Croatia;F;Managers;Professional, scientific and technical activities   ;Y65-84;20;1;7.621454779325121e-08;4284889;4.667565484193406e-06;0;1;Old +10402;Croatia;F;Managers;Administrative and support service activities   ;Y15-29;78;1;2.9723673639367974e-07;4284889;1.8203505388354282e-05;1;0;Young +10403;Croatia;F;Managers;Administrative and support service activities   ;Y30-49;516;1;1.9663353330658812e-06;4284889;0.00012042318949218988;1;0;Young +10404;Croatia;F;Managers;Administrative and support service activities   ;Y50-64;140;1;5.335018345527585e-07;4284889;3.267295838935384e-05;0;1;Old +10405;Croatia;F;Managers;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10406;Croatia;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;26;1;9.907891213122657e-08;4284889;6.067835129451428e-06;1;0;Young +10407;Croatia;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;404;1;1.5395338654236744e-06;4284889;9.42848227807068e-05;1;0;Young +10408;Croatia;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;280;1;1.067003669105517e-06;4284889;6.534591677870768e-05;0;1;Old +10409;Croatia;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10410;Croatia;F;Managers;Education   ;Y15-29;36;1;1.3718618602785217e-07;4284889;8.401617871548131e-06;1;0;Young +10411;Croatia;F;Managers;Education   ;Y30-49;655;1;2.4960264402289772e-06;4284889;0.00015286276960733405;1;0;Young +10412;Croatia;F;Managers;Education   ;Y50-64;583;1;2.221654068173273e-06;4284889;0.0001360595338642378;0;1;Old +10413;Croatia;F;Managers;Education   ;Y65-84;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +10414;Croatia;F;Managers;Human health and social work activities   ;Y15-29;48;1;1.829149147038029e-07;4284889;1.1202157162064174e-05;1;0;Young +10415;Croatia;F;Managers;Human health and social work activities   ;Y30-49;421;1;1.604316231047938e-06;4284889;9.82522534422712e-05;1;0;Young +10416;Croatia;F;Managers;Human health and social work activities   ;Y50-64;377;1;1.4366442259027852e-06;4284889;8.79836093770457e-05;0;1;Old +10417;Croatia;F;Managers;Human health and social work activities   ;Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10418;Croatia;F;Managers;Arts, entertainment and recreation   ;Y15-29;36;1;1.3718618602785217e-07;4284889;8.401617871548131e-06;1;0;Young +10419;Croatia;F;Managers;Arts, entertainment and recreation   ;Y30-49;249;1;9.488711200259775e-07;4284889;5.811119027820791e-05;1;0;Young +10420;Croatia;F;Managers;Arts, entertainment and recreation   ;Y50-64;140;1;5.335018345527585e-07;4284889;3.267295838935384e-05;0;1;Old +10421;Croatia;F;Managers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10422;Croatia;F;Managers;Other service activities   ;Y15-29;111;1;4.2299074025254424e-07;4284889;2.5904988437273404e-05;1;0;Young +10423;Croatia;F;Managers;Other service activities   ;Y30-49;659;1;2.5112693497876272e-06;4284889;0.00015379628270417272;1;0;Young +10424;Croatia;F;Managers;Other service activities   ;Y50-64;268;1;1.0212749404295662e-06;4284889;6.254537748819164e-05;0;1;Old +10425;Croatia;F;Managers;Other service activities   ;Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10426;Croatia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +10427;Croatia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10428;Croatia;F;Managers;Not stated   ;Y15-29;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +10429;Croatia;F;Managers;Not stated   ;Y30-49;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10430;Croatia;F;Managers;Not stated   ;Y50-64;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10431;Croatia;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;148;1;5.63987653670059e-07;4284889;3.45399845830312e-05;1;0;Young +10432;Croatia;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;583;1;2.221654068173273e-06;4284889;0.0001360595338642378;1;0;Young +10433;Croatia;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;162;1;6.173378371253348e-07;4284889;3.780728042196659e-05;0;1;Old +10434;Croatia;F;Professionals;Mining and quarrying   ;Y15-29;39;1;1.4861836819683987e-07;4284889;9.101752694177141e-06;1;0;Young +10435;Croatia;F;Professionals;Mining and quarrying   ;Y30-49;217;1;8.269278435567757e-07;4284889;5.0643085503498456e-05;1;0;Young +10436;Croatia;F;Professionals;Mining and quarrying   ;Y50-64;81;1;3.086689185626674e-07;4284889;1.8903640210983296e-05;0;1;Old +10437;Croatia;F;Professionals;Manufacturing   ;Y15-29;1335;1;5.087321065199519e-06;4284889;0.00031155999606990987;1;0;Young +10438;Croatia;F;Professionals;Manufacturing   ;Y30-49;4107;1;1.5650657389344137e-05;4284889;0.0009584845721791159;1;0;Young +10439;Croatia;F;Professionals;Manufacturing   ;Y50-64;1361;1;5.186399977330745e-06;4284889;0.0003176278311993613;0;1;Old +10440;Croatia;F;Professionals;Manufacturing   ;Y65-84;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +10441;Croatia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;84;1;3.201011007316551e-07;4284889;1.9603775033612305e-05;1;0;Young +10442;Croatia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;340;1;1.2956473124852705e-06;4284889;7.93486132312879e-05;1;0;Young +10443;Croatia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;238;1;9.069531187396895e-07;4284889;5.554402926190153e-05;0;1;Old +10444;Croatia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10445;Croatia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;94;1;3.582083746282807e-07;4284889;2.193755777570901e-05;1;0;Young +10446;Croatia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;384;1;1.4633193176304232e-06;4284889;8.961725729651339e-05;1;0;Young +10447;Croatia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;145;1;5.525554715010713e-07;4284889;3.383984976040219e-05;0;1;Old +10448;Croatia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10449;Croatia;F;Professionals;Construction   ;Y15-29;325;1;1.2384864016403321e-06;4284889;7.584793911814285e-05;1;0;Young +10450;Croatia;F;Professionals;Construction   ;Y30-49;1025;1;3.905995574404124e-06;4284889;0.00023921273106491207;1;0;Young +10451;Croatia;F;Professionals;Construction   ;Y50-64;326;1;1.2422971290299947e-06;4284889;7.608131739235252e-05;0;1;Old +10452;Croatia;F;Professionals;Construction   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10453;Croatia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1649;1;6.283889465553563e-06;4284889;0.00038484077417174636;1;0;Young +10454;Croatia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4054;1;1.544868883769202e-05;4284889;0.0009461155236460034;1;0;Young +10455;Croatia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1329;1;5.064456700861543e-06;4284889;0.00031015972642465183;0;1;Old +10456;Croatia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;22;1;8.383600257257633e-08;4284889;5.134322032612747e-06;0;1;Old +10457;Croatia;F;Professionals;Transportation and storage   ;Y15-29;149;1;5.677983810597215e-07;4284889;3.477336285724088e-05;1;0;Young +10458;Croatia;F;Professionals;Transportation and storage   ;Y30-49;891;1;3.3953581041893413e-06;4284889;0.00020794004232081625;1;0;Young +10459;Croatia;F;Professionals;Transportation and storage   ;Y50-64;409;1;1.5585875023719872e-06;4284889;9.545171415175515e-05;0;1;Old +10460;Croatia;F;Professionals;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10461;Croatia;F;Professionals;Accommodation and food service activities   ;Y15-29;272;1;1.0365178499882164e-06;4284889;6.347889058503033e-05;1;0;Young +10462;Croatia;F;Professionals;Accommodation and food service activities   ;Y30-49;575;1;2.191168249055972e-06;4284889;0.00013419250767056042;1;0;Young +10463;Croatia;F;Professionals;Accommodation and food service activities   ;Y50-64;212;1;8.078742066084628e-07;4284889;4.9476194132450104e-05;0;1;Old +10464;Croatia;F;Professionals;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10465;Croatia;F;Professionals;Information and communication   ;Y15-29;1560;1;5.9447347278735945e-06;4284889;0.0003640701077670857;1;0;Young +10466;Croatia;F;Professionals;Information and communication   ;Y30-49;4696;1;1.7895175821855383e-05;4284889;0.0010959443756886117;1;0;Young +10467;Croatia;F;Professionals;Information and communication   ;Y50-64;861;1;3.2810362824994645e-06;4284889;0.00020093869409452614;0;1;Old +10468;Croatia;F;Professionals;Information and communication   ;Y65-84;30;1;1.1432182168987682e-07;4284889;7.001348226290109e-06;0;1;Old +10469;Croatia;F;Professionals;Financial and insurance activities   ;Y15-29;1559;1;5.940924000483932e-06;4284889;0.000363836729492876;1;0;Young +10470;Croatia;F;Professionals;Financial and insurance activities   ;Y30-49;4246;1;1.6180348496507233e-05;4284889;0.0009909241522942601;1;0;Young +10471;Croatia;F;Professionals;Financial and insurance activities   ;Y50-64;1075;1;4.096531943887253e-06;4284889;0.00025088164477539556;0;1;Old +10472;Croatia;F;Professionals;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10473;Croatia;F;Professionals;Real estate activities   ;Y15-29;51;1;1.943470968727906e-07;4284889;1.1902291984693186e-05;1;0;Young +10474;Croatia;F;Professionals;Real estate activities   ;Y30-49;194;1;7.392811135945367e-07;4284889;4.527538519667604e-05;1;0;Young +10475;Croatia;F;Professionals;Real estate activities   ;Y50-64;67;1;2.5531873510739155e-07;4284889;1.563634437204791e-05;0;1;Old +10476;Croatia;F;Professionals;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10477;Croatia;F;Professionals;Professional, scientific and technical activities   ;Y15-29;3082;1;1.1744661814940012e-05;4284889;0.0007192718411142038;1;0;Young +10478;Croatia;F;Professionals;Professional, scientific and technical activities   ;Y30-49;7993;1;3.0459144025572848e-05;4284889;0.0018653925457578948;1;0;Young +10479;Croatia;F;Professionals;Professional, scientific and technical activities   ;Y50-64;2201;1;8.387410984647296e-06;4284889;0.0005136655815354843;0;1;Old +10480;Croatia;F;Professionals;Professional, scientific and technical activities   ;Y65-84;92;1;3.5058691984895557e-07;4284889;2.1470801227289667e-05;0;1;Old +10481;Croatia;F;Professionals;Administrative and support service activities   ;Y15-29;368;1;1.4023476793958223e-06;4284889;8.588320490915867e-05;1;0;Young +10482;Croatia;F;Professionals;Administrative and support service activities   ;Y30-49;883;1;3.364872285072041e-06;4284889;0.00020607301612713888;1;0;Young +10483;Croatia;F;Professionals;Administrative and support service activities   ;Y50-64;238;1;9.069531187396895e-07;4284889;5.554402926190153e-05;0;1;Old +10484;Croatia;F;Professionals;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10485;Croatia;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;1553;1;5.918059636145956e-06;4284889;0.000362436459847618;1;0;Young +10486;Croatia;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;9345;1;3.561124745639663e-05;4284889;0.002180919972489369;1;0;Young +10487;Croatia;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;4530;1;1.72625950751714e-05;4284889;0.0010572035821698066;0;1;Old +10488;Croatia;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;115;1;4.382336498111945e-07;4284889;2.6838501534112085e-05;0;1;Old +10489;Croatia;F;Professionals;Education   ;Y15-29;11536;1;4.39605511671473e-05;4284889;0.0026922517712827565;1;0;Young +10490;Croatia;F;Professionals;Education   ;Y30-49;34178;1;0.00013024304072388698;4284889;0.007976402655938112;1;0;Young +10491;Croatia;F;Professionals;Education   ;Y50-64;15472;1;5.8959574172859136e-05;4284889;0.003610828658572019;0;1;Old +10492;Croatia;F;Professionals;Education   ;Y65-84;339;1;1.2918365850956081e-06;4284889;7.911523495707824e-05;0;1;Old +10493;Croatia;F;Professionals;Human health and social work activities   ;Y15-29;3739;1;1.4248309709948314e-05;4284889;0.0008726013672699573;1;0;Young +10494;Croatia;F;Professionals;Human health and social work activities   ;Y30-49;11950;1;4.55381923064676e-05;4284889;0.00278887037680556;1;0;Young +10495;Croatia;F;Professionals;Human health and social work activities   ;Y50-64;7114;1;2.7109514650059457e-05;4284889;0.0016602530427275947;0;1;Old +10496;Croatia;F;Professionals;Human health and social work activities   ;Y65-84;208;1;7.926312970498126e-07;4284889;4.854268103561143e-05;0;1;Old +10497;Croatia;F;Professionals;Arts, entertainment and recreation   ;Y15-29;603;1;2.297868615966524e-06;4284889;0.0001407270993484312;1;0;Young +10498;Croatia;F;Professionals;Arts, entertainment and recreation   ;Y30-49;2261;1;8.616054628027049e-06;4284889;0.0005276682779880646;1;0;Young +10499;Croatia;F;Professionals;Arts, entertainment and recreation   ;Y50-64;984;1;3.7497557514279598e-06;4284889;0.00022964422182231557;0;1;Old +10500;Croatia;F;Professionals;Arts, entertainment and recreation   ;Y65-84;41;1;1.56239822976165e-07;4284889;9.568509242596483e-06;0;1;Old +10501;Croatia;F;Professionals;Other service activities   ;Y15-29;269;1;1.0250856678192288e-06;4284889;6.277875576240131e-05;1;0;Young +10502;Croatia;F;Professionals;Other service activities   ;Y30-49;817;1;3.113364277354312e-06;4284889;0.00019067005002930065;1;0;Young +10503;Croatia;F;Professionals;Other service activities   ;Y50-64;279;1;1.0631929417158544e-06;4284889;6.511253850449802e-05;0;1;Old +10504;Croatia;F;Professionals;Other service activities   ;Y65-84;24;1;9.145745735190145e-08;4284889;5.601078581032087e-06;0;1;Old +10505;Croatia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;1;0;Young +10506;Croatia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;111;1;4.2299074025254424e-07;4284889;2.5904988437273404e-05;1;0;Young +10507;Croatia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;27;1;1.0288963952088914e-07;4284889;6.3012134036610986e-06;0;1;Old +10508;Croatia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10509;Croatia;F;Professionals;Not stated   ;Y15-29;29;1;1.1051109430021426e-07;4284889;6.767969952080439e-06;1;0;Young +10510;Croatia;F;Professionals;Not stated   ;Y30-49;64;1;2.4388655293840386e-07;4284889;1.49362095494189e-05;1;0;Young +10511;Croatia;F;Professionals;Not stated   ;Y50-64;23;1;8.764672996223889e-08;4284889;5.367700306822417e-06;0;1;Old +10512;Croatia;F;Professionals;Not stated   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10513;Croatia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;166;1;6.325807466839851e-07;4284889;3.874079351880527e-05;1;0;Young +10514;Croatia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;610;1;2.324543707694162e-06;4284889;0.00014236074726789889;1;0;Young +10515;Croatia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;216;1;8.231171161671131e-07;4284889;5.040970722928879e-05;0;1;Old +10516;Croatia;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;41;1;1.56239822976165e-07;4284889;9.568509242596483e-06;1;0;Young +10517;Croatia;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;199;1;7.583347505428495e-07;4284889;4.644227656772439e-05;1;0;Young +10518;Croatia;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;80;1;3.0485819117300483e-07;4284889;1.8670261936773625e-05;0;1;Old +10519;Croatia;F;Technicians and associate professionals;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10520;Croatia;F;Technicians and associate professionals;Manufacturing   ;Y15-29;2231;1;8.501732806337173e-06;4284889;0.0005206669297617744;1;0;Young +10521;Croatia;F;Technicians and associate professionals;Manufacturing   ;Y30-49;8823;1;3.362204775899277e-05;4284889;0.002059096513351921;1;0;Young +10522;Croatia;F;Technicians and associate professionals;Manufacturing   ;Y50-64;3655;1;1.3928208609216658e-05;4284889;0.000852997592236345;0;1;Old +10523;Croatia;F;Technicians and associate professionals;Manufacturing   ;Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +10524;Croatia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;34;1;1.2956473124852705e-07;4284889;7.934861323128791e-06;1;0;Young +10525;Croatia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;370;1;1.4099691341751475e-06;4284889;8.634996145757802e-05;1;0;Young +10526;Croatia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;335;1;1.2765936755369577e-06;4284889;7.818172186023955e-05;0;1;Old +10527;Croatia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;99;1;3.772620115765935e-07;4284889;2.310444914675736e-05;1;0;Young +10528;Croatia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;442;1;1.6843415062308518e-06;4284889;0.00010315319720067428;1;0;Young +10529;Croatia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;275;1;1.0479500321572042e-06;4284889;6.417902540765933e-05;0;1;Old +10530;Croatia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10531;Croatia;F;Technicians and associate professionals;Construction   ;Y15-29;603;1;2.297868615966524e-06;4284889;0.0001407270993484312;1;0;Young +10532;Croatia;F;Technicians and associate professionals;Construction   ;Y30-49;1888;1;7.194653311682914e-06;4284889;0.0004406181817078575;1;0;Young +10533;Croatia;F;Technicians and associate professionals;Construction   ;Y50-64;778;1;2.964745909157472e-06;4284889;0.0001815682973351235;0;1;Old +10534;Croatia;F;Technicians and associate professionals;Construction   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10535;Croatia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3915;1;1.4918997730528924e-05;4284889;0.0009136759435308592;1;0;Young +10536;Croatia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;10145;1;3.8659829368126677e-05;4284889;0.002367622591857105;1;0;Young +10537;Croatia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2621;1;9.987916488305572e-06;4284889;0.0006116844567035459;0;1;Old +10538;Croatia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;22;1;8.383600257257633e-08;4284889;5.134322032612747e-06;0;1;Old +10539;Croatia;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;411;1;1.5662089571513124e-06;4284889;9.59184707001745e-05;1;0;Young +10540;Croatia;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;2320;1;8.84088754401714e-06;4284889;0.0005414375961664351;1;0;Young +10541;Croatia;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;862;1;3.284847009889127e-06;4284889;0.00020117207236873582;0;1;Old +10542;Croatia;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10543;Croatia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;377;1;1.4366442259027852e-06;4284889;8.79836093770457e-05;1;0;Young +10544;Croatia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;1029;1;3.921238483962775e-06;4284889;0.00024014624416175074;1;0;Young +10545;Croatia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;462;1;1.760556054024103e-06;4284889;0.00010782076268486769;0;1;Old +10546;Croatia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10547;Croatia;F;Technicians and associate professionals;Information and communication   ;Y15-29;936;1;3.5668408367241566e-06;4284889;0.00021844206466025142;1;0;Young +10548;Croatia;F;Technicians and associate professionals;Information and communication   ;Y30-49;2380;1;9.069531187396893e-06;4284889;0.0005554402926190153;1;0;Young +10549;Croatia;F;Technicians and associate professionals;Information and communication   ;Y50-64;537;1;2.046360608248795e-06;4284889;0.00012532413325059297;0;1;Old +10550;Croatia;F;Technicians and associate professionals;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +10551;Croatia;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2247;1;8.562704444571774e-06;4284889;0.0005244009821491292;1;0;Young +10552;Croatia;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;6623;1;2.523844750173514e-05;4284889;0.0015456643100906465;1;0;Young +10553;Croatia;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;1882;1;7.171788947344939e-06;4284889;0.00043921791206259954;0;1;Old +10554;Croatia;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10555;Croatia;F;Technicians and associate professionals;Real estate activities   ;Y15-29;167;1;6.363914740736477e-07;4284889;3.897417179301494e-05;1;0;Young +10556;Croatia;F;Technicians and associate professionals;Real estate activities   ;Y30-49;690;1;2.6294018988671666e-06;4284889;0.00016103100920467252;1;0;Young +10557;Croatia;F;Technicians and associate professionals;Real estate activities   ;Y50-64;189;1;7.202274766462239e-07;4284889;4.4108493825627687e-05;0;1;Old +10558;Croatia;F;Technicians and associate professionals;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +10559;Croatia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;1645;1;6.268646555994912e-06;4284889;0.00038390726107490763;1;0;Young +10560;Croatia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;4417;1;1.683198288013953e-05;4284889;0.0010308318371841138;1;0;Young +10561;Croatia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;1652;1;6.29532164772255e-06;4284889;0.00038554090899437535;0;1;Old +10562;Croatia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;0;1;Old +10563;Croatia;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;382;1;1.455697862851098e-06;4284889;8.915050074809406e-05;1;0;Young +10564;Croatia;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;994;1;3.7878630253245854e-06;4284889;0.00023197800456441228;1;0;Young +10565;Croatia;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;298;1;1.135596762119443e-06;4284889;6.954672571448176e-05;0;1;Old +10566;Croatia;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10567;Croatia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;1343;1;5.117806884316819e-06;4284889;0.0003134270222635872;1;0;Young +10568;Croatia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;7475;1;2.848518723772764e-05;4284889;0.0017445025997172856;1;0;Young +10569;Croatia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;3340;1;1.2727829481472953e-05;4284889;0.0007794834358602988;0;1;Old +10570;Croatia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;34;1;1.2956473124852705e-07;4284889;7.934861323128791e-06;0;1;Old +10571;Croatia;F;Technicians and associate professionals;Education   ;Y15-29;368;1;1.4023476793958223e-06;4284889;8.588320490915867e-05;1;0;Young +10572;Croatia;F;Technicians and associate professionals;Education   ;Y30-49;1673;1;6.375346922905464e-06;4284889;0.00039044185275277844;1;0;Young +10573;Croatia;F;Technicians and associate professionals;Education   ;Y50-64;1177;1;4.485226137632834e-06;4284889;0.00027468622874478196;0;1;Old +10574;Croatia;F;Technicians and associate professionals;Education   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10575;Croatia;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;8288;1;3.15833086055233e-05;4284889;0.0019342391366497474;1;0;Young +10576;Croatia;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;18277;1;6.964866450086261e-05;4284889;0.0042654547177301445;1;0;Young +10577;Croatia;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;8624;1;3.2863713008449923e-05;4284889;0.002012654236784197;0;1;Old +10578;Croatia;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;31;1;1.1813254907953938e-07;4284889;7.2347265004997795e-06;0;1;Old +10579;Croatia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;528;1;2.012064061741832e-06;4284889;0.00012322372878270592;1;0;Young +10580;Croatia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;1118;1;4.260393221642743e-06;4284889;0.0002609169105664114;1;0;Young +10581;Croatia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;369;1;1.4061584067854849e-06;4284889;8.611658318336835e-05;0;1;Old +10582;Croatia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10583;Croatia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10584;Croatia;F;Technicians and associate professionals;Other service activities   ;Y15-29;279;1;1.0631929417158544e-06;4284889;6.511253850449802e-05;1;0;Young +10585;Croatia;F;Technicians and associate professionals;Other service activities   ;Y30-49;736;1;2.8046953587916445e-06;4284889;0.00017176640981831734;1;0;Young +10586;Croatia;F;Technicians and associate professionals;Other service activities   ;Y50-64;355;1;1.352808223330209e-06;4284889;8.284928734443296e-05;0;1;Old +10587;Croatia;F;Technicians and associate professionals;Other service activities   ;Y65-84;59;1;2.2483291599009106e-07;4284889;1.3769318178370547e-05;0;1;Old +10588;Croatia;F;Technicians and associate professionals;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10589;Croatia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +10590;Croatia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;1;0;Young +10591;Croatia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +10592;Croatia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;28;1;1.067003669105517e-07;4284889;6.534591677870769e-06;1;0;Young +10593;Croatia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;0;1;Old +10594;Croatia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10595;Croatia;F;Technicians and associate professionals;Not stated   ;Y15-29;49;1;1.8672564209346548e-07;4284889;1.1435535436273845e-05;1;0;Young +10596;Croatia;F;Technicians and associate professionals;Not stated   ;Y30-49;103;1;3.9250492113524375e-07;4284889;2.4037962243596042e-05;1;0;Young +10597;Croatia;F;Technicians and associate professionals;Not stated   ;Y50-64;46;1;1.7529345992447778e-07;4284889;1.0735400613644834e-05;0;1;Old +10598;Croatia;F;Technicians and associate professionals;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +10599;Croatia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;224;1;8.536029352844136e-07;4284889;5.227673342296615e-05;1;0;Young +10600;Croatia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;1048;1;3.993642304366363e-06;4284889;0.0002445804313717345;1;0;Young +10601;Croatia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;585;1;2.2292755229525977e-06;4284889;0.00013652629041265713;0;1;Old +10602;Croatia;F;Clerical support workers;Mining and quarrying   ;Y15-29;40;1;1.5242909558650242e-07;4284889;9.335130968386812e-06;1;0;Young +10603;Croatia;F;Clerical support workers;Mining and quarrying   ;Y30-49;248;1;9.45060392636315e-07;4284889;5.7877812003998236e-05;1;0;Young +10604;Croatia;F;Clerical support workers;Mining and quarrying   ;Y50-64;130;1;4.953945606561329e-07;4284889;3.033917564725714e-05;0;1;Old +10605;Croatia;F;Clerical support workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10606;Croatia;F;Clerical support workers;Manufacturing   ;Y15-29;1665;1;6.344861103788163e-06;4284889;0.00038857482655910104;1;0;Young +10607;Croatia;F;Clerical support workers;Manufacturing   ;Y30-49;6770;1;2.5798624428015536e-05;4284889;0.001579970916399468;1;0;Young +10608;Croatia;F;Clerical support workers;Manufacturing   ;Y50-64;3724;1;1.4191148799103376e-05;4284889;0.0008691006931568123;0;1;Old +10609;Croatia;F;Clerical support workers;Manufacturing   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10610;Croatia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;78;1;2.9723673639367974e-07;4284889;1.8203505388354282e-05;1;0;Young +10611;Croatia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;869;1;3.311522101616765e-06;4284889;0.0002028057202882035;1;0;Young +10612;Croatia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;820;1;3.1247964595232996e-06;4284889;0.00019137018485192964;0;1;Old +10613;Croatia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;185;1;7.049845670875737e-07;4284889;4.317498072878901e-05;1;0;Young +10614;Croatia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;915;1;3.486815561541243e-06;4284889;0.00021354112090184833;1;0;Young +10615;Croatia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;576;1;2.1949789764456348e-06;4284889;0.0001344258859447701;0;1;Old +10616;Croatia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10617;Croatia;F;Clerical support workers;Construction   ;Y15-29;1035;1;3.94410284830075e-06;4284889;0.00024154651380700877;1;0;Young +10618;Croatia;F;Clerical support workers;Construction   ;Y30-49;3316;1;1.263637202412105e-05;4284889;0.0007738823572792668;1;0;Young +10619;Croatia;F;Clerical support workers;Construction   ;Y50-64;1217;1;4.637655233219336e-06;4284889;0.0002840213597131688;0;1;Old +10620;Croatia;F;Clerical support workers;Construction   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10621;Croatia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2812;1;1.071576541973112e-05;4284889;0.000656259707077593;1;0;Young +10622;Croatia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8398;1;3.2002488618386186e-05;4284889;0.0019599107468128113;1;0;Young +10623;Croatia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2666;1;1.0159399220840387e-05;4284889;0.000622186479042981;0;1;Old +10624;Croatia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +10625;Croatia;F;Clerical support workers;Transportation and storage   ;Y15-29;1048;1;3.993642304366363e-06;4284889;0.0002445804313717345;1;0;Young +10626;Croatia;F;Clerical support workers;Transportation and storage   ;Y30-49;6066;1;2.3115872345693092e-05;4284889;0.00141567261135586;1;0;Young +10627;Croatia;F;Clerical support workers;Transportation and storage   ;Y50-64;2302;1;8.772294451003214e-06;4284889;0.000537236787230661;0;1;Old +10628;Croatia;F;Clerical support workers;Transportation and storage   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10629;Croatia;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;1587;1;6.047624367394484e-06;4284889;0.00037037132117074677;1;0;Young +10630;Croatia;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;2551;1;9.721165571029191e-06;4284889;0.000595347977508869;1;0;Young +10631;Croatia;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;1030;1;3.925049211352437e-06;4284889;0.00024037962243596042;0;1;Old +10632;Croatia;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +10633;Croatia;F;Clerical support workers;Information and communication   ;Y15-29;1062;1;4.04699248782164e-06;4284889;0.00024784772721066987;1;0;Young +10634;Croatia;F;Clerical support workers;Information and communication   ;Y30-49;2198;1;8.375978802478308e-06;4284889;0.0005129654467128554;1;0;Young +10635;Croatia;F;Clerical support workers;Information and communication   ;Y50-64;669;1;2.549376623684253e-06;4284889;0.00015613006544626943;0;1;Old +10636;Croatia;F;Clerical support workers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10637;Croatia;F;Clerical support workers;Financial and insurance activities   ;Y15-29;2544;1;9.694490479301555e-06;4284889;0.0005937143295894013;1;0;Young +10638;Croatia;F;Clerical support workers;Financial and insurance activities   ;Y30-49;7669;1;2.9224468351322175e-05;4284889;0.0017897779849139616;1;0;Young +10639;Croatia;F;Clerical support workers;Financial and insurance activities   ;Y50-64;3232;1;1.2316270923389395e-05;4284889;0.0007542785822456544;0;1;Old +10640;Croatia;F;Clerical support workers;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10641;Croatia;F;Clerical support workers;Real estate activities   ;Y15-29;133;1;5.068267428251205e-07;4284889;3.1039310469886154e-05;1;0;Young +10642;Croatia;F;Clerical support workers;Real estate activities   ;Y30-49;427;1;1.6271805953859134e-06;4284889;9.965252308752922e-05;1;0;Young +10643;Croatia;F;Clerical support workers;Real estate activities   ;Y50-64;161;1;6.135271097356723e-07;4284889;3.757390214775692e-05;0;1;Old +10644;Croatia;F;Clerical support workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10645;Croatia;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2613;1;9.95743066918827e-06;4284889;0.0006098174305098686;1;0;Young +10646;Croatia;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;7202;1;2.744485866034976e-05;4284889;0.0016807903308580455;1;0;Young +10647;Croatia;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;2698;1;1.0281342497309588e-05;4284889;0.0006296545838176905;0;1;Old +10648;Croatia;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;23;1;8.764672996223889e-08;4284889;5.367700306822417e-06;0;1;Old +10649;Croatia;F;Clerical support workers;Administrative and support service activities   ;Y15-29;1187;1;4.52333341152946e-06;4284889;0.00027702001148687867;1;0;Young +10650;Croatia;F;Clerical support workers;Administrative and support service activities   ;Y30-49;2127;1;8.105417157812265e-06;4284889;0.0004963955892439688;1;0;Young +10651;Croatia;F;Clerical support workers;Administrative and support service activities   ;Y50-64;603;1;2.297868615966524e-06;4284889;0.0001407270993484312;0;1;Old +10652;Croatia;F;Clerical support workers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10653;Croatia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;5181;1;1.9743378605841726e-05;4284889;0.0012091328386803018;1;0;Young +10654;Croatia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;12749;1;4.858296349080799e-05;4284889;0.002975339617899087;1;0;Young +10655;Croatia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;5633;1;2.1465827385969205e-05;4284889;0.001314619818623073;0;1;Old +10656;Croatia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;33;1;1.257540038588645e-07;4284889;7.70148304891912e-06;0;1;Old +10657;Croatia;F;Clerical support workers;Education   ;Y15-29;458;1;1.7453131444654527e-06;4284889;0.000106887249588029;1;0;Young +10658;Croatia;F;Clerical support workers;Education   ;Y30-49;1721;1;6.5582618376092665e-06;4284889;0.0004016440099148426;1;0;Young +10659;Croatia;F;Clerical support workers;Education   ;Y50-64;1398;1;5.32739689074826e-06;4284889;0.0003262628273451191;0;1;Old +10660;Croatia;F;Clerical support workers;Education   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10661;Croatia;F;Clerical support workers;Human health and social work activities   ;Y15-29;464;1;1.7681775088034281e-06;4284889;0.00010828751923328702;1;0;Young +10662;Croatia;F;Clerical support workers;Human health and social work activities   ;Y30-49;2559;1;9.751651390146492e-06;4284889;0.0005972150037025463;1;0;Young +10663;Croatia;F;Clerical support workers;Human health and social work activities   ;Y50-64;1919;1;7.312785860762454e-06;4284889;0.0004478529082083573;0;1;Old +10664;Croatia;F;Clerical support workers;Human health and social work activities   ;Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +10665;Croatia;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;3005;1;1.1451235805935995e-05;4284889;0.0007013017140000593;1;0;Young +10666;Croatia;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2946;1;1.1226402889945903e-05;4284889;0.0006875323958216887;1;0;Young +10667;Croatia;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;678;1;2.5836731701912162e-06;4284889;0.00015823046991415648;0;1;Old +10668;Croatia;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10669;Croatia;F;Clerical support workers;Other service activities   ;Y15-29;331;1;1.2613507659783075e-06;4284889;7.724820876340087e-05;1;0;Young +10670;Croatia;F;Clerical support workers;Other service activities   ;Y30-49;1041;1;3.966967212638726e-06;4284889;0.00024294678345226678;1;0;Young +10671;Croatia;F;Clerical support workers;Other service activities   ;Y50-64;466;1;1.7757989635827531e-06;4284889;0.00010875427578170636;0;1;Old +10672;Croatia;F;Clerical support workers;Other service activities   ;Y65-84;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +10673;Croatia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10674;Croatia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;1;0;Young +10675;Croatia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;79;1;3.010474637833423e-07;4284889;1.8436883662563954e-05;1;0;Young +10676;Croatia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;4284889;4.667565484193406e-06;0;1;Old +10677;Croatia;F;Clerical support workers;Not stated   ;Y15-29;103;1;3.9250492113524375e-07;4284889;2.4037962243596042e-05;1;0;Young +10678;Croatia;F;Clerical support workers;Not stated   ;Y30-49;219;1;8.345492983361008e-07;4284889;5.11098420519178e-05;1;0;Young +10679;Croatia;F;Clerical support workers;Not stated   ;Y50-64;98;1;3.7345128418693096e-07;4284889;2.287107087254769e-05;0;1;Old +10680;Croatia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;81;1;3.086689185626674e-07;4284889;1.8903640210983296e-05;1;0;Young +10681;Croatia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;296;1;1.127975307340118e-06;4284889;6.90799691660624e-05;1;0;Young +10682;Croatia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;150;1;5.716091084493841e-07;4284889;3.5006741131450545e-05;0;1;Old +10683;Croatia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10684;Croatia;F;Service and sales workers;Mining and quarrying   ;Y15-29;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;1;0;Young +10685;Croatia;F;Service and sales workers;Mining and quarrying   ;Y30-49;39;1;1.4861836819683987e-07;4284889;9.101752694177141e-06;1;0;Young +10686;Croatia;F;Service and sales workers;Mining and quarrying   ;Y50-64;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;0;1;Old +10687;Croatia;F;Service and sales workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10688;Croatia;F;Service and sales workers;Manufacturing   ;Y15-29;2014;1;7.674804962780397e-06;4284889;0.000470023844258276;1;0;Young +10689;Croatia;F;Service and sales workers;Manufacturing   ;Y30-49;3901;1;1.4865647547073648e-05;4284889;0.0009104086476919239;1;0;Young +10690;Croatia;F;Service and sales workers;Manufacturing   ;Y50-64;903;1;3.441086832865292e-06;4284889;0.0002107405816113323;0;1;Old +10691;Croatia;F;Service and sales workers;Manufacturing   ;Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10692;Croatia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +10693;Croatia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;65;1;2.4769728032806646e-07;4284889;1.516958782362857e-05;1;0;Young +10694;Croatia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;77;1;2.9342600900401714e-07;4284889;1.7970127114144615e-05;0;1;Old +10695;Croatia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;1;0;Young +10696;Croatia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;102;1;3.886941937455812e-07;4284889;2.380458396938637e-05;1;0;Young +10697;Croatia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;59;1;2.2483291599009106e-07;4284889;1.3769318178370547e-05;0;1;Old +10698;Croatia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10699;Croatia;F;Service and sales workers;Construction   ;Y15-29;65;1;2.4769728032806646e-07;4284889;1.516958782362857e-05;1;0;Young +10700;Croatia;F;Service and sales workers;Construction   ;Y30-49;328;1;1.24991858380932e-06;4284889;7.654807394077187e-05;1;0;Young +10701;Croatia;F;Service and sales workers;Construction   ;Y50-64;139;1;5.296911071630959e-07;4284889;3.2439580115144174e-05;0;1;Old +10702;Croatia;F;Service and sales workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10703;Croatia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;33179;1;0.0001264361240616141;4284889;0.007743257760002651;1;0;Young +10704;Croatia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;64806;1;0.0002469579992144719;4284889;0.015124312438431894;1;0;Young +10705;Croatia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;13744;1;5.237463724352223e-05;4284889;0.003207551000737709;0;1;Old +10706;Croatia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;51;1;1.943470968727906e-07;4284889;1.1902291984693186e-05;0;1;Old +10707;Croatia;F;Service and sales workers;Transportation and storage   ;Y15-29;375;1;1.4290227711234603e-06;4284889;8.751685282862637e-05;1;0;Young +10708;Croatia;F;Service and sales workers;Transportation and storage   ;Y30-49;778;1;2.964745909157472e-06;4284889;0.0001815682973351235;1;0;Young +10709;Croatia;F;Service and sales workers;Transportation and storage   ;Y50-64;214;1;8.15495661387788e-07;4284889;4.9942950680869446e-05;0;1;Old +10710;Croatia;F;Service and sales workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10711;Croatia;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;18279;1;6.965628595564195e-05;4284889;0.004265921474278563;1;0;Young +10712;Croatia;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;26380;1;0.00010052698853929834;4284889;0.0061565188736511026;1;0;Young +10713;Croatia;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;8267;1;3.150328333034039e-05;4284889;0.0019293381928913445;0;1;Old +10714;Croatia;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;218;1;8.307385709464382e-07;4284889;5.087646377770813e-05;0;1;Old +10715;Croatia;F;Service and sales workers;Information and communication   ;Y15-29;369;1;1.4061584067854849e-06;4284889;8.611658318336835e-05;1;0;Young +10716;Croatia;F;Service and sales workers;Information and communication   ;Y30-49;466;1;1.7757989635827531e-06;4284889;0.00010875427578170636;1;0;Young +10717;Croatia;F;Service and sales workers;Information and communication   ;Y50-64;92;1;3.5058691984895557e-07;4284889;2.1470801227289667e-05;0;1;Old +10718;Croatia;F;Service and sales workers;Financial and insurance activities   ;Y15-29;97;1;3.6964055679726836e-07;4284889;2.263769259833802e-05;1;0;Young +10719;Croatia;F;Service and sales workers;Financial and insurance activities   ;Y30-49;216;1;8.231171161671131e-07;4284889;5.040970722928879e-05;1;0;Young +10720;Croatia;F;Service and sales workers;Financial and insurance activities   ;Y50-64;76;1;2.896152816143546e-07;4284889;1.7736748839934944e-05;0;1;Old +10721;Croatia;F;Service and sales workers;Real estate activities   ;Y15-29;26;1;9.907891213122657e-08;4284889;6.067835129451428e-06;1;0;Young +10722;Croatia;F;Service and sales workers;Real estate activities   ;Y30-49;142;1;5.411232893320836e-07;4284889;3.3139714937773184e-05;1;0;Young +10723;Croatia;F;Service and sales workers;Real estate activities   ;Y50-64;86;1;3.277225555109802e-07;4284889;2.0070531582031648e-05;0;1;Old +10724;Croatia;F;Service and sales workers;Real estate activities   ;Y65-84;32;1;1.2194327646920193e-07;4284889;7.46810477470945e-06;0;1;Old +10725;Croatia;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;223;1;8.49792207894751e-07;4284889;5.2043355148756476e-05;1;0;Young +10726;Croatia;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;333;1;1.2689722207576327e-06;4284889;7.771496531182022e-05;1;0;Young +10727;Croatia;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;132;1;5.03016015435458e-07;4284889;3.080593219567648e-05;0;1;Old +10728;Croatia;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10729;Croatia;F;Service and sales workers;Administrative and support service activities   ;Y15-29;951;1;3.6240017475690952e-06;4284889;0.00022194273877339647;1;0;Young +10730;Croatia;F;Service and sales workers;Administrative and support service activities   ;Y30-49;2064;1;7.865341332263525e-06;4284889;0.0004816927579687595;1;0;Young +10731;Croatia;F;Service and sales workers;Administrative and support service activities   ;Y50-64;612;1;2.332165162473487e-06;4284889;0.00014282750381631822;0;1;Old +10732;Croatia;F;Service and sales workers;Administrative and support service activities   ;Y65-84;21;1;8.002527518291377e-08;4284889;4.900943758403076e-06;0;1;Old +10733;Croatia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;1312;1;4.99967433523728e-06;4284889;0.00030619229576308747;1;0;Young +10734;Croatia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;2256;1;8.597000991078736e-06;4284889;0.0005265013866170163;1;0;Young +10735;Croatia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;702;1;2.6751306275431174e-06;4284889;0.00016383154849518856;0;1;Old +10736;Croatia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;26;1;9.907891213122657e-08;4284889;6.067835129451428e-06;0;1;Old +10737;Croatia;F;Service and sales workers;Education   ;Y15-29;375;1;1.4290227711234603e-06;4284889;8.751685282862637e-05;1;0;Young +10738;Croatia;F;Service and sales workers;Education   ;Y30-49;3140;1;1.196568400354044e-05;4284889;0.0007328077810183648;1;0;Young +10739;Croatia;F;Service and sales workers;Education   ;Y50-64;1862;1;7.095574399551688e-06;4284889;0.00043455034657840613;0;1;Old +10740;Croatia;F;Service and sales workers;Education   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10741;Croatia;F;Service and sales workers;Human health and social work activities   ;Y15-29;1097;1;4.180367946459829e-06;4284889;0.00025601596680800833;1;0;Young +10742;Croatia;F;Service and sales workers;Human health and social work activities   ;Y30-49;7459;1;2.842421559949304e-05;4284889;0.001740768547329931;1;0;Young +10743;Croatia;F;Service and sales workers;Human health and social work activities   ;Y50-64;3322;1;1.2659236388459026e-05;4284889;0.0007752826269245247;0;1;Old +10744;Croatia;F;Service and sales workers;Human health and social work activities   ;Y65-84;31;1;1.1813254907953938e-07;4284889;7.2347265004997795e-06;0;1;Old +10745;Croatia;F;Service and sales workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10746;Croatia;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;441;1;1.6805307788411892e-06;4284889;0.0001029198189264646;1;0;Young +10747;Croatia;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;653;1;2.488404985449652e-06;4284889;0.00015239601305891472;1;0;Young +10748;Croatia;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;213;1;8.116849339981254e-07;4284889;4.970957240665978e-05;0;1;Old +10749;Croatia;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10750;Croatia;F;Service and sales workers;Other service activities   ;Y15-29;6392;1;2.4358169474723087e-05;4284889;0.0014917539287482126;1;0;Young +10751;Croatia;F;Service and sales workers;Other service activities   ;Y30-49;6645;1;2.5322283504307716e-05;4284889;0.0015507986321232593;1;0;Young +10752;Croatia;F;Service and sales workers;Other service activities   ;Y50-64;1414;1;5.388368528982861e-06;4284889;0.0003299968797324738;0;1;Old +10753;Croatia;F;Service and sales workers;Other service activities   ;Y65-84;60;1;2.2864364337975364e-07;4284889;1.4002696452580218e-05;0;1;Old +10754;Croatia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;123;1;4.6871946892849497e-07;4284889;2.8705527727789447e-05;1;0;Young +10755;Croatia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;291;1;1.1089216703918052e-06;4284889;6.791307779501405e-05;1;0;Young +10756;Croatia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;128;1;4.877731058768077e-07;4284889;2.98724190988378e-05;0;1;Old +10757;Croatia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +10758;Croatia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +10759;Croatia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;23;1;8.764672996223889e-08;4284889;5.367700306822417e-06;1;0;Young +10760;Croatia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +10761;Croatia;F;Service and sales workers;Not stated   ;Y15-29;38;1;1.448076408071773e-07;4284889;8.868374419967472e-06;1;0;Young +10762;Croatia;F;Service and sales workers;Not stated   ;Y30-49;71;1;2.705616446660418e-07;4284889;1.6569857468886592e-05;1;0;Young +10763;Croatia;F;Service and sales workers;Not stated   ;Y50-64;30;1;1.1432182168987682e-07;4284889;7.001348226290109e-06;0;1;Old +10764;Croatia;F;Service and sales workers;Not stated   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10765;Croatia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;1046;1;3.986020849587038e-06;4284889;0.00024411367482331513;1;0;Young +10766;Croatia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;8234;1;3.1377529326481526e-05;4284889;0.0019216367098424253;1;0;Young +10767;Croatia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;6558;1;2.499075022140707e-05;4284889;0.001530494722267018;0;1;Old +10768;Croatia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;1949;1;7.42710768245233e-06;4284889;0.0004548542564346474;0;1;Old +10769;Croatia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;25;1;9.526818474156401e-08;4284889;5.834456855241758e-06;0;1;Old +10770;Croatia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10771;Croatia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;51;1;1.943470968727906e-07;4284889;1.1902291984693186e-05;1;0;Young +10772;Croatia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;25;1;9.526818474156401e-08;4284889;5.834456855241758e-06;0;1;Old +10773;Croatia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10774;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10775;Croatia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +10776;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;1;0;Young +10777;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;30;1;1.1432182168987682e-07;4284889;7.001348226290109e-06;1;0;Young +10778;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10779;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10780;Croatia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +10781;Croatia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +10782;Croatia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;40;1;1.5242909558650242e-07;4284889;9.335130968386812e-06;1;0;Young +10783;Croatia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;0;1;Old +10784;Croatia;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10785;Croatia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10786;Croatia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;1;0;Young +10787;Croatia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10788;Croatia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;26;1;9.907891213122657e-08;4284889;6.067835129451428e-06;1;0;Young +10789;Croatia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;241;1;9.18385300908677e-07;4284889;5.624416408453054e-05;1;0;Young +10790;Croatia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;91;1;3.46776192459293e-07;4284889;2.123742295308e-05;0;1;Old +10791;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;1;0;Young +10792;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10793;Croatia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;1;0;Young +10794;Croatia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10795;Croatia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;1;0;Young +10796;Croatia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10797;Croatia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10798;Croatia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +10799;Croatia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10800;Croatia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10801;Croatia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10802;Croatia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +10803;Croatia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10804;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +10805;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10806;Croatia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10807;Croatia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;30;1;1.1432182168987682e-07;4284889;7.001348226290109e-06;1;0;Young +10808;Croatia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;147;1;5.601769262803964e-07;4284889;3.4306606308821535e-05;1;0;Young +10809;Croatia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;50;1;1.9053636948312803e-07;4284889;1.1668913710483516e-05;0;1;Old +10810;Croatia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10811;Croatia;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +10812;Croatia;F;Craft and related trades workers;Manufacturing   ;Y15-29;3118;1;1.1881848000967864e-05;4284889;0.000727673458985752;1;0;Young +10813;Croatia;F;Craft and related trades workers;Manufacturing   ;Y30-49;13241;1;5.0457841366521967e-05;4284889;0.0030901617288102445;1;0;Young +10814;Croatia;F;Craft and related trades workers;Manufacturing   ;Y50-64;4146;1;1.5799275757540977e-05;4284889;0.0009675863248732931;0;1;Old +10815;Croatia;F;Craft and related trades workers;Manufacturing   ;Y65-84;29;1;1.1051109430021426e-07;4284889;6.767969952080439e-06;0;1;Old +10816;Croatia;F;Craft and related trades workers;Manufacturing   ;Y_GE85;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10817;Croatia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +10818;Croatia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;16;1;6.097163823460096e-08;4284889;3.734052387354725e-06;1;0;Young +10819;Croatia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +10820;Croatia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +10821;Croatia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10822;Croatia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10823;Croatia;F;Craft and related trades workers;Construction   ;Y15-29;54;1;2.0577927904177827e-07;4284889;1.2602426807322197e-05;1;0;Young +10824;Croatia;F;Craft and related trades workers;Construction   ;Y30-49;161;1;6.135271097356723e-07;4284889;3.757390214775692e-05;1;0;Young +10825;Croatia;F;Craft and related trades workers;Construction   ;Y50-64;63;1;2.400758255487413e-07;4284889;1.470283127520923e-05;0;1;Old +10826;Croatia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;576;1;2.1949789764456348e-06;4284889;0.0001344258859447701;1;0;Young +10827;Croatia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1759;1;6.703069478416444e-06;4284889;0.00041051238433481005;1;0;Young +10828;Croatia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;491;1;1.8710671483243173e-06;4284889;0.00011458873263694812;0;1;Old +10829;Croatia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10830;Croatia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10831;Croatia;F;Craft and related trades workers;Transportation and storage   ;Y15-29;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;1;0;Young +10832;Croatia;F;Craft and related trades workers;Transportation and storage   ;Y30-49;34;1;1.2956473124852705e-07;4284889;7.934861323128791e-06;1;0;Young +10833;Croatia;F;Craft and related trades workers;Transportation and storage   ;Y50-64;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +10834;Croatia;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;385;1;1.4671300450200858e-06;4284889;8.985063557072307e-05;1;0;Young +10835;Croatia;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;868;1;3.3077113742271027e-06;4284889;0.00020257234201399382;1;0;Young +10836;Croatia;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;245;1;9.336282104673273e-07;4284889;5.7177677181369226e-05;0;1;Old +10837;Croatia;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10838;Croatia;F;Craft and related trades workers;Information and communication   ;Y15-29;42;1;1.6005055036582754e-07;4284889;9.801887516806153e-06;1;0;Young +10839;Croatia;F;Craft and related trades workers;Information and communication   ;Y30-49;149;1;5.677983810597215e-07;4284889;3.477336285724088e-05;1;0;Young +10840;Croatia;F;Craft and related trades workers;Information and communication   ;Y50-64;61;1;2.3245437076941619e-07;4284889;1.423607472678989e-05;0;1;Old +10841;Croatia;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +10842;Croatia;F;Craft and related trades workers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10843;Croatia;F;Craft and related trades workers;Real estate activities   ;Y30-49;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +10844;Croatia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;15;1;5.716091084493841e-08;4284889;3.5006741131450546e-06;1;0;Young +10845;Croatia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;57;1;2.1721146121076594e-07;4284889;1.3302561629951207e-05;1;0;Young +10846;Croatia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;33;1;1.257540038588645e-07;4284889;7.70148304891912e-06;0;1;Old +10847;Croatia;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;1;0;Young +10848;Croatia;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;62;1;2.3626509815907876e-07;4284889;1.4469453000999559e-05;1;0;Young +10849;Croatia;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;0;1;Old +10850;Croatia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;1;0;Young +10851;Croatia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;57;1;2.1721146121076594e-07;4284889;1.3302561629951207e-05;1;0;Young +10852;Croatia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;27;1;1.0288963952088914e-07;4284889;6.3012134036610986e-06;0;1;Old +10853;Croatia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10854;Croatia;F;Craft and related trades workers;Education   ;Y15-29;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +10855;Croatia;F;Craft and related trades workers;Education   ;Y30-49;32;1;1.2194327646920193e-07;4284889;7.46810477470945e-06;1;0;Young +10856;Croatia;F;Craft and related trades workers;Education   ;Y50-64;31;1;1.1813254907953938e-07;4284889;7.2347265004997795e-06;0;1;Old +10857;Croatia;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10858;Croatia;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;109;1;4.153692854732191e-07;4284889;2.5438231888854065e-05;1;0;Young +10859;Croatia;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;107;1;4.07747830693894e-07;4284889;2.4971475340434723e-05;0;1;Old +10860;Croatia;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10861;Croatia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;1;0;Young +10862;Croatia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;70;1;2.6675091727637925e-07;4284889;1.633647919467692e-05;1;0;Young +10863;Croatia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;47;1;1.7910418731414036e-07;4284889;1.0968778887854505e-05;0;1;Old +10864;Croatia;F;Craft and related trades workers;Other service activities   ;Y15-29;34;1;1.2956473124852705e-07;4284889;7.934861323128791e-06;1;0;Young +10865;Croatia;F;Craft and related trades workers;Other service activities   ;Y30-49;195;1;7.430918409841993e-07;4284889;4.550876347088571e-05;1;0;Young +10866;Croatia;F;Craft and related trades workers;Other service activities   ;Y50-64;73;1;2.7818309944536694e-07;4284889;1.7036614017305934e-05;0;1;Old +10867;Croatia;F;Craft and related trades workers;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10868;Croatia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10869;Croatia;F;Craft and related trades workers;Not stated   ;Y15-29;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10870;Croatia;F;Craft and related trades workers;Not stated   ;Y30-49;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;1;0;Young +10871;Croatia;F;Craft and related trades workers;Not stated   ;Y50-64;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;0;1;Old +10872;Croatia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;56;1;2.134007338211034e-07;4284889;1.3069183355741538e-05;1;0;Young +10873;Croatia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;210;1;8.002527518291377e-07;4284889;4.900943758403076e-05;1;0;Young +10874;Croatia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;74;1;2.819938268350295e-07;4284889;1.72699922915156e-05;0;1;Old +10875;Croatia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10876;Croatia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +10877;Croatia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;15;1;5.716091084493841e-08;4284889;3.5006741131450546e-06;1;0;Young +10878;Croatia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10879;Croatia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;4346;1;1.6561421235473487e-05;4284889;0.0010142619797152272;1;0;Young +10880;Croatia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;19740;1;7.522375867193895e-05;4284889;0.004606887132898892;1;0;Young +10881;Croatia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;5566;1;2.1210508650861812e-05;4284889;0.001298983474251025;0;1;Old +10882;Croatia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;0;1;Old +10883;Croatia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10884;Croatia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10885;Croatia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10886;Croatia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;1;0;Young +10887;Croatia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;36;1;1.3718618602785217e-07;4284889;8.401617871548131e-06;1;0;Young +10888;Croatia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;20;1;7.621454779325121e-08;4284889;4.667565484193406e-06;0;1;Old +10889;Croatia;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;1;0;Young +10890;Croatia;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;52;1;1.9815782426245315e-07;4284889;1.2135670258902857e-05;1;0;Young +10891;Croatia;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10892;Croatia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;109;1;4.153692854732191e-07;4284889;2.5438231888854065e-05;1;0;Young +10893;Croatia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;373;1;1.421401316344135e-06;4284889;8.705009628020702e-05;1;0;Young +10894;Croatia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;95;1;3.6201910201794326e-07;4284889;2.217093604991868e-05;0;1;Old +10895;Croatia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10896;Croatia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;68;1;2.591294624970541e-07;4284889;1.5869722646257582e-05;1;0;Young +10897;Croatia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;367;1;1.3985369520061597e-06;4284889;8.5649826634949e-05;1;0;Young +10898;Croatia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;96;1;3.658298294076058e-07;4284889;2.2404314324128348e-05;0;1;Old +10899;Croatia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10900;Croatia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;49;1;1.8672564209346548e-07;4284889;1.1435535436273845e-05;1;0;Young +10901;Croatia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;209;1;7.964420244394752e-07;4284889;4.8776059309821094e-05;1;0;Young +10902;Croatia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;116;1;4.4204437720085703e-07;4284889;2.7071879808321756e-05;0;1;Old +10903;Croatia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10904;Croatia;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +10905;Croatia;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;1;0;Young +10906;Croatia;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +10907;Croatia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10908;Croatia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +10909;Croatia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +10910;Croatia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;21;1;8.002527518291377e-08;4284889;4.900943758403076e-06;1;0;Young +10911;Croatia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;38;1;1.448076408071773e-07;4284889;8.868374419967472e-06;1;0;Young +10912;Croatia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +10913;Croatia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;16;1;6.097163823460096e-08;4284889;3.734052387354725e-06;1;0;Young +10914;Croatia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;45;1;1.7148273253481523e-07;4284889;1.0502022339435164e-05;1;0;Young +10915;Croatia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;0;1;Old +10916;Croatia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +10917;Croatia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;60;1;2.2864364337975364e-07;4284889;1.4002696452580218e-05;1;0;Young +10918;Croatia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;20;1;7.621454779325121e-08;4284889;4.667565484193406e-06;0;1;Old +10919;Croatia;F;Plant and machine operators, and assemblers;Education   ;Y15-29;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +10920;Croatia;F;Plant and machine operators, and assemblers;Education   ;Y30-49;46;1;1.7529345992447778e-07;4284889;1.0735400613644834e-05;1;0;Young +10921;Croatia;F;Plant and machine operators, and assemblers;Education   ;Y50-64;38;1;1.448076408071773e-07;4284889;8.868374419967472e-06;0;1;Old +10922;Croatia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;27;1;1.0288963952088914e-07;4284889;6.3012134036610986e-06;1;0;Young +10923;Croatia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;333;1;1.2689722207576327e-06;4284889;7.771496531182022e-05;1;0;Young +10924;Croatia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;286;1;1.0898680334434924e-06;4284889;6.67461864239657e-05;0;1;Old +10925;Croatia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10926;Croatia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;1;0;Young +10927;Croatia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;15;1;5.716091084493841e-08;4284889;3.5006741131450546e-06;1;0;Young +10928;Croatia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +10929;Croatia;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;91;1;3.46776192459293e-07;4284889;2.123742295308e-05;1;0;Young +10930;Croatia;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;429;1;1.6348020501652386e-06;4284889;0.00010011927963594856;1;0;Young +10931;Croatia;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;174;1;6.630665658012855e-07;4284889;4.060781971248263e-05;0;1;Old +10932;Croatia;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10933;Croatia;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +10934;Croatia;F;Plant and machine operators, and assemblers;Not stated   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +10935;Croatia;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10936;Croatia;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10937;Croatia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;648;1;2.469351348501339e-06;4284889;0.00015122912168786637;1;0;Young +10938;Croatia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2953;1;1.1253077981673541e-05;4284889;0.0006891660437411564;1;0;Young +10939;Croatia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;1192;1;4.542387048477772e-06;4284889;0.000278186902857927;0;1;Old +10940;Croatia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;40;1;1.5242909558650242e-07;4284889;9.335130968386812e-06;0;1;Old +10941;Croatia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10942;Croatia;F;Elementary occupations;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +10943;Croatia;F;Elementary occupations;Mining and quarrying   ;Y30-49;44;1;1.6767200514515266e-07;4284889;1.0268644065225493e-05;1;0;Young +10944;Croatia;F;Elementary occupations;Mining and quarrying   ;Y50-64;22;1;8.383600257257633e-08;4284889;5.134322032612747e-06;0;1;Old +10945;Croatia;F;Elementary occupations;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +10946;Croatia;F;Elementary occupations;Manufacturing   ;Y15-29;2359;1;8.98950591221398e-06;4284889;0.0005505393488606122;1;0;Young +10947;Croatia;F;Elementary occupations;Manufacturing   ;Y30-49;10907;1;4.156360363904955e-05;4284889;0.002545456836804874;1;0;Young +10948;Croatia;F;Elementary occupations;Manufacturing   ;Y50-64;3880;1;1.4785622271890735e-05;4284889;0.0009055077039335208;0;1;Old +10949;Croatia;F;Elementary occupations;Manufacturing   ;Y65-84;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +10950;Croatia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10951;Croatia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;132;1;5.03016015435458e-07;4284889;3.080593219567648e-05;1;0;Young +10952;Croatia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;121;1;4.610980141491698e-07;4284889;2.8238771179370108e-05;0;1;Old +10953;Croatia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;116;1;4.4204437720085703e-07;4284889;2.7071879808321756e-05;1;0;Young +10954;Croatia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;843;1;3.2124431894855386e-06;4284889;0.00019673788515875206;1;0;Young +10955;Croatia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;394;1;1.5014265915270488e-06;4284889;9.19510400386101e-05;0;1;Old +10956;Croatia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +10957;Croatia;F;Elementary occupations;Construction   ;Y15-29;189;1;7.202274766462239e-07;4284889;4.4108493825627687e-05;1;0;Young +10958;Croatia;F;Elementary occupations;Construction   ;Y30-49;855;1;3.2581719181614894e-06;4284889;0.0001995384244492681;1;0;Young +10959;Croatia;F;Elementary occupations;Construction   ;Y50-64;286;1;1.0898680334434924e-06;4284889;6.67461864239657e-05;0;1;Old +10960;Croatia;F;Elementary occupations;Construction   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +10961;Croatia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;689;1;2.6255911714775044e-06;4284889;0.00016079763093046284;1;0;Young +10962;Croatia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2200;1;8.383600257257634e-06;4284889;0.0005134322032612746;1;0;Young +10963;Croatia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;875;1;3.3343864659547405e-06;4284889;0.0002042059899334615;0;1;Old +10964;Croatia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +10965;Croatia;F;Elementary occupations;Transportation and storage   ;Y15-29;153;1;5.830412906183718e-07;4284889;3.5706875954079555e-05;1;0;Young +10966;Croatia;F;Elementary occupations;Transportation and storage   ;Y30-49;831;1;3.1667144608095878e-06;4284889;0.00019393734586823603;1;0;Young +10967;Croatia;F;Elementary occupations;Transportation and storage   ;Y50-64;468;1;1.7834204183620783e-06;4284889;0.00010922103233012571;0;1;Old +10968;Croatia;F;Elementary occupations;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10969;Croatia;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;1214;1;4.626223051050348e-06;4284889;0.00028332122489053974;1;0;Young +10970;Croatia;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;3859;1;1.470559699670782e-05;4284889;0.0009006067601751177;1;0;Young +10971;Croatia;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;1595;1;6.078110186511784e-06;4284889;0.00037223834736442417;0;1;Old +10972;Croatia;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +10973;Croatia;F;Elementary occupations;Information and communication   ;Y15-29;50;1;1.9053636948312803e-07;4284889;1.1668913710483516e-05;1;0;Young +10974;Croatia;F;Elementary occupations;Information and communication   ;Y30-49;176;1;6.706880205806106e-07;4284889;4.107457626090197e-05;1;0;Young +10975;Croatia;F;Elementary occupations;Information and communication   ;Y50-64;112;1;4.268014676422068e-07;4284889;2.6138366711483075e-05;0;1;Old +10976;Croatia;F;Elementary occupations;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +10977;Croatia;F;Elementary occupations;Financial and insurance activities   ;Y15-29;33;1;1.257540038588645e-07;4284889;7.70148304891912e-06;1;0;Young +10978;Croatia;F;Elementary occupations;Financial and insurance activities   ;Y30-49;293;1;1.1165431251711302e-06;4284889;6.83798343434334e-05;1;0;Young +10979;Croatia;F;Elementary occupations;Financial and insurance activities   ;Y50-64;161;1;6.135271097356723e-07;4284889;3.757390214775692e-05;0;1;Old +10980;Croatia;F;Elementary occupations;Real estate activities   ;Y15-29;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +10981;Croatia;F;Elementary occupations;Real estate activities   ;Y30-49;121;1;4.610980141491698e-07;4284889;2.8238771179370108e-05;1;0;Young +10982;Croatia;F;Elementary occupations;Real estate activities   ;Y50-64;70;1;2.6675091727637925e-07;4284889;1.633647919467692e-05;0;1;Old +10983;Croatia;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;117;1;4.458551045905196e-07;4284889;2.7305258082531427e-05;1;0;Young +10984;Croatia;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;456;1;1.7376916896861275e-06;4284889;0.00010642049303960966;1;0;Young +10985;Croatia;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;241;1;9.18385300908677e-07;4284889;5.624416408453054e-05;0;1;Old +10986;Croatia;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +10987;Croatia;F;Elementary occupations;Administrative and support service activities   ;Y15-29;803;1;3.0600140938990362e-06;4284889;0.00018740275419036525;1;0;Young +10988;Croatia;F;Elementary occupations;Administrative and support service activities   ;Y30-49;5292;1;2.016636934609427e-05;4284889;0.0012350378271175752;1;0;Young +10989;Croatia;F;Elementary occupations;Administrative and support service activities   ;Y50-64;2171;1;8.273089162957418e-06;4284889;0.0005066642333091942;0;1;Old +10990;Croatia;F;Elementary occupations;Administrative and support service activities   ;Y65-84;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;0;1;Old +10991;Croatia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;181;1;6.897416575289234e-07;4284889;4.2241467631950325e-05;1;0;Young +10992;Croatia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;1698;1;6.4706151076470275e-06;4284889;0.0003962763096080202;1;0;Young +10993;Croatia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;1143;1;4.355661406384307e-06;4284889;0.0002667513674216532;0;1;Old +10994;Croatia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +10995;Croatia;F;Elementary occupations;Education   ;Y15-29;389;1;1.482372954578736e-06;4284889;9.078414866756174e-05;1;0;Young +10996;Croatia;F;Elementary occupations;Education   ;Y30-49;5811;1;2.214413686132914e-05;4284889;0.0013561611514323942;1;0;Young +10997;Croatia;F;Elementary occupations;Education   ;Y50-64;3675;1;1.400442315700991e-05;4284889;0.0008576651577205384;0;1;Old +10998;Croatia;F;Elementary occupations;Education   ;Y65-84;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +10999;Croatia;F;Elementary occupations;Human health and social work activities   ;Y15-29;348;1;1.326133131602571e-06;4284889;8.121563942496526e-05;1;0;Young +11000;Croatia;F;Elementary occupations;Human health and social work activities   ;Y30-49;4557;1;1.7365484714692287e-05;4284889;0.0010635047955734676;1;0;Young +11001;Croatia;F;Elementary occupations;Human health and social work activities   ;Y50-64;2675;1;1.0193695767347349e-05;4284889;0.000624286883510868;0;1;Old +11002;Croatia;F;Elementary occupations;Human health and social work activities   ;Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +11003;Croatia;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;84;1;3.201011007316551e-07;4284889;1.9603775033612305e-05;1;0;Young +11004;Croatia;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;698;1;2.6598877179844674e-06;4284889;0.00016289803539834989;1;0;Young +11005;Croatia;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;417;1;1.5890733214892878e-06;4284889;9.731874034543252e-05;0;1;Old +11006;Croatia;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +11007;Croatia;F;Elementary occupations;Other service activities   ;Y15-29;92;1;3.5058691984895557e-07;4284889;2.1470801227289667e-05;1;0;Young +11008;Croatia;F;Elementary occupations;Other service activities   ;Y30-49;522;1;1.9891996974038564e-06;4284889;0.0001218234591374479;1;0;Young +11009;Croatia;F;Elementary occupations;Other service activities   ;Y50-64;230;1;8.76467299622389e-07;4284889;5.367700306822417e-05;0;1;Old +11010;Croatia;F;Elementary occupations;Other service activities   ;Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11011;Croatia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;523;1;1.993010424793519e-06;4284889;0.00012205683741165757;1;0;Young +11012;Croatia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1125;1;4.287068313370381e-06;4284889;0.0002625505584858791;1;0;Young +11013;Croatia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;139;1;5.296911071630959e-07;4284889;3.2439580115144174e-05;0;1;Old +11014;Croatia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11015;Croatia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +11016;Croatia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11017;Croatia;F;Elementary occupations;Not stated   ;Y15-29;45;1;1.7148273253481523e-07;4284889;1.0502022339435164e-05;1;0;Young +11018;Croatia;F;Elementary occupations;Not stated   ;Y30-49;130;1;4.953945606561329e-07;4284889;3.033917564725714e-05;1;0;Young +11019;Croatia;F;Elementary occupations;Not stated   ;Y50-64;83;1;3.1629037334199253e-07;4284889;1.9370396759402634e-05;0;1;Old +11020;Croatia;F;Elementary occupations;Not stated   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11021;Croatia;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +11022;Croatia;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;33;1;1.257540038588645e-07;4284889;7.70148304891912e-06;1;0;Young +11023;Croatia;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;21;1;8.002527518291377e-08;4284889;4.900943758403076e-06;0;1;Old +11024;Croatia;F;Not stated;Agriculture, forestry and fishing   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11025;Croatia;F;Not stated;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11026;Croatia;F;Not stated;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +11027;Croatia;F;Not stated;Mining and quarrying   ;Y50-64;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11028;Croatia;F;Not stated;Manufacturing   ;Y15-29;66;1;2.51508007717729e-07;4284889;1.540296609783824e-05;1;0;Young +11029;Croatia;F;Not stated;Manufacturing   ;Y30-49;173;1;6.592558384116229e-07;4284889;4.037444143827296e-05;1;0;Young +11030;Croatia;F;Not stated;Manufacturing   ;Y50-64;78;1;2.9723673639367974e-07;4284889;1.8203505388354282e-05;0;1;Old +11031;Croatia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +11032;Croatia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +11033;Croatia;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11034;Croatia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +11035;Croatia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;1;0;Young +11036;Croatia;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11037;Croatia;F;Not stated;Construction   ;Y15-29;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;1;0;Young +11038;Croatia;F;Not stated;Construction   ;Y30-49;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;1;0;Young +11039;Croatia;F;Not stated;Construction   ;Y50-64;18;1;6.859309301392609e-08;4284889;4.200808935774066e-06;0;1;Old +11040;Croatia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;88;1;3.353440102903053e-07;4284889;2.0537288130450986e-05;1;0;Young +11041;Croatia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;191;1;7.27848931425549e-07;4284889;4.457525037404703e-05;1;0;Young +11042;Croatia;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;64;1;2.4388655293840386e-07;4284889;1.49362095494189e-05;0;1;Old +11043;Croatia;F;Not stated;Transportation and storage   ;Y15-29;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;1;0;Young +11044;Croatia;F;Not stated;Transportation and storage   ;Y30-49;27;1;1.0288963952088914e-07;4284889;6.3012134036610986e-06;1;0;Young +11045;Croatia;F;Not stated;Transportation and storage   ;Y50-64;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +11046;Croatia;F;Not stated;Accommodation and food service activities   ;Y15-29;32;1;1.2194327646920193e-07;4284889;7.46810477470945e-06;1;0;Young +11047;Croatia;F;Not stated;Accommodation and food service activities   ;Y30-49;66;1;2.51508007717729e-07;4284889;1.540296609783824e-05;1;0;Young +11048;Croatia;F;Not stated;Accommodation and food service activities   ;Y50-64;24;1;9.145745735190145e-08;4284889;5.601078581032087e-06;0;1;Old +11049;Croatia;F;Not stated;Information and communication   ;Y15-29;28;1;1.067003669105517e-07;4284889;6.534591677870769e-06;1;0;Young +11050;Croatia;F;Not stated;Information and communication   ;Y30-49;50;1;1.9053636948312803e-07;4284889;1.1668913710483516e-05;1;0;Young +11051;Croatia;F;Not stated;Information and communication   ;Y50-64;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11052;Croatia;F;Not stated;Financial and insurance activities   ;Y15-29;22;1;8.383600257257633e-08;4284889;5.134322032612747e-06;1;0;Young +11053;Croatia;F;Not stated;Financial and insurance activities   ;Y30-49;56;1;2.134007338211034e-07;4284889;1.3069183355741538e-05;1;0;Young +11054;Croatia;F;Not stated;Financial and insurance activities   ;Y50-64;31;1;1.1813254907953938e-07;4284889;7.2347265004997795e-06;0;1;Old +11055;Croatia;F;Not stated;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;1;0;Young +11056;Croatia;F;Not stated;Real estate activities   ;Y30-49;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +11057;Croatia;F;Not stated;Real estate activities   ;Y50-64;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11058;Croatia;F;Not stated;Professional, scientific and technical activities   ;Y15-29;47;1;1.7910418731414036e-07;4284889;1.0968778887854505e-05;1;0;Young +11059;Croatia;F;Not stated;Professional, scientific and technical activities   ;Y30-49;77;1;2.9342600900401714e-07;4284889;1.7970127114144615e-05;1;0;Young +11060;Croatia;F;Not stated;Professional, scientific and technical activities   ;Y50-64;25;1;9.526818474156401e-08;4284889;5.834456855241758e-06;0;1;Old +11061;Croatia;F;Not stated;Administrative and support service activities   ;Y15-29;18;1;6.859309301392609e-08;4284889;4.200808935774066e-06;1;0;Young +11062;Croatia;F;Not stated;Administrative and support service activities   ;Y30-49;36;1;1.3718618602785217e-07;4284889;8.401617871548131e-06;1;0;Young +11063;Croatia;F;Not stated;Administrative and support service activities   ;Y50-64;23;1;8.764672996223889e-08;4284889;5.367700306822417e-06;0;1;Old +11064;Croatia;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;35;1;1.3337545863818962e-07;4284889;8.16823959733846e-06;1;0;Young +11065;Croatia;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;166;1;6.325807466839851e-07;4284889;3.874079351880527e-05;1;0;Young +11066;Croatia;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;91;1;3.46776192459293e-07;4284889;2.123742295308e-05;0;1;Old +11067;Croatia;F;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11068;Croatia;F;Not stated;Education   ;Y15-29;203;1;7.735776601014998e-07;4284889;4.7375789664563075e-05;1;0;Young +11069;Croatia;F;Not stated;Education   ;Y30-49;299;1;1.1394074895091056e-06;4284889;6.978010398869142e-05;1;0;Young +11070;Croatia;F;Not stated;Education   ;Y50-64;119;1;4.5347655936984473e-07;4284889;2.7772014630950766e-05;0;1;Old +11071;Croatia;F;Not stated;Education   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11072;Croatia;F;Not stated;Human health and social work activities   ;Y15-29;87;1;3.3153328290064277e-07;4284889;2.0303909856241315e-05;1;0;Young +11073;Croatia;F;Not stated;Human health and social work activities   ;Y30-49;170;1;6.478236562426352e-07;4284889;3.967430661564395e-05;1;0;Young +11074;Croatia;F;Not stated;Human health and social work activities   ;Y50-64;109;1;4.153692854732191e-07;4284889;2.5438231888854065e-05;0;1;Old +11075;Croatia;F;Not stated;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11076;Croatia;F;Not stated;Arts, entertainment and recreation   ;Y15-29;44;1;1.6767200514515266e-07;4284889;1.0268644065225493e-05;1;0;Young +11077;Croatia;F;Not stated;Arts, entertainment and recreation   ;Y30-49;39;1;1.4861836819683987e-07;4284889;9.101752694177141e-06;1;0;Young +11078;Croatia;F;Not stated;Arts, entertainment and recreation   ;Y50-64;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +11079;Croatia;F;Not stated;Other service activities   ;Y15-29;33;1;1.257540038588645e-07;4284889;7.70148304891912e-06;1;0;Young +11080;Croatia;F;Not stated;Other service activities   ;Y30-49;59;1;2.2483291599009106e-07;4284889;1.3769318178370547e-05;1;0;Young +11081;Croatia;F;Not stated;Other service activities   ;Y50-64;15;1;5.716091084493841e-08;4284889;3.5006741131450546e-06;0;1;Old +11082;Croatia;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +11083;Croatia;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +11084;Croatia;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11085;Croatia;F;Not stated;Not stated   ;Y15-29;964;1;3.673541203634708e-06;4284889;0.00022497665633812217;1;0;Young +11086;Croatia;F;Not stated;Not stated   ;Y30-49;1491;1;5.681794537986878e-06;4284889;0.00034796700684661846;1;0;Young +11087;Croatia;F;Not stated;Not stated   ;Y50-64;632;1;2.4083797102667383e-06;4284889;0.00014749506930051163;0;1;Old +11088;Croatia;F;Not stated;Not stated   ;Y65-84;88;1;3.353440102903053e-07;4284889;2.0537288130450986e-05;0;1;Old +11089;Croatia;M;Not applicable;Not applicable  ;Y15-29;202579;1;0.0007719733438704519;4284889;0.0472775374111208;1;0;Young +11090;Croatia;M;Not applicable;Not applicable  ;Y30-49;102309;1;0.0003898717085089869;4284889;0.02387669785611716;1;0;Young +11091;Croatia;M;Not applicable;Not applicable  ;Y50-64;196436;1;0.0007485640455157548;4284889;0.0458438946726508;0;1;Old +11092;Croatia;M;Not applicable;Not applicable  ;Y65-84;272563;1;0.0010386632895085966;4284889;0.06361028255341036;0;1;Old +11093;Croatia;M;Not applicable;Not applicable  ;Y_GE85;15412;1;5.8730930529479386e-05;4284889;0.003596825962119439;0;1;Old +11094;Croatia;M;Not applicable;Not applicable  ;Y_LT15;334725;1;0.0012755457255048007;4284889;0.0781175428348319;0;1;Old +11095;Croatia;M;Armed forces occupations;Administrative and support service activities   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11096;Croatia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2757;1;1.050617541329968e-05;4284889;0.000643423901996061;1;0;Young +11097;Croatia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;9261;1;3.529114635566497e-05;4284889;0.0021613161974557565;1;0;Young +11098;Croatia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;595;1;2.2673827968492233e-06;4284889;0.00013886007315475383;0;1;Old +11099;Croatia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11100;Croatia;M;Armed forces occupations;Education   ;Y30-49;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +11101;Croatia;M;Armed forces occupations;Not stated   ;Y30-49;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +11102;Croatia;M;Managers;Agriculture, forestry and fishing   ;Y15-29;65;1;2.4769728032806646e-07;4284889;1.516958782362857e-05;1;0;Young +11103;Croatia;M;Managers;Agriculture, forestry and fishing   ;Y30-49;646;1;2.4617298937220143e-06;4284889;0.00015076236513944703;1;0;Young +11104;Croatia;M;Managers;Agriculture, forestry and fishing   ;Y50-64;442;1;1.6843415062308518e-06;4284889;0.00010315319720067428;0;1;Old +11105;Croatia;M;Managers;Agriculture, forestry and fishing   ;Y65-84;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;0;1;Old +11106;Croatia;M;Managers;Mining and quarrying   ;Y15-29;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +11107;Croatia;M;Managers;Mining and quarrying   ;Y30-49;81;1;3.086689185626674e-07;4284889;1.8903640210983296e-05;1;0;Young +11108;Croatia;M;Managers;Mining and quarrying   ;Y50-64;92;1;3.5058691984895557e-07;4284889;2.1470801227289667e-05;0;1;Old +11109;Croatia;M;Managers;Mining and quarrying   ;Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +11110;Croatia;M;Managers;Manufacturing   ;Y15-29;507;1;1.9320387865589183e-06;4284889;0.00011832278502430284;1;0;Young +11111;Croatia;M;Managers;Manufacturing   ;Y30-49;4591;1;1.7495049445940815e-05;4284889;0.0010714396568965963;1;0;Young +11112;Croatia;M;Managers;Manufacturing   ;Y50-64;3520;1;1.3413760411612212e-05;4284889;0.0008214915252180395;0;1;Old +11113;Croatia;M;Managers;Manufacturing   ;Y65-84;117;1;4.458551045905196e-07;4284889;2.7305258082531427e-05;0;1;Old +11114;Croatia;M;Managers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11115;Croatia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +11116;Croatia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;116;1;4.4204437720085703e-07;4284889;2.7071879808321756e-05;1;0;Young +11117;Croatia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;106;1;4.039371033042314e-07;4284889;2.4738097066225052e-05;0;1;Old +11118;Croatia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11119;Croatia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;18;1;6.859309301392609e-08;4284889;4.200808935774066e-06;1;0;Young +11120;Croatia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;278;1;1.0593822143261918e-06;4284889;6.487916023028835e-05;1;0;Young +11121;Croatia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;236;1;8.993316639603643e-07;4284889;5.507727271348219e-05;0;1;Old +11122;Croatia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11123;Croatia;M;Managers;Construction   ;Y15-29;410;1;1.5623982297616498e-06;4284889;9.568509242596482e-05;1;0;Young +11124;Croatia;M;Managers;Construction   ;Y30-49;3797;1;1.4469331898548743e-05;4284889;0.0008861373071741181;1;0;Young +11125;Croatia;M;Managers;Construction   ;Y50-64;2516;1;9.587790112391002e-06;4284889;0.0005871797379115304;0;1;Old +11126;Croatia;M;Managers;Construction   ;Y65-84;80;1;3.0485819117300483e-07;4284889;1.8670261936773625e-05;0;1;Old +11127;Croatia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;649;1;2.4731620758910016e-06;4284889;0.00015146249996207602;1;0;Young +11128;Croatia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;6661;1;2.5383255142542314e-05;4284889;0.001554532684510614;1;0;Young +11129;Croatia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3982;1;1.5174316465636315e-05;4284889;0.0009293122879029072;0;1;Old +11130;Croatia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;101;1;3.848834663559186e-07;4284889;2.35712056951767e-05;0;1;Old +11131;Croatia;M;Managers;Transportation and storage   ;Y15-29;98;1;3.7345128418693096e-07;4284889;2.287107087254769e-05;1;0;Young +11132;Croatia;M;Managers;Transportation and storage   ;Y30-49;1110;1;4.229907402525442e-06;4284889;0.000259049884372734;1;0;Young +11133;Croatia;M;Managers;Transportation and storage   ;Y50-64;908;1;3.460140469813605e-06;4284889;0.00021190747298238064;0;1;Old +11134;Croatia;M;Managers;Transportation and storage   ;Y65-84;28;1;1.067003669105517e-07;4284889;6.534591677870769e-06;0;1;Old +11135;Croatia;M;Managers;Accommodation and food service activities   ;Y15-29;400;1;1.5242909558650242e-06;4284889;9.335130968386813e-05;1;0;Young +11136;Croatia;M;Managers;Accommodation and food service activities   ;Y30-49;2240;1;8.536029352844136e-06;4284889;0.0005227673342296615;1;0;Young +11137;Croatia;M;Managers;Accommodation and food service activities   ;Y50-64;1427;1;5.437907985048474e-06;4284889;0.0003330307972971995;0;1;Old +11138;Croatia;M;Managers;Accommodation and food service activities   ;Y65-84;44;1;1.6767200514515266e-07;4284889;1.0268644065225493e-05;0;1;Old +11139;Croatia;M;Managers;Information and communication   ;Y15-29;146;1;5.563661988907339e-07;4284889;3.407322803461187e-05;1;0;Young +11140;Croatia;M;Managers;Information and communication   ;Y30-49;1373;1;5.232128706006696e-06;4284889;0.0003204283704898773;1;0;Young +11141;Croatia;M;Managers;Information and communication   ;Y50-64;510;1;1.943470968727906e-06;4284889;0.00011902291984693186;0;1;Old +11142;Croatia;M;Managers;Information and communication   ;Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +11143;Croatia;M;Managers;Financial and insurance activities   ;Y15-29;51;1;1.943470968727906e-07;4284889;1.1902291984693186e-05;1;0;Young +11144;Croatia;M;Managers;Financial and insurance activities   ;Y30-49;1015;1;3.867888300507499e-06;4284889;0.00023687894832281537;1;0;Young +11145;Croatia;M;Managers;Financial and insurance activities   ;Y50-64;427;1;1.6271805953859134e-06;4284889;9.965252308752922e-05;0;1;Old +11146;Croatia;M;Managers;Financial and insurance activities   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11147;Croatia;M;Managers;Real estate activities   ;Y15-29;30;1;1.1432182168987682e-07;4284889;7.001348226290109e-06;1;0;Young +11148;Croatia;M;Managers;Real estate activities   ;Y30-49;305;1;1.162271853847081e-06;4284889;7.118037363394944e-05;1;0;Young +11149;Croatia;M;Managers;Real estate activities   ;Y50-64;203;1;7.735776601014998e-07;4284889;4.7375789664563075e-05;0;1;Old +11150;Croatia;M;Managers;Real estate activities   ;Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +11151;Croatia;M;Managers;Professional, scientific and technical activities   ;Y15-29;166;1;6.325807466839851e-07;4284889;3.874079351880527e-05;1;0;Young +11152;Croatia;M;Managers;Professional, scientific and technical activities   ;Y30-49;1887;1;7.190842584293251e-06;4284889;0.0004403848034336479;1;0;Young +11153;Croatia;M;Managers;Professional, scientific and technical activities   ;Y50-64;1402;1;5.3426398003069095e-06;4284889;0.00032719634044195775;0;1;Old +11154;Croatia;M;Managers;Professional, scientific and technical activities   ;Y65-84;107;1;4.07747830693894e-07;4284889;2.4971475340434723e-05;0;1;Old +11155;Croatia;M;Managers;Administrative and support service activities   ;Y15-29;95;1;3.6201910201794326e-07;4284889;2.217093604991868e-05;1;0;Young +11156;Croatia;M;Managers;Administrative and support service activities   ;Y30-49;807;1;3.075257003457686e-06;4284889;0.00018833626728720395;1;0;Young +11157;Croatia;M;Managers;Administrative and support service activities   ;Y50-64;440;1;1.6767200514515266e-06;4284889;0.00010268644065225493;0;1;Old +11158;Croatia;M;Managers;Administrative and support service activities   ;Y65-84;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;0;1;Old +11159;Croatia;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;53;1;2.019685516521157e-07;4284889;1.2369048533112526e-05;1;0;Young +11160;Croatia;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;769;1;2.930449362650509e-06;4284889;0.00017946789286723647;1;0;Young +11161;Croatia;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;718;1;2.7361022657777186e-06;4284889;0.0001675656008825433;0;1;Old +11162;Croatia;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;73;1;2.7818309944536694e-07;4284889;1.7036614017305934e-05;0;1;Old +11163;Croatia;M;Managers;Education   ;Y15-29;20;1;7.621454779325121e-08;4284889;4.667565484193406e-06;1;0;Young +11164;Croatia;M;Managers;Education   ;Y30-49;435;1;1.6576664145032138e-06;4284889;0.00010151954928120658;1;0;Young +11165;Croatia;M;Managers;Education   ;Y50-64;635;1;2.419811892435726e-06;4284889;0.00014819520412314064;0;1;Old +11166;Croatia;M;Managers;Education   ;Y65-84;39;1;1.4861836819683987e-07;4284889;9.101752694177141e-06;0;1;Old +11167;Croatia;M;Managers;Human health and social work activities   ;Y15-29;34;1;1.2956473124852705e-07;4284889;7.934861323128791e-06;1;0;Young +11168;Croatia;M;Managers;Human health and social work activities   ;Y30-49;237;1;9.031423913500269e-07;4284889;5.5310650987691864e-05;1;0;Young +11169;Croatia;M;Managers;Human health and social work activities   ;Y50-64;282;1;1.074625123884842e-06;4284889;6.581267332712703e-05;0;1;Old +11170;Croatia;M;Managers;Human health and social work activities   ;Y65-84;26;1;9.907891213122657e-08;4284889;6.067835129451428e-06;0;1;Old +11171;Croatia;M;Managers;Arts, entertainment and recreation   ;Y15-29;40;1;1.5242909558650242e-07;4284889;9.335130968386812e-06;1;0;Young +11172;Croatia;M;Managers;Arts, entertainment and recreation   ;Y30-49;500;1;1.9053636948312803e-06;4284889;0.00011668913710483516;1;0;Young +11173;Croatia;M;Managers;Arts, entertainment and recreation   ;Y50-64;358;1;1.3642404054991967e-06;4284889;8.354942216706197e-05;0;1;Old +11174;Croatia;M;Managers;Arts, entertainment and recreation   ;Y65-84;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;0;1;Old +11175;Croatia;M;Managers;Other service activities   ;Y15-29;60;1;2.2864364337975364e-07;4284889;1.4002696452580218e-05;1;0;Young +11176;Croatia;M;Managers;Other service activities   ;Y30-49;482;1;1.836770601817354e-06;4284889;0.00011248832816906108;1;0;Young +11177;Croatia;M;Managers;Other service activities   ;Y50-64;386;1;1.4709407724097484e-06;4284889;9.008401384493274e-05;0;1;Old +11178;Croatia;M;Managers;Other service activities   ;Y65-84;25;1;9.526818474156401e-08;4284889;5.834456855241758e-06;0;1;Old +11179;Croatia;M;Managers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11180;Croatia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11181;Croatia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +11182;Croatia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11183;Croatia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11184;Croatia;M;Managers;Not stated   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +11185;Croatia;M;Managers;Not stated   ;Y30-49;28;1;1.067003669105517e-07;4284889;6.534591677870769e-06;1;0;Young +11186;Croatia;M;Managers;Not stated   ;Y50-64;16;1;6.097163823460096e-08;4284889;3.734052387354725e-06;0;1;Old +11187;Croatia;M;Managers;Not stated   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11188;Croatia;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;208;1;7.926312970498126e-07;4284889;4.854268103561143e-05;1;0;Young +11189;Croatia;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;990;1;3.772620115765935e-06;4284889;0.0002310444914675736;1;0;Young +11190;Croatia;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;459;1;1.7491238718551153e-06;4284889;0.00010712062786223867;0;1;Old +11191;Croatia;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11192;Croatia;M;Professionals;Mining and quarrying   ;Y15-29;82;1;3.1247964595233e-07;4284889;1.9137018485192967e-05;1;0;Young +11193;Croatia;M;Professionals;Mining and quarrying   ;Y30-49;328;1;1.24991858380932e-06;4284889;7.654807394077187e-05;1;0;Young +11194;Croatia;M;Professionals;Mining and quarrying   ;Y50-64;251;1;9.564925748053026e-07;4284889;5.8577946826627245e-05;0;1;Old +11195;Croatia;M;Professionals;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11196;Croatia;M;Professionals;Manufacturing   ;Y15-29;1540;1;5.868520180080343e-06;4284889;0.0003594025422828923;1;0;Young +11197;Croatia;M;Professionals;Manufacturing   ;Y30-49;4399;1;1.6763389787125603e-05;4284889;0.0010266310282483397;1;0;Young +11198;Croatia;M;Professionals;Manufacturing   ;Y50-64;2708;1;1.0319449771206214e-05;4284889;0.0006319883665597872;0;1;Old +11199;Croatia;M;Professionals;Manufacturing   ;Y65-84;40;1;1.5242909558650242e-07;4284889;9.335130968386812e-06;0;1;Old +11200;Croatia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;223;1;8.49792207894751e-07;4284889;5.2043355148756476e-05;1;0;Young +11201;Croatia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;683;1;2.602726807139529e-06;4284889;0.00015939736128520483;1;0;Young +11202;Croatia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;648;1;2.469351348501339e-06;4284889;0.00015122912168786637;0;1;Old +11203;Croatia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11204;Croatia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;70;1;2.6675091727637925e-07;4284889;1.633647919467692e-05;1;0;Young +11205;Croatia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;308;1;1.1737040360160685e-06;4284889;7.188050845657846e-05;1;0;Young +11206;Croatia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;259;1;9.869783939226032e-07;4284889;6.044497302030461e-05;0;1;Old +11207;Croatia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +11208;Croatia;M;Professionals;Construction   ;Y15-29;641;1;2.4426762567737013e-06;4284889;0.00014959547376839868;1;0;Young +11209;Croatia;M;Professionals;Construction   ;Y30-49;1934;1;7.369946771607392e-06;4284889;0.00045135358232150237;1;0;Young +11210;Croatia;M;Professionals;Construction   ;Y50-64;1063;1;4.050803215211302e-06;4284889;0.00024808110548487955;0;1;Old +11211;Croatia;M;Professionals;Construction   ;Y65-84;51;1;1.943470968727906e-07;4284889;1.1902291984693186e-05;0;1;Old +11212;Croatia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;767;1;2.922827907871184e-06;4284889;0.00017900113631881713;1;0;Young +11213;Croatia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2152;1;8.20068534255383e-06;4284889;0.0005022300460992105;1;0;Young +11214;Croatia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;828;1;3.1552822786406e-06;4284889;0.000193237211045607;0;1;Old +11215;Croatia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;23;1;8.764672996223889e-08;4284889;5.367700306822417e-06;0;1;Old +11216;Croatia;M;Professionals;Transportation and storage   ;Y15-29;199;1;7.583347505428495e-07;4284889;4.644227656772439e-05;1;0;Young +11217;Croatia;M;Professionals;Transportation and storage   ;Y30-49;1083;1;4.1270177630045534e-06;4284889;0.00025274867096907296;1;0;Young +11218;Croatia;M;Professionals;Transportation and storage   ;Y50-64;708;1;2.697994991881093e-06;4284889;0.0001652318181404466;0;1;Old +11219;Croatia;M;Professionals;Transportation and storage   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11220;Croatia;M;Professionals;Accommodation and food service activities   ;Y15-29;144;1;5.487447441114087e-07;4284889;3.3606471486192526e-05;1;0;Young +11221;Croatia;M;Professionals;Accommodation and food service activities   ;Y30-49;286;1;1.0898680334434924e-06;4284889;6.67461864239657e-05;1;0;Young +11222;Croatia;M;Professionals;Accommodation and food service activities   ;Y50-64;213;1;8.116849339981254e-07;4284889;4.970957240665978e-05;0;1;Old +11223;Croatia;M;Professionals;Accommodation and food service activities   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11224;Croatia;M;Professionals;Information and communication   ;Y15-29;2098;1;7.994906063512052e-06;4284889;0.0004896276192918884;1;0;Young +11225;Croatia;M;Professionals;Information and communication   ;Y30-49;6283;1;2.3942800189249868e-05;4284889;0.0014663156968593586;1;0;Young +11226;Croatia;M;Professionals;Information and communication   ;Y50-64;1508;1;5.746576903611141e-06;4284889;0.0003519344375081828;0;1;Old +11227;Croatia;M;Professionals;Information and communication   ;Y65-84;55;1;2.0959000643144082e-07;4284889;1.2835805081531866e-05;0;1;Old +11228;Croatia;M;Professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11229;Croatia;M;Professionals;Financial and insurance activities   ;Y15-29;812;1;3.0943106404059992e-06;4284889;0.0001895031586582523;1;0;Young +11230;Croatia;M;Professionals;Financial and insurance activities   ;Y30-49;2334;1;8.894237727472417e-06;4284889;0.0005447048920053705;1;0;Young +11231;Croatia;M;Professionals;Financial and insurance activities   ;Y50-64;543;1;2.06922497258677e-06;4284889;0.00012672440289585097;0;1;Old +11232;Croatia;M;Professionals;Financial and insurance activities   ;Y65-84;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +11233;Croatia;M;Professionals;Real estate activities   ;Y15-29;36;1;1.3718618602785217e-07;4284889;8.401617871548131e-06;1;0;Young +11234;Croatia;M;Professionals;Real estate activities   ;Y30-49;125;1;4.7634092370782007e-07;4284889;2.917228427620879e-05;1;0;Young +11235;Croatia;M;Professionals;Real estate activities   ;Y50-64;77;1;2.9342600900401714e-07;4284889;1.7970127114144615e-05;0;1;Old +11236;Croatia;M;Professionals;Real estate activities   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11237;Croatia;M;Professionals;Professional, scientific and technical activities   ;Y15-29;2254;1;8.58937953629941e-06;4284889;0.0005260346300685969;1;0;Young +11238;Croatia;M;Professionals;Professional, scientific and technical activities   ;Y30-49;7605;1;2.8980581798383772e-05;4284889;0.0017748417753645426;1;0;Young +11239;Croatia;M;Professionals;Professional, scientific and technical activities   ;Y50-64;3874;1;1.476275790755276e-05;4284889;0.0009041074342882628;0;1;Old +11240;Croatia;M;Professionals;Professional, scientific and technical activities   ;Y65-84;478;1;1.821527692258704e-06;4284889;0.00011155481507222241;0;1;Old +11241;Croatia;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11242;Croatia;M;Professionals;Administrative and support service activities   ;Y15-29;157;1;5.98284200177022e-07;4284889;3.664038905091824e-05;1;0;Young +11243;Croatia;M;Professionals;Administrative and support service activities   ;Y30-49;332;1;1.2651614933679701e-06;4284889;7.748158703761054e-05;1;0;Young +11244;Croatia;M;Professionals;Administrative and support service activities   ;Y50-64;154;1;5.868520180080343e-07;4284889;3.594025422828923e-05;0;1;Old +11245;Croatia;M;Professionals;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11246;Croatia;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;674;1;2.568430260632566e-06;4284889;0.00015729695681731778;1;0;Young +11247;Croatia;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;5500;1;2.0959000643144084e-05;4284889;0.0012835805081531867;1;0;Young +11248;Croatia;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;3616;1;1.3779590241019819e-05;4284889;0.0008438958395421679;0;1;Old +11249;Croatia;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;163;1;6.211485645149974e-07;4284889;3.804065869617626e-05;0;1;Old +11250;Croatia;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11251;Croatia;M;Professionals;Education   ;Y15-29;2647;1;1.0086995400436798e-05;4284889;0.0006177522918329973;1;0;Young +11252;Croatia;M;Professionals;Education   ;Y30-49;8116;1;3.092786349450134e-05;4284889;0.0018940980734856842;1;0;Young +11253;Croatia;M;Professionals;Education   ;Y50-64;6241;1;2.378274963888404e-05;4284889;0.0014565138093425524;0;1;Old +11254;Croatia;M;Professionals;Education   ;Y65-84;511;1;1.9472816961175682e-06;4284889;0.00011925629812114153;0;1;Old +11255;Croatia;M;Professionals;Human health and social work activities   ;Y15-29;1122;1;4.275636131201393e-06;4284889;0.0002618504236632501;1;0;Young +11256;Croatia;M;Professionals;Human health and social work activities   ;Y30-49;4126;1;1.5723061209747725e-05;4284889;0.0009629187593890997;1;0;Young +11257;Croatia;M;Professionals;Human health and social work activities   ;Y50-64;3119;1;1.1885658728357526e-05;4284889;0.0007279068372599617;0;1;Old +11258;Croatia;M;Professionals;Human health and social work activities   ;Y65-84;290;1;1.1051109430021426e-06;4284889;6.767969952080439e-05;0;1;Old +11259;Croatia;M;Professionals;Arts, entertainment and recreation   ;Y15-29;389;1;1.482372954578736e-06;4284889;9.078414866756174e-05;1;0;Young +11260;Croatia;M;Professionals;Arts, entertainment and recreation   ;Y30-49;1890;1;7.202274766462239e-06;4284889;0.0004410849382562769;1;0;Young +11261;Croatia;M;Professionals;Arts, entertainment and recreation   ;Y50-64;1094;1;4.168935764290841e-06;4284889;0.00025531583198537934;0;1;Old +11262;Croatia;M;Professionals;Arts, entertainment and recreation   ;Y65-84;81;1;3.086689185626674e-07;4284889;1.8903640210983296e-05;0;1;Old +11263;Croatia;M;Professionals;Other service activities   ;Y15-29;261;1;9.945998487019282e-07;4284889;6.091172956872395e-05;1;0;Young +11264;Croatia;M;Professionals;Other service activities   ;Y30-49;1130;1;4.306121950318693e-06;4284889;0.00026371744985692743;1;0;Young +11265;Croatia;M;Professionals;Other service activities   ;Y50-64;831;1;3.1667144608095878e-06;4284889;0.00019393734586823603;0;1;Old +11266;Croatia;M;Professionals;Other service activities   ;Y65-84;352;1;1.3413760411612213e-06;4284889;8.214915252180395e-05;0;1;Old +11267;Croatia;M;Professionals;Other service activities   ;Y_GE85;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +11268;Croatia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +11269;Croatia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;58;1;2.2102218860042852e-07;4284889;1.3535939904160878e-05;1;0;Young +11270;Croatia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;16;1;6.097163823460096e-08;4284889;3.734052387354725e-06;0;1;Old +11271;Croatia;M;Professionals;Not stated   ;Y15-29;26;1;9.907891213122657e-08;4284889;6.067835129451428e-06;1;0;Young +11272;Croatia;M;Professionals;Not stated   ;Y30-49;53;1;2.019685516521157e-07;4284889;1.2369048533112526e-05;1;0;Young +11273;Croatia;M;Professionals;Not stated   ;Y50-64;38;1;1.448076408071773e-07;4284889;8.868374419967472e-06;0;1;Old +11274;Croatia;M;Professionals;Not stated   ;Y65-84;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +11275;Croatia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;656;1;2.49983716761864e-06;4284889;0.00015309614788154373;1;0;Young +11276;Croatia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2005;1;7.640508416273433e-06;4284889;0.000467923439790389;1;0;Young +11277;Croatia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;929;1;3.540165744996519e-06;4284889;0.00021680841674078373;0;1;Old +11278;Croatia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11279;Croatia;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;146;1;5.563661988907339e-07;4284889;3.407322803461187e-05;1;0;Young +11280;Croatia;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;888;1;3.383925922020354e-06;4284889;0.00020723990749818723;1;0;Young +11281;Croatia;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;760;1;2.896152816143546e-06;4284889;0.00017736748839934944;0;1;Old +11282;Croatia;M;Technicians and associate professionals;Manufacturing   ;Y15-29;4245;1;1.617653776911757e-05;4284889;0.0009906907740200505;1;0;Young +11283;Croatia;M;Technicians and associate professionals;Manufacturing   ;Y30-49;13989;1;5.330826545398956e-05;4284889;0.003264728677919078;1;0;Young +11284;Croatia;M;Technicians and associate professionals;Manufacturing   ;Y50-64;9876;1;3.7634743700307445e-05;4284889;0.002304843836094704;0;1;Old +11285;Croatia;M;Technicians and associate professionals;Manufacturing   ;Y65-84;55;1;2.0959000643144082e-07;4284889;1.2835805081531866e-05;0;1;Old +11286;Croatia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;182;1;6.93552384918586e-07;4284889;4.247484590616e-05;1;0;Young +11287;Croatia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1827;1;6.962198940913498e-06;4284889;0.00042638210698106767;1;0;Young +11288;Croatia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1977;1;7.533808049362882e-06;4284889;0.0004613888481125182;0;1;Old +11289;Croatia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11290;Croatia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;233;1;8.878994817913766e-07;4284889;5.437713789085318e-05;1;0;Young +11291;Croatia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1102;1;4.199421583408142e-06;4284889;0.0002571828581790567;1;0;Young +11292;Croatia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1112;1;4.237528857304767e-06;4284889;0.0002595166409211534;0;1;Old +11293;Croatia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11294;Croatia;M;Technicians and associate professionals;Construction   ;Y15-29;2415;1;9.202906646035084e-06;4284889;0.0005636085322163538;1;0;Young +11295;Croatia;M;Technicians and associate professionals;Construction   ;Y30-49;6938;1;2.6438826629478846e-05;4284889;0.0016191784664666925;1;0;Young +11296;Croatia;M;Technicians and associate professionals;Construction   ;Y50-64;4551;1;1.734262035035431e-05;4284889;0.0010621045259282095;0;1;Old +11297;Croatia;M;Technicians and associate professionals;Construction   ;Y65-84;47;1;1.7910418731414036e-07;4284889;1.0968778887854505e-05;0;1;Old +11298;Croatia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3874;1;1.476275790755276e-05;4284889;0.0009041074342882628;1;0;Young +11299;Croatia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;12132;1;4.6231744691386185e-05;4284889;0.00283134522271172;1;0;Young +11300;Croatia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3334;1;1.2704965117134977e-05;4284889;0.0007780831662150408;0;1;Old +11301;Croatia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;45;1;1.7148273253481523e-07;4284889;1.0502022339435164e-05;0;1;Old +11302;Croatia;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;2403;1;9.157177917359133e-06;4284889;0.0005608079929258378;1;0;Young +11303;Croatia;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;9195;1;3.503963834794724e-05;4284889;0.0021459132313579187;1;0;Young +11304;Croatia;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;5121;1;1.9514734962461974e-05;4284889;0.0011951301422277215;0;1;Old +11305;Croatia;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;38;1;1.448076408071773e-07;4284889;8.868374419967472e-06;0;1;Old +11306;Croatia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;396;1;1.509048046306374e-06;4284889;9.241779658702945e-05;1;0;Young +11307;Croatia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;973;1;3.7078377501416716e-06;4284889;0.00022707706080600922;1;0;Young +11308;Croatia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;593;1;2.2597613420698985e-06;4284889;0.0001383933166063345;0;1;Old +11309;Croatia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11310;Croatia;M;Technicians and associate professionals;Information and communication   ;Y15-29;2850;1;1.0860573060538297e-05;4284889;0.0006651280814975604;1;0;Young +11311;Croatia;M;Technicians and associate professionals;Information and communication   ;Y30-49;7061;1;2.690754609840734e-05;4284889;0.0016478839941944821;1;0;Young +11312;Croatia;M;Technicians and associate professionals;Information and communication   ;Y50-64;1733;1;6.603990566285218e-06;4284889;0.00040444454920535866;0;1;Old +11313;Croatia;M;Technicians and associate professionals;Information and communication   ;Y65-84;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +11314;Croatia;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;1373;1;5.232128706006696e-06;4284889;0.0003204283704898773;1;0;Young +11315;Croatia;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;3358;1;1.2796422574486878e-05;4284889;0.0007836842447960729;1;0;Young +11316;Croatia;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;1276;1;4.862488149209427e-06;4284889;0.0002977906778915393;0;1;Old +11317;Croatia;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;0;1;Old +11318;Croatia;M;Technicians and associate professionals;Real estate activities   ;Y15-29;146;1;5.563661988907339e-07;4284889;3.407322803461187e-05;1;0;Young +11319;Croatia;M;Technicians and associate professionals;Real estate activities   ;Y30-49;635;1;2.419811892435726e-06;4284889;0.00014819520412314064;1;0;Young +11320;Croatia;M;Technicians and associate professionals;Real estate activities   ;Y50-64;324;1;1.2346756742506695e-06;4284889;7.561456084393318e-05;0;1;Old +11321;Croatia;M;Technicians and associate professionals;Real estate activities   ;Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +11322;Croatia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2195;1;8.36454662030932e-06;4284889;0.0005122653118902263;1;0;Young +11323;Croatia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;4617;1;1.7594128358072043e-05;4284889;0.0010775074920260478;1;0;Young +11324;Croatia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2301;1;8.768483723613551e-06;4284889;0.0005370034089564514;0;1;Old +11325;Croatia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;88;1;3.353440102903053e-07;4284889;2.0537288130450986e-05;0;1;Old +11326;Croatia;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;477;1;1.8177169648690413e-06;4284889;0.00011132143679801273;1;0;Young +11327;Croatia;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;1144;1;4.3594721337739695e-06;4284889;0.0002669847456958628;1;0;Young +11328;Croatia;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;406;1;1.5471553202029996e-06;4284889;9.475157932912615e-05;0;1;Old +11329;Croatia;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11330;Croatia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;1071;1;4.081289034328602e-06;4284889;0.0002499481316785569;1;0;Young +11331;Croatia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;6593;1;2.512412568004526e-05;4284889;0.0015386629618643563;1;0;Young +11332;Croatia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2653;1;1.0109859764774773e-05;4284889;0.0006191525614782554;0;1;Old +11333;Croatia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;54;1;2.0577927904177827e-07;4284889;1.2602426807322197e-05;0;1;Old +11334;Croatia;M;Technicians and associate professionals;Education   ;Y15-29;252;1;9.603033021949652e-07;4284889;5.881132510083692e-05;1;0;Young +11335;Croatia;M;Technicians and associate professionals;Education   ;Y30-49;646;1;2.4617298937220143e-06;4284889;0.00015076236513944703;1;0;Young +11336;Croatia;M;Technicians and associate professionals;Education   ;Y50-64;383;1;1.4595085902407606e-06;4284889;8.938387902230373e-05;0;1;Old +11337;Croatia;M;Technicians and associate professionals;Education   ;Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11338;Croatia;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2090;1;7.964420244394751e-06;4284889;0.00048776059309821096;1;0;Young +11339;Croatia;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2486;1;9.473468290701126e-06;4284889;0.0005801783896852403;1;0;Young +11340;Croatia;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;1029;1;3.921238483962775e-06;4284889;0.00024014624416175074;0;1;Old +11341;Croatia;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +11342;Croatia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;1465;1;5.582715625855651e-06;4284889;0.000341899171717167;1;0;Young +11343;Croatia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2196;1;8.368357347698983e-06;4284889;0.000512498690164436;1;0;Young +11344;Croatia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;753;1;2.869477724415908e-06;4284889;0.00017573384047988173;0;1;Old +11345;Croatia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;31;1;1.1813254907953938e-07;4284889;7.2347265004997795e-06;0;1;Old +11346;Croatia;M;Technicians and associate professionals;Other service activities   ;Y15-29;354;1;1.3489974959405465e-06;4284889;8.26159090702233e-05;1;0;Young +11347;Croatia;M;Technicians and associate professionals;Other service activities   ;Y30-49;831;1;3.1667144608095878e-06;4284889;0.00019393734586823603;1;0;Young +11348;Croatia;M;Technicians and associate professionals;Other service activities   ;Y50-64;359;1;1.3680511328888593e-06;4284889;8.378280044127165e-05;0;1;Old +11349;Croatia;M;Technicians and associate professionals;Other service activities   ;Y65-84;18;1;6.859309301392609e-08;4284889;4.200808935774066e-06;0;1;Old +11350;Croatia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11351;Croatia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +11352;Croatia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;35;1;1.3337545863818962e-07;4284889;8.16823959733846e-06;1;0;Young +11353;Croatia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +11354;Croatia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11355;Croatia;M;Technicians and associate professionals;Not stated   ;Y15-29;77;1;2.9342600900401714e-07;4284889;1.7970127114144615e-05;1;0;Young +11356;Croatia;M;Technicians and associate professionals;Not stated   ;Y30-49;139;1;5.296911071630959e-07;4284889;3.2439580115144174e-05;1;0;Young +11357;Croatia;M;Technicians and associate professionals;Not stated   ;Y50-64;75;1;2.8580455422469204e-07;4284889;1.7503370565725273e-05;0;1;Old +11358;Croatia;M;Technicians and associate professionals;Not stated   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11359;Croatia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;111;1;4.2299074025254424e-07;4284889;2.5904988437273404e-05;1;0;Young +11360;Croatia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;282;1;1.074625123884842e-06;4284889;6.581267332712703e-05;1;0;Young +11361;Croatia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;249;1;9.488711200259775e-07;4284889;5.811119027820791e-05;0;1;Old +11362;Croatia;M;Clerical support workers;Mining and quarrying   ;Y15-29;24;1;9.145745735190145e-08;4284889;5.601078581032087e-06;1;0;Young +11363;Croatia;M;Clerical support workers;Mining and quarrying   ;Y30-49;98;1;3.7345128418693096e-07;4284889;2.287107087254769e-05;1;0;Young +11364;Croatia;M;Clerical support workers;Mining and quarrying   ;Y50-64;117;1;4.458551045905196e-07;4284889;2.7305258082531427e-05;0;1;Old +11365;Croatia;M;Clerical support workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11366;Croatia;M;Clerical support workers;Manufacturing   ;Y15-29;1723;1;6.565883292388592e-06;4284889;0.00040211076646326196;1;0;Young +11367;Croatia;M;Clerical support workers;Manufacturing   ;Y30-49;3432;1;1.3078416401321909e-05;4284889;0.0008009542370875885;1;0;Young +11368;Croatia;M;Clerical support workers;Manufacturing   ;Y50-64;2166;1;8.254035526009107e-06;4284889;0.0005054973419381459;0;1;Old +11369;Croatia;M;Clerical support workers;Manufacturing   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11370;Croatia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;62;1;2.3626509815907876e-07;4284889;1.4469453000999559e-05;1;0;Young +11371;Croatia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;329;1;1.2537293111989825e-06;4284889;7.678145221498153e-05;1;0;Young +11372;Croatia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;407;1;1.5509660475926622e-06;4284889;9.498495760333582e-05;0;1;Old +11373;Croatia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;124;1;4.725301963181575e-07;4284889;2.8938906001999118e-05;1;0;Young +11374;Croatia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;436;1;1.6614771418928764e-06;4284889;0.00010175292755541626;1;0;Young +11375;Croatia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;363;1;1.3832940424475095e-06;4284889;8.471631353811032e-05;0;1;Old +11376;Croatia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11377;Croatia;M;Clerical support workers;Construction   ;Y15-29;371;1;1.41377986156481e-06;4284889;8.658333973178769e-05;1;0;Young +11378;Croatia;M;Clerical support workers;Construction   ;Y30-49;801;1;3.052392639119711e-06;4284889;0.00018693599764194591;1;0;Young +11379;Croatia;M;Clerical support workers;Construction   ;Y50-64;589;1;2.244518432511248e-06;4284889;0.00013745980350949582;0;1;Old +11380;Croatia;M;Clerical support workers;Construction   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11381;Croatia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4001;1;1.5246720286039905e-05;4284889;0.0009337464751128909;1;0;Young +11382;Croatia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5367;1;2.0452173900318963e-05;4284889;0.0012525411976833005;1;0;Young +11383;Croatia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1613;1;6.14670327952571e-06;4284889;0.0003764391563001982;0;1;Old +11384;Croatia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11385;Croatia;M;Clerical support workers;Transportation and storage   ;Y15-29;2056;1;7.834855513146224e-06;4284889;0.0004798257317750822;1;0;Young +11386;Croatia;M;Clerical support workers;Transportation and storage   ;Y30-49;6224;1;2.3717967273259776e-05;4284889;0.001452546378680988;1;0;Young +11387;Croatia;M;Clerical support workers;Transportation and storage   ;Y50-64;3258;1;1.2415349835520623e-05;4284889;0.0007603464173751059;0;1;Old +11388;Croatia;M;Clerical support workers;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11389;Croatia;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;783;1;2.983799546105785e-06;4284889;0.00018273518870617184;1;0;Young +11390;Croatia;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;1112;1;4.237528857304767e-06;4284889;0.0002595166409211534;1;0;Young +11391;Croatia;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;690;1;2.6294018988671666e-06;4284889;0.00016103100920467252;0;1;Old +11392;Croatia;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11393;Croatia;M;Clerical support workers;Information and communication   ;Y15-29;692;1;2.6370233536464918e-06;4284889;0.00016149776575309185;1;0;Young +11394;Croatia;M;Clerical support workers;Information and communication   ;Y30-49;714;1;2.720859356219068e-06;4284889;0.0001666320877857046;1;0;Young +11395;Croatia;M;Clerical support workers;Information and communication   ;Y50-64;259;1;9.869783939226032e-07;4284889;6.044497302030461e-05;0;1;Old +11396;Croatia;M;Clerical support workers;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11397;Croatia;M;Clerical support workers;Financial and insurance activities   ;Y15-29;794;1;3.0257175473920732e-06;4284889;0.00018530234972247823;1;0;Young +11398;Croatia;M;Clerical support workers;Financial and insurance activities   ;Y30-49;1556;1;5.929491818314944e-06;4284889;0.000363136594670247;1;0;Young +11399;Croatia;M;Clerical support workers;Financial and insurance activities   ;Y50-64;930;1;3.5439764723861814e-06;4284889;0.00021704179501499338;0;1;Old +11400;Croatia;M;Clerical support workers;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11401;Croatia;M;Clerical support workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11402;Croatia;M;Clerical support workers;Real estate activities   ;Y15-29;36;1;1.3718618602785217e-07;4284889;8.401617871548131e-06;1;0;Young +11403;Croatia;M;Clerical support workers;Real estate activities   ;Y30-49;109;1;4.153692854732191e-07;4284889;2.5438231888854065e-05;1;0;Young +11404;Croatia;M;Clerical support workers;Real estate activities   ;Y50-64;76;1;2.896152816143546e-07;4284889;1.7736748839934944e-05;0;1;Old +11405;Croatia;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;655;1;2.4960264402289772e-06;4284889;0.00015286276960733405;1;0;Young +11406;Croatia;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;985;1;3.753566478817622e-06;4284889;0.00022987760009652526;1;0;Young +11407;Croatia;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;489;1;1.863445693544992e-06;4284889;0.00011412197608852878;0;1;Old +11408;Croatia;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11409;Croatia;M;Clerical support workers;Administrative and support service activities   ;Y15-29;481;1;1.8329598744276917e-06;4284889;0.00011225494989485142;1;0;Young +11410;Croatia;M;Clerical support workers;Administrative and support service activities   ;Y30-49;759;1;2.8923420887538835e-06;4284889;0.00017713411012513976;1;0;Young +11411;Croatia;M;Clerical support workers;Administrative and support service activities   ;Y50-64;289;1;1.10130021561248e-06;4284889;6.744632124659472e-05;0;1;Old +11412;Croatia;M;Clerical support workers;Administrative and support service activities   ;Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11413;Croatia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2619;1;9.980295033526246e-06;4284889;0.0006112177001551265;1;0;Young +11414;Croatia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2989;1;1.1390264167701393e-05;4284889;0.0006975676616127046;1;0;Young +11415;Croatia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;1729;1;6.588747656726567e-06;4284889;0.00040351103610852;0;1;Old +11416;Croatia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;0;1;Old +11417;Croatia;M;Clerical support workers;Education   ;Y15-29;111;1;4.2299074025254424e-07;4284889;2.5904988437273404e-05;1;0;Young +11418;Croatia;M;Clerical support workers;Education   ;Y30-49;209;1;7.964420244394752e-07;4284889;4.8776059309821094e-05;1;0;Young +11419;Croatia;M;Clerical support workers;Education   ;Y50-64;191;1;7.27848931425549e-07;4284889;4.457525037404703e-05;0;1;Old +11420;Croatia;M;Clerical support workers;Human health and social work activities   ;Y15-29;131;1;4.992052880457954e-07;4284889;3.057255392146681e-05;1;0;Young +11421;Croatia;M;Clerical support workers;Human health and social work activities   ;Y30-49;353;1;1.3451867685508839e-06;4284889;8.238253079601361e-05;1;0;Young +11422;Croatia;M;Clerical support workers;Human health and social work activities   ;Y50-64;355;1;1.352808223330209e-06;4284889;8.284928734443296e-05;0;1;Old +11423;Croatia;M;Clerical support workers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11424;Croatia;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;678;1;2.5836731701912162e-06;4284889;0.00015823046991415648;1;0;Young +11425;Croatia;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;966;1;3.6811626584140334e-06;4284889;0.00022544341288654153;1;0;Young +11426;Croatia;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;332;1;1.2651614933679701e-06;4284889;7.748158703761054e-05;0;1;Old +11427;Croatia;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +11428;Croatia;M;Clerical support workers;Other service activities   ;Y15-29;119;1;4.5347655936984473e-07;4284889;2.7772014630950766e-05;1;0;Young +11429;Croatia;M;Clerical support workers;Other service activities   ;Y30-49;244;1;9.298174830776647e-07;4284889;5.694429890715956e-05;1;0;Young +11430;Croatia;M;Clerical support workers;Other service activities   ;Y50-64;128;1;4.877731058768077e-07;4284889;2.98724190988378e-05;0;1;Old +11431;Croatia;M;Clerical support workers;Other service activities   ;Y65-84;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +11432;Croatia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11433;Croatia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +11434;Croatia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;50;1;1.9053636948312803e-07;4284889;1.1668913710483516e-05;1;0;Young +11435;Croatia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +11436;Croatia;M;Clerical support workers;Not stated   ;Y15-29;62;1;2.3626509815907876e-07;4284889;1.4469453000999559e-05;1;0;Young +11437;Croatia;M;Clerical support workers;Not stated   ;Y30-49;55;1;2.0959000643144082e-07;4284889;1.2835805081531866e-05;1;0;Young +11438;Croatia;M;Clerical support workers;Not stated   ;Y50-64;26;1;9.907891213122657e-08;4284889;6.067835129451428e-06;0;1;Old +11439;Croatia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;105;1;4.0012637591456885e-07;4284889;2.450471879201538e-05;1;0;Young +11440;Croatia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;386;1;1.4709407724097484e-06;4284889;9.008401384493274e-05;1;0;Young +11441;Croatia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;335;1;1.2765936755369577e-06;4284889;7.818172186023955e-05;0;1;Old +11442;Croatia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11443;Croatia;M;Service and sales workers;Mining and quarrying   ;Y15-29;23;1;8.764672996223889e-08;4284889;5.367700306822417e-06;1;0;Young +11444;Croatia;M;Service and sales workers;Mining and quarrying   ;Y30-49;116;1;4.4204437720085703e-07;4284889;2.7071879808321756e-05;1;0;Young +11445;Croatia;M;Service and sales workers;Mining and quarrying   ;Y50-64;102;1;3.886941937455812e-07;4284889;2.380458396938637e-05;0;1;Old +11446;Croatia;M;Service and sales workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11447;Croatia;M;Service and sales workers;Manufacturing   ;Y15-29;648;1;2.469351348501339e-06;4284889;0.00015122912168786637;1;0;Young +11448;Croatia;M;Service and sales workers;Manufacturing   ;Y30-49;2028;1;7.728155146235673e-06;4284889;0.00047329114009721137;1;0;Young +11449;Croatia;M;Service and sales workers;Manufacturing   ;Y50-64;1320;1;5.03016015435458e-06;4284889;0.0003080593219567648;0;1;Old +11450;Croatia;M;Service and sales workers;Manufacturing   ;Y65-84;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11451;Croatia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;22;1;8.383600257257633e-08;4284889;5.134322032612747e-06;1;0;Young +11452;Croatia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;97;1;3.6964055679726836e-07;4284889;2.263769259833802e-05;1;0;Young +11453;Croatia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;137;1;5.220696523837708e-07;4284889;3.197282356672483e-05;0;1;Old +11454;Croatia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11455;Croatia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;96;1;3.658298294076058e-07;4284889;2.2404314324128348e-05;1;0;Young +11456;Croatia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;487;1;1.8558242387656669e-06;4284889;0.00011365521954010943;1;0;Young +11457;Croatia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;364;1;1.387104769837172e-06;4284889;8.494969181232e-05;0;1;Old +11458;Croatia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11459;Croatia;M;Service and sales workers;Construction   ;Y15-29;185;1;7.049845670875737e-07;4284889;4.317498072878901e-05;1;0;Young +11460;Croatia;M;Service and sales workers;Construction   ;Y30-49;712;1;2.713237901439743e-06;4284889;0.00016616533123728526;1;0;Young +11461;Croatia;M;Service and sales workers;Construction   ;Y50-64;537;1;2.046360608248795e-06;4284889;0.00012532413325059297;0;1;Old +11462;Croatia;M;Service and sales workers;Construction   ;Y65-84;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +11463;Croatia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;10887;1;4.1487389091256296e-05;4284889;0.0025407892713206807;1;0;Young +11464;Croatia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;21220;1;8.086363520863954e-05;4284889;0.004952286978729204;1;0;Young +11465;Croatia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7055;1;2.6884681734069366e-05;4284889;0.001646483724549224;0;1;Old +11466;Croatia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;77;1;2.9342600900401714e-07;4284889;1.7970127114144615e-05;0;1;Old +11467;Croatia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11468;Croatia;M;Service and sales workers;Transportation and storage   ;Y15-29;660;1;2.51508007717729e-06;4284889;0.0001540296609783824;1;0;Young +11469;Croatia;M;Service and sales workers;Transportation and storage   ;Y30-49;1934;1;7.369946771607392e-06;4284889;0.00045135358232150237;1;0;Young +11470;Croatia;M;Service and sales workers;Transportation and storage   ;Y50-64;1222;1;4.656708870167649e-06;4284889;0.00028518825108421713;0;1;Old +11471;Croatia;M;Service and sales workers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11472;Croatia;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;17364;1;6.61694703941007e-05;4284889;0.0040523803533767154;1;0;Young +11473;Croatia;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;18636;1;7.101671563375148e-05;4284889;0.004349237518171416;1;0;Young +11474;Croatia;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;6024;1;2.2955821795327263e-05;4284889;0.0014058707238390538;0;1;Old +11475;Croatia;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;143;1;5.449340167217462e-07;4284889;3.337309321198285e-05;0;1;Old +11476;Croatia;M;Service and sales workers;Accommodation and food service activities   ;Y_GE85;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11477;Croatia;M;Service and sales workers;Information and communication   ;Y15-29;343;1;1.3070794946542583e-06;4284889;8.004874805391691e-05;1;0;Young +11478;Croatia;M;Service and sales workers;Information and communication   ;Y30-49;391;1;1.4899944093580612e-06;4284889;9.12509052159811e-05;1;0;Young +11479;Croatia;M;Service and sales workers;Information and communication   ;Y50-64;115;1;4.382336498111945e-07;4284889;2.6838501534112085e-05;0;1;Old +11480;Croatia;M;Service and sales workers;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11481;Croatia;M;Service and sales workers;Financial and insurance activities   ;Y15-29;149;1;5.677983810597215e-07;4284889;3.477336285724088e-05;1;0;Young +11482;Croatia;M;Service and sales workers;Financial and insurance activities   ;Y30-49;326;1;1.2422971290299947e-06;4284889;7.608131739235252e-05;1;0;Young +11483;Croatia;M;Service and sales workers;Financial and insurance activities   ;Y50-64;178;1;6.783094753599357e-07;4284889;4.1541332809321315e-05;0;1;Old +11484;Croatia;M;Service and sales workers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11485;Croatia;M;Service and sales workers;Real estate activities   ;Y15-29;55;1;2.0959000643144082e-07;4284889;1.2835805081531866e-05;1;0;Young +11486;Croatia;M;Service and sales workers;Real estate activities   ;Y30-49;206;1;7.850098422704875e-07;4284889;4.8075924487192085e-05;1;0;Young +11487;Croatia;M;Service and sales workers;Real estate activities   ;Y50-64;175;1;6.668772931909481e-07;4284889;4.0841197986692305e-05;0;1;Old +11488;Croatia;M;Service and sales workers;Real estate activities   ;Y65-84;30;1;1.1432182168987682e-07;4284889;7.001348226290109e-06;0;1;Old +11489;Croatia;M;Service and sales workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11490;Croatia;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;126;1;4.801516510974826e-07;4284889;2.940566255041846e-05;1;0;Young +11491;Croatia;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;309;1;1.1775147634057311e-06;4284889;7.211388673078813e-05;1;0;Young +11492;Croatia;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;201;1;7.659562053221747e-07;4284889;4.690903311614373e-05;0;1;Old +11493;Croatia;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11494;Croatia;M;Service and sales workers;Administrative and support service activities   ;Y15-29;3563;1;1.3577621689367703e-05;4284889;0.0008315267910090553;1;0;Young +11495;Croatia;M;Service and sales workers;Administrative and support service activities   ;Y30-49;7193;1;2.7410562113842798e-05;4284889;0.0016786899263901585;1;0;Young +11496;Croatia;M;Service and sales workers;Administrative and support service activities   ;Y50-64;3273;1;1.247251074636556e-05;4284889;0.0007638470914882509;0;1;Old +11497;Croatia;M;Service and sales workers;Administrative and support service activities   ;Y65-84;34;1;1.2956473124852705e-07;4284889;7.934861323128791e-06;0;1;Old +11498;Croatia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;4078;1;1.5540146295043923e-05;4284889;0.0009517166022270355;1;0;Young +11499;Croatia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;13201;1;5.030541227093546e-05;4284889;0.0030808265978418577;1;0;Young +11500;Croatia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;1932;1;7.362325316828067e-06;4284889;0.00045088682577308306;0;1;Old +11501;Croatia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;0;1;Old +11502;Croatia;M;Service and sales workers;Education   ;Y15-29;452;1;1.7224487801274773e-06;4284889;0.00010548697994277098;1;0;Young +11503;Croatia;M;Service and sales workers;Education   ;Y30-49;1920;1;7.316596588152116e-06;4284889;0.000448086286482567;1;0;Young +11504;Croatia;M;Service and sales workers;Education   ;Y50-64;1619;1;6.1695676438636854e-06;4284889;0.00037783942594545625;0;1;Old +11505;Croatia;M;Service and sales workers;Education   ;Y65-84;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;0;1;Old +11506;Croatia;M;Service and sales workers;Human health and social work activities   ;Y15-29;343;1;1.3070794946542583e-06;4284889;8.004874805391691e-05;1;0;Young +11507;Croatia;M;Service and sales workers;Human health and social work activities   ;Y30-49;1074;1;4.09272121649759e-06;4284889;0.00025064826650118594;1;0;Young +11508;Croatia;M;Service and sales workers;Human health and social work activities   ;Y50-64;714;1;2.720859356219068e-06;4284889;0.0001666320877857046;0;1;Old +11509;Croatia;M;Service and sales workers;Human health and social work activities   ;Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11510;Croatia;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;336;1;1.2804044029266203e-06;4284889;7.841510013444922e-05;1;0;Young +11511;Croatia;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;683;1;2.602726807139529e-06;4284889;0.00015939736128520483;1;0;Young +11512;Croatia;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;427;1;1.6271805953859134e-06;4284889;9.965252308752922e-05;0;1;Old +11513;Croatia;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11514;Croatia;M;Service and sales workers;Other service activities   ;Y15-29;520;1;1.9815782426245316e-06;4284889;0.00012135670258902856;1;0;Young +11515;Croatia;M;Service and sales workers;Other service activities   ;Y30-49;908;1;3.460140469813605e-06;4284889;0.00021190747298238064;1;0;Young +11516;Croatia;M;Service and sales workers;Other service activities   ;Y50-64;441;1;1.6805307788411892e-06;4284889;0.0001029198189264646;0;1;Old +11517;Croatia;M;Service and sales workers;Other service activities   ;Y65-84;20;1;7.621454779325121e-08;4284889;4.667565484193406e-06;0;1;Old +11518;Croatia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11519;Croatia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;1;0;Young +11520;Croatia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +11521;Croatia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;43;1;1.638612777554901e-07;4284889;1.0035265791015824e-05;1;0;Young +11522;Croatia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11523;Croatia;M;Service and sales workers;Not stated   ;Y15-29;29;1;1.1051109430021426e-07;4284889;6.767969952080439e-06;1;0;Young +11524;Croatia;M;Service and sales workers;Not stated   ;Y30-49;39;1;1.4861836819683987e-07;4284889;9.101752694177141e-06;1;0;Young +11525;Croatia;M;Service and sales workers;Not stated   ;Y50-64;32;1;1.2194327646920193e-07;4284889;7.46810477470945e-06;0;1;Old +11526;Croatia;M;Service and sales workers;Not stated   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11527;Croatia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;4004;1;1.5258152468208893e-05;4284889;0.00093444660993552;1;0;Young +11528;Croatia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;15454;1;5.889098107984521e-05;4284889;0.003606627849636245;1;0;Young +11529;Croatia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;13430;1;5.117806884316819e-05;4284889;0.003134270222635872;0;1;Old +11530;Croatia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;3570;1;1.360429678109534e-05;4284889;0.000833160438928523;0;1;Old +11531;Croatia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;40;1;1.5242909558650242e-07;4284889;9.335130968386812e-06;0;1;Old +11532;Croatia;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11533;Croatia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;56;1;2.134007338211034e-07;4284889;1.3069183355741538e-05;1;0;Young +11534;Croatia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;164;1;6.2495929190466e-07;4284889;3.8274036970385933e-05;1;0;Young +11535;Croatia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;93;1;3.543976472386181e-07;4284889;2.170417950149934e-05;0;1;Old +11536;Croatia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11537;Croatia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11538;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +11539;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;1;0;Young +11540;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11541;Croatia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +11542;Croatia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;22;1;8.383600257257633e-08;4284889;5.134322032612747e-06;1;0;Young +11543;Croatia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11544;Croatia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11545;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +11546;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;30;1;1.1432182168987682e-07;4284889;7.001348226290109e-06;1;0;Young +11547;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;16;1;6.097163823460096e-08;4284889;3.734052387354725e-06;0;1;Old +11548;Croatia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;1;0;Young +11549;Croatia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +11550;Croatia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;42;1;1.6005055036582754e-07;4284889;9.801887516806153e-06;1;0;Young +11551;Croatia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;114;1;4.344229224215319e-07;4284889;2.6605123259902414e-05;1;0;Young +11552;Croatia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;111;1;4.2299074025254424e-07;4284889;2.5904988437273404e-05;0;1;Old +11553;Croatia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11554;Croatia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +11555;Croatia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;1;0;Young +11556;Croatia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11557;Croatia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11558;Croatia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;168;1;6.402022014633102e-07;4284889;3.920755006722461e-05;1;0;Young +11559;Croatia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;460;1;1.752934599244778e-06;4284889;0.00010735400613644834;1;0;Young +11560;Croatia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;210;1;8.002527518291377e-07;4284889;4.900943758403076e-05;0;1;Old +11561;Croatia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11562;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;1;0;Young +11563;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;22;1;8.383600257257633e-08;4284889;5.134322032612747e-06;1;0;Young +11564;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11565;Croatia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +11566;Croatia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;7;1;2.6675091727637924e-08;4284889;1.6336479194676922e-06;0;1;Old +11567;Croatia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +11568;Croatia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +11569;Croatia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11570;Croatia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;1;0;Young +11571;Croatia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;1;0;Young +11572;Croatia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;0;1;Old +11573;Croatia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +11574;Croatia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +11575;Croatia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11576;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11577;Croatia;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +11578;Croatia;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11579;Croatia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11580;Croatia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +11581;Croatia;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11582;Croatia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;237;1;9.031423913500269e-07;4284889;5.5310650987691864e-05;1;0;Young +11583;Croatia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;688;1;2.621780444087842e-06;4284889;0.00016056425265625318;1;0;Young +11584;Croatia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;595;1;2.2673827968492233e-06;4284889;0.00013886007315475383;0;1;Old +11585;Croatia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11586;Croatia;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;183;1;6.973631123082485e-07;4284889;4.270822418036967e-05;1;0;Young +11587;Croatia;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;581;1;2.2140326133939478e-06;4284889;0.00013559277731581845;1;0;Young +11588;Croatia;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;428;1;1.630991322775576e-06;4284889;9.988590136173889e-05;0;1;Old +11589;Croatia;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11590;Croatia;M;Craft and related trades workers;Manufacturing   ;Y15-29;19585;1;7.463309592654125e-05;4284889;0.004570713500396393;1;0;Young +11591;Croatia;M;Craft and related trades workers;Manufacturing   ;Y30-49;42484;1;0.00016189494242242422;4284889;0.009914842601523633;1;0;Young +11592;Croatia;M;Craft and related trades workers;Manufacturing   ;Y50-64;21225;1;8.088268884558785e-05;4284889;0.004953453870100252;0;1;Old +11593;Croatia;M;Craft and related trades workers;Manufacturing   ;Y65-84;141;1;5.37312561942421e-07;4284889;3.2906336663563516e-05;0;1;Old +11594;Croatia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;478;1;1.821527692258704e-06;4284889;0.00011155481507222241;1;0;Young +11595;Croatia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2676;1;1.0197506494737011e-05;4284889;0.0006245202617850777;1;0;Young +11596;Croatia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1998;1;7.613833324545796e-06;4284889;0.00046628979187092126;0;1;Old +11597;Croatia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11598;Croatia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;681;1;2.5951053523602036e-06;4284889;0.0001589306047367855;1;0;Young +11599;Croatia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2141;1;8.158767341267542e-06;4284889;0.0004996628850829041;1;0;Young +11600;Croatia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1214;1;4.626223051050348e-06;4284889;0.00028332122489053974;0;1;Old +11601;Croatia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11602;Croatia;M;Craft and related trades workers;Construction   ;Y15-29;18072;1;6.886746538598179e-05;4284889;0.0042176121715171615;1;0;Young +11603;Croatia;M;Craft and related trades workers;Construction   ;Y30-49;35443;1;0.00013506361087181013;4284889;0.008271626172813344;1;0;Young +11604;Croatia;M;Craft and related trades workers;Construction   ;Y50-64;16239;1;6.188240208073033e-05;4284889;0.003789829794890836;0;1;Old +11605;Croatia;M;Craft and related trades workers;Construction   ;Y65-84;97;1;3.6964055679726836e-07;4284889;2.263769259833802e-05;0;1;Old +11606;Croatia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6044;1;2.3032036343120515e-05;4284889;0.0014105382893232472;1;0;Young +11607;Croatia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9087;1;3.462807978986369e-05;4284889;0.002120708377743274;1;0;Young +11608;Croatia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3818;1;1.4549357173731656e-05;4284889;0.0008910382509325212;0;1;Old +11609;Croatia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;31;1;1.1813254907953938e-07;4284889;7.2347265004997795e-06;0;1;Old +11610;Croatia;M;Craft and related trades workers;Transportation and storage   ;Y15-29;680;1;2.591294624970541e-06;4284889;0.0001586972264625758;1;0;Young +11611;Croatia;M;Craft and related trades workers;Transportation and storage   ;Y30-49;2615;1;9.965052123967596e-06;4284889;0.0006102841870582878;1;0;Young +11612;Croatia;M;Craft and related trades workers;Transportation and storage   ;Y50-64;2082;1;7.933934425277452e-06;4284889;0.00048589356690453356;0;1;Old +11613;Croatia;M;Craft and related trades workers;Transportation and storage   ;Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11614;Croatia;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;408;1;1.5547767749823248e-06;4284889;9.521833587754548e-05;1;0;Young +11615;Croatia;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;795;1;3.0295282747817354e-06;4284889;0.0001855357279966879;1;0;Young +11616;Croatia;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;457;1;1.7415024170757901e-06;4284889;0.00010665387131381934;0;1;Old +11617;Croatia;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11618;Croatia;M;Craft and related trades workers;Information and communication   ;Y15-29;469;1;1.787231145751741e-06;4284889;0.00010945441060433538;1;0;Young +11619;Croatia;M;Craft and related trades workers;Information and communication   ;Y30-49;1123;1;4.279446858591056e-06;4284889;0.0002620838019374598;1;0;Young +11620;Croatia;M;Craft and related trades workers;Information and communication   ;Y50-64;499;1;1.9015529674416177e-06;4284889;0.00011645575883062549;0;1;Old +11621;Croatia;M;Craft and related trades workers;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11622;Croatia;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;1;0;Young +11623;Croatia;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;54;1;2.0577927904177827e-07;4284889;1.2602426807322197e-05;1;0;Young +11624;Croatia;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;45;1;1.7148273253481523e-07;4284889;1.0502022339435164e-05;0;1;Old +11625;Croatia;M;Craft and related trades workers;Real estate activities   ;Y15-29;18;1;6.859309301392609e-08;4284889;4.200808935774066e-06;1;0;Young +11626;Croatia;M;Craft and related trades workers;Real estate activities   ;Y30-49;40;1;1.5242909558650242e-07;4284889;9.335130968386812e-06;1;0;Young +11627;Croatia;M;Craft and related trades workers;Real estate activities   ;Y50-64;43;1;1.638612777554901e-07;4284889;1.0035265791015824e-05;0;1;Old +11628;Croatia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;339;1;1.2918365850956081e-06;4284889;7.911523495707824e-05;1;0;Young +11629;Croatia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;786;1;2.9952317282747724e-06;4284889;0.00018343532352880086;1;0;Young +11630;Croatia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;345;1;1.3147009494335833e-06;4284889;8.051550460233626e-05;0;1;Old +11631;Croatia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11632;Croatia;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;374;1;1.4252120437337977e-06;4284889;8.728347455441669e-05;1;0;Young +11633;Croatia;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;679;1;2.587483897580879e-06;4284889;0.00015846384818836613;1;0;Young +11634;Croatia;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;291;1;1.1089216703918052e-06;4284889;6.791307779501405e-05;0;1;Old +11635;Croatia;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11636;Croatia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;183;1;6.973631123082485e-07;4284889;4.270822418036967e-05;1;0;Young +11637;Croatia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;811;1;3.0904999130163366e-06;4284889;0.00018926978038404262;1;0;Young +11638;Croatia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;481;1;1.8329598744276917e-06;4284889;0.00011225494989485142;0;1;Old +11639;Croatia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11640;Croatia;M;Craft and related trades workers;Education   ;Y15-29;33;1;1.257540038588645e-07;4284889;7.70148304891912e-06;1;0;Young +11641;Croatia;M;Craft and related trades workers;Education   ;Y30-49;71;1;2.705616446660418e-07;4284889;1.6569857468886592e-05;1;0;Young +11642;Croatia;M;Craft and related trades workers;Education   ;Y50-64;102;1;3.886941937455812e-07;4284889;2.380458396938637e-05;0;1;Old +11643;Croatia;M;Craft and related trades workers;Education   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11644;Croatia;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;67;1;2.5531873510739155e-07;4284889;1.563634437204791e-05;1;0;Young +11645;Croatia;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;282;1;1.074625123884842e-06;4284889;6.581267332712703e-05;1;0;Young +11646;Croatia;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;356;1;1.3566189507198715e-06;4284889;8.308266561864263e-05;0;1;Old +11647;Croatia;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11648;Croatia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;140;1;5.335018345527585e-07;4284889;3.267295838935384e-05;1;0;Young +11649;Croatia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;446;1;1.699584415789502e-06;4284889;0.00010408671029751295;1;0;Young +11650;Croatia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;214;1;8.15495661387788e-07;4284889;4.9942950680869446e-05;0;1;Old +11651;Croatia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11652;Croatia;M;Craft and related trades workers;Other service activities   ;Y15-29;786;1;2.9952317282747724e-06;4284889;0.00018343532352880086;1;0;Young +11653;Croatia;M;Craft and related trades workers;Other service activities   ;Y30-49;1516;1;5.777062722728442e-06;4284889;0.00035380146370186016;1;0;Young +11654;Croatia;M;Craft and related trades workers;Other service activities   ;Y50-64;761;1;2.8999635435332087e-06;4284889;0.0001776008666735591;0;1;Old +11655;Croatia;M;Craft and related trades workers;Other service activities   ;Y65-84;32;1;1.2194327646920193e-07;4284889;7.46810477470945e-06;0;1;Old +11656;Croatia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11657;Croatia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +11658;Croatia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11659;Croatia;M;Craft and related trades workers;Not stated   ;Y15-29;89;1;3.3915473767996787e-07;4284889;2.0770666404660657e-05;1;0;Young +11660;Croatia;M;Craft and related trades workers;Not stated   ;Y30-49;227;1;8.650351174534013e-07;4284889;5.297686824559516e-05;1;0;Young +11661;Croatia;M;Craft and related trades workers;Not stated   ;Y50-64;162;1;6.173378371253348e-07;4284889;3.780728042196659e-05;0;1;Old +11662;Croatia;M;Craft and related trades workers;Not stated   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11663;Croatia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;842;1;3.208632462095876e-06;4284889;0.0001965045068845424;1;0;Young +11664;Croatia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;2439;1;9.294364103386985e-06;4284889;0.0005692096107973859;1;0;Young +11665;Croatia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;1362;1;5.190210704720407e-06;4284889;0.000317861209473571;0;1;Old +11666;Croatia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +11667;Croatia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;407;1;1.5509660475926622e-06;4284889;9.498495760333582e-05;1;0;Young +11668;Croatia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;1333;1;5.0796996104201935e-06;4284889;0.0003110932395214905;1;0;Young +11669;Croatia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;809;1;3.0828784582370114e-06;4284889;0.00018880302383562328;0;1;Old +11670;Croatia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;9801;1;3.7348939146082755e-05;4284889;0.0022873404655289788;1;0;Young +11671;Croatia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;19607;1;7.471693192911383e-05;4284889;0.004575847822429006;1;0;Young +11672;Croatia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;8870;1;3.380115194630691e-05;4284889;0.0020700652922397756;0;1;Old +11673;Croatia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;22;1;8.383600257257633e-08;4284889;5.134322032612747e-06;0;1;Old +11674;Croatia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;57;1;2.1721146121076594e-07;4284889;1.3302561629951207e-05;1;0;Young +11675;Croatia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;362;1;1.3794833150578469e-06;4284889;8.448293526390065e-05;1;0;Young +11676;Croatia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;390;1;1.4861836819683986e-06;4284889;9.101752694177143e-05;0;1;Old +11677;Croatia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11678;Croatia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;600;1;2.2864364337975363e-06;4284889;0.00014002696452580218;1;0;Young +11679;Croatia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2154;1;8.208306797333156e-06;4284889;0.0005026968026476299;1;0;Young +11680;Croatia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1175;1;4.4776046828535085e-06;4284889;0.0002742194721963626;0;1;Old +11681;Croatia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11682;Croatia;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;3353;1;1.2777368937538565e-05;4284889;0.0007825173534250245;1;0;Young +11683;Croatia;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;8384;1;3.1949138434930906e-05;4284889;0.001956643450973876;1;0;Young +11684;Croatia;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;3490;1;1.3299438589922336e-05;4284889;0.0008144901769917493;0;1;Old +11685;Croatia;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;0;1;Old +11686;Croatia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2984;1;1.137121053075308e-05;4284889;0.0006964007702416562;1;0;Young +11687;Croatia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;6154;1;2.3451216355983398e-05;4284889;0.001436209899486311;1;0;Young +11688;Croatia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1895;1;7.221328403410552e-06;4284889;0.00044225182962732523;0;1;Old +11689;Croatia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +11690;Croatia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;5367;1;2.0452173900318963e-05;4284889;0.0012525411976833005;1;0;Young +11691;Croatia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;20619;1;7.857338804745233e-05;4284889;0.004812026635929192;1;0;Young +11692;Croatia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;11506;1;4.384622934545742e-05;4284889;0.0026852504230564667;0;1;Old +11693;Croatia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;142;1;5.411232893320836e-07;4284889;3.3139714937773184e-05;0;1;Old +11694;Croatia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;239;1;9.10763846129352e-07;4284889;5.5777407536111206e-05;1;0;Young +11695;Croatia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;341;1;1.299458039874933e-06;4284889;7.958199150549757e-05;1;0;Young +11696;Croatia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;238;1;9.069531187396895e-07;4284889;5.554402926190153e-05;0;1;Old +11697;Croatia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11698;Croatia;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;61;1;2.3245437076941619e-07;4284889;1.423607472678989e-05;1;0;Young +11699;Croatia;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;213;1;8.116849339981254e-07;4284889;4.970957240665978e-05;1;0;Young +11700;Croatia;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;120;1;4.572872867595073e-07;4284889;2.8005392905160437e-05;0;1;Old +11701;Croatia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;1;0;Young +11702;Croatia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;74;1;2.819938268350295e-07;4284889;1.72699922915156e-05;1;0;Young +11703;Croatia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;54;1;2.0577927904177827e-07;4284889;1.2602426807322197e-05;0;1;Old +11704;Croatia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11705;Croatia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;1;0;Young +11706;Croatia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;25;1;9.526818474156401e-08;4284889;5.834456855241758e-06;1;0;Young +11707;Croatia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;25;1;9.526818474156401e-08;4284889;5.834456855241758e-06;0;1;Old +11708;Croatia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;98;1;3.7345128418693096e-07;4284889;2.287107087254769e-05;1;0;Young +11709;Croatia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;283;1;1.0784358512745046e-06;4284889;6.60460516013367e-05;1;0;Young +11710;Croatia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;145;1;5.525554715010713e-07;4284889;3.383984976040219e-05;0;1;Old +11711;Croatia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11712;Croatia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;257;1;9.79356939143278e-07;4284889;5.997821647188527e-05;1;0;Young +11713;Croatia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;461;1;1.7567453266344403e-06;4284889;0.00010758738441065801;1;0;Young +11714;Croatia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;227;1;8.650351174534013e-07;4284889;5.297686824559516e-05;0;1;Old +11715;Croatia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11716;Croatia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;231;1;8.802780270120515e-07;4284889;5.3910381342433844e-05;1;0;Young +11717;Croatia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;1063;1;4.050803215211302e-06;4284889;0.00024808110548487955;1;0;Young +11718;Croatia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;457;1;1.7415024170757901e-06;4284889;0.00010665387131381934;0;1;Old +11719;Croatia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;4284889;1.1668913710483515e-06;0;1;Old +11720;Croatia;M;Plant and machine operators, and assemblers;Education   ;Y15-29;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;1;0;Young +11721;Croatia;M;Plant and machine operators, and assemblers;Education   ;Y30-49;124;1;4.725301963181575e-07;4284889;2.8938906001999118e-05;1;0;Young +11722;Croatia;M;Plant and machine operators, and assemblers;Education   ;Y50-64;137;1;5.220696523837708e-07;4284889;3.197282356672483e-05;0;1;Old +11723;Croatia;M;Plant and machine operators, and assemblers;Education   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11724;Croatia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;194;1;7.392811135945367e-07;4284889;4.527538519667604e-05;1;0;Young +11725;Croatia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;1027;1;3.9136170291834495e-06;4284889;0.0002396794876133314;1;0;Young +11726;Croatia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;774;1;2.9495029995988217e-06;4284889;0.00018063478423828482;0;1;Old +11727;Croatia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11728;Croatia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;162;1;6.173378371253348e-07;4284889;3.780728042196659e-05;1;0;Young +11729;Croatia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;344;1;1.310890222043921e-06;4284889;8.028212632812659e-05;1;0;Young +11730;Croatia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;133;1;5.068267428251205e-07;4284889;3.1039310469886154e-05;0;1;Old +11731;Croatia;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;109;1;4.153692854732191e-07;4284889;2.5438231888854065e-05;1;0;Young +11732;Croatia;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;354;1;1.3489974959405465e-06;4284889;8.26159090702233e-05;1;0;Young +11733;Croatia;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;180;1;6.859309301392609e-07;4284889;4.200808935774066e-05;0;1;Old +11734;Croatia;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11735;Croatia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11736;Croatia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11737;Croatia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11738;Croatia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +11739;Croatia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;37;1;1.4099691341751475e-07;4284889;8.6349961457578e-06;1;0;Young +11740;Croatia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11741;Croatia;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;67;1;2.5531873510739155e-07;4284889;1.563634437204791e-05;1;0;Young +11742;Croatia;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;111;1;4.2299074025254424e-07;4284889;2.5904988437273404e-05;1;0;Young +11743;Croatia;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;82;1;3.1247964595233e-07;4284889;1.9137018485192967e-05;0;1;Old +11744;Croatia;M;Plant and machine operators, and assemblers;Not stated   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11745;Croatia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2191;1;8.34930371075067e-06;4284889;0.0005113317987933876;1;0;Young +11746;Croatia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;4141;1;1.5780222120592662e-05;4284889;0.0009664194335022448;1;0;Young +11747;Croatia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2030;1;7.735776601014998e-06;4284889;0.00047375789664563073;0;1;Old +11748;Croatia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;82;1;3.1247964595233e-07;4284889;1.9137018485192967e-05;0;1;Old +11749;Croatia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11750;Croatia;M;Elementary occupations;Mining and quarrying   ;Y15-29;54;1;2.0577927904177827e-07;4284889;1.2602426807322197e-05;1;0;Young +11751;Croatia;M;Elementary occupations;Mining and quarrying   ;Y30-49;171;1;6.516343836322978e-07;4284889;3.990768488985362e-05;1;0;Young +11752;Croatia;M;Elementary occupations;Mining and quarrying   ;Y50-64;113;1;4.3061219503186933e-07;4284889;2.6371744985692746e-05;0;1;Old +11753;Croatia;M;Elementary occupations;Manufacturing   ;Y15-29;4896;1;1.8657321299787897e-05;4284889;0.0011426200305305458;1;0;Young +11754;Croatia;M;Elementary occupations;Manufacturing   ;Y30-49;7639;1;2.91101465296323e-05;4284889;0.0017827766366876716;1;0;Young +11755;Croatia;M;Elementary occupations;Manufacturing   ;Y50-64;3571;1;1.3608107508485003e-05;4284889;0.0008333938172027327;0;1;Old +11756;Croatia;M;Elementary occupations;Manufacturing   ;Y65-84;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;0;1;Old +11757;Croatia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;48;1;1.829149147038029e-07;4284889;1.1202157162064174e-05;1;0;Young +11758;Croatia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;205;1;7.811991148808249e-07;4284889;4.784254621298241e-05;1;0;Young +11759;Croatia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;234;1;8.917102091810392e-07;4284889;5.4610516165062854e-05;0;1;Old +11760;Croatia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1238;1;4.71768050840225e-06;4284889;0.0002889223034715718;1;0;Young +11761;Croatia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3289;1;1.2533482384600162e-05;4284889;0.0007675811438756057;1;0;Young +11762;Croatia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1716;1;6.539208200660954e-06;4284889;0.00040047711854379424;0;1;Old +11763;Croatia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11764;Croatia;M;Elementary occupations;Construction   ;Y15-29;6424;1;2.448011275119229e-05;4284889;0.001499222033522922;1;0;Young +11765;Croatia;M;Elementary occupations;Construction   ;Y30-49;11584;1;4.41434660818511e-05;4284889;0.002703453928444821;1;0;Young +11766;Croatia;M;Elementary occupations;Construction   ;Y50-64;4379;1;1.6687175239332354e-05;4284889;0.0010219634627641463;0;1;Old +11767;Croatia;M;Elementary occupations;Construction   ;Y65-84;9;1;3.429654650696304e-08;4284889;2.100404467887033e-06;0;1;Old +11768;Croatia;M;Elementary occupations;Construction   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11769;Croatia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2000;1;7.621454779325121e-06;4284889;0.0004667565484193406;1;0;Young +11770;Croatia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2034;1;7.751019510573649e-06;4284889;0.0004746914097424694;1;0;Young +11771;Croatia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;700;1;2.6675091727637926e-06;4284889;0.00016336479194676922;0;1;Old +11772;Croatia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11773;Croatia;M;Elementary occupations;Transportation and storage   ;Y15-29;809;1;3.0828784582370114e-06;4284889;0.00018880302383562328;1;0;Young +11774;Croatia;M;Elementary occupations;Transportation and storage   ;Y30-49;1274;1;4.8548666944301026e-06;4284889;0.00029732392134311996;1;0;Young +11775;Croatia;M;Elementary occupations;Transportation and storage   ;Y50-64;726;1;2.766588084895019e-06;4284889;0.00016943262707622063;0;1;Old +11776;Croatia;M;Elementary occupations;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11777;Croatia;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;768;1;2.9266386352608465e-06;4284889;0.00017923451459302679;1;0;Young +11778;Croatia;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;736;1;2.8046953587916445e-06;4284889;0.00017176640981831734;1;0;Young +11779;Croatia;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;410;1;1.5623982297616498e-06;4284889;9.568509242596482e-05;0;1;Old +11780;Croatia;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11781;Croatia;M;Elementary occupations;Information and communication   ;Y15-29;111;1;4.2299074025254424e-07;4284889;2.5904988437273404e-05;1;0;Young +11782;Croatia;M;Elementary occupations;Information and communication   ;Y30-49;154;1;5.868520180080343e-07;4284889;3.594025422828923e-05;1;0;Young +11783;Croatia;M;Elementary occupations;Information and communication   ;Y50-64;64;1;2.4388655293840386e-07;4284889;1.49362095494189e-05;0;1;Old +11784;Croatia;M;Elementary occupations;Financial and insurance activities   ;Y15-29;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;1;0;Young +11785;Croatia;M;Elementary occupations;Financial and insurance activities   ;Y30-49;30;1;1.1432182168987682e-07;4284889;7.001348226290109e-06;1;0;Young +11786;Croatia;M;Elementary occupations;Financial and insurance activities   ;Y50-64;24;1;9.145745735190145e-08;4284889;5.601078581032087e-06;0;1;Old +11787;Croatia;M;Elementary occupations;Real estate activities   ;Y15-29;25;1;9.526818474156401e-08;4284889;5.834456855241758e-06;1;0;Young +11788;Croatia;M;Elementary occupations;Real estate activities   ;Y30-49;83;1;3.1629037334199253e-07;4284889;1.9370396759402634e-05;1;0;Young +11789;Croatia;M;Elementary occupations;Real estate activities   ;Y50-64;56;1;2.134007338211034e-07;4284889;1.3069183355741538e-05;0;1;Old +11790;Croatia;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;190;1;7.240382040358865e-07;4284889;4.434187209983736e-05;1;0;Young +11791;Croatia;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;340;1;1.2956473124852705e-06;4284889;7.93486132312879e-05;1;0;Young +11792;Croatia;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;131;1;4.992052880457954e-07;4284889;3.057255392146681e-05;0;1;Old +11793;Croatia;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;4284889;4.667565484193406e-07;0;1;Old +11794;Croatia;M;Elementary occupations;Administrative and support service activities   ;Y15-29;856;1;3.261982645551152e-06;4284889;0.00019977180272347779;1;0;Young +11795;Croatia;M;Elementary occupations;Administrative and support service activities   ;Y30-49;1729;1;6.588747656726567e-06;4284889;0.00040351103610852;1;0;Young +11796;Croatia;M;Elementary occupations;Administrative and support service activities   ;Y50-64;851;1;3.242929008602839e-06;4284889;0.00019860491135242943;0;1;Old +11797;Croatia;M;Elementary occupations;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11798;Croatia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;293;1;1.1165431251711302e-06;4284889;6.83798343434334e-05;1;0;Young +11799;Croatia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;793;1;3.0219068200024106e-06;4284889;0.00018506897144826855;1;0;Young +11800;Croatia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;484;1;1.8443920565966793e-06;4284889;0.00011295508471748043;0;1;Old +11801;Croatia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;8;1;3.048581911730048e-08;4284889;1.8670261936773624e-06;0;1;Old +11802;Croatia;M;Elementary occupations;Education   ;Y15-29;39;1;1.4861836819683987e-07;4284889;9.101752694177141e-06;1;0;Young +11803;Croatia;M;Elementary occupations;Education   ;Y30-49;136;1;5.182589249941082e-07;4284889;3.1739445292515164e-05;1;0;Young +11804;Croatia;M;Elementary occupations;Education   ;Y50-64;153;1;5.830412906183718e-07;4284889;3.5706875954079555e-05;0;1;Old +11805;Croatia;M;Elementary occupations;Education   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11806;Croatia;M;Elementary occupations;Human health and social work activities   ;Y15-29;121;1;4.610980141491698e-07;4284889;2.8238771179370108e-05;1;0;Young +11807;Croatia;M;Elementary occupations;Human health and social work activities   ;Y30-49;402;1;1.5319124106443494e-06;4284889;9.381806623228747e-05;1;0;Young +11808;Croatia;M;Elementary occupations;Human health and social work activities   ;Y50-64;256;1;9.755462117536154e-07;4284889;5.97448381976756e-05;0;1;Old +11809;Croatia;M;Elementary occupations;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11810;Croatia;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;166;1;6.325807466839851e-07;4284889;3.874079351880527e-05;1;0;Young +11811;Croatia;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;287;1;1.0936787608331548e-06;4284889;6.697956469817538e-05;1;0;Young +11812;Croatia;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;161;1;6.135271097356723e-07;4284889;3.757390214775692e-05;0;1;Old +11813;Croatia;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11814;Croatia;M;Elementary occupations;Other service activities   ;Y15-29;108;1;4.1155855808355654e-07;4284889;2.5204853614644394e-05;1;0;Young +11815;Croatia;M;Elementary occupations;Other service activities   ;Y30-49;276;1;1.0517607595468668e-06;4284889;6.441240368186901e-05;1;0;Young +11816;Croatia;M;Elementary occupations;Other service activities   ;Y50-64;142;1;5.411232893320836e-07;4284889;3.3139714937773184e-05;0;1;Old +11817;Croatia;M;Elementary occupations;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11818;Croatia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;1;0;Young +11819;Croatia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;43;1;1.638612777554901e-07;4284889;1.0035265791015824e-05;1;0;Young +11820;Croatia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;23;1;8.764672996223889e-08;4284889;5.367700306822417e-06;0;1;Old +11821;Croatia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11822;Croatia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;1;0;Young +11823;Croatia;M;Elementary occupations;Not stated   ;Y15-29;65;1;2.4769728032806646e-07;4284889;1.516958782362857e-05;1;0;Young +11824;Croatia;M;Elementary occupations;Not stated   ;Y30-49;108;1;4.1155855808355654e-07;4284889;2.5204853614644394e-05;1;0;Young +11825;Croatia;M;Elementary occupations;Not stated   ;Y50-64;51;1;1.943470968727906e-07;4284889;1.1902291984693186e-05;0;1;Old +11826;Croatia;M;Elementary occupations;Not stated   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11827;Croatia;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;18;1;6.859309301392609e-08;4284889;4.200808935774066e-06;1;0;Young +11828;Croatia;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;58;1;2.2102218860042852e-07;4284889;1.3535939904160878e-05;1;0;Young +11829;Croatia;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;40;1;1.5242909558650242e-07;4284889;9.335130968386812e-06;0;1;Old +11830;Croatia;M;Not stated;Agriculture, forestry and fishing   ;Y65-84;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;0;1;Old +11831;Croatia;M;Not stated;Mining and quarrying   ;Y15-29;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;1;0;Young +11832;Croatia;M;Not stated;Mining and quarrying   ;Y30-49;17;1;6.478236562426352e-08;4284889;3.9674306615643955e-06;1;0;Young +11833;Croatia;M;Not stated;Mining and quarrying   ;Y50-64;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +11834;Croatia;M;Not stated;Manufacturing   ;Y15-29;165;1;6.287700192943225e-07;4284889;3.85074152445956e-05;1;0;Young +11835;Croatia;M;Not stated;Manufacturing   ;Y30-49;323;1;1.2308649468610071e-06;4284889;7.538118256972352e-05;1;0;Young +11836;Croatia;M;Not stated;Manufacturing   ;Y50-64;198;1;7.54524023153187e-07;4284889;4.620889829351472e-05;0;1;Old +11837;Croatia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;4;1;1.524290955865024e-08;4284889;9.335130968386812e-07;1;0;Young +11838;Croatia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;1;0;Young +11839;Croatia;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;23;1;8.764672996223889e-08;4284889;5.367700306822417e-06;0;1;Old +11840;Croatia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;1;0;Young +11841;Croatia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;50;1;1.9053636948312803e-07;4284889;1.1668913710483516e-05;1;0;Young +11842;Croatia;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;49;1;1.8672564209346548e-07;4284889;1.1435535436273845e-05;0;1;Old +11843;Croatia;M;Not stated;Construction   ;Y15-29;80;1;3.0485819117300483e-07;4284889;1.8670261936773625e-05;1;0;Young +11844;Croatia;M;Not stated;Construction   ;Y30-49;209;1;7.964420244394752e-07;4284889;4.8776059309821094e-05;1;0;Young +11845;Croatia;M;Not stated;Construction   ;Y50-64;96;1;3.658298294076058e-07;4284889;2.2404314324128348e-05;0;1;Old +11846;Croatia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;80;1;3.0485819117300483e-07;4284889;1.8670261936773625e-05;1;0;Young +11847;Croatia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;143;1;5.449340167217462e-07;4284889;3.337309321198285e-05;1;0;Young +11848;Croatia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;61;1;2.3245437076941619e-07;4284889;1.423607472678989e-05;0;1;Old +11849;Croatia;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11850;Croatia;M;Not stated;Transportation and storage   ;Y15-29;32;1;1.2194327646920193e-07;4284889;7.46810477470945e-06;1;0;Young +11851;Croatia;M;Not stated;Transportation and storage   ;Y30-49;94;1;3.582083746282807e-07;4284889;2.193755777570901e-05;1;0;Young +11852;Croatia;M;Not stated;Transportation and storage   ;Y50-64;43;1;1.638612777554901e-07;4284889;1.0035265791015824e-05;0;1;Old +11853;Croatia;M;Not stated;Accommodation and food service activities   ;Y15-29;31;1;1.1813254907953938e-07;4284889;7.2347265004997795e-06;1;0;Young +11854;Croatia;M;Not stated;Accommodation and food service activities   ;Y30-49;58;1;2.2102218860042852e-07;4284889;1.3535939904160878e-05;1;0;Young +11855;Croatia;M;Not stated;Accommodation and food service activities   ;Y50-64;36;1;1.3718618602785217e-07;4284889;8.401617871548131e-06;0;1;Old +11856;Croatia;M;Not stated;Information and communication   ;Y15-29;45;1;1.7148273253481523e-07;4284889;1.0502022339435164e-05;1;0;Young +11857;Croatia;M;Not stated;Information and communication   ;Y30-49;119;1;4.5347655936984473e-07;4284889;2.7772014630950766e-05;1;0;Young +11858;Croatia;M;Not stated;Information and communication   ;Y50-64;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;0;1;Old +11859;Croatia;M;Not stated;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11860;Croatia;M;Not stated;Financial and insurance activities   ;Y15-29;19;1;7.240382040358865e-08;4284889;4.434187209983736e-06;1;0;Young +11861;Croatia;M;Not stated;Financial and insurance activities   ;Y30-49;24;1;9.145745735190145e-08;4284889;5.601078581032087e-06;1;0;Young +11862;Croatia;M;Not stated;Financial and insurance activities   ;Y50-64;10;1;3.8107273896625604e-08;4284889;2.333782742096703e-06;0;1;Old +11863;Croatia;M;Not stated;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;1;0;Young +11864;Croatia;M;Not stated;Real estate activities   ;Y30-49;12;1;4.5728728675950726e-08;4284889;2.8005392905160435e-06;1;0;Young +11865;Croatia;M;Not stated;Real estate activities   ;Y50-64;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11866;Croatia;M;Not stated;Professional, scientific and technical activities   ;Y15-29;48;1;1.829149147038029e-07;4284889;1.1202157162064174e-05;1;0;Young +11867;Croatia;M;Not stated;Professional, scientific and technical activities   ;Y30-49;109;1;4.153692854732191e-07;4284889;2.5438231888854065e-05;1;0;Young +11868;Croatia;M;Not stated;Professional, scientific and technical activities   ;Y50-64;47;1;1.7910418731414036e-07;4284889;1.0968778887854505e-05;0;1;Old +11869;Croatia;M;Not stated;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11870;Croatia;M;Not stated;Administrative and support service activities   ;Y15-29;29;1;1.1051109430021426e-07;4284889;6.767969952080439e-06;1;0;Young +11871;Croatia;M;Not stated;Administrative and support service activities   ;Y30-49;50;1;1.9053636948312803e-07;4284889;1.1668913710483516e-05;1;0;Young +11872;Croatia;M;Not stated;Administrative and support service activities   ;Y50-64;28;1;1.067003669105517e-07;4284889;6.534591677870769e-06;0;1;Old +11873;Croatia;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;70;1;2.6675091727637925e-07;4284889;1.633647919467692e-05;1;0;Young +11874;Croatia;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;229;1;8.726565722327264e-07;4284889;5.34436247940145e-05;1;0;Young +11875;Croatia;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;109;1;4.153692854732191e-07;4284889;2.5438231888854065e-05;0;1;Old +11876;Croatia;M;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;13;1;4.953945606561329e-08;4284889;3.033917564725714e-06;0;1;Old +11877;Croatia;M;Not stated;Education   ;Y15-29;104;1;3.963156485249063e-07;4284889;2.4271340517805713e-05;1;0;Young +11878;Croatia;M;Not stated;Education   ;Y30-49;129;1;4.915838332664703e-07;4284889;3.010579737304747e-05;1;0;Young +11879;Croatia;M;Not stated;Education   ;Y50-64;74;1;2.819938268350295e-07;4284889;1.72699922915156e-05;0;1;Old +11880;Croatia;M;Not stated;Human health and social work activities   ;Y15-29;33;1;1.257540038588645e-07;4284889;7.70148304891912e-06;1;0;Young +11881;Croatia;M;Not stated;Human health and social work activities   ;Y30-49;59;1;2.2483291599009106e-07;4284889;1.3769318178370547e-05;1;0;Young +11882;Croatia;M;Not stated;Human health and social work activities   ;Y50-64;51;1;1.943470968727906e-07;4284889;1.1902291984693186e-05;0;1;Old +11883;Croatia;M;Not stated;Human health and social work activities   ;Y65-84;6;1;2.2864364337975363e-08;4284889;1.4002696452580218e-06;0;1;Old +11884;Croatia;M;Not stated;Arts, entertainment and recreation   ;Y15-29;15;1;5.716091084493841e-08;4284889;3.5006741131450546e-06;1;0;Young +11885;Croatia;M;Not stated;Arts, entertainment and recreation   ;Y30-49;27;1;1.0288963952088914e-07;4284889;6.3012134036610986e-06;1;0;Young +11886;Croatia;M;Not stated;Arts, entertainment and recreation   ;Y50-64;11;1;4.1918001286288165e-08;4284889;2.5671610163063733e-06;0;1;Old +11887;Croatia;M;Not stated;Other service activities   ;Y15-29;14;1;5.335018345527585e-08;4284889;3.2672958389353844e-06;1;0;Young +11888;Croatia;M;Not stated;Other service activities   ;Y30-49;27;1;1.0288963952088914e-07;4284889;6.3012134036610986e-06;1;0;Young +11889;Croatia;M;Not stated;Other service activities   ;Y50-64;18;1;6.859309301392609e-08;4284889;4.200808935774066e-06;0;1;Old +11890;Croatia;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;4284889;7.001348226290109e-07;0;1;Old +11891;Croatia;M;Not stated;Not stated   ;Y15-29;1387;1;5.285478889461971e-06;4284889;0.0003236956663288127;1;0;Young +11892;Croatia;M;Not stated;Not stated   ;Y30-49;1987;1;7.571915323259508e-06;4284889;0.00046372263085461493;1;0;Young +11893;Croatia;M;Not stated;Not stated   ;Y50-64;1093;1;4.165125036901179e-06;4284889;0.00025508245371116966;0;1;Old +11894;Croatia;M;Not stated;Not stated   ;Y65-84;69;1;2.629401898867167e-07;4284889;1.6103100920467253e-05;0;1;Old +11895;Croatia;M;Not stated;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;4284889;2.333782742096703e-07;0;1;Old +11896;Hungary;F;Not applicable;Not applicable  ;Y15-29;535753;1;0.0020416086311938857;9937628;0.05391155716434545;1;0;Young +11897;Hungary;F;Not applicable;Not applicable  ;Y30-49;300781;1;0.0011461943949900946;9937628;0.030266880587600985;1;0;Young +11898;Hungary;F;Not applicable;Not applicable  ;Y50-64;566322;1;0.0021580987567684806;9937628;0.05698764332897146;0;1;Old +11899;Hungary;F;Not applicable;Not applicable  ;Y65-84;912298;1;0.0034765189761343748;9937628;0.09180238986607267;0;1;Old +11900;Hungary;F;Not applicable;Not applicable  ;Y_GE85;121218;1;0.0004619287527201163;9937628;0.01219788062100936;0;1;Old +11901;Hungary;F;Not applicable;Not applicable  ;Y_LT15;704414;1;0.0026843297234617628;9937628;0.07088351465762252;0;1;Old +11902;Hungary;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;531;1;2.02349624391082e-06;9937628;5.343327401669694e-05;1;0;Young +11903;Hungary;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;2778;1;1.0586200688482593e-05;9937628;0.0002795435691494993;1;0;Young +11904;Hungary;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;388;1;1.4785622271890734e-06;9937628;3.9043522257021496e-05;0;1;Old +11905;Hungary;F;Managers;Agriculture, forestry and fishing   ;Y15-29;81;1;3.086689185626674e-07;9937628;8.150838409326653e-06;1;0;Young +11906;Hungary;F;Managers;Agriculture, forestry and fishing   ;Y30-49;610;1;2.324543707694162e-06;9937628;6.13828571566575e-05;1;0;Young +11907;Hungary;F;Managers;Agriculture, forestry and fishing   ;Y50-64;544;1;2.073035699976433e-06;9937628;5.474143326757653e-05;0;1;Old +11908;Hungary;F;Managers;Agriculture, forestry and fishing   ;Y65-84;40;1;1.5242909558650242e-07;9937628;4.025105387321804e-06;0;1;Old +11909;Hungary;F;Managers;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;1;0;Young +11910;Hungary;F;Managers;Mining and quarrying   ;Y30-49;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;1;0;Young +11911;Hungary;F;Managers;Mining and quarrying   ;Y50-64;20;1;7.621454779325121e-08;9937628;2.012552693660902e-06;0;1;Old +11912;Hungary;F;Managers;Manufacturing   ;Y15-29;609;1;2.3207329803044993e-06;9937628;6.128222952197447e-05;1;0;Young +11913;Hungary;F;Managers;Manufacturing   ;Y30-49;5179;1;1.97357571510624e-05;9937628;0.0005211505200234905;1;0;Young +11914;Hungary;F;Managers;Manufacturing   ;Y50-64;2941;1;1.120734925299759e-05;9937628;0.0002959458736028356;0;1;Old +11915;Hungary;F;Managers;Manufacturing   ;Y65-84;145;1;5.525554715010713e-07;9937628;1.4591007029041538e-05;0;1;Old +11916;Hungary;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;20;1;7.621454779325121e-08;9937628;2.012552693660902e-06;1;0;Young +11917;Hungary;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;294;1;1.1203538525607928e-06;9937628;2.9584524596815257e-05;1;0;Young +11918;Hungary;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;177;1;6.744987479702732e-07;9937628;1.781109133889898e-05;0;1;Old +11919;Hungary;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +11920;Hungary;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;37;1;1.4099691341751475e-07;9937628;3.723222483272668e-06;1;0;Young +11921;Hungary;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;437;1;1.665287869282539e-06;9937628;4.397427635649071e-05;1;0;Young +11922;Hungary;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;254;1;9.679247569742904e-07;9937628;2.5559419209493454e-05;0;1;Old +11923;Hungary;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +11924;Hungary;F;Managers;Construction   ;Y15-29;102;1;3.886941937455812e-07;9937628;1.0264018737670599e-05;1;0;Young +11925;Hungary;F;Managers;Construction   ;Y30-49;870;1;3.3153328290064275e-06;9937628;8.754604217424923e-05;1;0;Young +11926;Hungary;F;Managers;Construction   ;Y50-64;529;1;2.0158747891314946e-06;9937628;5.323201874733085e-05;0;1;Old +11927;Hungary;F;Managers;Construction   ;Y65-84;25;1;9.526818474156401e-08;9937628;2.5156908670761274e-06;0;1;Old +11928;Hungary;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1890;1;7.202274766462239e-06;9937628;0.00019018622955095521;1;0;Young +11929;Hungary;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;11059;1;4.2142834202278256e-05;9937628;0.0011128410119597956;1;0;Young +11930;Hungary;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4684;1;1.7849447093179432e-05;9937628;0.0004713398408553832;0;1;Old +11931;Hungary;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;287;1;1.0936787608331548e-06;9937628;2.888013115403394e-05;0;1;Old +11932;Hungary;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +11933;Hungary;F;Managers;Transportation and storage   ;Y15-29;152;1;5.792305632287092e-07;9937628;1.5295400471822853e-05;1;0;Young +11934;Hungary;F;Managers;Transportation and storage   ;Y30-49;1713;1;6.5277760184919665e-06;9937628;0.00017237513821205625;1;0;Young +11935;Hungary;F;Managers;Transportation and storage   ;Y50-64;818;1;3.1171750047439744e-06;9937628;8.231340517073088e-05;0;1;Old +11936;Hungary;F;Managers;Transportation and storage   ;Y65-84;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;0;1;Old +11937;Hungary;F;Managers;Accommodation and food service activities   ;Y15-29;589;1;2.244518432511248e-06;9937628;5.926967682831356e-05;1;0;Young +11938;Hungary;F;Managers;Accommodation and food service activities   ;Y30-49;2408;1;9.176231554307446e-06;9937628;0.00024231134431677257;1;0;Young +11939;Hungary;F;Managers;Accommodation and food service activities   ;Y50-64;1182;1;4.504279774581147e-06;9937628;0.0001189418641953593;0;1;Old +11940;Hungary;F;Managers;Accommodation and food service activities   ;Y65-84;67;1;2.5531873510739155e-07;9937628;6.742051523764021e-06;0;1;Old +11941;Hungary;F;Managers;Information and communication   ;Y15-29;210;1;8.002527518291377e-07;9937628;2.113180328343947e-05;1;0;Young +11942;Hungary;F;Managers;Information and communication   ;Y30-49;1341;1;5.110185429537493e-06;9937628;0.00013494165810996346;1;0;Young +11943;Hungary;F;Managers;Information and communication   ;Y50-64;419;1;1.5966947762686128e-06;9937628;4.216297893219589e-05;0;1;Old +11944;Hungary;F;Managers;Information and communication   ;Y65-84;35;1;1.3337545863818962e-07;9937628;3.521967213906578e-06;0;1;Old +11945;Hungary;F;Managers;Financial and insurance activities   ;Y15-29;328;1;1.24991858380932e-06;9937628;3.3005864176038786e-05;1;0;Young +11946;Hungary;F;Managers;Financial and insurance activities   ;Y30-49;3002;1;1.1439803623767007e-05;9937628;0.00030208415931850136;1;0;Young +11947;Hungary;F;Managers;Financial and insurance activities   ;Y50-64;1262;1;4.809137965754151e-06;9937628;0.0001269920749700029;0;1;Old +11948;Hungary;F;Managers;Financial and insurance activities   ;Y65-84;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;0;1;Old +11949;Hungary;F;Managers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +11950;Hungary;F;Managers;Real estate activities   ;Y15-29;46;1;1.7529345992447778e-07;9937628;4.628871195420074e-06;1;0;Young +11951;Hungary;F;Managers;Real estate activities   ;Y30-49;452;1;1.7224487801274773e-06;9937628;4.548369087673638e-05;1;0;Young +11952;Hungary;F;Managers;Real estate activities   ;Y50-64;279;1;1.0631929417158544e-06;9937628;2.807511007656958e-05;0;1;Old +11953;Hungary;F;Managers;Real estate activities   ;Y65-84;35;1;1.3337545863818962e-07;9937628;3.521967213906578e-06;0;1;Old +11954;Hungary;F;Managers;Professional, scientific and technical activities   ;Y15-29;230;1;8.76467299622389e-07;9937628;2.314435597710037e-05;1;0;Young +11955;Hungary;F;Managers;Professional, scientific and technical activities   ;Y30-49;1735;1;6.611612021064543e-06;9937628;0.00017458894617508323;1;0;Young +11956;Hungary;F;Managers;Professional, scientific and technical activities   ;Y50-64;999;1;3.806916662272898e-06;9937628;0.00010052700704836204;0;1;Old +11957;Hungary;F;Managers;Professional, scientific and technical activities   ;Y65-84;116;1;4.4204437720085703e-07;9937628;1.167280562323323e-05;0;1;Old +11958;Hungary;F;Managers;Professional, scientific and technical activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +11959;Hungary;F;Managers;Administrative and support service activities   ;Y15-29;183;1;6.973631123082485e-07;9937628;1.841485714699725e-05;1;0;Young +11960;Hungary;F;Managers;Administrative and support service activities   ;Y30-49;1184;1;4.511901229360472e-06;9937628;0.00011914311946472538;1;0;Young +11961;Hungary;F;Managers;Administrative and support service activities   ;Y50-64;567;1;2.1606824299386718e-06;9937628;5.7055868865286564e-05;0;1;Old +11962;Hungary;F;Managers;Administrative and support service activities   ;Y65-84;36;1;1.3718618602785217e-07;9937628;3.6225948485896232e-06;0;1;Old +11963;Hungary;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;333;1;1.2689722207576327e-06;9937628;3.350900234945401e-05;1;0;Young +11964;Hungary;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;4973;1;1.8950747308791912e-05;9937628;0.0005004212272787833;1;0;Young +11965;Hungary;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;3377;1;1.2868826394890467e-05;9937628;0.0003398195223246433;0;1;Old +11966;Hungary;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;96;1;3.658298294076058e-07;9937628;9.660252929572329e-06;0;1;Old +11967;Hungary;F;Managers;Education   ;Y15-29;128;1;4.877731058768077e-07;9937628;1.2880337239429772e-05;1;0;Young +11968;Hungary;F;Managers;Education   ;Y30-49;3764;1;1.4343577894689879e-05;9937628;0.0003787624169469817;1;0;Young +11969;Hungary;F;Managers;Education   ;Y50-64;4204;1;1.6020297946141404e-05;9937628;0.00042303857620752157;0;1;Old +11970;Hungary;F;Managers;Education   ;Y65-84;97;1;3.6964055679726836e-07;9937628;9.760880564255374e-06;0;1;Old +11971;Hungary;F;Managers;Education   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +11972;Hungary;F;Managers;Human health and social work activities   ;Y15-29;228;1;8.688458448430638e-07;9937628;2.294310070773428e-05;1;0;Young +11973;Hungary;F;Managers;Human health and social work activities   ;Y30-49;4451;1;1.6961547611388058e-05;9937628;0.0004478936019742337;1;0;Young +11974;Hungary;F;Managers;Human health and social work activities   ;Y50-64;2949;1;1.1237835072114891e-05;9937628;0.0002967508946803;0;1;Old +11975;Hungary;F;Managers;Human health and social work activities   ;Y65-84;142;1;5.411232893320836e-07;9937628;1.4289124124992402e-05;0;1;Old +11976;Hungary;F;Managers;Arts, entertainment and recreation   ;Y15-29;90;1;3.4296546506963047e-07;9937628;9.056487121474059e-06;1;0;Young +11977;Hungary;F;Managers;Arts, entertainment and recreation   ;Y30-49;678;1;2.5836731701912162e-06;9937628;6.822553631510457e-05;1;0;Young +11978;Hungary;F;Managers;Arts, entertainment and recreation   ;Y50-64;514;1;1.958713878286556e-06;9937628;5.172260422708518e-05;0;1;Old +11979;Hungary;F;Managers;Arts, entertainment and recreation   ;Y65-84;29;1;1.1051109430021426e-07;9937628;2.9182014058083076e-06;0;1;Old +11980;Hungary;F;Managers;Arts, entertainment and recreation   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +11981;Hungary;F;Managers;Other service activities   ;Y15-29;146;1;5.563661988907339e-07;9937628;1.4691634663724583e-05;1;0;Young +11982;Hungary;F;Managers;Other service activities   ;Y30-49;912;1;3.475383379372255e-06;9937628;9.177240283093712e-05;1;0;Young +11983;Hungary;F;Managers;Other service activities   ;Y50-64;567;1;2.1606824299386718e-06;9937628;5.7055868865286564e-05;0;1;Old +11984;Hungary;F;Managers;Other service activities   ;Y65-84;71;1;2.705616446660418e-07;9937628;7.144562062496201e-06;0;1;Old +11985;Hungary;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;1;0;Young +11986;Hungary;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;1;0;Young +11987;Hungary;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;1;0;Young +11988;Hungary;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;30;1;1.1432182168987682e-07;9937628;3.0188290404913525e-06;1;0;Young +11989;Hungary;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +11990;Hungary;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;331;1;1.2613507659783075e-06;9937628;3.330774708008792e-05;1;0;Young +11991;Hungary;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;750;1;2.8580455422469205e-06;9937628;7.547072601228381e-05;1;0;Young +11992;Hungary;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;310;1;1.1813254907953937e-06;9937628;3.119456675174398e-05;0;1;Old +11993;Hungary;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;32;1;1.2194327646920193e-07;9937628;3.220084309857443e-06;0;1;Old +11994;Hungary;F;Professionals;Mining and quarrying   ;Y15-29;36;1;1.3718618602785217e-07;9937628;3.6225948485896232e-06;1;0;Young +11995;Hungary;F;Professionals;Mining and quarrying   ;Y30-49;62;1;2.3626509815907876e-07;9937628;6.2389133503487955e-06;1;0;Young +11996;Hungary;F;Professionals;Mining and quarrying   ;Y50-64;26;1;9.907891213122657e-08;9937628;2.6163185017591723e-06;0;1;Old +11997;Hungary;F;Professionals;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +11998;Hungary;F;Professionals;Manufacturing   ;Y15-29;4458;1;1.6988222703115695e-05;9937628;0.000448597995417015;1;0;Young +11999;Hungary;F;Professionals;Manufacturing   ;Y30-49;10415;1;3.968872576333557e-05;9937628;0.0010480368152239147;1;0;Young +12000;Hungary;F;Professionals;Manufacturing   ;Y50-64;2814;1;1.0723386874510445e-05;9937628;0.0002831661639980889;0;1;Old +12001;Hungary;F;Professionals;Manufacturing   ;Y65-84;182;1;6.93552384918586e-07;9937628;1.8314229512314205e-05;0;1;Old +12002;Hungary;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;357;1;1.360429678109534e-06;9937628;3.59240655818471e-05;1;0;Young +12003;Hungary;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;962;1;3.6659197488553834e-06;9937628;9.680378456508937e-05;1;0;Young +12004;Hungary;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;317;1;1.2080005825230317e-06;9937628;3.1898960194525295e-05;0;1;Old +12005;Hungary;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12006;Hungary;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;236;1;8.993316639603643e-07;9937628;2.3748121785198642e-05;1;0;Young +12007;Hungary;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;591;1;2.2521398872905733e-06;9937628;5.947093209767965e-05;1;0;Young +12008;Hungary;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;207;1;7.8882056966015e-07;9937628;2.0829920379390333e-05;0;1;Old +12009;Hungary;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;0;1;Old +12010;Hungary;F;Professionals;Construction   ;Y15-29;603;1;2.297868615966524e-06;9937628;6.067846371387619e-05;1;0;Young +12011;Hungary;F;Professionals;Construction   ;Y30-49;1535;1;5.84946654313203e-06;9937628;0.0001544634192384742;1;0;Young +12012;Hungary;F;Professionals;Construction   ;Y50-64;578;1;2.20260043122496e-06;9937628;5.816277284680006e-05;0;1;Old +12013;Hungary;F;Professionals;Construction   ;Y65-84;32;1;1.2194327646920193e-07;9937628;3.220084309857443e-06;0;1;Old +12014;Hungary;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3609;1;1.375291514929218e-05;9937628;0.0003631651335711097;1;0;Young +12015;Hungary;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8673;1;3.305043865054339e-05;9937628;0.00087274347560605;1;0;Young +12016;Hungary;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2603;1;9.919323395291645e-06;9937628;0.00026193373307996636;0;1;Old +12017;Hungary;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;500;1;1.9053636948312803e-06;9937628;5.0313817341522545e-05;0;1;Old +12018;Hungary;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12019;Hungary;F;Professionals;Transportation and storage   ;Y15-29;619;1;2.358840254201125e-06;9937628;6.22885058688049e-05;1;0;Young +12020;Hungary;F;Professionals;Transportation and storage   ;Y30-49;2354;1;8.970452275265667e-06;9937628;0.00023687745204388814;1;0;Young +12021;Hungary;F;Professionals;Transportation and storage   ;Y50-64;774;1;2.9495029995988217e-06;9937628;7.78857892446769e-05;0;1;Old +12022;Hungary;F;Professionals;Transportation and storage   ;Y65-84;21;1;8.002527518291377e-08;9937628;2.1131803283439468e-06;0;1;Old +12023;Hungary;F;Professionals;Accommodation and food service activities   ;Y15-29;644;1;2.454108438942689e-06;9937628;6.480419673588104e-05;1;0;Young +12024;Hungary;F;Professionals;Accommodation and food service activities   ;Y30-49;1318;1;5.0225386995752545e-06;9937628;0.00013262722251225343;1;0;Young +12025;Hungary;F;Professionals;Accommodation and food service activities   ;Y50-64;621;1;2.36646170898045e-06;9937628;6.2489761138171e-05;0;1;Old +12026;Hungary;F;Professionals;Accommodation and food service activities   ;Y65-84;23;1;8.764672996223889e-08;9937628;2.314435597710037e-06;0;1;Old +12027;Hungary;F;Professionals;Information and communication   ;Y15-29;3821;1;1.4560789355900643e-05;9937628;0.0003844981921239153;1;0;Young +12028;Hungary;F;Professionals;Information and communication   ;Y30-49;8678;1;3.30694922874917e-05;9937628;0.0008732466137794652;1;0;Young +12029;Hungary;F;Professionals;Information and communication   ;Y50-64;2152;1;8.20068534255383e-06;9937628;0.00021655066983791303;0;1;Old +12030;Hungary;F;Professionals;Information and communication   ;Y65-84;192;1;7.316596588152116e-07;9937628;1.9320505859144657e-05;0;1;Old +12031;Hungary;F;Professionals;Information and communication   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12032;Hungary;F;Professionals;Financial and insurance activities   ;Y15-29;3395;1;1.2937419487904392e-05;9937628;0.0003416308197489381;1;0;Young +12033;Hungary;F;Professionals;Financial and insurance activities   ;Y30-49;8184;1;3.118699295699839e-05;9937628;0.000823536562246041;1;0;Young +12034;Hungary;F;Professionals;Financial and insurance activities   ;Y50-64;2248;1;8.566515171961437e-06;9937628;0.00022621092276748535;0;1;Old +12035;Hungary;F;Professionals;Financial and insurance activities   ;Y65-84;129;1;4.915838332664703e-07;9937628;1.2980964874112816e-05;0;1;Old +12036;Hungary;F;Professionals;Real estate activities   ;Y15-29;289;1;1.10130021561248e-06;9937628;2.908138642340003e-05;1;0;Young +12037;Hungary;F;Professionals;Real estate activities   ;Y30-49;798;1;3.0409604569507232e-06;9937628;8.030085247706999e-05;1;0;Young +12038;Hungary;F;Professionals;Real estate activities   ;Y50-64;272;1;1.0365178499882164e-06;9937628;2.7370716633788265e-05;0;1;Old +12039;Hungary;F;Professionals;Real estate activities   ;Y65-84;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;0;1;Old +12040;Hungary;F;Professionals;Professional, scientific and technical activities   ;Y15-29;7784;1;2.9662702001133373e-05;9937628;0.000783285508372823;1;0;Young +12041;Hungary;F;Professionals;Professional, scientific and technical activities   ;Y30-49;17608;1;6.709928787717837e-05;9937628;0.0017718513914990579;1;0;Young +12042;Hungary;F;Professionals;Professional, scientific and technical activities   ;Y50-64;7435;1;2.8332758142141137e-05;9937628;0.0007481664638684403;0;1;Old +12043;Hungary;F;Professionals;Professional, scientific and technical activities   ;Y65-84;1244;1;4.740544872740225e-06;9937628;0.0001251807775457081;0;1;Old +12044;Hungary;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12045;Hungary;F;Professionals;Administrative and support service activities   ;Y15-29;1290;1;4.915838332664703e-06;9937628;0.00012980964874112816;1;0;Young +12046;Hungary;F;Professionals;Administrative and support service activities   ;Y30-49;2159;1;8.227360434281469e-06;9937628;0.00021725506328069434;1;0;Young +12047;Hungary;F;Professionals;Administrative and support service activities   ;Y50-64;533;1;2.0311176986901446e-06;9937628;5.363452928606303e-05;0;1;Old +12048;Hungary;F;Professionals;Administrative and support service activities   ;Y65-84;45;1;1.7148273253481523e-07;9937628;4.528243560737029e-06;0;1;Old +12049;Hungary;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;5617;1;2.1404855747734603e-05;9937628;0.0005652254240146642;1;0;Young +12050;Hungary;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;19577;1;7.460261010742395e-05;9937628;0.001969987204189974;1;0;Young +12051;Hungary;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;8062;1;3.0722084215459566e-05;9937628;0.0008112599908147095;0;1;Old +12052;Hungary;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;358;1;1.3642404054991967e-06;9937628;3.6024693216530144e-05;0;1;Old +12053;Hungary;F;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12054;Hungary;F;Professionals;Education   ;Y15-29;15522;1;5.915011054234226e-05;9937628;0.001561942145550226;1;0;Young +12055;Hungary;F;Professionals;Education   ;Y30-49;89793;1;0.0003421766444999703;9937628;0.009035657201094668;1;0;Young +12056;Hungary;F;Professionals;Education   ;Y50-64;49744;1;0.0001895608232713744;9937628;0.005005621059673395;0;1;Old +12057;Hungary;F;Professionals;Education   ;Y65-84;1858;1;7.080331489993038e-06;9937628;0.00018696614524109777;0;1;Old +12058;Hungary;F;Professionals;Education   ;Y_GE85;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;0;1;Old +12059;Hungary;F;Professionals;Human health and social work activities   ;Y15-29;5736;1;2.1858332307104448e-05;9937628;0.0005772001125419466;1;0;Young +12060;Hungary;F;Professionals;Human health and social work activities   ;Y30-49;19918;1;7.590206814729889e-05;9937628;0.002004301227616892;1;0;Young +12061;Hungary;F;Professionals;Human health and social work activities   ;Y50-64;10961;1;4.1769382918091325e-05;9937628;0.0011029795037608573;0;1;Old +12062;Hungary;F;Professionals;Human health and social work activities   ;Y65-84;1971;1;7.5109436850249065e-06;9937628;0.00019833706796028186;0;1;Old +12063;Hungary;F;Professionals;Human health and social work activities   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12064;Hungary;F;Professionals;Arts, entertainment and recreation   ;Y15-29;1774;1;6.760230389261383e-06;9937628;0.000178513423927722;1;0;Young +12065;Hungary;F;Professionals;Arts, entertainment and recreation   ;Y30-49;5389;1;2.053600990289154e-05;9937628;0.00054228232330693;1;0;Young +12066;Hungary;F;Professionals;Arts, entertainment and recreation   ;Y50-64;2649;1;1.0094616855216123e-05;9937628;0.00026656260427538643;0;1;Old +12067;Hungary;F;Professionals;Arts, entertainment and recreation   ;Y65-84;281;1;1.0708143964951796e-06;9937628;2.827636534593567e-05;0;1;Old +12068;Hungary;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12069;Hungary;F;Professionals;Other service activities   ;Y15-29;1025;1;3.905995574404124e-06;9937628;0.00010314332555012121;1;0;Young +12070;Hungary;F;Professionals;Other service activities   ;Y30-49;3036;1;1.1569368355015534e-05;9937628;0.0003055054988977249;1;0;Young +12071;Hungary;F;Professionals;Other service activities   ;Y50-64;1075;1;4.096531943887253e-06;9937628;0.00010817470728427346;0;1;Old +12072;Hungary;F;Professionals;Other service activities   ;Y65-84;121;1;4.610980141491698e-07;9937628;1.2175943796648455e-05;0;1;Old +12073;Hungary;F;Professionals;Other service activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12074;Hungary;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;1;0;Young +12075;Hungary;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;33;1;1.257540038588645e-07;9937628;3.320711944540488e-06;1;0;Young +12076;Hungary;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +12077;Hungary;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;140;1;5.335018345527585e-07;9937628;1.4087868855626312e-05;1;0;Young +12078;Hungary;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;277;1;1.0555714869365292e-06;9937628;2.7873854807203488e-05;1;0;Young +12079;Hungary;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;57;1;2.1721146121076594e-07;9937628;5.73577517693357e-06;0;1;Old +12080;Hungary;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +12081;Hungary;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;499;1;1.9015529674416177e-06;9937628;5.02131897068395e-05;1;0;Young +12082;Hungary;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;1655;1;6.306753829891537e-06;9937628;0.0001665387354004396;1;0;Young +12083;Hungary;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;1358;1;5.174967795161758e-06;9937628;0.00013665232789957524;0;1;Old +12084;Hungary;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;49;1;1.8672564209346548e-07;9937628;4.93075409946921e-06;0;1;Old +12085;Hungary;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12086;Hungary;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;25;1;9.526818474156401e-08;9937628;2.5156908670761274e-06;1;0;Young +12087;Hungary;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;107;1;4.07747830693894e-07;9937628;1.0767156911085825e-05;1;0;Young +12088;Hungary;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;72;1;2.7437237205570434e-07;9937628;7.2451896971792465e-06;0;1;Old +12089;Hungary;F;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12090;Hungary;F;Technicians and associate professionals;Manufacturing   ;Y15-29;8525;1;3.248645099687333e-05;9937628;0.0008578505856729594;1;0;Young +12091;Hungary;F;Technicians and associate professionals;Manufacturing   ;Y30-49;22300;1;8.49792207894751e-05;9937628;0.0022439962534319055;1;0;Young +12092;Hungary;F;Technicians and associate professionals;Manufacturing   ;Y50-64;8939;1;3.406409213619363e-05;9937628;0.00089951042643174;0;1;Old +12093;Hungary;F;Technicians and associate professionals;Manufacturing   ;Y65-84;255;1;9.71735484363953e-07;9937628;2.56600468441765e-05;0;1;Old +12094;Hungary;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;575;1;2.191168249055972e-06;9937628;5.7860889942750926e-05;1;0;Young +12095;Hungary;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1763;1;6.718312387975094e-06;9937628;0.0001774065199462085;1;0;Young +12096;Hungary;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1030;1;3.925049211352437e-06;9937628;0.00010364646372353645;0;1;Old +12097;Hungary;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +12098;Hungary;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;415;1;1.5814518667099626e-06;9937628;4.176046839346371e-05;1;0;Young +12099;Hungary;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1615;1;6.154324734305035e-06;9937628;0.00016251363001311783;1;0;Young +12100;Hungary;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1030;1;3.925049211352437e-06;9937628;0.00010364646372353645;0;1;Old +12101;Hungary;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;25;1;9.526818474156401e-08;9937628;2.5156908670761274e-06;0;1;Old +12102;Hungary;F;Technicians and associate professionals;Construction   ;Y15-29;1168;1;4.450929591125871e-06;9937628;0.00011753307730979667;1;0;Young +12103;Hungary;F;Technicians and associate professionals;Construction   ;Y30-49;4037;1;1.538390647206776e-05;9937628;0.000406233761215453;1;0;Young +12104;Hungary;F;Technicians and associate professionals;Construction   ;Y50-64;1849;1;7.046034943486074e-06;9937628;0.00018606049652895038;0;1;Old +12105;Hungary;F;Technicians and associate professionals;Construction   ;Y65-84;67;1;2.5531873510739155e-07;9937628;6.742051523764021e-06;0;1;Old +12106;Hungary;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;8167;1;3.112221059137413e-05;9937628;0.0008218258924564293;1;0;Young +12107;Hungary;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;25676;1;9.78442364569759e-05;9937628;0.002583715148121866;1;0;Young +12108;Hungary;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9988;1;3.806154516794966e-05;9937628;0.0010050688152142544;0;1;Old +12109;Hungary;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;525;1;2.0006318795728442e-06;9937628;5.282950820859867e-05;0;1;Old +12110;Hungary;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12111;Hungary;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;2202;1;8.391221712036959e-06;9937628;0.00022158205157206528;1;0;Young +12112;Hungary;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;6815;1;2.597010716055035e-05;9937628;0.0006857773303649522;1;0;Young +12113;Hungary;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;2877;1;1.0963462700059187e-05;9937628;0.0002895057049831207;0;1;Old +12114;Hungary;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;43;1;1.638612777554901e-07;9937628;4.326988291370939e-06;0;1;Old +12115;Hungary;F;Technicians and associate professionals;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12116;Hungary;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;1232;1;4.694816144064274e-06;9937628;0.00012397324592951155;1;0;Young +12117;Hungary;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2114;1;8.055877701746653e-06;9937628;0.00021272681971995733;1;0;Young +12118;Hungary;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;855;1;3.2581719181614894e-06;9937628;8.603662765400355e-05;0;1;Old +12119;Hungary;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;40;1;1.5242909558650242e-07;9937628;4.025105387321804e-06;0;1;Old +12120;Hungary;F;Technicians and associate professionals;Information and communication   ;Y15-29;2938;1;1.1195917070828602e-05;9937628;0.00029564399069878646;1;0;Young +12121;Hungary;F;Technicians and associate professionals;Information and communication   ;Y30-49;5896;1;2.2468048689450457e-05;9937628;0.0005933005340912339;1;0;Young +12122;Hungary;F;Technicians and associate professionals;Information and communication   ;Y50-64;1714;1;6.531586745881629e-06;9937628;0.00017247576584673927;0;1;Old +12123;Hungary;F;Technicians and associate professionals;Information and communication   ;Y65-84;101;1;3.848834663559186e-07;9937628;1.0163391102987553e-05;0;1;Old +12124;Hungary;F;Technicians and associate professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12125;Hungary;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;8062;1;3.0722084215459566e-05;9937628;0.0008112599908147095;1;0;Young +12126;Hungary;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;22168;1;8.447620477403964e-05;9937628;0.0022307134056537437;1;0;Young +12127;Hungary;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;8255;1;3.145755460166444e-05;9937628;0.0008306811243085372;0;1;Old +12128;Hungary;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;320;1;1.2194327646920193e-06;9937628;3.220084309857443e-05;0;1;Old +12129;Hungary;F;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12130;Hungary;F;Technicians and associate professionals;Real estate activities   ;Y15-29;996;1;3.79548448010391e-06;9937628;0.00010022512414431291;1;0;Young +12131;Hungary;F;Technicians and associate professionals;Real estate activities   ;Y30-49;4147;1;1.5803086484930638e-05;9937628;0.000417302801030588;1;0;Young +12132;Hungary;F;Technicians and associate professionals;Real estate activities   ;Y50-64;2076;1;7.911070060939476e-06;9937628;0.0002089029696020016;0;1;Old +12133;Hungary;F;Technicians and associate professionals;Real estate activities   ;Y65-84;191;1;7.27848931425549e-07;9937628;1.9219878224461612e-05;0;1;Old +12134;Hungary;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;5103;1;1.9446141869448047e-05;9937628;0.0005135028197875791;1;0;Young +12135;Hungary;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;14412;1;5.492020313981682e-05;9937628;0.0014502454710520459;1;0;Young +12136;Hungary;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;7414;1;2.8252732866958224e-05;9937628;0.0007460532835400962;0;1;Old +12137;Hungary;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;856;1;3.261982645551152e-06;9937628;8.61372552886866e-05;0;1;Old +12138;Hungary;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +12139;Hungary;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2644;1;1.007556321826781e-05;9937628;0.0002660594661019712;1;0;Young +12140;Hungary;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;4639;1;1.7677964360644617e-05;9937628;0.00046681159729464617;1;0;Young +12141;Hungary;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;1536;1;5.853277270521693e-06;9937628;0.00015456404687315726;0;1;Old +12142;Hungary;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;84;1;3.201011007316551e-07;9937628;8.452721313375787e-06;0;1;Old +12143;Hungary;F;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12144;Hungary;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;9650;1;3.677351931024371e-05;9937628;0.0009710566746913851;1;0;Young +12145;Hungary;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;39244;1;0.00014954818567991754;9937628;0.003949030895501421;1;0;Young +12146;Hungary;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;20415;1;7.779599965996117e-05;9937628;0.0020543131620543655;0;1;Old +12147;Hungary;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;323;1;1.2308649468610071e-06;9937628;3.250272600262357e-05;0;1;Old +12148;Hungary;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12149;Hungary;F;Technicians and associate professionals;Education   ;Y15-29;1419;1;5.407422165931174e-06;9937628;0.00014279061361524098;1;0;Young +12150;Hungary;F;Technicians and associate professionals;Education   ;Y30-49;5975;1;2.27690961532338e-05;9937628;0.0006012501172311944;1;0;Young +12151;Hungary;F;Technicians and associate professionals;Education   ;Y50-64;3791;1;1.4446467534210767e-05;9937628;0.00038147936308342395;0;1;Old +12152;Hungary;F;Technicians and associate professionals;Education   ;Y65-84;161;1;6.135271097356723e-07;9937628;1.620104918397026e-05;0;1;Old +12153;Hungary;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;10784;1;4.109488417012105e-05;9937628;0.0010851684124219582;1;0;Young +12154;Hungary;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;71341;1;0.0002718611027059167;9937628;0.00717887608592312;1;0;Young +12155;Hungary;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;30698;1;0.00011698170940786128;9937628;0.003089067129500118;0;1;Old +12156;Hungary;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;1003;1;3.822159571831548e-06;9937628;0.00010092951758709422;0;1;Old +12157;Hungary;F;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12158;Hungary;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2091;1;7.968230971784414e-06;9937628;0.0002104123841222473;1;0;Young +12159;Hungary;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;4340;1;1.653855687113551e-05;9937628;0.00043672393452441567;1;0;Young +12160;Hungary;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;1894;1;7.21751767602089e-06;9937628;0.0001905887400896874;0;1;Old +12161;Hungary;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;154;1;5.868520180080343e-07;9937628;1.5496655741188944e-05;0;1;Old +12162;Hungary;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12163;Hungary;F;Technicians and associate professionals;Other service activities   ;Y15-29;1623;1;6.184810553422336e-06;9937628;0.0001633186510905822;1;0;Young +12164;Hungary;F;Technicians and associate professionals;Other service activities   ;Y30-49;5013;1;1.9103176404378416e-05;9937628;0.000504446332666105;1;0;Young +12165;Hungary;F;Technicians and associate professionals;Other service activities   ;Y50-64;2148;1;8.18544243299518e-06;9937628;0.00021614815929918085;0;1;Old +12166;Hungary;F;Technicians and associate professionals;Other service activities   ;Y65-84;177;1;6.744987479702732e-07;9937628;1.781109133889898e-05;0;1;Old +12167;Hungary;F;Technicians and associate professionals;Other service activities   ;Y_GE85;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;0;1;Old +12168;Hungary;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;26;1;9.907891213122657e-08;9937628;2.6163185017591723e-06;1;0;Young +12169;Hungary;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;74;1;2.819938268350295e-07;9937628;7.446444966545336e-06;1;0;Young +12170;Hungary;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;47;1;1.7910418731414036e-07;9937628;4.729498830103119e-06;0;1;Old +12171;Hungary;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12172;Hungary;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;91;1;3.46776192459293e-07;9937628;9.157114756157102e-06;1;0;Young +12173;Hungary;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;195;1;7.430918409841993e-07;9937628;1.9622388763193793e-05;1;0;Young +12174;Hungary;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;63;1;2.400758255487413e-07;9937628;6.339540985031841e-06;0;1;Old +12175;Hungary;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12176;Hungary;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;565;1;2.1530609751593466e-06;9937628;5.6854613595920474e-05;1;0;Young +12177;Hungary;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2288;1;8.718944267547939e-06;9937628;0.00023023602815480716;1;0;Young +12178;Hungary;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2122;1;8.086363520863954e-06;9937628;0.0002135318407974217;0;1;Old +12179;Hungary;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;92;1;3.5058691984895557e-07;9937628;9.257742390840148e-06;0;1;Old +12180;Hungary;F;Clerical support workers;Mining and quarrying   ;Y15-29;33;1;1.257540038588645e-07;9937628;3.320711944540488e-06;1;0;Young +12181;Hungary;F;Clerical support workers;Mining and quarrying   ;Y30-49;124;1;4.725301963181575e-07;9937628;1.2477826700697591e-05;1;0;Young +12182;Hungary;F;Clerical support workers;Mining and quarrying   ;Y50-64;112;1;4.268014676422068e-07;9937628;1.127029508450105e-05;0;1;Old +12183;Hungary;F;Clerical support workers;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12184;Hungary;F;Clerical support workers;Manufacturing   ;Y15-29;4961;1;1.8905018580115964e-05;9937628;0.0004992136956625867;1;0;Young +12185;Hungary;F;Clerical support workers;Manufacturing   ;Y30-49;14252;1;5.431048675747081e-05;9937628;0.0014341450495027586;1;0;Young +12186;Hungary;F;Clerical support workers;Manufacturing   ;Y50-64;7422;1;2.8283218686075525e-05;9937628;0.0007468583046175607;0;1;Old +12187;Hungary;F;Clerical support workers;Manufacturing   ;Y65-84;216;1;8.231171161671131e-07;9937628;2.173556909153774e-05;0;1;Old +12188;Hungary;F;Clerical support workers;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12189;Hungary;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;539;1;2.0539820630281202e-06;9937628;5.4238295094161304e-05;1;0;Young +12190;Hungary;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1348;1;5.136860521265132e-06;9937628;0.00013564605155274477;1;0;Young +12191;Hungary;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;872;1;3.3229542837857527e-06;9937628;8.774729744361532e-05;0;1;Old +12192;Hungary;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;16;1;6.097163823460096e-08;9937628;1.6100421549287215e-06;0;1;Old +12193;Hungary;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;514;1;1.958713878286556e-06;9937628;5.172260422708518e-05;1;0;Young +12194;Hungary;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1782;1;6.7907162083786826e-06;9937628;0.00017931844500518635;1;0;Young +12195;Hungary;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1105;1;4.21085376557713e-06;9937628;0.00011119353632476482;0;1;Old +12196;Hungary;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +12197;Hungary;F;Clerical support workers;Construction   ;Y15-29;1206;1;4.595737231933048e-06;9937628;0.00012135692742775237;1;0;Young +12198;Hungary;F;Clerical support workers;Construction   ;Y30-49;4634;1;1.7658910723696306e-05;9937628;0.00046630845912123096;1;0;Young +12199;Hungary;F;Clerical support workers;Construction   ;Y50-64;2220;1;8.459814805050884e-06;9937628;0.00022339334899636008;0;1;Old +12200;Hungary;F;Clerical support workers;Construction   ;Y65-84;66;1;2.51508007717729e-07;9937628;6.641423889080976e-06;0;1;Old +12201;Hungary;F;Clerical support workers;Construction   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12202;Hungary;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5261;1;2.004823679701473e-05;9937628;0.0005294019860675002;1;0;Young +12203;Hungary;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;14116;1;5.37922278324767e-05;9937628;0.0014204596911858644;1;0;Young +12204;Hungary;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5253;1;2.001775097789743e-05;9937628;0.0005285969649900359;0;1;Old +12205;Hungary;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;188;1;7.164167492565614e-07;9937628;1.8917995320412476e-05;0;1;Old +12206;Hungary;F;Clerical support workers;Transportation and storage   ;Y15-29;4614;1;1.7582696175903054e-05;9937628;0.00046429590642757003;1;0;Young +12207;Hungary;F;Clerical support workers;Transportation and storage   ;Y30-49;20847;1;7.94422338922954e-05;9937628;0.002097784300237441;1;0;Young +12208;Hungary;F;Clerical support workers;Transportation and storage   ;Y50-64;9134;1;3.4807183977177826e-05;9937628;0.0009191328151949338;0;1;Old +12209;Hungary;F;Clerical support workers;Transportation and storage   ;Y65-84;124;1;4.725301963181575e-07;9937628;1.2477826700697591e-05;0;1;Old +12210;Hungary;F;Clerical support workers;Transportation and storage   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12211;Hungary;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;3282;1;1.2506807292872524e-05;9937628;0.000330259897029754;1;0;Young +12212;Hungary;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;3074;1;1.1714175995822711e-05;9937628;0.0003093293490156806;1;0;Young +12213;Hungary;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;1132;1;4.313743405098018e-06;9937628;0.00011391048246120704;0;1;Old +12214;Hungary;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;55;1;2.0959000643144082e-07;9937628;5.5345199075674795e-06;0;1;Old +12215;Hungary;F;Clerical support workers;Information and communication   ;Y15-29;3125;1;1.1908523092695502e-05;9937628;0.0003144613583845159;1;0;Young +12216;Hungary;F;Clerical support workers;Information and communication   ;Y30-49;4973;1;1.8950747308791912e-05;9937628;0.0005004212272787833;1;0;Young +12217;Hungary;F;Clerical support workers;Information and communication   ;Y50-64;1526;1;5.815169996625068e-06;9937628;0.00015355777052632682;0;1;Old +12218;Hungary;F;Clerical support workers;Information and communication   ;Y65-84;70;1;2.6675091727637925e-07;9937628;7.043934427813156e-06;0;1;Old +12219;Hungary;F;Clerical support workers;Financial and insurance activities   ;Y15-29;2434;1;9.275310466438672e-06;9937628;0.00024492766281853176;1;0;Young +12220;Hungary;F;Clerical support workers;Financial and insurance activities   ;Y30-49;5268;1;2.0074911888742367e-05;9937628;0.0005301063795102815;1;0;Young +12221;Hungary;F;Clerical support workers;Financial and insurance activities   ;Y50-64;2246;1;8.558893717182112e-06;9937628;0.00022600966749811928;0;1;Old +12222;Hungary;F;Clerical support workers;Financial and insurance activities   ;Y65-84;58;1;2.2102218860042852e-07;9937628;5.836402811616615e-06;0;1;Old +12223;Hungary;F;Clerical support workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12224;Hungary;F;Clerical support workers;Real estate activities   ;Y15-29;701;1;2.6713199001534548e-06;9937628;7.05399719128146e-05;1;0;Young +12225;Hungary;F;Clerical support workers;Real estate activities   ;Y30-49;1802;1;6.866930756171934e-06;9937628;0.00018133099769884726;1;0;Young +12226;Hungary;F;Clerical support workers;Real estate activities   ;Y50-64;976;1;3.719269932310659e-06;9937628;9.8212571450652e-05;0;1;Old +12227;Hungary;F;Clerical support workers;Real estate activities   ;Y65-84;99;1;3.772620115765935e-07;9937628;9.962135833621464e-06;0;1;Old +12228;Hungary;F;Clerical support workers;Real estate activities   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12229;Hungary;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;4171;1;1.589454394228254e-05;9937628;0.00041971786426298107;1;0;Young +12230;Hungary;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;11381;1;4.3369888421749604e-05;9937628;0.001145243110327736;1;0;Young +12231;Hungary;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;5704;1;2.1736389030635244e-05;9937628;0.0005739800282320892;0;1;Old +12232;Hungary;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;530;1;2.0196855165211572e-06;9937628;5.3332646382013896e-05;0;1;Old +12233;Hungary;F;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12234;Hungary;F;Clerical support workers;Administrative and support service activities   ;Y15-29;4243;1;1.6168916314338244e-05;9937628;0.0004269630539601603;1;0;Young +12235;Hungary;F;Clerical support workers;Administrative and support service activities   ;Y30-49;6968;1;2.655314845116872e-05;9937628;0.0007011733584714582;1;0;Young +12236;Hungary;F;Clerical support workers;Administrative and support service activities   ;Y50-64;2647;1;1.0086995400436798e-05;9937628;0.0002663613490060203;0;1;Old +12237;Hungary;F;Clerical support workers;Administrative and support service activities   ;Y65-84;126;1;4.801516510974826e-07;9937628;1.2679081970063682e-05;0;1;Old +12238;Hungary;F;Clerical support workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12239;Hungary;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;5714;1;2.177449630453187e-05;9937628;0.0005749863045789197;1;0;Young +12240;Hungary;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;15291;1;5.8269832515330213e-05;9937628;0.0015386971619384424;1;0;Young +12241;Hungary;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;8692;1;3.3122842470946974e-05;9937628;0.000874655400665028;0;1;Old +12242;Hungary;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;405;1;1.543344592813337e-06;9937628;4.075419204663326e-05;0;1;Old +12243;Hungary;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12244;Hungary;F;Clerical support workers;Education   ;Y15-29;1666;1;6.348671831177826e-06;9937628;0.00016764563938195313;1;0;Young +12245;Hungary;F;Clerical support workers;Education   ;Y30-49;6768;1;2.579100297323621e-05;9937628;0.0006810478315348492;1;0;Young +12246;Hungary;F;Clerical support workers;Education   ;Y50-64;4320;1;1.6462342323342263e-05;9937628;0.0004347113818307548;0;1;Old +12247;Hungary;F;Clerical support workers;Education   ;Y65-84;156;1;5.944734727873595e-07;9937628;1.5697911010555034e-05;0;1;Old +12248;Hungary;F;Clerical support workers;Education   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12249;Hungary;F;Clerical support workers;Human health and social work activities   ;Y15-29;1490;1;5.677983810597215e-06;9937628;0.0001499351756777372;1;0;Young +12250;Hungary;F;Clerical support workers;Human health and social work activities   ;Y30-49;5115;1;1.9491870598123998e-05;9937628;0.0005147103514037756;1;0;Young +12251;Hungary;F;Clerical support workers;Human health and social work activities   ;Y50-64;3275;1;1.2480132201144885e-05;9937628;0.00032955550358697267;0;1;Old +12252;Hungary;F;Clerical support workers;Human health and social work activities   ;Y65-84;131;1;4.992052880457954e-07;9937628;1.3182220143478906e-05;0;1;Old +12253;Hungary;F;Clerical support workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12254;Hungary;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;1464;1;5.578904898465988e-06;9937628;0.000147318857175978;1;0;Young +12255;Hungary;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2145;1;8.174010250826192e-06;9937628;0.00021584627639513172;1;0;Young +12256;Hungary;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;1061;1;4.043181760431977e-06;9937628;0.00010676592039871084;0;1;Old +12257;Hungary;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;72;1;2.7437237205570434e-07;9937628;7.2451896971792465e-06;0;1;Old +12258;Hungary;F;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12259;Hungary;F;Clerical support workers;Other service activities   ;Y15-29;1206;1;4.595737231933048e-06;9937628;0.00012135692742775237;1;0;Young +12260;Hungary;F;Clerical support workers;Other service activities   ;Y30-49;2436;1;9.282931921217997e-06;9937628;0.00024512891808789786;1;0;Young +12261;Hungary;F;Clerical support workers;Other service activities   ;Y50-64;1230;1;4.68719468928495e-06;9937628;0.00012377199066014545;0;1;Old +12262;Hungary;F;Clerical support workers;Other service activities   ;Y65-84;85;1;3.239118281213176e-07;9937628;8.553348948058832e-06;0;1;Old +12263;Hungary;F;Clerical support workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12264;Hungary;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;1;0;Young +12265;Hungary;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;21;1;8.002527518291377e-08;9937628;2.1131803283439468e-06;1;0;Young +12266;Hungary;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12267;Hungary;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;68;1;2.591294624970541e-07;9937628;6.842679158447066e-06;1;0;Young +12268;Hungary;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;157;1;5.98284200177022e-07;9937628;1.579853864523808e-05;1;0;Young +12269;Hungary;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;40;1;1.5242909558650242e-07;9937628;4.025105387321804e-06;0;1;Old +12270;Hungary;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12271;Hungary;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;235;1;8.955209365707018e-07;9937628;2.3647494150515597e-05;1;0;Young +12272;Hungary;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;806;1;3.0714462760680236e-06;9937628;8.110587355453434e-05;1;0;Young +12273;Hungary;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;624;1;2.377893891149438e-06;9937628;6.279164404222014e-05;0;1;Old +12274;Hungary;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;39;1;1.4861836819683987e-07;9937628;3.924477752638759e-06;0;1;Old +12275;Hungary;F;Service and sales workers;Mining and quarrying   ;Y15-29;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;1;0;Young +12276;Hungary;F;Service and sales workers;Mining and quarrying   ;Y30-49;30;1;1.1432182168987682e-07;9937628;3.0188290404913525e-06;1;0;Young +12277;Hungary;F;Service and sales workers;Mining and quarrying   ;Y50-64;26;1;9.907891213122657e-08;9937628;2.6163185017591723e-06;0;1;Old +12278;Hungary;F;Service and sales workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12279;Hungary;F;Service and sales workers;Manufacturing   ;Y15-29;2622;1;9.991727215695234e-06;9937628;0.00026384565813894424;1;0;Young +12280;Hungary;F;Service and sales workers;Manufacturing   ;Y30-49;6566;1;2.5021236040524372e-05;9937628;0.0006607210493288741;1;0;Young +12281;Hungary;F;Service and sales workers;Manufacturing   ;Y50-64;2700;1;1.0288963952088914e-05;9937628;0.00027169461364422176;0;1;Old +12282;Hungary;F;Service and sales workers;Manufacturing   ;Y65-84;133;1;5.068267428251205e-07;9937628;1.3383475412844997e-05;0;1;Old +12283;Hungary;F;Service and sales workers;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12284;Hungary;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;1;0;Young +12285;Hungary;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;88;1;3.353440102903053e-07;9937628;8.855231852107968e-06;1;0;Young +12286;Hungary;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;77;1;2.9342600900401714e-07;9937628;7.748327870594472e-06;0;1;Old +12287;Hungary;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;75;1;2.8580455422469204e-07;9937628;7.547072601228381e-06;1;0;Young +12288;Hungary;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;238;1;9.069531187396895e-07;9937628;2.3949377054564733e-05;1;0;Young +12289;Hungary;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;167;1;6.363914740736477e-07;9937628;1.680481499206853e-05;0;1;Old +12290;Hungary;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;0;1;Old +12291;Hungary;F;Service and sales workers;Construction   ;Y15-29;213;1;8.116849339981254e-07;9937628;2.1433686187488604e-05;1;0;Young +12292;Hungary;F;Service and sales workers;Construction   ;Y30-49;746;1;2.84280263268827e-06;9937628;7.506821547355163e-05;1;0;Young +12293;Hungary;F;Service and sales workers;Construction   ;Y50-64;291;1;1.1089216703918052e-06;9937628;2.928264169276612e-05;0;1;Old +12294;Hungary;F;Service and sales workers;Construction   ;Y65-84;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;0;1;Old +12295;Hungary;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;43501;1;0.00016577045217771105;9937628;0.004377402736347145;1;0;Young +12296;Hungary;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;122165;1;0.0004655375115581267;9937628;0.012293174991054203;1;0;Young +12297;Hungary;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;44075;1;0.00016795780969937736;9937628;0.004435162998655213;0;1;Old +12298;Hungary;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2234;1;8.51316498850616e-06;9937628;0.00022480213588192273;0;1;Old +12299;Hungary;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;0;1;Old +12300;Hungary;F;Service and sales workers;Transportation and storage   ;Y15-29;1097;1;4.180367946459829e-06;9937628;0.00011038851524730046;1;0;Young +12301;Hungary;F;Service and sales workers;Transportation and storage   ;Y30-49;3571;1;1.3608107508485003e-05;9937628;0.000359341283453154;1;0;Young +12302;Hungary;F;Service and sales workers;Transportation and storage   ;Y50-64;1499;1;5.712280357104178e-06;9937628;0.00015084082438988458;0;1;Old +12303;Hungary;F;Service and sales workers;Transportation and storage   ;Y65-84;32;1;1.2194327646920193e-07;9937628;3.220084309857443e-06;0;1;Old +12304;Hungary;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;25953;1;9.889980794391243e-05;9937628;0.002611589002929069;1;0;Young +12305;Hungary;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;32515;1;0.00012390580107487814;9937628;0.0032719075417192113;1;0;Young +12306;Hungary;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;11047;1;4.2097105473602305e-05;9937628;0.001111633480343599;0;1;Old +12307;Hungary;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;556;1;2.1187644286523836e-06;9937628;5.5948964883773066e-05;0;1;Old +12308;Hungary;F;Service and sales workers;Accommodation and food service activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12309;Hungary;F;Service and sales workers;Information and communication   ;Y15-29;898;1;3.4220331959169795e-06;9937628;9.036361594537449e-05;1;0;Young +12310;Hungary;F;Service and sales workers;Information and communication   ;Y30-49;1118;1;4.260393221642743e-06;9937628;0.0001125016955756444;1;0;Young +12311;Hungary;F;Service and sales workers;Information and communication   ;Y50-64;356;1;1.3566189507198715e-06;9937628;3.5823437947164054e-05;0;1;Old +12312;Hungary;F;Service and sales workers;Information and communication   ;Y65-84;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;0;1;Old +12313;Hungary;F;Service and sales workers;Financial and insurance activities   ;Y15-29;467;1;1.7796096909724157e-06;9937628;4.699310539698206e-05;1;0;Young +12314;Hungary;F;Service and sales workers;Financial and insurance activities   ;Y30-49;747;1;2.8466133600779327e-06;9937628;7.516884310823469e-05;1;0;Young +12315;Hungary;F;Service and sales workers;Financial and insurance activities   ;Y50-64;309;1;1.1775147634057311e-06;9937628;3.109393911706093e-05;0;1;Old +12316;Hungary;F;Service and sales workers;Financial and insurance activities   ;Y65-84;30;1;1.1432182168987682e-07;9937628;3.0188290404913525e-06;0;1;Old +12317;Hungary;F;Service and sales workers;Real estate activities   ;Y15-29;353;1;1.3451867685508839e-06;9937628;3.552155504311492e-05;1;0;Young +12318;Hungary;F;Service and sales workers;Real estate activities   ;Y30-49;1400;1;5.335018345527585e-06;9937628;0.00014087868855626313;1;0;Young +12319;Hungary;F;Service and sales workers;Real estate activities   ;Y50-64;1304;1;4.969188516119979e-06;9937628;0.00013121843562669078;0;1;Old +12320;Hungary;F;Service and sales workers;Real estate activities   ;Y65-84;280;1;1.067003669105517e-06;9937628;2.8175737711252624e-05;0;1;Old +12321;Hungary;F;Service and sales workers;Real estate activities   ;Y_GE85;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12322;Hungary;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;788;1;3.0028531830540976e-06;9937628;7.929457613023953e-05;1;0;Young +12323;Hungary;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;1402;1;5.3426398003069095e-06;9937628;0.0001410799438256292;1;0;Young +12324;Hungary;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;528;1;2.012064061741832e-06;9937628;5.3131391112647806e-05;0;1;Old +12325;Hungary;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;63;1;2.400758255487413e-07;9937628;6.339540985031841e-06;0;1;Old +12326;Hungary;F;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12327;Hungary;F;Service and sales workers;Administrative and support service activities   ;Y15-29;1672;1;6.3715361955158016e-06;9937628;0.0001682494051900514;1;0;Young +12328;Hungary;F;Service and sales workers;Administrative and support service activities   ;Y30-49;4228;1;1.6111755403493307e-05;9937628;0.00042545363943991465;1;0;Young +12329;Hungary;F;Service and sales workers;Administrative and support service activities   ;Y50-64;2254;1;8.58937953629941e-06;9937628;0.00022681468857558364;0;1;Old +12330;Hungary;F;Service and sales workers;Administrative and support service activities   ;Y65-84;163;1;6.211485645149974e-07;9937628;1.6402304453336348e-05;0;1;Old +12331;Hungary;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2971;1;1.1321671074687467e-05;9937628;0.00029896470264332696;1;0;Young +12332;Hungary;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;8179;1;3.116793932005008e-05;9937628;0.0008230334240726258;1;0;Young +12333;Hungary;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;3141;1;1.1969494730930102e-05;9937628;0.0003160714005394446;0;1;Old +12334;Hungary;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;108;1;4.1155855808355654e-07;9937628;1.086778454576887e-05;0;1;Old +12335;Hungary;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12336;Hungary;F;Service and sales workers;Education   ;Y15-29;2868;1;1.0929166153552224e-05;9937628;0.0002886000562709733;1;0;Young +12337;Hungary;F;Service and sales workers;Education   ;Y30-49;15643;1;5.9611208556491435e-05;9937628;0.0015741180893468743;1;0;Young +12338;Hungary;F;Service and sales workers;Education   ;Y50-64;10371;1;3.9521053758190414e-05;9937628;0.0010436091992978606;0;1;Old +12339;Hungary;F;Service and sales workers;Education   ;Y65-84;221;1;8.421707531154259e-07;9937628;2.2238707264952963e-05;0;1;Old +12340;Hungary;F;Service and sales workers;Education   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12341;Hungary;F;Service and sales workers;Human health and social work activities   ;Y15-29;2280;1;8.688458448430638e-06;9937628;0.0002294310070773428;1;0;Young +12342;Hungary;F;Service and sales workers;Human health and social work activities   ;Y30-49;12025;1;4.582399686069229e-05;9937628;0.0012100473070636173;1;0;Young +12343;Hungary;F;Service and sales workers;Human health and social work activities   ;Y50-64;7376;1;2.8107925226151045e-05;9937628;0.0007422294334221406;0;1;Old +12344;Hungary;F;Service and sales workers;Human health and social work activities   ;Y65-84;146;1;5.563661988907339e-07;9937628;1.4691634663724583e-05;0;1;Old +12345;Hungary;F;Service and sales workers;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12346;Hungary;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;1191;1;4.538576321088109e-06;9937628;0.0001198475129075067;1;0;Young +12347;Hungary;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2235;1;8.516975715895823e-06;9937628;0.00022490276351660578;1;0;Young +12348;Hungary;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;1567;1;5.971409819601233e-06;9937628;0.00015768350354833165;0;1;Old +12349;Hungary;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;297;1;1.1317860347297806e-06;9937628;2.988640750086439e-05;0;1;Old +12350;Hungary;F;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12351;Hungary;F;Service and sales workers;Other service activities   ;Y15-29;9791;1;3.731083187218613e-05;9937628;0.0009852451711816945;1;0;Young +12352;Hungary;F;Service and sales workers;Other service activities   ;Y30-49;21345;1;8.133997613234736e-05;9937628;0.0021478968623095973;1;0;Young +12353;Hungary;F;Service and sales workers;Other service activities   ;Y50-64;6916;1;2.635499062690627e-05;9937628;0.0006959407214679398;0;1;Old +12354;Hungary;F;Service and sales workers;Other service activities   ;Y65-84;809;1;3.0828784582370114e-06;9937628;8.140775645858348e-05;0;1;Old +12355;Hungary;F;Service and sales workers;Other service activities   ;Y_GE85;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +12356;Hungary;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;561;1;2.1378180656006966e-06;9937628;5.645210305718829e-05;1;0;Young +12357;Hungary;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1062;1;4.04699248782164e-06;9937628;0.00010686654803339388;1;0;Young +12358;Hungary;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;754;1;2.8732884518055705e-06;9937628;7.5873236551016e-05;0;1;Old +12359;Hungary;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;55;1;2.0959000643144082e-07;9937628;5.5345199075674795e-06;0;1;Old +12360;Hungary;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12361;Hungary;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;154;1;5.868520180080343e-07;9937628;1.5496655741188944e-05;1;0;Young +12362;Hungary;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;130;1;4.953945606561329e-07;9937628;1.3081592508795861e-05;1;0;Young +12363;Hungary;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;38;1;1.448076408071773e-07;9937628;3.823850117955713e-06;0;1;Old +12364;Hungary;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12365;Hungary;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;2212;1;8.429328985933583e-06;9937628;0.00022258832791889575;1;0;Young +12366;Hungary;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;13783;1;5.252325561171907e-05;9937628;0.0013869506888364105;1;0;Young +12367;Hungary;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;10855;1;4.136544581478709e-05;9937628;0.0010923129744844545;0;1;Old +12368;Hungary;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;833;1;3.174335915588913e-06;9937628;8.382281969097656e-05;0;1;Old +12369;Hungary;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +12370;Hungary;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;1;0;Young +12371;Hungary;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;87;1;3.3153328290064277e-07;9937628;8.754604217424923e-06;1;0;Young +12372;Hungary;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;493;1;1.8786886031036423e-06;9937628;4.960942389874123e-05;1;0;Young +12373;Hungary;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;385;1;1.4671300450200858e-06;9937628;3.874163935297236e-05;0;1;Old +12374;Hungary;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;19;1;7.240382040358865e-08;9937628;1.9119250589778567e-06;0;1;Old +12375;Hungary;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12376;Hungary;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;1;0;Young +12377;Hungary;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;0;1;Old +12378;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;43;1;1.638612777554901e-07;9937628;4.326988291370939e-06;1;0;Young +12379;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;197;1;7.507132957635244e-07;9937628;1.9823644032559884e-05;1;0;Young +12380;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;79;1;3.010474637833423e-07;9937628;7.949583139960562e-06;0;1;Old +12381;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12382;Hungary;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;19;1;7.240382040358865e-08;9937628;1.9119250589778567e-06;1;0;Young +12383;Hungary;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;48;1;1.829149147038029e-07;9937628;4.830126464786164e-06;1;0;Young +12384;Hungary;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;38;1;1.448076408071773e-07;9937628;3.823850117955713e-06;0;1;Old +12385;Hungary;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12386;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;79;1;3.010474637833423e-07;9937628;7.949583139960562e-06;1;0;Young +12387;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;333;1;1.2689722207576327e-06;9937628;3.350900234945401e-05;1;0;Young +12388;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;188;1;7.164167492565614e-07;9937628;1.8917995320412476e-05;0;1;Old +12389;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;0;1;Old +12390;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12391;Hungary;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;1;0;Young +12392;Hungary;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;24;1;9.145745735190145e-08;9937628;2.415063232393082e-06;1;0;Young +12393;Hungary;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +12394;Hungary;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;20;1;7.621454779325121e-08;9937628;2.012552693660902e-06;1;0;Young +12395;Hungary;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;52;1;1.9815782426245315e-07;9937628;5.2326370035183445e-06;1;0;Young +12396;Hungary;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;28;1;1.067003669105517e-07;9937628;2.8175737711252624e-06;0;1;Old +12397;Hungary;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12398;Hungary;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12399;Hungary;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;1;0;Young +12400;Hungary;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;52;1;1.9815782426245315e-07;9937628;5.2326370035183445e-06;1;0;Young +12401;Hungary;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;43;1;1.638612777554901e-07;9937628;4.326988291370939e-06;0;1;Old +12402;Hungary;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12403;Hungary;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;1;0;Young +12404;Hungary;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;39;1;1.4861836819683987e-07;9937628;3.924477752638759e-06;1;0;Young +12405;Hungary;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;41;1;1.56239822976165e-07;9937628;4.125733022004848e-06;0;1;Old +12406;Hungary;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12407;Hungary;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;1;0;Young +12408;Hungary;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;48;1;1.829149147038029e-07;9937628;4.830126464786164e-06;1;0;Young +12409;Hungary;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;23;1;8.764672996223889e-08;9937628;2.314435597710037e-06;0;1;Old +12410;Hungary;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12411;Hungary;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12412;Hungary;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;33;1;1.257540038588645e-07;9937628;3.320711944540488e-06;1;0;Young +12413;Hungary;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;147;1;5.601769262803964e-07;9937628;1.4792262298407629e-05;1;0;Young +12414;Hungary;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;97;1;3.6964055679726836e-07;9937628;9.760880564255374e-06;0;1;Old +12415;Hungary;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +12416;Hungary;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12417;Hungary;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;131;1;4.992052880457954e-07;9937628;1.3182220143478906e-05;1;0;Young +12418;Hungary;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;472;1;1.7986633279207285e-06;9937628;4.7496243570397284e-05;1;0;Young +12419;Hungary;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;249;1;9.488711200259775e-07;9937628;2.5056281036078227e-05;0;1;Old +12420;Hungary;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12421;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;662;1;2.522701531956615e-06;9937628;6.661549416017584e-05;1;0;Young +12422;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2337;1;8.905669909641405e-06;9937628;0.00023516678225427636;1;0;Young +12423;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;929;1;3.540165744996519e-06;9937628;9.348307262054888e-05;0;1;Old +12424;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12425;Hungary;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;37;1;1.4099691341751475e-07;9937628;3.723222483272668e-06;1;0;Young +12426;Hungary;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;121;1;4.610980141491698e-07;9937628;1.2175943796648455e-05;1;0;Young +12427;Hungary;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;94;1;3.582083746282807e-07;9937628;9.458997660206238e-06;0;1;Old +12428;Hungary;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12429;Hungary;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;40;1;1.5242909558650242e-07;9937628;4.025105387321804e-06;1;0;Young +12430;Hungary;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;138;1;5.258803797734334e-07;9937628;1.3886613586260223e-05;1;0;Young +12431;Hungary;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;80;1;3.0485819117300483e-07;9937628;8.050210774643608e-06;0;1;Old +12432;Hungary;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12433;Hungary;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;54;1;2.0577927904177827e-07;9937628;5.433892272884435e-06;1;0;Young +12434;Hungary;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;137;1;5.220696523837708e-07;9937628;1.3785985951577178e-05;1;0;Young +12435;Hungary;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;51;1;1.943470968727906e-07;9937628;5.132009368835299e-06;0;1;Old +12436;Hungary;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12437;Hungary;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;35;1;1.3337545863818962e-07;9937628;3.521967213906578e-06;1;0;Young +12438;Hungary;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;63;1;2.400758255487413e-07;9937628;6.339540985031841e-06;1;0;Young +12439;Hungary;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;26;1;9.907891213122657e-08;9937628;2.6163185017591723e-06;0;1;Old +12440;Hungary;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12441;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;1;0;Young +12442;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;32;1;1.2194327646920193e-07;9937628;3.220084309857443e-06;1;0;Young +12443;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;15;1;5.716091084493841e-08;9937628;1.5094145202456762e-06;0;1;Old +12444;Hungary;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12445;Hungary;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;1;0;Young +12446;Hungary;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;1;0;Young +12447;Hungary;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;108;1;4.1155855808355654e-07;9937628;1.086778454576887e-05;1;0;Young +12448;Hungary;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;498;1;1.897742240051955e-06;9937628;5.0112562072156455e-05;1;0;Young +12449;Hungary;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;265;1;1.0098427582605786e-06;9937628;2.6666323191006948e-05;0;1;Old +12450;Hungary;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +12451;Hungary;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;1;0;Young +12452;Hungary;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;1;0;Young +12453;Hungary;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;0;1;Old +12454;Hungary;F;Craft and related trades workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12455;Hungary;F;Craft and related trades workers;Manufacturing   ;Y15-29;9146;1;3.485291270585378e-05;9937628;0.0009203403468111303;1;0;Young +12456;Hungary;F;Craft and related trades workers;Manufacturing   ;Y30-49;39995;1;0.0001524100419495541;9937628;0.004024602249148388;1;0;Young +12457;Hungary;F;Craft and related trades workers;Manufacturing   ;Y50-64;18188;1;6.930950976318266e-05;9937628;0.0018302154196152241;0;1;Old +12458;Hungary;F;Craft and related trades workers;Manufacturing   ;Y65-84;393;1;1.4976158641373862e-06;9937628;3.954666043043672e-05;0;1;Old +12459;Hungary;F;Craft and related trades workers;Manufacturing   ;Y_GE85;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;0;1;Old +12460;Hungary;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;1;0;Young +12461;Hungary;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;83;1;3.1629037334199253e-07;9937628;8.352093678692742e-06;1;0;Young +12462;Hungary;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;76;1;2.896152816143546e-07;9937628;7.647700235911427e-06;0;1;Old +12463;Hungary;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12464;Hungary;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;1;0;Young +12465;Hungary;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;97;1;3.6964055679726836e-07;9937628;9.760880564255374e-06;1;0;Young +12466;Hungary;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;86;1;3.277225555109802e-07;9937628;8.653976582741878e-06;0;1;Old +12467;Hungary;F;Craft and related trades workers;Construction   ;Y15-29;359;1;1.3680511328888593e-06;9937628;3.612532085121319e-05;1;0;Young +12468;Hungary;F;Craft and related trades workers;Construction   ;Y30-49;1386;1;5.281668162072309e-06;9937628;0.00013946990167070048;1;0;Young +12469;Hungary;F;Craft and related trades workers;Construction   ;Y50-64;738;1;2.8123168135709697e-06;9937628;7.426319439608727e-05;0;1;Old +12470;Hungary;F;Craft and related trades workers;Construction   ;Y65-84;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;0;1;Old +12471;Hungary;F;Craft and related trades workers;Construction   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12472;Hungary;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1413;1;5.384557801593198e-06;9937628;0.0001421868478071427;1;0;Young +12473;Hungary;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4998;1;1.904601549353348e-05;9937628;0.0005029369181458593;1;0;Young +12474;Hungary;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1944;1;7.408054045504018e-06;9937628;0.00019562012182383965;0;1;Old +12475;Hungary;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;116;1;4.4204437720085703e-07;9937628;1.167280562323323e-05;0;1;Old +12476;Hungary;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12477;Hungary;F;Craft and related trades workers;Transportation and storage   ;Y15-29;81;1;3.086689185626674e-07;9937628;8.150838409326653e-06;1;0;Young +12478;Hungary;F;Craft and related trades workers;Transportation and storage   ;Y30-49;420;1;1.6005055036582754e-06;9937628;4.226360656687894e-05;1;0;Young +12479;Hungary;F;Craft and related trades workers;Transportation and storage   ;Y50-64;231;1;8.802780270120515e-07;9937628;2.3244983611783416e-05;0;1;Old +12480;Hungary;F;Craft and related trades workers;Transportation and storage   ;Y65-84;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +12481;Hungary;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;887;1;3.3801151946306913e-06;9937628;8.9256711963861e-05;1;0;Young +12482;Hungary;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;1466;1;5.5865263532453134e-06;9937628;0.0001475201124453441;1;0;Young +12483;Hungary;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;469;1;1.787231145751741e-06;9937628;4.719436066634815e-05;0;1;Old +12484;Hungary;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;24;1;9.145745735190145e-08;9937628;2.415063232393082e-06;0;1;Old +12485;Hungary;F;Craft and related trades workers;Information and communication   ;Y15-29;135;1;5.144481976044457e-07;9937628;1.3584730682211087e-05;1;0;Young +12486;Hungary;F;Craft and related trades workers;Information and communication   ;Y30-49;491;1;1.8710671483243173e-06;9937628;4.940816862937514e-05;1;0;Young +12487;Hungary;F;Craft and related trades workers;Information and communication   ;Y50-64;232;1;8.840887544017141e-07;9937628;2.334561124646646e-05;0;1;Old +12488;Hungary;F;Craft and related trades workers;Information and communication   ;Y65-84;16;1;6.097163823460096e-08;9937628;1.6100421549287215e-06;0;1;Old +12489;Hungary;F;Craft and related trades workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12490;Hungary;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;1;0;Young +12491;Hungary;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;91;1;3.46776192459293e-07;9937628;9.157114756157102e-06;1;0;Young +12492;Hungary;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;56;1;2.134007338211034e-07;9937628;5.635147542250525e-06;0;1;Old +12493;Hungary;F;Craft and related trades workers;Financial and insurance activities   ;Y65-84;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +12494;Hungary;F;Craft and related trades workers;Real estate activities   ;Y15-29;30;1;1.1432182168987682e-07;9937628;3.0188290404913525e-06;1;0;Young +12495;Hungary;F;Craft and related trades workers;Real estate activities   ;Y30-49;121;1;4.610980141491698e-07;9937628;1.2175943796648455e-05;1;0;Young +12496;Hungary;F;Craft and related trades workers;Real estate activities   ;Y50-64;65;1;2.4769728032806646e-07;9937628;6.5407962543979304e-06;0;1;Old +12497;Hungary;F;Craft and related trades workers;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12498;Hungary;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;129;1;4.915838332664703e-07;9937628;1.2980964874112816e-05;1;0;Young +12499;Hungary;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;509;1;1.9396602413382435e-06;9937628;5.121946605366995e-05;1;0;Young +12500;Hungary;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;243;1;9.260067556880022e-07;9937628;2.4452515227979956e-05;0;1;Old +12501;Hungary;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;0;1;Old +12502;Hungary;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12503;Hungary;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;199;1;7.583347505428495e-07;9937628;2.0024899301925974e-05;1;0;Young +12504;Hungary;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;667;1;2.541755168904928e-06;9937628;6.711863233359108e-05;1;0;Young +12505;Hungary;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;347;1;1.3223224042129085e-06;9937628;3.4917789235016646e-05;0;1;Old +12506;Hungary;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;20;1;7.621454779325121e-08;9937628;2.012552693660902e-06;0;1;Old +12507;Hungary;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;67;1;2.5531873510739155e-07;9937628;6.742051523764021e-06;1;0;Young +12508;Hungary;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;354;1;1.3489974959405465e-06;9937628;3.562218267779796e-05;1;0;Young +12509;Hungary;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;198;1;7.54524023153187e-07;9937628;1.992427166724293e-05;0;1;Old +12510;Hungary;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +12511;Hungary;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12512;Hungary;F;Craft and related trades workers;Education   ;Y15-29;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;1;0;Young +12513;Hungary;F;Craft and related trades workers;Education   ;Y30-49;235;1;8.955209365707018e-07;9937628;2.3647494150515597e-05;1;0;Young +12514;Hungary;F;Craft and related trades workers;Education   ;Y50-64;191;1;7.27848931425549e-07;9937628;1.9219878224461612e-05;0;1;Old +12515;Hungary;F;Craft and related trades workers;Education   ;Y65-84;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12516;Hungary;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;113;1;4.3061219503186933e-07;9937628;1.1370922719184095e-05;1;0;Young +12517;Hungary;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;620;1;2.3626509815907875e-06;9937628;6.238913350348796e-05;1;0;Young +12518;Hungary;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;502;1;1.9129851496106053e-06;9937628;5.0515072610888636e-05;0;1;Old +12519;Hungary;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +12520;Hungary;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;56;1;2.134007338211034e-07;9937628;5.635147542250525e-06;1;0;Young +12521;Hungary;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;282;1;1.074625123884842e-06;9937628;2.8376992980618714e-05;1;0;Young +12522;Hungary;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;197;1;7.507132957635244e-07;9937628;1.9823644032559884e-05;0;1;Old +12523;Hungary;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;0;1;Old +12524;Hungary;F;Craft and related trades workers;Other service activities   ;Y15-29;133;1;5.068267428251205e-07;9937628;1.3383475412844997e-05;1;0;Young +12525;Hungary;F;Craft and related trades workers;Other service activities   ;Y30-49;639;1;2.435054801994376e-06;9937628;6.430105856246581e-05;1;0;Young +12526;Hungary;F;Craft and related trades workers;Other service activities   ;Y50-64;405;1;1.543344592813337e-06;9937628;4.075419204663326e-05;0;1;Old +12527;Hungary;F;Craft and related trades workers;Other service activities   ;Y65-84;57;1;2.1721146121076594e-07;9937628;5.73577517693357e-06;0;1;Old +12528;Hungary;F;Craft and related trades workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12529;Hungary;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;1;0;Young +12530;Hungary;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;1;0;Young +12531;Hungary;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12532;Hungary;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;13;1;4.953945606561329e-08;9937628;1.3081592508795861e-06;1;0;Young +12533;Hungary;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;16;1;6.097163823460096e-08;9937628;1.6100421549287215e-06;1;0;Young +12534;Hungary;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12535;Hungary;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;117;1;4.458551045905196e-07;9937628;1.1773433257916276e-05;1;0;Young +12536;Hungary;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;506;1;1.9282280591692557e-06;9937628;5.091758314962082e-05;1;0;Young +12537;Hungary;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;279;1;1.0631929417158544e-06;9937628;2.807511007656958e-05;0;1;Old +12538;Hungary;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +12539;Hungary;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;1;0;Young +12540;Hungary;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;23;1;8.764672996223889e-08;9937628;2.314435597710037e-06;1;0;Young +12541;Hungary;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;24;1;9.145745735190145e-08;9937628;2.415063232393082e-06;0;1;Old +12542;Hungary;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12543;Hungary;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;27172;1;0.0001035450846319111;9937628;0.0027342540896077012;1;0;Young +12544;Hungary;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;82538;1;0.00031452981728796845;9937628;0.008305603711469175;1;0;Young +12545;Hungary;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;38566;1;0.0001469645125097263;9937628;0.0038808053591863167;0;1;Old +12546;Hungary;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;293;1;1.1165431251711302e-06;9937628;2.9483896962132212e-05;0;1;Old +12547;Hungary;F;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +12548;Hungary;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;1;0;Young +12549;Hungary;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;100;1;3.8107273896625605e-07;9937628;1.006276346830451e-05;1;0;Young +12550;Hungary;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;91;1;3.46776192459293e-07;9937628;9.157114756157102e-06;0;1;Old +12551;Hungary;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;42;1;1.6005055036582754e-07;9937628;4.2263606566878936e-06;1;0;Young +12552;Hungary;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;182;1;6.93552384918586e-07;9937628;1.8314229512314205e-05;1;0;Young +12553;Hungary;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;177;1;6.744987479702732e-07;9937628;1.781109133889898e-05;0;1;Old +12554;Hungary;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12555;Hungary;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;70;1;2.6675091727637925e-07;9937628;7.043934427813156e-06;1;0;Young +12556;Hungary;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;260;1;9.907891213122658e-07;9937628;2.6163185017591722e-05;1;0;Young +12557;Hungary;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;128;1;4.877731058768077e-07;9937628;1.2880337239429772e-05;0;1;Old +12558;Hungary;F;Plant and machine operators, and assemblers;Construction   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12559;Hungary;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;779;1;2.9685566365471347e-06;9937628;7.838892741809212e-05;1;0;Young +12560;Hungary;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2326;1;8.863751908355116e-06;9937628;0.00023405987827276287;1;0;Young +12561;Hungary;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1128;1;4.298500495539368e-06;9937628;0.00011350797192247486;0;1;Old +12562;Hungary;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;29;1;1.1051109430021426e-07;9937628;2.9182014058083076e-06;0;1;Old +12563;Hungary;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;323;1;1.2308649468610071e-06;9937628;3.250272600262357e-05;1;0;Young +12564;Hungary;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;1737;1;6.619233475843868e-06;9937628;0.0001747902014444493;1;0;Young +12565;Hungary;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;689;1;2.6255911714775044e-06;9937628;6.933244029661806e-05;0;1;Old +12566;Hungary;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;15;1;5.716091084493841e-08;9937628;1.5094145202456762e-06;0;1;Old +12567;Hungary;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12568;Hungary;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;56;1;2.134007338211034e-07;9937628;5.635147542250525e-06;1;0;Young +12569;Hungary;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;183;1;6.973631123082485e-07;9937628;1.841485714699725e-05;1;0;Young +12570;Hungary;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;107;1;4.07747830693894e-07;9937628;1.0767156911085825e-05;0;1;Old +12571;Hungary;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12572;Hungary;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;88;1;3.353440102903053e-07;9937628;8.855231852107968e-06;1;0;Young +12573;Hungary;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;183;1;6.973631123082485e-07;9937628;1.841485714699725e-05;1;0;Young +12574;Hungary;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;111;1;4.2299074025254424e-07;9937628;1.1169667449818004e-05;0;1;Old +12575;Hungary;F;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12576;Hungary;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;30;1;1.1432182168987682e-07;9937628;3.0188290404913525e-06;1;0;Young +12577;Hungary;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;79;1;3.010474637833423e-07;9937628;7.949583139960562e-06;1;0;Young +12578;Hungary;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;36;1;1.3718618602785217e-07;9937628;3.6225948485896232e-06;0;1;Old +12579;Hungary;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12580;Hungary;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;48;1;1.829149147038029e-07;9937628;4.830126464786164e-06;1;0;Young +12581;Hungary;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;155;1;5.906627453976969e-07;9937628;1.559728337587199e-05;1;0;Young +12582;Hungary;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;100;1;3.8107273896625605e-07;9937628;1.006276346830451e-05;0;1;Old +12583;Hungary;F;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;0;1;Old +12584;Hungary;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;99;1;3.772620115765935e-07;9937628;9.962135833621464e-06;1;0;Young +12585;Hungary;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;267;1;1.0174642130399036e-06;9937628;2.686757846037304e-05;1;0;Young +12586;Hungary;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;175;1;6.668772931909481e-07;9937628;1.760983606953289e-05;0;1;Old +12587;Hungary;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12588;Hungary;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;833;1;3.174335915588913e-06;9937628;8.382281969097656e-05;1;0;Young +12589;Hungary;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;1846;1;7.0346027613170865e-06;9937628;0.00018575861362490122;1;0;Young +12590;Hungary;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;1487;1;5.666551628428227e-06;9937628;0.00014963329277368806;0;1;Old +12591;Hungary;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +12592;Hungary;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;117;1;4.458551045905196e-07;9937628;1.1773433257916276e-05;1;0;Young +12593;Hungary;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;398;1;1.516669501085699e-06;9937628;4.004979860385195e-05;1;0;Young +12594;Hungary;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;134;1;5.106374702147831e-07;9937628;1.3484103047528042e-05;0;1;Old +12595;Hungary;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12596;Hungary;F;Plant and machine operators, and assemblers;Education   ;Y15-29;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;1;0;Young +12597;Hungary;F;Plant and machine operators, and assemblers;Education   ;Y30-49;96;1;3.658298294076058e-07;9937628;9.660252929572329e-06;1;0;Young +12598;Hungary;F;Plant and machine operators, and assemblers;Education   ;Y50-64;124;1;4.725301963181575e-07;9937628;1.2477826700697591e-05;0;1;Old +12599;Hungary;F;Plant and machine operators, and assemblers;Education   ;Y65-84;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12600;Hungary;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;133;1;5.068267428251205e-07;9937628;1.3383475412844997e-05;1;0;Young +12601;Hungary;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;1039;1;3.959345757859401e-06;9937628;0.00010455211243568385;1;0;Young +12602;Hungary;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;962;1;3.6659197488553834e-06;9937628;9.680378456508937e-05;0;1;Old +12603;Hungary;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +12604;Hungary;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12605;Hungary;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;28;1;1.067003669105517e-07;9937628;2.8175737711252624e-06;1;0;Young +12606;Hungary;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;71;1;2.705616446660418e-07;9937628;7.144562062496201e-06;1;0;Young +12607;Hungary;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;54;1;2.0577927904177827e-07;9937628;5.433892272884435e-06;0;1;Old +12608;Hungary;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12609;Hungary;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12610;Hungary;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;223;1;8.49792207894751e-07;9937628;2.2439962534319054e-05;1;0;Young +12611;Hungary;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;1011;1;3.852645390948849e-06;9937628;0.00010173453866455858;1;0;Young +12612;Hungary;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;817;1;3.113364277354312e-06;9937628;8.221277753604784e-05;0;1;Old +12613;Hungary;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;23;1;8.764672996223889e-08;9937628;2.314435597710037e-06;0;1;Old +12614;Hungary;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;1;0;Young +12615;Hungary;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;1;0;Young +12616;Hungary;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12617;Hungary;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;23;1;8.764672996223889e-08;9937628;2.314435597710037e-06;1;0;Young +12618;Hungary;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;37;1;1.4099691341751475e-07;9937628;3.723222483272668e-06;1;0;Young +12619;Hungary;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12620;Hungary;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12621;Hungary;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;1438;1;5.479825986334762e-06;9937628;0.00014470253867421884;1;0;Young +12622;Hungary;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;5193;1;1.9789107334517677e-05;9937628;0.0005225593069090531;1;0;Young +12623;Hungary;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;3253;1;1.239629619857231e-05;9937628;0.0003273416956239457;0;1;Old +12624;Hungary;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;182;1;6.93552384918586e-07;9937628;1.8314229512314205e-05;0;1;Old +12625;Hungary;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12626;Hungary;F;Elementary occupations;Mining and quarrying   ;Y15-29;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;1;0;Young +12627;Hungary;F;Elementary occupations;Mining and quarrying   ;Y30-49;38;1;1.448076408071773e-07;9937628;3.823850117955713e-06;1;0;Young +12628;Hungary;F;Elementary occupations;Mining and quarrying   ;Y50-64;50;1;1.9053636948312803e-07;9937628;5.031381734152255e-06;0;1;Old +12629;Hungary;F;Elementary occupations;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12630;Hungary;F;Elementary occupations;Manufacturing   ;Y15-29;3239;1;1.2342946015117033e-05;9937628;0.00032593290873838307;1;0;Young +12631;Hungary;F;Elementary occupations;Manufacturing   ;Y30-49;12365;1;4.711964417317756e-05;9937628;0.0012442607028558526;1;0;Young +12632;Hungary;F;Elementary occupations;Manufacturing   ;Y50-64;8863;1;3.377447685457927e-05;9937628;0.0008918627261958286;0;1;Old +12633;Hungary;F;Elementary occupations;Manufacturing   ;Y65-84;289;1;1.10130021561248e-06;9937628;2.908138642340003e-05;0;1;Old +12634;Hungary;F;Elementary occupations;Manufacturing   ;Y_GE85;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +12635;Hungary;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;46;1;1.7529345992447778e-07;9937628;4.628871195420074e-06;1;0;Young +12636;Hungary;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;326;1;1.2422971290299947e-06;9937628;3.2804608906672696e-05;1;0;Young +12637;Hungary;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;309;1;1.1775147634057311e-06;9937628;3.109393911706093e-05;0;1;Old +12638;Hungary;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;0;1;Old +12639;Hungary;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;380;1;1.448076408071773e-06;9937628;3.8238501179557133e-05;1;0;Young +12640;Hungary;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1903;1;7.251814222527853e-06;9937628;0.0001914943888018348;1;0;Young +12641;Hungary;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1227;1;4.675762507115962e-06;9937628;0.00012347010775609632;0;1;Old +12642;Hungary;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;15;1;5.716091084493841e-08;9937628;1.5094145202456762e-06;0;1;Old +12643;Hungary;F;Elementary occupations;Construction   ;Y15-29;274;1;1.0441393047675416e-06;9937628;2.7571971903154356e-05;1;0;Young +12644;Hungary;F;Elementary occupations;Construction   ;Y30-49;1209;1;4.607169414102036e-06;9937628;0.00012165881033180152;1;0;Young +12645;Hungary;F;Elementary occupations;Construction   ;Y50-64;846;1;3.2238753716545264e-06;9937628;8.513097894185615e-05;0;1;Old +12646;Hungary;F;Elementary occupations;Construction   ;Y65-84;38;1;1.448076408071773e-07;9937628;3.823850117955713e-06;0;1;Old +12647;Hungary;F;Elementary occupations;Construction   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12648;Hungary;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3530;1;1.3451867685508838e-05;9937628;0.00035521555043114915;1;0;Young +12649;Hungary;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9205;1;3.507774562184387e-05;9937628;0.00092627737725743;1;0;Young +12650;Hungary;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5431;1;2.0696060453257366e-05;9937628;0.0005465086839636179;0;1;Old +12651;Hungary;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;321;1;1.223243492081682e-06;9937628;3.2301470733257476e-05;0;1;Old +12652;Hungary;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12653;Hungary;F;Elementary occupations;Transportation and storage   ;Y15-29;553;1;2.1073322464833958e-06;9937628;5.564708197972394e-05;1;0;Young +12654;Hungary;F;Elementary occupations;Transportation and storage   ;Y30-49;2266;1;8.635108264975362e-06;9937628;0.00022802222019178018;1;0;Young +12655;Hungary;F;Elementary occupations;Transportation and storage   ;Y50-64;1614;1;6.150514006915372e-06;9937628;0.00016241300237843478;0;1;Old +12656;Hungary;F;Elementary occupations;Transportation and storage   ;Y65-84;56;1;2.134007338211034e-07;9937628;5.635147542250525e-06;0;1;Old +12657;Hungary;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;5782;1;2.2033625767028924e-05;9937628;0.0005818289837373667;1;0;Young +12658;Hungary;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;15644;1;5.9615019283881096e-05;9937628;0.0015742187169815573;1;0;Young +12659;Hungary;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;9959;1;3.795103407364944e-05;9937628;0.001002150613808446;0;1;Old +12660;Hungary;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;269;1;1.0250856678192288e-06;9937628;2.706883372973913e-05;0;1;Old +12661;Hungary;F;Elementary occupations;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12662;Hungary;F;Elementary occupations;Information and communication   ;Y15-29;519;1;1.977767515234869e-06;9937628;5.22257424005004e-05;1;0;Young +12663;Hungary;F;Elementary occupations;Information and communication   ;Y30-49;1175;1;4.4776046828535085e-06;9937628;0.00011823747075257798;1;0;Young +12664;Hungary;F;Elementary occupations;Information and communication   ;Y50-64;756;1;2.8809099065848957e-06;9937628;7.607449182038209e-05;0;1;Old +12665;Hungary;F;Elementary occupations;Information and communication   ;Y65-84;65;1;2.4769728032806646e-07;9937628;6.5407962543979304e-06;0;1;Old +12666;Hungary;F;Elementary occupations;Information and communication   ;Y_GE85;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12667;Hungary;F;Elementary occupations;Financial and insurance activities   ;Y15-29;347;1;1.3223224042129085e-06;9937628;3.4917789235016646e-05;1;0;Young +12668;Hungary;F;Elementary occupations;Financial and insurance activities   ;Y30-49;1034;1;3.940292120911088e-06;9937628;0.00010404897426226862;1;0;Young +12669;Hungary;F;Elementary occupations;Financial and insurance activities   ;Y50-64;889;1;3.3877366494100165e-06;9937628;8.945796723322709e-05;0;1;Old +12670;Hungary;F;Elementary occupations;Financial and insurance activities   ;Y65-84;107;1;4.07747830693894e-07;9937628;1.0767156911085825e-05;0;1;Old +12671;Hungary;F;Elementary occupations;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12672;Hungary;F;Elementary occupations;Real estate activities   ;Y15-29;341;1;1.299458039874933e-06;9937628;3.4314023426918375e-05;1;0;Young +12673;Hungary;F;Elementary occupations;Real estate activities   ;Y30-49;1350;1;5.144481976044457e-06;9937628;0.00013584730682211088;1;0;Young +12674;Hungary;F;Elementary occupations;Real estate activities   ;Y50-64;989;1;3.7688093883762724e-06;9937628;9.95207307015316e-05;0;1;Old +12675;Hungary;F;Elementary occupations;Real estate activities   ;Y65-84;105;1;4.0012637591456885e-07;9937628;1.0565901641719734e-05;0;1;Old +12676;Hungary;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;874;1;3.330575738565078e-06;9937628;8.794855271298141e-05;1;0;Young +12677;Hungary;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;1956;1;7.453782774179968e-06;9937628;0.0001968276534400362;1;0;Young +12678;Hungary;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;1354;1;5.159724885603107e-06;9937628;0.00013624981736084306;0;1;Old +12679;Hungary;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;111;1;4.2299074025254424e-07;9937628;1.1169667449818004e-05;0;1;Old +12680;Hungary;F;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12681;Hungary;F;Elementary occupations;Administrative and support service activities   ;Y15-29;3099;1;1.1809444180564274e-05;9937628;0.0003118450398827567;1;0;Young +12682;Hungary;F;Elementary occupations;Administrative and support service activities   ;Y30-49;12745;1;4.856772058124934e-05;9937628;0.0012824992040354098;1;0;Young +12683;Hungary;F;Elementary occupations;Administrative and support service activities   ;Y50-64;10435;1;3.976494031112882e-05;9937628;0.0010500493679175755;0;1;Old +12684;Hungary;F;Elementary occupations;Administrative and support service activities   ;Y65-84;560;1;2.134007338211034e-06;9937628;5.635147542250525e-05;0;1;Old +12685;Hungary;F;Elementary occupations;Administrative and support service activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12686;Hungary;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;8543;1;3.2555044089887254e-05;9937628;0.0008596618830972542;1;0;Young +12687;Hungary;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;30703;1;0.0001170007630448096;9937628;0.0030895702676735333;1;0;Young +12688;Hungary;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;14820;1;5.647497991479915e-05;9937628;0.0014913015460027283;0;1;Old +12689;Hungary;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;219;1;8.345492983361008e-07;9937628;2.2037451995586876e-05;0;1;Old +12690;Hungary;F;Elementary occupations;Education   ;Y15-29;1425;1;5.4302865302691485e-06;9937628;0.00014339437942333924;1;0;Young +12691;Hungary;F;Elementary occupations;Education   ;Y30-49;12516;1;4.769506400901661e-05;9937628;0.0012594554756929924;1;0;Young +12692;Hungary;F;Elementary occupations;Education   ;Y50-64;12815;1;4.8834471498525716e-05;9937628;0.0012895431384632229;0;1;Old +12693;Hungary;F;Elementary occupations;Education   ;Y65-84;352;1;1.3413760411612213e-06;9937628;3.542092740843187e-05;0;1;Old +12694;Hungary;F;Elementary occupations;Education   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12695;Hungary;F;Elementary occupations;Human health and social work activities   ;Y15-29;1262;1;4.809137965754151e-06;9937628;0.0001269920749700029;1;0;Young +12696;Hungary;F;Elementary occupations;Human health and social work activities   ;Y30-49;9819;1;3.741753223909668e-05;9937628;0.0009880627449528198;1;0;Young +12697;Hungary;F;Elementary occupations;Human health and social work activities   ;Y50-64;9411;1;3.586275546411436e-05;9937628;0.0009470066700021373;0;1;Old +12698;Hungary;F;Elementary occupations;Human health and social work activities   ;Y65-84;286;1;1.0898680334434924e-06;9937628;2.8779503519350895e-05;0;1;Old +12699;Hungary;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;451;1;1.7186380527378147e-06;9937628;4.5383063242053334e-05;1;0;Young +12700;Hungary;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;1748;1;6.661151477130156e-06;9937628;0.00017589710542596283;1;0;Young +12701;Hungary;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;1541;1;5.872330907470006e-06;9937628;0.0001550671850465725;0;1;Old +12702;Hungary;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;138;1;5.258803797734334e-07;9937628;1.3886613586260223e-05;0;1;Old +12703;Hungary;F;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12704;Hungary;F;Elementary occupations;Other service activities   ;Y15-29;375;1;1.4290227711234603e-06;9937628;3.773536300614191e-05;1;0;Young +12705;Hungary;F;Elementary occupations;Other service activities   ;Y30-49;1401;1;5.338829072917247e-06;9937628;0.00014097931619094618;1;0;Young +12706;Hungary;F;Elementary occupations;Other service activities   ;Y50-64;1166;1;4.443308136346546e-06;9937628;0.00011733182204043058;0;1;Old +12707;Hungary;F;Elementary occupations;Other service activities   ;Y65-84;82;1;3.1247964595233e-07;9937628;8.251466044009697e-06;0;1;Old +12708;Hungary;F;Elementary occupations;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12709;Hungary;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;227;1;8.650351174534013e-07;9937628;2.2842473073051235e-05;1;0;Young +12710;Hungary;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;713;1;2.7170486288294055e-06;9937628;7.174750352901115e-05;1;0;Young +12711;Hungary;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;343;1;1.3070794946542583e-06;9937628;3.4515278696284465e-05;0;1;Old +12712;Hungary;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;0;1;Old +12713;Hungary;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12714;Hungary;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;108;1;4.1155855808355654e-07;9937628;1.086778454576887e-05;1;0;Young +12715;Hungary;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;189;1;7.202274766462239e-07;9937628;1.901862295509552e-05;1;0;Young +12716;Hungary;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;60;1;2.2864364337975364e-07;9937628;6.037658080982705e-06;0;1;Old +12717;Hungary;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12718;Hungary;M;Not applicable;Not applicable  ;Y15-29;476030;1;0.0018140205593010687;9937628;0.047901772938169954;1;0;Young +12719;Hungary;M;Not applicable;Not applicable  ;Y30-49;129660;1;0.0004940989133436476;9937628;0.013047379113003627;1;0;Young +12720;Hungary;M;Not applicable;Not applicable  ;Y50-64;408532;1;0.0015568040819536253;9937628;0.04110960885233378;0;1;Old +12721;Hungary;M;Not applicable;Not applicable  ;Y65-84;537280;1;0.0020474276119179006;9937628;0.054065215562506465;0;1;Old +12722;Hungary;M;Not applicable;Not applicable  ;Y_GE85;42893;1;0.00016345352992479622;9937628;0.004316221134459853;0;1;Old +12723;Hungary;M;Not applicable;Not applicable  ;Y_LT15;743245;1;0.0028323040787297496;9937628;0.07479098633999985;0;1;Old +12724;Hungary;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;4256;1;1.6218455770403856e-05;9937628;0.0004282712132110399;1;0;Young +12725;Hungary;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;11181;1;4.260774294381709e-05;9937628;0.0011251175833911272;1;0;Young +12726;Hungary;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;814;1;3.1019320951853244e-06;9937628;8.19108946319987e-05;0;1;Old +12727;Hungary;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;47;1;1.7910418731414036e-07;9937628;4.729498830103119e-06;0;1;Old +12728;Hungary;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12729;Hungary;M;Managers;Agriculture, forestry and fishing   ;Y15-29;393;1;1.4976158641373862e-06;9937628;3.954666043043672e-05;1;0;Young +12730;Hungary;M;Managers;Agriculture, forestry and fishing   ;Y30-49;2584;1;9.846919574888057e-06;9937628;0.00026002180802098853;1;0;Young +12731;Hungary;M;Managers;Agriculture, forestry and fishing   ;Y50-64;2550;1;9.717354843639529e-06;9937628;0.000256600468441765;0;1;Old +12732;Hungary;M;Managers;Agriculture, forestry and fishing   ;Y65-84;255;1;9.71735484363953e-07;9937628;2.56600468441765e-05;0;1;Old +12733;Hungary;M;Managers;Agriculture, forestry and fishing   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12734;Hungary;M;Managers;Mining and quarrying   ;Y15-29;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;1;0;Young +12735;Hungary;M;Managers;Mining and quarrying   ;Y30-49;133;1;5.068267428251205e-07;9937628;1.3383475412844997e-05;1;0;Young +12736;Hungary;M;Managers;Mining and quarrying   ;Y50-64;123;1;4.6871946892849497e-07;9937628;1.2377199066014546e-05;0;1;Old +12737;Hungary;M;Managers;Mining and quarrying   ;Y65-84;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +12738;Hungary;M;Managers;Manufacturing   ;Y15-29;1787;1;6.809769845326996e-06;9937628;0.00017982158317860159;1;0;Young +12739;Hungary;M;Managers;Manufacturing   ;Y30-49;17065;1;6.503006290459159e-05;9937628;0.0017172105858661644;1;0;Young +12740;Hungary;M;Managers;Manufacturing   ;Y50-64;8523;1;3.2478829542094e-05;9937628;0.0008576493304035933;0;1;Old +12741;Hungary;M;Managers;Manufacturing   ;Y65-84;742;1;2.82755972312962e-06;9937628;7.466570493481945e-05;0;1;Old +12742;Hungary;M;Managers;Manufacturing   ;Y_GE85;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12743;Hungary;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;41;1;1.56239822976165e-07;9937628;4.125733022004848e-06;1;0;Young +12744;Hungary;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;955;1;3.639244657127745e-06;9937628;9.609939112230806e-05;1;0;Young +12745;Hungary;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;648;1;2.469351348501339e-06;9937628;6.520670727461322e-05;0;1;Old +12746;Hungary;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;21;1;8.002527518291377e-08;9937628;2.1131803283439468e-06;0;1;Old +12747;Hungary;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;174;1;6.630665658012855e-07;9937628;1.7509208434849846e-05;1;0;Young +12748;Hungary;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1338;1;5.098753247368506e-06;9937628;0.00013463977520591434;1;0;Young +12749;Hungary;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1032;1;3.9326706661317625e-06;9937628;0.00010384771899290253;0;1;Old +12750;Hungary;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;52;1;1.9815782426245315e-07;9937628;5.2326370035183445e-06;0;1;Old +12751;Hungary;M;Managers;Construction   ;Y15-29;813;1;3.098121367795662e-06;9937628;8.181026699731566e-05;1;0;Young +12752;Hungary;M;Managers;Construction   ;Y30-49;7190;1;2.739912993167381e-05;9937628;0.0007235126933710942;1;0;Young +12753;Hungary;M;Managers;Construction   ;Y50-64;4220;1;1.6081269584376006e-05;9937628;0.0004246486183624503;0;1;Old +12754;Hungary;M;Managers;Construction   ;Y65-84;294;1;1.1203538525607928e-06;9937628;2.9584524596815257e-05;0;1;Old +12755;Hungary;M;Managers;Construction   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12756;Hungary;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1909;1;7.274678586865828e-06;9937628;0.00019209815460993307;1;0;Young +12757;Hungary;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;16213;1;6.17833231685991e-05;9937628;0.00163147584111621;1;0;Young +12758;Hungary;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5934;1;2.2612856330257636e-05;9937628;0.0005971243842091895;0;1;Old +12759;Hungary;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;483;1;1.8405813292070167e-06;9937628;4.8603147551910776e-05;0;1;Old +12760;Hungary;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +12761;Hungary;M;Managers;Transportation and storage   ;Y15-29;378;1;1.4404549532924478e-06;9937628;3.803724591019104e-05;1;0;Young +12762;Hungary;M;Managers;Transportation and storage   ;Y30-49;4355;1;1.6595717781980452e-05;9937628;0.00043823334904466134;1;0;Young +12763;Hungary;M;Managers;Transportation and storage   ;Y50-64;2258;1;8.604622445858061e-06;9937628;0.00022721719911431582;0;1;Old +12764;Hungary;M;Managers;Transportation and storage   ;Y65-84;78;1;2.9723673639367974e-07;9937628;7.848955505277517e-06;0;1;Old +12765;Hungary;M;Managers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12766;Hungary;M;Managers;Accommodation and food service activities   ;Y15-29;634;1;2.4160011650460635e-06;9937628;6.379792038905059e-05;1;0;Young +12767;Hungary;M;Managers;Accommodation and food service activities   ;Y30-49;3839;1;1.462938244891457e-05;9937628;0.0003863094895482101;1;0;Young +12768;Hungary;M;Managers;Accommodation and food service activities   ;Y50-64;1678;1;6.394400559853776e-06;9937628;0.00016885317099814967;0;1;Old +12769;Hungary;M;Managers;Accommodation and food service activities   ;Y65-84;162;1;6.173378371253348e-07;9937628;1.6301676818653306e-05;0;1;Old +12770;Hungary;M;Managers;Accommodation and food service activities   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12771;Hungary;M;Managers;Information and communication   ;Y15-29;373;1;1.421401316344135e-06;9937628;3.7534107736775817e-05;1;0;Young +12772;Hungary;M;Managers;Information and communication   ;Y30-49;4281;1;1.6313723955145423e-05;9937628;0.00043078690407811603;1;0;Young +12773;Hungary;M;Managers;Information and communication   ;Y50-64;1115;1;4.248961039473755e-06;9937628;0.00011219981267159528;0;1;Old +12774;Hungary;M;Managers;Information and communication   ;Y65-84;86;1;3.277225555109802e-07;9937628;8.653976582741878e-06;0;1;Old +12775;Hungary;M;Managers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12776;Hungary;M;Managers;Financial and insurance activities   ;Y15-29;248;1;9.45060392636315e-07;9937628;2.4955653401395182e-05;1;0;Young +12777;Hungary;M;Managers;Financial and insurance activities   ;Y30-49;3385;1;1.2899312214007768e-05;9937628;0.00034062454340210764;1;0;Young +12778;Hungary;M;Managers;Financial and insurance activities   ;Y50-64;840;1;3.2010110073165508e-06;9937628;8.452721313375787e-05;0;1;Old +12779;Hungary;M;Managers;Financial and insurance activities   ;Y65-84;53;1;2.019685516521157e-07;9937628;5.33326463820139e-06;0;1;Old +12780;Hungary;M;Managers;Real estate activities   ;Y15-29;63;1;2.400758255487413e-07;9937628;6.339540985031841e-06;1;0;Young +12781;Hungary;M;Managers;Real estate activities   ;Y30-49;957;1;3.6468661119070704e-06;9937628;9.630064639167415e-05;1;0;Young +12782;Hungary;M;Managers;Real estate activities   ;Y50-64;620;1;2.3626509815907875e-06;9937628;6.238913350348796e-05;0;1;Old +12783;Hungary;M;Managers;Real estate activities   ;Y65-84;99;1;3.772620115765935e-07;9937628;9.962135833621464e-06;0;1;Old +12784;Hungary;M;Managers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12785;Hungary;M;Managers;Professional, scientific and technical activities   ;Y15-29;266;1;1.013653485650241e-06;9937628;2.6766950825689993e-05;1;0;Young +12786;Hungary;M;Managers;Professional, scientific and technical activities   ;Y30-49;3233;1;1.2320081650779058e-05;9937628;0.00032532914293028476;1;0;Young +12787;Hungary;M;Managers;Professional, scientific and technical activities   ;Y50-64;1663;1;6.337239649008838e-06;9937628;0.00016734375647790397;0;1;Old +12788;Hungary;M;Managers;Professional, scientific and technical activities   ;Y65-84;344;1;1.310890222043921e-06;9937628;3.461590633096751e-05;0;1;Old +12789;Hungary;M;Managers;Professional, scientific and technical activities   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12790;Hungary;M;Managers;Administrative and support service activities   ;Y15-29;337;1;1.284215130316283e-06;9937628;3.3911512888186194e-05;1;0;Young +12791;Hungary;M;Managers;Administrative and support service activities   ;Y30-49;2930;1;1.1165431251711302e-05;9937628;0.0002948389696213221;1;0;Young +12792;Hungary;M;Managers;Administrative and support service activities   ;Y50-64;1196;1;4.557629958036422e-06;9937628;0.00012035065108092192;0;1;Old +12793;Hungary;M;Managers;Administrative and support service activities   ;Y65-84;114;1;4.344229224215319e-07;9937628;1.147155035386714e-05;0;1;Old +12794;Hungary;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;379;1;1.4442656806821104e-06;9937628;3.813787354487409e-05;1;0;Young +12795;Hungary;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;6274;1;2.3908503642742907e-05;9937628;0.0006313377800014249;1;0;Young +12796;Hungary;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;3647;1;1.3897722790099358e-05;9937628;0.00036698898368906543;0;1;Old +12797;Hungary;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;307;1;1.1698933086264062e-06;9937628;3.089268384769484e-05;0;1;Old +12798;Hungary;M;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +12799;Hungary;M;Managers;Education   ;Y15-29;70;1;2.6675091727637925e-07;9937628;7.043934427813156e-06;1;0;Young +12800;Hungary;M;Managers;Education   ;Y30-49;1794;1;6.836444937054634e-06;9937628;0.0001805259766213829;1;0;Young +12801;Hungary;M;Managers;Education   ;Y50-64;1752;1;6.676394386688806e-06;9937628;0.000176299615964695;0;1;Old +12802;Hungary;M;Managers;Education   ;Y65-84;185;1;7.049845670875737e-07;9937628;1.861611241636334e-05;0;1;Old +12803;Hungary;M;Managers;Education   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12804;Hungary;M;Managers;Human health and social work activities   ;Y15-29;84;1;3.201011007316551e-07;9937628;8.452721313375787e-06;1;0;Young +12805;Hungary;M;Managers;Human health and social work activities   ;Y30-49;1227;1;4.675762507115962e-06;9937628;0.00012347010775609632;1;0;Young +12806;Hungary;M;Managers;Human health and social work activities   ;Y50-64;1329;1;5.064456700861543e-06;9937628;0.00013373412649376692;0;1;Old +12807;Hungary;M;Managers;Human health and social work activities   ;Y65-84;203;1;7.735776601014998e-07;9937628;2.0427409840658152e-05;0;1;Old +12808;Hungary;M;Managers;Arts, entertainment and recreation   ;Y15-29;81;1;3.086689185626674e-07;9937628;8.150838409326653e-06;1;0;Young +12809;Hungary;M;Managers;Arts, entertainment and recreation   ;Y30-49;1043;1;3.97458866741805e-06;9937628;0.00010495462297441603;1;0;Young +12810;Hungary;M;Managers;Arts, entertainment and recreation   ;Y50-64;653;1;2.488404985449652e-06;9937628;6.570984544802844e-05;0;1;Old +12811;Hungary;M;Managers;Arts, entertainment and recreation   ;Y65-84;76;1;2.896152816143546e-07;9937628;7.647700235911427e-06;0;1;Old +12812;Hungary;M;Managers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12813;Hungary;M;Managers;Other service activities   ;Y15-29;93;1;3.543976472386181e-07;9937628;9.358370025523193e-06;1;0;Young +12814;Hungary;M;Managers;Other service activities   ;Y30-49;1079;1;4.111774853445903e-06;9937628;0.00010857721782300565;1;0;Young +12815;Hungary;M;Managers;Other service activities   ;Y50-64;756;1;2.8809099065848957e-06;9937628;7.607449182038209e-05;0;1;Old +12816;Hungary;M;Managers;Other service activities   ;Y65-84;159;1;6.059056549563472e-07;9937628;1.599979391460417e-05;0;1;Old +12817;Hungary;M;Managers;Other service activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12818;Hungary;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;1;0;Young +12819;Hungary;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12820;Hungary;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;1;0;Young +12821;Hungary;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;81;1;3.086689185626674e-07;9937628;8.150838409326653e-06;1;0;Young +12822;Hungary;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;24;1;9.145745735190145e-08;9937628;2.415063232393082e-06;0;1;Old +12823;Hungary;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12824;Hungary;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;578;1;2.20260043122496e-06;9937628;5.816277284680006e-05;1;0;Young +12825;Hungary;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;1696;1;6.462993652867702e-06;9937628;0.00017066446842244447;1;0;Young +12826;Hungary;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;1093;1;4.165125036901179e-06;9937628;0.00010998600470856828;0;1;Old +12827;Hungary;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;191;1;7.27848931425549e-07;9937628;1.9219878224461612e-05;0;1;Old +12828;Hungary;M;Professionals;Agriculture, forestry and fishing   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12829;Hungary;M;Professionals;Mining and quarrying   ;Y15-29;60;1;2.2864364337975364e-07;9937628;6.037658080982705e-06;1;0;Young +12830;Hungary;M;Professionals;Mining and quarrying   ;Y30-49;186;1;7.087952944772362e-07;9937628;1.8716740051046386e-05;1;0;Young +12831;Hungary;M;Professionals;Mining and quarrying   ;Y50-64;90;1;3.4296546506963047e-07;9937628;9.056487121474059e-06;0;1;Old +12832;Hungary;M;Professionals;Mining and quarrying   ;Y65-84;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;0;1;Old +12833;Hungary;M;Professionals;Manufacturing   ;Y15-29;8065;1;3.073351639762855e-05;9937628;0.0008115618737187586;1;0;Young +12834;Hungary;M;Professionals;Manufacturing   ;Y30-49;20177;1;7.688904654122148e-05;9937628;0.0020303637849998007;1;0;Young +12835;Hungary;M;Professionals;Manufacturing   ;Y50-64;5826;1;2.2201297772174078e-05;9937628;0.0005862565996634207;0;1;Old +12836;Hungary;M;Professionals;Manufacturing   ;Y65-84;688;1;2.621780444087842e-06;9937628;6.923181266193502e-05;0;1;Old +12837;Hungary;M;Professionals;Manufacturing   ;Y_GE85;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +12838;Hungary;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;574;1;2.1873575216663095e-06;9937628;5.776026230806788e-05;1;0;Young +12839;Hungary;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2182;1;8.315007164243707e-06;9937628;0.00021956949887840438;1;0;Young +12840;Hungary;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;757;1;2.8847206339745583e-06;9937628;7.617511945506514e-05;0;1;Old +12841;Hungary;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;56;1;2.134007338211034e-07;9937628;5.635147542250525e-06;0;1;Old +12842;Hungary;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;293;1;1.1165431251711302e-06;9937628;2.9483896962132212e-05;1;0;Young +12843;Hungary;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;794;1;3.0257175473920732e-06;9937628;7.98983419383378e-05;1;0;Young +12844;Hungary;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;383;1;1.4595085902407606e-06;9937628;3.854038408360627e-05;0;1;Old +12845;Hungary;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;41;1;1.56239822976165e-07;9937628;4.125733022004848e-06;0;1;Old +12846;Hungary;M;Professionals;Construction   ;Y15-29;1282;1;4.8853525135474025e-06;9937628;0.0001290046276636638;1;0;Young +12847;Hungary;M;Professionals;Construction   ;Y30-49;4324;1;1.6477585232900913e-05;9937628;0.00043511389236948695;1;0;Young +12848;Hungary;M;Professionals;Construction   ;Y50-64;2078;1;7.918691515718801e-06;9937628;0.0002091042248713677;0;1;Old +12849;Hungary;M;Professionals;Construction   ;Y65-84;269;1;1.0250856678192288e-06;9937628;2.706883372973913e-05;0;1;Old +12850;Hungary;M;Professionals;Construction   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12851;Hungary;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3252;1;1.2392485471182647e-05;9937628;0.00032724106798926264;1;0;Young +12852;Hungary;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9839;1;3.749374678688993e-05;9937628;0.0009900752976464806;1;0;Young +12853;Hungary;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2412;1;9.191474463866096e-06;9937628;0.00024271385485550475;0;1;Old +12854;Hungary;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;475;1;1.8100955100897163e-06;9937628;4.779812647444642e-05;0;1;Old +12855;Hungary;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +12856;Hungary;M;Professionals;Transportation and storage   ;Y15-29;747;1;2.8466133600779327e-06;9937628;7.516884310823469e-05;1;0;Young +12857;Hungary;M;Professionals;Transportation and storage   ;Y30-49;2803;1;1.0681468873224156e-05;9937628;0.00028205926001657536;1;0;Young +12858;Hungary;M;Professionals;Transportation and storage   ;Y50-64;1195;1;4.55381923064676e-06;9937628;0.00012025002344623888;0;1;Old +12859;Hungary;M;Professionals;Transportation and storage   ;Y65-84;81;1;3.086689185626674e-07;9937628;8.150838409326653e-06;0;1;Old +12860;Hungary;M;Professionals;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12861;Hungary;M;Professionals;Accommodation and food service activities   ;Y15-29;346;1;1.3185116768232459e-06;9937628;3.48171616003336e-05;1;0;Young +12862;Hungary;M;Professionals;Accommodation and food service activities   ;Y30-49;955;1;3.639244657127745e-06;9937628;9.609939112230806e-05;1;0;Young +12863;Hungary;M;Professionals;Accommodation and food service activities   ;Y50-64;479;1;1.8253384196483665e-06;9937628;4.8200637013178594e-05;0;1;Old +12864;Hungary;M;Professionals;Accommodation and food service activities   ;Y65-84;47;1;1.7910418731414036e-07;9937628;4.729498830103119e-06;0;1;Old +12865;Hungary;M;Professionals;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12866;Hungary;M;Professionals;Information and communication   ;Y15-29;9722;1;3.7047891682299415e-05;9937628;0.0009783018643885644;1;0;Young +12867;Hungary;M;Professionals;Information and communication   ;Y30-49;25273;1;9.630851331894189e-05;9937628;0.0025431622113445984;1;0;Young +12868;Hungary;M;Professionals;Information and communication   ;Y50-64;4839;1;1.844010983857713e-05;9937628;0.00048693712423125517;0;1;Old +12869;Hungary;M;Professionals;Information and communication   ;Y65-84;460;1;1.752934599244778e-06;9937628;4.628871195420074e-05;0;1;Old +12870;Hungary;M;Professionals;Information and communication   ;Y_GE85;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +12871;Hungary;M;Professionals;Financial and insurance activities   ;Y15-29;3033;1;1.1557936172846546e-05;9937628;0.00030520361599367576;1;0;Young +12872;Hungary;M;Professionals;Financial and insurance activities   ;Y30-49;7621;1;2.9041553436618374e-05;9937628;0.0007668832039194867;1;0;Young +12873;Hungary;M;Professionals;Financial and insurance activities   ;Y50-64;1660;1;6.32580746683985e-06;9937628;0.00016704187357385484;0;1;Old +12874;Hungary;M;Professionals;Financial and insurance activities   ;Y65-84;187;1;7.126060218668988e-07;9937628;1.881736768572943e-05;0;1;Old +12875;Hungary;M;Professionals;Financial and insurance activities   ;Y_GE85;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +12876;Hungary;M;Professionals;Real estate activities   ;Y15-29;250;1;9.526818474156401e-07;9937628;2.5156908670761273e-05;1;0;Young +12877;Hungary;M;Professionals;Real estate activities   ;Y30-49;861;1;3.2810362824994645e-06;9937628;8.664039346210182e-05;1;0;Young +12878;Hungary;M;Professionals;Real estate activities   ;Y50-64;338;1;1.2880258577059455e-06;9937628;3.401214052286924e-05;0;1;Old +12879;Hungary;M;Professionals;Real estate activities   ;Y65-84;73;1;2.7818309944536694e-07;9937628;7.345817331862292e-06;0;1;Old +12880;Hungary;M;Professionals;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12881;Hungary;M;Professionals;Professional, scientific and technical activities   ;Y15-29;7009;1;2.6709388274144886e-05;9937628;0.000705299091493463;1;0;Young +12882;Hungary;M;Professionals;Professional, scientific and technical activities   ;Y30-49;23255;1;8.861846544660285e-05;9937628;0.0023400956445542138;1;0;Young +12883;Hungary;M;Professionals;Professional, scientific and technical activities   ;Y50-64;10449;1;3.9818290494584094e-05;9937628;0.001051458154803138;0;1;Old +12884;Hungary;M;Professionals;Professional, scientific and technical activities   ;Y65-84;3293;1;1.2548725294158812e-05;9937628;0.0003313668010112675;0;1;Old +12885;Hungary;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;63;1;2.400758255487413e-07;9937628;6.339540985031841e-06;0;1;Old +12886;Hungary;M;Professionals;Administrative and support service activities   ;Y15-29;806;1;3.0714462760680236e-06;9937628;8.110587355453434e-05;1;0;Young +12887;Hungary;M;Professionals;Administrative and support service activities   ;Y30-49;2242;1;8.543650807623461e-06;9937628;0.0002256071569593871;1;0;Young +12888;Hungary;M;Professionals;Administrative and support service activities   ;Y50-64;788;1;3.0028531830540976e-06;9937628;7.929457613023953e-05;0;1;Old +12889;Hungary;M;Professionals;Administrative and support service activities   ;Y65-84;103;1;3.9250492113524375e-07;9937628;1.0364646372353644e-05;0;1;Old +12890;Hungary;M;Professionals;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12891;Hungary;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;3110;1;1.1851362181850563e-05;9937628;0.0003129519438642702;1;0;Young +12892;Hungary;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;12759;1;4.862107076470461e-05;9937628;0.0012839079909209724;1;0;Young +12893;Hungary;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;5231;1;1.9933914975324853e-05;9937628;0.0005263831570270089;0;1;Old +12894;Hungary;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;481;1;1.8329598744276917e-06;9937628;4.8401892282544685e-05;0;1;Old +12895;Hungary;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12896;Hungary;M;Professionals;Education   ;Y15-29;5712;1;2.1766874849752545e-05;9937628;0.0005747850493095536;1;0;Young +12897;Hungary;M;Professionals;Education   ;Y30-49;25699;1;9.793188318693814e-05;9937628;0.002586029583719576;1;0;Young +12898;Hungary;M;Professionals;Education   ;Y50-64;15216;1;5.7984027961105523e-05;9937628;0.001531150089337214;0;1;Old +12899;Hungary;M;Professionals;Education   ;Y65-84;2604;1;9.923134122681307e-06;9937628;0.0002620343607146494;0;1;Old +12900;Hungary;M;Professionals;Education   ;Y_GE85;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;0;1;Old +12901;Hungary;M;Professionals;Human health and social work activities   ;Y15-29;1777;1;6.77166257143037e-06;9937628;0.00017881530683177112;1;0;Young +12902;Hungary;M;Professionals;Human health and social work activities   ;Y30-49;8657;1;3.298946701230879e-05;9937628;0.0008711334334511213;1;0;Young +12903;Hungary;M;Professionals;Human health and social work activities   ;Y50-64;5971;1;2.275385324367515e-05;9937628;0.0006008476066924623;0;1;Old +12904;Hungary;M;Professionals;Human health and social work activities   ;Y65-84;2494;1;9.503954109818426e-06;9937628;0.00025096532089951445;0;1;Old +12905;Hungary;M;Professionals;Human health and social work activities   ;Y_GE85;26;1;9.907891213122657e-08;9937628;2.6163185017591723e-06;0;1;Old +12906;Hungary;M;Professionals;Arts, entertainment and recreation   ;Y15-29;1495;1;5.697037447545528e-06;9937628;0.0001504383138511524;1;0;Young +12907;Hungary;M;Professionals;Arts, entertainment and recreation   ;Y30-49;5090;1;1.9396602413382435e-05;9937628;0.0005121946605366996;1;0;Young +12908;Hungary;M;Professionals;Arts, entertainment and recreation   ;Y50-64;2220;1;8.459814805050884e-06;9937628;0.00022339334899636008;0;1;Old +12909;Hungary;M;Professionals;Arts, entertainment and recreation   ;Y65-84;476;1;1.813906237479379e-06;9937628;4.7898754109129465e-05;0;1;Old +12910;Hungary;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +12911;Hungary;M;Professionals;Other service activities   ;Y15-29;786;1;2.9952317282747724e-06;9937628;7.909332086087344e-05;1;0;Young +12912;Hungary;M;Professionals;Other service activities   ;Y30-49;3395;1;1.2937419487904392e-05;9937628;0.0003416308197489381;1;0;Young +12913;Hungary;M;Professionals;Other service activities   ;Y50-64;1537;1;5.8570879979113555e-06;9937628;0.0001546646745078403;0;1;Old +12914;Hungary;M;Professionals;Other service activities   ;Y65-84;474;1;1.8062847827000537e-06;9937628;4.7697498839763375e-05;0;1;Old +12915;Hungary;M;Professionals;Other service activities   ;Y_GE85;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +12916;Hungary;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;19;1;7.240382040358865e-08;9937628;1.9119250589778567e-06;1;0;Young +12917;Hungary;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;36;1;1.3718618602785217e-07;9937628;3.6225948485896232e-06;1;0;Young +12918;Hungary;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +12919;Hungary;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12920;Hungary;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;120;1;4.572872867595073e-07;9937628;1.207531616196541e-05;1;0;Young +12921;Hungary;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;293;1;1.1165431251711302e-06;9937628;2.9483896962132212e-05;1;0;Young +12922;Hungary;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;89;1;3.3915473767996787e-07;9937628;8.955859486791013e-06;0;1;Old +12923;Hungary;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +12924;Hungary;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;726;1;2.766588084895019e-06;9937628;7.305566277989073e-05;1;0;Young +12925;Hungary;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2101;1;8.00633824568104e-06;9937628;0.00021141866046907773;1;0;Young +12926;Hungary;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;1416;1;5.395989983762186e-06;9937628;0.00014248873071119185;0;1;Old +12927;Hungary;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;96;1;3.658298294076058e-07;9937628;9.660252929572329e-06;0;1;Old +12928;Hungary;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;78;1;2.9723673639367974e-07;9937628;7.848955505277517e-06;1;0;Young +12929;Hungary;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;297;1;1.1317860347297806e-06;9937628;2.988640750086439e-05;1;0;Young +12930;Hungary;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;183;1;6.973631123082485e-07;9937628;1.841485714699725e-05;0;1;Old +12931;Hungary;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;15;1;5.716091084493841e-08;9937628;1.5094145202456762e-06;0;1;Old +12932;Hungary;M;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12933;Hungary;M;Technicians and associate professionals;Manufacturing   ;Y15-29;12049;1;4.5915454318044194e-05;9937628;0.0012124623702960103;1;0;Young +12934;Hungary;M;Technicians and associate professionals;Manufacturing   ;Y30-49;27819;1;0.00010601062525302277;9937628;0.0027993601692476314;1;0;Young +12935;Hungary;M;Technicians and associate professionals;Manufacturing   ;Y50-64;9859;1;3.756996133468318e-05;9937628;0.0009920878503401416;0;1;Old +12936;Hungary;M;Technicians and associate professionals;Manufacturing   ;Y65-84;518;1;1.9739567878452064e-06;9937628;5.212511476581735e-05;0;1;Old +12937;Hungary;M;Technicians and associate professionals;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12938;Hungary;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;526;1;2.004442606962507e-06;9937628;5.2930135843281715e-05;1;0;Young +12939;Hungary;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;2541;1;9.683058297132567e-06;9937628;0.00025569481972961757;1;0;Young +12940;Hungary;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1277;1;4.8662988765990895e-06;9937628;0.00012850148949024857;0;1;Old +12941;Hungary;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;0;1;Old +12942;Hungary;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;447;1;1.7033951431791645e-06;9937628;4.498055270332115e-05;1;0;Young +12943;Hungary;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1365;1;5.201642886889395e-06;9937628;0.00013735672134235655;1;0;Young +12944;Hungary;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;937;1;3.5706515641138192e-06;9937628;9.428809369801325e-05;0;1;Old +12945;Hungary;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;35;1;1.3337545863818962e-07;9937628;3.521967213906578e-06;0;1;Old +12946;Hungary;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12947;Hungary;M;Technicians and associate professionals;Construction   ;Y15-29;2575;1;9.812623028381094e-06;9937628;0.0002591161593088411;1;0;Young +12948;Hungary;M;Technicians and associate professionals;Construction   ;Y30-49;8466;1;3.2261618080883236e-05;9937628;0.0008519135552266597;1;0;Young +12949;Hungary;M;Technicians and associate professionals;Construction   ;Y50-64;3990;1;1.5204802284753616e-05;9937628;0.0004015042623853499;0;1;Old +12950;Hungary;M;Technicians and associate professionals;Construction   ;Y65-84;312;1;1.188946945574719e-06;9937628;3.139582202111007e-05;0;1;Old +12951;Hungary;M;Technicians and associate professionals;Construction   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12952;Hungary;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;7095;1;2.7037110829655866e-05;9937628;0.0007139530680762049;1;0;Young +12953;Hungary;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;23383;1;8.910623855247965e-05;9937628;0.002352975981793643;1;0;Young +12954;Hungary;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5445;1;2.0749410636712643e-05;9937628;0.0005479174708491805;0;1;Old +12955;Hungary;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;346;1;1.3185116768232459e-06;9937628;3.48171616003336e-05;0;1;Old +12956;Hungary;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +12957;Hungary;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;2218;1;8.452193350271559e-06;9937628;0.000223192093726994;1;0;Young +12958;Hungary;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;6577;1;2.506315404181066e-05;9937628;0.0006618279533103876;1;0;Young +12959;Hungary;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;2738;1;1.043377159289609e-05;9937628;0.00027551846376217746;0;1;Old +12960;Hungary;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;88;1;3.353440102903053e-07;9937628;8.855231852107968e-06;0;1;Old +12961;Hungary;M;Technicians and associate professionals;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12962;Hungary;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;710;1;2.705616446660418e-06;9937628;7.144562062496202e-05;1;0;Young +12963;Hungary;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2111;1;8.044445519577666e-06;9937628;0.00021242493681590817;1;0;Young +12964;Hungary;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;532;1;2.027306971300482e-06;9937628;5.353390165137999e-05;0;1;Old +12965;Hungary;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;21;1;8.002527518291377e-08;9937628;2.1131803283439468e-06;0;1;Old +12966;Hungary;M;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12967;Hungary;M;Technicians and associate professionals;Information and communication   ;Y15-29;4115;1;1.5681143208461438e-05;9937628;0.00041408271672073053;1;0;Young +12968;Hungary;M;Technicians and associate professionals;Information and communication   ;Y30-49;8806;1;3.355726539336851e-05;9937628;0.000886126951018895;1;0;Young +12969;Hungary;M;Technicians and associate professionals;Information and communication   ;Y50-64;1635;1;6.230539282098286e-06;9937628;0.00016452618270677873;0;1;Old +12970;Hungary;M;Technicians and associate professionals;Information and communication   ;Y65-84;102;1;3.886941937455812e-07;9937628;1.0264018737670599e-05;0;1;Old +12971;Hungary;M;Technicians and associate professionals;Information and communication   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12972;Hungary;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;4182;1;1.5936461943568827e-05;9937628;0.0004208247682444946;1;0;Young +12973;Hungary;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;8896;1;3.390023085843814e-05;9937628;0.0008951834381403691;1;0;Young +12974;Hungary;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2955;1;1.1260699436452867e-05;9937628;0.00029735466048839824;0;1;Old +12975;Hungary;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;254;1;9.679247569742904e-07;9937628;2.5559419209493454e-05;0;1;Old +12976;Hungary;M;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +12977;Hungary;M;Technicians and associate professionals;Real estate activities   ;Y15-29;809;1;3.0828784582370114e-06;9937628;8.140775645858348e-05;1;0;Young +12978;Hungary;M;Technicians and associate professionals;Real estate activities   ;Y30-49;3506;1;1.3360410228156938e-05;9937628;0.00035280048719875607;1;0;Young +12979;Hungary;M;Technicians and associate professionals;Real estate activities   ;Y50-64;1674;1;6.379157650295127e-06;9937628;0.0001684506604594175;0;1;Old +12980;Hungary;M;Technicians and associate professionals;Real estate activities   ;Y65-84;245;1;9.336282104673273e-07;9937628;2.4653770497346046e-05;0;1;Old +12981;Hungary;M;Technicians and associate professionals;Real estate activities   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +12982;Hungary;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;3381;1;1.2884069304449118e-05;9937628;0.00034022203286337543;1;0;Young +12983;Hungary;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;8325;1;3.172430551894082e-05;9937628;0.0008377250587363504;1;0;Young +12984;Hungary;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;3555;1;1.3547135870250403e-05;9937628;0.0003577312412982253;0;1;Old +12985;Hungary;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;707;1;2.6941842644914304e-06;9937628;7.114373772091287e-05;0;1;Old +12986;Hungary;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +12987;Hungary;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;1839;1;7.007927669589449e-06;9937628;0.0001850542201821199;1;0;Young +12988;Hungary;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;4347;1;1.656523196286315e-05;9937628;0.000437428327967197;1;0;Young +12989;Hungary;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;1464;1;5.578904898465988e-06;9937628;0.000147318857175978;0;1;Old +12990;Hungary;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;125;1;4.7634092370782007e-07;9937628;1.2578454335380636e-05;0;1;Old +12991;Hungary;M;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +12992;Hungary;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;5156;1;1.9648110421100163e-05;9937628;0.0005188360844257804;1;0;Young +12993;Hungary;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;16232;1;6.185572698900269e-05;9937628;0.0016333877661751878;1;0;Young +12994;Hungary;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;5616;1;2.140104502034494e-05;9937628;0.0005651247963799812;0;1;Old +12995;Hungary;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;285;1;1.0860573060538298e-06;9937628;2.867887588466785e-05;0;1;Old +12996;Hungary;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +12997;Hungary;M;Technicians and associate professionals;Education   ;Y15-29;663;1;2.5265122593462776e-06;9937628;6.67161217948589e-05;1;0;Young +12998;Hungary;M;Technicians and associate professionals;Education   ;Y30-49;1597;1;6.085731641291109e-06;9937628;0.000160702332588823;1;0;Young +12999;Hungary;M;Technicians and associate professionals;Education   ;Y50-64;870;1;3.3153328290064275e-06;9937628;8.754604217424923e-05;0;1;Old +13000;Hungary;M;Technicians and associate professionals;Education   ;Y65-84;111;1;4.2299074025254424e-07;9937628;1.1169667449818004e-05;0;1;Old +13001;Hungary;M;Technicians and associate professionals;Education   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13002;Hungary;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2369;1;9.027613186110606e-06;9937628;0.0002383868665641338;1;0;Young +13003;Hungary;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;7224;1;2.7528694662922337e-05;9937628;0.0007269340329503178;1;0;Young +13004;Hungary;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2470;1;9.412496652466524e-06;9937628;0.00024855025766712136;0;1;Old +13005;Hungary;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;127;1;4.839623784871452e-07;9937628;1.2779709604746727e-05;0;1;Old +13006;Hungary;M;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13007;Hungary;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;2774;1;1.0570957778923943e-05;9937628;0.00027914105861076707;1;0;Young +13008;Hungary;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;5210;1;1.985388970014194e-05;9937628;0.0005242699766986649;1;0;Young +13009;Hungary;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;1838;1;7.0041169421997865e-06;9937628;0.00018495359254743686;0;1;Old +13010;Hungary;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;245;1;9.336282104673273e-07;9937628;2.4653770497346046e-05;0;1;Old +13011;Hungary;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13012;Hungary;M;Technicians and associate professionals;Other service activities   ;Y15-29;894;1;3.406790286358329e-06;9937628;8.99611054066423e-05;1;0;Young +13013;Hungary;M;Technicians and associate professionals;Other service activities   ;Y30-49;2445;1;9.31722846772496e-06;9937628;0.0002460345668000452;1;0;Young +13014;Hungary;M;Technicians and associate professionals;Other service activities   ;Y50-64;936;1;3.5668408367241566e-06;9937628;9.41874660633302e-05;0;1;Old +13015;Hungary;M;Technicians and associate professionals;Other service activities   ;Y65-84;105;1;4.0012637591456885e-07;9937628;1.0565901641719734e-05;0;1;Old +13016;Hungary;M;Technicians and associate professionals;Other service activities   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13017;Hungary;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;1;0;Young +13018;Hungary;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;41;1;1.56239822976165e-07;9937628;4.125733022004848e-06;1;0;Young +13019;Hungary;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;0;1;Old +13020;Hungary;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;89;1;3.3915473767996787e-07;9937628;8.955859486791013e-06;1;0;Young +13021;Hungary;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;242;1;9.221960282983396e-07;9937628;2.435188759329691e-05;1;0;Young +13022;Hungary;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;64;1;2.4388655293840386e-07;9937628;6.440168619714886e-06;0;1;Old +13023;Hungary;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;188;1;7.164167492565614e-07;9937628;1.8917995320412476e-05;1;0;Young +13024;Hungary;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;515;1;1.9625246056762186e-06;9937628;5.1823231861768224e-05;1;0;Young +13025;Hungary;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;435;1;1.6576664145032138e-06;9937628;4.3773021087124616e-05;0;1;Old +13026;Hungary;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;0;1;Old +13027;Hungary;M;Clerical support workers;Mining and quarrying   ;Y15-29;19;1;7.240382040358865e-08;9937628;1.9119250589778567e-06;1;0;Young +13028;Hungary;M;Clerical support workers;Mining and quarrying   ;Y30-49;55;1;2.0959000643144082e-07;9937628;5.5345199075674795e-06;1;0;Young +13029;Hungary;M;Clerical support workers;Mining and quarrying   ;Y50-64;42;1;1.6005055036582754e-07;9937628;4.2263606566878936e-06;0;1;Old +13030;Hungary;M;Clerical support workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13031;Hungary;M;Clerical support workers;Manufacturing   ;Y15-29;4193;1;1.5978379944855117e-05;9937628;0.00042193167222600805;1;0;Young +13032;Hungary;M;Clerical support workers;Manufacturing   ;Y30-49;9366;1;3.569127273157954e-05;9937628;0.0009424784264414003;1;0;Young +13033;Hungary;M;Clerical support workers;Manufacturing   ;Y50-64;3062;1;1.166844726714676e-05;9937628;0.00030812181739948405;0;1;Old +13034;Hungary;M;Clerical support workers;Manufacturing   ;Y65-84;75;1;2.8580455422469204e-07;9937628;7.547072601228381e-06;0;1;Old +13035;Hungary;M;Clerical support workers;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13036;Hungary;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;237;1;9.031423913500269e-07;9937628;2.3848749419881687e-05;1;0;Young +13037;Hungary;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;593;1;2.2597613420698985e-06;9937628;5.9672187367045734e-05;1;0;Young +13038;Hungary;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;298;1;1.135596762119443e-06;9937628;2.9987035135547435e-05;0;1;Old +13039;Hungary;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +13040;Hungary;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;190;1;7.240382040358865e-07;9937628;1.9119250589778567e-05;1;0;Young +13041;Hungary;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;576;1;2.1949789764456348e-06;9937628;5.796151757743397e-05;1;0;Young +13042;Hungary;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;421;1;1.604316231047938e-06;9937628;4.236423420156198e-05;0;1;Old +13043;Hungary;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +13044;Hungary;M;Clerical support workers;Construction   ;Y15-29;450;1;1.7148273253481523e-06;9937628;4.528243560737029e-05;1;0;Young +13045;Hungary;M;Clerical support workers;Construction   ;Y30-49;1401;1;5.338829072917247e-06;9937628;0.00014097931619094618;1;0;Young +13046;Hungary;M;Clerical support workers;Construction   ;Y50-64;626;1;2.385515345928763e-06;9937628;6.299289931158623e-05;0;1;Old +13047;Hungary;M;Clerical support workers;Construction   ;Y65-84;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;0;1;Old +13048;Hungary;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3966;1;1.5113344827401715e-05;9937628;0.0003990891991529568;1;0;Young +13049;Hungary;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8226;1;3.1347043507364225e-05;9937628;0.0008277629229027289;1;0;Young +13050;Hungary;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1974;1;7.522375867193894e-06;9937628;0.00019863895086433102;0;1;Old +13051;Hungary;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;69;1;2.629401898867167e-07;9937628;6.9433067931301115e-06;0;1;Old +13052;Hungary;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +13053;Hungary;M;Clerical support workers;Transportation and storage   ;Y15-29;3772;1;1.4374063713807178e-05;9937628;0.00037956743802444607;1;0;Young +13054;Hungary;M;Clerical support workers;Transportation and storage   ;Y30-49;13883;1;5.2904328350685326e-05;9937628;0.001397013452304715;1;0;Young +13055;Hungary;M;Clerical support workers;Transportation and storage   ;Y50-64;5741;1;2.187738594405276e-05;9937628;0.0005777032507153618;0;1;Old +13056;Hungary;M;Clerical support workers;Transportation and storage   ;Y65-84;97;1;3.6964055679726836e-07;9937628;9.760880564255374e-06;0;1;Old +13057;Hungary;M;Clerical support workers;Transportation and storage   ;Y_GE85;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +13058;Hungary;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;1373;1;5.232128706006696e-06;9937628;0.0001381617424198209;1;0;Young +13059;Hungary;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;1712;1;6.523965291102304e-06;9937628;0.0001722745105773732;1;0;Young +13060;Hungary;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;417;1;1.5890733214892878e-06;9937628;4.19617236628298e-05;0;1;Old +13061;Hungary;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;28;1;1.067003669105517e-07;9937628;2.8175737711252624e-06;0;1;Old +13062;Hungary;M;Clerical support workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13063;Hungary;M;Clerical support workers;Information and communication   ;Y15-29;1505;1;5.735144721442154e-06;9937628;0.00015144459019798286;1;0;Young +13064;Hungary;M;Clerical support workers;Information and communication   ;Y30-49;2004;1;7.63669768888377e-06;9937628;0.00020165777990482236;1;0;Young +13065;Hungary;M;Clerical support workers;Information and communication   ;Y50-64;334;1;1.2727829481472953e-06;9937628;3.360962998413706e-05;0;1;Old +13066;Hungary;M;Clerical support workers;Information and communication   ;Y65-84;27;1;1.0288963952088914e-07;9937628;2.7169461364422175e-06;0;1;Old +13067;Hungary;M;Clerical support workers;Financial and insurance activities   ;Y15-29;699;1;2.66369844537413e-06;9937628;7.033871664344851e-05;1;0;Young +13068;Hungary;M;Clerical support workers;Financial and insurance activities   ;Y30-49;934;1;3.5592193819448314e-06;9937628;9.398621079396412e-05;1;0;Young +13069;Hungary;M;Clerical support workers;Financial and insurance activities   ;Y50-64;197;1;7.507132957635244e-07;9937628;1.9823644032559884e-05;0;1;Old +13070;Hungary;M;Clerical support workers;Financial and insurance activities   ;Y65-84;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +13071;Hungary;M;Clerical support workers;Real estate activities   ;Y15-29;225;1;8.574136626740762e-07;9937628;2.2641217803685144e-05;1;0;Young +13072;Hungary;M;Clerical support workers;Real estate activities   ;Y30-49;445;1;1.6957736883998393e-06;9937628;4.477929743395506e-05;1;0;Young +13073;Hungary;M;Clerical support workers;Real estate activities   ;Y50-64;182;1;6.93552384918586e-07;9937628;1.8314229512314205e-05;0;1;Old +13074;Hungary;M;Clerical support workers;Real estate activities   ;Y65-84;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;0;1;Old +13075;Hungary;M;Clerical support workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13076;Hungary;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;1111;1;4.2337181299151046e-06;9937628;0.0001117973021328631;1;0;Young +13077;Hungary;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2004;1;7.63669768888377e-06;9937628;0.00020165777990482236;1;0;Young +13078;Hungary;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;660;1;2.51508007717729e-06;9937628;6.641423889080975e-05;0;1;Old +13079;Hungary;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;79;1;3.010474637833423e-07;9937628;7.949583139960562e-06;0;1;Old +13080;Hungary;M;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13081;Hungary;M;Clerical support workers;Administrative and support service activities   ;Y15-29;1693;1;6.451561470698715e-06;9937628;0.00017036258551839534;1;0;Young +13082;Hungary;M;Clerical support workers;Administrative and support service activities   ;Y30-49;2663;1;1.0147967038671399e-05;9937628;0.00026797139116094905;1;0;Young +13083;Hungary;M;Clerical support workers;Administrative and support service activities   ;Y50-64;788;1;3.0028531830540976e-06;9937628;7.929457613023953e-05;0;1;Old +13084;Hungary;M;Clerical support workers;Administrative and support service activities   ;Y65-84;61;1;2.3245437076941619e-07;9937628;6.13828571566575e-06;0;1;Old +13085;Hungary;M;Clerical support workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13086;Hungary;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;1809;1;6.893605847899572e-06;9937628;0.00018203539114162857;1;0;Young +13087;Hungary;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;3041;1;1.1588421991963847e-05;9937628;0.0003060086370711401;1;0;Young +13088;Hungary;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;1327;1;5.056835246082218e-06;9937628;0.00013353287122440084;0;1;Old +13089;Hungary;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;103;1;3.9250492113524375e-07;9937628;1.0364646372353644e-05;0;1;Old +13090;Hungary;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13091;Hungary;M;Clerical support workers;Education   ;Y15-29;330;1;1.257540038588645e-06;9937628;3.320711944540488e-05;1;0;Young +13092;Hungary;M;Clerical support workers;Education   ;Y30-49;497;1;1.8939315126622927e-06;9937628;5.001193443747341e-05;1;0;Young +13093;Hungary;M;Clerical support workers;Education   ;Y50-64;236;1;8.993316639603643e-07;9937628;2.3748121785198642e-05;0;1;Old +13094;Hungary;M;Clerical support workers;Education   ;Y65-84;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +13095;Hungary;M;Clerical support workers;Human health and social work activities   ;Y15-29;309;1;1.1775147634057311e-06;9937628;3.109393911706093e-05;1;0;Young +13096;Hungary;M;Clerical support workers;Human health and social work activities   ;Y30-49;627;1;2.3893260733184253e-06;9937628;6.309352694626927e-05;1;0;Young +13097;Hungary;M;Clerical support workers;Human health and social work activities   ;Y50-64;417;1;1.5890733214892878e-06;9937628;4.19617236628298e-05;0;1;Old +13098;Hungary;M;Clerical support workers;Human health and social work activities   ;Y65-84;16;1;6.097163823460096e-08;9937628;1.6100421549287215e-06;0;1;Old +13099;Hungary;M;Clerical support workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13100;Hungary;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;545;1;2.0768464273660954e-06;9937628;5.4842060902259575e-05;1;0;Young +13101;Hungary;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;1014;1;3.8640775731178365e-06;9937628;0.00010203642156860772;1;0;Young +13102;Hungary;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;281;1;1.0708143964951796e-06;9937628;2.827636534593567e-05;0;1;Old +13103;Hungary;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;0;1;Old +13104;Hungary;M;Clerical support workers;Other service activities   ;Y15-29;279;1;1.0631929417158544e-06;9937628;2.807511007656958e-05;1;0;Young +13105;Hungary;M;Clerical support workers;Other service activities   ;Y30-49;536;1;2.0425498808591324e-06;9937628;5.393641219011217e-05;1;0;Young +13106;Hungary;M;Clerical support workers;Other service activities   ;Y50-64;214;1;8.15495661387788e-07;9937628;2.153431382217165e-05;0;1;Old +13107;Hungary;M;Clerical support workers;Other service activities   ;Y65-84;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;0;1;Old +13108;Hungary;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;1;0;Young +13109;Hungary;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;1;0;Young +13110;Hungary;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13111;Hungary;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;44;1;1.6767200514515266e-07;9937628;4.427615926053984e-06;1;0;Young +13112;Hungary;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;81;1;3.086689185626674e-07;9937628;8.150838409326653e-06;1;0;Young +13113;Hungary;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;24;1;9.145745735190145e-08;9937628;2.415063232393082e-06;0;1;Old +13114;Hungary;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +13115;Hungary;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;355;1;1.352808223330209e-06;9937628;3.572281031248101e-05;1;0;Young +13116;Hungary;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;1485;1;5.658930173648902e-06;9937628;0.00014943203750432196;1;0;Young +13117;Hungary;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;1731;1;6.5963691115058925e-06;9937628;0.00017418643563635105;0;1;Old +13118;Hungary;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;110;1;4.1918001286288164e-07;9937628;1.1069039815134959e-05;0;1;Old +13119;Hungary;M;Service and sales workers;Mining and quarrying   ;Y15-29;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;1;0;Young +13120;Hungary;M;Service and sales workers;Mining and quarrying   ;Y30-49;55;1;2.0959000643144082e-07;9937628;5.5345199075674795e-06;1;0;Young +13121;Hungary;M;Service and sales workers;Mining and quarrying   ;Y50-64;73;1;2.7818309944536694e-07;9937628;7.345817331862292e-06;0;1;Old +13122;Hungary;M;Service and sales workers;Mining and quarrying   ;Y65-84;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +13123;Hungary;M;Service and sales workers;Manufacturing   ;Y15-29;1475;1;5.620822899752277e-06;9937628;0.00014842576115749152;1;0;Young +13124;Hungary;M;Service and sales workers;Manufacturing   ;Y30-49;4228;1;1.6111755403493307e-05;9937628;0.00042545363943991465;1;0;Young +13125;Hungary;M;Service and sales workers;Manufacturing   ;Y50-64;2777;1;1.058238996109293e-05;9937628;0.0002794429415148162;0;1;Old +13126;Hungary;M;Service and sales workers;Manufacturing   ;Y65-84;224;1;8.536029352844136e-07;9937628;2.25405901690021e-05;0;1;Old +13127;Hungary;M;Service and sales workers;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13128;Hungary;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;63;1;2.400758255487413e-07;9937628;6.339540985031841e-06;1;0;Young +13129;Hungary;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;222;1;8.459814805050885e-07;9937628;2.233933489963601e-05;1;0;Young +13130;Hungary;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;150;1;5.716091084493841e-07;9937628;1.5094145202456763e-05;0;1;Old +13131;Hungary;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +13132;Hungary;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;221;1;8.421707531154259e-07;9937628;2.2238707264952963e-05;1;0;Young +13133;Hungary;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;839;1;3.197200279926888e-06;9937628;8.442658549907484e-05;1;0;Young +13134;Hungary;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;566;1;2.156871702549009e-06;9937628;5.695524123060352e-05;0;1;Old +13135;Hungary;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;33;1;1.257540038588645e-07;9937628;3.320711944540488e-06;0;1;Old +13136;Hungary;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13137;Hungary;M;Service and sales workers;Construction   ;Y15-29;281;1;1.0708143964951796e-06;9937628;2.827636534593567e-05;1;0;Young +13138;Hungary;M;Service and sales workers;Construction   ;Y30-49;984;1;3.7497557514279598e-06;9937628;9.901759252811637e-05;1;0;Young +13139;Hungary;M;Service and sales workers;Construction   ;Y50-64;638;1;2.4312440746047135e-06;9937628;6.420043092778277e-05;0;1;Old +13140;Hungary;M;Service and sales workers;Construction   ;Y65-84;57;1;2.1721146121076594e-07;9937628;5.73577517693357e-06;0;1;Old +13141;Hungary;M;Service and sales workers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13142;Hungary;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;20712;1;7.892778569469096e-05;9937628;0.00208419956955523;1;0;Young +13143;Hungary;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;57800;1;0.000220260043122496;9937628;0.005816277284680006;1;0;Young +13144;Hungary;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;19804;1;7.546764522487735e-05;9937628;0.001992829677263025;0;1;Old +13145;Hungary;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1713;1;6.5277760184919665e-06;9937628;0.00017237513821205625;0;1;Old +13146;Hungary;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;32;1;1.2194327646920193e-07;9937628;3.220084309857443e-06;0;1;Old +13147;Hungary;M;Service and sales workers;Transportation and storage   ;Y15-29;1253;1;4.774841419247188e-06;9937628;0.0001260864262578555;1;0;Young +13148;Hungary;M;Service and sales workers;Transportation and storage   ;Y30-49;3843;1;1.464462535847322e-05;9937628;0.0003867120000869423;1;0;Young +13149;Hungary;M;Service and sales workers;Transportation and storage   ;Y50-64;1552;1;5.914248908756294e-06;9937628;0.00015617408902808598;0;1;Old +13150;Hungary;M;Service and sales workers;Transportation and storage   ;Y65-84;58;1;2.2102218860042852e-07;9937628;5.836402811616615e-06;0;1;Old +13151;Hungary;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;19618;1;7.475884993040011e-05;9937628;0.0019741129372119787;1;0;Young +13152;Hungary;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;28641;1;0.0001091430431673254;9937628;0.0028820760849570942;1;0;Young +13153;Hungary;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;7326;1;2.791738885666792e-05;9937628;0.0007371980516879883;0;1;Old +13154;Hungary;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;492;1;1.8748778757139799e-06;9937628;4.950879626405818e-05;0;1;Old +13155;Hungary;M;Service and sales workers;Accommodation and food service activities   ;Y_GE85;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +13156;Hungary;M;Service and sales workers;Information and communication   ;Y15-29;656;1;2.49983716761864e-06;9937628;6.601172835207757e-05;1;0;Young +13157;Hungary;M;Service and sales workers;Information and communication   ;Y30-49;970;1;3.6964055679726838e-06;9937628;9.760880564255373e-05;1;0;Young +13158;Hungary;M;Service and sales workers;Information and communication   ;Y50-64;290;1;1.1051109430021426e-06;9937628;2.9182014058083076e-05;0;1;Old +13159;Hungary;M;Service and sales workers;Information and communication   ;Y65-84;32;1;1.2194327646920193e-07;9937628;3.220084309857443e-06;0;1;Old +13160;Hungary;M;Service and sales workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13161;Hungary;M;Service and sales workers;Financial and insurance activities   ;Y15-29;371;1;1.41377986156481e-06;9937628;3.7332852467409726e-05;1;0;Young +13162;Hungary;M;Service and sales workers;Financial and insurance activities   ;Y30-49;734;1;2.7970739040123193e-06;9937628;7.386068385735509e-05;1;0;Young +13163;Hungary;M;Service and sales workers;Financial and insurance activities   ;Y50-64;387;1;1.4747514997994108e-06;9937628;3.894289462233845e-05;0;1;Old +13164;Hungary;M;Service and sales workers;Financial and insurance activities   ;Y65-84;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;0;1;Old +13165;Hungary;M;Service and sales workers;Real estate activities   ;Y15-29;308;1;1.1737040360160685e-06;9937628;3.099331148237789e-05;1;0;Young +13166;Hungary;M;Service and sales workers;Real estate activities   ;Y30-49;1285;1;4.89678469571639e-06;9937628;0.00012930651056771293;1;0;Young +13167;Hungary;M;Service and sales workers;Real estate activities   ;Y50-64;1173;1;4.469983228074183e-06;9937628;0.00011803621548321189;0;1;Old +13168;Hungary;M;Service and sales workers;Real estate activities   ;Y65-84;258;1;9.831676665329406e-07;9937628;2.596192974822563e-05;0;1;Old +13169;Hungary;M;Service and sales workers;Real estate activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13170;Hungary;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;519;1;1.977767515234869e-06;9937628;5.22257424005004e-05;1;0;Young +13171;Hungary;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;1211;1;4.61479086888136e-06;9937628;0.00012186006560116761;1;0;Young +13172;Hungary;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;627;1;2.3893260733184253e-06;9937628;6.309352694626927e-05;0;1;Old +13173;Hungary;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;74;1;2.819938268350295e-07;9937628;7.446444966545336e-06;0;1;Old +13174;Hungary;M;Service and sales workers;Administrative and support service activities   ;Y15-29;7884;1;3.0043774740099626e-05;9937628;0.0007933482718411274;1;0;Young +13175;Hungary;M;Service and sales workers;Administrative and support service activities   ;Y30-49;24386;1;9.29283981243112e-05;9937628;0.0024539054993807374;1;0;Young +13176;Hungary;M;Service and sales workers;Administrative and support service activities   ;Y50-64;15194;1;5.790019195853294e-05;9937628;0.001528936281374187;0;1;Old +13177;Hungary;M;Service and sales workers;Administrative and support service activities   ;Y65-84;860;1;3.277225555109802e-06;9937628;8.653976582741878e-05;0;1;Old +13178;Hungary;M;Service and sales workers;Administrative and support service activities   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13179;Hungary;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;13733;1;5.2332719242235946e-05;9937628;0.0013819193071022582;1;0;Young +13180;Hungary;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;29119;1;0.0001109645708595841;9937628;0.0029301760943355897;1;0;Young +13181;Hungary;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;4902;1;1.8680185664125872e-05;9937628;0.0004932766652162871;0;1;Old +13182;Hungary;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;211;1;8.040634792188003e-07;9937628;2.1232430918122514e-05;0;1;Old +13183;Hungary;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +13184;Hungary;M;Service and sales workers;Education   ;Y15-29;1009;1;3.8450239361695235e-06;9937628;0.00010153328339519249;1;0;Young +13185;Hungary;M;Service and sales workers;Education   ;Y30-49;3240;1;1.2346756742506696e-05;9937628;0.00032603353637306607;1;0;Young +13186;Hungary;M;Service and sales workers;Education   ;Y50-64;3503;1;1.334897804598795e-05;9937628;0.00035249860429470696;0;1;Old +13187;Hungary;M;Service and sales workers;Education   ;Y65-84;358;1;1.3642404054991967e-06;9937628;3.6024693216530144e-05;0;1;Old +13188;Hungary;M;Service and sales workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13189;Hungary;M;Service and sales workers;Human health and social work activities   ;Y15-29;1741;1;6.634476385402518e-06;9937628;0.0001751927119831815;1;0;Young +13190;Hungary;M;Service and sales workers;Human health and social work activities   ;Y30-49;5451;1;2.0772275001050618e-05;9937628;0.0005485212366572788;1;0;Young +13191;Hungary;M;Service and sales workers;Human health and social work activities   ;Y50-64;2346;1;8.939966456148367e-06;9937628;0.00023607243096642377;0;1;Old +13192;Hungary;M;Service and sales workers;Human health and social work activities   ;Y65-84;113;1;4.3061219503186933e-07;9937628;1.1370922719184095e-05;0;1;Old +13193;Hungary;M;Service and sales workers;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13194;Hungary;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;964;1;3.673541203634708e-06;9937628;9.700503983445546e-05;1;0;Young +13195;Hungary;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2227;1;8.486489896778522e-06;9937628;0.00022409774243914142;1;0;Young +13196;Hungary;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;1331;1;5.072078155640868e-06;9937628;0.00013393538176313303;0;1;Old +13197;Hungary;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;190;1;7.240382040358865e-07;9937628;1.9119250589778567e-05;0;1;Old +13198;Hungary;M;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13199;Hungary;M;Service and sales workers;Other service activities   ;Y15-29;1362;1;5.190210704720407e-06;9937628;0.00013705483843830742;1;0;Young +13200;Hungary;M;Service and sales workers;Other service activities   ;Y30-49;3078;1;1.1729418905381362e-05;9937628;0.0003097318595544128;1;0;Young +13201;Hungary;M;Service and sales workers;Other service activities   ;Y50-64;1473;1;5.613201444972952e-06;9937628;0.0001482245058881254;0;1;Old +13202;Hungary;M;Service and sales workers;Other service activities   ;Y65-84;255;1;9.71735484363953e-07;9937628;2.56600468441765e-05;0;1;Old +13203;Hungary;M;Service and sales workers;Other service activities   ;Y_GE85;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +13204;Hungary;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;114;1;4.344229224215319e-07;9937628;1.147155035386714e-05;1;0;Young +13205;Hungary;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;422;1;1.6081269584376006e-06;9937628;4.246486183624503e-05;1;0;Young +13206;Hungary;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;292;1;1.1127323977814678e-06;9937628;2.9383269327449167e-05;0;1;Old +13207;Hungary;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;53;1;2.019685516521157e-07;9937628;5.33326463820139e-06;0;1;Old +13208;Hungary;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;91;1;3.46776192459293e-07;9937628;9.157114756157102e-06;1;0;Young +13209;Hungary;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;205;1;7.811991148808249e-07;9937628;2.0628665110024242e-05;1;0;Young +13210;Hungary;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;26;1;9.907891213122657e-08;9937628;2.6163185017591723e-06;0;1;Old +13211;Hungary;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13212;Hungary;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;9801;1;3.7348939146082755e-05;9937628;0.000986251447528525;1;0;Young +13213;Hungary;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;36075;1;0.00013747199058207688;9937628;0.0036301419211908514;1;0;Young +13214;Hungary;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;22573;1;8.601954936685298e-05;9937628;0.0022714675977003767;0;1;Old +13215;Hungary;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2176;1;8.292142799905731e-06;9937628;0.00021896573307030612;0;1;Old +13216;Hungary;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;42;1;1.6005055036582754e-07;9937628;4.2263606566878936e-06;0;1;Old +13217;Hungary;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;1;0;Young +13218;Hungary;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;1;0;Young +13219;Hungary;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13220;Hungary;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;421;1;1.604316231047938e-06;9937628;4.236423420156198e-05;1;0;Young +13221;Hungary;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;1272;1;4.847245239650777e-06;9937628;0.00012799835131683336;1;0;Young +13222;Hungary;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;813;1;3.098121367795662e-06;9937628;8.181026699731566e-05;0;1;Old +13223;Hungary;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;53;1;2.019685516521157e-07;9937628;5.33326463820139e-06;0;1;Old +13224;Hungary;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;1;0;Young +13225;Hungary;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;1;0;Young +13226;Hungary;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +13227;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;140;1;5.335018345527585e-07;9937628;1.4087868855626312e-05;1;0;Young +13228;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;340;1;1.2956473124852705e-06;9937628;3.421339579223533e-05;1;0;Young +13229;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;174;1;6.630665658012855e-07;9937628;1.7509208434849846e-05;0;1;Old +13230;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13231;Hungary;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;103;1;3.9250492113524375e-07;9937628;1.0364646372353644e-05;1;0;Young +13232;Hungary;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;258;1;9.831676665329406e-07;9937628;2.596192974822563e-05;1;0;Young +13233;Hungary;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;119;1;4.5347655936984473e-07;9937628;1.1974688527282366e-05;0;1;Old +13234;Hungary;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +13235;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;221;1;8.421707531154259e-07;9937628;2.2238707264952963e-05;1;0;Young +13236;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;675;1;2.5722409880222284e-06;9937628;6.792365341105544e-05;1;0;Young +13237;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;335;1;1.2765936755369577e-06;9937628;3.37102576188201e-05;0;1;Old +13238;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;35;1;1.3337545863818962e-07;9937628;3.521967213906578e-06;0;1;Old +13239;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13240;Hungary;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;42;1;1.6005055036582754e-07;9937628;4.2263606566878936e-06;1;0;Young +13241;Hungary;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;126;1;4.801516510974826e-07;9937628;1.2679081970063682e-05;1;0;Young +13242;Hungary;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;59;1;2.2483291599009106e-07;9937628;5.9370304462996605e-06;0;1;Old +13243;Hungary;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13244;Hungary;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;97;1;3.6964055679726836e-07;9937628;9.760880564255374e-06;1;0;Young +13245;Hungary;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;267;1;1.0174642130399036e-06;9937628;2.686757846037304e-05;1;0;Young +13246;Hungary;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;122;1;4.6490874153883237e-07;9937628;1.22765714313315e-05;0;1;Old +13247;Hungary;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +13248;Hungary;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;40;1;1.5242909558650242e-07;9937628;4.025105387321804e-06;1;0;Young +13249;Hungary;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;141;1;5.37312561942421e-07;9937628;1.4188496490309357e-05;1;0;Young +13250;Hungary;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;74;1;2.819938268350295e-07;9937628;7.446444966545336e-06;0;1;Old +13251;Hungary;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +13252;Hungary;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;40;1;1.5242909558650242e-07;9937628;4.025105387321804e-06;1;0;Young +13253;Hungary;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;91;1;3.46776192459293e-07;9937628;9.157114756157102e-06;1;0;Young +13254;Hungary;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;78;1;2.9723673639367974e-07;9937628;7.848955505277517e-06;0;1;Old +13255;Hungary;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;8;1;3.048581911730048e-08;9937628;8.050210774643608e-07;0;1;Old +13256;Hungary;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;63;1;2.400758255487413e-07;9937628;6.339540985031841e-06;1;0;Young +13257;Hungary;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;131;1;4.992052880457954e-07;9937628;1.3182220143478906e-05;1;0;Young +13258;Hungary;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;85;1;3.239118281213176e-07;9937628;8.553348948058832e-06;0;1;Old +13259;Hungary;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;0;1;Old +13260;Hungary;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;105;1;4.0012637591456885e-07;9937628;1.0565901641719734e-05;1;0;Young +13261;Hungary;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;327;1;1.2461078564196573e-06;9937628;3.290523654135574e-05;1;0;Young +13262;Hungary;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;171;1;6.516343836322978e-07;9937628;1.720732553080071e-05;0;1;Old +13263;Hungary;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;15;1;5.716091084493841e-08;9937628;1.5094145202456762e-06;0;1;Old +13264;Hungary;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +13265;Hungary;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;797;1;3.0371497295610606e-06;9937628;8.020022484238693e-05;1;0;Young +13266;Hungary;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;1893;1;7.213706948631227e-06;9937628;0.00019048811245500434;1;0;Young +13267;Hungary;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;666;1;2.5379444415152654e-06;9937628;6.701800469890803e-05;0;1;Old +13268;Hungary;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;33;1;1.257540038588645e-07;9937628;3.320711944540488e-06;0;1;Old +13269;Hungary;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13270;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;1391;1;5.300721799020622e-06;9937628;0.00013997303984411571;1;0;Young +13271;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;3050;1;1.162271853847081e-05;9937628;0.00030691428578328753;1;0;Young +13272;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;1502;1;5.723712539273166e-06;9937628;0.00015114270729393373;0;1;Old +13273;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;22;1;8.383600257257633e-08;9937628;2.213807963026992e-06;0;1;Old +13274;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13275;Hungary;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;103;1;3.9250492113524375e-07;9937628;1.0364646372353644e-05;1;0;Young +13276;Hungary;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;338;1;1.2880258577059455e-06;9937628;3.401214052286924e-05;1;0;Young +13277;Hungary;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;290;1;1.1051109430021426e-06;9937628;2.9182014058083076e-05;0;1;Old +13278;Hungary;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;31;1;1.1813254907953938e-07;9937628;3.1194566751743977e-06;0;1;Old +13279;Hungary;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13280;Hungary;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;119;1;4.5347655936984473e-07;9937628;1.1974688527282366e-05;1;0;Young +13281;Hungary;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;366;1;1.394726224616497e-06;9937628;3.68297142939945e-05;1;0;Young +13282;Hungary;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;284;1;1.0822465786641672e-06;9937628;2.8578248249984805e-05;0;1;Old +13283;Hungary;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +13284;Hungary;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;369;1;1.4061584067854849e-06;9937628;3.7131597198043635e-05;1;0;Young +13285;Hungary;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;807;1;3.075257003457686e-06;9937628;8.120650118921739e-05;1;0;Young +13286;Hungary;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;371;1;1.41377986156481e-06;9937628;3.7332852467409726e-05;0;1;Old +13287;Hungary;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;26;1;9.907891213122657e-08;9937628;2.6163185017591723e-06;0;1;Old +13288;Hungary;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;77;1;2.9342600900401714e-07;9937628;7.748327870594472e-06;1;0;Young +13289;Hungary;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;195;1;7.430918409841993e-07;9937628;1.9622388763193793e-05;1;0;Young +13290;Hungary;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;100;1;3.8107273896625605e-07;9937628;1.006276346830451e-05;0;1;Old +13291;Hungary;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +13292;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;33;1;1.257540038588645e-07;9937628;3.320711944540488e-06;1;0;Young +13293;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;92;1;3.5058691984895557e-07;9937628;9.257742390840148e-06;1;0;Young +13294;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;46;1;1.7529345992447778e-07;9937628;4.628871195420074e-06;0;1;Old +13295;Hungary;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;7;1;2.6675091727637924e-08;9937628;7.043934427813156e-07;0;1;Old +13296;Hungary;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;11;1;4.1918001286288165e-08;9937628;1.106903981513496e-06;1;0;Young +13297;Hungary;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;23;1;8.764672996223889e-08;9937628;2.314435597710037e-06;1;0;Young +13298;Hungary;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;14;1;5.335018345527585e-08;9937628;1.4087868855626312e-06;0;1;Old +13299;Hungary;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13300;Hungary;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;1608;1;6.127649642577398e-06;9937628;0.0001618092365703365;1;0;Young +13301;Hungary;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;6628;1;2.525750113868345e-05;9937628;0.0006669599626792229;1;0;Young +13302;Hungary;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;5286;1;2.0143504981756294e-05;9937628;0.0005319176769345763;0;1;Old +13303;Hungary;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;97;1;3.6964055679726836e-07;9937628;9.760880564255374e-06;0;1;Old +13304;Hungary;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13305;Hungary;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;78;1;2.9723673639367974e-07;9937628;7.848955505277517e-06;1;0;Young +13306;Hungary;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;577;1;2.1987897038352974e-06;9937628;5.806214521211702e-05;1;0;Young +13307;Hungary;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;466;1;1.7757989635827531e-06;9937628;4.689247776229901e-05;0;1;Old +13308;Hungary;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;0;1;Old +13309;Hungary;M;Craft and related trades workers;Manufacturing   ;Y15-29;41193;1;0.00015697529336236986;9937628;0.004145154155498676;1;0;Young +13310;Hungary;M;Craft and related trades workers;Manufacturing   ;Y30-49;116754;1;0.00044491766565266257;9937628;0.011748678859784246;1;0;Young +13311;Hungary;M;Craft and related trades workers;Manufacturing   ;Y50-64;53895;1;0.0002053791526658637;9937628;0.005423326371242715;0;1;Old +13312;Hungary;M;Craft and related trades workers;Manufacturing   ;Y65-84;1744;1;6.6459085675715054e-06;9937628;0.00017549459488723065;0;1;Old +13313;Hungary;M;Craft and related trades workers;Manufacturing   ;Y_GE85;43;1;1.638612777554901e-07;9937628;4.326988291370939e-06;0;1;Old +13314;Hungary;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;718;1;2.7361022657777186e-06;9937628;7.225064170242638e-05;1;0;Young +13315;Hungary;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4812;1;1.8337220199056242e-05;9937628;0.000484220178094813;1;0;Young +13316;Hungary;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2426;1;9.244824647321371e-06;9937628;0.0002441226417410674;0;1;Old +13317;Hungary;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;19;1;7.240382040358865e-08;9937628;1.9119250589778567e-06;0;1;Old +13318;Hungary;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13319;Hungary;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;811;1;3.0904999130163366e-06;9937628;8.160901172794957e-05;1;0;Young +13320;Hungary;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;4919;1;1.8744968029750135e-05;9937628;0.0004949873350058988;1;0;Young +13321;Hungary;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3485;1;1.3280384952974023e-05;9937628;0.00035068730687041214;0;1;Old +13322;Hungary;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;43;1;1.638612777554901e-07;9937628;4.326988291370939e-06;0;1;Old +13323;Hungary;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13324;Hungary;M;Craft and related trades workers;Construction   ;Y15-29;29912;1;0.00011398647767958651;9937628;0.0030099738086392445;1;0;Young +13325;Hungary;M;Craft and related trades workers;Construction   ;Y30-49;104678;1;0.0003988993216950975;9937628;0.010533499543351794;1;0;Young +13326;Hungary;M;Craft and related trades workers;Construction   ;Y50-64;40508;1;0.000154364945100451;9937628;0.0040762242257407905;0;1;Old +13327;Hungary;M;Craft and related trades workers;Construction   ;Y65-84;1259;1;4.7977057835851635e-06;9937628;0.00012669019206595377;0;1;Old +13328;Hungary;M;Craft and related trades workers;Construction   ;Y_GE85;31;1;1.1813254907953938e-07;9937628;3.1194566751743977e-06;0;1;Old +13329;Hungary;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9720;1;3.7040270227520086e-05;9937628;0.0009781006091191982;1;0;Young +13330;Hungary;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;34396;1;0.00013107377929483344;9937628;0.003461188122558019;1;0;Young +13331;Hungary;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;12004;1;4.574397158550938e-05;9937628;0.0012079341267352732;0;1;Old +13332;Hungary;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;526;1;2.004442606962507e-06;9937628;5.2930135843281715e-05;0;1;Old +13333;Hungary;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;9;1;3.429654650696304e-08;9937628;9.056487121474058e-07;0;1;Old +13334;Hungary;M;Craft and related trades workers;Transportation and storage   ;Y15-29;1783;1;6.794526935768345e-06;9937628;0.0001794190726398694;1;0;Young +13335;Hungary;M;Craft and related trades workers;Transportation and storage   ;Y30-49;9634;1;3.6712547672009106e-05;9937628;0.0009694466325364564;1;0;Young +13336;Hungary;M;Craft and related trades workers;Transportation and storage   ;Y50-64;5879;1;2.2403266323826194e-05;9937628;0.000591589864301622;0;1;Old +13337;Hungary;M;Craft and related trades workers;Transportation and storage   ;Y65-84;42;1;1.6005055036582754e-07;9937628;4.2263606566878936e-06;0;1;Old +13338;Hungary;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;877;1;3.3420079207340657e-06;9937628;8.825043561703054e-05;1;0;Young +13339;Hungary;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2972;1;1.132548180207713e-05;9937628;0.00029906533027801;1;0;Young +13340;Hungary;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;1410;1;5.37312561942421e-06;9937628;0.00014188496490309357;0;1;Old +13341;Hungary;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;65;1;2.4769728032806646e-07;9937628;6.5407962543979304e-06;0;1;Old +13342;Hungary;M;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13343;Hungary;M;Craft and related trades workers;Information and communication   ;Y15-29;1192;1;4.542387048477772e-06;9937628;0.00011994814054218974;1;0;Young +13344;Hungary;M;Craft and related trades workers;Information and communication   ;Y30-49;4468;1;1.702632997701232e-05;9937628;0.00044960427176384546;1;0;Young +13345;Hungary;M;Craft and related trades workers;Information and communication   ;Y50-64;1469;1;5.597958535414301e-06;9937628;0.00014782199534939323;0;1;Old +13346;Hungary;M;Craft and related trades workers;Information and communication   ;Y65-84;65;1;2.4769728032806646e-07;9937628;6.5407962543979304e-06;0;1;Old +13347;Hungary;M;Craft and related trades workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13348;Hungary;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;180;1;6.859309301392609e-07;9937628;1.8112974242948117e-05;1;0;Young +13349;Hungary;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;795;1;3.0295282747817354e-06;9937628;7.999896957302084e-05;1;0;Young +13350;Hungary;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;377;1;1.4366442259027852e-06;9937628;3.7936618275508e-05;0;1;Old +13351;Hungary;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;43;1;1.638612777554901e-07;9937628;4.326988291370939e-06;0;1;Old +13352;Hungary;M;Craft and related trades workers;Real estate activities   ;Y15-29;468;1;1.7834204183620783e-06;9937628;4.70937330316651e-05;1;0;Young +13353;Hungary;M;Craft and related trades workers;Real estate activities   ;Y30-49;2191;1;8.34930371075067e-06;9937628;0.0002204751475905518;1;0;Young +13354;Hungary;M;Craft and related trades workers;Real estate activities   ;Y50-64;1322;1;5.037781609133905e-06;9937628;0.0001330297330509856;0;1;Old +13355;Hungary;M;Craft and related trades workers;Real estate activities   ;Y65-84;66;1;2.51508007717729e-07;9937628;6.641423889080976e-06;0;1;Old +13356;Hungary;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;1082;1;4.123207035614891e-06;9937628;0.00010887910072705479;1;0;Young +13357;Hungary;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;3787;1;1.4431224624652117e-05;9937628;0.00038107685254469174;1;0;Young +13358;Hungary;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;1794;1;6.836444937054634e-06;9937628;0.0001805259766213829;0;1;Old +13359;Hungary;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;151;1;5.754198358390467e-07;9937628;1.5194772837139808e-05;0;1;Old +13360;Hungary;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;1432;1;5.456961621996787e-06;9937628;0.00014409877286612058;1;0;Young +13361;Hungary;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;5597;1;2.132864119994135e-05;9937628;0.0005632128713210034;1;0;Young +13362;Hungary;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2688;1;1.0243235223412962e-05;9937628;0.0002704870820280252;0;1;Old +13363;Hungary;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;110;1;4.1918001286288164e-07;9937628;1.1069039815134959e-05;0;1;Old +13364;Hungary;M;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13365;Hungary;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;2097;1;7.991095336122389e-06;9937628;0.00021101614993034555;1;0;Young +13366;Hungary;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;7827;1;2.9826563278888863e-05;9937628;0.000787612496664194;1;0;Young +13367;Hungary;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;5574;1;2.1240994469979113e-05;9937628;0.0005608984357232934;0;1;Old +13368;Hungary;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;76;1;2.896152816143546e-07;9937628;7.647700235911427e-06;0;1;Old +13369;Hungary;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13370;Hungary;M;Craft and related trades workers;Education   ;Y15-29;549;1;2.092089336924746e-06;9937628;5.5244571440991756e-05;1;0;Young +13371;Hungary;M;Craft and related trades workers;Education   ;Y30-49;3127;1;1.1916144547474827e-05;9937628;0.000314662613653882;1;0;Young +13372;Hungary;M;Craft and related trades workers;Education   ;Y50-64;3629;1;1.3829129697085433e-05;9937628;0.0003651776862647706;0;1;Old +13373;Hungary;M;Craft and related trades workers;Education   ;Y65-84;160;1;6.097163823460097e-07;9937628;1.6100421549287215e-05;0;1;Old +13374;Hungary;M;Craft and related trades workers;Education   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13375;Hungary;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;433;1;1.6500449597238888e-06;9937628;4.3571765817758526e-05;1;0;Young +13376;Hungary;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;2552;1;9.724976298418854e-06;9937628;0.0002568017237111311;1;0;Young +13377;Hungary;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;2376;1;9.054288277838245e-06;9937628;0.00023909126000691512;0;1;Old +13378;Hungary;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;78;1;2.9723673639367974e-07;9937628;7.848955505277517e-06;0;1;Old +13379;Hungary;M;Craft and related trades workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13380;Hungary;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;410;1;1.5623982297616498e-06;9937628;4.1257330220048485e-05;1;0;Young +13381;Hungary;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;1809;1;6.893605847899572e-06;9937628;0.00018203539114162857;1;0;Young +13382;Hungary;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;1092;1;4.161314309511516e-06;9937628;0.00010988537707388524;0;1;Old +13383;Hungary;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;58;1;2.2102218860042852e-07;9937628;5.836402811616615e-06;0;1;Old +13384;Hungary;M;Craft and related trades workers;Other service activities   ;Y15-29;1210;1;4.610980141491699e-06;9937628;0.00012175943796648456;1;0;Young +13385;Hungary;M;Craft and related trades workers;Other service activities   ;Y30-49;4563;1;1.7388349079030263e-05;9937628;0.00045916389705873476;1;0;Young +13386;Hungary;M;Craft and related trades workers;Other service activities   ;Y50-64;2739;1;1.0437582320285753e-05;9937628;0.0002756190913968605;0;1;Old +13387;Hungary;M;Craft and related trades workers;Other service activities   ;Y65-84;335;1;1.2765936755369577e-06;9937628;3.37102576188201e-05;0;1;Old +13388;Hungary;M;Craft and related trades workers;Other service activities   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13389;Hungary;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;255;1;9.71735484363953e-07;9937628;2.56600468441765e-05;1;0;Young +13390;Hungary;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;838;1;3.1933895525372256e-06;9937628;8.432595786439178e-05;1;0;Young +13391;Hungary;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;235;1;8.955209365707018e-07;9937628;2.3647494150515597e-05;0;1;Old +13392;Hungary;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13393;Hungary;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;368;1;1.4023476793958223e-06;9937628;3.703096956336059e-05;1;0;Young +13394;Hungary;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1438;1;5.479825986334762e-06;9937628;0.00014470253867421884;1;0;Young +13395;Hungary;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;375;1;1.4290227711234603e-06;9937628;3.773536300614191e-05;0;1;Old +13396;Hungary;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +13397;Hungary;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13398;Hungary;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;3527;1;1.344043550333985e-05;9937628;0.00035491366752710005;1;0;Young +13399;Hungary;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;12477;1;4.754644564081977e-05;9937628;0.0012555309979403535;1;0;Young +13400;Hungary;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;7742;1;2.9502651450767543e-05;9937628;0.000779059147716135;0;1;Old +13401;Hungary;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;173;1;6.592558384116229e-07;9937628;1.74085808001668e-05;0;1;Old +13402;Hungary;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13403;Hungary;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;263;1;1.0022213034812534e-06;9937628;2.6465067921640858e-05;1;0;Young +13404;Hungary;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;1592;1;6.066678004342796e-06;9937628;0.0001601991944154078;1;0;Young +13405;Hungary;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;963;1;3.669730476245046e-06;9937628;9.690441219977242e-05;0;1;Old +13406;Hungary;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +13407;Hungary;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13408;Hungary;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;40805;1;0.00015549673113518078;9937628;0.004106110633241655;1;0;Young +13409;Hungary;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;77019;1;0.00029349841282442075;9937628;0.007750239795653449;1;0;Young +13410;Hungary;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;29548;1;0.00011259937290974934;9937628;0.0029733453496146164;0;1;Old +13411;Hungary;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;521;1;1.9853889700141942e-06;9937628;5.242699766986649e-05;0;1;Old +13412;Hungary;M;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;17;1;6.478236562426352e-08;9937628;1.7106697896117666e-06;0;1;Old +13413;Hungary;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;231;1;8.802780270120515e-07;9937628;2.3244983611783416e-05;1;0;Young +13414;Hungary;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2096;1;7.987284608732727e-06;9937628;0.0002109155222956625;1;0;Young +13415;Hungary;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1311;1;4.995863607847617e-06;9937628;0.00013192282906947212;0;1;Old +13416;Hungary;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;23;1;8.764672996223889e-08;9937628;2.314435597710037e-06;0;1;Old +13417;Hungary;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13418;Hungary;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1053;1;4.012695941314676e-06;9937628;0.00010596089932124648;1;0;Young +13419;Hungary;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;6566;1;2.5021236040524372e-05;9937628;0.0006607210493288741;1;0;Young +13420;Hungary;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4678;1;1.7826582728841457e-05;9937628;0.00047073607504728493;0;1;Old +13421;Hungary;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;40;1;1.5242909558650242e-07;9937628;4.025105387321804e-06;0;1;Old +13422;Hungary;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13423;Hungary;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;2057;1;7.838666240535887e-06;9937628;0.00020699104454302374;1;0;Young +13424;Hungary;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;9913;1;3.777574061372496e-05;9937628;0.0009975217426130259;1;0;Young +13425;Hungary;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;5242;1;1.9975832976611143e-05;9937628;0.0005274900610085224;0;1;Old +13426;Hungary;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;80;1;3.0485819117300483e-07;9937628;8.050210774643608e-06;0;1;Old +13427;Hungary;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4375;1;1.6671932329773704e-05;9937628;0.0004402459017383223;1;0;Young +13428;Hungary;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;14905;1;5.6798891742920466e-05;9937628;0.001499854894950787;1;0;Young +13429;Hungary;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4987;1;1.900409749224719e-05;9937628;0.0005018300141643459;0;1;Old +13430;Hungary;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;126;1;4.801516510974826e-07;9937628;1.2679081970063682e-05;0;1;Old +13431;Hungary;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13432;Hungary;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;11026;1;4.201708019841939e-05;9937628;0.0011095203000152552;1;0;Young +13433;Hungary;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;70418;1;0.0002683438013252582;9937628;0.007085996779110669;1;0;Young +13434;Hungary;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;33880;1;0.00012910744396176755;9937628;0.0034092642630615677;0;1;Old +13435;Hungary;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;851;1;3.242929008602839e-06;9937628;8.563411711527137e-05;0;1;Old +13436;Hungary;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;10;1;3.8107273896625604e-08;9937628;1.006276346830451e-06;0;1;Old +13437;Hungary;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;276;1;1.0517607595468668e-06;9937628;2.7773227172520446e-05;1;0;Young +13438;Hungary;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;919;1;3.5020584710998933e-06;9937628;9.247679627371843e-05;1;0;Young +13439;Hungary;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;433;1;1.6500449597238888e-06;9937628;4.3571765817758526e-05;0;1;Old +13440;Hungary;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;26;1;9.907891213122657e-08;9937628;2.6163185017591723e-06;0;1;Old +13441;Hungary;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13442;Hungary;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;234;1;8.917102091810392e-07;9937628;2.354686651583255e-05;1;0;Young +13443;Hungary;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;624;1;2.377893891149438e-06;9937628;6.279164404222014e-05;1;0;Young +13444;Hungary;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;291;1;1.1089216703918052e-06;9937628;2.928264169276612e-05;0;1;Old +13445;Hungary;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;16;1;6.097163823460096e-08;9937628;1.6100421549287215e-06;0;1;Old +13446;Hungary;M;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13447;Hungary;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;90;1;3.4296546506963047e-07;9937628;9.056487121474059e-06;1;0;Young +13448;Hungary;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;384;1;1.4633193176304232e-06;9937628;3.8641011718289314e-05;1;0;Young +13449;Hungary;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;197;1;7.507132957635244e-07;9937628;1.9823644032559884e-05;0;1;Old +13450;Hungary;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +13451;Hungary;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +13452;Hungary;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;146;1;5.563661988907339e-07;9937628;1.4691634663724583e-05;1;0;Young +13453;Hungary;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;616;1;2.347408072032137e-06;9937628;6.198662296475578e-05;1;0;Young +13454;Hungary;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;442;1;1.6843415062308518e-06;9937628;4.4477414529905926e-05;0;1;Old +13455;Hungary;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;24;1;9.145745735190145e-08;9937628;2.415063232393082e-06;0;1;Old +13456;Hungary;M;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13457;Hungary;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;374;1;1.4252120437337977e-06;9937628;3.763473537145886e-05;1;0;Young +13458;Hungary;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;1325;1;5.049213791302893e-06;9937628;0.00013333161595503474;1;0;Young +13459;Hungary;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;677;1;2.5798624428015536e-06;9937628;6.812490868042153e-05;0;1;Old +13460;Hungary;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;29;1;1.1051109430021426e-07;9937628;2.9182014058083076e-06;0;1;Old +13461;Hungary;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;1226;1;4.671951779726299e-06;9937628;0.00012336948012141327;1;0;Young +13462;Hungary;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2870;1;1.0936787608331549e-05;9937628;0.0002888013115403394;1;0;Young +13463;Hungary;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;1550;1;5.9066274539769685e-06;9937628;0.00015597283375871988;0;1;Old +13464;Hungary;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;39;1;1.4861836819683987e-07;9937628;3.924477752638759e-06;0;1;Old +13465;Hungary;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13466;Hungary;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;974;1;3.7116484775313338e-06;9937628;9.801131618128591e-05;1;0;Young +13467;Hungary;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;4540;1;1.7300702349068025e-05;9937628;0.0004568494614610247;1;0;Young +13468;Hungary;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;2968;1;1.131023889251848e-05;9937628;0.0002986628197392778;0;1;Old +13469;Hungary;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;55;1;2.0959000643144082e-07;9937628;5.5345199075674795e-06;0;1;Old +13470;Hungary;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +13471;Hungary;M;Plant and machine operators, and assemblers;Education   ;Y15-29;81;1;3.086689185626674e-07;9937628;8.150838409326653e-06;1;0;Young +13472;Hungary;M;Plant and machine operators, and assemblers;Education   ;Y30-49;588;1;2.2407077051215855e-06;9937628;5.9169049193630515e-05;1;0;Young +13473;Hungary;M;Plant and machine operators, and assemblers;Education   ;Y50-64;759;1;2.8923420887538835e-06;9937628;7.637637472443123e-05;0;1;Old +13474;Hungary;M;Plant and machine operators, and assemblers;Education   ;Y65-84;29;1;1.1051109430021426e-07;9937628;2.9182014058083076e-06;0;1;Old +13475;Hungary;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;544;1;2.073035699976433e-06;9937628;5.474143326757653e-05;1;0;Young +13476;Hungary;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;3513;1;1.3387085319884576e-05;9937628;0.0003535048806415374;1;0;Young +13477;Hungary;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2419;1;9.218149555593735e-06;9937628;0.00024341824829828606;0;1;Old +13478;Hungary;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;68;1;2.591294624970541e-07;9937628;6.842679158447066e-06;0;1;Old +13479;Hungary;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;92;1;3.5058691984895557e-07;9937628;9.257742390840148e-06;1;0;Young +13480;Hungary;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;531;1;2.02349624391082e-06;9937628;5.343327401669694e-05;1;0;Young +13481;Hungary;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;384;1;1.4633193176304232e-06;9937628;3.8641011718289314e-05;0;1;Old +13482;Hungary;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;21;1;8.002527518291377e-08;9937628;2.1131803283439468e-06;0;1;Old +13483;Hungary;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13484;Hungary;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;302;1;1.1508396716780934e-06;9937628;3.0389545674279616e-05;1;0;Young +13485;Hungary;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;1081;1;4.119396308225228e-06;9937628;0.00010877847309237174;1;0;Young +13486;Hungary;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;604;1;2.3016793433561867e-06;9937628;6.077909134855923e-05;0;1;Old +13487;Hungary;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;33;1;1.257540038588645e-07;9937628;3.320711944540488e-06;0;1;Old +13488;Hungary;M;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13489;Hungary;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;28;1;1.067003669105517e-07;9937628;2.8175737711252624e-06;1;0;Young +13490;Hungary;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;90;1;3.4296546506963047e-07;9937628;9.056487121474059e-06;1;0;Young +13491;Hungary;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;34;1;1.2956473124852705e-07;9937628;3.421339579223533e-06;0;1;Old +13492;Hungary;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +13493;Hungary;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;60;1;2.2864364337975364e-07;9937628;6.037658080982705e-06;1;0;Young +13494;Hungary;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;214;1;8.15495661387788e-07;9937628;2.153431382217165e-05;1;0;Young +13495;Hungary;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;78;1;2.9723673639367974e-07;9937628;7.848955505277517e-06;0;1;Old +13496;Hungary;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;4370;1;1.665287869282539e-05;9937628;0.000439742763564907;1;0;Young +13497;Hungary;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;9227;1;3.5161581624416446e-05;9937628;0.0009284911852204571;1;0;Young +13498;Hungary;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;4511;1;1.719019125476781e-05;9937628;0.0004539312600552164;0;1;Old +13499;Hungary;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;162;1;6.173378371253348e-07;9937628;1.6301676818653306e-05;0;1;Old +13500;Hungary;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13501;Hungary;M;Elementary occupations;Mining and quarrying   ;Y15-29;50;1;1.9053636948312803e-07;9937628;5.031381734152255e-06;1;0;Young +13502;Hungary;M;Elementary occupations;Mining and quarrying   ;Y30-49;120;1;4.572872867595073e-07;9937628;1.207531616196541e-05;1;0;Young +13503;Hungary;M;Elementary occupations;Mining and quarrying   ;Y50-64;78;1;2.9723673639367974e-07;9937628;7.848955505277517e-06;0;1;Old +13504;Hungary;M;Elementary occupations;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +13505;Hungary;M;Elementary occupations;Manufacturing   ;Y15-29;8833;1;3.36601550328894e-05;9937628;0.0008888438971553373;1;0;Young +13506;Hungary;M;Elementary occupations;Manufacturing   ;Y30-49;17171;1;6.543400000789582e-05;9937628;0.0017278771151425672;1;0;Young +13507;Hungary;M;Elementary occupations;Manufacturing   ;Y50-64;6520;1;2.4845942580599896e-05;9937628;0.000656092178133454;0;1;Old +13508;Hungary;M;Elementary occupations;Manufacturing   ;Y65-84;145;1;5.525554715010713e-07;9937628;1.4591007029041538e-05;0;1;Old +13509;Hungary;M;Elementary occupations;Manufacturing   ;Y_GE85;5;1;1.9053636948312802e-08;9937628;5.031381734152255e-07;0;1;Old +13510;Hungary;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;143;1;5.449340167217462e-07;9937628;1.4389751759675448e-05;1;0;Young +13511;Hungary;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;482;1;1.836770601817354e-06;9937628;4.850251991722773e-05;1;0;Young +13512;Hungary;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;269;1;1.0250856678192288e-06;9937628;2.706883372973913e-05;0;1;Old +13513;Hungary;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13514;Hungary;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2559;1;9.751651390146492e-06;9937628;0.0002575061171539124;1;0;Young +13515;Hungary;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;6346;1;2.418287601479861e-05;9937628;0.0006385829696986041;1;0;Young +13516;Hungary;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2887;1;1.1001569973955812e-05;9937628;0.0002905119813299512;0;1;Old +13517;Hungary;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;27;1;1.0288963952088914e-07;9937628;2.7169461364422175e-06;0;1;Old +13518;Hungary;M;Elementary occupations;Construction   ;Y15-29;10450;1;3.9822101221973755e-05;9937628;0.001051558782437821;1;0;Young +13519;Hungary;M;Elementary occupations;Construction   ;Y30-49;21498;1;8.192301742296572e-05;9937628;0.0021632928904161035;1;0;Young +13520;Hungary;M;Elementary occupations;Construction   ;Y50-64;7047;1;2.6854195914952065e-05;9937628;0.0007091229416114188;0;1;Old +13521;Hungary;M;Elementary occupations;Construction   ;Y65-84;98;1;3.7345128418693096e-07;9937628;9.86150819893842e-06;0;1;Old +13522;Hungary;M;Elementary occupations;Construction   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13523;Hungary;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;8338;1;3.177384497500643e-05;9937628;0.0008390332179872299;1;0;Young +13524;Hungary;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;12915;1;4.921554423749197e-05;9937628;0.0012996059019315274;1;0;Young +13525;Hungary;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3872;1;1.4755136452773434e-05;9937628;0.00038963020149275057;0;1;Old +13526;Hungary;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;146;1;5.563661988907339e-07;9937628;1.4691634663724583e-05;0;1;Old +13527;Hungary;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13528;Hungary;M;Elementary occupations;Transportation and storage   ;Y15-29;3285;1;1.2518239475041511e-05;9937628;0.00033056177993380314;1;0;Young +13529;Hungary;M;Elementary occupations;Transportation and storage   ;Y30-49;8204;1;3.1263207504791645e-05;9937628;0.0008255491149397019;1;0;Young +13530;Hungary;M;Elementary occupations;Transportation and storage   ;Y50-64;3044;1;1.1599854174132835e-05;9937628;0.0003063105199751893;0;1;Old +13531;Hungary;M;Elementary occupations;Transportation and storage   ;Y65-84;66;1;2.51508007717729e-07;9937628;6.641423889080976e-06;0;1;Old +13532;Hungary;M;Elementary occupations;Transportation and storage   ;Y_GE85;6;1;2.2864364337975363e-08;9937628;6.037658080982705e-07;0;1;Old +13533;Hungary;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;4266;1;1.6256563044300482e-05;9937628;0.00042927748955787036;1;0;Young +13534;Hungary;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;4241;1;1.616129485955892e-05;9937628;0.0004267617986907942;1;0;Young +13535;Hungary;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;1002;1;3.818348844441885e-06;9937628;0.00010082888995241118;0;1;Old +13536;Hungary;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;48;1;1.829149147038029e-07;9937628;4.830126464786164e-06;0;1;Old +13537;Hungary;M;Elementary occupations;Accommodation and food service activities   ;Y_GE85;4;1;1.524290955865024e-08;9937628;4.025105387321804e-07;0;1;Old +13538;Hungary;M;Elementary occupations;Information and communication   ;Y15-29;781;1;2.97617809132646e-06;9937628;7.859018268745821e-05;1;0;Young +13539;Hungary;M;Elementary occupations;Information and communication   ;Y30-49;1286;1;4.900595423106053e-06;9937628;0.00012940713820239598;1;0;Young +13540;Hungary;M;Elementary occupations;Information and communication   ;Y50-64;538;1;2.0501713356384576e-06;9937628;5.413766745947826e-05;0;1;Old +13541;Hungary;M;Elementary occupations;Information and communication   ;Y65-84;39;1;1.4861836819683987e-07;9937628;3.924477752638759e-06;0;1;Old +13542;Hungary;M;Elementary occupations;Information and communication   ;Y_GE85;3;1;1.1432182168987682e-08;9937628;3.0188290404913527e-07;0;1;Old +13543;Hungary;M;Elementary occupations;Financial and insurance activities   ;Y15-29;428;1;1.630991322775576e-06;9937628;4.30686276443433e-05;1;0;Young +13544;Hungary;M;Elementary occupations;Financial and insurance activities   ;Y30-49;687;1;2.617969716698179e-06;9937628;6.913118502725198e-05;1;0;Young +13545;Hungary;M;Elementary occupations;Financial and insurance activities   ;Y50-64;278;1;1.0593822143261918e-06;9937628;2.7974482441886533e-05;0;1;Old +13546;Hungary;M;Elementary occupations;Financial and insurance activities   ;Y65-84;12;1;4.5728728675950726e-08;9937628;1.207531616196541e-06;0;1;Old +13547;Hungary;M;Elementary occupations;Real estate activities   ;Y15-29;584;1;2.2254647955629356e-06;9937628;5.8766538654898334e-05;1;0;Young +13548;Hungary;M;Elementary occupations;Real estate activities   ;Y30-49;1148;1;4.374715043332619e-06;9937628;0.00011552052461613576;1;0;Young +13549;Hungary;M;Elementary occupations;Real estate activities   ;Y50-64;553;1;2.1073322464833958e-06;9937628;5.564708197972394e-05;0;1;Old +13550;Hungary;M;Elementary occupations;Real estate activities   ;Y65-84;45;1;1.7148273253481523e-07;9937628;4.528243560737029e-06;0;1;Old +13551;Hungary;M;Elementary occupations;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13552;Hungary;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;1470;1;5.601769262803964e-06;9937628;0.00014792262298407628;1;0;Young +13553;Hungary;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;2422;1;9.22958173776272e-06;9937628;0.00024372013120233521;1;0;Young +13554;Hungary;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;931;1;3.547787199775844e-06;9937628;9.368432788991497e-05;0;1;Old +13555;Hungary;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;72;1;2.7437237205570434e-07;9937628;7.2451896971792465e-06;0;1;Old +13556;Hungary;M;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13557;Hungary;M;Elementary occupations;Administrative and support service activities   ;Y15-29;3217;1;1.2259110012544458e-05;9937628;0.00032371910077535603;1;0;Young +13558;Hungary;M;Elementary occupations;Administrative and support service activities   ;Y30-49;5754;1;2.1926925400118374e-05;9937628;0.0005790114099662414;1;0;Young +13559;Hungary;M;Elementary occupations;Administrative and support service activities   ;Y50-64;2944;1;1.1218781435166578e-05;9937628;0.0002962477565068847;0;1;Old +13560;Hungary;M;Elementary occupations;Administrative and support service activities   ;Y65-84;119;1;4.5347655936984473e-07;9937628;1.1974688527282366e-05;0;1;Old +13561;Hungary;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;16020;1;6.104785278239422e-05;9937628;0.0016120547076223823;1;0;Young +13562;Hungary;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;32612;1;0.00012427544163167543;9937628;0.0032816684222834666;1;0;Young +13563;Hungary;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;13208;1;5.03320873626631e-05;9937628;0.0013290897988936594;0;1;Old +13564;Hungary;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;85;1;3.239118281213176e-07;9937628;8.553348948058832e-06;0;1;Old +13565;Hungary;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;18;1;6.859309301392609e-08;9937628;1.8112974242948116e-06;0;1;Old +13566;Hungary;M;Elementary occupations;Education   ;Y15-29;503;1;1.916795877000268e-06;9937628;5.061570024557168e-05;1;0;Young +13567;Hungary;M;Elementary occupations;Education   ;Y30-49;943;1;3.5935159284517944e-06;9937628;9.489185950611152e-05;1;0;Young +13568;Hungary;M;Elementary occupations;Education   ;Y50-64;715;1;2.7246700836087308e-06;9937628;7.194875879837724e-05;0;1;Old +13569;Hungary;M;Elementary occupations;Education   ;Y65-84;64;1;2.4388655293840386e-07;9937628;6.440168619714886e-06;0;1;Old +13570;Hungary;M;Elementary occupations;Education   ;Y_GE85;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13571;Hungary;M;Elementary occupations;Human health and social work activities   ;Y15-29;627;1;2.3893260733184253e-06;9937628;6.309352694626927e-05;1;0;Young +13572;Hungary;M;Elementary occupations;Human health and social work activities   ;Y30-49;1735;1;6.611612021064543e-06;9937628;0.00017458894617508323;1;0;Young +13573;Hungary;M;Elementary occupations;Human health and social work activities   ;Y50-64;1047;1;3.989831576976701e-06;9937628;0.00010535713351314821;0;1;Old +13574;Hungary;M;Elementary occupations;Human health and social work activities   ;Y65-84;42;1;1.6005055036582754e-07;9937628;4.2263606566878936e-06;0;1;Old +13575;Hungary;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;569;1;2.168303884717997e-06;9937628;5.7257124134652655e-05;1;0;Young +13576;Hungary;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;993;1;3.7840522979349228e-06;9937628;9.992324124026377e-05;1;0;Young +13577;Hungary;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;523;1;1.993010424793519e-06;9937628;5.262825293923258e-05;0;1;Old +13578;Hungary;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;56;1;2.134007338211034e-07;9937628;5.635147542250525e-06;0;1;Old +13579;Hungary;M;Elementary occupations;Other service activities   ;Y15-29;466;1;1.7757989635827531e-06;9937628;4.689247776229901e-05;1;0;Young +13580;Hungary;M;Elementary occupations;Other service activities   ;Y30-49;917;1;3.494437016320568e-06;9937628;9.227554100435234e-05;1;0;Young +13581;Hungary;M;Elementary occupations;Other service activities   ;Y50-64;444;1;1.691962961010177e-06;9937628;4.467866979927202e-05;0;1;Old +13582;Hungary;M;Elementary occupations;Other service activities   ;Y65-84;13;1;4.953945606561329e-08;9937628;1.3081592508795861e-06;0;1;Old +13583;Hungary;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;204;1;7.773883874911624e-07;9937628;2.0528037475341197e-05;1;0;Young +13584;Hungary;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;423;1;1.6119376858272632e-06;9937628;4.256548947092807e-05;1;0;Young +13585;Hungary;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;158;1;6.020949275666846e-07;9937628;1.5899166279921125e-05;0;1;Old +13586;Hungary;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;9937628;2.012552693660902e-07;0;1;Old +13587;Hungary;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;194;1;7.392811135945367e-07;9937628;1.9521761128510748e-05;1;0;Young +13588;Hungary;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;320;1;1.2194327646920193e-06;9937628;3.220084309857443e-05;1;0;Young +13589;Hungary;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;68;1;2.591294624970541e-07;9937628;6.842679158447066e-06;0;1;Old +13590;Hungary;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;9937628;1.006276346830451e-07;0;1;Old +13591;Ireland;F;Not applicable;Not applicable  ;Y15-29;226149;1;0.0008617921884447984;4574888;0.04943268556519854;1;0;Young +13592;Ireland;F;Not applicable;Not applicable  ;Y30-49;174279;1;0.0006641297587430014;4574888;0.03809470308344161;1;0;Young +13593;Ireland;F;Not applicable;Not applicable  ;Y50-64;158129;1;0.000602586511399951;4574888;0.03456456201769311;0;1;Old +13594;Ireland;F;Not applicable;Not applicable  ;Y65-84;234682;1;0.0008943091252607891;4574888;0.05129786783851321;0;1;Old +13595;Ireland;F;Not applicable;Not applicable  ;Y_GE85;39355;1;0.00014997117642017008;4574888;0.00860239638653449;0;1;Old +13596;Ireland;F;Not applicable;Not applicable  ;Y_LT15;476789;1;0.0018169129013898225;4574888;0.10421872622892626;0;1;Old +13597;Ireland;F;Armed forces occupations;Construction   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +13598;Ireland;F;Armed forces occupations;Transportation and storage   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +13599;Ireland;F;Armed forces occupations;Transportation and storage   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +13600;Ireland;F;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +13601;Ireland;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;210;1;8.002527518291377e-07;4574888;4.5902763084036154e-05;1;0;Young +13602;Ireland;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;263;1;1.0022213034812534e-06;4574888;5.7487746148102424e-05;1;0;Young +13603;Ireland;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +13604;Ireland;F;Armed forces occupations;Education   ;Y15-29;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +13605;Ireland;F;Armed forces occupations;Human health and social work activities   ;Y30-49;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +13606;Ireland;F;Armed forces occupations;Not stated   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +13607;Ireland;F;Managers;Agriculture, forestry and fishing   ;Y15-29;33;1;1.257540038588645e-07;4574888;7.21329134177711e-06;1;0;Young +13608;Ireland;F;Managers;Agriculture, forestry and fishing   ;Y30-49;207;1;7.8882056966015e-07;4574888;4.524700932569278e-05;1;0;Young +13609;Ireland;F;Managers;Agriculture, forestry and fishing   ;Y50-64;87;1;3.3153328290064277e-07;4574888;1.9016858991957838e-05;0;1;Old +13610;Ireland;F;Managers;Agriculture, forestry and fishing   ;Y65-84;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +13611;Ireland;F;Managers;Mining and quarrying   ;Y15-29;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;1;0;Young +13612;Ireland;F;Managers;Mining and quarrying   ;Y30-49;42;1;1.6005055036582754e-07;4574888;9.18055261680723e-06;1;0;Young +13613;Ireland;F;Managers;Mining and quarrying   ;Y50-64;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +13614;Ireland;F;Managers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13615;Ireland;F;Managers;Manufacturing   ;Y15-29;356;1;1.3566189507198715e-06;4574888;7.781611265674701e-05;1;0;Young +13616;Ireland;F;Managers;Manufacturing   ;Y30-49;2645;1;1.0079373945657472e-05;4574888;0.0005781562302727411;1;0;Young +13617;Ireland;F;Managers;Manufacturing   ;Y50-64;686;1;2.6141589893085166e-06;4574888;0.0001499490260745181;0;1;Old +13618;Ireland;F;Managers;Manufacturing   ;Y65-84;53;1;2.019685516521157e-07;4574888;1.1584983064066267e-05;0;1;Old +13619;Ireland;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;1;0;Young +13620;Ireland;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;150;1;5.716091084493841e-07;4574888;3.278768791716868e-05;1;0;Young +13621;Ireland;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;31;1;1.1813254907953938e-07;4574888;6.776122169548194e-06;0;1;Old +13622;Ireland;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;1;0;Young +13623;Ireland;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;110;1;4.1918001286288164e-07;4574888;2.4044304472590368e-05;1;0;Young +13624;Ireland;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;30;1;1.1432182168987682e-07;4574888;6.557537583433737e-06;0;1;Old +13625;Ireland;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13626;Ireland;F;Managers;Construction   ;Y15-29;60;1;2.2864364337975364e-07;4574888;1.3115075166867473e-05;1;0;Young +13627;Ireland;F;Managers;Construction   ;Y30-49;459;1;1.7491238718551153e-06;4574888;0.00010033032502653617;1;0;Young +13628;Ireland;F;Managers;Construction   ;Y50-64;236;1;8.993316639603643e-07;4574888;5.1585962323012064e-05;0;1;Old +13629;Ireland;F;Managers;Construction   ;Y65-84;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;0;1;Old +13630;Ireland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4586;1;1.7475995808992504e-05;4574888;0.001002428911920904;1;0;Young +13631;Ireland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9390;1;3.5782730188931445e-05;4574888;0.0020525092636147595;1;0;Young +13632;Ireland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2640;1;1.006032030870916e-05;4574888;0.0005770633073421688;0;1;Old +13633;Ireland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;335;1;1.2765936755369577e-06;4574888;7.32258363483434e-05;0;1;Old +13634;Ireland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +13635;Ireland;F;Managers;Transportation and storage   ;Y15-29;103;1;3.9250492113524375e-07;4574888;2.2514212369789162e-05;1;0;Young +13636;Ireland;F;Managers;Transportation and storage   ;Y30-49;731;1;2.785641721843332e-06;4574888;0.00015978533244966872;1;0;Young +13637;Ireland;F;Managers;Transportation and storage   ;Y50-64;216;1;8.231171161671131e-07;4574888;4.7214270600722906e-05;0;1;Old +13638;Ireland;F;Managers;Transportation and storage   ;Y65-84;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +13639;Ireland;F;Managers;Accommodation and food service activities   ;Y15-29;2167;1;8.25784625339877e-06;4574888;0.00047367279811003023;1;0;Young +13640;Ireland;F;Managers;Accommodation and food service activities   ;Y30-49;6484;1;2.4708756394572043e-05;4574888;0.001417302456366145;1;0;Young +13641;Ireland;F;Managers;Accommodation and food service activities   ;Y50-64;2497;1;9.515386291987414e-06;4574888;0.0005458057115278013;0;1;Old +13642;Ireland;F;Managers;Accommodation and food service activities   ;Y65-84;372;1;1.4175905889544725e-06;4574888;8.131346603457833e-05;0;1;Old +13643;Ireland;F;Managers;Accommodation and food service activities   ;Y_GE85;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +13644;Ireland;F;Managers;Information and communication   ;Y15-29;272;1;1.0365178499882164e-06;4574888;5.945500742313254e-05;1;0;Young +13645;Ireland;F;Managers;Information and communication   ;Y30-49;1438;1;5.479825986334762e-06;4574888;0.00031432463483259046;1;0;Young +13646;Ireland;F;Managers;Information and communication   ;Y50-64;212;1;8.078742066084628e-07;4574888;4.633993225626507e-05;0;1;Old +13647;Ireland;F;Managers;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +13648;Ireland;F;Managers;Financial and insurance activities   ;Y15-29;650;1;2.4769728032806642e-06;4574888;0.0001420799809743976;1;0;Young +13649;Ireland;F;Managers;Financial and insurance activities   ;Y30-49;4342;1;1.6546178325914836e-05;4574888;0.0009490942729089762;1;0;Young +13650;Ireland;F;Managers;Financial and insurance activities   ;Y50-64;933;1;3.555408654555169e-06;4574888;0.00020393941884478921;0;1;Old +13651;Ireland;F;Managers;Financial and insurance activities   ;Y65-84;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;0;1;Old +13652;Ireland;F;Managers;Real estate activities   ;Y15-29;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;1;0;Young +13653;Ireland;F;Managers;Real estate activities   ;Y30-49;149;1;5.677983810597215e-07;4574888;3.256910333105422e-05;1;0;Young +13654;Ireland;F;Managers;Real estate activities   ;Y50-64;57;1;2.1721146121076594e-07;4574888;1.2459321408524099e-05;0;1;Old +13655;Ireland;F;Managers;Real estate activities   ;Y65-84;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +13656;Ireland;F;Managers;Professional, scientific and technical activities   ;Y15-29;243;1;9.260067556880022e-07;4574888;5.3116054425813267e-05;1;0;Young +13657;Ireland;F;Managers;Professional, scientific and technical activities   ;Y30-49;1494;1;5.693226720155865e-06;4574888;0.0003265653716550001;1;0;Young +13658;Ireland;F;Managers;Professional, scientific and technical activities   ;Y50-64;305;1;1.162271853847081e-06;4574888;6.666829876490966e-05;0;1;Old +13659;Ireland;F;Managers;Professional, scientific and technical activities   ;Y65-84;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;0;1;Old +13660;Ireland;F;Managers;Administrative and support service activities   ;Y15-29;273;1;1.040328577377879e-06;4574888;5.9673592009247e-05;1;0;Young +13661;Ireland;F;Managers;Administrative and support service activities   ;Y30-49;1194;1;4.550008503257097e-06;4574888;0.00026098999582066274;1;0;Young +13662;Ireland;F;Managers;Administrative and support service activities   ;Y50-64;318;1;1.2118113099126943e-06;4574888;6.950989838439761e-05;0;1;Old +13663;Ireland;F;Managers;Administrative and support service activities   ;Y65-84;27;1;1.0288963952088914e-07;4574888;5.901783825090363e-06;0;1;Old +13664;Ireland;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;66;1;2.51508007717729e-07;4574888;1.442658268355422e-05;1;0;Young +13665;Ireland;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;1382;1;5.266425252513658e-06;4574888;0.0003020838980101808;1;0;Young +13666;Ireland;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;809;1;3.0828784582370114e-06;4574888;0.00017683493016659642;0;1;Old +13667;Ireland;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;26;1;9.907891213122657e-08;4574888;5.683199238975905e-06;0;1;Old +13668;Ireland;F;Managers;Education   ;Y15-29;323;1;1.2308649468610071e-06;4574888;7.060282131496989e-05;1;0;Young +13669;Ireland;F;Managers;Education   ;Y30-49;2323;1;8.852319726186128e-06;4574888;0.0005077719935438857;1;0;Young +13670;Ireland;F;Managers;Education   ;Y50-64;1389;1;5.2931003442412966e-06;4574888;0.000303613990112982;0;1;Old +13671;Ireland;F;Managers;Education   ;Y65-84;62;1;2.3626509815907876e-07;4574888;1.3552244339096389e-05;0;1;Old +13672;Ireland;F;Managers;Human health and social work activities   ;Y15-29;282;1;1.074625123884842e-06;4574888;6.164085328427712e-05;1;0;Young +13673;Ireland;F;Managers;Human health and social work activities   ;Y30-49;2436;1;9.282931921217997e-06;4574888;0.0005324720517748194;1;0;Young +13674;Ireland;F;Managers;Human health and social work activities   ;Y50-64;1334;1;5.083510337809856e-06;4574888;0.0002915918378766868;0;1;Old +13675;Ireland;F;Managers;Human health and social work activities   ;Y65-84;63;1;2.400758255487413e-07;4574888;1.3770828925210846e-05;0;1;Old +13676;Ireland;F;Managers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13677;Ireland;F;Managers;Arts, entertainment and recreation   ;Y15-29;588;1;2.2407077051215855e-06;4574888;0.00012852773663530123;1;0;Young +13678;Ireland;F;Managers;Arts, entertainment and recreation   ;Y30-49;1223;1;4.660519597557312e-06;4574888;0.00026732894881798197;1;0;Young +13679;Ireland;F;Managers;Arts, entertainment and recreation   ;Y50-64;352;1;1.3413760411612213e-06;4574888;7.694177431228918e-05;0;1;Old +13680;Ireland;F;Managers;Arts, entertainment and recreation   ;Y65-84;22;1;8.383600257257633e-08;4574888;4.808860894518074e-06;0;1;Old +13681;Ireland;F;Managers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13682;Ireland;F;Managers;Other service activities   ;Y15-29;93;1;3.543976472386181e-07;4574888;2.0328366508644583e-05;1;0;Young +13683;Ireland;F;Managers;Other service activities   ;Y30-49;469;1;1.787231145751741e-06;4574888;0.00010251617088768075;1;0;Young +13684;Ireland;F;Managers;Other service activities   ;Y50-64;220;1;8.383600257257633e-07;4574888;4.8088608945180736e-05;0;1;Old +13685;Ireland;F;Managers;Other service activities   ;Y65-84;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;0;1;Old +13686;Ireland;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +13687;Ireland;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +13688;Ireland;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;1;0;Young +13689;Ireland;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +13690;Ireland;F;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13691;Ireland;F;Managers;Not stated   ;Y15-29;132;1;5.03016015435458e-07;4574888;2.885316536710844e-05;1;0;Young +13692;Ireland;F;Managers;Not stated   ;Y30-49;460;1;1.752934599244778e-06;4574888;0.00010054890961265062;1;0;Young +13693;Ireland;F;Managers;Not stated   ;Y50-64;338;1;1.2880258577059455e-06;4574888;7.388159010668676e-05;0;1;Old +13694;Ireland;F;Managers;Not stated   ;Y65-84;58;1;2.2102218860042852e-07;4574888;1.2677905994638557e-05;0;1;Old +13695;Ireland;F;Managers;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13696;Ireland;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;41;1;1.56239822976165e-07;4574888;8.961968030692773e-06;1;0;Young +13697;Ireland;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;173;1;6.592558384116229e-07;4574888;3.781513339780121e-05;1;0;Young +13698;Ireland;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;34;1;1.2956473124852705e-07;4574888;7.431875927891568e-06;0;1;Old +13699;Ireland;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +13700;Ireland;F;Professionals;Mining and quarrying   ;Y15-29;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;1;0;Young +13701;Ireland;F;Professionals;Mining and quarrying   ;Y30-49;71;1;2.705616446660418e-07;4574888;1.551950561412651e-05;1;0;Young +13702;Ireland;F;Professionals;Mining and quarrying   ;Y50-64;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +13703;Ireland;F;Professionals;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13704;Ireland;F;Professionals;Manufacturing   ;Y15-29;2087;1;7.952988062225763e-06;4574888;0.0004561860312208736;1;0;Young +13705;Ireland;F;Professionals;Manufacturing   ;Y30-49;7863;1;2.9963749464916713e-05;4574888;0.0017187306006179823;1;0;Young +13706;Ireland;F;Professionals;Manufacturing   ;Y50-64;849;1;3.2353075538235137e-06;4574888;0.00018557831361117475;0;1;Old +13707;Ireland;F;Professionals;Manufacturing   ;Y65-84;38;1;1.448076408071773e-07;4574888;8.306214272349399e-06;0;1;Old +13708;Ireland;F;Professionals;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +13709;Ireland;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;173;1;6.592558384116229e-07;4574888;3.781513339780121e-05;1;0;Young +13710;Ireland;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;532;1;2.027306971300482e-06;4574888;0.0001162869998128916;1;0;Young +13711;Ireland;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;52;1;1.9815782426245315e-07;4574888;1.136639847795181e-05;0;1;Old +13712;Ireland;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13713;Ireland;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;37;1;1.4099691341751475e-07;4574888;8.087629686234941e-06;1;0;Young +13714;Ireland;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;150;1;5.716091084493841e-07;4574888;3.278768791716868e-05;1;0;Young +13715;Ireland;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;22;1;8.383600257257633e-08;4574888;4.808860894518074e-06;0;1;Old +13716;Ireland;F;Professionals;Construction   ;Y15-29;220;1;8.383600257257633e-07;4574888;4.8088608945180736e-05;1;0;Young +13717;Ireland;F;Professionals;Construction   ;Y30-49;890;1;3.3915473767996787e-06;4574888;0.0001945402816418675;1;0;Young +13718;Ireland;F;Professionals;Construction   ;Y50-64;139;1;5.296911071630959e-07;4574888;3.0383257469909647e-05;0;1;Old +13719;Ireland;F;Professionals;Construction   ;Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +13720;Ireland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2034;1;7.751019510573649e-06;4574888;0.00044460104815680735;1;0;Young +13721;Ireland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5480;1;2.0882786095350832e-05;4574888;0.0011978435319072293;1;0;Young +13722;Ireland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1011;1;3.852645390948849e-06;4574888;0.00022098901656171692;0;1;Old +13723;Ireland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;99;1;3.772620115765935e-07;4574888;2.163987402533133e-05;0;1;Old +13724;Ireland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13725;Ireland;F;Professionals;Transportation and storage   ;Y15-29;187;1;7.126060218668988e-07;4574888;4.087531760340362e-05;1;0;Young +13726;Ireland;F;Professionals;Transportation and storage   ;Y30-49;671;1;2.556998078463578e-06;4574888;0.00014667025728280124;1;0;Young +13727;Ireland;F;Professionals;Transportation and storage   ;Y50-64;102;1;3.886941937455812e-07;4574888;2.2295627783674704e-05;0;1;Old +13728;Ireland;F;Professionals;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +13729;Ireland;F;Professionals;Accommodation and food service activities   ;Y15-29;359;1;1.3680511328888593e-06;4574888;7.847186641509038e-05;1;0;Young +13730;Ireland;F;Professionals;Accommodation and food service activities   ;Y30-49;868;1;3.3077113742271027e-06;4574888;0.00018973142074734945;1;0;Young +13731;Ireland;F;Professionals;Accommodation and food service activities   ;Y50-64;171;1;6.516343836322978e-07;4574888;3.7377964225572296e-05;0;1;Old +13732;Ireland;F;Professionals;Accommodation and food service activities   ;Y65-84;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +13733;Ireland;F;Professionals;Information and communication   ;Y15-29;2671;1;1.01784528577887e-05;4574888;0.000583839429511717;1;0;Young +13734;Ireland;F;Professionals;Information and communication   ;Y30-49;7618;1;2.9030121254449388e-05;4574888;0.0016651773770199401;1;0;Young +13735;Ireland;F;Professionals;Information and communication   ;Y50-64;867;1;3.30390064683744e-06;4574888;0.00018951283616123498;0;1;Old +13736;Ireland;F;Professionals;Information and communication   ;Y65-84;30;1;1.1432182168987682e-07;4574888;6.557537583433737e-06;0;1;Old +13737;Ireland;F;Professionals;Information and communication   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +13738;Ireland;F;Professionals;Financial and insurance activities   ;Y15-29;2308;1;8.79515881534119e-06;4574888;0.0005044932247521688;1;0;Young +13739;Ireland;F;Professionals;Financial and insurance activities   ;Y30-49;6513;1;2.4819267488872256e-05;4574888;0.0014236414093634641;1;0;Young +13740;Ireland;F;Professionals;Financial and insurance activities   ;Y50-64;554;1;2.1111429738730584e-06;4574888;0.00012109586070740967;0;1;Old +13741;Ireland;F;Professionals;Financial and insurance activities   ;Y65-84;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +13742;Ireland;F;Professionals;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13743;Ireland;F;Professionals;Real estate activities   ;Y15-29;103;1;3.9250492113524375e-07;4574888;2.2514212369789162e-05;1;0;Young +13744;Ireland;F;Professionals;Real estate activities   ;Y30-49;286;1;1.0898680334434924e-06;4574888;6.251519162873495e-05;1;0;Young +13745;Ireland;F;Professionals;Real estate activities   ;Y50-64;36;1;1.3718618602785217e-07;4574888;7.869045100120484e-06;0;1;Old +13746;Ireland;F;Professionals;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +13747;Ireland;F;Professionals;Professional, scientific and technical activities   ;Y15-29;6473;1;2.4666838393285756e-05;4574888;0.001414898025918886;1;0;Young +13748;Ireland;F;Professionals;Professional, scientific and technical activities   ;Y30-49;12066;1;4.5980236683668456e-05;4574888;0.002637441616057049;1;0;Young +13749;Ireland;F;Professionals;Professional, scientific and technical activities   ;Y50-64;2058;1;7.84247696792555e-06;4574888;0.00044984707822355433;0;1;Old +13750;Ireland;F;Professionals;Professional, scientific and technical activities   ;Y65-84;123;1;4.6871946892849497e-07;4574888;2.688590409207832e-05;0;1;Old +13751;Ireland;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +13752;Ireland;F;Professionals;Administrative and support service activities   ;Y15-29;809;1;3.0828784582370114e-06;4574888;0.00017683493016659642;1;0;Young +13753;Ireland;F;Professionals;Administrative and support service activities   ;Y30-49;1972;1;7.514754412414569e-06;4574888;0.00043104880381771097;1;0;Young +13754;Ireland;F;Professionals;Administrative and support service activities   ;Y50-64;310;1;1.1813254907953937e-06;4574888;6.776122169548195e-05;0;1;Old +13755;Ireland;F;Professionals;Administrative and support service activities   ;Y65-84;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +13756;Ireland;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;864;1;3.2924684646684523e-06;4574888;0.00018885708240289162;1;0;Young +13757;Ireland;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;5165;1;1.9682406967607125e-05;4574888;0.001128989387281175;1;0;Young +13758;Ireland;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;1814;1;6.912659484847885e-06;4574888;0.0003965124392116266;0;1;Old +13759;Ireland;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;75;1;2.8580455422469204e-07;4574888;1.639384395858434e-05;0;1;Old +13760;Ireland;F;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13761;Ireland;F;Professionals;Education   ;Y15-29;17308;1;6.59560696602796e-05;4574888;0.003783262016469037;1;0;Young +13762;Ireland;F;Professionals;Education   ;Y30-49;40863;1;0.00015571775332378122;4574888;0.008932021942395093;1;0;Young +13763;Ireland;F;Professionals;Education   ;Y50-64;15621;1;5.952737255391886e-05;4574888;0.0034145098196939464;0;1;Old +13764;Ireland;F;Professionals;Education   ;Y65-84;746;1;2.84280263268827e-06;4574888;0.0001630641012413856;0;1;Old +13765;Ireland;F;Professionals;Education   ;Y_GE85;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;0;1;Old +13766;Ireland;F;Professionals;Human health and social work activities   ;Y15-29;10485;1;3.995547668061195e-05;4574888;0.002291859385410091;1;0;Young +13767;Ireland;F;Professionals;Human health and social work activities   ;Y30-49;39509;1;0.0001505580284381781;4574888;0.008636058412796117;1;0;Young +13768;Ireland;F;Professionals;Human health and social work activities   ;Y50-64;15578;1;5.936351127616337e-05;4574888;0.003405110682491025;0;1;Old +13769;Ireland;F;Professionals;Human health and social work activities   ;Y65-84;811;1;3.0904999130163366e-06;4574888;0.00017727209933882535;0;1;Old +13770;Ireland;F;Professionals;Human health and social work activities   ;Y_GE85;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +13771;Ireland;F;Professionals;Arts, entertainment and recreation   ;Y15-29;589;1;2.244518432511248e-06;4574888;0.00012874632122141568;1;0;Young +13772;Ireland;F;Professionals;Arts, entertainment and recreation   ;Y30-49;2272;1;8.657972629313337e-06;4574888;0.0004966241796520483;1;0;Young +13773;Ireland;F;Professionals;Arts, entertainment and recreation   ;Y50-64;1011;1;3.852645390948849e-06;4574888;0.00022098901656171692;0;1;Old +13774;Ireland;F;Professionals;Arts, entertainment and recreation   ;Y65-84;83;1;3.1629037334199253e-07;4574888;1.8142520647500004e-05;0;1;Old +13775;Ireland;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13776;Ireland;F;Professionals;Other service activities   ;Y15-29;219;1;8.345492983361008e-07;4574888;4.787002435906628e-05;1;0;Young +13777;Ireland;F;Professionals;Other service activities   ;Y30-49;704;1;2.6827520823224426e-06;4574888;0.00015388354862457836;1;0;Young +13778;Ireland;F;Professionals;Other service activities   ;Y50-64;390;1;1.4861836819683986e-06;4574888;8.524798858463858e-05;0;1;Old +13779;Ireland;F;Professionals;Other service activities   ;Y65-84;116;1;4.4204437720085703e-07;4574888;2.5355811989277113e-05;0;1;Old +13780;Ireland;F;Professionals;Other service activities   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +13781;Ireland;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +13782;Ireland;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +13783;Ireland;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;0;1;Old +13784;Ireland;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;1;0;Young +13785;Ireland;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;31;1;1.1813254907953938e-07;4574888;6.776122169548194e-06;1;0;Young +13786;Ireland;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +13787;Ireland;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13788;Ireland;F;Professionals;Not stated   ;Y15-29;471;1;1.7948526005310661e-06;4574888;0.00010295334005990966;1;0;Young +13789;Ireland;F;Professionals;Not stated   ;Y30-49;1473;1;5.613201444972952e-06;4574888;0.00032197509534659646;1;0;Young +13790;Ireland;F;Professionals;Not stated   ;Y50-64;971;1;3.7002162953623464e-06;4574888;0.00021224563311713862;0;1;Old +13791;Ireland;F;Professionals;Not stated   ;Y65-84;216;1;8.231171161671131e-07;4574888;4.7214270600722906e-05;0;1;Old +13792;Ireland;F;Professionals;Not stated   ;Y_GE85;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +13793;Ireland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;151;1;5.754198358390467e-07;4574888;3.300627250328314e-05;1;0;Young +13794;Ireland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;376;1;1.4328334985131229e-06;4574888;8.218780437903616e-05;1;0;Young +13795;Ireland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;170;1;6.478236562426352e-07;4574888;3.715937963945784e-05;0;1;Old +13796;Ireland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +13797;Ireland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13798;Ireland;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;1;0;Young +13799;Ireland;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;90;1;3.4296546506963047e-07;4574888;1.967261275030121e-05;1;0;Young +13800;Ireland;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;0;1;Old +13801;Ireland;F;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13802;Ireland;F;Technicians and associate professionals;Manufacturing   ;Y15-29;2268;1;8.642729719754687e-06;4574888;0.0004957498413075905;1;0;Young +13803;Ireland;F;Technicians and associate professionals;Manufacturing   ;Y30-49;7429;1;2.830989377780316e-05;4574888;0.0016238648902443076;1;0;Young +13804;Ireland;F;Technicians and associate professionals;Manufacturing   ;Y50-64;1472;1;5.609390717583289e-06;4574888;0.000321756510760482;0;1;Old +13805;Ireland;F;Technicians and associate professionals;Manufacturing   ;Y65-84;63;1;2.400758255487413e-07;4574888;1.3770828925210846e-05;0;1;Old +13806;Ireland;F;Technicians and associate professionals;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13807;Ireland;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;95;1;3.6201910201794326e-07;4574888;2.0765535680873498e-05;1;0;Young +13808;Ireland;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;299;1;1.1394074895091056e-06;4574888;6.535679124822291e-05;1;0;Young +13809;Ireland;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;78;1;2.9723673639367974e-07;4574888;1.7049597716927716e-05;0;1;Old +13810;Ireland;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13811;Ireland;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;84;1;3.201011007316551e-07;4574888;1.836110523361446e-05;1;0;Young +13812;Ireland;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;228;1;8.688458448430638e-07;4574888;4.9837285634096396e-05;1;0;Young +13813;Ireland;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;72;1;2.7437237205570434e-07;4574888;1.5738090200240967e-05;0;1;Old +13814;Ireland;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13815;Ireland;F;Technicians and associate professionals;Construction   ;Y15-29;298;1;1.135596762119443e-06;4574888;6.513820666210845e-05;1;0;Young +13816;Ireland;F;Technicians and associate professionals;Construction   ;Y30-49;1493;1;5.689415992766203e-06;4574888;0.00032634678706888563;1;0;Young +13817;Ireland;F;Technicians and associate professionals;Construction   ;Y50-64;536;1;2.0425498808591324e-06;4574888;0.00011716133815734942;0;1;Old +13818;Ireland;F;Technicians and associate professionals;Construction   ;Y65-84;39;1;1.4861836819683987e-07;4574888;8.524798858463858e-06;0;1;Old +13819;Ireland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3046;1;1.160747562891216e-05;4574888;0.0006658086493046387;1;0;Young +13820;Ireland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7498;1;2.857283396768988e-05;4574888;0.0016389472266862052;1;0;Young +13821;Ireland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2496;1;9.511575564597752e-06;4574888;0.0005455871269416869;0;1;Old +13822;Ireland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;176;1;6.706880205806106e-07;4574888;3.847088715614459e-05;0;1;Old +13823;Ireland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +13824;Ireland;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;316;1;1.2041898551333691e-06;4574888;6.90727292121687e-05;1;0;Young +13825;Ireland;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;1126;1;4.2908790407600436e-06;4574888;0.0002461262439648796;1;0;Young +13826;Ireland;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;285;1;1.0860573060538298e-06;4574888;6.229660704262049e-05;0;1;Old +13827;Ireland;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +13828;Ireland;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;2026;1;7.720533691456348e-06;4574888;0.0004428523714678917;1;0;Young +13829;Ireland;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;3919;1;1.4934240640087575e-05;4574888;0.0008566329929825604;1;0;Young +13830;Ireland;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;824;1;3.14003936908195e-06;4574888;0.0001801136989583133;0;1;Old +13831;Ireland;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;0;1;Old +13832;Ireland;F;Technicians and associate professionals;Information and communication   ;Y15-29;1250;1;4.763409237078201e-06;4574888;0.00027323073264307236;1;0;Young +13833;Ireland;F;Technicians and associate professionals;Information and communication   ;Y30-49;2576;1;9.816433755770756e-06;4574888;0.0005630738938308435;1;0;Young +13834;Ireland;F;Technicians and associate professionals;Information and communication   ;Y50-64;453;1;1.72625950751714e-06;4574888;9.901881750984943e-05;0;1;Old +13835;Ireland;F;Technicians and associate professionals;Information and communication   ;Y65-84;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;0;1;Old +13836;Ireland;F;Technicians and associate professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13837;Ireland;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2330;1;8.878994817913767e-06;4574888;0.0005093020856466869;1;0;Young +13838;Ireland;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;5070;1;1.9320387865589183e-05;4574888;0.0011082238516003015;1;0;Young +13839;Ireland;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;846;1;3.2238753716545264e-06;4574888;0.00018492255985283137;0;1;Old +13840;Ireland;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;0;1;Old +13841;Ireland;F;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13842;Ireland;F;Technicians and associate professionals;Real estate activities   ;Y15-29;278;1;1.0593822143261918e-06;4574888;6.0766514939819294e-05;1;0;Young +13843;Ireland;F;Technicians and associate professionals;Real estate activities   ;Y30-49;1048;1;3.993642304366363e-06;4574888;0.00022907664624795187;1;0;Young +13844;Ireland;F;Technicians and associate professionals;Real estate activities   ;Y50-64;348;1;1.326133131602571e-06;4574888;7.606743596783135e-05;0;1;Old +13845;Ireland;F;Technicians and associate professionals;Real estate activities   ;Y65-84;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;0;1;Old +13846;Ireland;F;Technicians and associate professionals;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13847;Ireland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;2888;1;1.1005380701345474e-05;4574888;0.0006312722846985543;1;0;Young +13848;Ireland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;8192;1;3.1217478776115693e-05;4574888;0.001790644929449639;1;0;Young +13849;Ireland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;2681;1;1.0216560131685324e-05;4574888;0.0005860252753728616;0;1;Old +13850;Ireland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;165;1;6.287700192943225e-07;4574888;3.606645670888555e-05;0;1;Old +13851;Ireland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13852;Ireland;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;688;1;2.621780444087842e-06;4574888;0.000150386195246747;1;0;Young +13853;Ireland;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;1737;1;6.619233475843868e-06;4574888;0.00037968142608081336;1;0;Young +13854;Ireland;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;438;1;1.6690985966722016e-06;4574888;9.574004871813256e-05;0;1;Old +13855;Ireland;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;27;1;1.0288963952088914e-07;4574888;5.901783825090363e-06;0;1;Old +13856;Ireland;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2125;1;8.097795703032942e-06;4574888;0.000464492245493223;1;0;Young +13857;Ireland;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;12531;1;4.7752224919861544e-05;4574888;0.0027390834486002717;1;0;Young +13858;Ireland;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;6566;1;2.5021236040524372e-05;4574888;0.0014352263924275305;0;1;Old +13859;Ireland;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;80;1;3.0485819117300483e-07;4574888;1.748676688915663e-05;0;1;Old +13860;Ireland;F;Technicians and associate professionals;Education   ;Y15-29;754;1;2.8732884518055705e-06;4574888;0.00016481277793030125;1;0;Young +13861;Ireland;F;Technicians and associate professionals;Education   ;Y30-49;4611;1;1.7571263993734067e-05;4574888;0.0010078935265737652;1;0;Young +13862;Ireland;F;Technicians and associate professionals;Education   ;Y50-64;2534;1;9.656383205404929e-06;4574888;0.0005538933412140363;0;1;Old +13863;Ireland;F;Technicians and associate professionals;Education   ;Y65-84;135;1;5.144481976044457e-07;4574888;2.9508919125451814e-05;0;1;Old +13864;Ireland;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;3432;1;1.3078416401321909e-05;4574888;0.0007501822995448195;1;0;Young +13865;Ireland;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;12649;1;4.820189075184173e-05;4574888;0.0027648764297617777;1;0;Young +13866;Ireland;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;5505;1;2.0978054280092395e-05;4574888;0.0012033081465600906;0;1;Old +13867;Ireland;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;279;1;1.0631929417158544e-06;4574888;6.098509952593375e-05;0;1;Old +13868;Ireland;F;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +13869;Ireland;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;784;1;2.9876102734954477e-06;4574888;0.000171370315513735;1;0;Young +13870;Ireland;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;1406;1;5.35788270986556e-06;4574888;0.00030732992807692777;1;0;Young +13871;Ireland;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;426;1;1.6233698679962508e-06;4574888;9.311703368475905e-05;0;1;Old +13872;Ireland;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;0;1;Old +13873;Ireland;F;Technicians and associate professionals;Other service activities   ;Y15-29;301;1;1.1470289442884308e-06;4574888;6.579396042045182e-05;1;0;Young +13874;Ireland;F;Technicians and associate professionals;Other service activities   ;Y30-49;1234;1;4.702437598843599e-06;4574888;0.00026973337926524104;1;0;Young +13875;Ireland;F;Technicians and associate professionals;Other service activities   ;Y50-64;681;1;2.5951053523602036e-06;4574888;0.00014885610314394583;0;1;Old +13876;Ireland;F;Technicians and associate professionals;Other service activities   ;Y65-84;78;1;2.9723673639367974e-07;4574888;1.7049597716927716e-05;0;1;Old +13877;Ireland;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +13878;Ireland;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;1;0;Young +13879;Ireland;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +13880;Ireland;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13881;Ireland;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;1;0;Young +13882;Ireland;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;39;1;1.4861836819683987e-07;4574888;8.524798858463858e-06;1;0;Young +13883;Ireland;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;21;1;8.002527518291377e-08;4574888;4.590276308403615e-06;0;1;Old +13884;Ireland;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13885;Ireland;F;Technicians and associate professionals;Not stated   ;Y15-29;426;1;1.6233698679962508e-06;4574888;9.311703368475905e-05;1;0;Young +13886;Ireland;F;Technicians and associate professionals;Not stated   ;Y30-49;1227;1;4.675762507115962e-06;4574888;0.00026820328716243983;1;0;Young +13887;Ireland;F;Technicians and associate professionals;Not stated   ;Y50-64;807;1;3.075257003457686e-06;4574888;0.00017639776099436752;0;1;Old +13888;Ireland;F;Technicians and associate professionals;Not stated   ;Y65-84;90;1;3.4296546506963047e-07;4574888;1.967261275030121e-05;0;1;Old +13889;Ireland;F;Technicians and associate professionals;Not stated   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +13890;Ireland;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;102;1;3.886941937455812e-07;4574888;2.2295627783674704e-05;1;0;Young +13891;Ireland;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;373;1;1.421401316344135e-06;4574888;8.15320506206928e-05;1;0;Young +13892;Ireland;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;159;1;6.059056549563472e-07;4574888;3.4754949192198805e-05;0;1;Old +13893;Ireland;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +13894;Ireland;F;Clerical support workers;Mining and quarrying   ;Y15-29;39;1;1.4861836819683987e-07;4574888;8.524798858463858e-06;1;0;Young +13895;Ireland;F;Clerical support workers;Mining and quarrying   ;Y30-49;145;1;5.525554715010713e-07;4574888;3.169476498659639e-05;1;0;Young +13896;Ireland;F;Clerical support workers;Mining and quarrying   ;Y50-64;61;1;2.3245437076941619e-07;4574888;1.3333659752981931e-05;0;1;Old +13897;Ireland;F;Clerical support workers;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +13898;Ireland;F;Clerical support workers;Manufacturing   ;Y15-29;1861;1;7.0917636721620255e-06;4574888;0.0004067859147590061;1;0;Young +13899;Ireland;F;Clerical support workers;Manufacturing   ;Y30-49;5898;1;2.2475670144229782e-05;4574888;0.0012892118889030726;1;0;Young +13900;Ireland;F;Clerical support workers;Manufacturing   ;Y50-64;1804;1;6.874552210951259e-06;4574888;0.00039432659335048205;0;1;Old +13901;Ireland;F;Clerical support workers;Manufacturing   ;Y65-84;95;1;3.6201910201794326e-07;4574888;2.0765535680873498e-05;0;1;Old +13902;Ireland;F;Clerical support workers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13903;Ireland;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;219;1;8.345492983361008e-07;4574888;4.787002435906628e-05;1;0;Young +13904;Ireland;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;644;1;2.454108438942689e-06;4574888;0.00014076847345771088;1;0;Young +13905;Ireland;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;315;1;1.2003791277437065e-06;4574888;6.885414462605423e-05;0;1;Old +13906;Ireland;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +13907;Ireland;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;220;1;8.383600257257633e-07;4574888;4.8088608945180736e-05;1;0;Young +13908;Ireland;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;421;1;1.604316231047938e-06;4574888;9.202411075418677e-05;1;0;Young +13909;Ireland;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;115;1;4.382336498111945e-07;4574888;2.5137227403162656e-05;0;1;Old +13910;Ireland;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +13911;Ireland;F;Clerical support workers;Construction   ;Y15-29;553;1;2.1073322464833958e-06;4574888;0.00012087727612129521;1;0;Young +13912;Ireland;F;Clerical support workers;Construction   ;Y30-49;1940;1;7.3928111359453676e-06;4574888;0.0004240540970620483;1;0;Young +13913;Ireland;F;Clerical support workers;Construction   ;Y50-64;717;1;2.732291538388056e-06;4574888;0.0001567251482440663;0;1;Old +13914;Ireland;F;Clerical support workers;Construction   ;Y65-84;33;1;1.257540038588645e-07;4574888;7.21329134177711e-06;0;1;Old +13915;Ireland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3495;1;1.3318492226870649e-05;4574888;0.0007639531284700303;1;0;Young +13916;Ireland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8152;1;3.1065049680529196e-05;4574888;0.0017819015460050606;1;0;Young +13917;Ireland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3309;1;1.2609696932393412e-05;4574888;0.0007232963954527411;0;1;Old +13918;Ireland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;217;1;8.269278435567757e-07;4574888;4.7432855186837363e-05;0;1;Old +13919;Ireland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13920;Ireland;F;Clerical support workers;Transportation and storage   ;Y15-29;1575;1;6.001895638718533e-06;4574888;0.0003442707231302712;1;0;Young +13921;Ireland;F;Clerical support workers;Transportation and storage   ;Y30-49;4493;1;1.7121598161753884e-05;4574888;0.0009821005454122593;1;0;Young +13922;Ireland;F;Clerical support workers;Transportation and storage   ;Y50-64;1778;1;6.775473298820033e-06;4574888;0.0003886433941115061;0;1;Old +13923;Ireland;F;Clerical support workers;Transportation and storage   ;Y65-84;119;1;4.5347655936984473e-07;4574888;2.601156574762049e-05;0;1;Old +13924;Ireland;F;Clerical support workers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13925;Ireland;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;1798;1;6.851687846613284e-06;4574888;0.0003930150858337953;1;0;Young +13926;Ireland;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;2251;1;8.577947354130425e-06;4574888;0.0004920339033436447;1;0;Young +13927;Ireland;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;655;1;2.4960264402289772e-06;4574888;0.00014317290390496992;0;1;Old +13928;Ireland;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;0;1;Old +13929;Ireland;F;Clerical support workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13930;Ireland;F;Clerical support workers;Information and communication   ;Y15-29;1456;1;5.548419079348688e-06;4574888;0.0003182591573826507;1;0;Young +13931;Ireland;F;Clerical support workers;Information and communication   ;Y30-49;2452;1;9.343903559452599e-06;4574888;0.0005359694051526508;1;0;Young +13932;Ireland;F;Clerical support workers;Information and communication   ;Y50-64;849;1;3.2353075538235137e-06;4574888;0.00018557831361117475;0;1;Old +13933;Ireland;F;Clerical support workers;Information and communication   ;Y65-84;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;0;1;Old +13934;Ireland;F;Clerical support workers;Financial and insurance activities   ;Y15-29;8061;1;3.07182734880699e-05;4574888;0.001762010348668645;1;0;Young +13935;Ireland;F;Clerical support workers;Financial and insurance activities   ;Y30-49;14689;1;5.597577462675335e-05;4574888;0.003210788985435272;1;0;Young +13936;Ireland;F;Clerical support workers;Financial and insurance activities   ;Y50-64;4883;1;1.8607781843722285e-05;4574888;0.0010673485339968978;0;1;Old +13937;Ireland;F;Clerical support workers;Financial and insurance activities   ;Y65-84;93;1;3.543976472386181e-07;4574888;2.0328366508644583e-05;0;1;Old +13938;Ireland;F;Clerical support workers;Financial and insurance activities   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +13939;Ireland;F;Clerical support workers;Real estate activities   ;Y15-29;252;1;9.603033021949652e-07;4574888;5.5083315700843385e-05;1;0;Young +13940;Ireland;F;Clerical support workers;Real estate activities   ;Y30-49;654;1;2.4922157128393146e-06;4574888;0.00014295431931885547;1;0;Young +13941;Ireland;F;Clerical support workers;Real estate activities   ;Y50-64;251;1;9.564925748053026e-07;4574888;5.486473111472893e-05;0;1;Old +13942;Ireland;F;Clerical support workers;Real estate activities   ;Y65-84;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;0;1;Old +13943;Ireland;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;1844;1;7.026981306537761e-06;4574888;0.00040306997679506035;1;0;Young +13944;Ireland;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;4732;1;1.8032362007883237e-05;4574888;0.0010343422614936147;1;0;Young +13945;Ireland;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;1989;1;7.579536778038833e-06;4574888;0.00043476474178165674;0;1;Old +13946;Ireland;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;162;1;6.173378371253348e-07;4574888;3.541070295054218e-05;0;1;Old +13947;Ireland;F;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +13948;Ireland;F;Clerical support workers;Administrative and support service activities   ;Y15-29;2051;1;7.815801876197911e-06;4574888;0.0004483169861207531;1;0;Young +13949;Ireland;F;Clerical support workers;Administrative and support service activities   ;Y30-49;3513;1;1.3387085319884576e-05;4574888;0.0007678876510200906;1;0;Young +13950;Ireland;F;Clerical support workers;Administrative and support service activities   ;Y50-64;985;1;3.753566478817622e-06;4574888;0.000215305817322741;0;1;Old +13951;Ireland;F;Clerical support workers;Administrative and support service activities   ;Y65-84;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;0;1;Old +13952;Ireland;F;Clerical support workers;Administrative and support service activities   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13953;Ireland;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;1307;1;4.980620698288967e-06;4574888;0.00028569005405159643;1;0;Young +13954;Ireland;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;8197;1;3.123653241306401e-05;4574888;0.0017917378523802112;1;0;Young +13955;Ireland;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;3418;1;1.3025066217866632e-05;4574888;0.000747122115339217;0;1;Old +13956;Ireland;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;58;1;2.2102218860042852e-07;4574888;1.2677905994638557e-05;0;1;Old +13957;Ireland;F;Clerical support workers;Education   ;Y15-29;646;1;2.4617298937220143e-06;4574888;0.00014120564262993978;1;0;Young +13958;Ireland;F;Clerical support workers;Education   ;Y30-49;3963;1;1.5101912645232728e-05;4574888;0.0008662507147715966;1;0;Young +13959;Ireland;F;Clerical support workers;Education   ;Y50-64;2106;1;8.025391882629353e-06;4574888;0.0004603391383570483;0;1;Old +13960;Ireland;F;Clerical support workers;Education   ;Y65-84;102;1;3.886941937455812e-07;4574888;2.2295627783674704e-05;0;1;Old +13961;Ireland;F;Clerical support workers;Human health and social work activities   ;Y15-29;1879;1;7.1603567651759515e-06;4574888;0.00041072043730906634;1;0;Young +13962;Ireland;F;Clerical support workers;Human health and social work activities   ;Y30-49;8932;1;3.403741704446599e-05;4574888;0.0019523975231743379;1;0;Young +13963;Ireland;F;Clerical support workers;Human health and social work activities   ;Y50-64;4837;1;1.8432488383797805e-05;4574888;0.0010572936430356327;0;1;Old +13964;Ireland;F;Clerical support workers;Human health and social work activities   ;Y65-84;201;1;7.659562053221747e-07;4574888;4.3935501809006036e-05;0;1;Old +13965;Ireland;F;Clerical support workers;Human health and social work activities   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +13966;Ireland;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;1421;1;5.415043620710499e-06;4574888;0.00031060869686864464;1;0;Young +13967;Ireland;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2111;1;8.044445519577666e-06;4574888;0.0004614320612876206;1;0;Young +13968;Ireland;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;975;1;3.7154592049209964e-06;4574888;0.00021311997146159645;0;1;Old +13969;Ireland;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;65;1;2.4769728032806646e-07;4574888;1.4207998097439763e-05;0;1;Old +13970;Ireland;F;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13971;Ireland;F;Clerical support workers;Other service activities   ;Y15-29;404;1;1.5395338654236744e-06;4574888;8.830817279024099e-05;1;0;Young +13972;Ireland;F;Clerical support workers;Other service activities   ;Y30-49;1194;1;4.550008503257097e-06;4574888;0.00026098999582066274;1;0;Young +13973;Ireland;F;Clerical support workers;Other service activities   ;Y50-64;676;1;2.576051715411891e-06;4574888;0.00014776318021337352;0;1;Old +13974;Ireland;F;Clerical support workers;Other service activities   ;Y65-84;66;1;2.51508007717729e-07;4574888;1.442658268355422e-05;0;1;Old +13975;Ireland;F;Clerical support workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13976;Ireland;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +13977;Ireland;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;23;1;8.764672996223889e-08;4574888;5.027445480632531e-06;1;0;Young +13978;Ireland;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;114;1;4.344229224215319e-07;4574888;2.4918642817048198e-05;1;0;Young +13979;Ireland;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;40;1;1.5242909558650242e-07;4574888;8.743383444578316e-06;0;1;Old +13980;Ireland;F;Clerical support workers;Not stated   ;Y15-29;586;1;2.2330862503422603e-06;4574888;0.00012809056746307233;1;0;Young +13981;Ireland;F;Clerical support workers;Not stated   ;Y30-49;1277;1;4.8662988765990895e-06;4574888;0.0002791325164681627;1;0;Young +13982;Ireland;F;Clerical support workers;Not stated   ;Y50-64;893;1;3.4029795589686665e-06;4574888;0.00019519603540021089;0;1;Old +13983;Ireland;F;Clerical support workers;Not stated   ;Y65-84;115;1;4.382336498111945e-07;4574888;2.5137227403162656e-05;0;1;Old +13984;Ireland;F;Clerical support workers;Not stated   ;Y_GE85;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +13985;Ireland;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;111;1;4.2299074025254424e-07;4574888;2.4262889058704826e-05;1;0;Young +13986;Ireland;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;230;1;8.76467299622389e-07;4574888;5.027445480632531e-05;1;0;Young +13987;Ireland;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;135;1;5.144481976044457e-07;4574888;2.9508919125451814e-05;0;1;Old +13988;Ireland;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +13989;Ireland;F;Service and sales workers;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +13990;Ireland;F;Service and sales workers;Mining and quarrying   ;Y30-49;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;1;0;Young +13991;Ireland;F;Service and sales workers;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +13992;Ireland;F;Service and sales workers;Manufacturing   ;Y15-29;778;1;2.964745909157472e-06;4574888;0.00017005880799704823;1;0;Young +13993;Ireland;F;Service and sales workers;Manufacturing   ;Y30-49;1401;1;5.338829072917247e-06;4574888;0.0003062370051463555;1;0;Young +13994;Ireland;F;Service and sales workers;Manufacturing   ;Y50-64;571;1;2.175925339497322e-06;4574888;0.00012481179867135546;0;1;Old +13995;Ireland;F;Service and sales workers;Manufacturing   ;Y65-84;38;1;1.448076408071773e-07;4574888;8.306214272349399e-06;0;1;Old +13996;Ireland;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;1;0;Young +13997;Ireland;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;33;1;1.257540038588645e-07;4574888;7.21329134177711e-06;1;0;Young +13998;Ireland;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +13999;Ireland;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14000;Ireland;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;1;0;Young +14001;Ireland;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;31;1;1.1813254907953938e-07;4574888;6.776122169548194e-06;1;0;Young +14002;Ireland;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +14003;Ireland;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14004;Ireland;F;Service and sales workers;Construction   ;Y15-29;96;1;3.658298294076058e-07;4574888;2.0984120266987956e-05;1;0;Young +14005;Ireland;F;Service and sales workers;Construction   ;Y30-49;244;1;9.298174830776647e-07;4574888;5.3334639011927724e-05;1;0;Young +14006;Ireland;F;Service and sales workers;Construction   ;Y50-64;83;1;3.1629037334199253e-07;4574888;1.8142520647500004e-05;0;1;Old +14007;Ireland;F;Service and sales workers;Construction   ;Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14008;Ireland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;29766;1;0.00011343011148069577;4574888;0.006506388790282954;1;0;Young +14009;Ireland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;34496;1;0.0001314548520337997;4574888;0.0075402938826043394;1;0;Young +14010;Ireland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;14524;1;5.534700460745903e-05;4574888;0.0031747225287263865;0;1;Old +14011;Ireland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;923;1;3.5173013806585432e-06;4574888;0.00020175357298364463;0;1;Old +14012;Ireland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +14013;Ireland;F;Service and sales workers;Transportation and storage   ;Y15-29;808;1;3.079067730847349e-06;4574888;0.00017661634558048197;1;0;Young +14014;Ireland;F;Service and sales workers;Transportation and storage   ;Y30-49;1453;1;5.5369868971797005e-06;4574888;0.00031760340362430733;1;0;Young +14015;Ireland;F;Service and sales workers;Transportation and storage   ;Y50-64;303;1;1.1546503990677558e-06;4574888;6.623112959268074e-05;0;1;Old +14016;Ireland;F;Service and sales workers;Transportation and storage   ;Y65-84;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +14017;Ireland;F;Service and sales workers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14018;Ireland;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;11083;1;4.223429165963016e-05;4574888;0.0024225729679065366;1;0;Young +14019;Ireland;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;9001;1;3.430035723435271e-05;4574888;0.0019674798596162352;1;0;Young +14020;Ireland;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;3169;1;1.2076195097840655e-05;4574888;0.000692694553396717;0;1;Old +14021;Ireland;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;208;1;7.926312970498126e-07;4574888;4.546559391180724e-05;0;1;Old +14022;Ireland;F;Service and sales workers;Accommodation and food service activities   ;Y_GE85;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14023;Ireland;F;Service and sales workers;Information and communication   ;Y15-29;496;1;1.89012078527263e-06;4574888;0.00010841795471277111;1;0;Young +14024;Ireland;F;Service and sales workers;Information and communication   ;Y30-49;560;1;2.134007338211034e-06;4574888;0.00012240736822409642;1;0;Young +14025;Ireland;F;Service and sales workers;Information and communication   ;Y50-64;104;1;3.963156485249063e-07;4574888;2.273279695590362e-05;0;1;Old +14026;Ireland;F;Service and sales workers;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14027;Ireland;F;Service and sales workers;Financial and insurance activities   ;Y15-29;711;1;2.7094271740500803e-06;4574888;0.00015541364072737954;1;0;Young +14028;Ireland;F;Service and sales workers;Financial and insurance activities   ;Y30-49;1047;1;3.989831576976701e-06;4574888;0.00022885806166183742;1;0;Young +14029;Ireland;F;Service and sales workers;Financial and insurance activities   ;Y50-64;156;1;5.944734727873595e-07;4574888;3.409919543385543e-05;0;1;Old +14030;Ireland;F;Service and sales workers;Financial and insurance activities   ;Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14031;Ireland;F;Service and sales workers;Real estate activities   ;Y15-29;125;1;4.7634092370782007e-07;4574888;2.7323073264307235e-05;1;0;Young +14032;Ireland;F;Service and sales workers;Real estate activities   ;Y30-49;336;1;1.2804044029266203e-06;4574888;7.344442093445785e-05;1;0;Young +14033;Ireland;F;Service and sales workers;Real estate activities   ;Y50-64;152;1;5.792305632287092e-07;4574888;3.3224857089397595e-05;0;1;Old +14034;Ireland;F;Service and sales workers;Real estate activities   ;Y65-84;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;0;1;Old +14035;Ireland;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;597;1;2.2750042516285485e-06;4574888;0.00013049499791033137;1;0;Young +14036;Ireland;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;786;1;2.9952317282747724e-06;4574888;0.0001718074846859639;1;0;Young +14037;Ireland;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;355;1;1.352808223330209e-06;4574888;7.759752807063255e-05;0;1;Old +14038;Ireland;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;33;1;1.257540038588645e-07;4574888;7.21329134177711e-06;0;1;Old +14039;Ireland;F;Service and sales workers;Administrative and support service activities   ;Y15-29;1008;1;3.841213208779861e-06;4574888;0.00022033326280337354;1;0;Young +14040;Ireland;F;Service and sales workers;Administrative and support service activities   ;Y30-49;1767;1;6.733555297533744e-06;4574888;0.0003862389636642471;1;0;Young +14041;Ireland;F;Service and sales workers;Administrative and support service activities   ;Y50-64;863;1;3.2886577372787897e-06;4574888;0.00018863849781677715;0;1;Old +14042;Ireland;F;Service and sales workers;Administrative and support service activities   ;Y65-84;82;1;3.1247964595233e-07;4574888;1.7923936061385546e-05;0;1;Old +14043;Ireland;F;Service and sales workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14044;Ireland;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;1640;1;6.249592919046599e-06;4574888;0.00035847872122771093;1;0;Young +14045;Ireland;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;3909;1;1.4896133366190949e-05;4574888;0.0008544471471214159;1;0;Young +14046;Ireland;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;1594;1;6.074299459122121e-06;4574888;0.00034842383026644587;0;1;Old +14047;Ireland;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;101;1;3.848834663559186e-07;4574888;2.2077043197560247e-05;0;1;Old +14048;Ireland;F;Service and sales workers;Education   ;Y15-29;6715;1;2.5589034421584095e-05;4574888;0.0014677954957585846;1;0;Young +14049;Ireland;F;Service and sales workers;Education   ;Y30-49;15379;1;5.8605176525620516e-05;4574888;0.003361612349854248;1;0;Young +14050;Ireland;F;Service and sales workers;Education   ;Y50-64;6275;1;2.3912314370132567e-05;4574888;0.0013716182778682232;0;1;Old +14051;Ireland;F;Service and sales workers;Education   ;Y65-84;200;1;7.621454779325121e-07;4574888;4.371691722289158e-05;0;1;Old +14052;Ireland;F;Service and sales workers;Education   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14053;Ireland;F;Service and sales workers;Human health and social work activities   ;Y15-29;8580;1;3.269604100330477e-05;4574888;0.0018754557488620486;1;0;Young +14054;Ireland;F;Service and sales workers;Human health and social work activities   ;Y30-49;23810;1;9.073341914786557e-05;4574888;0.005204498995385242;1;0;Young +14055;Ireland;F;Service and sales workers;Human health and social work activities   ;Y50-64;13977;1;5.326253672531361e-05;4574888;0.003055156760121778;0;1;Old +14056;Ireland;F;Service and sales workers;Human health and social work activities   ;Y65-84;799;1;3.044771184340386e-06;4574888;0.00017464908430545186;0;1;Old +14057;Ireland;F;Service and sales workers;Human health and social work activities   ;Y_GE85;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14058;Ireland;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;761;1;2.8999635435332087e-06;4574888;0.00016634287003310246;1;0;Young +14059;Ireland;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;745;1;2.8389919052986075e-06;4574888;0.00016284551665527111;1;0;Young +14060;Ireland;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;301;1;1.1470289442884308e-06;4574888;6.579396042045182e-05;0;1;Old +14061;Ireland;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +14062;Ireland;F;Service and sales workers;Other service activities   ;Y15-29;10130;1;3.8602668457281736e-05;4574888;0.0022142618573394585;1;0;Young +14063;Ireland;F;Service and sales workers;Other service activities   ;Y30-49;9701;1;3.69678664071165e-05;4574888;0.0021204890698963558;1;0;Young +14064;Ireland;F;Service and sales workers;Other service activities   ;Y50-64;2069;1;7.884394969211838e-06;4574888;0.00045225150867081335;0;1;Old +14065;Ireland;F;Service and sales workers;Other service activities   ;Y65-84;223;1;8.49792207894751e-07;4574888;4.874436270352411e-05;0;1;Old +14066;Ireland;F;Service and sales workers;Other service activities   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14067;Ireland;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;535;1;2.03873915346947e-06;4574888;0.00011694275357123497;1;0;Young +14068;Ireland;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;690;1;2.6294018988671666e-06;4574888;0.00015082336441897594;1;0;Young +14069;Ireland;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;377;1;1.4366442259027852e-06;4574888;8.240638896515063e-05;0;1;Old +14070;Ireland;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;0;1;Old +14071;Ireland;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14072;Ireland;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14073;Ireland;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;1;0;Young +14074;Ireland;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14075;Ireland;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14076;Ireland;F;Service and sales workers;Not stated   ;Y15-29;2114;1;8.055877701746653e-06;4574888;0.00046208781504596396;1;0;Young +14077;Ireland;F;Service and sales workers;Not stated   ;Y30-49;3605;1;1.373767223973353e-05;4574888;0.0007879974329426207;1;0;Young +14078;Ireland;F;Service and sales workers;Not stated   ;Y50-64;2652;1;1.010604903738511e-05;4574888;0.0005796863223755423;0;1;Old +14079;Ireland;F;Service and sales workers;Not stated   ;Y65-84;257;1;9.79356939143278e-07;4574888;5.617623863141568e-05;0;1;Old +14080;Ireland;F;Service and sales workers;Not stated   ;Y_GE85;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;0;1;Old +14081;Ireland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;181;1;6.897416575289234e-07;4574888;3.956381008671688e-05;1;0;Young +14082;Ireland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;1718;1;6.546829655440279e-06;4574888;0.00037552831894463863;1;0;Young +14083;Ireland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;3066;1;1.168369017670541e-05;4574888;0.0006701803410269279;0;1;Old +14084;Ireland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;1691;1;6.44394001591939e-06;4574888;0.0003696265351195483;0;1;Old +14085;Ireland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;116;1;4.4204437720085703e-07;4574888;2.5355811989277113e-05;0;1;Old +14086;Ireland;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +14087;Ireland;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +14088;Ireland;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;1;0;Young +14089;Ireland;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +14090;Ireland;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14091;Ireland;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +14092;Ireland;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;1;0;Young +14093;Ireland;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14094;Ireland;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14095;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;1;0;Young +14096;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;114;1;4.344229224215319e-07;4574888;2.4918642817048198e-05;1;0;Young +14097;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;57;1;2.1721146121076594e-07;4574888;1.2459321408524099e-05;0;1;Old +14098;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14099;Ireland;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14100;Ireland;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14101;Ireland;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +14102;Ireland;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;1;0;Young +14103;Ireland;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14104;Ireland;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +14105;Ireland;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +14106;Ireland;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14107;Ireland;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14108;Ireland;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;1;0;Young +14109;Ireland;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14110;Ireland;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;1;0;Young +14111;Ireland;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;166;1;6.325807466839851e-07;4574888;3.628504129500001e-05;1;0;Young +14112;Ireland;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;86;1;3.277225555109802e-07;4574888;1.8798274405843377e-05;0;1;Old +14113;Ireland;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14114;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +14115;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;1;0;Young +14116;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +14117;Ireland;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14118;Ireland;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;22;1;8.383600257257633e-08;4574888;4.808860894518074e-06;1;0;Young +14119;Ireland;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;0;1;Old +14120;Ireland;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +14121;Ireland;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;26;1;9.907891213122657e-08;4574888;5.683199238975905e-06;1;0;Young +14122;Ireland;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;0;1;Old +14123;Ireland;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;1;0;Young +14124;Ireland;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;1;0;Young +14125;Ireland;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14126;Ireland;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +14127;Ireland;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14128;Ireland;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14129;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +14130;Ireland;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14131;Ireland;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14132;Ireland;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;1;0;Young +14133;Ireland;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;1;0;Young +14134;Ireland;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;67;1;2.5531873510739155e-07;4574888;1.4645167269668678e-05;0;1;Old +14135;Ireland;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;30;1;1.1432182168987682e-07;4574888;6.557537583433737e-06;0;1;Old +14136;Ireland;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14137;Ireland;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;1;0;Young +14138;Ireland;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;1;0;Young +14139;Ireland;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +14140;Ireland;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14141;Ireland;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14142;Ireland;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;1;0;Young +14143;Ireland;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14144;Ireland;F;Craft and related trades workers;Manufacturing   ;Y15-29;980;1;3.7345128418693094e-06;4574888;0.00021421289439216873;1;0;Young +14145;Ireland;F;Craft and related trades workers;Manufacturing   ;Y30-49;3340;1;1.2727829481472953e-05;4574888;0.0007300725176222893;1;0;Young +14146;Ireland;F;Craft and related trades workers;Manufacturing   ;Y50-64;1201;1;4.576683594984735e-06;4574888;0.0002625200879234639;0;1;Old +14147;Ireland;F;Craft and related trades workers;Manufacturing   ;Y65-84;67;1;2.5531873510739155e-07;4574888;1.4645167269668678e-05;0;1;Old +14148;Ireland;F;Craft and related trades workers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14149;Ireland;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;1;0;Young +14150;Ireland;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;31;1;1.1813254907953938e-07;4574888;6.776122169548194e-06;1;0;Young +14151;Ireland;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14152;Ireland;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +14153;Ireland;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;1;0;Young +14154;Ireland;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14155;Ireland;F;Craft and related trades workers;Construction   ;Y15-29;120;1;4.572872867595073e-07;4574888;2.6230150333734947e-05;1;0;Young +14156;Ireland;F;Craft and related trades workers;Construction   ;Y30-49;266;1;1.013653485650241e-06;4574888;5.81434999064458e-05;1;0;Young +14157;Ireland;F;Craft and related trades workers;Construction   ;Y50-64;68;1;2.591294624970541e-07;4574888;1.4863751855783136e-05;0;1;Old +14158;Ireland;F;Craft and related trades workers;Construction   ;Y65-84;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14159;Ireland;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;495;1;1.8863100578829675e-06;4574888;0.00010819937012665666;1;0;Young +14160;Ireland;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1336;1;5.091131792589181e-06;4574888;0.0002920290070489157;1;0;Young +14161;Ireland;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;510;1;1.943470968727906e-06;4574888;0.00011147813891837351;0;1;Old +14162;Ireland;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;35;1;1.3337545863818962e-07;4574888;7.650460514006026e-06;0;1;Old +14163;Ireland;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14164;Ireland;F;Craft and related trades workers;Transportation and storage   ;Y15-29;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;1;0;Young +14165;Ireland;F;Craft and related trades workers;Transportation and storage   ;Y30-49;61;1;2.3245437076941619e-07;4574888;1.3333659752981931e-05;1;0;Young +14166;Ireland;F;Craft and related trades workers;Transportation and storage   ;Y50-64;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;0;1;Old +14167;Ireland;F;Craft and related trades workers;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14168;Ireland;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;33;1;1.257540038588645e-07;4574888;7.21329134177711e-06;1;0;Young +14169;Ireland;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;94;1;3.582083746282807e-07;4574888;2.054695109475904e-05;1;0;Young +14170;Ireland;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;34;1;1.2956473124852705e-07;4574888;7.431875927891568e-06;0;1;Old +14171;Ireland;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14172;Ireland;F;Craft and related trades workers;Information and communication   ;Y15-29;125;1;4.7634092370782007e-07;4574888;2.7323073264307235e-05;1;0;Young +14173;Ireland;F;Craft and related trades workers;Information and communication   ;Y30-49;216;1;8.231171161671131e-07;4574888;4.7214270600722906e-05;1;0;Young +14174;Ireland;F;Craft and related trades workers;Information and communication   ;Y50-64;30;1;1.1432182168987682e-07;4574888;6.557537583433737e-06;0;1;Old +14175;Ireland;F;Craft and related trades workers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14176;Ireland;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;37;1;1.4099691341751475e-07;4574888;8.087629686234941e-06;1;0;Young +14177;Ireland;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;96;1;3.658298294076058e-07;4574888;2.0984120266987956e-05;1;0;Young +14178;Ireland;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +14179;Ireland;F;Craft and related trades workers;Real estate activities   ;Y15-29;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14180;Ireland;F;Craft and related trades workers;Real estate activities   ;Y30-49;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +14181;Ireland;F;Craft and related trades workers;Real estate activities   ;Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14182;Ireland;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;54;1;2.0577927904177827e-07;4574888;1.1803567650180726e-05;1;0;Young +14183;Ireland;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;169;1;6.440129288529728e-07;4574888;3.694079505334338e-05;1;0;Young +14184;Ireland;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;46;1;1.7529345992447778e-07;4574888;1.0054890961265063e-05;0;1;Old +14185;Ireland;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14186;Ireland;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;51;1;1.943470968727906e-07;4574888;1.1147813891837352e-05;1;0;Young +14187;Ireland;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;93;1;3.543976472386181e-07;4574888;2.0328366508644583e-05;1;0;Young +14188;Ireland;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;27;1;1.0288963952088914e-07;4574888;5.901783825090363e-06;0;1;Old +14189;Ireland;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14190;Ireland;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;1;0;Young +14191;Ireland;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;65;1;2.4769728032806646e-07;4574888;1.4207998097439763e-05;1;0;Young +14192;Ireland;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;0;1;Old +14193;Ireland;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14194;Ireland;F;Craft and related trades workers;Education   ;Y15-29;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;1;0;Young +14195;Ireland;F;Craft and related trades workers;Education   ;Y30-49;56;1;2.134007338211034e-07;4574888;1.2240736822409642e-05;1;0;Young +14196;Ireland;F;Craft and related trades workers;Education   ;Y50-64;33;1;1.257540038588645e-07;4574888;7.21329134177711e-06;0;1;Old +14197;Ireland;F;Craft and related trades workers;Education   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14198;Ireland;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;26;1;9.907891213122657e-08;4574888;5.683199238975905e-06;1;0;Young +14199;Ireland;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;89;1;3.3915473767996787e-07;4574888;1.9454028164186753e-05;1;0;Young +14200;Ireland;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;27;1;1.0288963952088914e-07;4574888;5.901783825090363e-06;0;1;Old +14201;Ireland;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14202;Ireland;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;1;0;Young +14203;Ireland;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;47;1;1.7910418731414036e-07;4574888;1.027347554737952e-05;1;0;Young +14204;Ireland;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;0;1;Old +14205;Ireland;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14206;Ireland;F;Craft and related trades workers;Other service activities   ;Y15-29;30;1;1.1432182168987682e-07;4574888;6.557537583433737e-06;1;0;Young +14207;Ireland;F;Craft and related trades workers;Other service activities   ;Y30-49;178;1;6.783094753599357e-07;4574888;3.8908056328373505e-05;1;0;Young +14208;Ireland;F;Craft and related trades workers;Other service activities   ;Y50-64;70;1;2.6675091727637925e-07;4574888;1.5300921028012052e-05;0;1;Old +14209;Ireland;F;Craft and related trades workers;Other service activities   ;Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14210;Ireland;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14211;Ireland;F;Craft and related trades workers;Not stated   ;Y15-29;72;1;2.7437237205570434e-07;4574888;1.5738090200240967e-05;1;0;Young +14212;Ireland;F;Craft and related trades workers;Not stated   ;Y30-49;269;1;1.0250856678192288e-06;4574888;5.879925366478917e-05;1;0;Young +14213;Ireland;F;Craft and related trades workers;Not stated   ;Y50-64;200;1;7.621454779325121e-07;4574888;4.371691722289158e-05;0;1;Old +14214;Ireland;F;Craft and related trades workers;Not stated   ;Y65-84;38;1;1.448076408071773e-07;4574888;8.306214272349399e-06;0;1;Old +14215;Ireland;F;Craft and related trades workers;Not stated   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14216;Ireland;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;54;1;2.0577927904177827e-07;4574888;1.1803567650180726e-05;1;0;Young +14217;Ireland;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;101;1;3.848834663559186e-07;4574888;2.2077043197560247e-05;1;0;Young +14218;Ireland;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;26;1;9.907891213122657e-08;4574888;5.683199238975905e-06;0;1;Old +14219;Ireland;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14220;Ireland;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +14221;Ireland;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;1;0;Young +14222;Ireland;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14223;Ireland;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;3446;1;1.3131766584777183e-05;4574888;0.0007532424837504219;1;0;Young +14224;Ireland;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;9987;1;3.805773444055999e-05;4574888;0.0021830042615250908;1;0;Young +14225;Ireland;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;3623;1;1.3806265332747457e-05;4574888;0.0007919319554926809;0;1;Old +14226;Ireland;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;98;1;3.7345128418693096e-07;4574888;2.1421289439216874e-05;0;1;Old +14227;Ireland;F;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14228;Ireland;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +14229;Ireland;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +14230;Ireland;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14231;Ireland;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;1;0;Young +14232;Ireland;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;1;0;Young +14233;Ireland;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14234;Ireland;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;1;0;Young +14235;Ireland;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;51;1;1.943470968727906e-07;4574888;1.1147813891837352e-05;1;0;Young +14236;Ireland;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;21;1;8.002527518291377e-08;4574888;4.590276308403615e-06;0;1;Old +14237;Ireland;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;604;1;2.3016793433561867e-06;4574888;0.00013202509001313255;1;0;Young +14238;Ireland;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1190;1;4.534765593698447e-06;4574888;0.0002601156574762049;1;0;Young +14239;Ireland;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;468;1;1.7834204183620783e-06;4574888;0.00010229758630156628;0;1;Old +14240;Ireland;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;27;1;1.0288963952088914e-07;4574888;5.901783825090363e-06;0;1;Old +14241;Ireland;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14242;Ireland;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;83;1;3.1629037334199253e-07;4574888;1.8142520647500004e-05;1;0;Young +14243;Ireland;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;777;1;2.9609351817678095e-06;4574888;0.00016984022341093378;1;0;Young +14244;Ireland;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;459;1;1.7491238718551153e-06;4574888;0.00010033032502653617;0;1;Old +14245;Ireland;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;47;1;1.7910418731414036e-07;4574888;1.027347554737952e-05;0;1;Old +14246;Ireland;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;85;1;3.239118281213176e-07;4574888;1.857968981972892e-05;1;0;Young +14247;Ireland;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;107;1;4.07747830693894e-07;4574888;2.3388550714246992e-05;1;0;Young +14248;Ireland;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;0;1;Old +14249;Ireland;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14250;Ireland;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;60;1;2.2864364337975364e-07;4574888;1.3115075166867473e-05;1;0;Young +14251;Ireland;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;110;1;4.1918001286288164e-07;4574888;2.4044304472590368e-05;1;0;Young +14252;Ireland;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;0;1;Old +14253;Ireland;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;1;0;Young +14254;Ireland;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;1;0;Young +14255;Ireland;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14256;Ireland;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14257;Ireland;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;1;0;Young +14258;Ireland;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14259;Ireland;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;1;0;Young +14260;Ireland;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;89;1;3.3915473767996787e-07;4574888;1.9454028164186753e-05;1;0;Young +14261;Ireland;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;40;1;1.5242909558650242e-07;4574888;8.743383444578316e-06;0;1;Old +14262;Ireland;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14263;Ireland;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;57;1;2.1721146121076594e-07;4574888;1.2459321408524099e-05;1;0;Young +14264;Ireland;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;121;1;4.610980141491698e-07;4574888;2.6448734919849404e-05;1;0;Young +14265;Ireland;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;46;1;1.7529345992447778e-07;4574888;1.0054890961265063e-05;0;1;Old +14266;Ireland;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;23;1;8.764672996223889e-08;4574888;5.027445480632531e-06;1;0;Young +14267;Ireland;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;1;0;Young +14268;Ireland;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;0;1;Old +14269;Ireland;F;Plant and machine operators, and assemblers;Education   ;Y15-29;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;1;0;Young +14270;Ireland;F;Plant and machine operators, and assemblers;Education   ;Y30-49;45;1;1.7148273253481523e-07;4574888;9.836306375150605e-06;1;0;Young +14271;Ireland;F;Plant and machine operators, and assemblers;Education   ;Y50-64;39;1;1.4861836819683987e-07;4574888;8.524798858463858e-06;0;1;Old +14272;Ireland;F;Plant and machine operators, and assemblers;Education   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14273;Ireland;F;Plant and machine operators, and assemblers;Education   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14274;Ireland;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;85;1;3.239118281213176e-07;4574888;1.857968981972892e-05;1;0;Young +14275;Ireland;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;184;1;7.011738396979111e-07;4574888;4.021956384506025e-05;1;0;Young +14276;Ireland;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;111;1;4.2299074025254424e-07;4574888;2.4262889058704826e-05;0;1;Old +14277;Ireland;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14278;Ireland;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;1;0;Young +14279;Ireland;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;1;0;Young +14280;Ireland;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14281;Ireland;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;50;1;1.9053636948312803e-07;4574888;1.0929229305722895e-05;1;0;Young +14282;Ireland;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;106;1;4.039371033042314e-07;4574888;2.3169966128132534e-05;1;0;Young +14283;Ireland;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;92;1;3.5058691984895557e-07;4574888;2.0109781922530125e-05;0;1;Old +14284;Ireland;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +14285;Ireland;F;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14286;Ireland;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14287;Ireland;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14288;Ireland;F;Plant and machine operators, and assemblers;Not stated   ;Y15-29;168;1;6.402022014633102e-07;4574888;3.672221046722892e-05;1;0;Young +14289;Ireland;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;475;1;1.8100955100897163e-06;4574888;0.0001038276784043675;1;0;Young +14290;Ireland;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;417;1;1.5890733214892878e-06;4574888;9.114977240972894e-05;0;1;Old +14291;Ireland;F;Plant and machine operators, and assemblers;Not stated   ;Y65-84;47;1;1.7910418731414036e-07;4574888;1.027347554737952e-05;0;1;Old +14292;Ireland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;640;1;2.4388655293840387e-06;4574888;0.00013989413511325305;1;0;Young +14293;Ireland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;1108;1;4.222285947746117e-06;4574888;0.00024219172141481935;1;0;Young +14294;Ireland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;420;1;1.6005055036582754e-06;4574888;9.180552616807231e-05;0;1;Old +14295;Ireland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;46;1;1.7529345992447778e-07;4574888;1.0054890961265063e-05;0;1;Old +14296;Ireland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14297;Ireland;F;Elementary occupations;Mining and quarrying   ;Y15-29;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14298;Ireland;F;Elementary occupations;Mining and quarrying   ;Y30-49;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;1;0;Young +14299;Ireland;F;Elementary occupations;Mining and quarrying   ;Y50-64;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14300;Ireland;F;Elementary occupations;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14301;Ireland;F;Elementary occupations;Manufacturing   ;Y15-29;961;1;3.662109021465721e-06;4574888;0.00021005978725599403;1;0;Young +14302;Ireland;F;Elementary occupations;Manufacturing   ;Y30-49;2162;1;8.238792616450456e-06;4574888;0.0004725798751794579;1;0;Young +14303;Ireland;F;Elementary occupations;Manufacturing   ;Y50-64;968;1;3.6887841131933586e-06;4574888;0.00021158987935879524;0;1;Old +14304;Ireland;F;Elementary occupations;Manufacturing   ;Y65-84;40;1;1.5242909558650242e-07;4574888;8.743383444578316e-06;0;1;Old +14305;Ireland;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;1;0;Young +14306;Ireland;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;1;0;Young +14307;Ireland;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;0;1;Old +14308;Ireland;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14309;Ireland;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;51;1;1.943470968727906e-07;4574888;1.1147813891837352e-05;1;0;Young +14310;Ireland;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;109;1;4.153692854732191e-07;4574888;2.382571988647591e-05;1;0;Young +14311;Ireland;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;0;1;Old +14312;Ireland;F;Elementary occupations;Construction   ;Y15-29;77;1;2.9342600900401714e-07;4574888;1.683101313081326e-05;1;0;Young +14313;Ireland;F;Elementary occupations;Construction   ;Y30-49;199;1;7.583347505428495e-07;4574888;4.349833263677712e-05;1;0;Young +14314;Ireland;F;Elementary occupations;Construction   ;Y50-64;95;1;3.6201910201794326e-07;4574888;2.0765535680873498e-05;0;1;Old +14315;Ireland;F;Elementary occupations;Construction   ;Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +14316;Ireland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1169;1;4.454740318515533e-06;4574888;0.00025552538116780125;1;0;Young +14317;Ireland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1924;1;7.331839497710767e-06;4574888;0.00042055674368421695;1;0;Young +14318;Ireland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1016;1;3.871699027897162e-06;4574888;0.0002220819394922892;0;1;Old +14319;Ireland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +14320;Ireland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14321;Ireland;F;Elementary occupations;Transportation and storage   ;Y15-29;205;1;7.811991148808249e-07;4574888;4.4809840153463866e-05;1;0;Young +14322;Ireland;F;Elementary occupations;Transportation and storage   ;Y30-49;438;1;1.6690985966722016e-06;4574888;9.574004871813256e-05;1;0;Young +14323;Ireland;F;Elementary occupations;Transportation and storage   ;Y50-64;198;1;7.54524023153187e-07;4574888;4.327974805066266e-05;0;1;Old +14324;Ireland;F;Elementary occupations;Transportation and storage   ;Y65-84;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14325;Ireland;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;5198;1;1.980816097146599e-05;4574888;0.001136202678622952;1;0;Young +14326;Ireland;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;6853;1;2.6114914801357527e-05;4574888;0.0014979601686423798;1;0;Young +14327;Ireland;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;3086;1;1.1759904724498662e-05;4574888;0.000674552032749217;0;1;Old +14328;Ireland;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;152;1;5.792305632287092e-07;4574888;3.3224857089397595e-05;0;1;Old +14329;Ireland;F;Elementary occupations;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14330;Ireland;F;Elementary occupations;Information and communication   ;Y15-29;213;1;8.116849339981254e-07;4574888;4.6558516842379526e-05;1;0;Young +14331;Ireland;F;Elementary occupations;Information and communication   ;Y30-49;244;1;9.298174830776647e-07;4574888;5.3334639011927724e-05;1;0;Young +14332;Ireland;F;Elementary occupations;Information and communication   ;Y50-64;79;1;3.010474637833423e-07;4574888;1.7268182303042174e-05;0;1;Old +14333;Ireland;F;Elementary occupations;Information and communication   ;Y65-84;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14334;Ireland;F;Elementary occupations;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14335;Ireland;F;Elementary occupations;Financial and insurance activities   ;Y15-29;70;1;2.6675091727637925e-07;4574888;1.5300921028012052e-05;1;0;Young +14336;Ireland;F;Elementary occupations;Financial and insurance activities   ;Y30-49;201;1;7.659562053221747e-07;4574888;4.3935501809006036e-05;1;0;Young +14337;Ireland;F;Elementary occupations;Financial and insurance activities   ;Y50-64;212;1;8.078742066084628e-07;4574888;4.633993225626507e-05;0;1;Old +14338;Ireland;F;Elementary occupations;Financial and insurance activities   ;Y65-84;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +14339;Ireland;F;Elementary occupations;Real estate activities   ;Y15-29;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;1;0;Young +14340;Ireland;F;Elementary occupations;Real estate activities   ;Y30-49;38;1;1.448076408071773e-07;4574888;8.306214272349399e-06;1;0;Young +14341;Ireland;F;Elementary occupations;Real estate activities   ;Y50-64;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;0;1;Old +14342;Ireland;F;Elementary occupations;Real estate activities   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14343;Ireland;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;50;1;1.9053636948312803e-07;4574888;1.0929229305722895e-05;1;0;Young +14344;Ireland;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;177;1;6.744987479702732e-07;4574888;3.868947174225905e-05;1;0;Young +14345;Ireland;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;114;1;4.344229224215319e-07;4574888;2.4918642817048198e-05;0;1;Old +14346;Ireland;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +14347;Ireland;F;Elementary occupations;Administrative and support service activities   ;Y15-29;2536;1;9.664004660184254e-06;4574888;0.0005543305103862652;1;0;Young +14348;Ireland;F;Elementary occupations;Administrative and support service activities   ;Y30-49;5525;1;2.1054268827885647e-05;4574888;0.0012076798382823798;1;0;Young +14349;Ireland;F;Elementary occupations;Administrative and support service activities   ;Y50-64;3046;1;1.160747562891216e-05;4574888;0.0006658086493046387;0;1;Old +14350;Ireland;F;Elementary occupations;Administrative and support service activities   ;Y65-84;161;1;6.135271097356723e-07;4574888;3.519211836442772e-05;0;1;Old +14351;Ireland;F;Elementary occupations;Administrative and support service activities   ;Y_GE85;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14352;Ireland;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;79;1;3.010474637833423e-07;4574888;1.7268182303042174e-05;1;0;Young +14353;Ireland;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;653;1;2.488404985449652e-06;4574888;0.000142735734732741;1;0;Young +14354;Ireland;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;862;1;3.284847009889127e-06;4574888;0.0001884199132306627;0;1;Old +14355;Ireland;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;72;1;2.7437237205570434e-07;4574888;1.5738090200240967e-05;0;1;Old +14356;Ireland;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14357;Ireland;F;Elementary occupations;Education   ;Y15-29;332;1;1.2651614933679701e-06;4574888;7.257008259000002e-05;1;0;Young +14358;Ireland;F;Elementary occupations;Education   ;Y30-49;1661;1;6.329618194229513e-06;4574888;0.00036306899753611456;1;0;Young +14359;Ireland;F;Elementary occupations;Education   ;Y50-64;1707;1;6.504911654153991e-06;4574888;0.0003731238884973796;0;1;Old +14360;Ireland;F;Elementary occupations;Education   ;Y65-84;164;1;6.2495929190466e-07;4574888;3.584787212277109e-05;0;1;Old +14361;Ireland;F;Elementary occupations;Human health and social work activities   ;Y15-29;865;1;3.296279192058115e-06;4574888;0.00018907566698900607;1;0;Young +14362;Ireland;F;Elementary occupations;Human health and social work activities   ;Y30-49;3381;1;1.2884069304449118e-05;4574888;0.0007390344856529821;1;0;Young +14363;Ireland;F;Elementary occupations;Human health and social work activities   ;Y50-64;2584;1;9.846919574888057e-06;4574888;0.0005648225705197591;0;1;Old +14364;Ireland;F;Elementary occupations;Human health and social work activities   ;Y65-84;124;1;4.725301963181575e-07;4574888;2.7104488678192777e-05;0;1;Old +14365;Ireland;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;200;1;7.621454779325121e-07;4574888;4.371691722289158e-05;1;0;Young +14366;Ireland;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;396;1;1.509048046306374e-06;4574888;8.655949610132533e-05;1;0;Young +14367;Ireland;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;227;1;8.650351174534013e-07;4574888;4.961870104798194e-05;0;1;Old +14368;Ireland;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;0;1;Old +14369;Ireland;F;Elementary occupations;Other service activities   ;Y15-29;302;1;1.1508396716780934e-06;4574888;6.601254500656628e-05;1;0;Young +14370;Ireland;F;Elementary occupations;Other service activities   ;Y30-49;865;1;3.296279192058115e-06;4574888;0.00018907566698900607;1;0;Young +14371;Ireland;F;Elementary occupations;Other service activities   ;Y50-64;530;1;2.0196855165211572e-06;4574888;0.00011584983064066268;0;1;Old +14372;Ireland;F;Elementary occupations;Other service activities   ;Y65-84;54;1;2.0577927904177827e-07;4574888;1.1803567650180726e-05;0;1;Old +14373;Ireland;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;1;0;Young +14374;Ireland;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;1;0;Young +14375;Ireland;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;0;1;Old +14376;Ireland;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14377;Ireland;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14378;Ireland;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +14379;Ireland;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14380;Ireland;F;Elementary occupations;Not stated   ;Y15-29;532;1;2.027306971300482e-06;4574888;0.0001162869998128916;1;0;Young +14381;Ireland;F;Elementary occupations;Not stated   ;Y30-49;1273;1;4.85105596704044e-06;4574888;0.0002782581781237049;1;0;Young +14382;Ireland;F;Elementary occupations;Not stated   ;Y50-64;1147;1;4.370904315942957e-06;4574888;0.00025071652027328317;0;1;Old +14383;Ireland;F;Elementary occupations;Not stated   ;Y65-84;117;1;4.458551045905196e-07;4574888;2.557439657539157e-05;0;1;Old +14384;Ireland;F;Elementary occupations;Not stated   ;Y_GE85;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;0;1;Old +14385;Ireland;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;29;1;1.1051109430021426e-07;4574888;6.338952997319278e-06;1;0;Young +14386;Ireland;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;90;1;3.4296546506963047e-07;4574888;1.967261275030121e-05;1;0;Young +14387;Ireland;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;48;1;1.829149147038029e-07;4574888;1.0492060133493978e-05;0;1;Old +14388;Ireland;F;Not stated;Agriculture, forestry and fishing   ;Y65-84;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;0;1;Old +14389;Ireland;F;Not stated;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14390;Ireland;F;Not stated;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +14391;Ireland;F;Not stated;Mining and quarrying   ;Y50-64;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14392;Ireland;F;Not stated;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14393;Ireland;F;Not stated;Manufacturing   ;Y15-29;251;1;9.564925748053026e-07;4574888;5.486473111472893e-05;1;0;Young +14394;Ireland;F;Not stated;Manufacturing   ;Y30-49;478;1;1.821527692258704e-06;4574888;0.00010448343216271087;1;0;Young +14395;Ireland;F;Not stated;Manufacturing   ;Y50-64;204;1;7.773883874911624e-07;4574888;4.459125556734941e-05;0;1;Old +14396;Ireland;F;Not stated;Manufacturing   ;Y65-84;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;0;1;Old +14397;Ireland;F;Not stated;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14398;Ireland;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;1;0;Young +14399;Ireland;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;1;0;Young +14400;Ireland;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14401;Ireland;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;1;0;Young +14402;Ireland;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;1;0;Young +14403;Ireland;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14404;Ireland;F;Not stated;Construction   ;Y15-29;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;1;0;Young +14405;Ireland;F;Not stated;Construction   ;Y30-49;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;1;0;Young +14406;Ireland;F;Not stated;Construction   ;Y50-64;23;1;8.764672996223889e-08;4574888;5.027445480632531e-06;0;1;Old +14407;Ireland;F;Not stated;Construction   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14408;Ireland;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;631;1;2.4045689828770757e-06;4574888;0.0001379268738382229;1;0;Young +14409;Ireland;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;726;1;2.766588084895019e-06;4574888;0.0001586924095190964;1;0;Young +14410;Ireland;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;372;1;1.4175905889544725e-06;4574888;8.131346603457833e-05;0;1;Old +14411;Ireland;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +14412;Ireland;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14413;Ireland;F;Not stated;Transportation and storage   ;Y15-29;35;1;1.3337545863818962e-07;4574888;7.650460514006026e-06;1;0;Young +14414;Ireland;F;Not stated;Transportation and storage   ;Y30-49;63;1;2.400758255487413e-07;4574888;1.3770828925210846e-05;1;0;Young +14415;Ireland;F;Not stated;Transportation and storage   ;Y50-64;38;1;1.448076408071773e-07;4574888;8.306214272349399e-06;0;1;Old +14416;Ireland;F;Not stated;Transportation and storage   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14417;Ireland;F;Not stated;Accommodation and food service activities   ;Y15-29;456;1;1.7376916896861275e-06;4574888;9.967457126819279e-05;1;0;Young +14418;Ireland;F;Not stated;Accommodation and food service activities   ;Y30-49;455;1;1.7338809622964651e-06;4574888;9.945598668207834e-05;1;0;Young +14419;Ireland;F;Not stated;Accommodation and food service activities   ;Y50-64;197;1;7.507132957635244e-07;4574888;4.3061163464548206e-05;0;1;Old +14420;Ireland;F;Not stated;Accommodation and food service activities   ;Y65-84;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +14421;Ireland;F;Not stated;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14422;Ireland;F;Not stated;Information and communication   ;Y15-29;88;1;3.353440102903053e-07;4574888;1.9235443578072295e-05;1;0;Young +14423;Ireland;F;Not stated;Information and communication   ;Y30-49;96;1;3.658298294076058e-07;4574888;2.0984120266987956e-05;1;0;Young +14424;Ireland;F;Not stated;Information and communication   ;Y50-64;34;1;1.2956473124852705e-07;4574888;7.431875927891568e-06;0;1;Old +14425;Ireland;F;Not stated;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14426;Ireland;F;Not stated;Financial and insurance activities   ;Y15-29;118;1;4.496658319801821e-07;4574888;2.5792981161506032e-05;1;0;Young +14427;Ireland;F;Not stated;Financial and insurance activities   ;Y30-49;143;1;5.449340167217462e-07;4574888;3.125759581436748e-05;1;0;Young +14428;Ireland;F;Not stated;Financial and insurance activities   ;Y50-64;48;1;1.829149147038029e-07;4574888;1.0492060133493978e-05;0;1;Old +14429;Ireland;F;Not stated;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14430;Ireland;F;Not stated;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;1;0;Young +14431;Ireland;F;Not stated;Real estate activities   ;Y30-49;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;1;0;Young +14432;Ireland;F;Not stated;Real estate activities   ;Y50-64;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;0;1;Old +14433;Ireland;F;Not stated;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14434;Ireland;F;Not stated;Professional, scientific and technical activities   ;Y15-29;95;1;3.6201910201794326e-07;4574888;2.0765535680873498e-05;1;0;Young +14435;Ireland;F;Not stated;Professional, scientific and technical activities   ;Y30-49;135;1;5.144481976044457e-07;4574888;2.9508919125451814e-05;1;0;Young +14436;Ireland;F;Not stated;Professional, scientific and technical activities   ;Y50-64;59;1;2.2483291599009106e-07;4574888;1.2896490580753016e-05;0;1;Old +14437;Ireland;F;Not stated;Professional, scientific and technical activities   ;Y65-84;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14438;Ireland;F;Not stated;Administrative and support service activities   ;Y15-29;147;1;5.601769262803964e-07;4574888;3.213193415882531e-05;1;0;Young +14439;Ireland;F;Not stated;Administrative and support service activities   ;Y30-49;251;1;9.564925748053026e-07;4574888;5.486473111472893e-05;1;0;Young +14440;Ireland;F;Not stated;Administrative and support service activities   ;Y50-64;188;1;7.164167492565614e-07;4574888;4.109390218951808e-05;0;1;Old +14441;Ireland;F;Not stated;Administrative and support service activities   ;Y65-84;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +14442;Ireland;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;73;1;2.7818309944536694e-07;4574888;1.5956674786355425e-05;1;0;Young +14443;Ireland;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;163;1;6.211485645149974e-07;4574888;3.5629287536656635e-05;1;0;Young +14444;Ireland;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;138;1;5.258803797734334e-07;4574888;3.016467288379519e-05;0;1;Old +14445;Ireland;F;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;0;1;Old +14446;Ireland;F;Not stated;Education   ;Y15-29;1330;1;5.068267428251206e-06;4574888;0.00029071749953222896;1;0;Young +14447;Ireland;F;Not stated;Education   ;Y30-49;870;1;3.3153328290064275e-06;4574888;0.00019016858991957836;1;0;Young +14448;Ireland;F;Not stated;Education   ;Y50-64;333;1;1.2689722207576327e-06;4574888;7.278866717611448e-05;0;1;Old +14449;Ireland;F;Not stated;Education   ;Y65-84;29;1;1.1051109430021426e-07;4574888;6.338952997319278e-06;0;1;Old +14450;Ireland;F;Not stated;Human health and social work activities   ;Y15-29;329;1;1.2537293111989825e-06;4574888;7.191432883165665e-05;1;0;Young +14451;Ireland;F;Not stated;Human health and social work activities   ;Y30-49;815;1;3.105742822574987e-06;4574888;0.00017814643768328318;1;0;Young +14452;Ireland;F;Not stated;Human health and social work activities   ;Y50-64;521;1;1.9853889700141942e-06;4574888;0.00011388256936563255;0;1;Old +14453;Ireland;F;Not stated;Human health and social work activities   ;Y65-84;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;0;1;Old +14454;Ireland;F;Not stated;Arts, entertainment and recreation   ;Y15-29;86;1;3.277225555109802e-07;4574888;1.8798274405843377e-05;1;0;Young +14455;Ireland;F;Not stated;Arts, entertainment and recreation   ;Y30-49;97;1;3.6964055679726836e-07;4574888;2.1202704853102413e-05;1;0;Young +14456;Ireland;F;Not stated;Arts, entertainment and recreation   ;Y50-64;40;1;1.5242909558650242e-07;4574888;8.743383444578316e-06;0;1;Old +14457;Ireland;F;Not stated;Arts, entertainment and recreation   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14458;Ireland;F;Not stated;Other service activities   ;Y15-29;208;1;7.926312970498126e-07;4574888;4.546559391180724e-05;1;0;Young +14459;Ireland;F;Not stated;Other service activities   ;Y30-49;195;1;7.430918409841993e-07;4574888;4.262399429231929e-05;1;0;Young +14460;Ireland;F;Not stated;Other service activities   ;Y50-64;88;1;3.353440102903053e-07;4574888;1.9235443578072295e-05;0;1;Old +14461;Ireland;F;Not stated;Other service activities   ;Y65-84;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +14462;Ireland;F;Not stated;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14463;Ireland;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;1;0;Young +14464;Ireland;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;1;0;Young +14465;Ireland;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +14466;Ireland;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14467;Ireland;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +14468;Ireland;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +14469;Ireland;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14470;Ireland;F;Not stated;Not stated   ;Y15-29;36799;1;0.00014023095721219257;4574888;0.008043694184425935;1;0;Young +14471;Ireland;F;Not stated;Not stated   ;Y30-49;34783;1;0.00013254853079463285;4574888;0.0076030276588191885;1;0;Young +14472;Ireland;F;Not stated;Not stated   ;Y50-64;18398;1;7.010976251501179e-05;4574888;0.004021519215333796;0;1;Old +14473;Ireland;F;Not stated;Not stated   ;Y65-84;2666;1;1.0159399220840387e-05;4574888;0.0005827465065811447;0;1;Old +14474;Ireland;F;Not stated;Not stated   ;Y_GE85;143;1;5.449340167217462e-07;4574888;3.125759581436748e-05;0;1;Old +14475;Ireland;M;Not applicable;Not applicable  ;Y15-29;207324;1;0.0007900552453344007;4574888;0.045317830731593865;1;0;Young +14476;Ireland;M;Not applicable;Not applicable  ;Y30-49;54002;1;0.0002057869004965576;4574888;0.011804004819352955;1;0;Young +14477;Ireland;M;Not applicable;Not applicable  ;Y50-64;83668;1;0.00031883593923828714;4574888;0.018288535151024462;0;1;Old +14478;Ireland;M;Not applicable;Not applicable  ;Y65-84;189877;1;0.000723569484566958;4574888;0.04150418545765492;0;1;Old +14479;Ireland;M;Not applicable;Not applicable  ;Y_GE85;17692;1;6.741938897791002e-05;4574888;0.0038671984975369887;0;1;Old +14480;Ireland;M;Not applicable;Not applicable  ;Y_LT15;499927;1;0.001905085511731835;4574888;0.1092763363824426;0;1;Old +14481;Ireland;M;Armed forces occupations;Manufacturing   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14482;Ireland;M;Armed forces occupations;Manufacturing   ;Y30-49;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14483;Ireland;M;Armed forces occupations;Transportation and storage   ;Y15-29;23;1;8.764672996223889e-08;4574888;5.027445480632531e-06;1;0;Young +14484;Ireland;M;Armed forces occupations;Transportation and storage   ;Y30-49;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;1;0;Young +14485;Ireland;M;Armed forces occupations;Transportation and storage   ;Y50-64;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +14486;Ireland;M;Armed forces occupations;Accommodation and food service activities   ;Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14487;Ireland;M;Armed forces occupations;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14488;Ireland;M;Armed forces occupations;Administrative and support service activities   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14489;Ireland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2269;1;8.64654044714435e-06;4574888;0.0004959684258937049;1;0;Young +14490;Ireland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;3710;1;1.41377986156481e-05;4574888;0.0008109488144846387;1;0;Young +14491;Ireland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;1392;1;5.304532526410284e-06;4574888;0.0003042697438713254;0;1;Old +14492;Ireland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;42;1;1.6005055036582754e-07;4574888;9.18055261680723e-06;0;1;Old +14493;Ireland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14494;Ireland;M;Armed forces occupations;Human health and social work activities   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14495;Ireland;M;Armed forces occupations;Human health and social work activities   ;Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14496;Ireland;M;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14497;Ireland;M;Armed forces occupations;Not stated   ;Y15-29;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +14498;Ireland;M;Armed forces occupations;Not stated   ;Y30-49;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14499;Ireland;M;Armed forces occupations;Not stated   ;Y50-64;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14500;Ireland;M;Managers;Agriculture, forestry and fishing   ;Y15-29;201;1;7.659562053221747e-07;4574888;4.3935501809006036e-05;1;0;Young +14501;Ireland;M;Managers;Agriculture, forestry and fishing   ;Y30-49;903;1;3.441086832865292e-06;4574888;0.00019738188126135547;1;0;Young +14502;Ireland;M;Managers;Agriculture, forestry and fishing   ;Y50-64;527;1;2.0082533343521694e-06;4574888;0.0001151940768823193;0;1;Old +14503;Ireland;M;Managers;Agriculture, forestry and fishing   ;Y65-84;65;1;2.4769728032806646e-07;4574888;1.4207998097439763e-05;0;1;Old +14504;Ireland;M;Managers;Mining and quarrying   ;Y15-29;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;1;0;Young +14505;Ireland;M;Managers;Mining and quarrying   ;Y30-49;246;1;9.374389378569899e-07;4574888;5.377180818415664e-05;1;0;Young +14506;Ireland;M;Managers;Mining and quarrying   ;Y50-64;159;1;6.059056549563472e-07;4574888;3.4754949192198805e-05;0;1;Old +14507;Ireland;M;Managers;Mining and quarrying   ;Y65-84;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +14508;Ireland;M;Managers;Manufacturing   ;Y15-29;627;1;2.3893260733184253e-06;4574888;0.00013705253549376508;1;0;Young +14509;Ireland;M;Managers;Manufacturing   ;Y30-49;8661;1;3.300470992186744e-05;4574888;0.0018931611003373198;1;0;Young +14510;Ireland;M;Managers;Manufacturing   ;Y50-64;3962;1;1.5098101917843065e-05;4574888;0.0008660321301854822;0;1;Old +14511;Ireland;M;Managers;Manufacturing   ;Y65-84;416;1;1.5852625940996252e-06;4574888;9.093118782361448e-05;0;1;Old +14512;Ireland;M;Managers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14513;Ireland;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;33;1;1.257540038588645e-07;4574888;7.21329134177711e-06;1;0;Young +14514;Ireland;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;432;1;1.6462342323342262e-06;4574888;9.442854120144581e-05;1;0;Young +14515;Ireland;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;248;1;9.45060392636315e-07;4574888;5.4208977356385554e-05;0;1;Old +14516;Ireland;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +14517;Ireland;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14518;Ireland;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;99;1;3.772620115765935e-07;4574888;2.163987402533133e-05;1;0;Young +14519;Ireland;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;613;1;2.3359758898631497e-06;4574888;0.0001339923512881627;1;0;Young +14520;Ireland;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;238;1;9.069531187396895e-07;4574888;5.202313149524098e-05;0;1;Old +14521;Ireland;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;0;1;Old +14522;Ireland;M;Managers;Construction   ;Y15-29;404;1;1.5395338654236744e-06;4574888;8.830817279024099e-05;1;0;Young +14523;Ireland;M;Managers;Construction   ;Y30-49;4101;1;1.562779302500616e-05;4574888;0.0008964153876553917;1;0;Young +14524;Ireland;M;Managers;Construction   ;Y50-64;1726;1;6.5773154745575795e-06;4574888;0.0003772769956335543;0;1;Old +14525;Ireland;M;Managers;Construction   ;Y65-84;165;1;6.287700192943225e-07;4574888;3.606645670888555e-05;0;1;Old +14526;Ireland;M;Managers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14527;Ireland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4327;1;1.64890174150699e-05;4574888;0.0009458155041172592;1;0;Young +14528;Ireland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;17079;1;6.508341308804687e-05;4574888;0.003733206146248826;1;0;Young +14529;Ireland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;6538;1;2.491453567361382e-05;4574888;0.0014291060240163257;0;1;Old +14530;Ireland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1018;1;3.879320482676487e-06;4574888;0.00022251910866451813;0;1;Old +14531;Ireland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;0;1;Old +14532;Ireland;M;Managers;Transportation and storage   ;Y15-29;256;1;9.755462117536154e-07;4574888;5.595765404530122e-05;1;0;Young +14533;Ireland;M;Managers;Transportation and storage   ;Y30-49;2731;1;1.0407096501168453e-05;4574888;0.0005969545046785845;1;0;Young +14534;Ireland;M;Managers;Transportation and storage   ;Y50-64;1256;1;4.786273601416176e-06;4574888;0.0002745422401597591;0;1;Old +14535;Ireland;M;Managers;Transportation and storage   ;Y65-84;107;1;4.07747830693894e-07;4574888;2.3388550714246992e-05;0;1;Old +14536;Ireland;M;Managers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14537;Ireland;M;Managers;Accommodation and food service activities   ;Y15-29;2271;1;8.654161901923675e-06;4574888;0.0004964055950659338;1;0;Young +14538;Ireland;M;Managers;Accommodation and food service activities   ;Y30-49;8484;1;3.2330211173897166e-05;4574888;0.0018544716285950607;1;0;Young +14539;Ireland;M;Managers;Accommodation and food service activities   ;Y50-64;3430;1;1.3070794946542583e-05;4574888;0.0007497451303725906;0;1;Old +14540;Ireland;M;Managers;Accommodation and food service activities   ;Y65-84;525;1;2.0006318795728442e-06;4574888;0.00011475690771009038;0;1;Old +14541;Ireland;M;Managers;Accommodation and food service activities   ;Y_GE85;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +14542;Ireland;M;Managers;Information and communication   ;Y15-29;330;1;1.257540038588645e-06;4574888;7.21329134177711e-05;1;0;Young +14543;Ireland;M;Managers;Information and communication   ;Y30-49;3114;1;1.1866605091409213e-05;4574888;0.0006806724011604218;1;0;Young +14544;Ireland;M;Managers;Information and communication   ;Y50-64;904;1;3.4448975602549547e-06;4574888;0.00019760046584746993;0;1;Old +14545;Ireland;M;Managers;Information and communication   ;Y65-84;59;1;2.2483291599009106e-07;4574888;1.2896490580753016e-05;0;1;Old +14546;Ireland;M;Managers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14547;Ireland;M;Managers;Financial and insurance activities   ;Y15-29;554;1;2.1111429738730584e-06;4574888;0.00012109586070740967;1;0;Young +14548;Ireland;M;Managers;Financial and insurance activities   ;Y30-49;4923;1;1.8760210939308785e-05;4574888;0.0010760919174414762;1;0;Young +14549;Ireland;M;Managers;Financial and insurance activities   ;Y50-64;2030;1;7.735776601014998e-06;4574888;0.0004437267098123495;0;1;Old +14550;Ireland;M;Managers;Financial and insurance activities   ;Y65-84;102;1;3.886941937455812e-07;4574888;2.2295627783674704e-05;0;1;Old +14551;Ireland;M;Managers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14552;Ireland;M;Managers;Real estate activities   ;Y15-29;29;1;1.1051109430021426e-07;4574888;6.338952997319278e-06;1;0;Young +14553;Ireland;M;Managers;Real estate activities   ;Y30-49;303;1;1.1546503990677558e-06;4574888;6.623112959268074e-05;1;0;Young +14554;Ireland;M;Managers;Real estate activities   ;Y50-64;173;1;6.592558384116229e-07;4574888;3.781513339780121e-05;0;1;Old +14555;Ireland;M;Managers;Real estate activities   ;Y65-84;26;1;9.907891213122657e-08;4574888;5.683199238975905e-06;0;1;Old +14556;Ireland;M;Managers;Professional, scientific and technical activities   ;Y15-29;266;1;1.013653485650241e-06;4574888;5.81434999064458e-05;1;0;Young +14557;Ireland;M;Managers;Professional, scientific and technical activities   ;Y30-49;2450;1;9.336282104673274e-06;4574888;0.0005355322359804219;1;0;Young +14558;Ireland;M;Managers;Professional, scientific and technical activities   ;Y50-64;1075;1;4.096531943887253e-06;4574888;0.00023497843007304223;0;1;Old +14559;Ireland;M;Managers;Professional, scientific and technical activities   ;Y65-84;127;1;4.839623784871452e-07;4574888;2.776024243653615e-05;0;1;Old +14560;Ireland;M;Managers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14561;Ireland;M;Managers;Administrative and support service activities   ;Y15-29;350;1;1.3337545863818963e-06;4574888;7.650460514006027e-05;1;0;Young +14562;Ireland;M;Managers;Administrative and support service activities   ;Y30-49;2293;1;8.737997904496252e-06;4574888;0.000501214455960452;1;0;Young +14563;Ireland;M;Managers;Administrative and support service activities   ;Y50-64;921;1;3.5096799258792185e-06;4574888;0.00020131640381141572;0;1;Old +14564;Ireland;M;Managers;Administrative and support service activities   ;Y65-84;111;1;4.2299074025254424e-07;4574888;2.4262889058704826e-05;0;1;Old +14565;Ireland;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;78;1;2.9723673639367974e-07;4574888;1.7049597716927716e-05;1;0;Young +14566;Ireland;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;1777;1;6.77166257143037e-06;4574888;0.00038842480952539166;1;0;Young +14567;Ireland;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2060;1;7.850098422704875e-06;4574888;0.00045028424739578324;0;1;Old +14568;Ireland;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;86;1;3.277225555109802e-07;4574888;1.8798274405843377e-05;0;1;Old +14569;Ireland;M;Managers;Education   ;Y15-29;125;1;4.7634092370782007e-07;4574888;2.7323073264307235e-05;1;0;Young +14570;Ireland;M;Managers;Education   ;Y30-49;1321;1;5.033970881744242e-06;4574888;0.00028875023825719885;1;0;Young +14571;Ireland;M;Managers;Education   ;Y50-64;1248;1;4.755787782298876e-06;4574888;0.00027279356347084346;0;1;Old +14572;Ireland;M;Managers;Education   ;Y65-84;61;1;2.3245437076941619e-07;4574888;1.3333659752981931e-05;0;1;Old +14573;Ireland;M;Managers;Human health and social work activities   ;Y15-29;75;1;2.8580455422469204e-07;4574888;1.639384395858434e-05;1;0;Young +14574;Ireland;M;Managers;Human health and social work activities   ;Y30-49;1046;1;3.986020849587038e-06;4574888;0.00022863947707572294;1;0;Young +14575;Ireland;M;Managers;Human health and social work activities   ;Y50-64;765;1;2.9152064530918587e-06;4574888;0.0001672172083775603;0;1;Old +14576;Ireland;M;Managers;Human health and social work activities   ;Y65-84;45;1;1.7148273253481523e-07;4574888;9.836306375150605e-06;0;1;Old +14577;Ireland;M;Managers;Arts, entertainment and recreation   ;Y15-29;486;1;1.8520135113760045e-06;4574888;0.00010623210885162653;1;0;Young +14578;Ireland;M;Managers;Arts, entertainment and recreation   ;Y30-49;1545;1;5.887573817028656e-06;4574888;0.00033771318554683745;1;0;Young +14579;Ireland;M;Managers;Arts, entertainment and recreation   ;Y50-64;598;1;2.278814979018211e-06;4574888;0.00013071358249644582;0;1;Old +14580;Ireland;M;Managers;Arts, entertainment and recreation   ;Y65-84;71;1;2.705616446660418e-07;4574888;1.551950561412651e-05;0;1;Old +14581;Ireland;M;Managers;Other service activities   ;Y15-29;51;1;1.943470968727906e-07;4574888;1.1147813891837352e-05;1;0;Young +14582;Ireland;M;Managers;Other service activities   ;Y30-49;434;1;1.6538556871135514e-06;4574888;9.486571037367473e-05;1;0;Young +14583;Ireland;M;Managers;Other service activities   ;Y50-64;267;1;1.0174642130399036e-06;4574888;5.8362084492560255e-05;0;1;Old +14584;Ireland;M;Managers;Other service activities   ;Y65-84;38;1;1.448076408071773e-07;4574888;8.306214272349399e-06;0;1;Old +14585;Ireland;M;Managers;Other service activities   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14586;Ireland;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14587;Ireland;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14588;Ireland;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14589;Ireland;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;22;1;8.383600257257633e-08;4574888;4.808860894518074e-06;1;0;Young +14590;Ireland;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;26;1;9.907891213122657e-08;4574888;5.683199238975905e-06;0;1;Old +14591;Ireland;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14592;Ireland;M;Managers;Not stated   ;Y15-29;203;1;7.735776601014998e-07;4574888;4.437267098123495e-05;1;0;Young +14593;Ireland;M;Managers;Not stated   ;Y30-49;1019;1;3.8831312100661495e-06;4574888;0.00022273769325063258;1;0;Young +14594;Ireland;M;Managers;Not stated   ;Y50-64;796;1;3.033339002171398e-06;4574888;0.00017399333054710848;0;1;Old +14595;Ireland;M;Managers;Not stated   ;Y65-84;189;1;7.202274766462239e-07;4574888;4.131248677563254e-05;0;1;Old +14596;Ireland;M;Managers;Not stated   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14597;Ireland;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;60;1;2.2864364337975364e-07;4574888;1.3115075166867473e-05;1;0;Young +14598;Ireland;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;262;1;9.984105760915908e-07;4574888;5.726916156198797e-05;1;0;Young +14599;Ireland;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;126;1;4.801516510974826e-07;4574888;2.7541657850421692e-05;0;1;Old +14600;Ireland;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +14601;Ireland;M;Professionals;Mining and quarrying   ;Y15-29;62;1;2.3626509815907876e-07;4574888;1.3552244339096389e-05;1;0;Young +14602;Ireland;M;Professionals;Mining and quarrying   ;Y30-49;218;1;8.307385709464382e-07;4574888;4.765143977295182e-05;1;0;Young +14603;Ireland;M;Professionals;Mining and quarrying   ;Y50-64;139;1;5.296911071630959e-07;4574888;3.0383257469909647e-05;0;1;Old +14604;Ireland;M;Professionals;Mining and quarrying   ;Y65-84;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14605;Ireland;M;Professionals;Mining and quarrying   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14606;Ireland;M;Professionals;Manufacturing   ;Y15-29;2949;1;1.1237835072114891e-05;4574888;0.0006446059444515363;1;0;Young +14607;Ireland;M;Professionals;Manufacturing   ;Y30-49;14613;1;5.5686159345139e-05;4574888;0.003194176556890573;1;0;Young +14608;Ireland;M;Professionals;Manufacturing   ;Y50-64;3064;1;1.1676068721926085e-05;4574888;0.000669743171854699;0;1;Old +14609;Ireland;M;Professionals;Manufacturing   ;Y65-84;162;1;6.173378371253348e-07;4574888;3.541070295054218e-05;0;1;Old +14610;Ireland;M;Professionals;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14611;Ireland;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;345;1;1.3147009494335833e-06;4574888;7.541168220948797e-05;1;0;Young +14612;Ireland;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1313;1;5.003485062626942e-06;4574888;0.0002870015615682832;1;0;Young +14613;Ireland;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;568;1;2.1644931573283344e-06;4574888;0.00012415604491301208;0;1;Old +14614;Ireland;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +14615;Ireland;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;93;1;3.543976472386181e-07;4574888;2.0328366508644583e-05;1;0;Young +14616;Ireland;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;384;1;1.4633193176304232e-06;4574888;8.393648106795182e-05;1;0;Young +14617;Ireland;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;130;1;4.953945606561329e-07;4574888;2.8415996194879526e-05;0;1;Old +14618;Ireland;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +14619;Ireland;M;Professionals;Construction   ;Y15-29;1771;1;6.748798207092395e-06;4574888;0.0003871133020087049;1;0;Young +14620;Ireland;M;Professionals;Construction   ;Y30-49;5071;1;1.9324198592978844e-05;4574888;0.0011084424361864158;1;0;Young +14621;Ireland;M;Professionals;Construction   ;Y50-64;1347;1;5.133049793875469e-06;4574888;0.0002944334374961748;0;1;Old +14622;Ireland;M;Professionals;Construction   ;Y65-84;118;1;4.496658319801821e-07;4574888;2.5792981161506032e-05;0;1;Old +14623;Ireland;M;Professionals;Construction   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14624;Ireland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1664;1;6.341050376398501e-06;4574888;0.0003637247512944579;1;0;Young +14625;Ireland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7569;1;2.8843395612355922e-05;4574888;0.0016544667323003318;1;0;Young +14626;Ireland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2252;1;8.581758081520087e-06;4574888;0.0004922524879297592;0;1;Old +14627;Ireland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;203;1;7.735776601014998e-07;4574888;4.437267098123495e-05;0;1;Old +14628;Ireland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14629;Ireland;M;Professionals;Transportation and storage   ;Y15-29;264;1;1.006032030870916e-06;4574888;5.770633073421688e-05;1;0;Young +14630;Ireland;M;Professionals;Transportation and storage   ;Y30-49;1287;1;4.9044061504957155e-06;4574888;0.0002813183623293073;1;0;Young +14631;Ireland;M;Professionals;Transportation and storage   ;Y50-64;451;1;1.7186380527378147e-06;4574888;9.858164833762051e-05;0;1;Old +14632;Ireland;M;Professionals;Transportation and storage   ;Y65-84;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;0;1;Old +14633;Ireland;M;Professionals;Accommodation and food service activities   ;Y15-29;232;1;8.840887544017141e-07;4574888;5.071162397855423e-05;1;0;Young +14634;Ireland;M;Professionals;Accommodation and food service activities   ;Y30-49;725;1;2.7627773575053563e-06;4574888;0.00015847382493298196;1;0;Young +14635;Ireland;M;Professionals;Accommodation and food service activities   ;Y50-64;181;1;6.897416575289234e-07;4574888;3.956381008671688e-05;0;1;Old +14636;Ireland;M;Professionals;Accommodation and food service activities   ;Y65-84;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +14637;Ireland;M;Professionals;Information and communication   ;Y15-29;4695;1;1.7891365094465723e-05;4574888;0.0010262546318073797;1;0;Young +14638;Ireland;M;Professionals;Information and communication   ;Y30-49;18892;1;7.199226184550509e-05;4574888;0.004129500000874338;1;0;Young +14639;Ireland;M;Professionals;Information and communication   ;Y50-64;5015;1;1.911079785915774e-05;4574888;0.0010962016993640064;0;1;Old +14640;Ireland;M;Professionals;Information and communication   ;Y65-84;205;1;7.811991148808249e-07;4574888;4.4809840153463866e-05;0;1;Old +14641;Ireland;M;Professionals;Information and communication   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14642;Ireland;M;Professionals;Financial and insurance activities   ;Y15-29;2490;1;9.488711200259776e-06;4574888;0.0005442756194250001;1;0;Young +14643;Ireland;M;Professionals;Financial and insurance activities   ;Y30-49;8776;1;3.344294357167863e-05;4574888;0.0019182983277404825;1;0;Young +14644;Ireland;M;Professionals;Financial and insurance activities   ;Y50-64;1645;1;6.268646555994912e-06;4574888;0.00035957164415828324;0;1;Old +14645;Ireland;M;Professionals;Financial and insurance activities   ;Y65-84;98;1;3.7345128418693096e-07;4574888;2.1421289439216874e-05;0;1;Old +14646;Ireland;M;Professionals;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14647;Ireland;M;Professionals;Real estate activities   ;Y15-29;106;1;4.039371033042314e-07;4574888;2.3169966128132534e-05;1;0;Young +14648;Ireland;M;Professionals;Real estate activities   ;Y30-49;466;1;1.7757989635827531e-06;4574888;0.00010186041712933737;1;0;Young +14649;Ireland;M;Professionals;Real estate activities   ;Y50-64;148;1;5.63987653670059e-07;4574888;3.2350518744939765e-05;0;1;Old +14650;Ireland;M;Professionals;Real estate activities   ;Y65-84;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;0;1;Old +14651;Ireland;M;Professionals;Professional, scientific and technical activities   ;Y15-29;5835;1;2.223559431868104e-05;4574888;0.0012754410599778619;1;0;Young +14652;Ireland;M;Professionals;Professional, scientific and technical activities   ;Y30-49;17165;1;6.541113564355786e-05;4574888;0.0037520044206546697;1;0;Young +14653;Ireland;M;Professionals;Professional, scientific and technical activities   ;Y50-64;7174;1;2.733815829343921e-05;4574888;0.001568125820785121;0;1;Old +14654;Ireland;M;Professionals;Professional, scientific and technical activities   ;Y65-84;1122;1;4.275636131201393e-06;4574888;0.00024525190562042174;0;1;Old +14655;Ireland;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;0;1;Old +14656;Ireland;M;Professionals;Administrative and support service activities   ;Y15-29;629;1;2.3969475280977505e-06;4574888;0.000137489704665994;1;0;Young +14657;Ireland;M;Professionals;Administrative and support service activities   ;Y30-49;2028;1;7.728155146235673e-06;4574888;0.0004432895406401206;1;0;Young +14658;Ireland;M;Professionals;Administrative and support service activities   ;Y50-64;521;1;1.9853889700141942e-06;4574888;0.00011388256936563255;0;1;Old +14659;Ireland;M;Professionals;Administrative and support service activities   ;Y65-84;46;1;1.7529345992447778e-07;4574888;1.0054890961265063e-05;0;1;Old +14660;Ireland;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;411;1;1.5662089571513124e-06;4574888;8.98382648930422e-05;1;0;Young +14661;Ireland;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;3613;1;1.3768158058850831e-05;4574888;0.0007897461096315363;1;0;Young +14662;Ireland;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;1963;1;7.4804578659076065e-06;4574888;0.0004290815425426808;0;1;Old +14663;Ireland;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;105;1;4.0012637591456885e-07;4574888;2.2951381542018077e-05;0;1;Old +14664;Ireland;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14665;Ireland;M;Professionals;Education   ;Y15-29;4302;1;1.6393749230328336e-05;4574888;0.0009403508894643978;1;0;Young +14666;Ireland;M;Professionals;Education   ;Y30-49;14373;1;5.477158477161998e-05;4574888;0.003141716256223103;1;0;Young +14667;Ireland;M;Professionals;Education   ;Y50-64;7952;1;3.0302904202596683e-05;4574888;0.0017381846287821692;0;1;Old +14668;Ireland;M;Professionals;Education   ;Y65-84;462;1;1.760556054024103e-06;4574888;0.00010098607878487954;0;1;Old +14669;Ireland;M;Professionals;Education   ;Y_GE85;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14670;Ireland;M;Professionals;Human health and social work activities   ;Y15-29;1511;1;5.758009085780129e-06;4574888;0.00033028130961894586;1;0;Young +14671;Ireland;M;Professionals;Human health and social work activities   ;Y30-49;9211;1;3.5100609986181845e-05;4574888;0.0020133826227002717;1;0;Young +14672;Ireland;M;Professionals;Human health and social work activities   ;Y50-64;4256;1;1.6218455770403856e-05;4574888;0.0009302959985031328;0;1;Old +14673;Ireland;M;Professionals;Human health and social work activities   ;Y65-84;522;1;1.9891996974038564e-06;4574888;0.00011410115395174702;0;1;Old +14674;Ireland;M;Professionals;Human health and social work activities   ;Y_GE85;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14675;Ireland;M;Professionals;Arts, entertainment and recreation   ;Y15-29;657;1;2.5036478950083024e-06;4574888;0.00014361007307719882;1;0;Young +14676;Ireland;M;Professionals;Arts, entertainment and recreation   ;Y30-49;2592;1;9.877405394005356e-06;4574888;0.0005665712472086748;1;0;Young +14677;Ireland;M;Professionals;Arts, entertainment and recreation   ;Y50-64;1043;1;3.97458866741805e-06;4574888;0.00022798372331737959;0;1;Old +14678;Ireland;M;Professionals;Arts, entertainment and recreation   ;Y65-84;135;1;5.144481976044457e-07;4574888;2.9508919125451814e-05;0;1;Old +14679;Ireland;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14680;Ireland;M;Professionals;Other service activities   ;Y15-29;171;1;6.516343836322978e-07;4574888;3.7377964225572296e-05;1;0;Young +14681;Ireland;M;Professionals;Other service activities   ;Y30-49;1138;1;4.336607769435994e-06;4574888;0.00024874925899825306;1;0;Young +14682;Ireland;M;Professionals;Other service activities   ;Y50-64;1163;1;4.431875954177558e-06;4574888;0.0002542138736511145;0;1;Old +14683;Ireland;M;Professionals;Other service activities   ;Y65-84;742;1;2.82755972312962e-06;4574888;0.00016218976289692776;0;1;Old +14684;Ireland;M;Professionals;Other service activities   ;Y_GE85;23;1;8.764672996223889e-08;4574888;5.027445480632531e-06;0;1;Old +14685;Ireland;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +14686;Ireland;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14687;Ireland;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14688;Ireland;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +14689;Ireland;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;1;0;Young +14690;Ireland;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;0;1;Old +14691;Ireland;M;Professionals;Not stated   ;Y15-29;653;1;2.488404985449652e-06;4574888;0.000142735734732741;1;0;Young +14692;Ireland;M;Professionals;Not stated   ;Y30-49;2104;1;8.017770427850027e-06;4574888;0.0004599019691848194;1;0;Young +14693;Ireland;M;Professionals;Not stated   ;Y50-64;1313;1;5.003485062626942e-06;4574888;0.0002870015615682832;0;1;Old +14694;Ireland;M;Professionals;Not stated   ;Y65-84;347;1;1.3223224042129085e-06;4574888;7.584885138171689e-05;0;1;Old +14695;Ireland;M;Professionals;Not stated   ;Y_GE85;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14696;Ireland;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;324;1;1.2346756742506695e-06;4574888;7.082140590108436e-05;1;0;Young +14697;Ireland;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;386;1;1.4709407724097484e-06;4574888;8.437365024018074e-05;1;0;Young +14698;Ireland;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;154;1;5.868520180080343e-07;4574888;3.366202626162652e-05;0;1;Old +14699;Ireland;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;0;1;Old +14700;Ireland;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;45;1;1.7148273253481523e-07;4574888;9.836306375150605e-06;1;0;Young +14701;Ireland;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;173;1;6.592558384116229e-07;4574888;3.781513339780121e-05;1;0;Young +14702;Ireland;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;111;1;4.2299074025254424e-07;4574888;2.4262889058704826e-05;0;1;Old +14703;Ireland;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14704;Ireland;M;Technicians and associate professionals;Manufacturing   ;Y15-29;2756;1;1.0502364685910018e-05;4574888;0.000602419119331446;1;0;Young +14705;Ireland;M;Technicians and associate professionals;Manufacturing   ;Y30-49;12137;1;4.6250798328334496e-05;4574888;0.0026529611216711754;1;0;Young +14706;Ireland;M;Technicians and associate professionals;Manufacturing   ;Y50-64;2991;1;1.1397885622480719e-05;4574888;0.0006537864970683436;0;1;Old +14707;Ireland;M;Technicians and associate professionals;Manufacturing   ;Y65-84;161;1;6.135271097356723e-07;4574888;3.519211836442772e-05;0;1;Old +14708;Ireland;M;Technicians and associate professionals;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14709;Ireland;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;268;1;1.0212749404295662e-06;4574888;5.858066907867471e-05;1;0;Young +14710;Ireland;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1213;1;4.622412323660686e-06;4574888;0.0002651431029568374;1;0;Young +14711;Ireland;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;909;1;3.4639511972032677e-06;4574888;0.0001986933887780422;0;1;Old +14712;Ireland;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +14713;Ireland;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;111;1;4.2299074025254424e-07;4574888;2.4262889058704826e-05;1;0;Young +14714;Ireland;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;520;1;1.9815782426245316e-06;4574888;0.0001136639847795181;1;0;Young +14715;Ireland;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;309;1;1.1775147634057311e-06;4574888;6.754263710936749e-05;0;1;Old +14716;Ireland;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;0;1;Old +14717;Ireland;M;Technicians and associate professionals;Construction   ;Y15-29;743;1;2.8313704505192823e-06;4574888;0.0001624083474830422;1;0;Young +14718;Ireland;M;Technicians and associate professionals;Construction   ;Y30-49;3220;1;1.2270542194713446e-05;4574888;0.0007038423672885544;1;0;Young +14719;Ireland;M;Technicians and associate professionals;Construction   ;Y50-64;1158;1;4.412822317229245e-06;4574888;0.00025312095072054224;0;1;Old +14720;Ireland;M;Technicians and associate professionals;Construction   ;Y65-84;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;0;1;Old +14721;Ireland;M;Technicians and associate professionals;Construction   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14722;Ireland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2362;1;9.000938094382968e-06;4574888;0.0005162967924023495;1;0;Young +14723;Ireland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7666;1;2.921303616915319e-05;4574888;0.0016756694371534342;1;0;Young +14724;Ireland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2638;1;1.0052698853929834e-05;4574888;0.0005766261381699399;0;1;Old +14725;Ireland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;304;1;1.1584611264574184e-06;4574888;6.644971417879519e-05;0;1;Old +14726;Ireland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14727;Ireland;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;382;1;1.455697862851098e-06;4574888;8.349931189572291e-05;1;0;Young +14728;Ireland;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;1934;1;7.369946771607392e-06;4574888;0.00042274258954536157;1;0;Young +14729;Ireland;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;693;1;2.6408340810361544e-06;4574888;0.00015147911817731932;0;1;Old +14730;Ireland;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;35;1;1.3337545863818962e-07;4574888;7.650460514006026e-06;0;1;Old +14731;Ireland;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;3903;1;1.4873269001852973e-05;4574888;0.0008531356396047291;1;0;Young +14732;Ireland;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;8057;1;3.070303057851125e-05;4574888;0.0017611360103241872;1;0;Young +14733;Ireland;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;1219;1;4.645276687998661e-06;4574888;0.00026645461047352417;0;1;Old +14734;Ireland;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;50;1;1.9053636948312803e-07;4574888;1.0929229305722895e-05;0;1;Old +14735;Ireland;M;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14736;Ireland;M;Technicians and associate professionals;Information and communication   ;Y15-29;2126;1;8.101606430422605e-06;4574888;0.0004647108300793375;1;0;Young +14737;Ireland;M;Technicians and associate professionals;Information and communication   ;Y30-49;4724;1;1.8001876188765936e-05;4574888;0.001032593584804699;1;0;Young +14738;Ireland;M;Technicians and associate professionals;Information and communication   ;Y50-64;993;1;3.7840522979349228e-06;4574888;0.00021705449401165667;0;1;Old +14739;Ireland;M;Technicians and associate professionals;Information and communication   ;Y65-84;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +14740;Ireland;M;Technicians and associate professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14741;Ireland;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;1831;1;6.977441850472148e-06;4574888;0.0004002283771755724;1;0;Young +14742;Ireland;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;4652;1;1.7727503816710232e-05;4574888;0.001016855494604458;1;0;Young +14743;Ireland;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;1087;1;4.142260672563203e-06;4574888;0.00023760144510641572;0;1;Old +14744;Ireland;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;112;1;4.268014676422068e-07;4574888;2.4481473644819283e-05;0;1;Old +14745;Ireland;M;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14746;Ireland;M;Technicians and associate professionals;Real estate activities   ;Y15-29;188;1;7.164167492565614e-07;4574888;4.109390218951808e-05;1;0;Young +14747;Ireland;M;Technicians and associate professionals;Real estate activities   ;Y30-49;897;1;3.418222468527317e-06;4574888;0.00019607037374466872;1;0;Young +14748;Ireland;M;Technicians and associate professionals;Real estate activities   ;Y50-64;500;1;1.9053636948312803e-06;4574888;0.00010929229305722894;0;1;Old +14749;Ireland;M;Technicians and associate professionals;Real estate activities   ;Y65-84;107;1;4.07747830693894e-07;4574888;2.3388550714246992e-05;0;1;Old +14750;Ireland;M;Technicians and associate professionals;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14751;Ireland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;1422;1;5.418854348100161e-06;4574888;0.0003108272814547591;1;0;Young +14752;Ireland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;4211;1;1.6046973037869044e-05;4574888;0.0009204596921279822;1;0;Young +14753;Ireland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;1501;1;5.719901811883504e-06;4574888;0.0003280954637578013;0;1;Old +14754;Ireland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;136;1;5.182589249941082e-07;4574888;2.972750371156627e-05;0;1;Old +14755;Ireland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14756;Ireland;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;617;1;2.3512187994217997e-06;4574888;0.00013486668963262052;1;0;Young +14757;Ireland;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;1478;1;5.632255081921265e-06;4574888;0.00032306801827716876;1;0;Young +14758;Ireland;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;396;1;1.509048046306374e-06;4574888;8.655949610132533e-05;0;1;Old +14759;Ireland;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;31;1;1.1813254907953938e-07;4574888;6.776122169548194e-06;0;1;Old +14760;Ireland;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;1196;1;4.557629958036422e-06;4574888;0.00026142716499289164;1;0;Young +14761;Ireland;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;7286;1;2.7764959761081418e-05;4574888;0.00159260729442994;1;0;Young +14762;Ireland;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;4970;1;1.8939315126622926e-05;4574888;0.0010863653929888556;0;1;Old +14763;Ireland;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;103;1;3.9250492113524375e-07;4574888;2.2514212369789162e-05;0;1;Old +14764;Ireland;M;Technicians and associate professionals;Education   ;Y15-29;470;1;1.7910418731414035e-06;4574888;0.00010273475547379521;1;0;Young +14765;Ireland;M;Technicians and associate professionals;Education   ;Y30-49;1700;1;6.478236562426353e-06;4574888;0.0003715937963945784;1;0;Young +14766;Ireland;M;Technicians and associate professionals;Education   ;Y50-64;852;1;3.2467397359925016e-06;4574888;0.0001862340673695181;0;1;Old +14767;Ireland;M;Technicians and associate professionals;Education   ;Y65-84;30;1;1.1432182168987682e-07;4574888;6.557537583433737e-06;0;1;Old +14768;Ireland;M;Technicians and associate professionals;Education   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14769;Ireland;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;648;1;2.469351348501339e-06;4574888;0.0001416428118021687;1;0;Young +14770;Ireland;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;3344;1;1.2743072391031603e-05;4574888;0.0007309468559667471;1;0;Young +14771;Ireland;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;1510;1;5.754198358390466e-06;4574888;0.0003300627250328314;0;1;Old +14772;Ireland;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;65;1;2.4769728032806646e-07;4574888;1.4207998097439763e-05;0;1;Old +14773;Ireland;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;1201;1;4.576683594984735e-06;4574888;0.0002625200879234639;1;0;Young +14774;Ireland;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;1574;1;5.99808491132887e-06;4574888;0.0003440521385441567;1;0;Young +14775;Ireland;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;379;1;1.4442656806821104e-06;4574888;8.284355813737954e-05;0;1;Old +14776;Ireland;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;0;1;Old +14777;Ireland;M;Technicians and associate professionals;Other service activities   ;Y15-29;209;1;7.964420244394752e-07;4574888;4.5684178497921696e-05;1;0;Young +14778;Ireland;M;Technicians and associate professionals;Other service activities   ;Y30-49;603;1;2.297868615966524e-06;4574888;0.0001318065054270181;1;0;Young +14779;Ireland;M;Technicians and associate professionals;Other service activities   ;Y50-64;256;1;9.755462117536154e-07;4574888;5.595765404530122e-05;0;1;Old +14780;Ireland;M;Technicians and associate professionals;Other service activities   ;Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +14781;Ireland;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14782;Ireland;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +14783;Ireland;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14784;Ireland;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14785;Ireland;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;1;0;Young +14786;Ireland;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14787;Ireland;M;Technicians and associate professionals;Not stated   ;Y15-29;629;1;2.3969475280977505e-06;4574888;0.000137489704665994;1;0;Young +14788;Ireland;M;Technicians and associate professionals;Not stated   ;Y30-49;1658;1;6.318186012060525e-06;4574888;0.00036241324377777115;1;0;Young +14789;Ireland;M;Technicians and associate professionals;Not stated   ;Y50-64;863;1;3.2886577372787897e-06;4574888;0.00018863849781677715;0;1;Old +14790;Ireland;M;Technicians and associate professionals;Not stated   ;Y65-84;111;1;4.2299074025254424e-07;4574888;2.4262889058704826e-05;0;1;Old +14791;Ireland;M;Technicians and associate professionals;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14792;Ireland;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;36;1;1.3718618602785217e-07;4574888;7.869045100120484e-06;1;0;Young +14793;Ireland;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;79;1;3.010474637833423e-07;4574888;1.7268182303042174e-05;1;0;Young +14794;Ireland;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;52;1;1.9815782426245315e-07;4574888;1.136639847795181e-05;0;1;Old +14795;Ireland;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14796;Ireland;M;Clerical support workers;Mining and quarrying   ;Y15-29;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;1;0;Young +14797;Ireland;M;Clerical support workers;Mining and quarrying   ;Y30-49;37;1;1.4099691341751475e-07;4574888;8.087629686234941e-06;1;0;Young +14798;Ireland;M;Clerical support workers;Mining and quarrying   ;Y50-64;47;1;1.7910418731414036e-07;4574888;1.027347554737952e-05;0;1;Old +14799;Ireland;M;Clerical support workers;Manufacturing   ;Y15-29;789;1;3.0066639104437602e-06;4574888;0.00017246323844430727;1;0;Young +14800;Ireland;M;Clerical support workers;Manufacturing   ;Y30-49;2071;1;7.892016423991163e-06;4574888;0.0004526886778430423;1;0;Young +14801;Ireland;M;Clerical support workers;Manufacturing   ;Y50-64;612;1;2.332165162473487e-06;4574888;0.0001337737667020482;0;1;Old +14802;Ireland;M;Clerical support workers;Manufacturing   ;Y65-84;23;1;8.764672996223889e-08;4574888;5.027445480632531e-06;0;1;Old +14803;Ireland;M;Clerical support workers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14804;Ireland;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;127;1;4.839623784871452e-07;4574888;2.776024243653615e-05;1;0;Young +14805;Ireland;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;250;1;9.526818474156401e-07;4574888;5.464614652861447e-05;1;0;Young +14806;Ireland;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;190;1;7.240382040358865e-07;4574888;4.1531071361746996e-05;0;1;Old +14807;Ireland;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;0;1;Old +14808;Ireland;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;55;1;2.0959000643144082e-07;4574888;1.2022152236295184e-05;1;0;Young +14809;Ireland;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;112;1;4.268014676422068e-07;4574888;2.4481473644819283e-05;1;0;Young +14810;Ireland;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;52;1;1.9815782426245315e-07;4574888;1.136639847795181e-05;0;1;Old +14811;Ireland;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14812;Ireland;M;Clerical support workers;Construction   ;Y15-29;115;1;4.382336498111945e-07;4574888;2.5137227403162656e-05;1;0;Young +14813;Ireland;M;Clerical support workers;Construction   ;Y30-49;289;1;1.10130021561248e-06;4574888;6.317094538707833e-05;1;0;Young +14814;Ireland;M;Clerical support workers;Construction   ;Y50-64;163;1;6.211485645149974e-07;4574888;3.5629287536656635e-05;0;1;Old +14815;Ireland;M;Clerical support workers;Construction   ;Y65-84;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14816;Ireland;M;Clerical support workers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14817;Ireland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1281;1;4.88154178615774e-06;4574888;0.00028000685481262055;1;0;Young +14818;Ireland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1990;1;7.583347505428496e-06;4574888;0.0004349833263677712;1;0;Young +14819;Ireland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;657;1;2.5036478950083024e-06;4574888;0.00014361007307719882;0;1;Old +14820;Ireland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +14821;Ireland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14822;Ireland;M;Clerical support workers;Transportation and storage   ;Y15-29;1456;1;5.548419079348688e-06;4574888;0.0003182591573826507;1;0;Young +14823;Ireland;M;Clerical support workers;Transportation and storage   ;Y30-49;6164;1;2.3489323629880024e-05;4574888;0.0013473553888095184;1;0;Young +14824;Ireland;M;Clerical support workers;Transportation and storage   ;Y50-64;3326;1;1.2674479298017676e-05;4574888;0.0007270123334166869;0;1;Old +14825;Ireland;M;Clerical support workers;Transportation and storage   ;Y65-84;113;1;4.3061219503186933e-07;4574888;2.470005823093374e-05;0;1;Old +14826;Ireland;M;Clerical support workers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14827;Ireland;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;348;1;1.326133131602571e-06;4574888;7.606743596783135e-05;1;0;Young +14828;Ireland;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;417;1;1.5890733214892878e-06;4574888;9.114977240972894e-05;1;0;Young +14829;Ireland;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;94;1;3.582083746282807e-07;4574888;2.054695109475904e-05;0;1;Old +14830;Ireland;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;0;1;Old +14831;Ireland;M;Clerical support workers;Information and communication   ;Y15-29;1003;1;3.822159571831548e-06;4574888;0.00021924033987280126;1;0;Young +14832;Ireland;M;Clerical support workers;Information and communication   ;Y30-49;1255;1;4.782462874026513e-06;4574888;0.00027432365557364467;1;0;Young +14833;Ireland;M;Clerical support workers;Information and communication   ;Y50-64;323;1;1.2308649468610071e-06;4574888;7.060282131496989e-05;0;1;Old +14834;Ireland;M;Clerical support workers;Information and communication   ;Y65-84;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14835;Ireland;M;Clerical support workers;Financial and insurance activities   ;Y15-29;4007;1;1.526958465037788e-05;4574888;0.0008758684365606327;1;0;Young +14836;Ireland;M;Clerical support workers;Financial and insurance activities   ;Y30-49;5246;1;1.9991075886169794e-05;4574888;0.001146694738756446;1;0;Young +14837;Ireland;M;Clerical support workers;Financial and insurance activities   ;Y50-64;1299;1;4.950134879171666e-06;4574888;0.0002839413773626808;0;1;Old +14838;Ireland;M;Clerical support workers;Financial and insurance activities   ;Y65-84;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;0;1;Old +14839;Ireland;M;Clerical support workers;Financial and insurance activities   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14840;Ireland;M;Clerical support workers;Real estate activities   ;Y15-29;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;1;0;Young +14841;Ireland;M;Clerical support workers;Real estate activities   ;Y30-49;59;1;2.2483291599009106e-07;4574888;1.2896490580753016e-05;1;0;Young +14842;Ireland;M;Clerical support workers;Real estate activities   ;Y50-64;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;0;1;Old +14843;Ireland;M;Clerical support workers;Real estate activities   ;Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +14844;Ireland;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;652;1;2.4845942580599894e-06;4574888;0.00014251715014662654;1;0;Young +14845;Ireland;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;905;1;3.4487082876446173e-06;4574888;0.00019781905043358438;1;0;Young +14846;Ireland;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;392;1;1.4938051367477238e-06;4574888;8.56851577568675e-05;0;1;Old +14847;Ireland;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;48;1;1.829149147038029e-07;4574888;1.0492060133493978e-05;0;1;Old +14848;Ireland;M;Clerical support workers;Administrative and support service activities   ;Y15-29;759;1;2.8923420887538835e-06;4574888;0.00016590570086087353;1;0;Young +14849;Ireland;M;Clerical support workers;Administrative and support service activities   ;Y30-49;998;1;3.8031059348832353e-06;4574888;0.00021814741694222898;1;0;Young +14850;Ireland;M;Clerical support workers;Administrative and support service activities   ;Y50-64;281;1;1.0708143964951796e-06;4574888;6.142226869816266e-05;0;1;Old +14851;Ireland;M;Clerical support workers;Administrative and support service activities   ;Y65-84;35;1;1.3337545863818962e-07;4574888;7.650460514006026e-06;0;1;Old +14852;Ireland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;435;1;1.6576664145032138e-06;4574888;9.508429495978918e-05;1;0;Young +14853;Ireland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;2412;1;9.191474463866096e-06;4574888;0.0005272260217080724;1;0;Young +14854;Ireland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;1705;1;6.497290199374666e-06;4574888;0.0003726867193251507;0;1;Old +14855;Ireland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;0;1;Old +14856;Ireland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14857;Ireland;M;Clerical support workers;Education   ;Y15-29;163;1;6.211485645149974e-07;4574888;3.5629287536656635e-05;1;0;Young +14858;Ireland;M;Clerical support workers;Education   ;Y30-49;454;1;1.7300702349068025e-06;4574888;9.923740209596388e-05;1;0;Young +14859;Ireland;M;Clerical support workers;Education   ;Y50-64;283;1;1.0784358512745046e-06;4574888;6.185943787039158e-05;0;1;Old +14860;Ireland;M;Clerical support workers;Education   ;Y65-84;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;0;1;Old +14861;Ireland;M;Clerical support workers;Human health and social work activities   ;Y15-29;250;1;9.526818474156401e-07;4574888;5.464614652861447e-05;1;0;Young +14862;Ireland;M;Clerical support workers;Human health and social work activities   ;Y30-49;869;1;3.311522101616765e-06;4574888;0.0001899500053334639;1;0;Young +14863;Ireland;M;Clerical support workers;Human health and social work activities   ;Y50-64;438;1;1.6690985966722016e-06;4574888;9.574004871813256e-05;0;1;Old +14864;Ireland;M;Clerical support workers;Human health and social work activities   ;Y65-84;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;0;1;Old +14865;Ireland;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;720;1;2.7437237205570438e-06;4574888;0.00015738090200240968;1;0;Young +14866;Ireland;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;861;1;3.2810362824994645e-06;4574888;0.00018820132864454824;1;0;Young +14867;Ireland;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;318;1;1.2118113099126943e-06;4574888;6.950989838439761e-05;0;1;Old +14868;Ireland;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;23;1;8.764672996223889e-08;4574888;5.027445480632531e-06;0;1;Old +14869;Ireland;M;Clerical support workers;Other service activities   ;Y15-29;84;1;3.201011007316551e-07;4574888;1.836110523361446e-05;1;0;Young +14870;Ireland;M;Clerical support workers;Other service activities   ;Y30-49;254;1;9.679247569742904e-07;4574888;5.55204848730723e-05;1;0;Young +14871;Ireland;M;Clerical support workers;Other service activities   ;Y50-64;213;1;8.116849339981254e-07;4574888;4.6558516842379526e-05;0;1;Old +14872;Ireland;M;Clerical support workers;Other service activities   ;Y65-84;29;1;1.1051109430021426e-07;4574888;6.338952997319278e-06;0;1;Old +14873;Ireland;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;1;0;Young +14874;Ireland;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;95;1;3.6201910201794326e-07;4574888;2.0765535680873498e-05;1;0;Young +14875;Ireland;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;0;1;Old +14876;Ireland;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14877;Ireland;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14878;Ireland;M;Clerical support workers;Not stated   ;Y15-29;316;1;1.2041898551333691e-06;4574888;6.90727292121687e-05;1;0;Young +14879;Ireland;M;Clerical support workers;Not stated   ;Y30-49;583;1;2.221654068173273e-06;4574888;0.00012743481370472895;1;0;Young +14880;Ireland;M;Clerical support workers;Not stated   ;Y50-64;354;1;1.3489974959405465e-06;4574888;7.73789434845181e-05;0;1;Old +14881;Ireland;M;Clerical support workers;Not stated   ;Y65-84;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +14882;Ireland;M;Clerical support workers;Not stated   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14883;Ireland;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;134;1;5.106374702147831e-07;4574888;2.9290334539337356e-05;1;0;Young +14884;Ireland;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;459;1;1.7491238718551153e-06;4574888;0.00010033032502653617;1;0;Young +14885;Ireland;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;287;1;1.0936787608331548e-06;4574888;6.273377621484942e-05;0;1;Old +14886;Ireland;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +14887;Ireland;M;Service and sales workers;Mining and quarrying   ;Y15-29;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +14888;Ireland;M;Service and sales workers;Mining and quarrying   ;Y30-49;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;1;0;Young +14889;Ireland;M;Service and sales workers;Mining and quarrying   ;Y50-64;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;0;1;Old +14890;Ireland;M;Service and sales workers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14891;Ireland;M;Service and sales workers;Manufacturing   ;Y15-29;606;1;2.3093007981355115e-06;4574888;0.00013246225918536148;1;0;Young +14892;Ireland;M;Service and sales workers;Manufacturing   ;Y30-49;1681;1;6.405832742022764e-06;4574888;0.0003674406892584037;1;0;Young +14893;Ireland;M;Service and sales workers;Manufacturing   ;Y50-64;777;1;2.9609351817678095e-06;4574888;0.00016984022341093378;0;1;Old +14894;Ireland;M;Service and sales workers;Manufacturing   ;Y65-84;88;1;3.353440102903053e-07;4574888;1.9235443578072295e-05;0;1;Old +14895;Ireland;M;Service and sales workers;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14896;Ireland;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;1;0;Young +14897;Ireland;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;61;1;2.3245437076941619e-07;4574888;1.3333659752981931e-05;1;0;Young +14898;Ireland;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +14899;Ireland;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +14900;Ireland;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;1;0;Young +14901;Ireland;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;111;1;4.2299074025254424e-07;4574888;2.4262889058704826e-05;1;0;Young +14902;Ireland;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;59;1;2.2483291599009106e-07;4574888;1.2896490580753016e-05;0;1;Old +14903;Ireland;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14904;Ireland;M;Service and sales workers;Construction   ;Y15-29;183;1;6.973631123082485e-07;4574888;4.000097925894579e-05;1;0;Young +14905;Ireland;M;Service and sales workers;Construction   ;Y30-49;709;1;2.7018057192707556e-06;4574888;0.00015497647155515064;1;0;Young +14906;Ireland;M;Service and sales workers;Construction   ;Y50-64;347;1;1.3223224042129085e-06;4574888;7.584885138171689e-05;0;1;Old +14907;Ireland;M;Service and sales workers;Construction   ;Y65-84;38;1;1.448076408071773e-07;4574888;8.306214272349399e-06;0;1;Old +14908;Ireland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;16426;1;6.259500810259721e-05;4574888;0.003590470411516085;1;0;Young +14909;Ireland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;16586;1;6.320472448494323e-05;4574888;0.0036254439452943986;1;0;Young +14910;Ireland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;6048;1;2.3047279252679166e-05;4574888;0.0013219995768202412;0;1;Old +14911;Ireland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;751;1;2.861856269636583e-06;4574888;0.00016415702417195787;0;1;Old +14912;Ireland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +14913;Ireland;M;Service and sales workers;Transportation and storage   ;Y15-29;379;1;1.4442656806821104e-06;4574888;8.284355813737954e-05;1;0;Young +14914;Ireland;M;Service and sales workers;Transportation and storage   ;Y30-49;1187;1;4.52333341152946e-06;4574888;0.00025945990371786153;1;0;Young +14915;Ireland;M;Service and sales workers;Transportation and storage   ;Y50-64;492;1;1.8748778757139799e-06;4574888;0.00010754361636831328;0;1;Old +14916;Ireland;M;Service and sales workers;Transportation and storage   ;Y65-84;33;1;1.257540038588645e-07;4574888;7.21329134177711e-06;0;1;Old +14917;Ireland;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;6529;1;2.4880239127106858e-05;4574888;0.0014271387627412956;1;0;Young +14918;Ireland;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;5523;1;2.1046647373106322e-05;4574888;0.0012072426691101508;1;0;Young +14919;Ireland;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;1414;1;5.388368528982861e-06;4574888;0.0003090786047658434;0;1;Old +14920;Ireland;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;114;1;4.344229224215319e-07;4574888;2.4918642817048198e-05;0;1;Old +14921;Ireland;M;Service and sales workers;Accommodation and food service activities   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +14922;Ireland;M;Service and sales workers;Information and communication   ;Y15-29;461;1;1.7567453266344403e-06;4574888;0.00010076749419876509;1;0;Young +14923;Ireland;M;Service and sales workers;Information and communication   ;Y30-49;425;1;1.6195591406065882e-06;4574888;9.28984490986446e-05;1;0;Young +14924;Ireland;M;Service and sales workers;Information and communication   ;Y50-64;126;1;4.801516510974826e-07;4574888;2.7541657850421692e-05;0;1;Old +14925;Ireland;M;Service and sales workers;Information and communication   ;Y65-84;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +14926;Ireland;M;Service and sales workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14927;Ireland;M;Service and sales workers;Financial and insurance activities   ;Y15-29;525;1;2.0006318795728442e-06;4574888;0.00011475690771009038;1;0;Young +14928;Ireland;M;Service and sales workers;Financial and insurance activities   ;Y30-49;1046;1;3.986020849587038e-06;4574888;0.00022863947707572294;1;0;Young +14929;Ireland;M;Service and sales workers;Financial and insurance activities   ;Y50-64;419;1;1.5966947762686128e-06;4574888;9.158694158195786e-05;0;1;Old +14930;Ireland;M;Service and sales workers;Financial and insurance activities   ;Y65-84;36;1;1.3718618602785217e-07;4574888;7.869045100120484e-06;0;1;Old +14931;Ireland;M;Service and sales workers;Real estate activities   ;Y15-29;133;1;5.068267428251205e-07;4574888;2.90717499532229e-05;1;0;Young +14932;Ireland;M;Service and sales workers;Real estate activities   ;Y30-49;606;1;2.3093007981355115e-06;4574888;0.00013246225918536148;1;0;Young +14933;Ireland;M;Service and sales workers;Real estate activities   ;Y50-64;405;1;1.543344592813337e-06;4574888;8.852675737635544e-05;0;1;Old +14934;Ireland;M;Service and sales workers;Real estate activities   ;Y65-84;79;1;3.010474637833423e-07;4574888;1.7268182303042174e-05;0;1;Old +14935;Ireland;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;326;1;1.2422971290299947e-06;4574888;7.125857507331327e-05;1;0;Young +14936;Ireland;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;533;1;2.0311176986901446e-06;4574888;0.00011650558439900606;1;0;Young +14937;Ireland;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;238;1;9.069531187396895e-07;4574888;5.202313149524098e-05;0;1;Old +14938;Ireland;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;29;1;1.1051109430021426e-07;4574888;6.338952997319278e-06;0;1;Old +14939;Ireland;M;Service and sales workers;Administrative and support service activities   ;Y15-29;2440;1;9.298174830776648e-06;4574888;0.0005333463901192772;1;0;Young +14940;Ireland;M;Service and sales workers;Administrative and support service activities   ;Y30-49;5665;1;2.1587770662438405e-05;4574888;0.0012382816803384038;1;0;Young +14941;Ireland;M;Service and sales workers;Administrative and support service activities   ;Y50-64;2484;1;9.4658468359218e-06;4574888;0.0005429641119083134;0;1;Old +14942;Ireland;M;Service and sales workers;Administrative and support service activities   ;Y65-84;239;1;9.10763846129352e-07;4574888;5.2241716081355436e-05;0;1;Old +14943;Ireland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2853;1;1.0872005242707285e-05;4574888;0.0006236218241845484;1;0;Young +14944;Ireland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;9880;1;3.7649986609866096e-05;4574888;0.002159615710810844;1;0;Young +14945;Ireland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2761;1;1.0521418322858329e-05;4574888;0.0006035120422620183;0;1;Old +14946;Ireland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;100;1;3.8107273896625605e-07;4574888;2.185845861144579e-05;0;1;Old +14947;Ireland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14948;Ireland;M;Service and sales workers;Education   ;Y15-29;499;1;1.9015529674416177e-06;4574888;0.00010907370847111449;1;0;Young +14949;Ireland;M;Service and sales workers;Education   ;Y30-49;1886;1;7.187031856903589e-06;4574888;0.00041225052941186755;1;0;Young +14950;Ireland;M;Service and sales workers;Education   ;Y50-64;2010;1;7.659562053221746e-06;4574888;0.00043935501809006037;0;1;Old +14951;Ireland;M;Service and sales workers;Education   ;Y65-84;251;1;9.564925748053026e-07;4574888;5.486473111472893e-05;0;1;Old +14952;Ireland;M;Service and sales workers;Human health and social work activities   ;Y15-29;1088;1;4.146071399952866e-06;4574888;0.00023782002969253017;1;0;Young +14953;Ireland;M;Service and sales workers;Human health and social work activities   ;Y30-49;4512;1;1.7194001982157472e-05;4574888;0.000986253652548434;1;0;Young +14954;Ireland;M;Service and sales workers;Human health and social work activities   ;Y50-64;1941;1;7.39662186333503e-06;4574888;0.0004242726816481627;0;1;Old +14955;Ireland;M;Service and sales workers;Human health and social work activities   ;Y65-84;81;1;3.086689185626674e-07;4574888;1.770535147527109e-05;0;1;Old +14956;Ireland;M;Service and sales workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14957;Ireland;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;644;1;2.454108438942689e-06;4574888;0.00014076847345771088;1;0;Young +14958;Ireland;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;672;1;2.5608088058532406e-06;4574888;0.0001468888418689157;1;0;Young +14959;Ireland;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;402;1;1.5319124106443494e-06;4574888;8.787100361801207e-05;0;1;Old +14960;Ireland;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;42;1;1.6005055036582754e-07;4574888;9.18055261680723e-06;0;1;Old +14961;Ireland;M;Service and sales workers;Other service activities   ;Y15-29;719;1;2.739912993167381e-06;4574888;0.00015716231741629523;1;0;Young +14962;Ireland;M;Service and sales workers;Other service activities   ;Y30-49;1588;1;6.0514350947841465e-06;4574888;0.0003471123227497591;1;0;Young +14963;Ireland;M;Service and sales workers;Other service activities   ;Y50-64;690;1;2.6294018988671666e-06;4574888;0.00015082336441897594;0;1;Old +14964;Ireland;M;Service and sales workers;Other service activities   ;Y65-84;157;1;5.98284200177022e-07;4574888;3.431778001996989e-05;0;1;Old +14965;Ireland;M;Service and sales workers;Other service activities   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14966;Ireland;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;1;0;Young +14967;Ireland;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;58;1;2.2102218860042852e-07;4574888;1.2677905994638557e-05;1;0;Young +14968;Ireland;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;0;1;Old +14969;Ireland;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +14970;Ireland;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +14971;Ireland;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;1;0;Young +14972;Ireland;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +14973;Ireland;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14974;Ireland;M;Service and sales workers;Not stated   ;Y15-29;789;1;3.0066639104437602e-06;4574888;0.00017246323844430727;1;0;Young +14975;Ireland;M;Service and sales workers;Not stated   ;Y30-49;1607;1;6.123838915187735e-06;4574888;0.00035126542988593384;1;0;Young +14976;Ireland;M;Service and sales workers;Not stated   ;Y50-64;1094;1;4.168935764290841e-06;4574888;0.00023913153720921693;0;1;Old +14977;Ireland;M;Service and sales workers;Not stated   ;Y65-84;196;1;7.469025683738619e-07;4574888;4.284257887843375e-05;0;1;Old +14978;Ireland;M;Service and sales workers;Not stated   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14979;Ireland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;3393;1;1.2929798033125067e-05;4574888;0.0007416575006863556;1;0;Young +14980;Ireland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;26533;1;0.00010111002982991672;4574888;0.005799704823374911;1;0;Young +14981;Ireland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;28655;1;0.00010919639335078067;4574888;0.006263541315109791;0;1;Old +14982;Ireland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;11940;1;4.550008503257097e-05;4574888;0.002609899958206627;0;1;Old +14983;Ireland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;358;1;1.3642404054991967e-06;4574888;7.825328182897593e-05;0;1;Old +14984;Ireland;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +14985;Ireland;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;1;0;Young +14986;Ireland;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +14987;Ireland;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;42;1;1.6005055036582754e-07;4574888;9.18055261680723e-06;1;0;Young +14988;Ireland;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;155;1;5.906627453976969e-07;4574888;3.3880610847740975e-05;1;0;Young +14989;Ireland;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;87;1;3.3153328290064277e-07;4574888;1.9016858991957838e-05;0;1;Old +14990;Ireland;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +14991;Ireland;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +14992;Ireland;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +14993;Ireland;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +14994;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +14995;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;1;0;Young +14996;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +14997;Ireland;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;48;1;1.829149147038029e-07;4574888;1.0492060133493978e-05;1;0;Young +14998;Ireland;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;141;1;5.37312561942421e-07;4574888;3.082042664213856e-05;1;0;Young +14999;Ireland;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;59;1;2.2483291599009106e-07;4574888;1.2896490580753016e-05;0;1;Old +15000;Ireland;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15001;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;91;1;3.46776192459293e-07;4574888;1.9891197336415668e-05;1;0;Young +15002;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;254;1;9.679247569742904e-07;4574888;5.55204848730723e-05;1;0;Young +15003;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;118;1;4.496658319801821e-07;4574888;2.5792981161506032e-05;0;1;Old +15004;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +15005;Ireland;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;1;0;Young +15006;Ireland;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;1;0;Young +15007;Ireland;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +15008;Ireland;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +15009;Ireland;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;53;1;2.019685516521157e-07;4574888;1.1584983064066267e-05;1;0;Young +15010;Ireland;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;156;1;5.944734727873595e-07;4574888;3.409919543385543e-05;1;0;Young +15011;Ireland;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;103;1;3.9250492113524375e-07;4574888;2.2514212369789162e-05;0;1;Old +15012;Ireland;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15013;Ireland;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +15014;Ireland;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;1;0;Young +15015;Ireland;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +15016;Ireland;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15017;Ireland;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +15018;Ireland;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +15019;Ireland;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +15020;Ireland;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;1;0;Young +15021;Ireland;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;1;0;Young +15022;Ireland;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +15023;Ireland;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;1;0;Young +15024;Ireland;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;48;1;1.829149147038029e-07;4574888;1.0492060133493978e-05;1;0;Young +15025;Ireland;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;0;1;Old +15026;Ireland;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15027;Ireland;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;705;1;2.686562809712105e-06;4574888;0.0001541021332106928;1;0;Young +15028;Ireland;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;2258;1;8.604622445858061e-06;4574888;0.0004935639954464459;1;0;Young +15029;Ireland;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;931;1;3.547787199775844e-06;4574888;0.00020350224967256029;0;1;Old +15030;Ireland;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;68;1;2.591294624970541e-07;4574888;1.4863751855783136e-05;0;1;Old +15031;Ireland;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15032;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;1;0;Young +15033;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;133;1;5.068267428251205e-07;4574888;2.90717499532229e-05;1;0;Young +15034;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;105;1;4.0012637591456885e-07;4574888;2.2951381542018077e-05;0;1;Old +15035;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15036;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15037;Ireland;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;41;1;1.56239822976165e-07;4574888;8.961968030692773e-06;1;0;Young +15038;Ireland;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;165;1;6.287700192943225e-07;4574888;3.606645670888555e-05;1;0;Young +15039;Ireland;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;149;1;5.677983810597215e-07;4574888;3.256910333105422e-05;0;1;Old +15040;Ireland;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +15041;Ireland;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;22;1;8.383600257257633e-08;4574888;4.808860894518074e-06;1;0;Young +15042;Ireland;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;125;1;4.7634092370782007e-07;4574888;2.7323073264307235e-05;1;0;Young +15043;Ireland;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;125;1;4.7634092370782007e-07;4574888;2.7323073264307235e-05;0;1;Old +15044;Ireland;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +15045;Ireland;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;405;1;1.543344592813337e-06;4574888;8.852675737635544e-05;1;0;Young +15046;Ireland;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;859;1;3.2734148277201393e-06;4574888;0.00018776415947231932;1;0;Young +15047;Ireland;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;499;1;1.9015529674416177e-06;4574888;0.00010907370847111449;0;1;Old +15048;Ireland;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;35;1;1.3337545863818962e-07;4574888;7.650460514006026e-06;0;1;Old +15049;Ireland;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +15050;Ireland;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;42;1;1.6005055036582754e-07;4574888;9.18055261680723e-06;1;0;Young +15051;Ireland;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;54;1;2.0577927904177827e-07;4574888;1.1803567650180726e-05;0;1;Old +15052;Ireland;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15053;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +15054;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;11;1;4.1918001286288165e-08;4574888;2.404430447259037e-06;1;0;Young +15055;Ireland;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +15056;Ireland;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +15057;Ireland;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +15058;Ireland;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15059;Ireland;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;189;1;7.202274766462239e-07;4574888;4.131248677563254e-05;1;0;Young +15060;Ireland;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;936;1;3.5668408367241566e-06;4574888;0.00020459517260313257;1;0;Young +15061;Ireland;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;852;1;3.2467397359925016e-06;4574888;0.0001862340673695181;0;1;Old +15062;Ireland;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;232;1;8.840887544017141e-07;4574888;5.071162397855423e-05;0;1;Old +15063;Ireland;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y_GE85;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +15064;Ireland;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;269;1;1.0250856678192288e-06;4574888;5.879925366478917e-05;1;0;Young +15065;Ireland;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;503;1;1.916795877000268e-06;4574888;0.00010994804681557232;1;0;Young +15066;Ireland;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;240;1;9.145745735190145e-07;4574888;5.2460300667469894e-05;0;1;Old +15067;Ireland;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;0;1;Old +15068;Ireland;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;173;1;6.592558384116229e-07;4574888;3.781513339780121e-05;1;0;Young +15069;Ireland;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;380;1;1.448076408071773e-06;4574888;8.306214272349399e-05;1;0;Young +15070;Ireland;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;324;1;1.2346756742506695e-06;4574888;7.082140590108436e-05;0;1;Old +15071;Ireland;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +15072;Ireland;M;Craft and related trades workers;Manufacturing   ;Y15-29;8650;1;3.296279192058115e-05;4574888;0.0018907566698900607;1;0;Young +15073;Ireland;M;Craft and related trades workers;Manufacturing   ;Y30-49;25580;1;9.74784066275683e-05;4574888;0.005591393712807833;1;0;Young +15074;Ireland;M;Craft and related trades workers;Manufacturing   ;Y50-64;9328;1;3.554646509077237e-05;4574888;0.002038957019275663;0;1;Old +15075;Ireland;M;Craft and related trades workers;Manufacturing   ;Y65-84;451;1;1.7186380527378147e-06;4574888;9.858164833762051e-05;0;1;Old +15076;Ireland;M;Craft and related trades workers;Manufacturing   ;Y_GE85;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +15077;Ireland;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;446;1;1.699584415789502e-06;4574888;9.748872540704822e-05;1;0;Young +15078;Ireland;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;904;1;3.4448975602549547e-06;4574888;0.00019760046584746993;1;0;Young +15079;Ireland;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;574;1;2.1873575216663095e-06;4574888;0.00012546755242969884;0;1;Old +15080;Ireland;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;0;1;Old +15081;Ireland;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;144;1;5.487447441114087e-07;4574888;3.1476180400481935e-05;1;0;Young +15082;Ireland;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;377;1;1.4366442259027852e-06;4574888;8.240638896515063e-05;1;0;Young +15083;Ireland;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;164;1;6.2495929190466e-07;4574888;3.584787212277109e-05;0;1;Old +15084;Ireland;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +15085;Ireland;M;Craft and related trades workers;Construction   ;Y15-29;24542;1;9.352287159709856e-05;4574888;0.005364502912421025;1;0;Young +15086;Ireland;M;Craft and related trades workers;Construction   ;Y30-49;46220;1;0.00017613181995020354;4574888;0.010102979570210243;1;0;Young +15087;Ireland;M;Craft and related trades workers;Construction   ;Y50-64;16777;1;6.393257341636877e-05;4574888;0.00366719360124226;0;1;Old +15088;Ireland;M;Craft and related trades workers;Construction   ;Y65-84;835;1;3.181957370368238e-06;4574888;0.00018251812940557233;0;1;Old +15089;Ireland;M;Craft and related trades workers;Construction   ;Y_GE85;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;0;1;Old +15090;Ireland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;7740;1;2.9495029995988218e-05;4574888;0.001691844696525904;1;0;Young +15091;Ireland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;14120;1;5.3807470742035354e-05;4574888;0.003086414355936145;1;0;Young +15092;Ireland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5630;1;2.1454395203800215e-05;4574888;0.0012306312198243979;0;1;Old +15093;Ireland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;494;1;1.8824993304933049e-06;4574888;0.0001079807855405422;0;1;Old +15094;Ireland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;0;1;Old +15095;Ireland;M;Craft and related trades workers;Transportation and storage   ;Y15-29;711;1;2.7094271740500803e-06;4574888;0.00015541364072737954;1;0;Young +15096;Ireland;M;Craft and related trades workers;Transportation and storage   ;Y30-49;1683;1;6.413454196802089e-06;4574888;0.00036787785843063264;1;0;Young +15097;Ireland;M;Craft and related trades workers;Transportation and storage   ;Y50-64;846;1;3.2238753716545264e-06;4574888;0.00018492255985283137;0;1;Old +15098;Ireland;M;Craft and related trades workers;Transportation and storage   ;Y65-84;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;0;1;Old +15099;Ireland;M;Craft and related trades workers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15100;Ireland;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;206;1;7.850098422704875e-07;4574888;4.5028424739578324e-05;1;0;Young +15101;Ireland;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;513;1;1.9549031508968934e-06;4574888;0.0001121338926767169;1;0;Young +15102;Ireland;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;251;1;9.564925748053026e-07;4574888;5.486473111472893e-05;0;1;Old +15103;Ireland;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;0;1;Old +15104;Ireland;M;Craft and related trades workers;Information and communication   ;Y15-29;503;1;1.916795877000268e-06;4574888;0.00010994804681557232;1;0;Young +15105;Ireland;M;Craft and related trades workers;Information and communication   ;Y30-49;1482;1;5.647497991479915e-06;4574888;0.00032394235662162657;1;0;Young +15106;Ireland;M;Craft and related trades workers;Information and communication   ;Y50-64;351;1;1.3375653137715587e-06;4574888;7.672318972617472e-05;0;1;Old +15107;Ireland;M;Craft and related trades workers;Information and communication   ;Y65-84;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +15108;Ireland;M;Craft and related trades workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15109;Ireland;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;91;1;3.46776192459293e-07;4574888;1.9891197336415668e-05;1;0;Young +15110;Ireland;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;299;1;1.1394074895091056e-06;4574888;6.535679124822291e-05;1;0;Young +15111;Ireland;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;89;1;3.3915473767996787e-07;4574888;1.9454028164186753e-05;0;1;Old +15112;Ireland;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +15113;Ireland;M;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15114;Ireland;M;Craft and related trades workers;Real estate activities   ;Y15-29;45;1;1.7148273253481523e-07;4574888;9.836306375150605e-06;1;0;Young +15115;Ireland;M;Craft and related trades workers;Real estate activities   ;Y30-49;90;1;3.4296546506963047e-07;4574888;1.967261275030121e-05;1;0;Young +15116;Ireland;M;Craft and related trades workers;Real estate activities   ;Y50-64;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +15117;Ireland;M;Craft and related trades workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15118;Ireland;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;1361;1;5.186399977330745e-06;4574888;0.00029749362170177716;1;0;Young +15119;Ireland;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2640;1;1.006032030870916e-05;4574888;0.0005770633073421688;1;0;Young +15120;Ireland;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;936;1;3.5668408367241566e-06;4574888;0.00020459517260313257;0;1;Old +15121;Ireland;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;48;1;1.829149147038029e-07;4574888;1.0492060133493978e-05;0;1;Old +15122;Ireland;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;633;1;2.412190437656401e-06;4574888;0.00013836404301045184;1;0;Young +15123;Ireland;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;1865;1;7.107006581720675e-06;4574888;0.000407660253103464;1;0;Young +15124;Ireland;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;572;1;2.1797360668869848e-06;4574888;0.0001250303832574699;0;1;Old +15125;Ireland;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;22;1;8.383600257257633e-08;4574888;4.808860894518074e-06;0;1;Old +15126;Ireland;M;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15127;Ireland;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;245;1;9.336282104673273e-07;4574888;5.355322359804218e-05;1;0;Young +15128;Ireland;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;958;1;3.650676839296733e-06;4574888;0.00020940403349765065;1;0;Young +15129;Ireland;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;987;1;3.761187933596947e-06;4574888;0.00021574298649496994;0;1;Old +15130;Ireland;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;0;1;Old +15131;Ireland;M;Craft and related trades workers;Education   ;Y15-29;254;1;9.679247569742904e-07;4574888;5.55204848730723e-05;1;0;Young +15132;Ireland;M;Craft and related trades workers;Education   ;Y30-49;468;1;1.7834204183620783e-06;4574888;0.00010229758630156628;1;0;Young +15133;Ireland;M;Craft and related trades workers;Education   ;Y50-64;350;1;1.3337545863818963e-06;4574888;7.650460514006027e-05;0;1;Old +15134;Ireland;M;Craft and related trades workers;Education   ;Y65-84;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +15135;Ireland;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;128;1;4.877731058768077e-07;4574888;2.797882702265061e-05;1;0;Young +15136;Ireland;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;619;1;2.358840254201125e-06;4574888;0.00013530385880484942;1;0;Young +15137;Ireland;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;560;1;2.134007338211034e-06;4574888;0.00012240736822409642;0;1;Old +15138;Ireland;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;23;1;8.764672996223889e-08;4574888;5.027445480632531e-06;0;1;Old +15139;Ireland;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;81;1;3.086689185626674e-07;4574888;1.770535147527109e-05;1;0;Young +15140;Ireland;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;263;1;1.0022213034812534e-06;4574888;5.7487746148102424e-05;1;0;Young +15141;Ireland;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;172;1;6.554451110219605e-07;4574888;3.759654881168675e-05;0;1;Old +15142;Ireland;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;0;1;Old +15143;Ireland;M;Craft and related trades workers;Other service activities   ;Y15-29;198;1;7.54524023153187e-07;4574888;4.327974805066266e-05;1;0;Young +15144;Ireland;M;Craft and related trades workers;Other service activities   ;Y30-49;839;1;3.197200279926888e-06;4574888;0.00018339246775003016;1;0;Young +15145;Ireland;M;Craft and related trades workers;Other service activities   ;Y50-64;440;1;1.6767200514515266e-06;4574888;9.617721789036147e-05;0;1;Old +15146;Ireland;M;Craft and related trades workers;Other service activities   ;Y65-84;50;1;1.9053636948312803e-07;4574888;1.0929229305722895e-05;0;1;Old +15147;Ireland;M;Craft and related trades workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15148;Ireland;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +15149;Ireland;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15150;Ireland;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15151;Ireland;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;1;0;Young +15152;Ireland;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15153;Ireland;M;Craft and related trades workers;Not stated   ;Y15-29;4117;1;1.5688764663240763e-05;4574888;0.0008999127410332231;1;0;Young +15154;Ireland;M;Craft and related trades workers;Not stated   ;Y30-49;9590;1;3.654487566686396e-05;4574888;0.002096226180837651;1;0;Young +15155;Ireland;M;Craft and related trades workers;Not stated   ;Y50-64;5719;1;2.1793549941480185e-05;4574888;0.0012500852479885847;0;1;Old +15156;Ireland;M;Craft and related trades workers;Not stated   ;Y65-84;402;1;1.5319124106443494e-06;4574888;8.787100361801207e-05;0;1;Old +15157;Ireland;M;Craft and related trades workers;Not stated   ;Y_GE85;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +15158;Ireland;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;554;1;2.1111429738730584e-06;4574888;0.00012109586070740967;1;0;Young +15159;Ireland;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;770;1;2.9342600900401717e-06;4574888;0.00016831013130813257;1;0;Young +15160;Ireland;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;324;1;1.2346756742506695e-06;4574888;7.082140590108436e-05;0;1;Old +15161;Ireland;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;21;1;8.002527518291377e-08;4574888;4.590276308403615e-06;0;1;Old +15162;Ireland;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;349;1;1.3299438589922337e-06;4574888;7.62860205539458e-05;1;0;Young +15163;Ireland;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;1606;1;6.1200281877980725e-06;4574888;0.0003510468452998194;1;0;Young +15164;Ireland;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;992;1;3.78024157054526e-06;4574888;0.00021683590942554222;0;1;Old +15165;Ireland;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;47;1;1.7910418731414036e-07;4574888;1.027347554737952e-05;0;1;Old +15166;Ireland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;6428;1;2.449535566075094e-05;4574888;0.0014050617195437353;1;0;Young +15167;Ireland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;19840;1;7.56048314109052e-05;4574888;0.004336718188510845;1;0;Young +15168;Ireland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;6827;1;2.60158358892263e-05;4574888;0.001492276969403404;0;1;Old +15169;Ireland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;218;1;8.307385709464382e-07;4574888;4.765143977295182e-05;0;1;Old +15170;Ireland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +15171;Ireland;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;30;1;1.1432182168987682e-07;4574888;6.557537583433737e-06;1;0;Young +15172;Ireland;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;192;1;7.316596588152116e-07;4574888;4.196824053397591e-05;1;0;Young +15173;Ireland;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;131;1;4.992052880457954e-07;4574888;2.8634580780993983e-05;0;1;Old +15174;Ireland;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +15175;Ireland;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;320;1;1.2194327646920193e-06;4574888;6.994706755662653e-05;1;0;Young +15176;Ireland;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1489;1;5.674173083207552e-06;4574888;0.0003254724487244278;1;0;Young +15177;Ireland;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;542;1;2.065414245197108e-06;4574888;0.00011847284567403617;0;1;Old +15178;Ireland;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;0;1;Old +15179;Ireland;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;1243;1;4.736734145350563e-06;4574888;0.00027170064054027115;1;0;Young +15180;Ireland;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;4086;1;1.557063211416122e-05;4574888;0.0008931366188636749;1;0;Young +15181;Ireland;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;1664;1;6.341050376398501e-06;4574888;0.0003637247512944579;0;1;Old +15182;Ireland;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;72;1;2.7437237205570434e-07;4574888;1.5738090200240967e-05;0;1;Old +15183;Ireland;M;Plant and machine operators, and assemblers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15184;Ireland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2465;1;9.393443015518211e-06;4574888;0.0005388110047721387;1;0;Young +15185;Ireland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7943;1;3.0268607656089718e-05;4574888;0.001736217367507139;1;0;Young +15186;Ireland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3301;1;1.2579211113276113e-05;4574888;0.0007215477187638255;0;1;Old +15187;Ireland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;180;1;6.859309301392609e-07;4574888;3.934522550060242e-05;0;1;Old +15188;Ireland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +15189;Ireland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;2450;1;9.336282104673274e-06;4574888;0.0005355322359804219;1;0;Young +15190;Ireland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;20751;1;7.907640406288779e-05;4574888;0.0045358487464611155;1;0;Young +15191;Ireland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;12821;1;4.885733586286369e-05;4574888;0.0028024729785734647;0;1;Old +15192;Ireland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;1349;1;5.140671248654794e-06;4574888;0.0002948706066684037;0;1;Old +15193;Ireland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +15194;Ireland;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;237;1;9.031423913500269e-07;4574888;5.180454690912652e-05;1;0;Young +15195;Ireland;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;415;1;1.5814518667099626e-06;4574888;9.071260323750003e-05;1;0;Young +15196;Ireland;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;124;1;4.725301963181575e-07;4574888;2.7104488678192777e-05;0;1;Old +15197;Ireland;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +15198;Ireland;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;98;1;3.7345128418693096e-07;4574888;2.1421289439216874e-05;1;0;Young +15199;Ireland;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;258;1;9.831676665329406e-07;4574888;5.6394823217530137e-05;1;0;Young +15200;Ireland;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;102;1;3.886941937455812e-07;4574888;2.2295627783674704e-05;0;1;Old +15201;Ireland;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +15202;Ireland;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;1;0;Young +15203;Ireland;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;53;1;2.019685516521157e-07;4574888;1.1584983064066267e-05;1;0;Young +15204;Ireland;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;0;1;Old +15205;Ireland;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15206;Ireland;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;1;0;Young +15207;Ireland;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;25;1;9.526818474156401e-08;4574888;5.464614652861447e-06;1;0;Young +15208;Ireland;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;13;1;4.953945606561329e-08;4574888;2.8415996194879524e-06;0;1;Old +15209;Ireland;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;135;1;5.144481976044457e-07;4574888;2.9508919125451814e-05;1;0;Young +15210;Ireland;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;376;1;1.4328334985131229e-06;4574888;8.218780437903616e-05;1;0;Young +15211;Ireland;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;159;1;6.059056549563472e-07;4574888;3.4754949192198805e-05;0;1;Old +15212;Ireland;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15213;Ireland;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;859;1;3.2734148277201393e-06;4574888;0.00018776415947231932;1;0;Young +15214;Ireland;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2376;1;9.054288277838245e-06;4574888;0.000519356976607952;1;0;Young +15215;Ireland;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;1087;1;4.142260672563203e-06;4574888;0.00023760144510641572;0;1;Old +15216;Ireland;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;76;1;2.896152816143546e-07;4574888;1.6612428544698798e-05;0;1;Old +15217;Ireland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;151;1;5.754198358390467e-07;4574888;3.300627250328314e-05;1;0;Young +15218;Ireland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;829;1;3.1590930060302626e-06;4574888;0.00018120662188888558;1;0;Young +15219;Ireland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;877;1;3.3420079207340657e-06;4574888;0.00019169868202237956;0;1;Old +15220;Ireland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;35;1;1.3337545863818962e-07;4574888;7.650460514006026e-06;0;1;Old +15221;Ireland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15222;Ireland;M;Plant and machine operators, and assemblers;Education   ;Y15-29;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;1;0;Young +15223;Ireland;M;Plant and machine operators, and assemblers;Education   ;Y30-49;149;1;5.677983810597215e-07;4574888;3.256910333105422e-05;1;0;Young +15224;Ireland;M;Plant and machine operators, and assemblers;Education   ;Y50-64;181;1;6.897416575289234e-07;4574888;3.956381008671688e-05;0;1;Old +15225;Ireland;M;Plant and machine operators, and assemblers;Education   ;Y65-84;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +15226;Ireland;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;80;1;3.0485819117300483e-07;4574888;1.748676688915663e-05;1;0;Young +15227;Ireland;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;353;1;1.3451867685508839e-06;4574888;7.716035889840363e-05;1;0;Young +15228;Ireland;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;501;1;1.9091744222209427e-06;4574888;0.0001095108776433434;0;1;Old +15229;Ireland;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;54;1;2.0577927904177827e-07;4574888;1.1803567650180726e-05;0;1;Old +15230;Ireland;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;34;1;1.2956473124852705e-07;4574888;7.431875927891568e-06;1;0;Young +15231;Ireland;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;100;1;3.8107273896625605e-07;4574888;2.185845861144579e-05;1;0;Young +15232;Ireland;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;88;1;3.353440102903053e-07;4574888;1.9235443578072295e-05;0;1;Old +15233;Ireland;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;10;1;3.8107273896625604e-08;4574888;2.185845861144579e-06;0;1;Old +15234;Ireland;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;43;1;1.638612777554901e-07;4574888;9.399137202921688e-06;1;0;Young +15235;Ireland;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;202;1;7.697669327118372e-07;4574888;4.415408639512049e-05;1;0;Young +15236;Ireland;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;127;1;4.839623784871452e-07;4574888;2.776024243653615e-05;0;1;Old +15237;Ireland;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;0;1;Old +15238;Ireland;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;1;0;Young +15239;Ireland;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +15240;Ireland;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;22;1;8.383600257257633e-08;4574888;4.808860894518074e-06;1;0;Young +15241;Ireland;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;24;1;9.145745735190145e-08;4574888;5.246030066746989e-06;0;1;Old +15242;Ireland;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +15243;Ireland;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;966;1;3.6811626584140334e-06;4574888;0.0002111527101865663;1;0;Young +15244;Ireland;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;3240;1;1.2346756742506696e-05;4574888;0.0007082140590108435;1;0;Young +15245;Ireland;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2275;1;8.669404811482325e-06;4574888;0.0004972799334103917;0;1;Old +15246;Ireland;M;Plant and machine operators, and assemblers;Not stated   ;Y65-84;199;1;7.583347505428495e-07;4574888;4.349833263677712e-05;0;1;Old +15247;Ireland;M;Plant and machine operators, and assemblers;Not stated   ;Y_GE85;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15248;Ireland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;1907;1;7.267057132086503e-06;4574888;0.0004168408057202712;1;0;Young +15249;Ireland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;3130;1;1.1927576729643815e-05;4574888;0.0006841697545382532;1;0;Young +15250;Ireland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;1660;1;6.32580746683985e-06;4574888;0.0003628504129500001;0;1;Old +15251;Ireland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;191;1;7.27848931425549e-07;4574888;4.1749655947861453e-05;0;1;Old +15252;Ireland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15253;Ireland;M;Elementary occupations;Mining and quarrying   ;Y15-29;72;1;2.7437237205570434e-07;4574888;1.5738090200240967e-05;1;0;Young +15254;Ireland;M;Elementary occupations;Mining and quarrying   ;Y30-49;194;1;7.392811135945367e-07;4574888;4.2405409706204826e-05;1;0;Young +15255;Ireland;M;Elementary occupations;Mining and quarrying   ;Y50-64;180;1;6.859309301392609e-07;4574888;3.934522550060242e-05;0;1;Old +15256;Ireland;M;Elementary occupations;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15257;Ireland;M;Elementary occupations;Mining and quarrying   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15258;Ireland;M;Elementary occupations;Manufacturing   ;Y15-29;2366;1;9.016181003941619e-06;4574888;0.0005171711307468073;1;0;Young +15259;Ireland;M;Elementary occupations;Manufacturing   ;Y30-49;6044;1;2.3032036343120515e-05;4574888;0.0013211252384757834;1;0;Young +15260;Ireland;M;Elementary occupations;Manufacturing   ;Y50-64;2183;1;8.31881789163337e-06;4574888;0.00047717015148786155;0;1;Old +15261;Ireland;M;Elementary occupations;Manufacturing   ;Y65-84;77;1;2.9342600900401714e-07;4574888;1.683101313081326e-05;0;1;Old +15262;Ireland;M;Elementary occupations;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15263;Ireland;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;38;1;1.448076408071773e-07;4574888;8.306214272349399e-06;1;0;Young +15264;Ireland;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;203;1;7.735776601014998e-07;4574888;4.437267098123495e-05;1;0;Young +15265;Ireland;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;124;1;4.725301963181575e-07;4574888;2.7104488678192777e-05;0;1;Old +15266;Ireland;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15267;Ireland;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;616;1;2.347408072032137e-06;4574888;0.00013464810504650607;1;0;Young +15268;Ireland;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1228;1;4.679573234505625e-06;4574888;0.0002684218717485543;1;0;Young +15269;Ireland;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;503;1;1.916795877000268e-06;4574888;0.00010994804681557232;0;1;Old +15270;Ireland;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;22;1;8.383600257257633e-08;4574888;4.808860894518074e-06;0;1;Old +15271;Ireland;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15272;Ireland;M;Elementary occupations;Construction   ;Y15-29;5093;1;1.940803459555142e-05;4574888;0.001113251297080934;1;0;Young +15273;Ireland;M;Elementary occupations;Construction   ;Y30-49;13548;1;5.162773467514837e-05;4574888;0.0029613839726786756;1;0;Young +15274;Ireland;M;Elementary occupations;Construction   ;Y50-64;5721;1;2.180117139625951e-05;4574888;0.0012505224171608135;0;1;Old +15275;Ireland;M;Elementary occupations;Construction   ;Y65-84;172;1;6.554451110219605e-07;4574888;3.759654881168675e-05;0;1;Old +15276;Ireland;M;Elementary occupations;Construction   ;Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15277;Ireland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4079;1;1.5543957022433584e-05;4574888;0.0008916065267608737;1;0;Young +15278;Ireland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;6161;1;2.3477891447711034e-05;4574888;0.001346699635051175;1;0;Young +15279;Ireland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1843;1;7.023170579148099e-06;4574888;0.0004028513922089459;0;1;Old +15280;Ireland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;92;1;3.5058691984895557e-07;4574888;2.0109781922530125e-05;0;1;Old +15281;Ireland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15282;Ireland;M;Elementary occupations;Transportation and storage   ;Y15-29;1356;1;5.1673463403824324e-06;4574888;0.0002964006987712049;1;0;Young +15283;Ireland;M;Elementary occupations;Transportation and storage   ;Y30-49;3239;1;1.2342946015117033e-05;4574888;0.0007079954744247291;1;0;Young +15284;Ireland;M;Elementary occupations;Transportation and storage   ;Y50-64;1177;1;4.485226137632834e-06;4574888;0.0002572740578567169;0;1;Old +15285;Ireland;M;Elementary occupations;Transportation and storage   ;Y65-84;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;0;1;Old +15286;Ireland;M;Elementary occupations;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15287;Ireland;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;3731;1;1.4217823890831013e-05;4574888;0.0008155390907930424;1;0;Young +15288;Ireland;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;4252;1;1.620321286084521e-05;4574888;0.000929421660158675;1;0;Young +15289;Ireland;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;1126;1;4.2908790407600436e-06;4574888;0.0002461262439648796;0;1;Old +15290;Ireland;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;54;1;2.0577927904177827e-07;4574888;1.1803567650180726e-05;0;1;Old +15291;Ireland;M;Elementary occupations;Information and communication   ;Y15-29;368;1;1.4023476793958223e-06;4574888;8.04391276901205e-05;1;0;Young +15292;Ireland;M;Elementary occupations;Information and communication   ;Y30-49;403;1;1.5357231380340118e-06;4574888;8.808958820412652e-05;1;0;Young +15293;Ireland;M;Elementary occupations;Information and communication   ;Y50-64;119;1;4.5347655936984473e-07;4574888;2.601156574762049e-05;0;1;Old +15294;Ireland;M;Elementary occupations;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +15295;Ireland;M;Elementary occupations;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15296;Ireland;M;Elementary occupations;Financial and insurance activities   ;Y15-29;66;1;2.51508007717729e-07;4574888;1.442658268355422e-05;1;0;Young +15297;Ireland;M;Elementary occupations;Financial and insurance activities   ;Y30-49;158;1;6.020949275666846e-07;4574888;3.453636460608435e-05;1;0;Young +15298;Ireland;M;Elementary occupations;Financial and insurance activities   ;Y50-64;182;1;6.93552384918586e-07;4574888;3.9782394672831336e-05;0;1;Old +15299;Ireland;M;Elementary occupations;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15300;Ireland;M;Elementary occupations;Real estate activities   ;Y15-29;28;1;1.067003669105517e-07;4574888;6.120368411204821e-06;1;0;Young +15301;Ireland;M;Elementary occupations;Real estate activities   ;Y30-49;83;1;3.1629037334199253e-07;4574888;1.8142520647500004e-05;1;0;Young +15302;Ireland;M;Elementary occupations;Real estate activities   ;Y50-64;49;1;1.8672564209346548e-07;4574888;1.0710644719608437e-05;0;1;Old +15303;Ireland;M;Elementary occupations;Real estate activities   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +15304;Ireland;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;231;1;8.802780270120515e-07;4574888;5.049303939243977e-05;1;0;Young +15305;Ireland;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;515;1;1.9625246056762186e-06;4574888;0.00011257106184894581;1;0;Young +15306;Ireland;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;259;1;9.869783939226032e-07;4574888;5.6613407803644594e-05;0;1;Old +15307;Ireland;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;0;1;Old +15308;Ireland;M;Elementary occupations;Administrative and support service activities   ;Y15-29;1676;1;6.386779105074451e-06;4574888;0.0003663477663278314;1;0;Young +15309;Ireland;M;Elementary occupations;Administrative and support service activities   ;Y30-49;3411;1;1.2998391126138994e-05;4574888;0.0007455920232364158;1;0;Young +15310;Ireland;M;Elementary occupations;Administrative and support service activities   ;Y50-64;1282;1;4.8853525135474025e-06;4574888;0.000280225439398735;0;1;Old +15311;Ireland;M;Elementary occupations;Administrative and support service activities   ;Y65-84;68;1;2.591294624970541e-07;4574888;1.4863751855783136e-05;0;1;Old +15312;Ireland;M;Elementary occupations;Administrative and support service activities   ;Y_GE85;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15313;Ireland;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;226;1;8.612243900637387e-07;4574888;4.940011646186748e-05;1;0;Young +15314;Ireland;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;2208;1;8.414086076374934e-06;4574888;0.00048263476614072303;1;0;Young +15315;Ireland;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;2452;1;9.343903559452599e-06;4574888;0.0005359694051526508;0;1;Old +15316;Ireland;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;83;1;3.1629037334199253e-07;4574888;1.8142520647500004e-05;0;1;Old +15317;Ireland;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15318;Ireland;M;Elementary occupations;Education   ;Y15-29;248;1;9.45060392636315e-07;4574888;5.4208977356385554e-05;1;0;Young +15319;Ireland;M;Elementary occupations;Education   ;Y30-49;607;1;2.313111525525174e-06;4574888;0.00013268084377147593;1;0;Young +15320;Ireland;M;Elementary occupations;Education   ;Y50-64;619;1;2.358840254201125e-06;4574888;0.00013530385880484942;0;1;Old +15321;Ireland;M;Elementary occupations;Education   ;Y65-84;34;1;1.2956473124852705e-07;4574888;7.431875927891568e-06;0;1;Old +15322;Ireland;M;Elementary occupations;Human health and social work activities   ;Y15-29;515;1;1.9625246056762186e-06;4574888;0.00011257106184894581;1;0;Young +15323;Ireland;M;Elementary occupations;Human health and social work activities   ;Y30-49;1811;1;6.901227302678897e-06;4574888;0.0003958566854532832;1;0;Young +15324;Ireland;M;Elementary occupations;Human health and social work activities   ;Y50-64;1218;1;4.641465960608999e-06;4574888;0.0002662360258874097;0;1;Old +15325;Ireland;M;Elementary occupations;Human health and social work activities   ;Y65-84;29;1;1.1051109430021426e-07;4574888;6.338952997319278e-06;0;1;Old +15326;Ireland;M;Elementary occupations;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15327;Ireland;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;206;1;7.850098422704875e-07;4574888;4.5028424739578324e-05;1;0;Young +15328;Ireland;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;386;1;1.4709407724097484e-06;4574888;8.437365024018074e-05;1;0;Young +15329;Ireland;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;270;1;1.0288963952088914e-06;4574888;5.901783825090363e-05;0;1;Old +15330;Ireland;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;0;1;Old +15331;Ireland;M;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15332;Ireland;M;Elementary occupations;Other service activities   ;Y15-29;224;1;8.536029352844136e-07;4574888;4.8962947289638566e-05;1;0;Young +15333;Ireland;M;Elementary occupations;Other service activities   ;Y30-49;585;1;2.2292755229525977e-06;4574888;0.00012787198287695785;1;0;Young +15334;Ireland;M;Elementary occupations;Other service activities   ;Y50-64;296;1;1.127975307340118e-06;4574888;6.470103748987953e-05;0;1;Old +15335;Ireland;M;Elementary occupations;Other service activities   ;Y65-84;34;1;1.2956473124852705e-07;4574888;7.431875927891568e-06;0;1;Old +15336;Ireland;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;1;0;Young +15337;Ireland;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +15338;Ireland;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;4574888;6.557537583433736e-07;0;1;Old +15339;Ireland;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +15340;Ireland;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;8;1;3.048581911730048e-08;4574888;1.7486766889156632e-06;1;0;Young +15341;Ireland;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15342;Ireland;M;Elementary occupations;Not stated   ;Y15-29;1594;1;6.074299459122121e-06;4574888;0.00034842383026644587;1;0;Young +15343;Ireland;M;Elementary occupations;Not stated   ;Y30-49;3832;1;1.4602707357186932e-05;4574888;0.0008376161339906026;1;0;Young +15344;Ireland;M;Elementary occupations;Not stated   ;Y50-64;2764;1;1.0532850505027317e-05;4574888;0.0006041677960203616;0;1;Old +15345;Ireland;M;Elementary occupations;Not stated   ;Y65-84;191;1;7.27848931425549e-07;4574888;4.1749655947861453e-05;0;1;Old +15346;Ireland;M;Elementary occupations;Not stated   ;Y_GE85;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +15347;Ireland;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;107;1;4.07747830693894e-07;4574888;2.3388550714246992e-05;1;0;Young +15348;Ireland;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;234;1;8.917102091810392e-07;4574888;5.114879315078314e-05;1;0;Young +15349;Ireland;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;205;1;7.811991148808249e-07;4574888;4.4809840153463866e-05;0;1;Old +15350;Ireland;M;Not stated;Agriculture, forestry and fishing   ;Y65-84;94;1;3.582083746282807e-07;4574888;2.054695109475904e-05;0;1;Old +15351;Ireland;M;Not stated;Agriculture, forestry and fishing   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +15352;Ireland;M;Not stated;Mining and quarrying   ;Y15-29;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;1;0;Young +15353;Ireland;M;Not stated;Mining and quarrying   ;Y30-49;36;1;1.3718618602785217e-07;4574888;7.869045100120484e-06;1;0;Young +15354;Ireland;M;Not stated;Mining and quarrying   ;Y50-64;35;1;1.3337545863818962e-07;4574888;7.650460514006026e-06;0;1;Old +15355;Ireland;M;Not stated;Mining and quarrying   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15356;Ireland;M;Not stated;Manufacturing   ;Y15-29;580;1;2.210221886004285e-06;4574888;0.00012677905994638557;1;0;Young +15357;Ireland;M;Not stated;Manufacturing   ;Y30-49;1238;1;4.71768050840225e-06;4574888;0.00027060771760969884;1;0;Young +15358;Ireland;M;Not stated;Manufacturing   ;Y50-64;437;1;1.665287869282539e-06;4574888;9.552146413201809e-05;0;1;Old +15359;Ireland;M;Not stated;Manufacturing   ;Y65-84;32;1;1.2194327646920193e-07;4574888;6.994706755662653e-06;0;1;Old +15360;Ireland;M;Not stated;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;0;1;Old +15361;Ireland;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;20;1;7.621454779325121e-08;4574888;4.371691722289158e-06;1;0;Young +15362;Ireland;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;45;1;1.7148273253481523e-07;4574888;9.836306375150605e-06;1;0;Young +15363;Ireland;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;37;1;1.4099691341751475e-07;4574888;8.087629686234941e-06;0;1;Old +15364;Ireland;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +15365;Ireland;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;56;1;2.134007338211034e-07;4574888;1.2240736822409642e-05;1;0;Young +15366;Ireland;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;87;1;3.3153328290064277e-07;4574888;1.9016858991957838e-05;1;0;Young +15367;Ireland;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;0;1;Old +15368;Ireland;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;0;1;Old +15369;Ireland;M;Not stated;Construction   ;Y15-29;416;1;1.5852625940996252e-06;4574888;9.093118782361448e-05;1;0;Young +15370;Ireland;M;Not stated;Construction   ;Y30-49;707;1;2.6941842644914304e-06;4574888;0.0001545393023829217;1;0;Young +15371;Ireland;M;Not stated;Construction   ;Y50-64;273;1;1.040328577377879e-06;4574888;5.9673592009247e-05;0;1;Old +15372;Ireland;M;Not stated;Construction   ;Y65-84;34;1;1.2956473124852705e-07;4574888;7.431875927891568e-06;0;1;Old +15373;Ireland;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;749;1;2.854234814857258e-06;4574888;0.00016371985499972894;1;0;Young +15374;Ireland;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;982;1;3.7421342966486346e-06;4574888;0.00021465006356439766;1;0;Young +15375;Ireland;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;377;1;1.4366442259027852e-06;4574888;8.240638896515063e-05;0;1;Old +15376;Ireland;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;60;1;2.2864364337975364e-07;4574888;1.3115075166867473e-05;0;1;Old +15377;Ireland;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15378;Ireland;M;Not stated;Transportation and storage   ;Y15-29;106;1;4.039371033042314e-07;4574888;2.3169966128132534e-05;1;0;Young +15379;Ireland;M;Not stated;Transportation and storage   ;Y30-49;356;1;1.3566189507198715e-06;4574888;7.781611265674701e-05;1;0;Young +15380;Ireland;M;Not stated;Transportation and storage   ;Y50-64;220;1;8.383600257257633e-07;4574888;4.8088608945180736e-05;0;1;Old +15381;Ireland;M;Not stated;Transportation and storage   ;Y65-84;31;1;1.1813254907953938e-07;4574888;6.776122169548194e-06;0;1;Old +15382;Ireland;M;Not stated;Accommodation and food service activities   ;Y15-29;332;1;1.2651614933679701e-06;4574888;7.257008259000002e-05;1;0;Young +15383;Ireland;M;Not stated;Accommodation and food service activities   ;Y30-49;419;1;1.5966947762686128e-06;4574888;9.158694158195786e-05;1;0;Young +15384;Ireland;M;Not stated;Accommodation and food service activities   ;Y50-64;111;1;4.2299074025254424e-07;4574888;2.4262889058704826e-05;0;1;Old +15385;Ireland;M;Not stated;Accommodation and food service activities   ;Y65-84;19;1;7.240382040358865e-08;4574888;4.1531071361746994e-06;0;1;Old +15386;Ireland;M;Not stated;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15387;Ireland;M;Not stated;Information and communication   ;Y15-29;110;1;4.1918001286288164e-07;4574888;2.4044304472590368e-05;1;0;Young +15388;Ireland;M;Not stated;Information and communication   ;Y30-49;181;1;6.897416575289234e-07;4574888;3.956381008671688e-05;1;0;Young +15389;Ireland;M;Not stated;Information and communication   ;Y50-64;65;1;2.4769728032806646e-07;4574888;1.4207998097439763e-05;0;1;Old +15390;Ireland;M;Not stated;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15391;Ireland;M;Not stated;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15392;Ireland;M;Not stated;Financial and insurance activities   ;Y15-29;88;1;3.353440102903053e-07;4574888;1.9235443578072295e-05;1;0;Young +15393;Ireland;M;Not stated;Financial and insurance activities   ;Y30-49;131;1;4.992052880457954e-07;4574888;2.8634580780993983e-05;1;0;Young +15394;Ireland;M;Not stated;Financial and insurance activities   ;Y50-64;42;1;1.6005055036582754e-07;4574888;9.18055261680723e-06;0;1;Old +15395;Ireland;M;Not stated;Financial and insurance activities   ;Y65-84;7;1;2.6675091727637924e-08;4574888;1.5300921028012052e-06;0;1;Old +15396;Ireland;M;Not stated;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15397;Ireland;M;Not stated;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;1;0;Young +15398;Ireland;M;Not stated;Real estate activities   ;Y30-49;16;1;6.097163823460096e-08;4574888;3.4973533778313263e-06;1;0;Young +15399;Ireland;M;Not stated;Real estate activities   ;Y50-64;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +15400;Ireland;M;Not stated;Professional, scientific and technical activities   ;Y15-29;120;1;4.572872867595073e-07;4574888;2.6230150333734947e-05;1;0;Young +15401;Ireland;M;Not stated;Professional, scientific and technical activities   ;Y30-49;176;1;6.706880205806106e-07;4574888;3.847088715614459e-05;1;0;Young +15402;Ireland;M;Not stated;Professional, scientific and technical activities   ;Y50-64;103;1;3.9250492113524375e-07;4574888;2.2514212369789162e-05;0;1;Old +15403;Ireland;M;Not stated;Professional, scientific and technical activities   ;Y65-84;17;1;6.478236562426352e-08;4574888;3.715937963945784e-06;0;1;Old +15404;Ireland;M;Not stated;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15405;Ireland;M;Not stated;Administrative and support service activities   ;Y15-29;153;1;5.830412906183718e-07;4574888;3.344344167551205e-05;1;0;Young +15406;Ireland;M;Not stated;Administrative and support service activities   ;Y30-49;274;1;1.0441393047675416e-06;4574888;5.989217659536146e-05;1;0;Young +15407;Ireland;M;Not stated;Administrative and support service activities   ;Y50-64;129;1;4.915838332664703e-07;4574888;2.8197411608765068e-05;0;1;Old +15408;Ireland;M;Not stated;Administrative and support service activities   ;Y65-84;12;1;4.5728728675950726e-08;4574888;2.6230150333734944e-06;0;1;Old +15409;Ireland;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;71;1;2.705616446660418e-07;4574888;1.551950561412651e-05;1;0;Young +15410;Ireland;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;238;1;9.069531187396895e-07;4574888;5.202313149524098e-05;1;0;Young +15411;Ireland;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;224;1;8.536029352844136e-07;4574888;4.8962947289638566e-05;0;1;Old +15412;Ireland;M;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;18;1;6.859309301392609e-08;4574888;3.934522550060242e-06;0;1;Old +15413;Ireland;M;Not stated;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15414;Ireland;M;Not stated;Education   ;Y15-29;1229;1;4.683383961895287e-06;4574888;0.00026864045633466873;1;0;Young +15415;Ireland;M;Not stated;Education   ;Y30-49;551;1;2.099710791704071e-06;4574888;0.0001204401069490663;1;0;Young +15416;Ireland;M;Not stated;Education   ;Y50-64;226;1;8.612243900637387e-07;4574888;4.940011646186748e-05;0;1;Old +15417;Ireland;M;Not stated;Education   ;Y65-84;15;1;5.716091084493841e-08;4574888;3.2787687917168684e-06;0;1;Old +15418;Ireland;M;Not stated;Education   ;Y_GE85;2;1;7.62145477932512e-09;4574888;4.371691722289158e-07;0;1;Old +15419;Ireland;M;Not stated;Human health and social work activities   ;Y15-29;154;1;5.868520180080343e-07;4574888;3.366202626162652e-05;1;0;Young +15420;Ireland;M;Not stated;Human health and social work activities   ;Y30-49;274;1;1.0441393047675416e-06;4574888;5.989217659536146e-05;1;0;Young +15421;Ireland;M;Not stated;Human health and social work activities   ;Y50-64;167;1;6.363914740736477e-07;4574888;3.6503625881114465e-05;0;1;Old +15422;Ireland;M;Not stated;Human health and social work activities   ;Y65-84;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;0;1;Old +15423;Ireland;M;Not stated;Arts, entertainment and recreation   ;Y15-29;74;1;2.819938268350295e-07;4574888;1.6175259372469883e-05;1;0;Young +15424;Ireland;M;Not stated;Arts, entertainment and recreation   ;Y30-49;96;1;3.658298294076058e-07;4574888;2.0984120266987956e-05;1;0;Young +15425;Ireland;M;Not stated;Arts, entertainment and recreation   ;Y50-64;63;1;2.400758255487413e-07;4574888;1.3770828925210846e-05;0;1;Old +15426;Ireland;M;Not stated;Arts, entertainment and recreation   ;Y65-84;9;1;3.429654650696304e-08;4574888;1.967261275030121e-06;0;1;Old +15427;Ireland;M;Not stated;Other service activities   ;Y15-29;44;1;1.6767200514515266e-07;4574888;9.617721789036148e-06;1;0;Young +15428;Ireland;M;Not stated;Other service activities   ;Y30-49;91;1;3.46776192459293e-07;4574888;1.9891197336415668e-05;1;0;Young +15429;Ireland;M;Not stated;Other service activities   ;Y50-64;57;1;2.1721146121076594e-07;4574888;1.2459321408524099e-05;0;1;Old +15430;Ireland;M;Not stated;Other service activities   ;Y65-84;14;1;5.335018345527585e-08;4574888;3.0601842056024104e-06;0;1;Old +15431;Ireland;M;Not stated;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15432;Ireland;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;4574888;8.743383444578316e-07;1;0;Young +15433;Ireland;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;0;1;Old +15434;Ireland;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;4574888;2.185845861144579e-07;1;0;Young +15435;Ireland;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;6;1;2.2864364337975363e-08;4574888;1.3115075166867472e-06;1;0;Young +15436;Ireland;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;4574888;1.0929229305722895e-06;0;1;Old +15437;Ireland;M;Not stated;Not stated   ;Y15-29;48010;1;0.00018295302197769952;4574888;0.010494245979355122;1;0;Young +15438;Ireland;M;Not stated;Not stated   ;Y30-49;48655;1;0.00018541094114403188;4574888;0.010635233037398948;1;0;Young +15439;Ireland;M;Not stated;Not stated   ;Y50-64;21424;1;8.164102359613069e-05;4574888;0.004682956172916146;0;1;Old +15440;Ireland;M;Not stated;Not stated   ;Y65-84;2551;1;9.721165571029191e-06;4574888;0.0005576092791779821;0;1;Old +15441;Ireland;M;Not stated;Not stated   ;Y_GE85;74;1;2.819938268350295e-07;4574888;1.6175259372469883e-05;0;1;Old +15442;Liechtenstein;F;Not applicable;Not applicable  ;Y15-29;1192;1;4.542387048477772e-06;35721;0.033369726491419616;1;0;Young +15443;Liechtenstein;F;Not applicable;Not applicable  ;Y30-49;1271;1;4.843434512261115e-06;35721;0.03558131071358585;1;0;Young +15444;Liechtenstein;F;Not applicable;Not applicable  ;Y50-64;1554;1;5.921870363535619e-06;35721;0.04350382128159906;0;1;Old +15445;Liechtenstein;F;Not applicable;Not applicable  ;Y65-84;2290;1;8.726565722327264e-06;35721;0.06410794770583131;0;1;Old +15446;Liechtenstein;F;Not applicable;Not applicable  ;Y_GE85;376;1;1.4328334985131229e-06;35721;0.01052602110803169;0;1;Old +15447;Liechtenstein;F;Not applicable;Not applicable  ;Y_LT15;2829;1;1.0780547785355384e-05;35721;0.07919711094314269;0;1;Old +15448;Liechtenstein;F;Managers;Manufacturing   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15449;Liechtenstein;F;Managers;Manufacturing   ;Y30-49;41;1;1.56239822976165e-07;35721;0.0011477842165672854;1;0;Young +15450;Liechtenstein;F;Managers;Manufacturing   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15451;Liechtenstein;F;Managers;Construction   ;Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15452;Liechtenstein;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15453;Liechtenstein;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;20;1;7.621454779325121e-08;35721;0.0005598947397889197;1;0;Young +15454;Liechtenstein;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;16;1;6.097163823460096e-08;35721;0.00044791579183113577;0;1;Old +15455;Liechtenstein;F;Managers;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15456;Liechtenstein;F;Managers;Accommodation and food service activities   ;Y15-29;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15457;Liechtenstein;F;Managers;Accommodation and food service activities   ;Y30-49;28;1;1.067003669105517e-07;35721;0.0007838526357044876;1;0;Young +15458;Liechtenstein;F;Managers;Accommodation and food service activities   ;Y50-64;15;1;5.716091084493841e-08;35721;0.00041992105484168975;0;1;Old +15459;Liechtenstein;F;Managers;Accommodation and food service activities   ;Y65-84;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15460;Liechtenstein;F;Managers;Information and communication   ;Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15461;Liechtenstein;F;Managers;Financial and insurance activities   ;Y30-49;17;1;6.478236562426352e-08;35721;0.00047591052882058174;1;0;Young +15462;Liechtenstein;F;Managers;Financial and insurance activities   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15463;Liechtenstein;F;Managers;Professional, scientific and technical activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15464;Liechtenstein;F;Managers;Professional, scientific and technical activities   ;Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15465;Liechtenstein;F;Managers;Professional, scientific and technical activities   ;Y50-64;17;1;6.478236562426352e-08;35721;0.00047591052882058174;0;1;Old +15466;Liechtenstein;F;Managers;Administrative and support service activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15467;Liechtenstein;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;15;1;5.716091084493841e-08;35721;0.00041992105484168975;1;0;Young +15468;Liechtenstein;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15469;Liechtenstein;F;Managers;Education   ;Y30-49;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15470;Liechtenstein;F;Managers;Education   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15471;Liechtenstein;F;Managers;Human health and social work activities   ;Y30-49;23;1;8.764672996223889e-08;35721;0.0006438789507572576;1;0;Young +15472;Liechtenstein;F;Managers;Human health and social work activities   ;Y50-64;13;1;4.953945606561329e-08;35721;0.0003639315808627978;0;1;Old +15473;Liechtenstein;F;Managers;Other service activities   ;Y30-49;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15474;Liechtenstein;F;Managers;Not stated   ;Y15-29;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +15475;Liechtenstein;F;Managers;Not stated   ;Y30-49;21;1;8.002527518291377e-08;35721;0.0005878894767783657;1;0;Young +15476;Liechtenstein;F;Managers;Not stated   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15477;Liechtenstein;F;Professionals;Manufacturing   ;Y15-29;17;1;6.478236562426352e-08;35721;0.00047591052882058174;1;0;Young +15478;Liechtenstein;F;Professionals;Manufacturing   ;Y30-49;39;1;1.4861836819683987e-07;35721;0.0010917947425883934;1;0;Young +15479;Liechtenstein;F;Professionals;Manufacturing   ;Y50-64;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15480;Liechtenstein;F;Professionals;Construction   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15481;Liechtenstein;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15482;Liechtenstein;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;20;1;7.621454779325121e-08;35721;0.0005598947397889197;1;0;Young +15483;Liechtenstein;F;Professionals;Information and communication   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15484;Liechtenstein;F;Professionals;Information and communication   ;Y30-49;22;1;8.383600257257633e-08;35721;0.0006158842137678116;1;0;Young +15485;Liechtenstein;F;Professionals;Information and communication   ;Y50-64;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;0;1;Old +15486;Liechtenstein;F;Professionals;Financial and insurance activities   ;Y15-29;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15487;Liechtenstein;F;Professionals;Financial and insurance activities   ;Y30-49;25;1;9.526818474156401e-08;35721;0.0006998684247361497;1;0;Young +15488;Liechtenstein;F;Professionals;Financial and insurance activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15489;Liechtenstein;F;Professionals;Professional, scientific and technical activities   ;Y15-29;50;1;1.9053636948312803e-07;35721;0.0013997368494722993;1;0;Young +15490;Liechtenstein;F;Professionals;Professional, scientific and technical activities   ;Y30-49;134;1;5.106374702147831e-07;35721;0.003751294756585762;1;0;Young +15491;Liechtenstein;F;Professionals;Professional, scientific and technical activities   ;Y50-64;51;1;1.943470968727906e-07;35721;0.0014277315864617453;0;1;Old +15492;Liechtenstein;F;Professionals;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15493;Liechtenstein;F;Professionals;Administrative and support service activities   ;Y30-49;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15494;Liechtenstein;F;Professionals;Administrative and support service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15495;Liechtenstein;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +15496;Liechtenstein;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;59;1;2.2483291599009106e-07;35721;0.001651689482377313;1;0;Young +15497;Liechtenstein;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;18;1;6.859309301392609e-08;35721;0.0005039052658100278;0;1;Old +15498;Liechtenstein;F;Professionals;Education   ;Y15-29;69;1;2.629401898867167e-07;35721;0.001931636852271773;1;0;Young +15499;Liechtenstein;F;Professionals;Education   ;Y30-49;246;1;9.374389378569899e-07;35721;0.006886705299403712;1;0;Young +15500;Liechtenstein;F;Professionals;Education   ;Y50-64;100;1;3.8107273896625605e-07;35721;0.0027994736989445986;0;1;Old +15501;Liechtenstein;F;Professionals;Education   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15502;Liechtenstein;F;Professionals;Human health and social work activities   ;Y15-29;49;1;1.8672564209346548e-07;35721;0.0013717421124828531;1;0;Young +15503;Liechtenstein;F;Professionals;Human health and social work activities   ;Y30-49;113;1;4.3061219503186933e-07;35721;0.003163405279807396;1;0;Young +15504;Liechtenstein;F;Professionals;Human health and social work activities   ;Y50-64;38;1;1.448076408071773e-07;35721;0.0010638000055989475;0;1;Old +15505;Liechtenstein;F;Professionals;Arts, entertainment and recreation   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15506;Liechtenstein;F;Professionals;Arts, entertainment and recreation   ;Y30-49;19;1;7.240382040358865e-08;35721;0.0005319000027994737;1;0;Young +15507;Liechtenstein;F;Professionals;Arts, entertainment and recreation   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15508;Liechtenstein;F;Professionals;Other service activities   ;Y30-49;19;1;7.240382040358865e-08;35721;0.0005319000027994737;1;0;Young +15509;Liechtenstein;F;Professionals;Other service activities   ;Y50-64;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;0;1;Old +15510;Liechtenstein;F;Professionals;Not stated   ;Y15-29;47;1;1.7910418731414036e-07;35721;0.0013157526385039612;1;0;Young +15511;Liechtenstein;F;Professionals;Not stated   ;Y30-49;98;1;3.7345128418693096e-07;35721;0.0027434842249657062;1;0;Young +15512;Liechtenstein;F;Professionals;Not stated   ;Y50-64;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;0;1;Old +15513;Liechtenstein;F;Professionals;Not stated   ;Y65-84;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15514;Liechtenstein;F;Technicians and associate professionals;Manufacturing   ;Y15-29;69;1;2.629401898867167e-07;35721;0.001931636852271773;1;0;Young +15515;Liechtenstein;F;Technicians and associate professionals;Manufacturing   ;Y30-49;75;1;2.8580455422469204e-07;35721;0.002099605274208449;1;0;Young +15516;Liechtenstein;F;Technicians and associate professionals;Manufacturing   ;Y50-64;22;1;8.383600257257633e-08;35721;0.0006158842137678116;0;1;Old +15517;Liechtenstein;F;Technicians and associate professionals;Construction   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15518;Liechtenstein;F;Technicians and associate professionals;Construction   ;Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15519;Liechtenstein;F;Technicians and associate professionals;Construction   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15520;Liechtenstein;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;39;1;1.4861836819683987e-07;35721;0.0010917947425883934;1;0;Young +15521;Liechtenstein;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;38;1;1.448076408071773e-07;35721;0.0010638000055989475;1;0;Young +15522;Liechtenstein;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;21;1;8.002527518291377e-08;35721;0.0005878894767783657;0;1;Old +15523;Liechtenstein;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15524;Liechtenstein;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15525;Liechtenstein;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15526;Liechtenstein;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15527;Liechtenstein;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15528;Liechtenstein;F;Technicians and associate professionals;Information and communication   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15529;Liechtenstein;F;Technicians and associate professionals;Information and communication   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15530;Liechtenstein;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;122;1;4.6490874153883237e-07;35721;0.00341535791271241;1;0;Young +15531;Liechtenstein;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;124;1;4.725301963181575e-07;35721;0.003471347386691302;1;0;Young +15532;Liechtenstein;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;48;1;1.829149147038029e-07;35721;0.0013437473754934072;0;1;Old +15533;Liechtenstein;F;Technicians and associate professionals;Real estate activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15534;Liechtenstein;F;Technicians and associate professionals;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15535;Liechtenstein;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;76;1;2.896152816143546e-07;35721;0.002127600011197895;1;0;Young +15536;Liechtenstein;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;111;1;4.2299074025254424e-07;35721;0.0031074158058285043;1;0;Young +15537;Liechtenstein;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;34;1;1.2956473124852705e-07;35721;0.0009518210576411635;0;1;Old +15538;Liechtenstein;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15539;Liechtenstein;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15540;Liechtenstein;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15541;Liechtenstein;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;33;1;1.257540038588645e-07;35721;0.0009238263206517175;1;0;Young +15542;Liechtenstein;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;45;1;1.7148273253481523e-07;35721;0.0012597631645250692;1;0;Young +15543;Liechtenstein;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;34;1;1.2956473124852705e-07;35721;0.0009518210576411635;0;1;Old +15544;Liechtenstein;F;Technicians and associate professionals;Education   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15545;Liechtenstein;F;Technicians and associate professionals;Education   ;Y30-49;17;1;6.478236562426352e-08;35721;0.00047591052882058174;1;0;Young +15546;Liechtenstein;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;75;1;2.8580455422469204e-07;35721;0.002099605274208449;1;0;Young +15547;Liechtenstein;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;148;1;5.63987653670059e-07;35721;0.004143221074438006;1;0;Young +15548;Liechtenstein;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;79;1;3.010474637833423e-07;35721;0.002211584222166233;0;1;Old +15549;Liechtenstein;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15550;Liechtenstein;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15551;Liechtenstein;F;Technicians and associate professionals;Other service activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15552;Liechtenstein;F;Technicians and associate professionals;Other service activities   ;Y30-49;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +15553;Liechtenstein;F;Technicians and associate professionals;Other service activities   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15554;Liechtenstein;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15555;Liechtenstein;F;Technicians and associate professionals;Not stated   ;Y15-29;35;1;1.3337545863818962e-07;35721;0.0009798157946306093;1;0;Young +15556;Liechtenstein;F;Technicians and associate professionals;Not stated   ;Y30-49;57;1;2.1721146121076594e-07;35721;0.001595700008398421;1;0;Young +15557;Liechtenstein;F;Technicians and associate professionals;Not stated   ;Y50-64;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15558;Liechtenstein;F;Clerical support workers;Mining and quarrying   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15559;Liechtenstein;F;Clerical support workers;Manufacturing   ;Y15-29;61;1;2.3245437076941619e-07;35721;0.001707678956356205;1;0;Young +15560;Liechtenstein;F;Clerical support workers;Manufacturing   ;Y30-49;132;1;5.03016015435458e-07;35721;0.00369530528260687;1;0;Young +15561;Liechtenstein;F;Clerical support workers;Manufacturing   ;Y50-64;85;1;3.239118281213176e-07;35721;0.0023795526441029087;0;1;Old +15562;Liechtenstein;F;Clerical support workers;Manufacturing   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15563;Liechtenstein;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15564;Liechtenstein;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15565;Liechtenstein;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15566;Liechtenstein;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15567;Liechtenstein;F;Clerical support workers;Construction   ;Y15-29;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15568;Liechtenstein;F;Clerical support workers;Construction   ;Y30-49;44;1;1.6767200514515266e-07;35721;0.0012317684275356233;1;0;Young +15569;Liechtenstein;F;Clerical support workers;Construction   ;Y50-64;26;1;9.907891213122657e-08;35721;0.0007278631617255956;0;1;Old +15570;Liechtenstein;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;19;1;7.240382040358865e-08;35721;0.0005319000027994737;1;0;Young +15571;Liechtenstein;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;64;1;2.4388655293840386e-07;35721;0.001791663167324543;1;0;Young +15572;Liechtenstein;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;47;1;1.7910418731414036e-07;35721;0.0013157526385039612;0;1;Old +15573;Liechtenstein;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15574;Liechtenstein;F;Clerical support workers;Transportation and storage   ;Y15-29;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +15575;Liechtenstein;F;Clerical support workers;Transportation and storage   ;Y30-49;58;1;2.2102218860042852e-07;35721;0.001623694745387867;1;0;Young +15576;Liechtenstein;F;Clerical support workers;Transportation and storage   ;Y50-64;20;1;7.621454779325121e-08;35721;0.0005598947397889197;0;1;Old +15577;Liechtenstein;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15578;Liechtenstein;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +15579;Liechtenstein;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15580;Liechtenstein;F;Clerical support workers;Information and communication   ;Y15-29;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15581;Liechtenstein;F;Clerical support workers;Information and communication   ;Y30-49;25;1;9.526818474156401e-08;35721;0.0006998684247361497;1;0;Young +15582;Liechtenstein;F;Clerical support workers;Information and communication   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15583;Liechtenstein;F;Clerical support workers;Financial and insurance activities   ;Y15-29;55;1;2.0959000643144082e-07;35721;0.0015397105344195292;1;0;Young +15584;Liechtenstein;F;Clerical support workers;Financial and insurance activities   ;Y30-49;111;1;4.2299074025254424e-07;35721;0.0031074158058285043;1;0;Young +15585;Liechtenstein;F;Clerical support workers;Financial and insurance activities   ;Y50-64;83;1;3.1629037334199253e-07;35721;0.0023235631701240167;0;1;Old +15586;Liechtenstein;F;Clerical support workers;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15587;Liechtenstein;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;71;1;2.705616446660418e-07;35721;0.001987626326250665;1;0;Young +15588;Liechtenstein;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;171;1;6.516343836322978e-07;35721;0.004787100025195263;1;0;Young +15589;Liechtenstein;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;122;1;4.6490874153883237e-07;35721;0.00341535791271241;0;1;Old +15590;Liechtenstein;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15591;Liechtenstein;F;Clerical support workers;Administrative and support service activities   ;Y15-29;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +15592;Liechtenstein;F;Clerical support workers;Administrative and support service activities   ;Y30-49;43;1;1.638612777554901e-07;35721;0.0012037736905461773;1;0;Young +15593;Liechtenstein;F;Clerical support workers;Administrative and support service activities   ;Y50-64;16;1;6.097163823460096e-08;35721;0.00044791579183113577;0;1;Old +15594;Liechtenstein;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;42;1;1.6005055036582754e-07;35721;0.0011757789535567313;1;0;Young +15595;Liechtenstein;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;122;1;4.6490874153883237e-07;35721;0.00341535791271241;1;0;Young +15596;Liechtenstein;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;60;1;2.2864364337975364e-07;35721;0.001679684219366759;0;1;Old +15597;Liechtenstein;F;Clerical support workers;Education   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15598;Liechtenstein;F;Clerical support workers;Education   ;Y30-49;18;1;6.859309301392609e-08;35721;0.0005039052658100278;1;0;Young +15599;Liechtenstein;F;Clerical support workers;Education   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15600;Liechtenstein;F;Clerical support workers;Human health and social work activities   ;Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15601;Liechtenstein;F;Clerical support workers;Human health and social work activities   ;Y30-49;32;1;1.2194327646920193e-07;35721;0.0008958315836622715;1;0;Young +15602;Liechtenstein;F;Clerical support workers;Human health and social work activities   ;Y50-64;25;1;9.526818474156401e-08;35721;0.0006998684247361497;0;1;Old +15603;Liechtenstein;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15604;Liechtenstein;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15605;Liechtenstein;F;Clerical support workers;Other service activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15606;Liechtenstein;F;Clerical support workers;Other service activities   ;Y30-49;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +15607;Liechtenstein;F;Clerical support workers;Other service activities   ;Y50-64;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;0;1;Old +15608;Liechtenstein;F;Clerical support workers;Not stated   ;Y15-29;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +15609;Liechtenstein;F;Clerical support workers;Not stated   ;Y30-49;22;1;8.383600257257633e-08;35721;0.0006158842137678116;1;0;Young +15610;Liechtenstein;F;Clerical support workers;Not stated   ;Y50-64;13;1;4.953945606561329e-08;35721;0.0003639315808627978;0;1;Old +15611;Liechtenstein;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15612;Liechtenstein;F;Service and sales workers;Manufacturing   ;Y15-29;20;1;7.621454779325121e-08;35721;0.0005598947397889197;1;0;Young +15613;Liechtenstein;F;Service and sales workers;Manufacturing   ;Y30-49;27;1;1.0288963952088914e-07;35721;0.0007558578987150416;1;0;Young +15614;Liechtenstein;F;Service and sales workers;Manufacturing   ;Y50-64;17;1;6.478236562426352e-08;35721;0.00047591052882058174;0;1;Old +15615;Liechtenstein;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15616;Liechtenstein;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;73;1;2.7818309944536694e-07;35721;0.002043615800229557;1;0;Young +15617;Liechtenstein;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;98;1;3.7345128418693096e-07;35721;0.0027434842249657062;1;0;Young +15618;Liechtenstein;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;64;1;2.4388655293840386e-07;35721;0.001791663167324543;0;1;Old +15619;Liechtenstein;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15620;Liechtenstein;F;Service and sales workers;Transportation and storage   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15621;Liechtenstein;F;Service and sales workers;Transportation and storage   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15622;Liechtenstein;F;Service and sales workers;Transportation and storage   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15623;Liechtenstein;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;32;1;1.2194327646920193e-07;35721;0.0008958315836622715;1;0;Young +15624;Liechtenstein;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;73;1;2.7818309944536694e-07;35721;0.002043615800229557;1;0;Young +15625;Liechtenstein;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;28;1;1.067003669105517e-07;35721;0.0007838526357044876;0;1;Old +15626;Liechtenstein;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15627;Liechtenstein;F;Service and sales workers;Financial and insurance activities   ;Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15628;Liechtenstein;F;Service and sales workers;Financial and insurance activities   ;Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15629;Liechtenstein;F;Service and sales workers;Financial and insurance activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15630;Liechtenstein;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15631;Liechtenstein;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15632;Liechtenstein;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15633;Liechtenstein;F;Service and sales workers;Administrative and support service activities   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15634;Liechtenstein;F;Service and sales workers;Administrative and support service activities   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15635;Liechtenstein;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15636;Liechtenstein;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15637;Liechtenstein;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;0;1;Old +15638;Liechtenstein;F;Service and sales workers;Education   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15639;Liechtenstein;F;Service and sales workers;Education   ;Y30-49;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15640;Liechtenstein;F;Service and sales workers;Education   ;Y50-64;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;0;1;Old +15641;Liechtenstein;F;Service and sales workers;Human health and social work activities   ;Y15-29;95;1;3.6201910201794326e-07;35721;0.0026595000139973683;1;0;Young +15642;Liechtenstein;F;Service and sales workers;Human health and social work activities   ;Y30-49;101;1;3.848834663559186e-07;35721;0.0028274684359340446;1;0;Young +15643;Liechtenstein;F;Service and sales workers;Human health and social work activities   ;Y50-64;54;1;2.0577927904177827e-07;35721;0.0015117157974300832;0;1;Old +15644;Liechtenstein;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15645;Liechtenstein;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15646;Liechtenstein;F;Service and sales workers;Other service activities   ;Y15-29;39;1;1.4861836819683987e-07;35721;0.0010917947425883934;1;0;Young +15647;Liechtenstein;F;Service and sales workers;Other service activities   ;Y30-49;67;1;2.5531873510739155e-07;35721;0.001875647378292881;1;0;Young +15648;Liechtenstein;F;Service and sales workers;Other service activities   ;Y50-64;28;1;1.067003669105517e-07;35721;0.0007838526357044876;0;1;Old +15649;Liechtenstein;F;Service and sales workers;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15650;Liechtenstein;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15651;Liechtenstein;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +15652;Liechtenstein;F;Service and sales workers;Not stated   ;Y15-29;48;1;1.829149147038029e-07;35721;0.0013437473754934072;1;0;Young +15653;Liechtenstein;F;Service and sales workers;Not stated   ;Y30-49;52;1;1.9815782426245315e-07;35721;0.0014557263234511912;1;0;Young +15654;Liechtenstein;F;Service and sales workers;Not stated   ;Y50-64;38;1;1.448076408071773e-07;35721;0.0010638000055989475;0;1;Old +15655;Liechtenstein;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15656;Liechtenstein;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15657;Liechtenstein;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15658;Liechtenstein;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15659;Liechtenstein;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15660;Liechtenstein;F;Craft and related trades workers;Manufacturing   ;Y15-29;29;1;1.1051109430021426e-07;35721;0.0008118473726939335;1;0;Young +15661;Liechtenstein;F;Craft and related trades workers;Manufacturing   ;Y30-49;69;1;2.629401898867167e-07;35721;0.001931636852271773;1;0;Young +15662;Liechtenstein;F;Craft and related trades workers;Manufacturing   ;Y50-64;16;1;6.097163823460096e-08;35721;0.00044791579183113577;0;1;Old +15663;Liechtenstein;F;Craft and related trades workers;Construction   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15664;Liechtenstein;F;Craft and related trades workers;Construction   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15665;Liechtenstein;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +15666;Liechtenstein;F;Craft and related trades workers;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15667;Liechtenstein;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15668;Liechtenstein;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15669;Liechtenstein;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15670;Liechtenstein;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15671;Liechtenstein;F;Craft and related trades workers;Other service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15672;Liechtenstein;F;Craft and related trades workers;Not stated   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15673;Liechtenstein;F;Craft and related trades workers;Not stated   ;Y30-49;17;1;6.478236562426352e-08;35721;0.00047591052882058174;1;0;Young +15674;Liechtenstein;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15675;Liechtenstein;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;31;1;1.1813254907953938e-07;35721;0.0008678368466728255;1;0;Young +15676;Liechtenstein;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;17;1;6.478236562426352e-08;35721;0.00047591052882058174;0;1;Old +15677;Liechtenstein;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15678;Liechtenstein;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15679;Liechtenstein;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15680;Liechtenstein;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15681;Liechtenstein;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15682;Liechtenstein;F;Elementary occupations;Manufacturing   ;Y15-29;47;1;1.7910418731414036e-07;35721;0.0013157526385039612;1;0;Young +15683;Liechtenstein;F;Elementary occupations;Manufacturing   ;Y30-49;119;1;4.5347655936984473e-07;35721;0.003331373701744072;1;0;Young +15684;Liechtenstein;F;Elementary occupations;Manufacturing   ;Y50-64;51;1;1.943470968727906e-07;35721;0.0014277315864617453;0;1;Old +15685;Liechtenstein;F;Elementary occupations;Construction   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15686;Liechtenstein;F;Elementary occupations;Construction   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15687;Liechtenstein;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;29;1;1.1051109430021426e-07;35721;0.0008118473726939335;1;0;Young +15688;Liechtenstein;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;0;1;Old +15689;Liechtenstein;F;Elementary occupations;Transportation and storage   ;Y30-49;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15690;Liechtenstein;F;Elementary occupations;Transportation and storage   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15691;Liechtenstein;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15692;Liechtenstein;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;21;1;8.002527518291377e-08;35721;0.0005878894767783657;1;0;Young +15693;Liechtenstein;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15694;Liechtenstein;F;Elementary occupations;Information and communication   ;Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15695;Liechtenstein;F;Elementary occupations;Information and communication   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15696;Liechtenstein;F;Elementary occupations;Financial and insurance activities   ;Y30-49;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +15697;Liechtenstein;F;Elementary occupations;Financial and insurance activities   ;Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +15698;Liechtenstein;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15699;Liechtenstein;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;1;0;Young +15700;Liechtenstein;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;16;1;6.097163823460096e-08;35721;0.00044791579183113577;0;1;Old +15701;Liechtenstein;F;Elementary occupations;Administrative and support service activities   ;Y15-29;21;1;8.002527518291377e-08;35721;0.0005878894767783657;1;0;Young +15702;Liechtenstein;F;Elementary occupations;Administrative and support service activities   ;Y30-49;54;1;2.0577927904177827e-07;35721;0.0015117157974300832;1;0;Young +15703;Liechtenstein;F;Elementary occupations;Administrative and support service activities   ;Y50-64;14;1;5.335018345527585e-08;35721;0.0003919263178522438;0;1;Old +15704;Liechtenstein;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15705;Liechtenstein;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;46;1;1.7529345992447778e-07;35721;0.0012877579015145152;1;0;Young +15706;Liechtenstein;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;35;1;1.3337545863818962e-07;35721;0.0009798157946306093;0;1;Old +15707;Liechtenstein;F;Elementary occupations;Education   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15708;Liechtenstein;F;Elementary occupations;Education   ;Y50-64;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15709;Liechtenstein;F;Elementary occupations;Human health and social work activities   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15710;Liechtenstein;F;Elementary occupations;Human health and social work activities   ;Y30-49;22;1;8.383600257257633e-08;35721;0.0006158842137678116;1;0;Young +15711;Liechtenstein;F;Elementary occupations;Human health and social work activities   ;Y50-64;19;1;7.240382040358865e-08;35721;0.0005319000027994737;0;1;Old +15712;Liechtenstein;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15713;Liechtenstein;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15714;Liechtenstein;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15715;Liechtenstein;F;Elementary occupations;Other service activities   ;Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15716;Liechtenstein;F;Elementary occupations;Other service activities   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15717;Liechtenstein;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15718;Liechtenstein;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15719;Liechtenstein;F;Elementary occupations;Not stated   ;Y15-29;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15720;Liechtenstein;F;Elementary occupations;Not stated   ;Y30-49;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +15721;Liechtenstein;F;Elementary occupations;Not stated   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15722;Liechtenstein;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15723;Liechtenstein;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15724;Liechtenstein;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15725;Liechtenstein;F;Not stated;Manufacturing   ;Y15-29;74;1;2.819938268350295e-07;35721;0.002071610537219003;1;0;Young +15726;Liechtenstein;F;Not stated;Manufacturing   ;Y30-49;151;1;5.754198358390467e-07;35721;0.004227205285406344;1;0;Young +15727;Liechtenstein;F;Not stated;Manufacturing   ;Y50-64;75;1;2.8580455422469204e-07;35721;0.002099605274208449;0;1;Old +15728;Liechtenstein;F;Not stated;Manufacturing   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15729;Liechtenstein;F;Not stated;Construction   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15730;Liechtenstein;F;Not stated;Construction   ;Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15731;Liechtenstein;F;Not stated;Construction   ;Y50-64;20;1;7.621454779325121e-08;35721;0.0005598947397889197;0;1;Old +15732;Liechtenstein;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;25;1;9.526818474156401e-08;35721;0.0006998684247361497;1;0;Young +15733;Liechtenstein;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;53;1;2.019685516521157e-07;35721;0.0014837210604406372;1;0;Young +15734;Liechtenstein;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;56;1;2.134007338211034e-07;35721;0.0015677052714089751;0;1;Old +15735;Liechtenstein;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;0;1;Old +15736;Liechtenstein;F;Not stated;Transportation and storage   ;Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15737;Liechtenstein;F;Not stated;Transportation and storage   ;Y30-49;27;1;1.0288963952088914e-07;35721;0.0007558578987150416;1;0;Young +15738;Liechtenstein;F;Not stated;Transportation and storage   ;Y50-64;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;0;1;Old +15739;Liechtenstein;F;Not stated;Accommodation and food service activities   ;Y15-29;37;1;1.4099691341751475e-07;35721;0.0010358052686095015;1;0;Young +15740;Liechtenstein;F;Not stated;Accommodation and food service activities   ;Y30-49;47;1;1.7910418731414036e-07;35721;0.0013157526385039612;1;0;Young +15741;Liechtenstein;F;Not stated;Accommodation and food service activities   ;Y50-64;28;1;1.067003669105517e-07;35721;0.0007838526357044876;0;1;Old +15742;Liechtenstein;F;Not stated;Information and communication   ;Y15-29;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15743;Liechtenstein;F;Not stated;Information and communication   ;Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15744;Liechtenstein;F;Not stated;Financial and insurance activities   ;Y15-29;21;1;8.002527518291377e-08;35721;0.0005878894767783657;1;0;Young +15745;Liechtenstein;F;Not stated;Financial and insurance activities   ;Y30-49;24;1;9.145745735190145e-08;35721;0.0006718736877467036;1;0;Young +15746;Liechtenstein;F;Not stated;Financial and insurance activities   ;Y50-64;20;1;7.621454779325121e-08;35721;0.0005598947397889197;0;1;Old +15747;Liechtenstein;F;Not stated;Real estate activities   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15748;Liechtenstein;F;Not stated;Real estate activities   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15749;Liechtenstein;F;Not stated;Professional, scientific and technical activities   ;Y15-29;36;1;1.3718618602785217e-07;35721;0.0010078105316200555;1;0;Young +15750;Liechtenstein;F;Not stated;Professional, scientific and technical activities   ;Y30-49;73;1;2.7818309944536694e-07;35721;0.002043615800229557;1;0;Young +15751;Liechtenstein;F;Not stated;Professional, scientific and technical activities   ;Y50-64;45;1;1.7148273253481523e-07;35721;0.0012597631645250692;0;1;Old +15752;Liechtenstein;F;Not stated;Administrative and support service activities   ;Y15-29;22;1;8.383600257257633e-08;35721;0.0006158842137678116;1;0;Young +15753;Liechtenstein;F;Not stated;Administrative and support service activities   ;Y30-49;67;1;2.5531873510739155e-07;35721;0.001875647378292881;1;0;Young +15754;Liechtenstein;F;Not stated;Administrative and support service activities   ;Y50-64;20;1;7.621454779325121e-08;35721;0.0005598947397889197;0;1;Old +15755;Liechtenstein;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15756;Liechtenstein;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;29;1;1.1051109430021426e-07;35721;0.0008118473726939335;1;0;Young +15757;Liechtenstein;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;33;1;1.257540038588645e-07;35721;0.0009238263206517175;0;1;Old +15758;Liechtenstein;F;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15759;Liechtenstein;F;Not stated;Education   ;Y15-29;15;1;5.716091084493841e-08;35721;0.00041992105484168975;1;0;Young +15760;Liechtenstein;F;Not stated;Education   ;Y30-49;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;1;0;Young +15761;Liechtenstein;F;Not stated;Education   ;Y50-64;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15762;Liechtenstein;F;Not stated;Human health and social work activities   ;Y15-29;47;1;1.7910418731414036e-07;35721;0.0013157526385039612;1;0;Young +15763;Liechtenstein;F;Not stated;Human health and social work activities   ;Y30-49;68;1;2.591294624970541e-07;35721;0.001903642115282327;1;0;Young +15764;Liechtenstein;F;Not stated;Human health and social work activities   ;Y50-64;48;1;1.829149147038029e-07;35721;0.0013437473754934072;0;1;Old +15765;Liechtenstein;F;Not stated;Human health and social work activities   ;Y65-84;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15766;Liechtenstein;F;Not stated;Arts, entertainment and recreation   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15767;Liechtenstein;F;Not stated;Arts, entertainment and recreation   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15768;Liechtenstein;F;Not stated;Arts, entertainment and recreation   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15769;Liechtenstein;F;Not stated;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15770;Liechtenstein;F;Not stated;Other service activities   ;Y15-29;18;1;6.859309301392609e-08;35721;0.0005039052658100278;1;0;Young +15771;Liechtenstein;F;Not stated;Other service activities   ;Y30-49;25;1;9.526818474156401e-08;35721;0.0006998684247361497;1;0;Young +15772;Liechtenstein;F;Not stated;Other service activities   ;Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +15773;Liechtenstein;F;Not stated;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15774;Liechtenstein;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15775;Liechtenstein;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;0;1;Old +15776;Liechtenstein;F;Not stated;Not stated   ;Y15-29;56;1;2.134007338211034e-07;35721;0.0015677052714089751;1;0;Young +15777;Liechtenstein;F;Not stated;Not stated   ;Y30-49;81;1;3.086689185626674e-07;35721;0.0022675736961451248;1;0;Young +15778;Liechtenstein;F;Not stated;Not stated   ;Y50-64;45;1;1.7148273253481523e-07;35721;0.0012597631645250692;0;1;Old +15779;Liechtenstein;F;Not stated;Not stated   ;Y65-84;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15780;Liechtenstein;M;Not applicable;Not applicable  ;Y15-29;1003;1;3.822159571831548e-06;35721;0.02807872120041432;1;0;Young +15781;Liechtenstein;M;Not applicable;Not applicable  ;Y30-49;263;1;1.0022213034812534e-06;35721;0.007362615828224294;1;0;Young +15782;Liechtenstein;M;Not applicable;Not applicable  ;Y50-64;838;1;3.1933895525372256e-06;35721;0.023459589597155734;0;1;Old +15783;Liechtenstein;M;Not applicable;Not applicable  ;Y65-84;1769;1;6.74117675231307e-06;35721;0.049522689734329946;0;1;Old +15784;Liechtenstein;M;Not applicable;Not applicable  ;Y_GE85;158;1;6.020949275666846e-07;35721;0.004423168444332466;0;1;Old +15785;Liechtenstein;M;Not applicable;Not applicable  ;Y_LT15;2946;1;1.1226402889945903e-05;35721;0.08247249517090786;0;1;Old +15786;Liechtenstein;M;Managers;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15787;Liechtenstein;M;Managers;Manufacturing   ;Y15-29;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15788;Liechtenstein;M;Managers;Manufacturing   ;Y30-49;274;1;1.0441393047675416e-06;35721;0.0076705579351082;1;0;Young +15789;Liechtenstein;M;Managers;Manufacturing   ;Y50-64;130;1;4.953945606561329e-07;35721;0.003639315808627978;0;1;Old +15790;Liechtenstein;M;Managers;Manufacturing   ;Y65-84;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15791;Liechtenstein;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +15792;Liechtenstein;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15793;Liechtenstein;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15794;Liechtenstein;M;Managers;Construction   ;Y30-49;44;1;1.6767200514515266e-07;35721;0.0012317684275356233;1;0;Young +15795;Liechtenstein;M;Managers;Construction   ;Y50-64;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;0;1;Old +15796;Liechtenstein;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15797;Liechtenstein;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;84;1;3.201011007316551e-07;35721;0.0023515579071134627;1;0;Young +15798;Liechtenstein;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;51;1;1.943470968727906e-07;35721;0.0014277315864617453;0;1;Old +15799;Liechtenstein;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15800;Liechtenstein;M;Managers;Transportation and storage   ;Y30-49;21;1;8.002527518291377e-08;35721;0.0005878894767783657;1;0;Young +15801;Liechtenstein;M;Managers;Transportation and storage   ;Y50-64;15;1;5.716091084493841e-08;35721;0.00041992105484168975;0;1;Old +15802;Liechtenstein;M;Managers;Accommodation and food service activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15803;Liechtenstein;M;Managers;Accommodation and food service activities   ;Y30-49;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;1;0;Young +15804;Liechtenstein;M;Managers;Accommodation and food service activities   ;Y50-64;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;0;1;Old +15805;Liechtenstein;M;Managers;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15806;Liechtenstein;M;Managers;Information and communication   ;Y30-49;40;1;1.5242909558650242e-07;35721;0.0011197894795778394;1;0;Young +15807;Liechtenstein;M;Managers;Information and communication   ;Y50-64;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;0;1;Old +15808;Liechtenstein;M;Managers;Financial and insurance activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15809;Liechtenstein;M;Managers;Financial and insurance activities   ;Y30-49;68;1;2.591294624970541e-07;35721;0.001903642115282327;1;0;Young +15810;Liechtenstein;M;Managers;Financial and insurance activities   ;Y50-64;31;1;1.1813254907953938e-07;35721;0.0008678368466728255;0;1;Old +15811;Liechtenstein;M;Managers;Professional, scientific and technical activities   ;Y15-29;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15812;Liechtenstein;M;Managers;Professional, scientific and technical activities   ;Y30-49;66;1;2.51508007717729e-07;35721;0.001847652641303435;1;0;Young +15813;Liechtenstein;M;Managers;Professional, scientific and technical activities   ;Y50-64;47;1;1.7910418731414036e-07;35721;0.0013157526385039612;0;1;Old +15814;Liechtenstein;M;Managers;Professional, scientific and technical activities   ;Y65-84;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15815;Liechtenstein;M;Managers;Administrative and support service activities   ;Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15816;Liechtenstein;M;Managers;Administrative and support service activities   ;Y30-49;15;1;5.716091084493841e-08;35721;0.00041992105484168975;1;0;Young +15817;Liechtenstein;M;Managers;Administrative and support service activities   ;Y50-64;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;0;1;Old +15818;Liechtenstein;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;43;1;1.638612777554901e-07;35721;0.0012037736905461773;1;0;Young +15819;Liechtenstein;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;34;1;1.2956473124852705e-07;35721;0.0009518210576411635;0;1;Old +15820;Liechtenstein;M;Managers;Education   ;Y30-49;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +15821;Liechtenstein;M;Managers;Education   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15822;Liechtenstein;M;Managers;Human health and social work activities   ;Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15823;Liechtenstein;M;Managers;Human health and social work activities   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15824;Liechtenstein;M;Managers;Arts, entertainment and recreation   ;Y30-49;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +15825;Liechtenstein;M;Managers;Arts, entertainment and recreation   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15826;Liechtenstein;M;Managers;Other service activities   ;Y30-49;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +15827;Liechtenstein;M;Managers;Other service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15828;Liechtenstein;M;Managers;Not stated   ;Y15-29;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +15829;Liechtenstein;M;Managers;Not stated   ;Y30-49;44;1;1.6767200514515266e-07;35721;0.0012317684275356233;1;0;Young +15830;Liechtenstein;M;Managers;Not stated   ;Y50-64;21;1;8.002527518291377e-08;35721;0.0005878894767783657;0;1;Old +15831;Liechtenstein;M;Managers;Not stated   ;Y65-84;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15832;Liechtenstein;M;Professionals;Manufacturing   ;Y15-29;61;1;2.3245437076941619e-07;35721;0.001707678956356205;1;0;Young +15833;Liechtenstein;M;Professionals;Manufacturing   ;Y30-49;173;1;6.592558384116229e-07;35721;0.004843089499174155;1;0;Young +15834;Liechtenstein;M;Professionals;Manufacturing   ;Y50-64;78;1;2.9723673639367974e-07;35721;0.002183589485176787;0;1;Old +15835;Liechtenstein;M;Professionals;Manufacturing   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15836;Liechtenstein;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15837;Liechtenstein;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15838;Liechtenstein;M;Professionals;Construction   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15839;Liechtenstein;M;Professionals;Construction   ;Y30-49;17;1;6.478236562426352e-08;35721;0.00047591052882058174;1;0;Young +15840;Liechtenstein;M;Professionals;Construction   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15841;Liechtenstein;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +15842;Liechtenstein;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;34;1;1.2956473124852705e-07;35721;0.0009518210576411635;1;0;Young +15843;Liechtenstein;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;18;1;6.859309301392609e-08;35721;0.0005039052658100278;0;1;Old +15844;Liechtenstein;M;Professionals;Transportation and storage   ;Y15-29;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15845;Liechtenstein;M;Professionals;Transportation and storage   ;Y30-49;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15846;Liechtenstein;M;Professionals;Information and communication   ;Y15-29;31;1;1.1813254907953938e-07;35721;0.0008678368466728255;1;0;Young +15847;Liechtenstein;M;Professionals;Information and communication   ;Y30-49;81;1;3.086689185626674e-07;35721;0.0022675736961451248;1;0;Young +15848;Liechtenstein;M;Professionals;Information and communication   ;Y50-64;22;1;8.383600257257633e-08;35721;0.0006158842137678116;0;1;Old +15849;Liechtenstein;M;Professionals;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15850;Liechtenstein;M;Professionals;Financial and insurance activities   ;Y15-29;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;1;0;Young +15851;Liechtenstein;M;Professionals;Financial and insurance activities   ;Y30-49;119;1;4.5347655936984473e-07;35721;0.003331373701744072;1;0;Young +15852;Liechtenstein;M;Professionals;Financial and insurance activities   ;Y50-64;32;1;1.2194327646920193e-07;35721;0.0008958315836622715;0;1;Old +15853;Liechtenstein;M;Professionals;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15854;Liechtenstein;M;Professionals;Professional, scientific and technical activities   ;Y15-29;48;1;1.829149147038029e-07;35721;0.0013437473754934072;1;0;Young +15855;Liechtenstein;M;Professionals;Professional, scientific and technical activities   ;Y30-49;311;1;1.1851362181850563e-06;35721;0.0087063632037177;1;0;Young +15856;Liechtenstein;M;Professionals;Professional, scientific and technical activities   ;Y50-64;209;1;7.964420244394752e-07;35721;0.005850900030794211;0;1;Old +15857;Liechtenstein;M;Professionals;Professional, scientific and technical activities   ;Y65-84;44;1;1.6767200514515266e-07;35721;0.0012317684275356233;0;1;Old +15858;Liechtenstein;M;Professionals;Administrative and support service activities   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15859;Liechtenstein;M;Professionals;Administrative and support service activities   ;Y30-49;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +15860;Liechtenstein;M;Professionals;Administrative and support service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15861;Liechtenstein;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +15862;Liechtenstein;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;62;1;2.3626509815907876e-07;35721;0.001735673693345651;1;0;Young +15863;Liechtenstein;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;48;1;1.829149147038029e-07;35721;0.0013437473754934072;0;1;Old +15864;Liechtenstein;M;Professionals;Education   ;Y15-29;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +15865;Liechtenstein;M;Professionals;Education   ;Y30-49;98;1;3.7345128418693096e-07;35721;0.0027434842249657062;1;0;Young +15866;Liechtenstein;M;Professionals;Education   ;Y50-64;94;1;3.582083746282807e-07;35721;0.0026315052770079224;0;1;Old +15867;Liechtenstein;M;Professionals;Human health and social work activities   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15868;Liechtenstein;M;Professionals;Human health and social work activities   ;Y30-49;62;1;2.3626509815907876e-07;35721;0.001735673693345651;1;0;Young +15869;Liechtenstein;M;Professionals;Human health and social work activities   ;Y50-64;55;1;2.0959000643144082e-07;35721;0.0015397105344195292;0;1;Old +15870;Liechtenstein;M;Professionals;Human health and social work activities   ;Y65-84;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15871;Liechtenstein;M;Professionals;Arts, entertainment and recreation   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15872;Liechtenstein;M;Professionals;Arts, entertainment and recreation   ;Y30-49;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +15873;Liechtenstein;M;Professionals;Arts, entertainment and recreation   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15874;Liechtenstein;M;Professionals;Other service activities   ;Y30-49;19;1;7.240382040358865e-08;35721;0.0005319000027994737;1;0;Young +15875;Liechtenstein;M;Professionals;Other service activities   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15876;Liechtenstein;M;Professionals;Not stated   ;Y15-29;44;1;1.6767200514515266e-07;35721;0.0012317684275356233;1;0;Young +15877;Liechtenstein;M;Professionals;Not stated   ;Y30-49;59;1;2.2483291599009106e-07;35721;0.001651689482377313;1;0;Young +15878;Liechtenstein;M;Professionals;Not stated   ;Y50-64;31;1;1.1813254907953938e-07;35721;0.0008678368466728255;0;1;Old +15879;Liechtenstein;M;Professionals;Not stated   ;Y65-84;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15880;Liechtenstein;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15881;Liechtenstein;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15882;Liechtenstein;M;Technicians and associate professionals;Manufacturing   ;Y15-29;101;1;3.848834663559186e-07;35721;0.0028274684359340446;1;0;Young +15883;Liechtenstein;M;Technicians and associate professionals;Manufacturing   ;Y30-49;209;1;7.964420244394752e-07;35721;0.005850900030794211;1;0;Young +15884;Liechtenstein;M;Technicians and associate professionals;Manufacturing   ;Y50-64;135;1;5.144481976044457e-07;35721;0.003779289493575208;0;1;Old +15885;Liechtenstein;M;Technicians and associate professionals;Manufacturing   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15886;Liechtenstein;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15887;Liechtenstein;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;19;1;7.240382040358865e-08;35721;0.0005319000027994737;1;0;Young +15888;Liechtenstein;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;0;1;Old +15889;Liechtenstein;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15890;Liechtenstein;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15891;Liechtenstein;M;Technicians and associate professionals;Construction   ;Y15-29;18;1;6.859309301392609e-08;35721;0.0005039052658100278;1;0;Young +15892;Liechtenstein;M;Technicians and associate professionals;Construction   ;Y30-49;70;1;2.6675091727637925e-07;35721;0.0019596315892612187;1;0;Young +15893;Liechtenstein;M;Technicians and associate professionals;Construction   ;Y50-64;33;1;1.257540038588645e-07;35721;0.0009238263206517175;0;1;Old +15894;Liechtenstein;M;Technicians and associate professionals;Construction   ;Y65-84;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15895;Liechtenstein;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;34;1;1.2956473124852705e-07;35721;0.0009518210576411635;1;0;Young +15896;Liechtenstein;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;61;1;2.3245437076941619e-07;35721;0.001707678956356205;1;0;Young +15897;Liechtenstein;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;38;1;1.448076408071773e-07;35721;0.0010638000055989475;0;1;Old +15898;Liechtenstein;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15899;Liechtenstein;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15900;Liechtenstein;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15901;Liechtenstein;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15902;Liechtenstein;M;Technicians and associate professionals;Information and communication   ;Y15-29;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +15903;Liechtenstein;M;Technicians and associate professionals;Information and communication   ;Y30-49;22;1;8.383600257257633e-08;35721;0.0006158842137678116;1;0;Young +15904;Liechtenstein;M;Technicians and associate professionals;Information and communication   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15905;Liechtenstein;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;94;1;3.582083746282807e-07;35721;0.0026315052770079224;1;0;Young +15906;Liechtenstein;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;205;1;7.811991148808249e-07;35721;0.005738921082836427;1;0;Young +15907;Liechtenstein;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;77;1;2.9342600900401714e-07;35721;0.002155594748187341;0;1;Old +15908;Liechtenstein;M;Technicians and associate professionals;Real estate activities   ;Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15909;Liechtenstein;M;Technicians and associate professionals;Real estate activities   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +15910;Liechtenstein;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;80;1;3.0485819117300483e-07;35721;0.002239578959155679;1;0;Young +15911;Liechtenstein;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;128;1;4.877731058768077e-07;35721;0.003583326334649086;1;0;Young +15912;Liechtenstein;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;68;1;2.591294624970541e-07;35721;0.001903642115282327;0;1;Old +15913;Liechtenstein;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15914;Liechtenstein;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15915;Liechtenstein;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15916;Liechtenstein;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15917;Liechtenstein;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;34;1;1.2956473124852705e-07;35721;0.0009518210576411635;1;0;Young +15918;Liechtenstein;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;116;1;4.4204437720085703e-07;35721;0.003247389490775734;1;0;Young +15919;Liechtenstein;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;74;1;2.819938268350295e-07;35721;0.002071610537219003;0;1;Old +15920;Liechtenstein;M;Technicians and associate professionals;Education   ;Y30-49;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15921;Liechtenstein;M;Technicians and associate professionals;Education   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15922;Liechtenstein;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;21;1;8.002527518291377e-08;35721;0.0005878894767783657;1;0;Young +15923;Liechtenstein;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;0;1;Old +15924;Liechtenstein;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15925;Liechtenstein;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;15;1;5.716091084493841e-08;35721;0.00041992105484168975;1;0;Young +15926;Liechtenstein;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;0;1;Old +15927;Liechtenstein;M;Technicians and associate professionals;Other service activities   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15928;Liechtenstein;M;Technicians and associate professionals;Other service activities   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15929;Liechtenstein;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15930;Liechtenstein;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15931;Liechtenstein;M;Technicians and associate professionals;Not stated   ;Y15-29;32;1;1.2194327646920193e-07;35721;0.0008958315836622715;1;0;Young +15932;Liechtenstein;M;Technicians and associate professionals;Not stated   ;Y30-49;47;1;1.7910418731414036e-07;35721;0.0013157526385039612;1;0;Young +15933;Liechtenstein;M;Technicians and associate professionals;Not stated   ;Y50-64;19;1;7.240382040358865e-08;35721;0.0005319000027994737;0;1;Old +15934;Liechtenstein;M;Technicians and associate professionals;Not stated   ;Y65-84;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15935;Liechtenstein;M;Clerical support workers;Manufacturing   ;Y15-29;27;1;1.0288963952088914e-07;35721;0.0007558578987150416;1;0;Young +15936;Liechtenstein;M;Clerical support workers;Manufacturing   ;Y30-49;75;1;2.8580455422469204e-07;35721;0.002099605274208449;1;0;Young +15937;Liechtenstein;M;Clerical support workers;Manufacturing   ;Y50-64;60;1;2.2864364337975364e-07;35721;0.001679684219366759;0;1;Old +15938;Liechtenstein;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15939;Liechtenstein;M;Clerical support workers;Construction   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15940;Liechtenstein;M;Clerical support workers;Construction   ;Y30-49;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +15941;Liechtenstein;M;Clerical support workers;Construction   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15942;Liechtenstein;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +15943;Liechtenstein;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;26;1;9.907891213122657e-08;35721;0.0007278631617255956;1;0;Young +15944;Liechtenstein;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +15945;Liechtenstein;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15946;Liechtenstein;M;Clerical support workers;Transportation and storage   ;Y15-29;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15947;Liechtenstein;M;Clerical support workers;Transportation and storage   ;Y30-49;27;1;1.0288963952088914e-07;35721;0.0007558578987150416;1;0;Young +15948;Liechtenstein;M;Clerical support workers;Transportation and storage   ;Y50-64;14;1;5.335018345527585e-08;35721;0.0003919263178522438;0;1;Old +15949;Liechtenstein;M;Clerical support workers;Information and communication   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15950;Liechtenstein;M;Clerical support workers;Information and communication   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15951;Liechtenstein;M;Clerical support workers;Financial and insurance activities   ;Y15-29;36;1;1.3718618602785217e-07;35721;0.0010078105316200555;1;0;Young +15952;Liechtenstein;M;Clerical support workers;Financial and insurance activities   ;Y30-49;53;1;2.019685516521157e-07;35721;0.0014837210604406372;1;0;Young +15953;Liechtenstein;M;Clerical support workers;Financial and insurance activities   ;Y50-64;31;1;1.1813254907953938e-07;35721;0.0008678368466728255;0;1;Old +15954;Liechtenstein;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;25;1;9.526818474156401e-08;35721;0.0006998684247361497;1;0;Young +15955;Liechtenstein;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;33;1;1.257540038588645e-07;35721;0.0009238263206517175;1;0;Young +15956;Liechtenstein;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;29;1;1.1051109430021426e-07;35721;0.0008118473726939335;0;1;Old +15957;Liechtenstein;M;Clerical support workers;Administrative and support service activities   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15958;Liechtenstein;M;Clerical support workers;Administrative and support service activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15959;Liechtenstein;M;Clerical support workers;Administrative and support service activities   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15960;Liechtenstein;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15961;Liechtenstein;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;45;1;1.7148273253481523e-07;35721;0.0012597631645250692;1;0;Young +15962;Liechtenstein;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;29;1;1.1051109430021426e-07;35721;0.0008118473726939335;0;1;Old +15963;Liechtenstein;M;Clerical support workers;Human health and social work activities   ;Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15964;Liechtenstein;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15965;Liechtenstein;M;Clerical support workers;Not stated   ;Y15-29;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15966;Liechtenstein;M;Clerical support workers;Not stated   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +15967;Liechtenstein;M;Clerical support workers;Not stated   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +15968;Liechtenstein;M;Clerical support workers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15969;Liechtenstein;M;Service and sales workers;Manufacturing   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15970;Liechtenstein;M;Service and sales workers;Manufacturing   ;Y30-49;20;1;7.621454779325121e-08;35721;0.0005598947397889197;1;0;Young +15971;Liechtenstein;M;Service and sales workers;Manufacturing   ;Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +15972;Liechtenstein;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +15973;Liechtenstein;M;Service and sales workers;Construction   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +15974;Liechtenstein;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +15975;Liechtenstein;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;31;1;1.1813254907953938e-07;35721;0.0008678368466728255;1;0;Young +15976;Liechtenstein;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;28;1;1.067003669105517e-07;35721;0.0007838526357044876;0;1;Old +15977;Liechtenstein;M;Service and sales workers;Transportation and storage   ;Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15978;Liechtenstein;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;21;1;8.002527518291377e-08;35721;0.0005878894767783657;1;0;Young +15979;Liechtenstein;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;62;1;2.3626509815907876e-07;35721;0.001735673693345651;1;0;Young +15980;Liechtenstein;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;14;1;5.335018345527585e-08;35721;0.0003919263178522438;0;1;Old +15981;Liechtenstein;M;Service and sales workers;Financial and insurance activities   ;Y30-49;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +15982;Liechtenstein;M;Service and sales workers;Financial and insurance activities   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15983;Liechtenstein;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +15984;Liechtenstein;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15985;Liechtenstein;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;0;1;Old +15986;Liechtenstein;M;Service and sales workers;Administrative and support service activities   ;Y15-29;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +15987;Liechtenstein;M;Service and sales workers;Administrative and support service activities   ;Y30-49;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +15988;Liechtenstein;M;Service and sales workers;Administrative and support service activities   ;Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +15989;Liechtenstein;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +15990;Liechtenstein;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;83;1;3.1629037334199253e-07;35721;0.0023235631701240167;1;0;Young +15991;Liechtenstein;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;52;1;1.9815782426245315e-07;35721;0.0014557263234511912;0;1;Old +15992;Liechtenstein;M;Service and sales workers;Education   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +15993;Liechtenstein;M;Service and sales workers;Education   ;Y30-49;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +15994;Liechtenstein;M;Service and sales workers;Education   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +15995;Liechtenstein;M;Service and sales workers;Human health and social work activities   ;Y15-29;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15996;Liechtenstein;M;Service and sales workers;Human health and social work activities   ;Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +15997;Liechtenstein;M;Service and sales workers;Human health and social work activities   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +15998;Liechtenstein;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +15999;Liechtenstein;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +16000;Liechtenstein;M;Service and sales workers;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16001;Liechtenstein;M;Service and sales workers;Other service activities   ;Y30-49;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +16002;Liechtenstein;M;Service and sales workers;Other service activities   ;Y50-64;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;0;1;Old +16003;Liechtenstein;M;Service and sales workers;Other service activities   ;Y65-84;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +16004;Liechtenstein;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +16005;Liechtenstein;M;Service and sales workers;Not stated   ;Y15-29;21;1;8.002527518291377e-08;35721;0.0005878894767783657;1;0;Young +16006;Liechtenstein;M;Service and sales workers;Not stated   ;Y30-49;15;1;5.716091084493841e-08;35721;0.00041992105484168975;1;0;Young +16007;Liechtenstein;M;Service and sales workers;Not stated   ;Y50-64;13;1;4.953945606561329e-08;35721;0.0003639315808627978;0;1;Old +16008;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;19;1;7.240382040358865e-08;35721;0.0005319000027994737;1;0;Young +16009;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;51;1;1.943470968727906e-07;35721;0.0014277315864617453;1;0;Young +16010;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;31;1;1.1813254907953938e-07;35721;0.0008678368466728255;0;1;Old +16011;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +16012;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16013;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +16014;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;20;1;7.621454779325121e-08;35721;0.0005598947397889197;1;0;Young +16015;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +16016;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +16017;Liechtenstein;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;15;1;5.716091084493841e-08;35721;0.00041992105484168975;1;0;Young +16018;Liechtenstein;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16019;Liechtenstein;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +16020;Liechtenstein;M;Craft and related trades workers;Manufacturing   ;Y15-29;226;1;8.612243900637387e-07;35721;0.006326810559614792;1;0;Young +16021;Liechtenstein;M;Craft and related trades workers;Manufacturing   ;Y30-49;279;1;1.0631929417158544e-06;35721;0.00781053162005543;1;0;Young +16022;Liechtenstein;M;Craft and related trades workers;Manufacturing   ;Y50-64;161;1;6.135271097356723e-07;35721;0.004507152655300804;0;1;Old +16023;Liechtenstein;M;Craft and related trades workers;Manufacturing   ;Y65-84;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;0;1;Old +16024;Liechtenstein;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;25;1;9.526818474156401e-08;35721;0.0006998684247361497;1;0;Young +16025;Liechtenstein;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;15;1;5.716091084493841e-08;35721;0.00041992105484168975;1;0;Young +16026;Liechtenstein;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +16027;Liechtenstein;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +16028;Liechtenstein;M;Craft and related trades workers;Construction   ;Y15-29;275;1;1.0479500321572042e-06;35721;0.007698552672097646;1;0;Young +16029;Liechtenstein;M;Craft and related trades workers;Construction   ;Y30-49;296;1;1.127975307340118e-06;35721;0.008286442148876012;1;0;Young +16030;Liechtenstein;M;Craft and related trades workers;Construction   ;Y50-64;134;1;5.106374702147831e-07;35721;0.003751294756585762;0;1;Old +16031;Liechtenstein;M;Craft and related trades workers;Construction   ;Y65-84;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +16032;Liechtenstein;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;67;1;2.5531873510739155e-07;35721;0.001875647378292881;1;0;Young +16033;Liechtenstein;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;73;1;2.7818309944536694e-07;35721;0.002043615800229557;1;0;Young +16034;Liechtenstein;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;42;1;1.6005055036582754e-07;35721;0.0011757789535567313;0;1;Old +16035;Liechtenstein;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +16036;Liechtenstein;M;Craft and related trades workers;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16037;Liechtenstein;M;Craft and related trades workers;Transportation and storage   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +16038;Liechtenstein;M;Craft and related trades workers;Information and communication   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +16039;Liechtenstein;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16040;Liechtenstein;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +16041;Liechtenstein;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +16042;Liechtenstein;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +16043;Liechtenstein;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +16044;Liechtenstein;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +16045;Liechtenstein;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +16046;Liechtenstein;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +16047;Liechtenstein;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;0;1;Old +16048;Liechtenstein;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16049;Liechtenstein;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16050;Liechtenstein;M;Craft and related trades workers;Other service activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16051;Liechtenstein;M;Craft and related trades workers;Not stated   ;Y15-29;41;1;1.56239822976165e-07;35721;0.0011477842165672854;1;0;Young +16052;Liechtenstein;M;Craft and related trades workers;Not stated   ;Y30-49;23;1;8.764672996223889e-08;35721;0.0006438789507572576;1;0;Young +16053;Liechtenstein;M;Craft and related trades workers;Not stated   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +16054;Liechtenstein;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +16055;Liechtenstein;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +16056;Liechtenstein;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;23;1;8.764672996223889e-08;35721;0.0006438789507572576;1;0;Young +16057;Liechtenstein;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;57;1;2.1721146121076594e-07;35721;0.001595700008398421;1;0;Young +16058;Liechtenstein;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;40;1;1.5242909558650242e-07;35721;0.0011197894795778394;0;1;Old +16059;Liechtenstein;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +16060;Liechtenstein;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +16061;Liechtenstein;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;42;1;1.6005055036582754e-07;35721;0.0011757789535567313;1;0;Young +16062;Liechtenstein;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;26;1;9.907891213122657e-08;35721;0.0007278631617255956;0;1;Old +16063;Liechtenstein;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;23;1;8.764672996223889e-08;35721;0.0006438789507572576;1;0;Young +16064;Liechtenstein;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +16065;Liechtenstein;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;70;1;2.6675091727637925e-07;35721;0.0019596315892612187;1;0;Young +16066;Liechtenstein;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;50;1;1.9053636948312803e-07;35721;0.0013997368494722993;0;1;Old +16067;Liechtenstein;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +16068;Liechtenstein;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16069;Liechtenstein;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +16070;Liechtenstein;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +16071;Liechtenstein;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;8;1;3.048581911730048e-08;35721;0.00022395789591556789;0;1;Old +16072;Liechtenstein;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;1;0;Young +16073;Liechtenstein;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +16074;Liechtenstein;M;Elementary occupations;Manufacturing   ;Y15-29;50;1;1.9053636948312803e-07;35721;0.0013997368494722993;1;0;Young +16075;Liechtenstein;M;Elementary occupations;Manufacturing   ;Y30-49;104;1;3.963156485249063e-07;35721;0.0029114526469023825;1;0;Young +16076;Liechtenstein;M;Elementary occupations;Manufacturing   ;Y50-64;41;1;1.56239822976165e-07;35721;0.0011477842165672854;0;1;Old +16077;Liechtenstein;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +16078;Liechtenstein;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +16079;Liechtenstein;M;Elementary occupations;Construction   ;Y15-29;41;1;1.56239822976165e-07;35721;0.0011477842165672854;1;0;Young +16080;Liechtenstein;M;Elementary occupations;Construction   ;Y30-49;57;1;2.1721146121076594e-07;35721;0.001595700008398421;1;0;Young +16081;Liechtenstein;M;Elementary occupations;Construction   ;Y50-64;23;1;8.764672996223889e-08;35721;0.0006438789507572576;0;1;Old +16082;Liechtenstein;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +16083;Liechtenstein;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +16084;Liechtenstein;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +16085;Liechtenstein;M;Elementary occupations;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16086;Liechtenstein;M;Elementary occupations;Financial and insurance activities   ;Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +16087;Liechtenstein;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16088;Liechtenstein;M;Elementary occupations;Administrative and support service activities   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +16089;Liechtenstein;M;Elementary occupations;Administrative and support service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +16090;Liechtenstein;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +16091;Liechtenstein;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;31;1;1.1813254907953938e-07;35721;0.0008678368466728255;1;0;Young +16092;Liechtenstein;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;24;1;9.145745735190145e-08;35721;0.0006718736877467036;0;1;Old +16093;Liechtenstein;M;Elementary occupations;Education   ;Y30-49;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +16094;Liechtenstein;M;Elementary occupations;Human health and social work activities   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +16095;Liechtenstein;M;Elementary occupations;Human health and social work activities   ;Y30-49;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +16096;Liechtenstein;M;Elementary occupations;Human health and social work activities   ;Y50-64;7;1;2.6675091727637924e-08;35721;0.0001959631589261219;0;1;Old +16097;Liechtenstein;M;Elementary occupations;Other service activities   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16098;Liechtenstein;M;Elementary occupations;Other service activities   ;Y50-64;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;0;1;Old +16099;Liechtenstein;M;Elementary occupations;Not stated   ;Y15-29;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;1;0;Young +16100;Liechtenstein;M;Elementary occupations;Not stated   ;Y30-49;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16101;Liechtenstein;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +16102;Liechtenstein;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;13;1;4.953945606561329e-08;35721;0.0003639315808627978;1;0;Young +16103;Liechtenstein;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +16104;Liechtenstein;M;Not stated;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +16105;Liechtenstein;M;Not stated;Manufacturing   ;Y15-29;120;1;4.572872867595073e-07;35721;0.003359368438733518;1;0;Young +16106;Liechtenstein;M;Not stated;Manufacturing   ;Y30-49;173;1;6.592558384116229e-07;35721;0.004843089499174155;1;0;Young +16107;Liechtenstein;M;Not stated;Manufacturing   ;Y50-64;86;1;3.277225555109802e-07;35721;0.0024075473810923546;0;1;Old +16108;Liechtenstein;M;Not stated;Manufacturing   ;Y65-84;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;0;1;Old +16109;Liechtenstein;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +16110;Liechtenstein;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +16111;Liechtenstein;M;Not stated;Construction   ;Y15-29;94;1;3.582083746282807e-07;35721;0.0026315052770079224;1;0;Young +16112;Liechtenstein;M;Not stated;Construction   ;Y30-49;99;1;3.772620115765935e-07;35721;0.002771478961955152;1;0;Young +16113;Liechtenstein;M;Not stated;Construction   ;Y50-64;60;1;2.2864364337975364e-07;35721;0.001679684219366759;0;1;Old +16114;Liechtenstein;M;Not stated;Construction   ;Y65-84;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +16115;Liechtenstein;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;1;0;Young +16116;Liechtenstein;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;46;1;1.7529345992447778e-07;35721;0.0012877579015145152;1;0;Young +16117;Liechtenstein;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;26;1;9.907891213122657e-08;35721;0.0007278631617255956;0;1;Old +16118;Liechtenstein;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;16;1;6.097163823460096e-08;35721;0.00044791579183113577;0;1;Old +16119;Liechtenstein;M;Not stated;Transportation and storage   ;Y15-29;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +16120;Liechtenstein;M;Not stated;Transportation and storage   ;Y30-49;23;1;8.764672996223889e-08;35721;0.0006438789507572576;1;0;Young +16121;Liechtenstein;M;Not stated;Transportation and storage   ;Y50-64;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;0;1;Old +16122;Liechtenstein;M;Not stated;Accommodation and food service activities   ;Y15-29;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +16123;Liechtenstein;M;Not stated;Accommodation and food service activities   ;Y30-49;20;1;7.621454779325121e-08;35721;0.0005598947397889197;1;0;Young +16124;Liechtenstein;M;Not stated;Accommodation and food service activities   ;Y50-64;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +16125;Liechtenstein;M;Not stated;Information and communication   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16126;Liechtenstein;M;Not stated;Information and communication   ;Y30-49;9;1;3.429654650696304e-08;35721;0.0002519526329050139;1;0;Young +16127;Liechtenstein;M;Not stated;Information and communication   ;Y50-64;5;1;1.9053636948312802e-08;35721;0.00013997368494722993;0;1;Old +16128;Liechtenstein;M;Not stated;Financial and insurance activities   ;Y15-29;22;1;8.383600257257633e-08;35721;0.0006158842137678116;1;0;Young +16129;Liechtenstein;M;Not stated;Financial and insurance activities   ;Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +16130;Liechtenstein;M;Not stated;Financial and insurance activities   ;Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +16131;Liechtenstein;M;Not stated;Professional, scientific and technical activities   ;Y15-29;27;1;1.0288963952088914e-07;35721;0.0007558578987150416;1;0;Young +16132;Liechtenstein;M;Not stated;Professional, scientific and technical activities   ;Y30-49;19;1;7.240382040358865e-08;35721;0.0005319000027994737;1;0;Young +16133;Liechtenstein;M;Not stated;Professional, scientific and technical activities   ;Y50-64;30;1;1.1432182168987682e-07;35721;0.0008398421096833795;0;1;Old +16134;Liechtenstein;M;Not stated;Professional, scientific and technical activities   ;Y65-84;13;1;4.953945606561329e-08;35721;0.0003639315808627978;0;1;Old +16135;Liechtenstein;M;Not stated;Administrative and support service activities   ;Y15-29;15;1;5.716091084493841e-08;35721;0.00041992105484168975;1;0;Young +16136;Liechtenstein;M;Not stated;Administrative and support service activities   ;Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +16137;Liechtenstein;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;17;1;6.478236562426352e-08;35721;0.00047591052882058174;1;0;Young +16138;Liechtenstein;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;14;1;5.335018345527585e-08;35721;0.0003919263178522438;1;0;Young +16139;Liechtenstein;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;26;1;9.907891213122657e-08;35721;0.0007278631617255956;0;1;Old +16140;Liechtenstein;M;Not stated;"Public administration and defence; compulsory social security   ";Y65-84;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +16141;Liechtenstein;M;Not stated;Education   ;Y15-29;8;1;3.048581911730048e-08;35721;0.00022395789591556789;1;0;Young +16142;Liechtenstein;M;Not stated;Education   ;Y30-49;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;1;0;Young +16143;Liechtenstein;M;Not stated;Education   ;Y50-64;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;0;1;Old +16144;Liechtenstein;M;Not stated;Human health and social work activities   ;Y15-29;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;1;0;Young +16145;Liechtenstein;M;Not stated;Human health and social work activities   ;Y30-49;12;1;4.5728728675950726e-08;35721;0.0003359368438733518;1;0;Young +16146;Liechtenstein;M;Not stated;Human health and social work activities   ;Y50-64;9;1;3.429654650696304e-08;35721;0.0002519526329050139;0;1;Old +16147;Liechtenstein;M;Not stated;Arts, entertainment and recreation   ;Y15-29;4;1;1.524290955865024e-08;35721;0.00011197894795778394;1;0;Young +16148;Liechtenstein;M;Not stated;Arts, entertainment and recreation   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +16149;Liechtenstein;M;Not stated;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;35721;8.398421096833795e-05;1;0;Young +16150;Liechtenstein;M;Not stated;Other service activities   ;Y30-49;6;1;2.2864364337975363e-08;35721;0.0001679684219366759;1;0;Young +16151;Liechtenstein;M;Not stated;Other service activities   ;Y50-64;4;1;1.524290955865024e-08;35721;0.00011197894795778394;0;1;Old +16152;Liechtenstein;M;Not stated;Not stated   ;Y15-29;36;1;1.3718618602785217e-07;35721;0.0010078105316200555;1;0;Young +16153;Liechtenstein;M;Not stated;Not stated   ;Y30-49;16;1;6.097163823460096e-08;35721;0.00044791579183113577;1;0;Young +16154;Liechtenstein;M;Not stated;Not stated   ;Y50-64;11;1;4.1918001286288165e-08;35721;0.0003079421068839058;0;1;Old +16155;Liechtenstein;M;Not stated;Not stated   ;Y65-84;10;1;3.8107273896625604e-08;35721;0.00027994736989445985;0;1;Old +16156;Luxembourg;F;Not applicable;Not applicable  ;Y15-29;28312;1;0.00010788931385612641;512353;0.055258776663745506;1;0;Young +16157;Luxembourg;F;Not applicable;Not applicable  ;Y30-49;20922;1;7.972803844652009e-05;512353;0.040835127343843015;1;0;Young +16158;Luxembourg;F;Not applicable;Not applicable  ;Y50-64;25978;1;9.8995076128654e-05;512353;0.050703323685037466;0;1;Old +16159;Luxembourg;F;Not applicable;Not applicable  ;Y65-84;34635;1;0.0001319845431409628;512353;0.06759987742825747;0;1;Old +16160;Luxembourg;F;Not applicable;Not applicable  ;Y_GE85;5991;1;2.28300677914684e-05;512353;0.011693110023753155;0;1;Old +16161;Luxembourg;F;Not applicable;Not applicable  ;Y_LT15;43170;1;0.00016450910141173274;512353;0.08425831409204201;0;1;Old +16162;Luxembourg;F;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16163;Luxembourg;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;40;1;1.5242909558650242e-07;512353;7.807117358539913e-05;1;0;Young +16164;Luxembourg;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;1;0;Young +16165;Luxembourg;F;Armed forces occupations;Other service activities   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16166;Luxembourg;F;Armed forces occupations;Not stated   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16167;Luxembourg;F;Armed forces occupations;Not stated   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16168;Luxembourg;F;Managers;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16169;Luxembourg;F;Managers;Agriculture, forestry and fishing   ;Y30-49;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16170;Luxembourg;F;Managers;Agriculture, forestry and fishing   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16171;Luxembourg;F;Managers;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16172;Luxembourg;F;Managers;Manufacturing   ;Y15-29;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;1;0;Young +16173;Luxembourg;F;Managers;Manufacturing   ;Y30-49;104;1;3.963156485249063e-07;512353;0.00020298505132203775;1;0;Young +16174;Luxembourg;F;Managers;Manufacturing   ;Y50-64;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;0;1;Old +16175;Luxembourg;F;Managers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16176;Luxembourg;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16177;Luxembourg;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16178;Luxembourg;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16179;Luxembourg;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16180;Luxembourg;F;Managers;Construction   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +16181;Luxembourg;F;Managers;Construction   ;Y30-49;56;1;2.134007338211034e-07;512353;0.00010929964301955878;1;0;Young +16182;Luxembourg;F;Managers;Construction   ;Y50-64;28;1;1.067003669105517e-07;512353;5.464982150977939e-05;0;1;Old +16183;Luxembourg;F;Managers;Construction   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16184;Luxembourg;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;29;1;1.1051109430021426e-07;512353;5.660160084941437e-05;1;0;Young +16185;Luxembourg;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;215;1;8.193063887774505e-07;512353;0.00041963255802152035;1;0;Young +16186;Luxembourg;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;123;1;4.6871946892849497e-07;512353;0.00024006885877510232;0;1;Old +16187;Luxembourg;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +16188;Luxembourg;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16189;Luxembourg;F;Managers;Transportation and storage   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +16190;Luxembourg;F;Managers;Transportation and storage   ;Y30-49;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;1;0;Young +16191;Luxembourg;F;Managers;Transportation and storage   ;Y50-64;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +16192;Luxembourg;F;Managers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16193;Luxembourg;F;Managers;Accommodation and food service activities   ;Y15-29;48;1;1.829149147038029e-07;512353;9.368540830247895e-05;1;0;Young +16194;Luxembourg;F;Managers;Accommodation and food service activities   ;Y30-49;335;1;1.2765936755369577e-06;512353;0.0006538460787777177;1;0;Young +16195;Luxembourg;F;Managers;Accommodation and food service activities   ;Y50-64;168;1;6.402022014633102e-07;512353;0.00032789892905867637;0;1;Old +16196;Luxembourg;F;Managers;Accommodation and food service activities   ;Y65-84;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;0;1;Old +16197;Luxembourg;F;Managers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16198;Luxembourg;F;Managers;Information and communication   ;Y15-29;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +16199;Luxembourg;F;Managers;Information and communication   ;Y30-49;75;1;2.8580455422469204e-07;512353;0.00014638345047262338;1;0;Young +16200;Luxembourg;F;Managers;Information and communication   ;Y50-64;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;0;1;Old +16201;Luxembourg;F;Managers;Financial and insurance activities   ;Y15-29;80;1;3.0485819117300483e-07;512353;0.00015614234717079825;1;0;Young +16202;Luxembourg;F;Managers;Financial and insurance activities   ;Y30-49;651;1;2.480783530670327e-06;512353;0.0012706083501023708;1;0;Young +16203;Luxembourg;F;Managers;Financial and insurance activities   ;Y50-64;112;1;4.268014676422068e-07;512353;0.00021859928603911756;0;1;Old +16204;Luxembourg;F;Managers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16205;Luxembourg;F;Managers;Real estate activities   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16206;Luxembourg;F;Managers;Real estate activities   ;Y30-49;39;1;1.4861836819683987e-07;512353;7.611939424576415e-05;1;0;Young +16207;Luxembourg;F;Managers;Real estate activities   ;Y50-64;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;0;1;Old +16208;Luxembourg;F;Managers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16209;Luxembourg;F;Managers;Professional, scientific and technical activities   ;Y15-29;82;1;3.1247964595233e-07;512353;0.0001600459058500682;1;0;Young +16210;Luxembourg;F;Managers;Professional, scientific and technical activities   ;Y30-49;242;1;9.221960282983396e-07;512353;0.00047233060019166473;1;0;Young +16211;Luxembourg;F;Managers;Professional, scientific and technical activities   ;Y50-64;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;0;1;Old +16212;Luxembourg;F;Managers;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16213;Luxembourg;F;Managers;Administrative and support service activities   ;Y15-29;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;1;0;Young +16214;Luxembourg;F;Managers;Administrative and support service activities   ;Y30-49;47;1;1.7910418731414036e-07;512353;9.173362896284398e-05;1;0;Young +16215;Luxembourg;F;Managers;Administrative and support service activities   ;Y50-64;23;1;8.764672996223889e-08;512353;4.48909248116045e-05;0;1;Old +16216;Luxembourg;F;Managers;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16217;Luxembourg;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;1;0;Young +16218;Luxembourg;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;137;1;5.220696523837708e-07;512353;0.000267393769529992;1;0;Young +16219;Luxembourg;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;45;1;1.7148273253481523e-07;512353;8.783007028357402e-05;0;1;Old +16220;Luxembourg;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16221;Luxembourg;F;Managers;Education   ;Y15-29;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16222;Luxembourg;F;Managers;Education   ;Y30-49;47;1;1.7910418731414036e-07;512353;9.173362896284398e-05;1;0;Young +16223;Luxembourg;F;Managers;Education   ;Y50-64;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;0;1;Old +16224;Luxembourg;F;Managers;Human health and social work activities   ;Y15-29;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +16225;Luxembourg;F;Managers;Human health and social work activities   ;Y30-49;122;1;4.6490874153883237e-07;512353;0.00023811707943546736;1;0;Young +16226;Luxembourg;F;Managers;Human health and social work activities   ;Y50-64;39;1;1.4861836819683987e-07;512353;7.611939424576415e-05;0;1;Old +16227;Luxembourg;F;Managers;Arts, entertainment and recreation   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16228;Luxembourg;F;Managers;Arts, entertainment and recreation   ;Y30-49;25;1;9.526818474156401e-08;512353;4.879448349087445e-05;1;0;Young +16229;Luxembourg;F;Managers;Arts, entertainment and recreation   ;Y50-64;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +16230;Luxembourg;F;Managers;Other service activities   ;Y15-29;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;1;0;Young +16231;Luxembourg;F;Managers;Other service activities   ;Y30-49;75;1;2.8580455422469204e-07;512353;0.00014638345047262338;1;0;Young +16232;Luxembourg;F;Managers;Other service activities   ;Y50-64;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;0;1;Old +16233;Luxembourg;F;Managers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16234;Luxembourg;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;1;0;Young +16235;Luxembourg;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;188;1;7.164167492565614e-07;512353;0.0003669345158513759;1;0;Young +16236;Luxembourg;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;78;1;2.9723673639367974e-07;512353;0.0001522387884915283;0;1;Old +16237;Luxembourg;F;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16238;Luxembourg;F;Managers;Not stated   ;Y15-29;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;1;0;Young +16239;Luxembourg;F;Managers;Not stated   ;Y30-49;280;1;1.067003669105517e-06;512353;0.0005464982150977939;1;0;Young +16240;Luxembourg;F;Managers;Not stated   ;Y50-64;120;1;4.572872867595073e-07;512353;0.00023421352075619738;0;1;Old +16241;Luxembourg;F;Managers;Not stated   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16242;Luxembourg;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16243;Luxembourg;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +16244;Luxembourg;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16245;Luxembourg;F;Professionals;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16246;Luxembourg;F;Professionals;Manufacturing   ;Y15-29;55;1;2.0959000643144082e-07;512353;0.0001073478636799238;1;0;Young +16247;Luxembourg;F;Professionals;Manufacturing   ;Y30-49;210;1;8.002527518291377e-07;512353;0.0004098736613233454;1;0;Young +16248;Luxembourg;F;Professionals;Manufacturing   ;Y50-64;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;0;1;Old +16249;Luxembourg;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;1;0;Young +16250;Luxembourg;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;1;0;Young +16251;Luxembourg;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +16252;Luxembourg;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16253;Luxembourg;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16254;Luxembourg;F;Professionals;Construction   ;Y15-29;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;1;0;Young +16255;Luxembourg;F;Professionals;Construction   ;Y30-49;51;1;1.943470968727906e-07;512353;9.954074632138388e-05;1;0;Young +16256;Luxembourg;F;Professionals;Construction   ;Y50-64;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +16257;Luxembourg;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;77;1;2.9342600900401714e-07;512353;0.00015028700915189333;1;0;Young +16258;Luxembourg;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;273;1;1.040328577377879e-06;512353;0.0005328357597203491;1;0;Young +16259;Luxembourg;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;89;1;3.3915473767996787e-07;512353;0.00017370836122751305;0;1;Old +16260;Luxembourg;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +16261;Luxembourg;F;Professionals;Transportation and storage   ;Y15-29;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;1;0;Young +16262;Luxembourg;F;Professionals;Transportation and storage   ;Y30-49;71;1;2.705616446660418e-07;512353;0.00013857633311408345;1;0;Young +16263;Luxembourg;F;Professionals;Transportation and storage   ;Y50-64;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;0;1;Old +16264;Luxembourg;F;Professionals;Accommodation and food service activities   ;Y15-29;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;1;0;Young +16265;Luxembourg;F;Professionals;Accommodation and food service activities   ;Y30-49;28;1;1.067003669105517e-07;512353;5.464982150977939e-05;1;0;Young +16266;Luxembourg;F;Professionals;Accommodation and food service activities   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16267;Luxembourg;F;Professionals;Information and communication   ;Y15-29;100;1;3.8107273896625605e-07;512353;0.0001951779339634978;1;0;Young +16268;Luxembourg;F;Professionals;Information and communication   ;Y30-49;305;1;1.162271853847081e-06;512353;0.0005952926985886683;1;0;Young +16269;Luxembourg;F;Professionals;Information and communication   ;Y50-64;44;1;1.6767200514515266e-07;512353;8.587829094393905e-05;0;1;Old +16270;Luxembourg;F;Professionals;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16271;Luxembourg;F;Professionals;Financial and insurance activities   ;Y15-29;430;1;1.638612777554901e-06;512353;0.0008392651160430407;1;0;Young +16272;Luxembourg;F;Professionals;Financial and insurance activities   ;Y30-49;1787;1;6.809769845326996e-06;512353;0.003487829679927706;1;0;Young +16273;Luxembourg;F;Professionals;Financial and insurance activities   ;Y50-64;196;1;7.469025683738619e-07;512353;0.0003825487505684557;0;1;Old +16274;Luxembourg;F;Professionals;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16275;Luxembourg;F;Professionals;Real estate activities   ;Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16276;Luxembourg;F;Professionals;Real estate activities   ;Y30-49;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +16277;Luxembourg;F;Professionals;Real estate activities   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16278;Luxembourg;F;Professionals;Professional, scientific and technical activities   ;Y15-29;739;1;2.8161275409606323e-06;512353;0.0014423649319902489;1;0;Young +16279;Luxembourg;F;Professionals;Professional, scientific and technical activities   ;Y30-49;1203;1;4.5843050497640604e-06;512353;0.002347990545580879;1;0;Young +16280;Luxembourg;F;Professionals;Professional, scientific and technical activities   ;Y50-64;168;1;6.402022014633102e-07;512353;0.00032789892905867637;0;1;Old +16281;Luxembourg;F;Professionals;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +16282;Luxembourg;F;Professionals;Administrative and support service activities   ;Y15-29;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;1;0;Young +16283;Luxembourg;F;Professionals;Administrative and support service activities   ;Y30-49;85;1;3.239118281213176e-07;512353;0.00016590124386897315;1;0;Young +16284;Luxembourg;F;Professionals;Administrative and support service activities   ;Y50-64;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +16285;Luxembourg;F;Professionals;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16286;Luxembourg;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;941;1;3.5858944736724696e-06;512353;0.0018366243585965145;1;0;Young +16287;Luxembourg;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2437;1;9.28674264860766e-06;512353;0.004756486250690442;1;0;Young +16288;Luxembourg;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;907;1;3.4563297424239425e-06;512353;0.0017702638610489253;0;1;Old +16289;Luxembourg;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16290;Luxembourg;F;Professionals;Education   ;Y15-29;759;1;2.8923420887538835e-06;512353;0.0014814005187829486;1;0;Young +16291;Luxembourg;F;Professionals;Education   ;Y30-49;1945;1;7.4118647728936806e-06;512353;0.0037962108155900325;1;0;Young +16292;Luxembourg;F;Professionals;Education   ;Y50-64;577;1;2.1987897038352974e-06;512353;0.0011261766789693825;0;1;Old +16293;Luxembourg;F;Professionals;Education   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16294;Luxembourg;F;Professionals;Human health and social work activities   ;Y15-29;547;1;2.0844678821454206e-06;512353;0.0010676232987803331;1;0;Young +16295;Luxembourg;F;Professionals;Human health and social work activities   ;Y30-49;1733;1;6.603990566285218e-06;512353;0.0033824335955874173;1;0;Young +16296;Luxembourg;F;Professionals;Human health and social work activities   ;Y50-64;479;1;1.8253384196483665e-06;512353;0.0009349023036851545;0;1;Old +16297;Luxembourg;F;Professionals;Human health and social work activities   ;Y65-84;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +16298;Luxembourg;F;Professionals;Arts, entertainment and recreation   ;Y15-29;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;1;0;Young +16299;Luxembourg;F;Professionals;Arts, entertainment and recreation   ;Y30-49;91;1;3.46776192459293e-07;512353;0.000177611919906783;1;0;Young +16300;Luxembourg;F;Professionals;Arts, entertainment and recreation   ;Y50-64;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16301;Luxembourg;F;Professionals;Other service activities   ;Y15-29;59;1;2.2483291599009106e-07;512353;0.00011515498103846371;1;0;Young +16302;Luxembourg;F;Professionals;Other service activities   ;Y30-49;247;1;9.412496652466524e-07;512353;0.0004820894968898396;1;0;Young +16303;Luxembourg;F;Professionals;Other service activities   ;Y50-64;71;1;2.705616446660418e-07;512353;0.00013857633311408345;0;1;Old +16304;Luxembourg;F;Professionals;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16305;Luxembourg;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16306;Luxembourg;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16307;Luxembourg;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;200;1;7.621454779325121e-07;512353;0.0003903558679269956;1;0;Young +16308;Luxembourg;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2105;1;8.02158115523969e-06;512353;0.004108495509931629;1;0;Young +16309;Luxembourg;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;641;1;2.4426762567737013e-06;512353;0.001251090556706021;0;1;Old +16310;Luxembourg;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16311;Luxembourg;F;Professionals;Not stated   ;Y15-29;417;1;1.5890733214892878e-06;512353;0.000813891984627786;1;0;Young +16312;Luxembourg;F;Professionals;Not stated   ;Y30-49;1270;1;4.839623784871452e-06;512353;0.0024787597613364224;1;0;Young +16313;Luxembourg;F;Professionals;Not stated   ;Y50-64;427;1;1.6271805953859134e-06;512353;0.0008334097780241357;0;1;Old +16314;Luxembourg;F;Professionals;Not stated   ;Y65-84;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16315;Luxembourg;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16316;Luxembourg;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;1;0;Young +16317;Luxembourg;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16318;Luxembourg;F;Technicians and associate professionals;Manufacturing   ;Y15-29;45;1;1.7148273253481523e-07;512353;8.783007028357402e-05;1;0;Young +16319;Luxembourg;F;Technicians and associate professionals;Manufacturing   ;Y30-49;174;1;6.630665658012855e-07;512353;0.0003396096050964862;1;0;Young +16320;Luxembourg;F;Technicians and associate professionals;Manufacturing   ;Y50-64;60;1;2.2864364337975364e-07;512353;0.00011710676037809869;0;1;Old +16321;Luxembourg;F;Technicians and associate professionals;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16322;Luxembourg;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16323;Luxembourg;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +16324;Luxembourg;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16325;Luxembourg;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16326;Luxembourg;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16327;Luxembourg;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16328;Luxembourg;F;Technicians and associate professionals;Construction   ;Y15-29;38;1;1.448076408071773e-07;512353;7.416761490612917e-05;1;0;Young +16329;Luxembourg;F;Technicians and associate professionals;Construction   ;Y30-49;131;1;4.992052880457954e-07;512353;0.00025568309349218213;1;0;Young +16330;Luxembourg;F;Technicians and associate professionals;Construction   ;Y50-64;62;1;2.3626509815907876e-07;512353;0.00012101031905736865;0;1;Old +16331;Luxembourg;F;Technicians and associate professionals;Construction   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16332;Luxembourg;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;175;1;6.668772931909481e-07;512353;0.00034156138443612117;1;0;Young +16333;Luxembourg;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;407;1;1.5509660475926622e-06;512353;0.0007943741912314361;1;0;Young +16334;Luxembourg;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;130;1;4.953945606561329e-07;512353;0.00025373131415254717;0;1;Old +16335;Luxembourg;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +16336;Luxembourg;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;1;0;Young +16337;Luxembourg;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;142;1;5.411232893320836e-07;512353;0.0002771526662281669;1;0;Young +16338;Luxembourg;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;38;1;1.448076408071773e-07;512353;7.416761490612917e-05;0;1;Old +16339;Luxembourg;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;1;0;Young +16340;Luxembourg;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;50;1;1.9053636948312803e-07;512353;9.75889669817489e-05;1;0;Young +16341;Luxembourg;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +16342;Luxembourg;F;Technicians and associate professionals;Information and communication   ;Y15-29;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;1;0;Young +16343;Luxembourg;F;Technicians and associate professionals;Information and communication   ;Y30-49;144;1;5.487447441114087e-07;512353;0.00028105622490743687;1;0;Young +16344;Luxembourg;F;Technicians and associate professionals;Information and communication   ;Y50-64;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;0;1;Old +16345;Luxembourg;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;241;1;9.18385300908677e-07;512353;0.00047037882085202977;1;0;Young +16346;Luxembourg;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;1068;1;4.0698568521596144e-06;512353;0.0020845003347301568;1;0;Young +16347;Luxembourg;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;278;1;1.0593822143261918e-06;512353;0.0005425946564185239;0;1;Old +16348;Luxembourg;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;0;1;Old +16349;Luxembourg;F;Technicians and associate professionals;Real estate activities   ;Y15-29;43;1;1.638612777554901e-07;512353;8.392651160430407e-05;1;0;Young +16350;Luxembourg;F;Technicians and associate professionals;Real estate activities   ;Y30-49;110;1;4.1918001286288164e-07;512353;0.0002146957273598476;1;0;Young +16351;Luxembourg;F;Technicians and associate professionals;Real estate activities   ;Y50-64;57;1;2.1721146121076594e-07;512353;0.00011125142235919376;0;1;Old +16352;Luxembourg;F;Technicians and associate professionals;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16353;Luxembourg;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;289;1;1.10130021561248e-06;512353;0.0005640642291545087;1;0;Young +16354;Luxembourg;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;574;1;2.1873575216663095e-06;512353;0.0011203213409504776;1;0;Young +16355;Luxembourg;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;153;1;5.830412906183718e-07;512353;0.00029862223896415165;0;1;Old +16356;Luxembourg;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16357;Luxembourg;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;1;0;Young +16358;Luxembourg;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;106;1;4.039371033042314e-07;512353;0.0002068886100013077;1;0;Young +16359;Luxembourg;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;0;1;Old +16360;Luxembourg;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16361;Luxembourg;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;423;1;1.6119376858272632e-06;512353;0.0008256026606655958;1;0;Young +16362;Luxembourg;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;1195;1;4.55381923064676e-06;512353;0.002332376310863799;1;0;Young +16363;Luxembourg;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;354;1;1.3489974959405465e-06;512353;0.0006909298862307823;0;1;Old +16364;Luxembourg;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16365;Luxembourg;F;Technicians and associate professionals;Education   ;Y15-29;80;1;3.0485819117300483e-07;512353;0.00015614234717079825;1;0;Young +16366;Luxembourg;F;Technicians and associate professionals;Education   ;Y30-49;114;1;4.344229224215319e-07;512353;0.00022250284471838752;1;0;Young +16367;Luxembourg;F;Technicians and associate professionals;Education   ;Y50-64;40;1;1.5242909558650242e-07;512353;7.807117358539913e-05;0;1;Old +16368;Luxembourg;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;1320;1;5.03016015435458e-06;512353;0.0025763487283181714;1;0;Young +16369;Luxembourg;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;2429;1;9.256256829490359e-06;512353;0.0047408720159733625;1;0;Young +16370;Luxembourg;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;797;1;3.0371497295610606e-06;512353;0.0015555681336890776;0;1;Old +16371;Luxembourg;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16372;Luxembourg;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;1;0;Young +16373;Luxembourg;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;63;1;2.400758255487413e-07;512353;0.00012296209839700363;1;0;Young +16374;Luxembourg;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;0;1;Old +16375;Luxembourg;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16376;Luxembourg;F;Technicians and associate professionals;Other service activities   ;Y15-29;101;1;3.848834663559186e-07;512353;0.0001971297133031328;1;0;Young +16377;Luxembourg;F;Technicians and associate professionals;Other service activities   ;Y30-49;216;1;8.231171161671131e-07;512353;0.0004215843373611553;1;0;Young +16378;Luxembourg;F;Technicians and associate professionals;Other service activities   ;Y50-64;93;1;3.543976472386181e-07;512353;0.00018151547858605296;0;1;Old +16379;Luxembourg;F;Technicians and associate professionals;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16380;Luxembourg;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16381;Luxembourg;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16382;Luxembourg;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;62;1;2.3626509815907876e-07;512353;0.00012101031905736865;1;0;Young +16383;Luxembourg;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;566;1;2.156871702549009e-06;512353;0.0011047071062333976;1;0;Young +16384;Luxembourg;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;340;1;1.2956473124852705e-06;512353;0.0006636049754758926;0;1;Old +16385;Luxembourg;F;Technicians and associate professionals;Not stated   ;Y15-29;316;1;1.2041898551333691e-06;512353;0.0006167622713246531;1;0;Young +16386;Luxembourg;F;Technicians and associate professionals;Not stated   ;Y30-49;822;1;3.132417914302625e-06;512353;0.0016043626171799521;1;0;Young +16387;Luxembourg;F;Technicians and associate professionals;Not stated   ;Y50-64;322;1;1.2270542194713445e-06;512353;0.000628472947362463;0;1;Old +16388;Luxembourg;F;Technicians and associate professionals;Not stated   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16389;Luxembourg;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +16390;Luxembourg;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;1;0;Young +16391;Luxembourg;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16392;Luxembourg;F;Clerical support workers;Mining and quarrying   ;Y30-49;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16393;Luxembourg;F;Clerical support workers;Mining and quarrying   ;Y50-64;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +16394;Luxembourg;F;Clerical support workers;Manufacturing   ;Y15-29;79;1;3.010474637833423e-07;512353;0.0001541905678311633;1;0;Young +16395;Luxembourg;F;Clerical support workers;Manufacturing   ;Y30-49;299;1;1.1394074895091056e-06;512353;0.0005835820225508584;1;0;Young +16396;Luxembourg;F;Clerical support workers;Manufacturing   ;Y50-64;133;1;5.068267428251205e-07;512353;0.0002595866521714521;0;1;Old +16397;Luxembourg;F;Clerical support workers;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16398;Luxembourg;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;1;0;Young +16399;Luxembourg;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;1;0;Young +16400;Luxembourg;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +16401;Luxembourg;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16402;Luxembourg;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +16403;Luxembourg;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16404;Luxembourg;F;Clerical support workers;Construction   ;Y15-29;162;1;6.173378371253348e-07;512353;0.0003161882530208665;1;0;Young +16405;Luxembourg;F;Clerical support workers;Construction   ;Y30-49;442;1;1.6843415062308518e-06;512353;0.0008626864681186604;1;0;Young +16406;Luxembourg;F;Clerical support workers;Construction   ;Y50-64;165;1;6.287700192943225e-07;512353;0.0003220435910397714;0;1;Old +16407;Luxembourg;F;Clerical support workers;Construction   ;Y65-84;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16408;Luxembourg;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;348;1;1.326133131602571e-06;512353;0.0006792192101929724;1;0;Young +16409;Luxembourg;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;754;1;2.8732884518055705e-06;512353;0.0014716416220847735;1;0;Young +16410;Luxembourg;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;285;1;1.0860573060538298e-06;512353;0.0005562571117959687;0;1;Old +16411;Luxembourg;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;0;1;Old +16412;Luxembourg;F;Clerical support workers;Transportation and storage   ;Y15-29;140;1;5.335018345527585e-07;512353;0.00027324910754889697;1;0;Young +16413;Luxembourg;F;Clerical support workers;Transportation and storage   ;Y30-49;373;1;1.421401316344135e-06;512353;0.0007280136936838469;1;0;Young +16414;Luxembourg;F;Clerical support workers;Transportation and storage   ;Y50-64;101;1;3.848834663559186e-07;512353;0.0001971297133031328;0;1;Old +16415;Luxembourg;F;Clerical support workers;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16416;Luxembourg;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;54;1;2.0577927904177827e-07;512353;0.00010539608434028883;1;0;Young +16417;Luxembourg;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;81;1;3.086689185626674e-07;512353;0.00015809412651043324;1;0;Young +16418;Luxembourg;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;0;1;Old +16419;Luxembourg;F;Clerical support workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16420;Luxembourg;F;Clerical support workers;Information and communication   ;Y15-29;113;1;4.3061219503186933e-07;512353;0.00022055106537875255;1;0;Young +16421;Luxembourg;F;Clerical support workers;Information and communication   ;Y30-49;386;1;1.4709407724097484e-06;512353;0.0007533868250991016;1;0;Young +16422;Luxembourg;F;Clerical support workers;Information and communication   ;Y50-64;134;1;5.106374702147831e-07;512353;0.0002615384315110871;0;1;Old +16423;Luxembourg;F;Clerical support workers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16424;Luxembourg;F;Clerical support workers;Financial and insurance activities   ;Y15-29;433;1;1.6500449597238888e-06;512353;0.0008451204540619456;1;0;Young +16425;Luxembourg;F;Clerical support workers;Financial and insurance activities   ;Y30-49;2451;1;9.340092832062936e-06;512353;0.004783811161445332;1;0;Young +16426;Luxembourg;F;Clerical support workers;Financial and insurance activities   ;Y50-64;631;1;2.4045689828770757e-06;512353;0.0012315727633096713;0;1;Old +16427;Luxembourg;F;Clerical support workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16428;Luxembourg;F;Clerical support workers;Real estate activities   ;Y15-29;39;1;1.4861836819683987e-07;512353;7.611939424576415e-05;1;0;Young +16429;Luxembourg;F;Clerical support workers;Real estate activities   ;Y30-49;89;1;3.3915473767996787e-07;512353;0.00017370836122751305;1;0;Young +16430;Luxembourg;F;Clerical support workers;Real estate activities   ;Y50-64;41;1;1.56239822976165e-07;512353;8.00229529250341e-05;0;1;Old +16431;Luxembourg;F;Clerical support workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16432;Luxembourg;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;286;1;1.0898680334434924e-06;512353;0.0005582088911356038;1;0;Young +16433;Luxembourg;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;602;1;2.2940578885768615e-06;512353;0.001174971162460257;1;0;Young +16434;Luxembourg;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;200;1;7.621454779325121e-07;512353;0.0003903558679269956;0;1;Old +16435;Luxembourg;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16436;Luxembourg;F;Clerical support workers;Administrative and support service activities   ;Y15-29;175;1;6.668772931909481e-07;512353;0.00034156138443612117;1;0;Young +16437;Luxembourg;F;Clerical support workers;Administrative and support service activities   ;Y30-49;251;1;9.564925748053026e-07;512353;0.0004898966142483796;1;0;Young +16438;Luxembourg;F;Clerical support workers;Administrative and support service activities   ;Y50-64;75;1;2.8580455422469204e-07;512353;0.00014638345047262338;0;1;Old +16439;Luxembourg;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;314;1;1.196568400354044e-06;512353;0.0006128587126453831;1;0;Young +16440;Luxembourg;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;1155;1;4.401390135060257e-06;512353;0.0022543051372784;1;0;Young +16441;Luxembourg;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;438;1;1.6690985966722016e-06;512353;0.0008548793507601205;0;1;Old +16442;Luxembourg;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16443;Luxembourg;F;Clerical support workers;Education   ;Y15-29;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;1;0;Young +16444;Luxembourg;F;Clerical support workers;Education   ;Y30-49;111;1;4.2299074025254424e-07;512353;0.00021664750669948257;1;0;Young +16445;Luxembourg;F;Clerical support workers;Education   ;Y50-64;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;0;1;Old +16446;Luxembourg;F;Clerical support workers;Education   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16447;Luxembourg;F;Clerical support workers;Human health and social work activities   ;Y15-29;210;1;8.002527518291377e-07;512353;0.0004098736613233454;1;0;Young +16448;Luxembourg;F;Clerical support workers;Human health and social work activities   ;Y30-49;664;1;2.5303229867359402e-06;512353;0.0012959814815176256;1;0;Young +16449;Luxembourg;F;Clerical support workers;Human health and social work activities   ;Y50-64;250;1;9.526818474156401e-07;512353;0.00048794483490874455;0;1;Old +16450;Luxembourg;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;27;1;1.0288963952088914e-07;512353;5.2698042170144414e-05;1;0;Young +16451;Luxembourg;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;83;1;3.1629037334199253e-07;512353;0.0001619976851897032;1;0;Young +16452;Luxembourg;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;28;1;1.067003669105517e-07;512353;5.464982150977939e-05;0;1;Old +16453;Luxembourg;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16454;Luxembourg;F;Clerical support workers;Other service activities   ;Y15-29;47;1;1.7910418731414036e-07;512353;9.173362896284398e-05;1;0;Young +16455;Luxembourg;F;Clerical support workers;Other service activities   ;Y30-49;178;1;6.783094753599357e-07;512353;0.0003474167224550261;1;0;Young +16456;Luxembourg;F;Clerical support workers;Other service activities   ;Y50-64;77;1;2.9342600900401714e-07;512353;0.00015028700915189333;0;1;Old +16457;Luxembourg;F;Clerical support workers;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16458;Luxembourg;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16459;Luxembourg;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;42;1;1.6005055036582754e-07;512353;8.197473226466909e-05;1;0;Young +16460;Luxembourg;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;446;1;1.699584415789502e-06;512353;0.0008704935854772003;1;0;Young +16461;Luxembourg;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;344;1;1.310890222043921e-06;512353;0.0006714120928344326;0;1;Old +16462;Luxembourg;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16463;Luxembourg;F;Clerical support workers;Not stated   ;Y15-29;247;1;9.412496652466524e-07;512353;0.0004820894968898396;1;0;Young +16464;Luxembourg;F;Clerical support workers;Not stated   ;Y30-49;712;1;2.713237901439743e-06;512353;0.0013896668898201044;1;0;Young +16465;Luxembourg;F;Clerical support workers;Not stated   ;Y50-64;269;1;1.0250856678192288e-06;512353;0.0005250286423618091;0;1;Old +16466;Luxembourg;F;Clerical support workers;Not stated   ;Y65-84;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;0;1;Old +16467;Luxembourg;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16468;Luxembourg;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16469;Luxembourg;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16470;Luxembourg;F;Service and sales workers;Manufacturing   ;Y15-29;100;1;3.8107273896625605e-07;512353;0.0001951779339634978;1;0;Young +16471;Luxembourg;F;Service and sales workers;Manufacturing   ;Y30-49;291;1;1.1089216703918052e-06;512353;0.0005679677878337786;1;0;Young +16472;Luxembourg;F;Service and sales workers;Manufacturing   ;Y50-64;73;1;2.7818309944536694e-07;512353;0.0001424798917933534;0;1;Old +16473;Luxembourg;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16474;Luxembourg;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +16475;Luxembourg;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16476;Luxembourg;F;Service and sales workers;Construction   ;Y15-29;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;1;0;Young +16477;Luxembourg;F;Service and sales workers;Construction   ;Y30-49;57;1;2.1721146121076594e-07;512353;0.00011125142235919376;1;0;Young +16478;Luxembourg;F;Service and sales workers;Construction   ;Y50-64;28;1;1.067003669105517e-07;512353;5.464982150977939e-05;0;1;Old +16479;Luxembourg;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1180;1;4.4966583198018215e-06;512353;0.0023030996207692744;1;0;Young +16480;Luxembourg;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2140;1;8.15495661387788e-06;512353;0.004176807786818853;1;0;Young +16481;Luxembourg;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;760;1;2.896152816143546e-06;512353;0.0014833522981225835;0;1;Old +16482;Luxembourg;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;25;1;9.526818474156401e-08;512353;4.879448349087445e-05;0;1;Old +16483;Luxembourg;F;Service and sales workers;Transportation and storage   ;Y15-29;92;1;3.5058691984895557e-07;512353;0.000179563699246418;1;0;Young +16484;Luxembourg;F;Service and sales workers;Transportation and storage   ;Y30-49;196;1;7.469025683738619e-07;512353;0.0003825487505684557;1;0;Young +16485;Luxembourg;F;Service and sales workers;Transportation and storage   ;Y50-64;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;0;1;Old +16486;Luxembourg;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;664;1;2.5303229867359402e-06;512353;0.0012959814815176256;1;0;Young +16487;Luxembourg;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;1194;1;4.550008503257097e-06;512353;0.002330424531524164;1;0;Young +16488;Luxembourg;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;266;1;1.013653485650241e-06;512353;0.0005191733043429042;0;1;Old +16489;Luxembourg;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16490;Luxembourg;F;Service and sales workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16491;Luxembourg;F;Service and sales workers;Information and communication   ;Y15-29;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +16492;Luxembourg;F;Service and sales workers;Information and communication   ;Y30-49;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;1;0;Young +16493;Luxembourg;F;Service and sales workers;Information and communication   ;Y50-64;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +16494;Luxembourg;F;Service and sales workers;Financial and insurance activities   ;Y15-29;46;1;1.7529345992447778e-07;512353;8.9781849623209e-05;1;0;Young +16495;Luxembourg;F;Service and sales workers;Financial and insurance activities   ;Y30-49;94;1;3.582083746282807e-07;512353;0.00018346725792568795;1;0;Young +16496;Luxembourg;F;Service and sales workers;Financial and insurance activities   ;Y50-64;27;1;1.0288963952088914e-07;512353;5.2698042170144414e-05;0;1;Old +16497;Luxembourg;F;Service and sales workers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16498;Luxembourg;F;Service and sales workers;Real estate activities   ;Y15-29;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16499;Luxembourg;F;Service and sales workers;Real estate activities   ;Y30-49;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +16500;Luxembourg;F;Service and sales workers;Real estate activities   ;Y50-64;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16501;Luxembourg;F;Service and sales workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16502;Luxembourg;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;23;1;8.764672996223889e-08;512353;4.48909248116045e-05;1;0;Young +16503;Luxembourg;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;53;1;2.019685516521157e-07;512353;0.00010344430500065385;1;0;Young +16504;Luxembourg;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;0;1;Old +16505;Luxembourg;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16506;Luxembourg;F;Service and sales workers;Administrative and support service activities   ;Y15-29;60;1;2.2864364337975364e-07;512353;0.00011710676037809869;1;0;Young +16507;Luxembourg;F;Service and sales workers;Administrative and support service activities   ;Y30-49;160;1;6.097163823460097e-07;512353;0.0003122846943415965;1;0;Young +16508;Luxembourg;F;Service and sales workers;Administrative and support service activities   ;Y50-64;62;1;2.3626509815907876e-07;512353;0.00012101031905736865;0;1;Old +16509;Luxembourg;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;159;1;6.059056549563472e-07;512353;0.00031033291500196154;1;0;Young +16510;Luxembourg;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;474;1;1.8062847827000537e-06;512353;0.0009251434069869797;1;0;Young +16511;Luxembourg;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;225;1;8.574136626740762e-07;512353;0.0004391503514178701;0;1;Old +16512;Luxembourg;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16513;Luxembourg;F;Service and sales workers;Education   ;Y15-29;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;1;0;Young +16514;Luxembourg;F;Service and sales workers;Education   ;Y30-49;50;1;1.9053636948312803e-07;512353;9.75889669817489e-05;1;0;Young +16515;Luxembourg;F;Service and sales workers;Education   ;Y50-64;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;0;1;Old +16516;Luxembourg;F;Service and sales workers;Human health and social work activities   ;Y15-29;874;1;3.330575738565078e-06;512353;0.0017058551428409709;1;0;Young +16517;Luxembourg;F;Service and sales workers;Human health and social work activities   ;Y30-49;1778;1;6.775473298820033e-06;512353;0.0034702636658709915;1;0;Young +16518;Luxembourg;F;Service and sales workers;Human health and social work activities   ;Y50-64;624;1;2.377893891149438e-06;512353;0.0012179103079322264;0;1;Old +16519;Luxembourg;F;Service and sales workers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16520;Luxembourg;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;30;1;1.1432182168987682e-07;512353;5.8553380189049344e-05;1;0;Young +16521;Luxembourg;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;1;0;Young +16522;Luxembourg;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16523;Luxembourg;F;Service and sales workers;Other service activities   ;Y15-29;562;1;2.141628792990359e-06;512353;0.0010968999888748578;1;0;Young +16524;Luxembourg;F;Service and sales workers;Other service activities   ;Y30-49;766;1;2.9190171804815213e-06;512353;0.0014950629741603933;1;0;Young +16525;Luxembourg;F;Service and sales workers;Other service activities   ;Y50-64;155;1;5.906627453976969e-07;512353;0.00030252579764342163;0;1;Old +16526;Luxembourg;F;Service and sales workers;Other service activities   ;Y65-84;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16527;Luxembourg;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16528;Luxembourg;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;59;1;2.2483291599009106e-07;512353;0.00011515498103846371;1;0;Young +16529;Luxembourg;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16530;Luxembourg;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16531;Luxembourg;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16532;Luxembourg;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +16533;Luxembourg;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;0;1;Old +16534;Luxembourg;F;Service and sales workers;Not stated   ;Y15-29;599;1;2.2826257064078737e-06;512353;0.0011691158244413519;1;0;Young +16535;Luxembourg;F;Service and sales workers;Not stated   ;Y30-49;1203;1;4.5843050497640604e-06;512353;0.002347990545580879;1;0;Young +16536;Luxembourg;F;Service and sales workers;Not stated   ;Y50-64;414;1;1.5776411393203e-06;512353;0.000808036646608881;0;1;Old +16537;Luxembourg;F;Service and sales workers;Not stated   ;Y65-84;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;0;1;Old +16538;Luxembourg;F;Service and sales workers;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16539;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;43;1;1.638612777554901e-07;512353;8.392651160430407e-05;1;0;Young +16540;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;314;1;1.196568400354044e-06;512353;0.0006128587126453831;1;0;Young +16541;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;295;1;1.1241645799504554e-06;512353;0.0005757749051923186;0;1;Old +16542;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;41;1;1.56239822976165e-07;512353;8.00229529250341e-05;0;1;Old +16543;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16544;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16545;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +16546;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16547;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16548;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16549;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16550;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16551;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16552;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;60;1;2.2864364337975364e-07;512353;0.00011710676037809869;1;0;Young +16553;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;68;1;2.591294624970541e-07;512353;0.00013272099509517853;1;0;Young +16554;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16555;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16556;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16557;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16558;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16559;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16560;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16561;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16562;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16563;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16564;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16565;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;1;0;Young +16566;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16567;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16568;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;27;1;1.0288963952088914e-07;512353;5.2698042170144414e-05;1;0;Young +16569;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;27;1;1.0288963952088914e-07;512353;5.2698042170144414e-05;1;0;Young +16570;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16571;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16572;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;1;0;Young +16573;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16574;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16575;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16576;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16577;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16578;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16579;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;30;1;1.1432182168987682e-07;512353;5.8553380189049344e-05;1;0;Young +16580;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;84;1;3.201011007316551e-07;512353;0.00016394946452933818;1;0;Young +16581;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;59;1;2.2483291599009106e-07;512353;0.00011515498103846371;0;1;Old +16582;Luxembourg;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +16583;Luxembourg;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16584;Luxembourg;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16585;Luxembourg;F;Craft and related trades workers;Manufacturing   ;Y15-29;65;1;2.4769728032806646e-07;512353;0.00012686565707627359;1;0;Young +16586;Luxembourg;F;Craft and related trades workers;Manufacturing   ;Y30-49;176;1;6.706880205806106e-07;512353;0.0003435131637757562;1;0;Young +16587;Luxembourg;F;Craft and related trades workers;Manufacturing   ;Y50-64;47;1;1.7910418731414036e-07;512353;9.173362896284398e-05;0;1;Old +16588;Luxembourg;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16589;Luxembourg;F;Craft and related trades workers;Construction   ;Y15-29;41;1;1.56239822976165e-07;512353;8.00229529250341e-05;1;0;Young +16590;Luxembourg;F;Craft and related trades workers;Construction   ;Y30-49;84;1;3.201011007316551e-07;512353;0.00016394946452933818;1;0;Young +16591;Luxembourg;F;Craft and related trades workers;Construction   ;Y50-64;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;0;1;Old +16592;Luxembourg;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;39;1;1.4861836819683987e-07;512353;7.611939424576415e-05;1;0;Young +16593;Luxembourg;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;97;1;3.6964055679726836e-07;512353;0.0001893225959445929;1;0;Young +16594;Luxembourg;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;45;1;1.7148273253481523e-07;512353;8.783007028357402e-05;0;1;Old +16595;Luxembourg;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +16596;Luxembourg;F;Craft and related trades workers;Transportation and storage   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16597;Luxembourg;F;Craft and related trades workers;Transportation and storage   ;Y30-49;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;1;0;Young +16598;Luxembourg;F;Craft and related trades workers;Transportation and storage   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16599;Luxembourg;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +16600;Luxembourg;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16601;Luxembourg;F;Craft and related trades workers;Information and communication   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16602;Luxembourg;F;Craft and related trades workers;Information and communication   ;Y30-49;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16603;Luxembourg;F;Craft and related trades workers;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16604;Luxembourg;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16605;Luxembourg;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;1;0;Young +16606;Luxembourg;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16607;Luxembourg;F;Craft and related trades workers;Real estate activities   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16608;Luxembourg;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16609;Luxembourg;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +16610;Luxembourg;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16611;Luxembourg;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +16612;Luxembourg;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16613;Luxembourg;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16614;Luxembourg;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;1;0;Young +16615;Luxembourg;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16616;Luxembourg;F;Craft and related trades workers;Education   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16617;Luxembourg;F;Craft and related trades workers;Education   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16618;Luxembourg;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16619;Luxembourg;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;25;1;9.526818474156401e-08;512353;4.879448349087445e-05;1;0;Young +16620;Luxembourg;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +16621;Luxembourg;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16622;Luxembourg;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16623;Luxembourg;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16624;Luxembourg;F;Craft and related trades workers;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16625;Luxembourg;F;Craft and related trades workers;Other service activities   ;Y30-49;44;1;1.6767200514515266e-07;512353;8.587829094393905e-05;1;0;Young +16626;Luxembourg;F;Craft and related trades workers;Other service activities   ;Y50-64;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16627;Luxembourg;F;Craft and related trades workers;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16628;Luxembourg;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16629;Luxembourg;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16630;Luxembourg;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16631;Luxembourg;F;Craft and related trades workers;Not stated   ;Y15-29;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;1;0;Young +16632;Luxembourg;F;Craft and related trades workers;Not stated   ;Y30-49;82;1;3.1247964595233e-07;512353;0.0001600459058500682;1;0;Young +16633;Luxembourg;F;Craft and related trades workers;Not stated   ;Y50-64;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;0;1;Old +16634;Luxembourg;F;Craft and related trades workers;Not stated   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16635;Luxembourg;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;23;1;8.764672996223889e-08;512353;4.48909248116045e-05;1;0;Young +16636;Luxembourg;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;94;1;3.582083746282807e-07;512353;0.00018346725792568795;1;0;Young +16637;Luxembourg;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;0;1;Old +16638;Luxembourg;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16639;Luxembourg;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;1;0;Young +16640;Luxembourg;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16641;Luxembourg;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16642;Luxembourg;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;1;0;Young +16643;Luxembourg;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16644;Luxembourg;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;1;0;Young +16645;Luxembourg;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;111;1;4.2299074025254424e-07;512353;0.00021664750669948257;1;0;Young +16646;Luxembourg;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;0;1;Old +16647;Luxembourg;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16648;Luxembourg;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +16649;Luxembourg;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16650;Luxembourg;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16651;Luxembourg;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +16652;Luxembourg;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16653;Luxembourg;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16654;Luxembourg;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16655;Luxembourg;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16656;Luxembourg;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16657;Luxembourg;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16658;Luxembourg;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;1;0;Young +16659;Luxembourg;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +16660;Luxembourg;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16661;Luxembourg;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16662;Luxembourg;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;31;1;1.1813254907953938e-07;512353;6.050515952868433e-05;1;0;Young +16663;Luxembourg;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;0;1;Old +16664;Luxembourg;F;Plant and machine operators, and assemblers;Education   ;Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16665;Luxembourg;F;Plant and machine operators, and assemblers;Education   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16666;Luxembourg;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16667;Luxembourg;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;1;0;Young +16668;Luxembourg;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;0;1;Old +16669;Luxembourg;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16670;Luxembourg;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +16671;Luxembourg;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16672;Luxembourg;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16673;Luxembourg;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16674;Luxembourg;F;Plant and machine operators, and assemblers;Not stated   ;Y15-29;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16675;Luxembourg;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;39;1;1.4861836819683987e-07;512353;7.611939424576415e-05;1;0;Young +16676;Luxembourg;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +16677;Luxembourg;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +16678;Luxembourg;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;36;1;1.3718618602785217e-07;512353;7.026405622685922e-05;1;0;Young +16679;Luxembourg;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;0;1;Old +16680;Luxembourg;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16681;Luxembourg;F;Elementary occupations;Mining and quarrying   ;Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +16682;Luxembourg;F;Elementary occupations;Mining and quarrying   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16683;Luxembourg;F;Elementary occupations;Manufacturing   ;Y15-29;53;1;2.019685516521157e-07;512353;0.00010344430500065385;1;0;Young +16684;Luxembourg;F;Elementary occupations;Manufacturing   ;Y30-49;303;1;1.1546503990677558e-06;512353;0.0005913891399093984;1;0;Young +16685;Luxembourg;F;Elementary occupations;Manufacturing   ;Y50-64;78;1;2.9723673639367974e-07;512353;0.0001522387884915283;0;1;Old +16686;Luxembourg;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16687;Luxembourg;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16688;Luxembourg;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16689;Luxembourg;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;1;0;Young +16690;Luxembourg;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16691;Luxembourg;F;Elementary occupations;Construction   ;Y15-29;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;1;0;Young +16692;Luxembourg;F;Elementary occupations;Construction   ;Y30-49;250;1;9.526818474156401e-07;512353;0.00048794483490874455;1;0;Young +16693;Luxembourg;F;Elementary occupations;Construction   ;Y50-64;80;1;3.0485819117300483e-07;512353;0.00015614234717079825;0;1;Old +16694;Luxembourg;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;140;1;5.335018345527585e-07;512353;0.00027324910754889697;1;0;Young +16695;Luxembourg;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;610;1;2.324543707694162e-06;512353;0.0011905853971773367;1;0;Young +16696;Luxembourg;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;189;1;7.202274766462239e-07;512353;0.00036888629519101087;0;1;Old +16697;Luxembourg;F;Elementary occupations;Transportation and storage   ;Y15-29;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +16698;Luxembourg;F;Elementary occupations;Transportation and storage   ;Y30-49;82;1;3.1247964595233e-07;512353;0.0001600459058500682;1;0;Young +16699;Luxembourg;F;Elementary occupations;Transportation and storage   ;Y50-64;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;0;1;Old +16700;Luxembourg;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;238;1;9.069531187396895e-07;512353;0.0004645234828331248;1;0;Young +16701;Luxembourg;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;919;1;3.5020584710998933e-06;512353;0.001793685213124545;1;0;Young +16702;Luxembourg;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;223;1;8.49792207894751e-07;512353;0.00043524679273860016;0;1;Old +16703;Luxembourg;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16704;Luxembourg;F;Elementary occupations;Information and communication   ;Y15-29;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;1;0;Young +16705;Luxembourg;F;Elementary occupations;Information and communication   ;Y30-49;144;1;5.487447441114087e-07;512353;0.00028105622490743687;1;0;Young +16706;Luxembourg;F;Elementary occupations;Information and communication   ;Y50-64;89;1;3.3915473767996787e-07;512353;0.00017370836122751305;0;1;Old +16707;Luxembourg;F;Elementary occupations;Financial and insurance activities   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16708;Luxembourg;F;Elementary occupations;Financial and insurance activities   ;Y30-49;70;1;2.6675091727637925e-07;512353;0.00013662455377444848;1;0;Young +16709;Luxembourg;F;Elementary occupations;Financial and insurance activities   ;Y50-64;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;0;1;Old +16710;Luxembourg;F;Elementary occupations;Real estate activities   ;Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16711;Luxembourg;F;Elementary occupations;Real estate activities   ;Y30-49;68;1;2.591294624970541e-07;512353;0.00013272099509517853;1;0;Young +16712;Luxembourg;F;Elementary occupations;Real estate activities   ;Y50-64;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;0;1;Old +16713;Luxembourg;F;Elementary occupations;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16714;Luxembourg;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;43;1;1.638612777554901e-07;512353;8.392651160430407e-05;1;0;Young +16715;Luxembourg;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;226;1;8.612243900637387e-07;512353;0.0004411021307575051;1;0;Young +16716;Luxembourg;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;90;1;3.4296546506963047e-07;512353;0.00017566014056714805;0;1;Old +16717;Luxembourg;F;Elementary occupations;Administrative and support service activities   ;Y15-29;723;1;2.755155902726031e-06;512353;0.0014111364625560893;1;0;Young +16718;Luxembourg;F;Elementary occupations;Administrative and support service activities   ;Y30-49;2495;1;9.507764837208089e-06;512353;0.004869689452389271;1;0;Young +16719;Luxembourg;F;Elementary occupations;Administrative and support service activities   ;Y50-64;527;1;2.0082533343521694e-06;512353;0.0010285877119876334;0;1;Old +16720;Luxembourg;F;Elementary occupations;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16721;Luxembourg;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;155;1;5.906627453976969e-07;512353;0.00030252579764342163;1;0;Young +16722;Luxembourg;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;1084;1;4.130828490394216e-06;512353;0.0021157288041643166;1;0;Young +16723;Luxembourg;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;578;1;2.20260043122496e-06;512353;0.0011281284583090174;0;1;Old +16724;Luxembourg;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16725;Luxembourg;F;Elementary occupations;Education   ;Y15-29;28;1;1.067003669105517e-07;512353;5.464982150977939e-05;1;0;Young +16726;Luxembourg;F;Elementary occupations;Education   ;Y30-49;194;1;7.392811135945367e-07;512353;0.0003786451918891858;1;0;Young +16727;Luxembourg;F;Elementary occupations;Education   ;Y50-64;107;1;4.07747830693894e-07;512353;0.00020884038934094266;0;1;Old +16728;Luxembourg;F;Elementary occupations;Human health and social work activities   ;Y15-29;217;1;8.269278435567757e-07;512353;0.00042353611670079027;1;0;Young +16729;Luxembourg;F;Elementary occupations;Human health and social work activities   ;Y30-49;1375;1;5.239750160786021e-06;512353;0.0026836965919980952;1;0;Young +16730;Luxembourg;F;Elementary occupations;Human health and social work activities   ;Y50-64;519;1;1.977767515234869e-06;512353;0.0010129734772705537;0;1;Old +16731;Luxembourg;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16732;Luxembourg;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;45;1;1.7148273253481523e-07;512353;8.783007028357402e-05;1;0;Young +16733;Luxembourg;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;0;1;Old +16734;Luxembourg;F;Elementary occupations;Other service activities   ;Y15-29;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;1;0;Young +16735;Luxembourg;F;Elementary occupations;Other service activities   ;Y30-49;189;1;7.202274766462239e-07;512353;0.00036888629519101087;1;0;Young +16736;Luxembourg;F;Elementary occupations;Other service activities   ;Y50-64;74;1;2.819938268350295e-07;512353;0.0001444316711329884;0;1;Old +16737;Luxembourg;F;Elementary occupations;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16738;Luxembourg;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;53;1;2.019685516521157e-07;512353;0.00010344430500065385;1;0;Young +16739;Luxembourg;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;563;1;2.1454395203800218e-06;512353;0.0010988517682144928;1;0;Young +16740;Luxembourg;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;230;1;8.76467299622389e-07;512353;0.000448909248116045;0;1;Old +16741;Luxembourg;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +16742;Luxembourg;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16743;Luxembourg;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;1;0;Young +16744;Luxembourg;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +16745;Luxembourg;F;Elementary occupations;Not stated   ;Y15-29;366;1;1.394726224616497e-06;512353;0.0007143512383064021;1;0;Young +16746;Luxembourg;F;Elementary occupations;Not stated   ;Y30-49;2588;1;9.862162484446707e-06;512353;0.005051204930975324;1;0;Young +16747;Luxembourg;F;Elementary occupations;Not stated   ;Y50-64;932;1;3.5515979271655062e-06;512353;0.0018190583445397996;0;1;Old +16748;Luxembourg;F;Elementary occupations;Not stated   ;Y65-84;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;0;1;Old +16749;Luxembourg;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16750;Luxembourg;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;1;0;Young +16751;Luxembourg;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;0;1;Old +16752;Luxembourg;F;Not stated;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16753;Luxembourg;F;Not stated;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16754;Luxembourg;F;Not stated;Manufacturing   ;Y15-29;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;1;0;Young +16755;Luxembourg;F;Not stated;Manufacturing   ;Y30-49;147;1;5.601769262803964e-07;512353;0.0002869115629263418;1;0;Young +16756;Luxembourg;F;Not stated;Manufacturing   ;Y50-64;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;0;1;Old +16757;Luxembourg;F;Not stated;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16758;Luxembourg;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16759;Luxembourg;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16760;Luxembourg;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +16761;Luxembourg;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16762;Luxembourg;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +16763;Luxembourg;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16764;Luxembourg;F;Not stated;Construction   ;Y15-29;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;1;0;Young +16765;Luxembourg;F;Not stated;Construction   ;Y30-49;48;1;1.829149147038029e-07;512353;9.368540830247895e-05;1;0;Young +16766;Luxembourg;F;Not stated;Construction   ;Y50-64;27;1;1.0288963952088914e-07;512353;5.2698042170144414e-05;0;1;Old +16767;Luxembourg;F;Not stated;Construction   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16768;Luxembourg;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;78;1;2.9723673639367974e-07;512353;0.0001522387884915283;1;0;Young +16769;Luxembourg;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;200;1;7.621454779325121e-07;512353;0.0003903558679269956;1;0;Young +16770;Luxembourg;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;68;1;2.591294624970541e-07;512353;0.00013272099509517853;0;1;Old +16771;Luxembourg;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16772;Luxembourg;F;Not stated;Transportation and storage   ;Y15-29;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +16773;Luxembourg;F;Not stated;Transportation and storage   ;Y30-49;54;1;2.0577927904177827e-07;512353;0.00010539608434028883;1;0;Young +16774;Luxembourg;F;Not stated;Transportation and storage   ;Y50-64;23;1;8.764672996223889e-08;512353;4.48909248116045e-05;0;1;Old +16775;Luxembourg;F;Not stated;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16776;Luxembourg;F;Not stated;Accommodation and food service activities   ;Y15-29;42;1;1.6005055036582754e-07;512353;8.197473226466909e-05;1;0;Young +16777;Luxembourg;F;Not stated;Accommodation and food service activities   ;Y30-49;111;1;4.2299074025254424e-07;512353;0.00021664750669948257;1;0;Young +16778;Luxembourg;F;Not stated;Accommodation and food service activities   ;Y50-64;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;0;1;Old +16779;Luxembourg;F;Not stated;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16780;Luxembourg;F;Not stated;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16781;Luxembourg;F;Not stated;Information and communication   ;Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16782;Luxembourg;F;Not stated;Information and communication   ;Y30-49;77;1;2.9342600900401714e-07;512353;0.00015028700915189333;1;0;Young +16783;Luxembourg;F;Not stated;Information and communication   ;Y50-64;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;0;1;Old +16784;Luxembourg;F;Not stated;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16785;Luxembourg;F;Not stated;Financial and insurance activities   ;Y15-29;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;1;0;Young +16786;Luxembourg;F;Not stated;Financial and insurance activities   ;Y30-49;131;1;4.992052880457954e-07;512353;0.00025568309349218213;1;0;Young +16787;Luxembourg;F;Not stated;Financial and insurance activities   ;Y50-64;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;0;1;Old +16788;Luxembourg;F;Not stated;Real estate activities   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +16789;Luxembourg;F;Not stated;Real estate activities   ;Y30-49;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;1;0;Young +16790;Luxembourg;F;Not stated;Real estate activities   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16791;Luxembourg;F;Not stated;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16792;Luxembourg;F;Not stated;Professional, scientific and technical activities   ;Y15-29;40;1;1.5242909558650242e-07;512353;7.807117358539913e-05;1;0;Young +16793;Luxembourg;F;Not stated;Professional, scientific and technical activities   ;Y30-49;71;1;2.705616446660418e-07;512353;0.00013857633311408345;1;0;Young +16794;Luxembourg;F;Not stated;Professional, scientific and technical activities   ;Y50-64;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16795;Luxembourg;F;Not stated;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16796;Luxembourg;F;Not stated;Administrative and support service activities   ;Y15-29;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;1;0;Young +16797;Luxembourg;F;Not stated;Administrative and support service activities   ;Y30-49;78;1;2.9723673639367974e-07;512353;0.0001522387884915283;1;0;Young +16798;Luxembourg;F;Not stated;Administrative and support service activities   ;Y50-64;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16799;Luxembourg;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;119;1;4.5347655936984473e-07;512353;0.0002322617414165624;1;0;Young +16800;Luxembourg;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;408;1;1.5547767749823248e-06;512353;0.0007963259705710711;1;0;Young +16801;Luxembourg;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;211;1;8.040634792188003e-07;512353;0.0004118254406629804;0;1;Old +16802;Luxembourg;F;Not stated;Education   ;Y15-29;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;1;0;Young +16803;Luxembourg;F;Not stated;Education   ;Y30-49;40;1;1.5242909558650242e-07;512353;7.807117358539913e-05;1;0;Young +16804;Luxembourg;F;Not stated;Education   ;Y50-64;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +16805;Luxembourg;F;Not stated;Education   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16806;Luxembourg;F;Not stated;Human health and social work activities   ;Y15-29;131;1;4.992052880457954e-07;512353;0.00025568309349218213;1;0;Young +16807;Luxembourg;F;Not stated;Human health and social work activities   ;Y30-49;345;1;1.3147009494335833e-06;512353;0.0006733638721740675;1;0;Young +16808;Luxembourg;F;Not stated;Human health and social work activities   ;Y50-64;148;1;5.63987653670059e-07;512353;0.0002888633422659768;0;1;Old +16809;Luxembourg;F;Not stated;Arts, entertainment and recreation   ;Y15-29;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16810;Luxembourg;F;Not stated;Arts, entertainment and recreation   ;Y30-49;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;1;0;Young +16811;Luxembourg;F;Not stated;Arts, entertainment and recreation   ;Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +16812;Luxembourg;F;Not stated;Other service activities   ;Y15-29;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;1;0;Young +16813;Luxembourg;F;Not stated;Other service activities   ;Y30-49;61;1;2.3245437076941619e-07;512353;0.00011905853971773368;1;0;Young +16814;Luxembourg;F;Not stated;Other service activities   ;Y50-64;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;0;1;Old +16815;Luxembourg;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16816;Luxembourg;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;1;0;Young +16817;Luxembourg;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16818;Luxembourg;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +16819;Luxembourg;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;122;1;4.6490874153883237e-07;512353;0.00023811707943546736;1;0;Young +16820;Luxembourg;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;93;1;3.543976472386181e-07;512353;0.00018151547858605296;0;1;Old +16821;Luxembourg;F;Not stated;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16822;Luxembourg;F;Not stated;Not stated   ;Y15-29;635;1;2.419811892435726e-06;512353;0.0012393798806682112;1;0;Young +16823;Luxembourg;F;Not stated;Not stated   ;Y30-49;1505;1;5.735144721442154e-06;512353;0.002937427906150642;1;0;Young +16824;Luxembourg;F;Not stated;Not stated   ;Y50-64;593;1;2.2597613420698985e-06;512353;0.001157405148403542;0;1;Old +16825;Luxembourg;F;Not stated;Not stated   ;Y65-84;29;1;1.1051109430021426e-07;512353;5.660160084941437e-05;0;1;Old +16826;Luxembourg;F;Not stated;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16827;Luxembourg;M;Not applicable;Not applicable  ;Y15-29;27676;1;0.00010546569123630102;512353;0.05401744500373766;1;0;Young +16828;Luxembourg;M;Not applicable;Not applicable  ;Y30-49;12616;1;4.807613674798286e-05;512353;0.024623648148834887;1;0;Young +16829;Luxembourg;M;Not applicable;Not applicable  ;Y50-64;19858;1;7.567342450391912e-05;512353;0.0387584341264714;0;1;Old +16830;Luxembourg;M;Not applicable;Not applicable  ;Y65-84;27596;1;0.00010516083304512803;512353;0.053861302656566856;0;1;Old +16831;Luxembourg;M;Not applicable;Not applicable  ;Y_GE85;2179;1;8.303574982074719e-06;512353;0.004252927181064617;0;1;Old +16832;Luxembourg;M;Not applicable;Not applicable  ;Y_LT15;45467;1;0.00017326234222578765;512353;0.08874155123518356;0;1;Old +16833;Luxembourg;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16834;Luxembourg;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16835;Luxembourg;M;Armed forces occupations;Transportation and storage   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16836;Luxembourg;M;Armed forces occupations;Transportation and storage   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16837;Luxembourg;M;Armed forces occupations;Financial and insurance activities   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16838;Luxembourg;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;809;1;3.0828784582370114e-06;512353;0.0015789894857646974;1;0;Young +16839;Luxembourg;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;182;1;6.93552384918586e-07;512353;0.000355223839813566;1;0;Young +16840;Luxembourg;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;41;1;1.56239822976165e-07;512353;8.00229529250341e-05;0;1;Old +16841;Luxembourg;M;Armed forces occupations;Human health and social work activities   ;Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16842;Luxembourg;M;Armed forces occupations;Human health and social work activities   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16843;Luxembourg;M;Armed forces occupations;Human health and social work activities   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16844;Luxembourg;M;Armed forces occupations;Other service activities   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16845;Luxembourg;M;Armed forces occupations;Other service activities   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16846;Luxembourg;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16847;Luxembourg;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16848;Luxembourg;M;Armed forces occupations;Not stated   ;Y15-29;25;1;9.526818474156401e-08;512353;4.879448349087445e-05;1;0;Young +16849;Luxembourg;M;Armed forces occupations;Not stated   ;Y30-49;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +16850;Luxembourg;M;Armed forces occupations;Not stated   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16851;Luxembourg;M;Managers;Agriculture, forestry and fishing   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16852;Luxembourg;M;Managers;Agriculture, forestry and fishing   ;Y30-49;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;1;0;Young +16853;Luxembourg;M;Managers;Agriculture, forestry and fishing   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16854;Luxembourg;M;Managers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16855;Luxembourg;M;Managers;Mining and quarrying   ;Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +16856;Luxembourg;M;Managers;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16857;Luxembourg;M;Managers;Manufacturing   ;Y15-29;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;1;0;Young +16858;Luxembourg;M;Managers;Manufacturing   ;Y30-49;348;1;1.326133131602571e-06;512353;0.0006792192101929724;1;0;Young +16859;Luxembourg;M;Managers;Manufacturing   ;Y50-64;200;1;7.621454779325121e-07;512353;0.0003903558679269956;0;1;Old +16860;Luxembourg;M;Managers;Manufacturing   ;Y65-84;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +16861;Luxembourg;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16862;Luxembourg;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +16863;Luxembourg;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +16864;Luxembourg;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;1;0;Young +16865;Luxembourg;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16866;Luxembourg;M;Managers;Construction   ;Y15-29;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16867;Luxembourg;M;Managers;Construction   ;Y30-49;290;1;1.1051109430021426e-06;512353;0.0005660160084941437;1;0;Young +16868;Luxembourg;M;Managers;Construction   ;Y50-64;186;1;7.087952944772362e-07;512353;0.0003630309571721059;0;1;Old +16869;Luxembourg;M;Managers;Construction   ;Y65-84;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;0;1;Old +16870;Luxembourg;M;Managers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16871;Luxembourg;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;48;1;1.829149147038029e-07;512353;9.368540830247895e-05;1;0;Young +16872;Luxembourg;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;628;1;2.393136800708088e-06;512353;0.0012257174252907662;1;0;Young +16873;Luxembourg;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;353;1;1.3451867685508839e-06;512353;0.0006889781068911473;0;1;Old +16874;Luxembourg;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;0;1;Old +16875;Luxembourg;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16876;Luxembourg;M;Managers;Transportation and storage   ;Y15-29;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;1;0;Young +16877;Luxembourg;M;Managers;Transportation and storage   ;Y30-49;153;1;5.830412906183718e-07;512353;0.00029862223896415165;1;0;Young +16878;Luxembourg;M;Managers;Transportation and storage   ;Y50-64;99;1;3.772620115765935e-07;512353;0.00019322615462386285;0;1;Old +16879;Luxembourg;M;Managers;Transportation and storage   ;Y65-84;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;0;1;Old +16880;Luxembourg;M;Managers;Accommodation and food service activities   ;Y15-29;62;1;2.3626509815907876e-07;512353;0.00012101031905736865;1;0;Young +16881;Luxembourg;M;Managers;Accommodation and food service activities   ;Y30-49;454;1;1.7300702349068025e-06;512353;0.0008861078201942801;1;0;Young +16882;Luxembourg;M;Managers;Accommodation and food service activities   ;Y50-64;256;1;9.755462117536154e-07;512353;0.0004996555109465544;0;1;Old +16883;Luxembourg;M;Managers;Accommodation and food service activities   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16884;Luxembourg;M;Managers;Information and communication   ;Y15-29;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +16885;Luxembourg;M;Managers;Information and communication   ;Y30-49;267;1;1.0174642130399036e-06;512353;0.0005211250836825392;1;0;Young +16886;Luxembourg;M;Managers;Information and communication   ;Y50-64;79;1;3.010474637833423e-07;512353;0.0001541905678311633;0;1;Old +16887;Luxembourg;M;Managers;Information and communication   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +16888;Luxembourg;M;Managers;Financial and insurance activities   ;Y15-29;109;1;4.153692854732191e-07;512353;0.00021274394802021262;1;0;Young +16889;Luxembourg;M;Managers;Financial and insurance activities   ;Y30-49;1438;1;5.479825986334762e-06;512353;0.002806658690395099;1;0;Young +16890;Luxembourg;M;Managers;Financial and insurance activities   ;Y50-64;591;1;2.2521398872905733e-06;512353;0.0011535015897242722;0;1;Old +16891;Luxembourg;M;Managers;Financial and insurance activities   ;Y65-84;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;0;1;Old +16892;Luxembourg;M;Managers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16893;Luxembourg;M;Managers;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;1;0;Young +16894;Luxembourg;M;Managers;Real estate activities   ;Y30-49;54;1;2.0577927904177827e-07;512353;0.00010539608434028883;1;0;Young +16895;Luxembourg;M;Managers;Real estate activities   ;Y50-64;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;0;1;Old +16896;Luxembourg;M;Managers;Real estate activities   ;Y65-84;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +16897;Luxembourg;M;Managers;Professional, scientific and technical activities   ;Y15-29;93;1;3.543976472386181e-07;512353;0.00018151547858605296;1;0;Young +16898;Luxembourg;M;Managers;Professional, scientific and technical activities   ;Y30-49;464;1;1.7681775088034281e-06;512353;0.0009056256135906299;1;0;Young +16899;Luxembourg;M;Managers;Professional, scientific and technical activities   ;Y50-64;197;1;7.507132957635244e-07;512353;0.00038450052990809074;0;1;Old +16900;Luxembourg;M;Managers;Professional, scientific and technical activities   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16901;Luxembourg;M;Managers;Administrative and support service activities   ;Y15-29;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;1;0;Young +16902;Luxembourg;M;Managers;Administrative and support service activities   ;Y30-49;139;1;5.296911071630959e-07;512353;0.00027129732820926195;1;0;Young +16903;Luxembourg;M;Managers;Administrative and support service activities   ;Y50-64;55;1;2.0959000643144082e-07;512353;0.0001073478636799238;0;1;Old +16904;Luxembourg;M;Managers;Administrative and support service activities   ;Y65-84;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;0;1;Old +16905;Luxembourg;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;1;0;Young +16906;Luxembourg;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;206;1;7.850098422704875e-07;512353;0.0004020665439648055;1;0;Young +16907;Luxembourg;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;159;1;6.059056549563472e-07;512353;0.00031033291500196154;0;1;Old +16908;Luxembourg;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16909;Luxembourg;M;Managers;Education   ;Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +16910;Luxembourg;M;Managers;Education   ;Y30-49;51;1;1.943470968727906e-07;512353;9.954074632138388e-05;1;0;Young +16911;Luxembourg;M;Managers;Education   ;Y50-64;38;1;1.448076408071773e-07;512353;7.416761490612917e-05;0;1;Old +16912;Luxembourg;M;Managers;Human health and social work activities   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +16913;Luxembourg;M;Managers;Human health and social work activities   ;Y30-49;110;1;4.1918001286288164e-07;512353;0.0002146957273598476;1;0;Young +16914;Luxembourg;M;Managers;Human health and social work activities   ;Y50-64;70;1;2.6675091727637925e-07;512353;0.00013662455377444848;0;1;Old +16915;Luxembourg;M;Managers;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16916;Luxembourg;M;Managers;Arts, entertainment and recreation   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +16917;Luxembourg;M;Managers;Arts, entertainment and recreation   ;Y30-49;50;1;1.9053636948312803e-07;512353;9.75889669817489e-05;1;0;Young +16918;Luxembourg;M;Managers;Arts, entertainment and recreation   ;Y50-64;30;1;1.1432182168987682e-07;512353;5.8553380189049344e-05;0;1;Old +16919;Luxembourg;M;Managers;Other service activities   ;Y15-29;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;1;0;Young +16920;Luxembourg;M;Managers;Other service activities   ;Y30-49;67;1;2.5531873510739155e-07;512353;0.00013076921575554354;1;0;Young +16921;Luxembourg;M;Managers;Other service activities   ;Y50-64;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;0;1;Old +16922;Luxembourg;M;Managers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16923;Luxembourg;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +16924;Luxembourg;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;1;0;Young +16925;Luxembourg;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;288;1;1.0974894882228174e-06;512353;0.0005621124498148737;1;0;Young +16926;Luxembourg;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;230;1;8.76467299622389e-07;512353;0.000448909248116045;0;1;Old +16927;Luxembourg;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16928;Luxembourg;M;Managers;Not stated   ;Y15-29;58;1;2.2102218860042852e-07;512353;0.00011320320169882873;1;0;Young +16929;Luxembourg;M;Managers;Not stated   ;Y30-49;652;1;2.4845942580599894e-06;512353;0.0012725601294420058;1;0;Young +16930;Luxembourg;M;Managers;Not stated   ;Y50-64;370;1;1.4099691341751475e-06;512353;0.0007221583556649419;0;1;Old +16931;Luxembourg;M;Managers;Not stated   ;Y65-84;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;0;1;Old +16932;Luxembourg;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +16933;Luxembourg;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +16934;Luxembourg;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16935;Luxembourg;M;Professionals;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +16936;Luxembourg;M;Professionals;Mining and quarrying   ;Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +16937;Luxembourg;M;Professionals;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16938;Luxembourg;M;Professionals;Manufacturing   ;Y15-29;104;1;3.963156485249063e-07;512353;0.00020298505132203775;1;0;Young +16939;Luxembourg;M;Professionals;Manufacturing   ;Y30-49;648;1;2.469351348501339e-06;512353;0.001264753012083466;1;0;Young +16940;Luxembourg;M;Professionals;Manufacturing   ;Y50-64;301;1;1.1470289442884308e-06;512353;0.0005874855812301285;0;1;Old +16941;Luxembourg;M;Professionals;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16942;Luxembourg;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;23;1;8.764672996223889e-08;512353;4.48909248116045e-05;1;0;Young +16943;Luxembourg;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;99;1;3.772620115765935e-07;512353;0.00019322615462386285;1;0;Young +16944;Luxembourg;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;0;1;Old +16945;Luxembourg;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +16946;Luxembourg;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;1;0;Young +16947;Luxembourg;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +16948;Luxembourg;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16949;Luxembourg;M;Professionals;Construction   ;Y15-29;43;1;1.638612777554901e-07;512353;8.392651160430407e-05;1;0;Young +16950;Luxembourg;M;Professionals;Construction   ;Y30-49;133;1;5.068267428251205e-07;512353;0.0002595866521714521;1;0;Young +16951;Luxembourg;M;Professionals;Construction   ;Y50-64;77;1;2.9342600900401714e-07;512353;0.00015028700915189333;0;1;Old +16952;Luxembourg;M;Professionals;Construction   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16953;Luxembourg;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;88;1;3.353440102903053e-07;512353;0.0001717565818878781;1;0;Young +16954;Luxembourg;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;429;1;1.6348020501652386e-06;512353;0.0008373133367034056;1;0;Young +16955;Luxembourg;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;154;1;5.868520180080343e-07;512353;0.00030057401830378667;0;1;Old +16956;Luxembourg;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;0;1;Old +16957;Luxembourg;M;Professionals;Transportation and storage   ;Y15-29;39;1;1.4861836819683987e-07;512353;7.611939424576415e-05;1;0;Young +16958;Luxembourg;M;Professionals;Transportation and storage   ;Y30-49;210;1;8.002527518291377e-07;512353;0.0004098736613233454;1;0;Young +16959;Luxembourg;M;Professionals;Transportation and storage   ;Y50-64;94;1;3.582083746282807e-07;512353;0.00018346725792568795;0;1;Old +16960;Luxembourg;M;Professionals;Accommodation and food service activities   ;Y15-29;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +16961;Luxembourg;M;Professionals;Accommodation and food service activities   ;Y30-49;44;1;1.6767200514515266e-07;512353;8.587829094393905e-05;1;0;Young +16962;Luxembourg;M;Professionals;Accommodation and food service activities   ;Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +16963;Luxembourg;M;Professionals;Information and communication   ;Y15-29;230;1;8.76467299622389e-07;512353;0.000448909248116045;1;0;Young +16964;Luxembourg;M;Professionals;Information and communication   ;Y30-49;1018;1;3.879320482676487e-06;512353;0.0019869113677484077;1;0;Young +16965;Luxembourg;M;Professionals;Information and communication   ;Y50-64;246;1;9.374389378569899e-07;512353;0.00048013771755020464;0;1;Old +16966;Luxembourg;M;Professionals;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +16967;Luxembourg;M;Professionals;Financial and insurance activities   ;Y15-29;520;1;1.9815782426245316e-06;512353;0.0010149252566101887;1;0;Young +16968;Luxembourg;M;Professionals;Financial and insurance activities   ;Y30-49;2703;1;1.0300396134257901e-05;512353;0.005275659555033346;1;0;Young +16969;Luxembourg;M;Professionals;Financial and insurance activities   ;Y50-64;609;1;2.3207329803044993e-06;512353;0.0011886336178377017;0;1;Old +16970;Luxembourg;M;Professionals;Financial and insurance activities   ;Y65-84;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +16971;Luxembourg;M;Professionals;Real estate activities   ;Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +16972;Luxembourg;M;Professionals;Real estate activities   ;Y30-49;28;1;1.067003669105517e-07;512353;5.464982150977939e-05;1;0;Young +16973;Luxembourg;M;Professionals;Real estate activities   ;Y50-64;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +16974;Luxembourg;M;Professionals;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16975;Luxembourg;M;Professionals;Professional, scientific and technical activities   ;Y15-29;698;1;2.6598877179844674e-06;512353;0.0013623419790652147;1;0;Young +16976;Luxembourg;M;Professionals;Professional, scientific and technical activities   ;Y30-49;1885;1;7.183221129513926e-06;512353;0.003679104055211934;1;0;Young +16977;Luxembourg;M;Professionals;Professional, scientific and technical activities   ;Y50-64;556;1;2.1187644286523836e-06;512353;0.0010851893128370478;0;1;Old +16978;Luxembourg;M;Professionals;Professional, scientific and technical activities   ;Y65-84;67;1;2.5531873510739155e-07;512353;0.00013076921575554354;0;1;Old +16979;Luxembourg;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +16980;Luxembourg;M;Professionals;Administrative and support service activities   ;Y15-29;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;1;0;Young +16981;Luxembourg;M;Professionals;Administrative and support service activities   ;Y30-49;93;1;3.543976472386181e-07;512353;0.00018151547858605296;1;0;Young +16982;Luxembourg;M;Professionals;Administrative and support service activities   ;Y50-64;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;0;1;Old +16983;Luxembourg;M;Professionals;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +16984;Luxembourg;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;328;1;1.24991858380932e-06;512353;0.0006401836234002728;1;0;Young +16985;Luxembourg;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;1717;1;6.543018928050616e-06;512353;0.0033512051261532574;1;0;Young +16986;Luxembourg;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;747;1;2.8466133600779327e-06;512353;0.0014579791667073288;0;1;Old +16987;Luxembourg;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16988;Luxembourg;M;Professionals;Education   ;Y15-29;320;1;1.2194327646920193e-06;512353;0.000624569388683193;1;0;Young +16989;Luxembourg;M;Professionals;Education   ;Y30-49;1231;1;4.691005416674612e-06;512353;0.0024026403670906584;1;0;Young +16990;Luxembourg;M;Professionals;Education   ;Y50-64;539;1;2.0539820630281202e-06;512353;0.0010520090640632532;0;1;Old +16991;Luxembourg;M;Professionals;Education   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +16992;Luxembourg;M;Professionals;Human health and social work activities   ;Y15-29;171;1;6.516343836322978e-07;512353;0.00033375426707758126;1;0;Young +16993;Luxembourg;M;Professionals;Human health and social work activities   ;Y30-49;830;1;3.162903733419925e-06;512353;0.0016199768518970318;1;0;Young +16994;Luxembourg;M;Professionals;Human health and social work activities   ;Y50-64;539;1;2.0539820630281202e-06;512353;0.0010520090640632532;0;1;Old +16995;Luxembourg;M;Professionals;Human health and social work activities   ;Y65-84;43;1;1.638612777554901e-07;512353;8.392651160430407e-05;0;1;Old +16996;Luxembourg;M;Professionals;Arts, entertainment and recreation   ;Y15-29;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;1;0;Young +16997;Luxembourg;M;Professionals;Arts, entertainment and recreation   ;Y30-49;94;1;3.582083746282807e-07;512353;0.00018346725792568795;1;0;Young +16998;Luxembourg;M;Professionals;Arts, entertainment and recreation   ;Y50-64;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;0;1;Old +16999;Luxembourg;M;Professionals;Arts, entertainment and recreation   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17000;Luxembourg;M;Professionals;Other service activities   ;Y15-29;28;1;1.067003669105517e-07;512353;5.464982150977939e-05;1;0;Young +17001;Luxembourg;M;Professionals;Other service activities   ;Y30-49;201;1;7.659562053221747e-07;512353;0.00039230764726663064;1;0;Young +17002;Luxembourg;M;Professionals;Other service activities   ;Y50-64;71;1;2.705616446660418e-07;512353;0.00013857633311408345;0;1;Old +17003;Luxembourg;M;Professionals;Other service activities   ;Y65-84;30;1;1.1432182168987682e-07;512353;5.8553380189049344e-05;0;1;Old +17004;Luxembourg;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17005;Luxembourg;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;71;1;2.705616446660418e-07;512353;0.00013857633311408345;1;0;Young +17006;Luxembourg;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;1599;1;6.093353096070434e-06;512353;0.00312089516407633;1;0;Young +17007;Luxembourg;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;829;1;3.1590930060302626e-06;512353;0.0016180250725573969;0;1;Old +17008;Luxembourg;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +17009;Luxembourg;M;Professionals;Not stated   ;Y15-29;272;1;1.0365178499882164e-06;512353;0.0005308839803807141;1;0;Young +17010;Luxembourg;M;Professionals;Not stated   ;Y30-49;1300;1;4.9539456065613285e-06;512353;0.0025373131415254717;1;0;Young +17011;Luxembourg;M;Professionals;Not stated   ;Y50-64;720;1;2.7437237205570438e-06;512353;0.0014052811245371844;0;1;Old +17012;Luxembourg;M;Professionals;Not stated   ;Y65-84;94;1;3.582083746282807e-07;512353;0.00018346725792568795;0;1;Old +17013;Luxembourg;M;Professionals;Not stated   ;Y_GE85;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17014;Luxembourg;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17015;Luxembourg;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +17016;Luxembourg;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +17017;Luxembourg;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +17018;Luxembourg;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17019;Luxembourg;M;Technicians and associate professionals;Manufacturing   ;Y15-29;143;1;5.449340167217462e-07;512353;0.0002791044455678019;1;0;Young +17020;Luxembourg;M;Technicians and associate professionals;Manufacturing   ;Y30-49;633;1;2.412190437656401e-06;512353;0.0012354763219889413;1;0;Young +17021;Luxembourg;M;Technicians and associate professionals;Manufacturing   ;Y50-64;337;1;1.284215130316283e-06;512353;0.0006577496374569877;0;1;Old +17022;Luxembourg;M;Technicians and associate professionals;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17023;Luxembourg;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;36;1;1.3718618602785217e-07;512353;7.026405622685922e-05;1;0;Young +17024;Luxembourg;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;85;1;3.239118281213176e-07;512353;0.00016590124386897315;1;0;Young +17025;Luxembourg;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;44;1;1.6767200514515266e-07;512353;8.587829094393905e-05;0;1;Old +17026;Luxembourg;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;1;0;Young +17027;Luxembourg;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;42;1;1.6005055036582754e-07;512353;8.197473226466909e-05;1;0;Young +17028;Luxembourg;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +17029;Luxembourg;M;Technicians and associate professionals;Construction   ;Y15-29;143;1;5.449340167217462e-07;512353;0.0002791044455678019;1;0;Young +17030;Luxembourg;M;Technicians and associate professionals;Construction   ;Y30-49;566;1;2.156871702549009e-06;512353;0.0011047071062333976;1;0;Young +17031;Luxembourg;M;Technicians and associate professionals;Construction   ;Y50-64;243;1;9.260067556880022e-07;512353;0.0004742823795312997;0;1;Old +17032;Luxembourg;M;Technicians and associate professionals;Construction   ;Y65-84;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +17033;Luxembourg;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;151;1;5.754198358390467e-07;512353;0.0002947186802848817;1;0;Young +17034;Luxembourg;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;552;1;2.1035215190937336e-06;512353;0.001077382195478508;1;0;Young +17035;Luxembourg;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;202;1;7.697669327118372e-07;512353;0.0003942594266062656;0;1;Old +17036;Luxembourg;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +17037;Luxembourg;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17038;Luxembourg;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;125;1;4.7634092370782007e-07;512353;0.00024397241745437227;1;0;Young +17039;Luxembourg;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;454;1;1.7300702349068025e-06;512353;0.0008861078201942801;1;0;Young +17040;Luxembourg;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;198;1;7.54524023153187e-07;512353;0.0003864523092477257;0;1;Old +17041;Luxembourg;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17042;Luxembourg;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;38;1;1.448076408071773e-07;512353;7.416761490612917e-05;1;0;Young +17043;Luxembourg;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;149;1;5.677983810597215e-07;512353;0.00029081512160561174;1;0;Young +17044;Luxembourg;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;30;1;1.1432182168987682e-07;512353;5.8553380189049344e-05;0;1;Old +17045;Luxembourg;M;Technicians and associate professionals;Information and communication   ;Y15-29;142;1;5.411232893320836e-07;512353;0.0002771526662281669;1;0;Young +17046;Luxembourg;M;Technicians and associate professionals;Information and communication   ;Y30-49;403;1;1.5357231380340118e-06;512353;0.0007865670738728963;1;0;Young +17047;Luxembourg;M;Technicians and associate professionals;Information and communication   ;Y50-64;169;1;6.440129288529728e-07;512353;0.00032985070839831133;0;1;Old +17048;Luxembourg;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;266;1;1.013653485650241e-06;512353;0.0005191733043429042;1;0;Young +17049;Luxembourg;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;1248;1;4.755787782298876e-06;512353;0.0024358206158644528;1;0;Young +17050;Luxembourg;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;457;1;1.7415024170757901e-06;512353;0.000891963158213185;0;1;Old +17051;Luxembourg;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;0;1;Old +17052;Luxembourg;M;Technicians and associate professionals;Real estate activities   ;Y15-29;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;1;0;Young +17053;Luxembourg;M;Technicians and associate professionals;Real estate activities   ;Y30-49;170;1;6.478236562426352e-07;512353;0.0003318024877379463;1;0;Young +17054;Luxembourg;M;Technicians and associate professionals;Real estate activities   ;Y50-64;84;1;3.201011007316551e-07;512353;0.00016394946452933818;0;1;Old +17055;Luxembourg;M;Technicians and associate professionals;Real estate activities   ;Y65-84;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +17056;Luxembourg;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;192;1;7.316596588152116e-07;512353;0.0003747416332099158;1;0;Young +17057;Luxembourg;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;442;1;1.6843415062308518e-06;512353;0.0008626864681186604;1;0;Young +17058;Luxembourg;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;180;1;6.859309301392609e-07;512353;0.0003513202811342961;0;1;Old +17059;Luxembourg;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +17060;Luxembourg;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;29;1;1.1051109430021426e-07;512353;5.660160084941437e-05;1;0;Young +17061;Luxembourg;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;114;1;4.344229224215319e-07;512353;0.00022250284471838752;1;0;Young +17062;Luxembourg;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;0;1;Old +17063;Luxembourg;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17064;Luxembourg;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;445;1;1.6957736883998393e-06;512353;0.0008685418061375654;1;0;Young +17065;Luxembourg;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;1577;1;6.009517093497858e-06;512353;0.003077956018604361;1;0;Young +17066;Luxembourg;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;670;1;2.5531873510739154e-06;512353;0.0013076921575554353;0;1;Old +17067;Luxembourg;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17068;Luxembourg;M;Technicians and associate professionals;Education   ;Y15-29;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;1;0;Young +17069;Luxembourg;M;Technicians and associate professionals;Education   ;Y30-49;66;1;2.51508007717729e-07;512353;0.00012881743641590858;1;0;Young +17070;Luxembourg;M;Technicians and associate professionals;Education   ;Y50-64;27;1;1.0288963952088914e-07;512353;5.2698042170144414e-05;0;1;Old +17071;Luxembourg;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;254;1;9.679247569742904e-07;512353;0.0004957519522672845;1;0;Young +17072;Luxembourg;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;662;1;2.522701531956615e-06;512353;0.0012920779228383556;1;0;Young +17073;Luxembourg;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;225;1;8.574136626740762e-07;512353;0.0004391503514178701;0;1;Old +17074;Luxembourg;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17075;Luxembourg;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;52;1;1.9815782426245315e-07;512353;0.00010149252566101887;1;0;Young +17076;Luxembourg;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;107;1;4.07747830693894e-07;512353;0.00020884038934094266;1;0;Young +17077;Luxembourg;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;0;1;Old +17078;Luxembourg;M;Technicians and associate professionals;Other service activities   ;Y15-29;31;1;1.1813254907953938e-07;512353;6.050515952868433e-05;1;0;Young +17079;Luxembourg;M;Technicians and associate professionals;Other service activities   ;Y30-49;100;1;3.8107273896625605e-07;512353;0.0001951779339634978;1;0;Young +17080;Luxembourg;M;Technicians and associate professionals;Other service activities   ;Y50-64;39;1;1.4861836819683987e-07;512353;7.611939424576415e-05;0;1;Old +17081;Luxembourg;M;Technicians and associate professionals;Other service activities   ;Y65-84;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +17082;Luxembourg;M;Technicians and associate professionals;Other service activities   ;Y_GE85;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17083;Luxembourg;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17084;Luxembourg;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17085;Luxembourg;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17086;Luxembourg;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;1;0;Young +17087;Luxembourg;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;309;1;1.1775147634057311e-06;512353;0.0006030998159472083;1;0;Young +17088;Luxembourg;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;280;1;1.067003669105517e-06;512353;0.0005464982150977939;0;1;Old +17089;Luxembourg;M;Technicians and associate professionals;Not stated   ;Y15-29;242;1;9.221960282983396e-07;512353;0.00047233060019166473;1;0;Young +17090;Luxembourg;M;Technicians and associate professionals;Not stated   ;Y30-49;720;1;2.7437237205570438e-06;512353;0.0014052811245371844;1;0;Young +17091;Luxembourg;M;Technicians and associate professionals;Not stated   ;Y50-64;343;1;1.3070794946542583e-06;512353;0.0006694603134947975;0;1;Old +17092;Luxembourg;M;Technicians and associate professionals;Not stated   ;Y65-84;25;1;9.526818474156401e-08;512353;4.879448349087445e-05;0;1;Old +17093;Luxembourg;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +17094;Luxembourg;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17095;Luxembourg;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17096;Luxembourg;M;Clerical support workers;Mining and quarrying   ;Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17097;Luxembourg;M;Clerical support workers;Manufacturing   ;Y15-29;67;1;2.5531873510739155e-07;512353;0.00013076921575554354;1;0;Young +17098;Luxembourg;M;Clerical support workers;Manufacturing   ;Y30-49;295;1;1.1241645799504554e-06;512353;0.0005757749051923186;1;0;Young +17099;Luxembourg;M;Clerical support workers;Manufacturing   ;Y50-64;154;1;5.868520180080343e-07;512353;0.00030057401830378667;0;1;Old +17100;Luxembourg;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;23;1;8.764672996223889e-08;512353;4.48909248116045e-05;1;0;Young +17101;Luxembourg;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;1;0;Young +17102;Luxembourg;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;0;1;Old +17103;Luxembourg;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17104;Luxembourg;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +17105;Luxembourg;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17106;Luxembourg;M;Clerical support workers;Construction   ;Y15-29;68;1;2.591294624970541e-07;512353;0.00013272099509517853;1;0;Young +17107;Luxembourg;M;Clerical support workers;Construction   ;Y30-49;189;1;7.202274766462239e-07;512353;0.00036888629519101087;1;0;Young +17108;Luxembourg;M;Clerical support workers;Construction   ;Y50-64;62;1;2.3626509815907876e-07;512353;0.00012101031905736865;0;1;Old +17109;Luxembourg;M;Clerical support workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17110;Luxembourg;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;345;1;1.3147009494335833e-06;512353;0.0006733638721740675;1;0;Young +17111;Luxembourg;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;664;1;2.5303229867359402e-06;512353;0.0012959814815176256;1;0;Young +17112;Luxembourg;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;185;1;7.049845670875737e-07;512353;0.00036107917783247096;0;1;Old +17113;Luxembourg;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17114;Luxembourg;M;Clerical support workers;Transportation and storage   ;Y15-29;212;1;8.078742066084628e-07;512353;0.0004137772200026154;1;0;Young +17115;Luxembourg;M;Clerical support workers;Transportation and storage   ;Y30-49;761;1;2.8999635435332087e-06;512353;0.0014853040774622185;1;0;Young +17116;Luxembourg;M;Clerical support workers;Transportation and storage   ;Y50-64;317;1;1.2080005825230317e-06;512353;0.0006187140506642881;0;1;Old +17117;Luxembourg;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;38;1;1.448076408071773e-07;512353;7.416761490612917e-05;1;0;Young +17118;Luxembourg;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;1;0;Young +17119;Luxembourg;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;23;1;8.764672996223889e-08;512353;4.48909248116045e-05;0;1;Old +17120;Luxembourg;M;Clerical support workers;Information and communication   ;Y15-29;151;1;5.754198358390467e-07;512353;0.0002947186802848817;1;0;Young +17121;Luxembourg;M;Clerical support workers;Information and communication   ;Y30-49;572;1;2.1797360668869848e-06;512353;0.0011164177822712076;1;0;Young +17122;Luxembourg;M;Clerical support workers;Information and communication   ;Y50-64;242;1;9.221960282983396e-07;512353;0.00047233060019166473;0;1;Old +17123;Luxembourg;M;Clerical support workers;Financial and insurance activities   ;Y15-29;324;1;1.2346756742506695e-06;512353;0.000632376506041733;1;0;Young +17124;Luxembourg;M;Clerical support workers;Financial and insurance activities   ;Y30-49;1391;1;5.300721799020622e-06;512353;0.0027149250614322547;1;0;Young +17125;Luxembourg;M;Clerical support workers;Financial and insurance activities   ;Y50-64;615;1;2.343597344642475e-06;512353;0.0012003442938755117;0;1;Old +17126;Luxembourg;M;Clerical support workers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17127;Luxembourg;M;Clerical support workers;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;1;0;Young +17128;Luxembourg;M;Clerical support workers;Real estate activities   ;Y30-49;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;1;0;Young +17129;Luxembourg;M;Clerical support workers;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +17130;Luxembourg;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;122;1;4.6490874153883237e-07;512353;0.00023811707943546736;1;0;Young +17131;Luxembourg;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;161;1;6.135271097356723e-07;512353;0.0003142364736812315;1;0;Young +17132;Luxembourg;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;76;1;2.896152816143546e-07;512353;0.00014833522981225834;0;1;Old +17133;Luxembourg;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +17134;Luxembourg;M;Clerical support workers;Administrative and support service activities   ;Y15-29;60;1;2.2864364337975364e-07;512353;0.00011710676037809869;1;0;Young +17135;Luxembourg;M;Clerical support workers;Administrative and support service activities   ;Y30-49;119;1;4.5347655936984473e-07;512353;0.0002322617414165624;1;0;Young +17136;Luxembourg;M;Clerical support workers;Administrative and support service activities   ;Y50-64;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;0;1;Old +17137;Luxembourg;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;288;1;1.0974894882228174e-06;512353;0.0005621124498148737;1;0;Young +17138;Luxembourg;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;978;1;3.726891387089984e-06;512353;0.0019088401941630088;1;0;Young +17139;Luxembourg;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;466;1;1.7757989635827531e-06;512353;0.0009095291722698998;0;1;Old +17140;Luxembourg;M;Clerical support workers;Education   ;Y15-29;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +17141;Luxembourg;M;Clerical support workers;Education   ;Y30-49;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;1;0;Young +17142;Luxembourg;M;Clerical support workers;Education   ;Y50-64;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;0;1;Old +17143;Luxembourg;M;Clerical support workers;Human health and social work activities   ;Y15-29;77;1;2.9342600900401714e-07;512353;0.00015028700915189333;1;0;Young +17144;Luxembourg;M;Clerical support workers;Human health and social work activities   ;Y30-49;138;1;5.258803797734334e-07;512353;0.000269345548869627;1;0;Young +17145;Luxembourg;M;Clerical support workers;Human health and social work activities   ;Y50-64;69;1;2.629401898867167e-07;512353;0.0001346727744348135;0;1;Old +17146;Luxembourg;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;1;0;Young +17147;Luxembourg;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;48;1;1.829149147038029e-07;512353;9.368540830247895e-05;1;0;Young +17148;Luxembourg;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;0;1;Old +17149;Luxembourg;M;Clerical support workers;Other service activities   ;Y15-29;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +17150;Luxembourg;M;Clerical support workers;Other service activities   ;Y30-49;55;1;2.0959000643144082e-07;512353;0.0001073478636799238;1;0;Young +17151;Luxembourg;M;Clerical support workers;Other service activities   ;Y50-64;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;0;1;Old +17152;Luxembourg;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17153;Luxembourg;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +17154;Luxembourg;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;201;1;7.659562053221747e-07;512353;0.00039230764726663064;1;0;Young +17155;Luxembourg;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;211;1;8.040634792188003e-07;512353;0.0004118254406629804;0;1;Old +17156;Luxembourg;M;Clerical support workers;Not stated   ;Y15-29;155;1;5.906627453976969e-07;512353;0.00030252579764342163;1;0;Young +17157;Luxembourg;M;Clerical support workers;Not stated   ;Y30-49;347;1;1.3223224042129085e-06;512353;0.0006772674308533374;1;0;Young +17158;Luxembourg;M;Clerical support workers;Not stated   ;Y50-64;118;1;4.496658319801821e-07;512353;0.00023030996207692742;0;1;Old +17159;Luxembourg;M;Clerical support workers;Not stated   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17160;Luxembourg;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17161;Luxembourg;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +17162;Luxembourg;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17163;Luxembourg;M;Service and sales workers;Manufacturing   ;Y15-29;28;1;1.067003669105517e-07;512353;5.464982150977939e-05;1;0;Young +17164;Luxembourg;M;Service and sales workers;Manufacturing   ;Y30-49;81;1;3.086689185626674e-07;512353;0.00015809412651043324;1;0;Young +17165;Luxembourg;M;Service and sales workers;Manufacturing   ;Y50-64;65;1;2.4769728032806646e-07;512353;0.00012686565707627359;0;1;Old +17166;Luxembourg;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17167;Luxembourg;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +17168;Luxembourg;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17169;Luxembourg;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17170;Luxembourg;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17171;Luxembourg;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17172;Luxembourg;M;Service and sales workers;Construction   ;Y15-29;30;1;1.1432182168987682e-07;512353;5.8553380189049344e-05;1;0;Young +17173;Luxembourg;M;Service and sales workers;Construction   ;Y30-49;97;1;3.6964055679726836e-07;512353;0.0001893225959445929;1;0;Young +17174;Luxembourg;M;Service and sales workers;Construction   ;Y50-64;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;0;1;Old +17175;Luxembourg;M;Service and sales workers;Construction   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17176;Luxembourg;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;618;1;2.3550295268114623e-06;512353;0.0012061996318944166;1;0;Young +17177;Luxembourg;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;991;1;3.7764308431555976e-06;512353;0.0019342133255782635;1;0;Young +17178;Luxembourg;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;365;1;1.3909154972268347e-06;512353;0.0007123994589667671;0;1;Old +17179;Luxembourg;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;0;1;Old +17180;Luxembourg;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17181;Luxembourg;M;Service and sales workers;Transportation and storage   ;Y15-29;79;1;3.010474637833423e-07;512353;0.0001541905678311633;1;0;Young +17182;Luxembourg;M;Service and sales workers;Transportation and storage   ;Y30-49;232;1;8.840887544017141e-07;512353;0.00045281280679531494;1;0;Young +17183;Luxembourg;M;Service and sales workers;Transportation and storage   ;Y50-64;103;1;3.9250492113524375e-07;512353;0.00020103327198240276;0;1;Old +17184;Luxembourg;M;Service and sales workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17185;Luxembourg;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;546;1;2.080657154755758e-06;512353;0.0010656715194406982;1;0;Young +17186;Luxembourg;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;1202;1;4.580494322374398e-06;512353;0.002346038766241244;1;0;Young +17187;Luxembourg;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;297;1;1.1317860347297806e-06;512353;0.0005796784638715885;0;1;Old +17188;Luxembourg;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17189;Luxembourg;M;Service and sales workers;Information and communication   ;Y15-29;38;1;1.448076408071773e-07;512353;7.416761490612917e-05;1;0;Young +17190;Luxembourg;M;Service and sales workers;Information and communication   ;Y30-49;57;1;2.1721146121076594e-07;512353;0.00011125142235919376;1;0;Young +17191;Luxembourg;M;Service and sales workers;Information and communication   ;Y50-64;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +17192;Luxembourg;M;Service and sales workers;Financial and insurance activities   ;Y15-29;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;1;0;Young +17193;Luxembourg;M;Service and sales workers;Financial and insurance activities   ;Y30-49;79;1;3.010474637833423e-07;512353;0.0001541905678311633;1;0;Young +17194;Luxembourg;M;Service and sales workers;Financial and insurance activities   ;Y50-64;57;1;2.1721146121076594e-07;512353;0.00011125142235919376;0;1;Old +17195;Luxembourg;M;Service and sales workers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17196;Luxembourg;M;Service and sales workers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17197;Luxembourg;M;Service and sales workers;Real estate activities   ;Y30-49;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +17198;Luxembourg;M;Service and sales workers;Real estate activities   ;Y50-64;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +17199;Luxembourg;M;Service and sales workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17200;Luxembourg;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +17201;Luxembourg;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;57;1;2.1721146121076594e-07;512353;0.00011125142235919376;1;0;Young +17202;Luxembourg;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;0;1;Old +17203;Luxembourg;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17204;Luxembourg;M;Service and sales workers;Administrative and support service activities   ;Y15-29;181;1;6.897416575289234e-07;512353;0.00035327206047393105;1;0;Young +17205;Luxembourg;M;Service and sales workers;Administrative and support service activities   ;Y30-49;351;1;1.3375653137715587e-06;512353;0.0006850745482118774;1;0;Young +17206;Luxembourg;M;Service and sales workers;Administrative and support service activities   ;Y50-64;83;1;3.1629037334199253e-07;512353;0.0001619976851897032;0;1;Old +17207;Luxembourg;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;405;1;1.543344592813337e-06;512353;0.0007904706325521662;1;0;Young +17208;Luxembourg;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;896;1;3.4144117411376543e-06;512353;0.0017487942883129405;1;0;Young +17209;Luxembourg;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;232;1;8.840887544017141e-07;512353;0.00045281280679531494;0;1;Old +17210;Luxembourg;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17211;Luxembourg;M;Service and sales workers;Education   ;Y15-29;50;1;1.9053636948312803e-07;512353;9.75889669817489e-05;1;0;Young +17212;Luxembourg;M;Service and sales workers;Education   ;Y30-49;131;1;4.992052880457954e-07;512353;0.00025568309349218213;1;0;Young +17213;Luxembourg;M;Service and sales workers;Education   ;Y50-64;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;0;1;Old +17214;Luxembourg;M;Service and sales workers;Education   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17215;Luxembourg;M;Service and sales workers;Human health and social work activities   ;Y15-29;215;1;8.193063887774505e-07;512353;0.00041963255802152035;1;0;Young +17216;Luxembourg;M;Service and sales workers;Human health and social work activities   ;Y30-49;334;1;1.2727829481472953e-06;512353;0.0006518942994380827;1;0;Young +17217;Luxembourg;M;Service and sales workers;Human health and social work activities   ;Y50-64;106;1;4.039371033042314e-07;512353;0.0002068886100013077;0;1;Old +17218;Luxembourg;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +17219;Luxembourg;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;51;1;1.943470968727906e-07;512353;9.954074632138388e-05;1;0;Young +17220;Luxembourg;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;0;1;Old +17221;Luxembourg;M;Service and sales workers;Other service activities   ;Y15-29;72;1;2.7437237205570434e-07;512353;0.00014052811245371844;1;0;Young +17222;Luxembourg;M;Service and sales workers;Other service activities   ;Y30-49;148;1;5.63987653670059e-07;512353;0.0002888633422659768;1;0;Young +17223;Luxembourg;M;Service and sales workers;Other service activities   ;Y50-64;60;1;2.2864364337975364e-07;512353;0.00011710676037809869;0;1;Old +17224;Luxembourg;M;Service and sales workers;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17225;Luxembourg;M;Service and sales workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17226;Luxembourg;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17227;Luxembourg;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17228;Luxembourg;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17229;Luxembourg;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;31;1;1.1813254907953938e-07;512353;6.050515952868433e-05;1;0;Young +17230;Luxembourg;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;0;1;Old +17231;Luxembourg;M;Service and sales workers;Not stated   ;Y15-29;279;1;1.0631929417158544e-06;512353;0.000544546435758159;1;0;Young +17232;Luxembourg;M;Service and sales workers;Not stated   ;Y30-49;583;1;2.221654068173273e-06;512353;0.0011378873550071922;1;0;Young +17233;Luxembourg;M;Service and sales workers;Not stated   ;Y50-64;269;1;1.0250856678192288e-06;512353;0.0005250286423618091;0;1;Old +17234;Luxembourg;M;Service and sales workers;Not stated   ;Y65-84;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;0;1;Old +17235;Luxembourg;M;Service and sales workers;Not stated   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17236;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;228;1;8.688458448430638e-07;512353;0.00044500568943677503;1;0;Young +17237;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;739;1;2.8161275409606323e-06;512353;0.0014423649319902489;1;0;Young +17238;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;597;1;2.2750042516285485e-06;512353;0.001165212265762082;0;1;Old +17239;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;113;1;4.3061219503186933e-07;512353;0.00022055106537875255;0;1;Old +17240;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17241;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17242;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +17243;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;0;1;Old +17244;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17245;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17246;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17247;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17248;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17249;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17250;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +17251;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;1;0;Young +17252;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +17253;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17254;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +17255;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;74;1;2.819938268350295e-07;512353;0.0001444316711329884;1;0;Young +17256;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;32;1;1.2194327646920193e-07;512353;6.24569388683193e-05;0;1;Old +17257;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17258;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17259;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17260;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17261;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17262;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +17263;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17264;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17265;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17266;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17267;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17268;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17269;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17270;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17271;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;1;0;Young +17272;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;0;1;Old +17273;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17274;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;51;1;1.943470968727906e-07;512353;9.954074632138388e-05;1;0;Young +17275;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;105;1;4.0012637591456885e-07;512353;0.0002049368306616727;1;0;Young +17276;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;0;1;Old +17277;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;110;1;4.1918001286288164e-07;512353;0.0002146957273598476;1;0;Young +17278;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;262;1;9.984105760915908e-07;512353;0.0005113661869843643;1;0;Young +17279;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;83;1;3.1629037334199253e-07;512353;0.0001619976851897032;0;1;Old +17280;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17281;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +17282;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;53;1;2.019685516521157e-07;512353;0.00010344430500065385;1;0;Young +17283;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;88;1;3.353440102903053e-07;512353;0.0001717565818878781;1;0;Young +17284;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;0;1;Old +17285;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17286;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +17287;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17288;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17289;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +17290;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +17291;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17292;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +17293;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17294;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;88;1;3.353440102903053e-07;512353;0.0001717565818878781;1;0;Young +17295;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;147;1;5.601769262803964e-07;512353;0.0002869115629263418;1;0;Young +17296;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;89;1;3.3915473767996787e-07;512353;0.00017370836122751305;0;1;Old +17297;Luxembourg;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y65-84;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;0;1;Old +17298;Luxembourg;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +17299;Luxembourg;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;1;0;Young +17300;Luxembourg;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;0;1;Old +17301;Luxembourg;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +17302;Luxembourg;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +17303;Luxembourg;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;0;1;Old +17304;Luxembourg;M;Craft and related trades workers;Manufacturing   ;Y15-29;524;1;1.9968211521831816e-06;512353;0.0010227323739687285;1;0;Young +17305;Luxembourg;M;Craft and related trades workers;Manufacturing   ;Y30-49;1377;1;5.247371615565346e-06;512353;0.002687600150677365;1;0;Young +17306;Luxembourg;M;Craft and related trades workers;Manufacturing   ;Y50-64;690;1;2.6294018988671666e-06;512353;0.001346727744348135;0;1;Old +17307;Luxembourg;M;Craft and related trades workers;Manufacturing   ;Y65-84;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17308;Luxembourg;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;56;1;2.134007338211034e-07;512353;0.00010929964301955878;1;0;Young +17309;Luxembourg;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;146;1;5.563661988907339e-07;512353;0.0002849597835867068;1;0;Young +17310;Luxembourg;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;42;1;1.6005055036582754e-07;512353;8.197473226466909e-05;0;1;Old +17311;Luxembourg;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;1;0;Young +17312;Luxembourg;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;66;1;2.51508007717729e-07;512353;0.00012881743641590858;1;0;Young +17313;Luxembourg;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;0;1;Old +17314;Luxembourg;M;Craft and related trades workers;Construction   ;Y15-29;1811;1;6.901227302678897e-06;512353;0.0035346723840789457;1;0;Young +17315;Luxembourg;M;Craft and related trades workers;Construction   ;Y30-49;5703;1;2.1732578303245583e-05;512353;0.01113099757393828;1;0;Young +17316;Luxembourg;M;Craft and related trades workers;Construction   ;Y50-64;1681;1;6.405832742022764e-06;512353;0.0032809410699263983;0;1;Old +17317;Luxembourg;M;Craft and related trades workers;Construction   ;Y65-84;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +17318;Luxembourg;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;719;1;2.739912993167381e-06;512353;0.0014033293451975494;1;0;Young +17319;Luxembourg;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1095;1;4.172746491680504e-06;512353;0.002137198376900301;1;0;Young +17320;Luxembourg;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;388;1;1.4785622271890734e-06;512353;0.0007572903837783716;0;1;Old +17321;Luxembourg;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +17322;Luxembourg;M;Craft and related trades workers;Transportation and storage   ;Y15-29;203;1;7.735776601014998e-07;512353;0.00039621120594590057;1;0;Young +17323;Luxembourg;M;Craft and related trades workers;Transportation and storage   ;Y30-49;400;1;1.5242909558650242e-06;512353;0.0007807117358539913;1;0;Young +17324;Luxembourg;M;Craft and related trades workers;Transportation and storage   ;Y50-64;193;1;7.354703862048742e-07;512353;0.0003766934125495508;0;1;Old +17325;Luxembourg;M;Craft and related trades workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17326;Luxembourg;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +17327;Luxembourg;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;35;1;1.3337545863818962e-07;512353;6.831227688722424e-05;1;0;Young +17328;Luxembourg;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +17329;Luxembourg;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17330;Luxembourg;M;Craft and related trades workers;Information and communication   ;Y15-29;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +17331;Luxembourg;M;Craft and related trades workers;Information and communication   ;Y30-49;69;1;2.629401898867167e-07;512353;0.0001346727744348135;1;0;Young +17332;Luxembourg;M;Craft and related trades workers;Information and communication   ;Y50-64;67;1;2.5531873510739155e-07;512353;0.00013076921575554354;0;1;Old +17333;Luxembourg;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;1;0;Young +17334;Luxembourg;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;114;1;4.344229224215319e-07;512353;0.00022250284471838752;1;0;Young +17335;Luxembourg;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;0;1;Old +17336;Luxembourg;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17337;Luxembourg;M;Craft and related trades workers;Real estate activities   ;Y15-29;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;1;0;Young +17338;Luxembourg;M;Craft and related trades workers;Real estate activities   ;Y30-49;63;1;2.400758255487413e-07;512353;0.00012296209839700363;1;0;Young +17339;Luxembourg;M;Craft and related trades workers;Real estate activities   ;Y50-64;25;1;9.526818474156401e-08;512353;4.879448349087445e-05;0;1;Old +17340;Luxembourg;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;36;1;1.3718618602785217e-07;512353;7.026405622685922e-05;1;0;Young +17341;Luxembourg;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;129;1;4.915838332664703e-07;512353;0.0002517795348129122;1;0;Young +17342;Luxembourg;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;47;1;1.7910418731414036e-07;512353;9.173362896284398e-05;0;1;Old +17343;Luxembourg;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;79;1;3.010474637833423e-07;512353;0.0001541905678311633;1;0;Young +17344;Luxembourg;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;302;1;1.1508396716780934e-06;512353;0.0005894373605697634;1;0;Young +17345;Luxembourg;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;77;1;2.9342600900401714e-07;512353;0.00015028700915189333;0;1;Old +17346;Luxembourg;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;135;1;5.144481976044457e-07;512353;0.00026349021085072204;1;0;Young +17347;Luxembourg;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;590;1;2.2483291599009107e-06;512353;0.0011515498103846372;1;0;Young +17348;Luxembourg;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;241;1;9.18385300908677e-07;512353;0.00047037882085202977;0;1;Old +17349;Luxembourg;M;Craft and related trades workers;Education   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +17350;Luxembourg;M;Craft and related trades workers;Education   ;Y30-49;51;1;1.943470968727906e-07;512353;9.954074632138388e-05;1;0;Young +17351;Luxembourg;M;Craft and related trades workers;Education   ;Y50-64;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;0;1;Old +17352;Luxembourg;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;56;1;2.134007338211034e-07;512353;0.00010929964301955878;1;0;Young +17353;Luxembourg;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;152;1;5.792305632287092e-07;512353;0.0002966704596245167;1;0;Young +17354;Luxembourg;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;72;1;2.7437237205570434e-07;512353;0.00014052811245371844;0;1;Old +17355;Luxembourg;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17356;Luxembourg;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +17357;Luxembourg;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17358;Luxembourg;M;Craft and related trades workers;Other service activities   ;Y15-29;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;1;0;Young +17359;Luxembourg;M;Craft and related trades workers;Other service activities   ;Y30-49;52;1;1.9815782426245315e-07;512353;0.00010149252566101887;1;0;Young +17360;Luxembourg;M;Craft and related trades workers;Other service activities   ;Y50-64;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;0;1;Old +17361;Luxembourg;M;Craft and related trades workers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17362;Luxembourg;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17363;Luxembourg;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +17364;Luxembourg;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17365;Luxembourg;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;1;0;Young +17366;Luxembourg;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;22;1;8.383600257257633e-08;512353;4.293914547196952e-05;0;1;Old +17367;Luxembourg;M;Craft and related trades workers;Not stated   ;Y15-29;581;1;2.2140326133939478e-06;512353;0.0011339837963279223;1;0;Young +17368;Luxembourg;M;Craft and related trades workers;Not stated   ;Y30-49;1567;1;5.971409819601233e-06;512353;0.003058438225208011;1;0;Young +17369;Luxembourg;M;Craft and related trades workers;Not stated   ;Y50-64;503;1;1.916795877000268e-06;512353;0.000981745007836394;0;1;Old +17370;Luxembourg;M;Craft and related trades workers;Not stated   ;Y65-84;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;0;1;Old +17371;Luxembourg;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +17372;Luxembourg;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17373;Luxembourg;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17374;Luxembourg;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17375;Luxembourg;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +17376;Luxembourg;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +17377;Luxembourg;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;387;1;1.4747514997994108e-06;512353;0.0007553386044387366;1;0;Young +17378;Luxembourg;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;1329;1;5.064456700861543e-06;512353;0.002593914742374886;1;0;Young +17379;Luxembourg;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;570;1;2.1721146121076596e-06;512353;0.0011125142235919375;0;1;Old +17380;Luxembourg;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17381;Luxembourg;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +17382;Luxembourg;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17383;Luxembourg;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +17384;Luxembourg;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +17385;Luxembourg;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;48;1;1.829149147038029e-07;512353;9.368540830247895e-05;1;0;Young +17386;Luxembourg;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +17387;Luxembourg;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;87;1;3.3153328290064277e-07;512353;0.0001698048025482431;1;0;Young +17388;Luxembourg;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;615;1;2.343597344642475e-06;512353;0.0012003442938755117;1;0;Young +17389;Luxembourg;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;201;1;7.659562053221747e-07;512353;0.00039230764726663064;0;1;Old +17390;Luxembourg;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;108;1;4.1155855808355654e-07;512353;0.00021079216868057765;1;0;Young +17391;Luxembourg;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;443;1;1.6881522336205144e-06;512353;0.0008646382474582953;1;0;Young +17392;Luxembourg;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;115;1;4.382336498111945e-07;512353;0.0002244546240580225;0;1;Old +17393;Luxembourg;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17394;Luxembourg;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;452;1;1.7224487801274773e-06;512353;0.0008822042615150102;1;0;Young +17395;Luxembourg;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;1662;1;6.3334289216191756e-06;512353;0.003243857262473334;1;0;Young +17396;Luxembourg;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;541;1;2.0616035178074454e-06;512353;0.0010559126227425231;0;1;Old +17397;Luxembourg;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17398;Luxembourg;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;1;0;Young +17399;Luxembourg;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;36;1;1.3718618602785217e-07;512353;7.026405622685922e-05;1;0;Young +17400;Luxembourg;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +17401;Luxembourg;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;1;0;Young +17402;Luxembourg;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +17403;Luxembourg;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +17404;Luxembourg;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17405;Luxembourg;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;42;1;1.6005055036582754e-07;512353;8.197473226466909e-05;1;0;Young +17406;Luxembourg;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;0;1;Old +17407;Luxembourg;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;1;0;Young +17408;Luxembourg;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17409;Luxembourg;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +17410;Luxembourg;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;1;0;Young +17411;Luxembourg;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;0;1;Old +17412;Luxembourg;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;109;1;4.153692854732191e-07;512353;0.00021274394802021262;1;0;Young +17413;Luxembourg;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;333;1;1.2689722207576327e-06;512353;0.0006499425200984477;1;0;Young +17414;Luxembourg;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;55;1;2.0959000643144082e-07;512353;0.0001073478636799238;0;1;Old +17415;Luxembourg;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17416;Luxembourg;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;48;1;1.829149147038029e-07;512353;9.368540830247895e-05;1;0;Young +17417;Luxembourg;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;455;1;1.7338809622964651e-06;512353;0.0008880595995339151;1;0;Young +17418;Luxembourg;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;185;1;7.049845670875737e-07;512353;0.00036107917783247096;0;1;Old +17419;Luxembourg;M;Plant and machine operators, and assemblers;Education   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17420;Luxembourg;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +17421;Luxembourg;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;66;1;2.51508007717729e-07;512353;0.00012881743641590858;1;0;Young +17422;Luxembourg;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;49;1;1.8672564209346548e-07;512353;9.563718764211393e-05;0;1;Old +17423;Luxembourg;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17424;Luxembourg;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17425;Luxembourg;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +17426;Luxembourg;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17427;Luxembourg;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +17428;Luxembourg;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +17429;Luxembourg;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17430;Luxembourg;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17431;Luxembourg;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17432;Luxembourg;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17433;Luxembourg;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;52;1;1.9815782426245315e-07;512353;0.00010149252566101887;1;0;Young +17434;Luxembourg;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;30;1;1.1432182168987682e-07;512353;5.8553380189049344e-05;0;1;Old +17435;Luxembourg;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17436;Luxembourg;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;113;1;4.3061219503186933e-07;512353;0.00022055106537875255;1;0;Young +17437;Luxembourg;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;452;1;1.7224487801274773e-06;512353;0.0008822042615150102;1;0;Young +17438;Luxembourg;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;172;1;6.554451110219605e-07;512353;0.0003357060464172163;0;1;Old +17439;Luxembourg;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;1;0;Young +17440;Luxembourg;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;50;1;1.9053636948312803e-07;512353;9.75889669817489e-05;1;0;Young +17441;Luxembourg;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;16;1;6.097163823460096e-08;512353;3.122846943415965e-05;0;1;Old +17442;Luxembourg;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17443;Luxembourg;M;Elementary occupations;Mining and quarrying   ;Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17444;Luxembourg;M;Elementary occupations;Mining and quarrying   ;Y30-49;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +17445;Luxembourg;M;Elementary occupations;Mining and quarrying   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17446;Luxembourg;M;Elementary occupations;Manufacturing   ;Y15-29;97;1;3.6964055679726836e-07;512353;0.0001893225959445929;1;0;Young +17447;Luxembourg;M;Elementary occupations;Manufacturing   ;Y30-49;279;1;1.0631929417158544e-06;512353;0.000544546435758159;1;0;Young +17448;Luxembourg;M;Elementary occupations;Manufacturing   ;Y50-64;129;1;4.915838332664703e-07;512353;0.0002517795348129122;0;1;Old +17449;Luxembourg;M;Elementary occupations;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17450;Luxembourg;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;1;0;Young +17451;Luxembourg;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +17452;Luxembourg;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;0;1;Old +17453;Luxembourg;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;19;1;7.240382040358865e-08;512353;3.7083807453064586e-05;1;0;Young +17454;Luxembourg;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;78;1;2.9723673639367974e-07;512353;0.0001522387884915283;1;0;Young +17455;Luxembourg;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;0;1;Old +17456;Luxembourg;M;Elementary occupations;Construction   ;Y15-29;352;1;1.3413760411612213e-06;512353;0.0006870263275515124;1;0;Young +17457;Luxembourg;M;Elementary occupations;Construction   ;Y30-49;944;1;3.597326655841457e-06;512353;0.0018424796966154194;1;0;Young +17458;Luxembourg;M;Elementary occupations;Construction   ;Y50-64;270;1;1.0288963952088914e-06;512353;0.0005269804217014441;0;1;Old +17459;Luxembourg;M;Elementary occupations;Construction   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17460;Luxembourg;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;162;1;6.173378371253348e-07;512353;0.0003161882530208665;1;0;Young +17461;Luxembourg;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;296;1;1.127975307340118e-06;512353;0.0005777266845319536;1;0;Young +17462;Luxembourg;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;73;1;2.7818309944536694e-07;512353;0.0001424798917933534;0;1;Old +17463;Luxembourg;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17464;Luxembourg;M;Elementary occupations;Transportation and storage   ;Y15-29;61;1;2.3245437076941619e-07;512353;0.00011905853971773368;1;0;Young +17465;Luxembourg;M;Elementary occupations;Transportation and storage   ;Y30-49;207;1;7.8882056966015e-07;512353;0.0004040183233044405;1;0;Young +17466;Luxembourg;M;Elementary occupations;Transportation and storage   ;Y50-64;45;1;1.7148273253481523e-07;512353;8.783007028357402e-05;0;1;Old +17467;Luxembourg;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;165;1;6.287700192943225e-07;512353;0.0003220435910397714;1;0;Young +17468;Luxembourg;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;274;1;1.0441393047675416e-06;512353;0.000534787539059984;1;0;Young +17469;Luxembourg;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;69;1;2.629401898867167e-07;512353;0.0001346727744348135;0;1;Old +17470;Luxembourg;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17471;Luxembourg;M;Elementary occupations;Information and communication   ;Y15-29;18;1;6.859309301392609e-08;512353;3.513202811342961e-05;1;0;Young +17472;Luxembourg;M;Elementary occupations;Information and communication   ;Y30-49;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;1;0;Young +17473;Luxembourg;M;Elementary occupations;Information and communication   ;Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +17474;Luxembourg;M;Elementary occupations;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17475;Luxembourg;M;Elementary occupations;Financial and insurance activities   ;Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +17476;Luxembourg;M;Elementary occupations;Financial and insurance activities   ;Y30-49;34;1;1.2956473124852705e-07;512353;6.636049754758926e-05;1;0;Young +17477;Luxembourg;M;Elementary occupations;Financial and insurance activities   ;Y50-64;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +17478;Luxembourg;M;Elementary occupations;Real estate activities   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +17479;Luxembourg;M;Elementary occupations;Real estate activities   ;Y30-49;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;1;0;Young +17480;Luxembourg;M;Elementary occupations;Real estate activities   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17481;Luxembourg;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;1;0;Young +17482;Luxembourg;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;56;1;2.134007338211034e-07;512353;0.00010929964301955878;1;0;Young +17483;Luxembourg;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;20;1;7.621454779325121e-08;512353;3.903558679269956e-05;0;1;Old +17484;Luxembourg;M;Elementary occupations;Administrative and support service activities   ;Y15-29;202;1;7.697669327118372e-07;512353;0.0003942594266062656;1;0;Young +17485;Luxembourg;M;Elementary occupations;Administrative and support service activities   ;Y30-49;371;1;1.41377986156481e-06;512353;0.0007241101350045769;1;0;Young +17486;Luxembourg;M;Elementary occupations;Administrative and support service activities   ;Y50-64;103;1;3.9250492113524375e-07;512353;0.00020103327198240276;0;1;Old +17487;Luxembourg;M;Elementary occupations;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17488;Luxembourg;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;284;1;1.0822465786641672e-06;512353;0.0005543053324563338;1;0;Young +17489;Luxembourg;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;1192;1;4.542387048477772e-06;512353;0.002326520972844894;1;0;Young +17490;Luxembourg;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;425;1;1.6195591406065882e-06;512353;0.0008295062193448658;0;1;Old +17491;Luxembourg;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17492;Luxembourg;M;Elementary occupations;Education   ;Y15-29;12;1;4.5728728675950726e-08;512353;2.3421352075619738e-05;1;0;Young +17493;Luxembourg;M;Elementary occupations;Education   ;Y30-49;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;1;0;Young +17494;Luxembourg;M;Elementary occupations;Education   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17495;Luxembourg;M;Elementary occupations;Human health and social work activities   ;Y15-29;202;1;7.697669327118372e-07;512353;0.0003942594266062656;1;0;Young +17496;Luxembourg;M;Elementary occupations;Human health and social work activities   ;Y30-49;328;1;1.24991858380932e-06;512353;0.0006401836234002728;1;0;Young +17497;Luxembourg;M;Elementary occupations;Human health and social work activities   ;Y50-64;128;1;4.877731058768077e-07;512353;0.0002498277554732772;0;1;Old +17498;Luxembourg;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;1;0;Young +17499;Luxembourg;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;1;0;Young +17500;Luxembourg;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17501;Luxembourg;M;Elementary occupations;Other service activities   ;Y15-29;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;1;0;Young +17502;Luxembourg;M;Elementary occupations;Other service activities   ;Y30-49;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +17503;Luxembourg;M;Elementary occupations;Other service activities   ;Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +17504;Luxembourg;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17505;Luxembourg;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;1;0;Young +17506;Luxembourg;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;5;1;1.9053636948312802e-08;512353;9.75889669817489e-06;0;1;Old +17507;Luxembourg;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17508;Luxembourg;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +17509;Luxembourg;M;Elementary occupations;Not stated   ;Y15-29;202;1;7.697669327118372e-07;512353;0.0003942594266062656;1;0;Young +17510;Luxembourg;M;Elementary occupations;Not stated   ;Y30-49;532;1;2.027306971300482e-06;512353;0.0010383466086858085;1;0;Young +17511;Luxembourg;M;Elementary occupations;Not stated   ;Y50-64;181;1;6.897416575289234e-07;512353;0.00035327206047393105;0;1;Old +17512;Luxembourg;M;Elementary occupations;Not stated   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17513;Luxembourg;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;1;0;Young +17514;Luxembourg;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;29;1;1.1051109430021426e-07;512353;5.660160084941437e-05;1;0;Young +17515;Luxembourg;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;29;1;1.1051109430021426e-07;512353;5.660160084941437e-05;0;1;Old +17516;Luxembourg;M;Not stated;Agriculture, forestry and fishing   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +17517;Luxembourg;M;Not stated;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17518;Luxembourg;M;Not stated;Mining and quarrying   ;Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17519;Luxembourg;M;Not stated;Mining and quarrying   ;Y50-64;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17520;Luxembourg;M;Not stated;Manufacturing   ;Y15-29;110;1;4.1918001286288164e-07;512353;0.0002146957273598476;1;0;Young +17521;Luxembourg;M;Not stated;Manufacturing   ;Y30-49;394;1;1.5014265915270488e-06;512353;0.0007690010598161815;1;0;Young +17522;Luxembourg;M;Not stated;Manufacturing   ;Y50-64;173;1;6.592558384116229e-07;512353;0.00033765782575685124;0;1;Old +17523;Luxembourg;M;Not stated;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17524;Luxembourg;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;13;1;4.953945606561329e-08;512353;2.537313141525472e-05;1;0;Young +17525;Luxembourg;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;25;1;9.526818474156401e-08;512353;4.879448349087445e-05;1;0;Young +17526;Luxembourg;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;15;1;5.716091084493841e-08;512353;2.9276690094524672e-05;0;1;Old +17527;Luxembourg;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +17528;Luxembourg;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;24;1;9.145745735190145e-08;512353;4.6842704151239476e-05;1;0;Young +17529;Luxembourg;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +17530;Luxembourg;M;Not stated;Construction   ;Y15-29;137;1;5.220696523837708e-07;512353;0.000267393769529992;1;0;Young +17531;Luxembourg;M;Not stated;Construction   ;Y30-49;388;1;1.4785622271890734e-06;512353;0.0007572903837783716;1;0;Young +17532;Luxembourg;M;Not stated;Construction   ;Y50-64;109;1;4.153692854732191e-07;512353;0.00021274394802021262;0;1;Old +17533;Luxembourg;M;Not stated;Construction   ;Y65-84;8;1;3.048581911730048e-08;512353;1.5614234717079824e-05;0;1;Old +17534;Luxembourg;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;128;1;4.877731058768077e-07;512353;0.0002498277554732772;1;0;Young +17535;Luxembourg;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;289;1;1.10130021561248e-06;512353;0.0005640642291545087;1;0;Young +17536;Luxembourg;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;113;1;4.3061219503186933e-07;512353;0.00022055106537875255;0;1;Old +17537;Luxembourg;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;10;1;3.8107273896625604e-08;512353;1.951779339634978e-05;0;1;Old +17538;Luxembourg;M;Not stated;Transportation and storage   ;Y15-29;101;1;3.848834663559186e-07;512353;0.0001971297133031328;1;0;Young +17539;Luxembourg;M;Not stated;Transportation and storage   ;Y30-49;334;1;1.2727829481472953e-06;512353;0.0006518942994380827;1;0;Young +17540;Luxembourg;M;Not stated;Transportation and storage   ;Y50-64;137;1;5.220696523837708e-07;512353;0.000267393769529992;0;1;Old +17541;Luxembourg;M;Not stated;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17542;Luxembourg;M;Not stated;Accommodation and food service activities   ;Y15-29;42;1;1.6005055036582754e-07;512353;8.197473226466909e-05;1;0;Young +17543;Luxembourg;M;Not stated;Accommodation and food service activities   ;Y30-49;114;1;4.344229224215319e-07;512353;0.00022250284471838752;1;0;Young +17544;Luxembourg;M;Not stated;Accommodation and food service activities   ;Y50-64;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;0;1;Old +17545;Luxembourg;M;Not stated;Information and communication   ;Y15-29;33;1;1.257540038588645e-07;512353;6.440871820795429e-05;1;0;Young +17546;Luxembourg;M;Not stated;Information and communication   ;Y30-49;110;1;4.1918001286288164e-07;512353;0.0002146957273598476;1;0;Young +17547;Luxembourg;M;Not stated;Information and communication   ;Y50-64;50;1;1.9053636948312803e-07;512353;9.75889669817489e-05;0;1;Old +17548;Luxembourg;M;Not stated;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17549;Luxembourg;M;Not stated;Financial and insurance activities   ;Y15-29;27;1;1.0288963952088914e-07;512353;5.2698042170144414e-05;1;0;Young +17550;Luxembourg;M;Not stated;Financial and insurance activities   ;Y30-49;165;1;6.287700192943225e-07;512353;0.0003220435910397714;1;0;Young +17551;Luxembourg;M;Not stated;Financial and insurance activities   ;Y50-64;60;1;2.2864364337975364e-07;512353;0.00011710676037809869;0;1;Old +17552;Luxembourg;M;Not stated;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17553;Luxembourg;M;Not stated;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +17554;Luxembourg;M;Not stated;Real estate activities   ;Y30-49;17;1;6.478236562426352e-08;512353;3.318024877379463e-05;1;0;Young +17555;Luxembourg;M;Not stated;Real estate activities   ;Y50-64;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;0;1;Old +17556;Luxembourg;M;Not stated;Real estate activities   ;Y65-84;2;1;7.62145477932512e-09;512353;3.903558679269956e-06;0;1;Old +17557;Luxembourg;M;Not stated;Professional, scientific and technical activities   ;Y15-29;42;1;1.6005055036582754e-07;512353;8.197473226466909e-05;1;0;Young +17558;Luxembourg;M;Not stated;Professional, scientific and technical activities   ;Y30-49;105;1;4.0012637591456885e-07;512353;0.0002049368306616727;1;0;Young +17559;Luxembourg;M;Not stated;Professional, scientific and technical activities   ;Y50-64;39;1;1.4861836819683987e-07;512353;7.611939424576415e-05;0;1;Old +17560;Luxembourg;M;Not stated;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17561;Luxembourg;M;Not stated;Administrative and support service activities   ;Y15-29;58;1;2.2102218860042852e-07;512353;0.00011320320169882873;1;0;Young +17562;Luxembourg;M;Not stated;Administrative and support service activities   ;Y30-49;155;1;5.906627453976969e-07;512353;0.00030252579764342163;1;0;Young +17563;Luxembourg;M;Not stated;Administrative and support service activities   ;Y50-64;36;1;1.3718618602785217e-07;512353;7.026405622685922e-05;0;1;Old +17564;Luxembourg;M;Not stated;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17565;Luxembourg;M;Not stated;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17566;Luxembourg;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;185;1;7.049845670875737e-07;512353;0.00036107917783247096;1;0;Young +17567;Luxembourg;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;796;1;3.033339002171398e-06;512353;0.0015536163543494427;1;0;Young +17568;Luxembourg;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;347;1;1.3223224042129085e-06;512353;0.0006772674308533374;0;1;Old +17569;Luxembourg;M;Not stated;Education   ;Y15-29;21;1;8.002527518291377e-08;512353;4.0987366132334546e-05;1;0;Young +17570;Luxembourg;M;Not stated;Education   ;Y30-49;36;1;1.3718618602785217e-07;512353;7.026405622685922e-05;1;0;Young +17571;Luxembourg;M;Not stated;Education   ;Y50-64;14;1;5.335018345527585e-08;512353;2.7324910754889695e-05;0;1;Old +17572;Luxembourg;M;Not stated;Human health and social work activities   ;Y15-29;149;1;5.677983810597215e-07;512353;0.00029081512160561174;1;0;Young +17573;Luxembourg;M;Not stated;Human health and social work activities   ;Y30-49;279;1;1.0631929417158544e-06;512353;0.000544546435758159;1;0;Young +17574;Luxembourg;M;Not stated;Human health and social work activities   ;Y50-64;95;1;3.6201910201794326e-07;512353;0.00018541903726532294;0;1;Old +17575;Luxembourg;M;Not stated;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17576;Luxembourg;M;Not stated;Arts, entertainment and recreation   ;Y15-29;9;1;3.429654650696304e-08;512353;1.7566014056714805e-05;1;0;Young +17577;Luxembourg;M;Not stated;Arts, entertainment and recreation   ;Y30-49;29;1;1.1051109430021426e-07;512353;5.660160084941437e-05;1;0;Young +17578;Luxembourg;M;Not stated;Arts, entertainment and recreation   ;Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +17579;Luxembourg;M;Not stated;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;0;1;Old +17580;Luxembourg;M;Not stated;Other service activities   ;Y15-29;6;1;2.2864364337975363e-08;512353;1.1710676037809869e-05;1;0;Young +17581;Luxembourg;M;Not stated;Other service activities   ;Y30-49;26;1;9.907891213122657e-08;512353;5.074626283050944e-05;1;0;Young +17582;Luxembourg;M;Not stated;Other service activities   ;Y50-64;11;1;4.1918001286288165e-08;512353;2.146957273598476e-05;0;1;Old +17583;Luxembourg;M;Not stated;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;512353;5.8553380189049346e-06;0;1;Old +17584;Luxembourg;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;512353;1.951779339634978e-06;1;0;Young +17585;Luxembourg;M;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;512353;7.807117358539912e-06;1;0;Young +17586;Luxembourg;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y15-29;7;1;2.6675091727637924e-08;512353;1.3662455377444848e-05;1;0;Young +17587;Luxembourg;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y30-49;103;1;3.9250492113524375e-07;512353;0.00020103327198240276;1;0;Young +17588;Luxembourg;M;Not stated;Activities of extraterritorial organisations and bodies   ;Y50-64;137;1;5.220696523837708e-07;512353;0.000267393769529992;0;1;Old +17589;Luxembourg;M;Not stated;Not stated   ;Y15-29;993;1;3.7840522979349228e-06;512353;0.0019381168842575334;1;0;Young +17590;Luxembourg;M;Not stated;Not stated   ;Y30-49;1971;1;7.5109436850249065e-06;512353;0.003846957078420542;1;0;Young +17591;Luxembourg;M;Not stated;Not stated   ;Y50-64;766;1;2.9190171804815213e-06;512353;0.0014950629741603933;0;1;Old +17592;Luxembourg;M;Not stated;Not stated   ;Y65-84;37;1;1.4099691341751475e-07;512353;7.22158355664942e-05;0;1;Old +17593;Latvia;F;Not applicable;Not applicable  ;Y15-29;106865;1;0.00040723338249628953;2070371;0.051616352817924906;1;0;Young +17594;Latvia;F;Not applicable;Not applicable  ;Y30-49;47278;1;0.00018016356952846655;2070371;0.022835520783473107;1;0;Young +17595;Latvia;F;Not applicable;Not applicable  ;Y50-64;80989;1;0.00030862700056138114;2070371;0.039118109749412065;0;1;Old +17596;Latvia;F;Not applicable;Not applicable  ;Y65-84;216518;1;0.0008250910729549583;2070371;0.10457932418875651;0;1;Old +17597;Latvia;F;Not applicable;Not applicable  ;Y_GE85;27215;1;0.00010370894590966658;2070371;0.013144987057875134;0;1;Old +17598;Latvia;F;Not applicable;Not applicable  ;Y_LT15;143644;1;0.0005473881251606889;2070371;0.06938080179832504;0;1;Old +17599;Latvia;F;Armed forces occupations;Financial and insurance activities   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17600;Latvia;F;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +17601;Latvia;F;Armed forces occupations;Administrative and support service activities   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +17602;Latvia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;121;1;4.610980141491698e-07;2070371;5.84436316003267e-05;1;0;Young +17603;Latvia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;265;1;1.0098427582605786e-06;2070371;0.00012799638325691385;1;0;Young +17604;Latvia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;0;1;Old +17605;Latvia;F;Armed forces occupations;Education   ;Y15-29;26;1;9.907891213122657e-08;2070371;1.255813571577268e-05;1;0;Young +17606;Latvia;F;Armed forces occupations;Education   ;Y30-49;45;1;1.7148273253481523e-07;2070371;2.1735234892683484e-05;1;0;Young +17607;Latvia;F;Armed forces occupations;Education   ;Y50-64;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +17608;Latvia;F;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +17609;Latvia;F;Armed forces occupations;Other service activities   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17610;Latvia;F;Managers;Agriculture, forestry and fishing   ;Y15-29;103;1;3.9250492113524375e-07;2070371;4.974953764325331e-05;1;0;Young +17611;Latvia;F;Managers;Agriculture, forestry and fishing   ;Y30-49;888;1;3.383925922020354e-06;2070371;0.00042890863521562075;1;0;Young +17612;Latvia;F;Managers;Agriculture, forestry and fishing   ;Y50-64;799;1;3.044771184340386e-06;2070371;0.00038592117065009123;0;1;Old +17613;Latvia;F;Managers;Agriculture, forestry and fishing   ;Y65-84;81;1;3.086689185626674e-07;2070371;3.9123422806830276e-05;0;1;Old +17614;Latvia;F;Managers;Mining and quarrying   ;Y15-29;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;1;0;Young +17615;Latvia;F;Managers;Mining and quarrying   ;Y30-49;34;1;1.2956473124852705e-07;2070371;1.6422177474471967e-05;1;0;Young +17616;Latvia;F;Managers;Mining and quarrying   ;Y50-64;20;1;7.621454779325121e-08;2070371;9.660104396748215e-06;0;1;Old +17617;Latvia;F;Managers;Manufacturing   ;Y15-29;481;1;1.8329598744276917e-06;2070371;0.00023232551074179458;1;0;Young +17618;Latvia;F;Managers;Manufacturing   ;Y30-49;2284;1;8.703701357989289e-06;2070371;0.0011031839221086462;1;0;Young +17619;Latvia;F;Managers;Manufacturing   ;Y50-64;1343;1;5.117806884316819e-06;2070371;0.0006486760102416427;0;1;Old +17620;Latvia;F;Managers;Manufacturing   ;Y65-84;76;1;2.896152816143546e-07;2070371;3.670839670764322e-05;0;1;Old +17621;Latvia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;1;0;Young +17622;Latvia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;131;1;4.992052880457954e-07;2070371;6.327368379870081e-05;1;0;Young +17623;Latvia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;106;1;4.039371033042314e-07;2070371;5.119855330276554e-05;0;1;Old +17624;Latvia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +17625;Latvia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;26;1;9.907891213122657e-08;2070371;1.255813571577268e-05;1;0;Young +17626;Latvia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;129;1;4.915838332664703e-07;2070371;6.230767335902599e-05;1;0;Young +17627;Latvia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;87;1;3.3153328290064277e-07;2070371;4.2021454125854735e-05;0;1;Old +17628;Latvia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +17629;Latvia;F;Managers;Construction   ;Y15-29;177;1;6.744987479702732e-07;2070371;8.549192391122171e-05;1;0;Young +17630;Latvia;F;Managers;Construction   ;Y30-49;670;1;2.5531873510739154e-06;2070371;0.0003236134972910652;1;0;Young +17631;Latvia;F;Managers;Construction   ;Y50-64;335;1;1.2765936755369577e-06;2070371;0.0001618067486455326;0;1;Old +17632;Latvia;F;Managers;Construction   ;Y65-84;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;0;1;Old +17633;Latvia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1775;1;6.764041116651045e-06;2070371;0.0008573342652114041;1;0;Young +17634;Latvia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7330;1;2.793263176622657e-05;2070371;0.003540428261408221;1;0;Young +17635;Latvia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3312;1;1.26211291145624e-05;2070371;0.0015997132881015045;0;1;Old +17636;Latvia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;207;1;7.8882056966015e-07;2070371;9.998208050634403e-05;0;1;Old +17637;Latvia;F;Managers;Transportation and storage   ;Y15-29;365;1;1.3909154972268347e-06;2070371;0.00017629690524065495;1;0;Young +17638;Latvia;F;Managers;Transportation and storage   ;Y30-49;1568;1;5.975220546990895e-06;2070371;0.0007573521847050601;1;0;Young +17639;Latvia;F;Managers;Transportation and storage   ;Y50-64;889;1;3.3877366494100165e-06;2070371;0.0004293916404354582;0;1;Old +17640;Latvia;F;Managers;Transportation and storage   ;Y65-84;54;1;2.0577927904177827e-07;2070371;2.6082281871220184e-05;0;1;Old +17641;Latvia;F;Managers;Accommodation and food service activities   ;Y15-29;643;1;2.4502977115530265e-06;2070371;0.00031057235635545513;1;0;Young +17642;Latvia;F;Managers;Accommodation and food service activities   ;Y30-49;1254;1;4.7786521466368505e-06;2070371;0.0006056885456761131;1;0;Young +17643;Latvia;F;Managers;Accommodation and food service activities   ;Y50-64;553;1;2.1073322464833958e-06;2070371;0.0002671018865700882;0;1;Old +17644;Latvia;F;Managers;Accommodation and food service activities   ;Y65-84;41;1;1.56239822976165e-07;2070371;1.9803214013333842e-05;0;1;Old +17645;Latvia;F;Managers;Information and communication   ;Y15-29;344;1;1.310890222043921e-06;2070371;0.0001661537956240693;1;0;Young +17646;Latvia;F;Managers;Information and communication   ;Y30-49;727;1;2.7703988122846815e-06;2070371;0.00035114479482179764;1;0;Young +17647;Latvia;F;Managers;Information and communication   ;Y50-64;225;1;8.574136626740762e-07;2070371;0.00010867617446341743;0;1;Old +17648;Latvia;F;Managers;Information and communication   ;Y65-84;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;0;1;Old +17649;Latvia;F;Managers;Financial and insurance activities   ;Y15-29;731;1;2.785641721843332e-06;2070371;0.00035307681570114727;1;0;Young +17650;Latvia;F;Managers;Financial and insurance activities   ;Y30-49;1720;1;6.554451110219604e-06;2070371;0.0008307689781203465;1;0;Young +17651;Latvia;F;Managers;Financial and insurance activities   ;Y50-64;443;1;1.6881522336205144e-06;2070371;0.00021397131238797297;0;1;Old +17652;Latvia;F;Managers;Financial and insurance activities   ;Y65-84;17;1;6.478236562426352e-08;2070371;8.211088737235984e-06;0;1;Old +17653;Latvia;F;Managers;Real estate activities   ;Y15-29;135;1;5.144481976044457e-07;2070371;6.520570467805046e-05;1;0;Young +17654;Latvia;F;Managers;Real estate activities   ;Y30-49;610;1;2.324543707694162e-06;2070371;0.00029463318410082056;1;0;Young +17655;Latvia;F;Managers;Real estate activities   ;Y50-64;427;1;1.6271805953859134e-06;2070371;0.0002062432288705744;0;1;Old +17656;Latvia;F;Managers;Real estate activities   ;Y65-84;64;1;2.4388655293840386e-07;2070371;3.091233406959429e-05;0;1;Old +17657;Latvia;F;Managers;Professional, scientific and technical activities   ;Y15-29;517;1;1.970146060455544e-06;2070371;0.00024971369865594135;1;0;Young +17658;Latvia;F;Managers;Professional, scientific and technical activities   ;Y30-49;1602;1;6.104785278239422e-06;2070371;0.0007737743621795321;1;0;Young +17659;Latvia;F;Managers;Professional, scientific and technical activities   ;Y50-64;564;1;2.149250247769684e-06;2070371;0.0002724149439882997;0;1;Old +17660;Latvia;F;Managers;Professional, scientific and technical activities   ;Y65-84;41;1;1.56239822976165e-07;2070371;1.9803214013333842e-05;0;1;Old +17661;Latvia;F;Managers;Administrative and support service activities   ;Y15-29;306;1;1.1660825812367436e-06;2070371;0.0001477995972702477;1;0;Young +17662;Latvia;F;Managers;Administrative and support service activities   ;Y30-49;736;1;2.8046953587916445e-06;2070371;0.00035549184180033434;1;0;Young +17663;Latvia;F;Managers;Administrative and support service activities   ;Y50-64;275;1;1.0479500321572042e-06;2070371;0.00013282643545528796;0;1;Old +17664;Latvia;F;Managers;Administrative and support service activities   ;Y65-84;20;1;7.621454779325121e-08;2070371;9.660104396748215e-06;0;1;Old +17665;Latvia;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;466;1;1.7757989635827531e-06;2070371;0.00022508043244423342;1;0;Young +17666;Latvia;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;2566;1;9.77832648187413e-06;2070371;0.001239391394102796;1;0;Young +17667;Latvia;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;1309;1;4.988242153068292e-06;2070371;0.0006322538327671707;0;1;Old +17668;Latvia;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;84;1;3.201011007316551e-07;2070371;4.057243846634251e-05;0;1;Old +17669;Latvia;F;Managers;Education   ;Y15-29;281;1;1.0708143964951796e-06;2070371;0.00013572446677431244;1;0;Young +17670;Latvia;F;Managers;Education   ;Y30-49;1987;1;7.571915323259508e-06;2070371;0.0009597313718169352;1;0;Young +17671;Latvia;F;Managers;Education   ;Y50-64;1650;1;6.287700192943225e-06;2070371;0.0007969586127317278;0;1;Old +17672;Latvia;F;Managers;Education   ;Y65-84;202;1;7.697669327118372e-07;2070371;9.756705440715698e-05;0;1;Old +17673;Latvia;F;Managers;Education   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17674;Latvia;F;Managers;Human health and social work activities   ;Y15-29;163;1;6.211485645149974e-07;2070371;7.872985083349796e-05;1;0;Young +17675;Latvia;F;Managers;Human health and social work activities   ;Y30-49;889;1;3.3877366494100165e-06;2070371;0.0004293916404354582;1;0;Young +17676;Latvia;F;Managers;Human health and social work activities   ;Y50-64;624;1;2.377893891149438e-06;2070371;0.00030139525717854434;0;1;Old +17677;Latvia;F;Managers;Human health and social work activities   ;Y65-84;93;1;3.543976472386181e-07;2070371;4.49194854448792e-05;0;1;Old +17678;Latvia;F;Managers;Arts, entertainment and recreation   ;Y15-29;345;1;1.3147009494335833e-06;2070371;0.00016663680084390671;1;0;Young +17679;Latvia;F;Managers;Arts, entertainment and recreation   ;Y30-49;1085;1;4.134639217783878e-06;2070371;0.0005240606635235907;1;0;Young +17680;Latvia;F;Managers;Arts, entertainment and recreation   ;Y50-64;672;1;2.5608088058532406e-06;2070371;0.00032457950773074007;0;1;Old +17681;Latvia;F;Managers;Arts, entertainment and recreation   ;Y65-84;60;1;2.2864364337975364e-07;2070371;2.8980313190244647e-05;0;1;Old +17682;Latvia;F;Managers;Other service activities   ;Y15-29;442;1;1.6843415062308518e-06;2070371;0.00021348830716813556;1;0;Young +17683;Latvia;F;Managers;Other service activities   ;Y30-49;968;1;3.6887841131933586e-06;2070371;0.0004675490528026136;1;0;Young +17684;Latvia;F;Managers;Other service activities   ;Y50-64;410;1;1.5623982297616498e-06;2070371;0.00019803214013333842;0;1;Old +17685;Latvia;F;Managers;Other service activities   ;Y65-84;48;1;1.829149147038029e-07;2070371;2.3184250552195717e-05;0;1;Old +17686;Latvia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +17687;Latvia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +17688;Latvia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +17689;Latvia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +17690;Latvia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;23;1;8.764672996223889e-08;2070371;1.1109120056260448e-05;1;0;Young +17691;Latvia;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;0;1;Old +17692;Latvia;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;121;1;4.610980141491698e-07;2070371;5.84436316003267e-05;1;0;Young +17693;Latvia;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;602;1;2.2940578885768615e-06;2070371;0.0002907691423421213;1;0;Young +17694;Latvia;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;497;1;1.8939315126622927e-06;2070371;0.00024005359425919315;0;1;Old +17695;Latvia;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;54;1;2.0577927904177827e-07;2070371;2.6082281871220184e-05;0;1;Old +17696;Latvia;F;Professionals;Mining and quarrying   ;Y15-29;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;1;0;Young +17697;Latvia;F;Professionals;Mining and quarrying   ;Y30-49;26;1;9.907891213122657e-08;2070371;1.255813571577268e-05;1;0;Young +17698;Latvia;F;Professionals;Mining and quarrying   ;Y50-64;29;1;1.1051109430021426e-07;2070371;1.4007151375284913e-05;0;1;Old +17699;Latvia;F;Professionals;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17700;Latvia;F;Professionals;Manufacturing   ;Y15-29;841;1;3.2048217347062134e-06;2070371;0.00040620738988326246;1;0;Young +17701;Latvia;F;Professionals;Manufacturing   ;Y30-49;2709;1;1.0323260498595877e-05;2070371;0.0013084611405395458;1;0;Young +17702;Latvia;F;Professionals;Manufacturing   ;Y50-64;2001;1;7.625265506714784e-06;2070371;0.000966493444894659;0;1;Old +17703;Latvia;F;Professionals;Manufacturing   ;Y65-84;130;1;4.953945606561329e-07;2070371;6.27906785788634e-05;0;1;Old +17704;Latvia;F;Professionals;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17705;Latvia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;74;1;2.819938268350295e-07;2070371;3.57423862679684e-05;1;0;Young +17706;Latvia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;421;1;1.604316231047938e-06;2070371;0.00020334519755154995;1;0;Young +17707;Latvia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;323;1;1.2308649468610071e-06;2070371;0.0001560106860074837;0;1;Old +17708;Latvia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;20;1;7.621454779325121e-08;2070371;9.660104396748215e-06;0;1;Old +17709;Latvia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;55;1;2.0959000643144082e-07;2070371;2.6565287091057593e-05;1;0;Young +17710;Latvia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;170;1;6.478236562426352e-07;2070371;8.211088737235984e-05;1;0;Young +17711;Latvia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;115;1;4.382336498111945e-07;2070371;5.554560028130224e-05;0;1;Old +17712;Latvia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +17713;Latvia;F;Professionals;Construction   ;Y15-29;383;1;1.4595085902407606e-06;2070371;0.00018499099919772833;1;0;Young +17714;Latvia;F;Professionals;Construction   ;Y30-49;1016;1;3.871699027897162e-06;2070371;0.0004907333033548094;1;0;Young +17715;Latvia;F;Professionals;Construction   ;Y50-64;723;1;2.755155902726031e-06;2070371;0.000349212773942448;0;1;Old +17716;Latvia;F;Professionals;Construction   ;Y65-84;47;1;1.7910418731414036e-07;2070371;2.2701245332358305e-05;0;1;Old +17717;Latvia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1421;1;5.415043620710499e-06;2070371;0.0006863504173889607;1;0;Young +17718;Latvia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4063;1;1.5482985384198983e-05;2070371;0.0019624502081994;1;0;Young +17719;Latvia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2203;1;8.395032439426621e-06;2070371;0.001064060499301816;0;1;Old +17720;Latvia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;246;1;9.374389378569899e-07;2070371;0.00011881928408000305;0;1;Old +17721;Latvia;F;Professionals;Transportation and storage   ;Y15-29;431;1;1.6424235049445636e-06;2070371;0.00020817524974992403;1;0;Young +17722;Latvia;F;Professionals;Transportation and storage   ;Y30-49;1268;1;4.832002330092127e-06;2070371;0.0006124506187538369;1;0;Young +17723;Latvia;F;Professionals;Transportation and storage   ;Y50-64;911;1;3.4715726519825925e-06;2070371;0.00044001775527188124;0;1;Old +17724;Latvia;F;Professionals;Transportation and storage   ;Y65-84;49;1;1.8672564209346548e-07;2070371;2.366725577203313e-05;0;1;Old +17725;Latvia;F;Professionals;Accommodation and food service activities   ;Y15-29;142;1;5.411232893320836e-07;2070371;6.858674121691233e-05;1;0;Young +17726;Latvia;F;Professionals;Accommodation and food service activities   ;Y30-49;331;1;1.2613507659783075e-06;2070371;0.00015987472776618296;1;0;Young +17727;Latvia;F;Professionals;Accommodation and food service activities   ;Y50-64;229;1;8.726565722327264e-07;2070371;0.00011060819534276706;0;1;Old +17728;Latvia;F;Professionals;Accommodation and food service activities   ;Y65-84;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;0;1;Old +17729;Latvia;F;Professionals;Information and communication   ;Y15-29;1275;1;4.858677421819764e-06;2070371;0.0006158316552926987;1;0;Young +17730;Latvia;F;Professionals;Information and communication   ;Y30-49;2059;1;7.846287695315212e-06;2070371;0.0009945077476452289;1;0;Young +17731;Latvia;F;Professionals;Information and communication   ;Y50-64;787;1;2.999042455664435e-06;2070371;0.0003801251080120423;0;1;Old +17732;Latvia;F;Professionals;Information and communication   ;Y65-84;64;1;2.4388655293840386e-07;2070371;3.091233406959429e-05;0;1;Old +17733;Latvia;F;Professionals;Financial and insurance activities   ;Y15-29;1074;1;4.09272121649759e-06;2070371;0.0005187476061053792;1;0;Young +17734;Latvia;F;Professionals;Financial and insurance activities   ;Y30-49;1626;1;6.196242735591324e-06;2070371;0.0007853664874556299;1;0;Young +17735;Latvia;F;Professionals;Financial and insurance activities   ;Y50-64;402;1;1.5319124106443494e-06;2070371;0.00019416809837463912;0;1;Old +17736;Latvia;F;Professionals;Financial and insurance activities   ;Y65-84;17;1;6.478236562426352e-08;2070371;8.211088737235984e-06;0;1;Old +17737;Latvia;F;Professionals;Real estate activities   ;Y15-29;222;1;8.459814805050885e-07;2070371;0.00010722715880390519;1;0;Young +17738;Latvia;F;Professionals;Real estate activities   ;Y30-49;737;1;2.808506086181307e-06;2070371;0.0003559748470201717;1;0;Young +17739;Latvia;F;Professionals;Real estate activities   ;Y50-64;539;1;2.0539820630281202e-06;2070371;0.0002603398134923644;0;1;Old +17740;Latvia;F;Professionals;Real estate activities   ;Y65-84;86;1;3.277225555109802e-07;2070371;4.1538448906017326e-05;0;1;Old +17741;Latvia;F;Professionals;Professional, scientific and technical activities   ;Y15-29;2787;1;1.0620497234989557e-05;2070371;0.0013461355476868638;1;0;Young +17742;Latvia;F;Professionals;Professional, scientific and technical activities   ;Y30-49;4435;1;1.6900575973153457e-05;2070371;0.002142128149978917;1;0;Young +17743;Latvia;F;Professionals;Professional, scientific and technical activities   ;Y50-64;1949;1;7.42710768245233e-06;2070371;0.0009413771734631136;0;1;Old +17744;Latvia;F;Professionals;Professional, scientific and technical activities   ;Y65-84;306;1;1.1660825812367436e-06;2070371;0.0001477995972702477;0;1;Old +17745;Latvia;F;Professionals;Administrative and support service activities   ;Y15-29;348;1;1.326133131602571e-06;2070371;0.00016808581650341894;1;0;Young +17746;Latvia;F;Professionals;Administrative and support service activities   ;Y30-49;604;1;2.3016793433561867e-06;2070371;0.0002917351527817961;1;0;Young +17747;Latvia;F;Professionals;Administrative and support service activities   ;Y50-64;234;1;8.917102091810392e-07;2070371;0.00011302322144195412;0;1;Old +17748;Latvia;F;Professionals;Administrative and support service activities   ;Y65-84;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;0;1;Old +17749;Latvia;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;2775;1;1.0574768506313605e-05;2070371;0.001340339485048815;1;0;Young +17750;Latvia;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;6706;1;2.555473787507713e-05;2070371;0.0032390330042296766;1;0;Young +17751;Latvia;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;3084;1;1.1752283269719337e-05;2070371;0.001489588097978575;0;1;Old +17752;Latvia;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;277;1;1.0555714869365292e-06;2070371;0.00013379244589496278;0;1;Old +17753;Latvia;F;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +17754;Latvia;F;Professionals;Education   ;Y15-29;4264;1;1.6248941589521157e-05;2070371;0.0020595342573867196;1;0;Young +17755;Latvia;F;Professionals;Education   ;Y30-49;21986;1;8.378265238912106e-05;2070371;0.010619352763345313;1;0;Young +17756;Latvia;F;Professionals;Education   ;Y50-64;13151;1;5.0114875901452336e-05;2070371;0.006352001646081789;0;1;Old +17757;Latvia;F;Professionals;Education   ;Y65-84;1487;1;5.666551628428227e-06;2070371;0.0007182287618982298;0;1;Old +17758;Latvia;F;Professionals;Human health and social work activities   ;Y15-29;1447;1;5.514122532841725e-06;2070371;0.0006989085531047334;1;0;Young +17759;Latvia;F;Professionals;Human health and social work activities   ;Y30-49;6476;1;2.4678270575454742e-05;2070371;0.003127941803667072;1;0;Young +17760;Latvia;F;Professionals;Human health and social work activities   ;Y50-64;4744;1;1.807809073655919e-05;2070371;0.0022913767629086767;0;1;Old +17761;Latvia;F;Professionals;Human health and social work activities   ;Y65-84;1123;1;4.279446858591056e-06;2070371;0.0005424148618774123;0;1;Old +17762;Latvia;F;Professionals;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +17763;Latvia;F;Professionals;Arts, entertainment and recreation   ;Y15-29;765;1;2.9152064530918587e-06;2070371;0.0003694989931756192;1;0;Young +17764;Latvia;F;Professionals;Arts, entertainment and recreation   ;Y30-49;1869;1;7.1222494912793255e-06;2070371;0.0009027367558761207;1;0;Young +17765;Latvia;F;Professionals;Arts, entertainment and recreation   ;Y50-64;1236;1;4.710059053622925e-06;2070371;0.0005969944517190398;0;1;Old +17766;Latvia;F;Professionals;Arts, entertainment and recreation   ;Y65-84;172;1;6.554451110219605e-07;2070371;8.307689781203465e-05;0;1;Old +17767;Latvia;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +17768;Latvia;F;Professionals;Other service activities   ;Y15-29;327;1;1.2461078564196573e-06;2070371;0.00015794270688683333;1;0;Young +17769;Latvia;F;Professionals;Other service activities   ;Y30-49;735;1;2.800884631401982e-06;2070371;0.0003550088365804969;1;0;Young +17770;Latvia;F;Professionals;Other service activities   ;Y50-64;341;1;1.299458039874933e-06;2070371;0.00016470477996455708;0;1;Old +17771;Latvia;F;Professionals;Other service activities   ;Y65-84;72;1;2.7437237205570434e-07;2070371;3.4776375828293576e-05;0;1;Old +17772;Latvia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +17773;Latvia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +17774;Latvia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +17775;Latvia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;1;0;Young +17776;Latvia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;89;1;3.3915473767996787e-07;2070371;4.298746456552956e-05;1;0;Young +17777;Latvia;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;2070371;9.660104396748215e-06;0;1;Old +17778;Latvia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;160;1;6.097163823460097e-07;2070371;7.728083517398572e-05;1;0;Young +17779;Latvia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;522;1;1.9891996974038564e-06;2070371;0.0002521287247551284;1;0;Young +17780;Latvia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;341;1;1.299458039874933e-06;2070371;0.00016470477996455708;0;1;Old +17781;Latvia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;41;1;1.56239822976165e-07;2070371;1.9803214013333842e-05;0;1;Old +17782;Latvia;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;1;0;Young +17783;Latvia;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;47;1;1.7910418731414036e-07;2070371;2.2701245332358305e-05;1;0;Young +17784;Latvia;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;0;1;Old +17785;Latvia;F;Technicians and associate professionals;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +17786;Latvia;F;Technicians and associate professionals;Manufacturing   ;Y15-29;1043;1;3.97458866741805e-06;2070371;0.0005037744442904195;1;0;Young +17787;Latvia;F;Technicians and associate professionals;Manufacturing   ;Y30-49;2560;1;9.755462117536155e-06;2070371;0.0012364933627837715;1;0;Young +17788;Latvia;F;Technicians and associate professionals;Manufacturing   ;Y50-64;1413;1;5.384557801593198e-06;2070371;0.0006824863756302614;0;1;Old +17789;Latvia;F;Technicians and associate professionals;Manufacturing   ;Y65-84;70;1;2.6675091727637925e-07;2070371;3.381036538861875e-05;0;1;Old +17790;Latvia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;76;1;2.896152816143546e-07;2070371;3.670839670764322e-05;1;0;Young +17791;Latvia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;327;1;1.2461078564196573e-06;2070371;0.00015794270688683333;1;0;Young +17792;Latvia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;307;1;1.1698933086264062e-06;2070371;0.0001482826024900851;0;1;Old +17793;Latvia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;0;1;Old +17794;Latvia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;62;1;2.3626509815907876e-07;2070371;2.9946323629919468e-05;1;0;Young +17795;Latvia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;129;1;4.915838332664703e-07;2070371;6.230767335902599e-05;1;0;Young +17796;Latvia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;168;1;6.402022014633102e-07;2070371;8.114487693268502e-05;0;1;Old +17797;Latvia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;19;1;7.240382040358865e-08;2070371;9.177099176910805e-06;0;1;Old +17798;Latvia;F;Technicians and associate professionals;Construction   ;Y15-29;460;1;1.752934599244778e-06;2070371;0.00022218240112520897;1;0;Young +17799;Latvia;F;Technicians and associate professionals;Construction   ;Y30-49;693;1;2.6408340810361544e-06;2070371;0.0003347226173473257;1;0;Young +17800;Latvia;F;Technicians and associate professionals;Construction   ;Y50-64;338;1;1.2880258577059455e-06;2070371;0.00016325576430504485;0;1;Old +17801;Latvia;F;Technicians and associate professionals;Construction   ;Y65-84;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;0;1;Old +17802;Latvia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2983;1;1.1367399803363418e-05;2070371;0.0014408045707749965;1;0;Young +17803;Latvia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5553;1;2.11609691947962e-05;2070371;0.002682127985757142;1;0;Young +17804;Latvia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1914;1;7.293732223814141e-06;2070371;0.0009244719907688042;0;1;Old +17805;Latvia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;165;1;6.287700192943225e-07;2070371;7.969586127317278e-05;0;1;Old +17806;Latvia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17807;Latvia;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;797;1;3.0371497295610606e-06;2070371;0.0003849551602104164;1;0;Young +17808;Latvia;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;1367;1;5.20926434166872e-06;2070371;0.0006602681355177406;1;0;Young +17809;Latvia;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;600;1;2.2864364337975363e-06;2070371;0.0002898031319024465;0;1;Old +17810;Latvia;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;36;1;1.3718618602785217e-07;2070371;1.7388187914146788e-05;0;1;Old +17811;Latvia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;335;1;1.2765936755369577e-06;2070371;0.0001618067486455326;1;0;Young +17812;Latvia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;572;1;2.1797360668869848e-06;2070371;0.000276278985746999;1;0;Young +17813;Latvia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;281;1;1.0708143964951796e-06;2070371;0.00013572446677431244;0;1;Old +17814;Latvia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;23;1;8.764672996223889e-08;2070371;1.1109120056260448e-05;0;1;Old +17815;Latvia;F;Technicians and associate professionals;Information and communication   ;Y15-29;752;1;2.8656669970262457e-06;2070371;0.0003632199253177329;1;0;Young +17816;Latvia;F;Technicians and associate professionals;Information and communication   ;Y30-49;730;1;2.7818309944536693e-06;2070371;0.0003525938104813099;1;0;Young +17817;Latvia;F;Technicians and associate professionals;Information and communication   ;Y50-64;296;1;1.127975307340118e-06;2070371;0.0001429695450718736;0;1;Old +17818;Latvia;F;Technicians and associate professionals;Information and communication   ;Y65-84;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +17819;Latvia;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2426;1;9.244824647321371e-06;2070371;0.0011717706633255585;1;0;Young +17820;Latvia;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2777;1;1.058238996109293e-05;2070371;0.0013413054954884897;1;0;Young +17821;Latvia;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;766;1;2.9190171804815213e-06;2070371;0.00036998199839545666;0;1;Old +17822;Latvia;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;55;1;2.0959000643144082e-07;2070371;2.6565287091057593e-05;0;1;Old +17823;Latvia;F;Technicians and associate professionals;Real estate activities   ;Y15-29;352;1;1.3413760411612213e-06;2070371;0.0001700178373827686;1;0;Young +17824;Latvia;F;Technicians and associate professionals;Real estate activities   ;Y30-49;666;1;2.5379444415152654e-06;2070371;0.00032168147641171556;1;0;Young +17825;Latvia;F;Technicians and associate professionals;Real estate activities   ;Y50-64;386;1;1.4709407724097484e-06;2070371;0.00018644001485724056;0;1;Old +17826;Latvia;F;Technicians and associate professionals;Real estate activities   ;Y65-84;55;1;2.0959000643144082e-07;2070371;2.6565287091057593e-05;0;1;Old +17827;Latvia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;1533;1;5.841845088352705e-06;2070371;0.0007404470020107507;1;0;Young +17828;Latvia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;1952;1;7.438539864621318e-06;2070371;0.0009428261891226259;1;0;Young +17829;Latvia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;751;1;2.861856269636583e-06;2070371;0.0003627369200978955;0;1;Old +17830;Latvia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;52;1;1.9815782426245315e-07;2070371;2.511627143154536e-05;0;1;Old +17831;Latvia;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;492;1;1.8748778757139799e-06;2070371;0.0002376385681600061;1;0;Young +17832;Latvia;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;544;1;2.073035699976433e-06;2070371;0.0002627548395915515;1;0;Young +17833;Latvia;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;171;1;6.516343836322978e-07;2070371;8.259389259219724e-05;0;1;Old +17834;Latvia;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;17;1;6.478236562426352e-08;2070371;8.211088737235984e-06;0;1;Old +17835;Latvia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2881;1;1.0978705609617838e-05;2070371;0.0013915380383515805;1;0;Young +17836;Latvia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;5918;1;2.2551884692023034e-05;2070371;0.002858424890997797;1;0;Young +17837;Latvia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;2625;1;1.0003159397864222e-05;2070371;0.0012678887020732034;0;1;Old +17838;Latvia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;174;1;6.630665658012855e-07;2070371;8.404290825170947e-05;0;1;Old +17839;Latvia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17840;Latvia;F;Technicians and associate professionals;Education   ;Y15-29;588;1;2.2407077051215855e-06;2070371;0.0002840070692643975;1;0;Young +17841;Latvia;F;Technicians and associate professionals;Education   ;Y30-49;1223;1;4.660519597557312e-06;2070371;0.0005907153838611534;1;0;Young +17842;Latvia;F;Technicians and associate professionals;Education   ;Y50-64;942;1;3.5897052010621322e-06;2070371;0.00045499091708684094;0;1;Old +17843;Latvia;F;Technicians and associate professionals;Education   ;Y65-84;189;1;7.202274766462239e-07;2070371;9.128798654927064e-05;0;1;Old +17844;Latvia;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;1754;1;6.6840158414681314e-06;2070371;0.0008471911555948186;1;0;Young +17845;Latvia;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;7785;1;2.9666512728523034e-05;2070371;0.003760195636434243;1;0;Young +17846;Latvia;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;5254;1;2.0021561705287094e-05;2070371;0.0025377094250257563;0;1;Old +17847;Latvia;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;652;1;2.4845942580599894e-06;2070371;0.00031491940333399184;0;1;Old +17848;Latvia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;554;1;2.1111429738730584e-06;2070371;0.00026758489178992556;1;0;Young +17849;Latvia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;978;1;3.726891387089984e-06;2070371;0.00047237910500098776;1;0;Young +17850;Latvia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;567;1;2.1606824299386718e-06;2070371;0.0002738639596478119;0;1;Old +17851;Latvia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;103;1;3.9250492113524375e-07;2070371;4.974953764325331e-05;0;1;Old +17852;Latvia;F;Technicians and associate professionals;Other service activities   ;Y15-29;412;1;1.570019684540975e-06;2070371;0.00019899815057301324;1;0;Young +17853;Latvia;F;Technicians and associate professionals;Other service activities   ;Y30-49;786;1;2.9952317282747724e-06;2070371;0.0003796421027922049;1;0;Young +17854;Latvia;F;Technicians and associate professionals;Other service activities   ;Y50-64;297;1;1.1317860347297806e-06;2070371;0.000143452550291711;0;1;Old +17855;Latvia;F;Technicians and associate professionals;Other service activities   ;Y65-84;51;1;1.943470968727906e-07;2070371;2.463326621170795e-05;0;1;Old +17856;Latvia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +17857;Latvia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +17858;Latvia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17859;Latvia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;1;0;Young +17860;Latvia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;33;1;1.257540038588645e-07;2070371;1.5939172254634555e-05;1;0;Young +17861;Latvia;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +17862;Latvia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;78;1;2.9723673639367974e-07;2070371;3.767440714731804e-05;1;0;Young +17863;Latvia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;232;1;8.840887544017141e-07;2070371;0.0001120572110022793;1;0;Young +17864;Latvia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;231;1;8.802780270120515e-07;2070371;0.0001115742057824419;0;1;Old +17865;Latvia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;0;1;Old +17866;Latvia;F;Clerical support workers;Mining and quarrying   ;Y15-29;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;1;0;Young +17867;Latvia;F;Clerical support workers;Mining and quarrying   ;Y30-49;27;1;1.0288963952088914e-07;2070371;1.3041140935610092e-05;1;0;Young +17868;Latvia;F;Clerical support workers;Mining and quarrying   ;Y50-64;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;0;1;Old +17869;Latvia;F;Clerical support workers;Manufacturing   ;Y15-29;617;1;2.3512187994217997e-06;2070371;0.00029801422063968245;1;0;Young +17870;Latvia;F;Clerical support workers;Manufacturing   ;Y30-49;1525;1;5.811359269235405e-06;2070371;0.0007365829602520514;1;0;Young +17871;Latvia;F;Clerical support workers;Manufacturing   ;Y50-64;1189;1;4.530954866308785e-06;2070371;0.0005742932063866814;0;1;Old +17872;Latvia;F;Clerical support workers;Manufacturing   ;Y65-84;71;1;2.705616446660418e-07;2070371;3.429337060845617e-05;0;1;Old +17873;Latvia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;102;1;3.886941937455812e-07;2070371;4.92665324234159e-05;1;0;Young +17874;Latvia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;267;1;1.0174642130399036e-06;2070371;0.0001289623936965887;1;0;Young +17875;Latvia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;223;1;8.49792207894751e-07;2070371;0.00010771016402374261;0;1;Old +17876;Latvia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;0;1;Old +17877;Latvia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;48;1;1.829149147038029e-07;2070371;2.3184250552195717e-05;1;0;Young +17878;Latvia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;132;1;5.03016015435458e-07;2070371;6.375668901853822e-05;1;0;Young +17879;Latvia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;104;1;3.963156485249063e-07;2070371;5.023254286309072e-05;0;1;Old +17880;Latvia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;0;1;Old +17881;Latvia;F;Clerical support workers;Construction   ;Y15-29;279;1;1.0631929417158544e-06;2070371;0.0001347584563346376;1;0;Young +17882;Latvia;F;Clerical support workers;Construction   ;Y30-49;437;1;1.665287869282539e-06;2070371;0.00021107328106894851;1;0;Young +17883;Latvia;F;Clerical support workers;Construction   ;Y50-64;316;1;1.2041898551333691e-06;2070371;0.0001526296494686218;0;1;Old +17884;Latvia;F;Clerical support workers;Construction   ;Y65-84;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;0;1;Old +17885;Latvia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2292;1;8.73418717710659e-06;2070371;0.0011070479638673454;1;0;Young +17886;Latvia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3723;1;1.4187338071713714e-05;2070371;0.0017982284334546804;1;0;Young +17887;Latvia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1735;1;6.611612021064543e-06;2070371;0.0008380140564179077;0;1;Old +17888;Latvia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;86;1;3.277225555109802e-07;2070371;4.1538448906017326e-05;0;1;Old +17889;Latvia;F;Clerical support workers;Transportation and storage   ;Y15-29;1292;1;4.9234597874440285e-06;2070371;0.0006240427440299348;1;0;Young +17890;Latvia;F;Clerical support workers;Transportation and storage   ;Y30-49;3859;1;1.470559699670782e-05;2070371;0.0018639171433525682;1;0;Young +17891;Latvia;F;Clerical support workers;Transportation and storage   ;Y50-64;3010;1;1.1470289442884308e-05;2070371;0.0014538457117106065;0;1;Old +17892;Latvia;F;Clerical support workers;Transportation and storage   ;Y65-84;162;1;6.173378371253348e-07;2070371;7.824684561366055e-05;0;1;Old +17893;Latvia;F;Clerical support workers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +17894;Latvia;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;666;1;2.5379444415152654e-06;2070371;0.00032168147641171556;1;0;Young +17895;Latvia;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;395;1;1.5052373189167114e-06;2070371;0.00019078706183577726;1;0;Young +17896;Latvia;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;170;1;6.478236562426352e-07;2070371;8.211088737235984e-05;0;1;Old +17897;Latvia;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +17898;Latvia;F;Clerical support workers;Information and communication   ;Y15-29;643;1;2.4502977115530265e-06;2070371;0.00031057235635545513;1;0;Young +17899;Latvia;F;Clerical support workers;Information and communication   ;Y30-49;507;1;1.9320387865589183e-06;2070371;0.00024488364645756727;1;0;Young +17900;Latvia;F;Clerical support workers;Information and communication   ;Y50-64;200;1;7.621454779325121e-07;2070371;9.660104396748215e-05;0;1;Old +17901;Latvia;F;Clerical support workers;Information and communication   ;Y65-84;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;0;1;Old +17902;Latvia;F;Clerical support workers;Financial and insurance activities   ;Y15-29;1500;1;5.716091084493841e-06;2070371;0.0007245078297561161;1;0;Young +17903;Latvia;F;Clerical support workers;Financial and insurance activities   ;Y30-49;1397;1;5.323586163358597e-06;2070371;0.0006747582921128629;1;0;Young +17904;Latvia;F;Clerical support workers;Financial and insurance activities   ;Y50-64;453;1;1.72625950751714e-06;2070371;0.00021880136458634708;0;1;Old +17905;Latvia;F;Clerical support workers;Financial and insurance activities   ;Y65-84;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;0;1;Old +17906;Latvia;F;Clerical support workers;Real estate activities   ;Y15-29;178;1;6.783094753599357e-07;2070371;8.597492913105912e-05;1;0;Young +17907;Latvia;F;Clerical support workers;Real estate activities   ;Y30-49;282;1;1.074625123884842e-06;2070371;0.00013620747199414985;1;0;Young +17908;Latvia;F;Clerical support workers;Real estate activities   ;Y50-64;269;1;1.0250856678192288e-06;2070371;0.0001299284041362635;0;1;Old +17909;Latvia;F;Clerical support workers;Real estate activities   ;Y65-84;25;1;9.526818474156401e-08;2070371;1.207513049593527e-05;0;1;Old +17910;Latvia;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;505;1;1.924417331779593e-06;2070371;0.00024391763601789245;1;0;Young +17911;Latvia;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;583;1;2.221654068173273e-06;2070371;0.0002815920431652105;1;0;Young +17912;Latvia;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;257;1;9.79356939143278e-07;2070371;0.00012413234149821458;0;1;Old +17913;Latvia;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;32;1;1.2194327646920193e-07;2070371;1.5456167034797146e-05;0;1;Old +17914;Latvia;F;Clerical support workers;Administrative and support service activities   ;Y15-29;1173;1;4.469983228074183e-06;2070371;0.0005665651228692829;1;0;Young +17915;Latvia;F;Clerical support workers;Administrative and support service activities   ;Y30-49;869;1;3.311522101616765e-06;2070371;0.00041973153603870996;1;0;Young +17916;Latvia;F;Clerical support workers;Administrative and support service activities   ;Y50-64;255;1;9.71735484363953e-07;2070371;0.00012316633105853976;0;1;Old +17917;Latvia;F;Clerical support workers;Administrative and support service activities   ;Y65-84;17;1;6.478236562426352e-08;2070371;8.211088737235984e-06;0;1;Old +17918;Latvia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;503;1;1.916795877000268e-06;2070371;0.00024295162557821763;1;0;Young +17919;Latvia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;1217;1;4.637655233219336e-06;2070371;0.0005878173525421289;1;0;Young +17920;Latvia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;940;1;3.582083746282807e-06;2070371;0.0004540249066471661;0;1;Old +17921;Latvia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;125;1;4.7634092370782007e-07;2070371;6.037565247967635e-05;0;1;Old +17922;Latvia;F;Clerical support workers;Education   ;Y15-29;391;1;1.4899944093580612e-06;2070371;0.00018885504095642763;1;0;Young +17923;Latvia;F;Clerical support workers;Education   ;Y30-49;513;1;1.9549031508968934e-06;2070371;0.0002477816777765917;1;0;Young +17924;Latvia;F;Clerical support workers;Education   ;Y50-64;459;1;1.7491238718551153e-06;2070371;0.00022169939590537156;0;1;Old +17925;Latvia;F;Clerical support workers;Education   ;Y65-84;77;1;2.9342600900401714e-07;2070371;3.719140192748063e-05;0;1;Old +17926;Latvia;F;Clerical support workers;Human health and social work activities   ;Y15-29;230;1;8.76467299622389e-07;2070371;0.00011109120056260449;1;0;Young +17927;Latvia;F;Clerical support workers;Human health and social work activities   ;Y30-49;481;1;1.8329598744276917e-06;2070371;0.00023232551074179458;1;0;Young +17928;Latvia;F;Clerical support workers;Human health and social work activities   ;Y50-64;442;1;1.6843415062308518e-06;2070371;0.00021348830716813556;0;1;Old +17929;Latvia;F;Clerical support workers;Human health and social work activities   ;Y65-84;64;1;2.4388655293840386e-07;2070371;3.091233406959429e-05;0;1;Old +17930;Latvia;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;910;1;3.4677619245929303e-06;2070371;0.0004395347500520438;1;0;Young +17931;Latvia;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;793;1;3.0219068200024106e-06;2070371;0.0003830231393310667;1;0;Young +17932;Latvia;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;212;1;8.078742066084628e-07;2070371;0.00010239710660553109;0;1;Old +17933;Latvia;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;42;1;1.6005055036582754e-07;2070371;2.0286219233171254e-05;0;1;Old +17934;Latvia;F;Clerical support workers;Other service activities   ;Y15-29;181;1;6.897416575289234e-07;2070371;8.742394479057135e-05;1;0;Young +17935;Latvia;F;Clerical support workers;Other service activities   ;Y30-49;295;1;1.1241645799504554e-06;2070371;0.0001424865398520362;1;0;Young +17936;Latvia;F;Clerical support workers;Other service activities   ;Y50-64;175;1;6.668772931909481e-07;2070371;8.452591347154689e-05;0;1;Old +17937;Latvia;F;Clerical support workers;Other service activities   ;Y65-84;42;1;1.6005055036582754e-07;2070371;2.0286219233171254e-05;0;1;Old +17938;Latvia;F;Clerical support workers;Other service activities   ;Y_GE85;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +17939;Latvia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +17940;Latvia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +17941;Latvia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;1;0;Young +17942;Latvia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;2070371;8.694093957073394e-06;1;0;Young +17943;Latvia;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +17944;Latvia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;73;1;2.7818309944536694e-07;2070371;3.5259381048130985e-05;1;0;Young +17945;Latvia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;371;1;1.41377986156481e-06;2070371;0.0001791949365596794;1;0;Young +17946;Latvia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;290;1;1.1051109430021426e-06;2070371;0.00014007151375284912;0;1;Old +17947;Latvia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;0;1;Old +17948;Latvia;F;Service and sales workers;Mining and quarrying   ;Y15-29;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;1;0;Young +17949;Latvia;F;Service and sales workers;Mining and quarrying   ;Y30-49;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;1;0;Young +17950;Latvia;F;Service and sales workers;Mining and quarrying   ;Y50-64;25;1;9.526818474156401e-08;2070371;1.207513049593527e-05;0;1;Old +17951;Latvia;F;Service and sales workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +17952;Latvia;F;Service and sales workers;Manufacturing   ;Y15-29;387;1;1.4747514997994108e-06;2070371;0.00018692302007707797;1;0;Young +17953;Latvia;F;Service and sales workers;Manufacturing   ;Y30-49;1041;1;3.966967212638726e-06;2070371;0.0005028084338507446;1;0;Young +17954;Latvia;F;Service and sales workers;Manufacturing   ;Y50-64;707;1;2.6941842644914304e-06;2070371;0.0003414846904250494;0;1;Old +17955;Latvia;F;Service and sales workers;Manufacturing   ;Y65-84;67;1;2.5531873510739155e-07;2070371;3.2361349729106525e-05;0;1;Old +17956;Latvia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +17957;Latvia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;36;1;1.3718618602785217e-07;2070371;1.7388187914146788e-05;1;0;Young +17958;Latvia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;36;1;1.3718618602785217e-07;2070371;1.7388187914146788e-05;0;1;Old +17959;Latvia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +17960;Latvia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;1;0;Young +17961;Latvia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;1;0;Young +17962;Latvia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;40;1;1.5242909558650242e-07;2070371;1.932020879349643e-05;0;1;Old +17963;Latvia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +17964;Latvia;F;Service and sales workers;Construction   ;Y15-29;67;1;2.5531873510739155e-07;2070371;3.2361349729106525e-05;1;0;Young +17965;Latvia;F;Service and sales workers;Construction   ;Y30-49;144;1;5.487447441114087e-07;2070371;6.955275165658715e-05;1;0;Young +17966;Latvia;F;Service and sales workers;Construction   ;Y50-64;140;1;5.335018345527585e-07;2070371;6.76207307772375e-05;0;1;Old +17967;Latvia;F;Service and sales workers;Construction   ;Y65-84;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;0;1;Old +17968;Latvia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;16676;1;6.354768995001286e-05;2070371;0.008054595046008662;1;0;Young +17969;Latvia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;28750;1;0.00010955841245279861;2070371;0.01388640007032556;1;0;Young +17970;Latvia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;13242;1;5.046165209391163e-05;2070371;0.006395955121086994;0;1;Old +17971;Latvia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;720;1;2.7437237205570438e-06;2070371;0.00034776375828293575;0;1;Old +17972;Latvia;F;Service and sales workers;Transportation and storage   ;Y15-29;701;1;2.6713199001534548e-06;2070371;0.00033858665910602495;1;0;Young +17973;Latvia;F;Service and sales workers;Transportation and storage   ;Y30-49;1097;1;4.180367946459829e-06;2070371;0.0005298567261616396;1;0;Young +17974;Latvia;F;Service and sales workers;Transportation and storage   ;Y50-64;967;1;3.684973385803696e-06;2070371;0.00046706604758277624;0;1;Old +17975;Latvia;F;Service and sales workers;Transportation and storage   ;Y65-84;65;1;2.4769728032806646e-07;2070371;3.13953392894317e-05;0;1;Old +17976;Latvia;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;6143;1;2.340929835469711e-05;2070371;0.0029671010654612143;1;0;Young +17977;Latvia;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;6035;1;2.2997739796613553e-05;2070371;0.002914936501718774;1;0;Young +17978;Latvia;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;2615;1;9.965052123967596e-06;2070371;0.0012630586498748291;0;1;Old +17979;Latvia;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;99;1;3.772620115765935e-07;2070371;4.781751676390367e-05;0;1;Old +17980;Latvia;F;Service and sales workers;Information and communication   ;Y15-29;124;1;4.725301963181575e-07;2070371;5.9892647259838936e-05;1;0;Young +17981;Latvia;F;Service and sales workers;Information and communication   ;Y30-49;95;1;3.6201910201794326e-07;2070371;4.5885495884554026e-05;1;0;Young +17982;Latvia;F;Service and sales workers;Information and communication   ;Y50-64;48;1;1.829149147038029e-07;2070371;2.3184250552195717e-05;0;1;Old +17983;Latvia;F;Service and sales workers;Information and communication   ;Y65-84;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +17984;Latvia;F;Service and sales workers;Financial and insurance activities   ;Y15-29;56;1;2.134007338211034e-07;2070371;2.7048292310895005e-05;1;0;Young +17985;Latvia;F;Service and sales workers;Financial and insurance activities   ;Y30-49;89;1;3.3915473767996787e-07;2070371;4.298746456552956e-05;1;0;Young +17986;Latvia;F;Service and sales workers;Financial and insurance activities   ;Y50-64;40;1;1.5242909558650242e-07;2070371;1.932020879349643e-05;0;1;Old +17987;Latvia;F;Service and sales workers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +17988;Latvia;F;Service and sales workers;Real estate activities   ;Y15-29;70;1;2.6675091727637925e-07;2070371;3.381036538861875e-05;1;0;Young +17989;Latvia;F;Service and sales workers;Real estate activities   ;Y30-49;302;1;1.1508396716780934e-06;2070371;0.00014586757639089805;1;0;Young +17990;Latvia;F;Service and sales workers;Real estate activities   ;Y50-64;352;1;1.3413760411612213e-06;2070371;0.0001700178373827686;0;1;Old +17991;Latvia;F;Service and sales workers;Real estate activities   ;Y65-84;75;1;2.8580455422469204e-07;2070371;3.622539148780581e-05;0;1;Old +17992;Latvia;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;101;1;3.848834663559186e-07;2070371;4.878352720357849e-05;1;0;Young +17993;Latvia;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;140;1;5.335018345527585e-07;2070371;6.76207307772375e-05;1;0;Young +17994;Latvia;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;85;1;3.239118281213176e-07;2070371;4.105544368617992e-05;0;1;Old +17995;Latvia;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;0;1;Old +17996;Latvia;F;Service and sales workers;Administrative and support service activities   ;Y15-29;442;1;1.6843415062308518e-06;2070371;0.00021348830716813556;1;0;Young +17997;Latvia;F;Service and sales workers;Administrative and support service activities   ;Y30-49;875;1;3.3343864659547405e-06;2070371;0.0004226295673577344;1;0;Young +17998;Latvia;F;Service and sales workers;Administrative and support service activities   ;Y50-64;537;1;2.046360608248795e-06;2070371;0.0002593738030526896;0;1;Old +17999;Latvia;F;Service and sales workers;Administrative and support service activities   ;Y65-84;46;1;1.7529345992447778e-07;2070371;2.2218240112520896e-05;0;1;Old +18000;Latvia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;290;1;1.1051109430021426e-06;2070371;0.00014007151375284912;1;0;Young +18001;Latvia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;764;1;2.911395725702196e-06;2070371;0.00036901598795578184;1;0;Young +18002;Latvia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;319;1;1.2156220373023567e-06;2070371;0.00015407866512813403;0;1;Old +18003;Latvia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;63;1;2.400758255487413e-07;2070371;3.042932884975688e-05;0;1;Old +18004;Latvia;F;Service and sales workers;Education   ;Y15-29;1055;1;4.0203173960940015e-06;2070371;0.0005095705069284684;1;0;Young +18005;Latvia;F;Service and sales workers;Education   ;Y30-49;3795;1;1.4461710443769417e-05;2070371;0.001833004809282974;1;0;Young +18006;Latvia;F;Service and sales workers;Education   ;Y50-64;3429;1;1.306698421915292e-05;2070371;0.0016562248988224815;0;1;Old +18007;Latvia;F;Service and sales workers;Education   ;Y65-84;441;1;1.6805307788411892e-06;2070371;0.00021300530194829815;0;1;Old +18008;Latvia;F;Service and sales workers;Human health and social work activities   ;Y15-29;842;1;3.208632462095876e-06;2070371;0.0004066903951030999;1;0;Young +18009;Latvia;F;Service and sales workers;Human health and social work activities   ;Y30-49;3697;1;1.4088259159582486e-05;2070371;0.0017856702977389076;1;0;Young +18010;Latvia;F;Service and sales workers;Human health and social work activities   ;Y50-64;3826;1;1.4579842992848956e-05;2070371;0.0018479779710979336;0;1;Old +18011;Latvia;F;Service and sales workers;Human health and social work activities   ;Y65-84;356;1;1.3566189507198715e-06;2070371;0.00017194985826211824;0;1;Old +18012;Latvia;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;718;1;2.7361022657777186e-06;2070371;0.00034679774784326093;1;0;Young +18013;Latvia;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;822;1;3.132417914302625e-06;2070371;0.00039703029070635166;1;0;Young +18014;Latvia;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;309;1;1.1775147634057311e-06;2070371;0.00014924861292975994;0;1;Old +18015;Latvia;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;99;1;3.772620115765935e-07;2070371;4.781751676390367e-05;0;1;Old +18016;Latvia;F;Service and sales workers;Other service activities   ;Y15-29;1934;1;7.369946771607392e-06;2070371;0.0009341320951655525;1;0;Young +18017;Latvia;F;Service and sales workers;Other service activities   ;Y30-49;4947;1;1.8851668396660688e-05;2070371;0.002389426822535671;1;0;Young +18018;Latvia;F;Service and sales workers;Other service activities   ;Y50-64;1056;1;4.024128123483664e-06;2070371;0.0005100535121483058;0;1;Old +18019;Latvia;F;Service and sales workers;Other service activities   ;Y65-84;88;1;3.353440102903053e-07;2070371;4.250445934569215e-05;0;1;Old +18020;Latvia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;165;1;6.287700192943225e-07;2070371;7.969586127317278e-05;1;0;Young +18021;Latvia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;116;1;4.4204437720085703e-07;2070371;5.602860550113965e-05;1;0;Young +18022;Latvia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;68;1;2.591294624970541e-07;2070371;3.2844354948943934e-05;0;1;Old +18023;Latvia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +18024;Latvia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18025;Latvia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18026;Latvia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;0;1;Old +18027;Latvia;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18028;Latvia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;372;1;1.4175905889544725e-06;2070371;0.0001796779417795168;1;0;Young +18029;Latvia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;2210;1;8.42170753115426e-06;2070371;0.0010674415358406777;1;0;Young +18030;Latvia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;1939;1;7.389000408555705e-06;2070371;0.0009365471212647395;0;1;Old +18031;Latvia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;98;1;3.7345128418693096e-07;2070371;4.733451154406626e-05;0;1;Old +18032;Latvia;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18033;Latvia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;1;0;Young +18034;Latvia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;92;1;3.5058691984895557e-07;2070371;4.443648022504179e-05;1;0;Young +18035;Latvia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;45;1;1.7148273253481523e-07;2070371;2.1735234892683484e-05;0;1;Old +18036;Latvia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18037;Latvia;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18038;Latvia;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18039;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18040;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;1;0;Young +18041;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18042;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18043;Latvia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18044;Latvia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;1;0;Young +18045;Latvia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18046;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;1;0;Young +18047;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;18;1;6.859309301392609e-08;2070371;8.694093957073394e-06;1;0;Young +18048;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18049;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18050;Latvia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;1;0;Young +18051;Latvia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18052;Latvia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18053;Latvia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +18054;Latvia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;0;1;Old +18055;Latvia;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18056;Latvia;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18057;Latvia;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18058;Latvia;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;1;0;Young +18059;Latvia;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18060;Latvia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18061;Latvia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +18062;Latvia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18063;Latvia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;25;1;9.526818474156401e-08;2070371;1.207513049593527e-05;1;0;Young +18064;Latvia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;120;1;4.572872867595073e-07;2070371;5.7960626380489294e-05;1;0;Young +18065;Latvia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;79;1;3.010474637833423e-07;2070371;3.815741236715545e-05;0;1;Old +18066;Latvia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18067;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18068;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18069;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +18070;Latvia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;1;0;Young +18071;Latvia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;71;1;2.705616446660418e-07;2070371;3.429337060845617e-05;1;0;Young +18072;Latvia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;57;1;2.1721146121076594e-07;2070371;2.7531297530732414e-05;0;1;Old +18073;Latvia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;0;1;Old +18074;Latvia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18075;Latvia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;1;0;Young +18076;Latvia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;0;1;Old +18077;Latvia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18078;Latvia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18079;Latvia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;15;1;5.716091084493841e-08;2070371;7.245078297561162e-06;1;0;Young +18080;Latvia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;0;1;Old +18081;Latvia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18082;Latvia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18083;Latvia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18084;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18085;Latvia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18086;Latvia;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18087;Latvia;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18088;Latvia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;38;1;1.448076408071773e-07;2070371;1.835419835382161e-05;1;0;Young +18089;Latvia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;77;1;2.9342600900401714e-07;2070371;3.719140192748063e-05;1;0;Young +18090;Latvia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;61;1;2.3245437076941619e-07;2070371;2.946331841008206e-05;0;1;Old +18091;Latvia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18092;Latvia;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18093;Latvia;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;1;0;Young +18094;Latvia;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18095;Latvia;F;Craft and related trades workers;Manufacturing   ;Y15-29;3221;1;1.2274352922103108e-05;2070371;0.0015557598130963002;1;0;Young +18096;Latvia;F;Craft and related trades workers;Manufacturing   ;Y30-49;12828;1;4.888401095459133e-05;2070371;0.006195990960074306;1;0;Young +18097;Latvia;F;Craft and related trades workers;Manufacturing   ;Y50-64;7196;1;2.7421994296011787e-05;2070371;0.003475705561950008;0;1;Old +18098;Latvia;F;Craft and related trades workers;Manufacturing   ;Y65-84;260;1;9.907891213122658e-07;2070371;0.0001255813571577268;0;1;Old +18099;Latvia;F;Craft and related trades workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18100;Latvia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +18101;Latvia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;50;1;1.9053636948312803e-07;2070371;2.415026099187054e-05;1;0;Young +18102;Latvia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;79;1;3.010474637833423e-07;2070371;3.815741236715545e-05;0;1;Old +18103;Latvia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18104;Latvia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;1;0;Young +18105;Latvia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;1;0;Young +18106;Latvia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;41;1;1.56239822976165e-07;2070371;1.9803214013333842e-05;0;1;Old +18107;Latvia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;0;1;Old +18108;Latvia;F;Craft and related trades workers;Construction   ;Y15-29;130;1;4.953945606561329e-07;2070371;6.27906785788634e-05;1;0;Young +18109;Latvia;F;Craft and related trades workers;Construction   ;Y30-49;605;1;2.3054900707458493e-06;2070371;0.00029221815800163355;1;0;Young +18110;Latvia;F;Craft and related trades workers;Construction   ;Y50-64;530;1;2.0196855165211572e-06;2070371;0.0002559927665138277;0;1;Old +18111;Latvia;F;Craft and related trades workers;Construction   ;Y65-84;23;1;8.764672996223889e-08;2070371;1.1109120056260448e-05;0;1;Old +18112;Latvia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;459;1;1.7491238718551153e-06;2070371;0.00022169939590537156;1;0;Young +18113;Latvia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1188;1;4.527144138919122e-06;2070371;0.000573810201166844;1;0;Young +18114;Latvia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;468;1;1.7834204183620783e-06;2070371;0.00022604644288390824;0;1;Old +18115;Latvia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +18116;Latvia;F;Craft and related trades workers;Transportation and storage   ;Y15-29;44;1;1.6767200514515266e-07;2070371;2.1252229672846075e-05;1;0;Young +18117;Latvia;F;Craft and related trades workers;Transportation and storage   ;Y30-49;216;1;8.231171161671131e-07;2070371;0.00010432912748488074;1;0;Young +18118;Latvia;F;Craft and related trades workers;Transportation and storage   ;Y50-64;254;1;9.679247569742904e-07;2070371;0.00012268332583870235;0;1;Old +18119;Latvia;F;Craft and related trades workers;Transportation and storage   ;Y65-84;15;1;5.716091084493841e-08;2070371;7.245078297561162e-06;0;1;Old +18120;Latvia;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;210;1;8.002527518291377e-07;2070371;0.00010143109616585627;1;0;Young +18121;Latvia;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;521;1;1.9853889700141942e-06;2070371;0.00025164571953529104;1;0;Young +18122;Latvia;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;256;1;9.755462117536154e-07;2070371;0.00012364933627837717;0;1;Old +18123;Latvia;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;0;1;Old +18124;Latvia;F;Craft and related trades workers;Information and communication   ;Y15-29;43;1;1.638612777554901e-07;2070371;2.0769224453008663e-05;1;0;Young +18125;Latvia;F;Craft and related trades workers;Information and communication   ;Y30-49;89;1;3.3915473767996787e-07;2070371;4.298746456552956e-05;1;0;Young +18126;Latvia;F;Craft and related trades workers;Information and communication   ;Y50-64;62;1;2.3626509815907876e-07;2070371;2.9946323629919468e-05;0;1;Old +18127;Latvia;F;Craft and related trades workers;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18128;Latvia;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18129;Latvia;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18130;Latvia;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18131;Latvia;F;Craft and related trades workers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18132;Latvia;F;Craft and related trades workers;Real estate activities   ;Y15-29;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;1;0;Young +18133;Latvia;F;Craft and related trades workers;Real estate activities   ;Y30-49;78;1;2.9723673639367974e-07;2070371;3.767440714731804e-05;1;0;Young +18134;Latvia;F;Craft and related trades workers;Real estate activities   ;Y50-64;64;1;2.4388655293840386e-07;2070371;3.091233406959429e-05;0;1;Old +18135;Latvia;F;Craft and related trades workers;Real estate activities   ;Y65-84;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18136;Latvia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;87;1;3.3153328290064277e-07;2070371;4.2021454125854735e-05;1;0;Young +18137;Latvia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;89;1;3.3915473767996787e-07;2070371;4.298746456552956e-05;1;0;Young +18138;Latvia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;63;1;2.400758255487413e-07;2070371;3.042932884975688e-05;0;1;Old +18139;Latvia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;0;1;Old +18140;Latvia;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;31;1;1.1813254907953938e-07;2070371;1.4973161814959734e-05;1;0;Young +18141;Latvia;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;77;1;2.9342600900401714e-07;2070371;3.719140192748063e-05;1;0;Young +18142;Latvia;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;68;1;2.591294624970541e-07;2070371;3.2844354948943934e-05;0;1;Old +18143;Latvia;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18144;Latvia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18145;Latvia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;1;0;Young +18146;Latvia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;39;1;1.4861836819683987e-07;2070371;1.883720357365902e-05;0;1;Old +18147;Latvia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18148;Latvia;F;Craft and related trades workers;Education   ;Y15-29;108;1;4.1155855808355654e-07;2070371;5.216456374244037e-05;1;0;Young +18149;Latvia;F;Craft and related trades workers;Education   ;Y30-49;412;1;1.570019684540975e-06;2070371;0.00019899815057301324;1;0;Young +18150;Latvia;F;Craft and related trades workers;Education   ;Y50-64;476;1;1.813906237479379e-06;2070371;0.00022991048464260754;0;1;Old +18151;Latvia;F;Craft and related trades workers;Education   ;Y65-84;64;1;2.4388655293840386e-07;2070371;3.091233406959429e-05;0;1;Old +18152;Latvia;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;15;1;5.716091084493841e-08;2070371;7.245078297561162e-06;1;0;Young +18153;Latvia;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;135;1;5.144481976044457e-07;2070371;6.520570467805046e-05;1;0;Young +18154;Latvia;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;169;1;6.440129288529728e-07;2070371;8.162788215252243e-05;0;1;Old +18155;Latvia;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;31;1;1.1813254907953938e-07;2070371;1.4973161814959734e-05;0;1;Old +18156;Latvia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;1;0;Young +18157;Latvia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;114;1;4.344229224215319e-07;2070371;5.506259506146483e-05;1;0;Young +18158;Latvia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;82;1;3.1247964595233e-07;2070371;3.9606428026667684e-05;0;1;Old +18159;Latvia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;0;1;Old +18160;Latvia;F;Craft and related trades workers;Other service activities   ;Y15-29;63;1;2.400758255487413e-07;2070371;3.042932884975688e-05;1;0;Young +18161;Latvia;F;Craft and related trades workers;Other service activities   ;Y30-49;305;1;1.162271853847081e-06;2070371;0.00014731659205041028;1;0;Young +18162;Latvia;F;Craft and related trades workers;Other service activities   ;Y50-64;206;1;7.850098422704875e-07;2070371;9.949907528650662e-05;0;1;Old +18163;Latvia;F;Craft and related trades workers;Other service activities   ;Y65-84;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;0;1;Old +18164;Latvia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18165;Latvia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;1;0;Young +18166;Latvia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18167;Latvia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18168;Latvia;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18169;Latvia;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18170;Latvia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;37;1;1.4099691341751475e-07;2070371;1.78711931339842e-05;1;0;Young +18171;Latvia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;126;1;4.801516510974826e-07;2070371;6.085865769951376e-05;1;0;Young +18172;Latvia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;74;1;2.819938268350295e-07;2070371;3.57423862679684e-05;0;1;Old +18173;Latvia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18174;Latvia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;1;0;Young +18175;Latvia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;30;1;1.1432182168987682e-07;2070371;1.4490156595122323e-05;1;0;Young +18176;Latvia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;30;1;1.1432182168987682e-07;2070371;1.4490156595122323e-05;0;1;Old +18177;Latvia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18178;Latvia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;1282;1;4.8853525135474025e-06;2070371;0.0006192126918315606;1;0;Young +18179;Latvia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;4526;1;1.7247352165612748e-05;2070371;0.002186081624984121;1;0;Young +18180;Latvia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;2995;1;1.1413128532039369e-05;2070371;0.0014466006334130452;0;1;Old +18181;Latvia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;77;1;2.9342600900401714e-07;2070371;3.719140192748063e-05;0;1;Old +18182;Latvia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18183;Latvia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;38;1;1.448076408071773e-07;2070371;1.835419835382161e-05;1;0;Young +18184;Latvia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;87;1;3.3153328290064277e-07;2070371;4.2021454125854735e-05;0;1;Old +18185;Latvia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18186;Latvia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;20;1;7.621454779325121e-08;2070371;9.660104396748215e-06;1;0;Young +18187;Latvia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;65;1;2.4769728032806646e-07;2070371;3.13953392894317e-05;1;0;Young +18188;Latvia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;68;1;2.591294624970541e-07;2070371;3.2844354948943934e-05;0;1;Old +18189;Latvia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;0;1;Old +18190;Latvia;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;1;0;Young +18191;Latvia;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;37;1;1.4099691341751475e-07;2070371;1.78711931339842e-05;1;0;Young +18192;Latvia;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;74;1;2.819938268350295e-07;2070371;3.57423862679684e-05;0;1;Old +18193;Latvia;F;Plant and machine operators, and assemblers;Construction   ;Y65-84;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18194;Latvia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;97;1;3.6964055679726836e-07;2070371;4.6851506324228844e-05;1;0;Young +18195;Latvia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;245;1;9.336282104673273e-07;2070371;0.00011833627886016564;1;0;Young +18196;Latvia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;150;1;5.716091084493841e-07;2070371;7.245078297561162e-05;0;1;Old +18197;Latvia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;0;1;Old +18198;Latvia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;173;1;6.592558384116229e-07;2070371;8.355990303187206e-05;1;0;Young +18199;Latvia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;918;1;3.4982477437102307e-06;2070371;0.0004433987918107431;1;0;Young +18200;Latvia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;652;1;2.4845942580599894e-06;2070371;0.00031491940333399184;0;1;Old +18201;Latvia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;29;1;1.1051109430021426e-07;2070371;1.4007151375284913e-05;0;1;Old +18202;Latvia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18203;Latvia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;23;1;8.764672996223889e-08;2070371;1.1109120056260448e-05;1;0;Young +18204;Latvia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;0;1;Old +18205;Latvia;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;1;0;Young +18206;Latvia;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;1;0;Young +18207;Latvia;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18208;Latvia;F;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18209;Latvia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18210;Latvia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18211;Latvia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18212;Latvia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;1;0;Young +18213;Latvia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;35;1;1.3337545863818962e-07;2070371;1.6905182694309376e-05;1;0;Young +18214;Latvia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;36;1;1.3718618602785217e-07;2070371;1.7388187914146788e-05;0;1;Old +18215;Latvia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18216;Latvia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;18;1;6.859309301392609e-08;2070371;8.694093957073394e-06;1;0;Young +18217;Latvia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;26;1;9.907891213122657e-08;2070371;1.255813571577268e-05;1;0;Young +18218;Latvia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;19;1;7.240382040358865e-08;2070371;9.177099176910805e-06;0;1;Old +18219;Latvia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;34;1;1.2956473124852705e-07;2070371;1.6422177474471967e-05;1;0;Young +18220;Latvia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;98;1;3.7345128418693096e-07;2070371;4.733451154406626e-05;1;0;Young +18221;Latvia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;63;1;2.400758255487413e-07;2070371;3.042932884975688e-05;0;1;Old +18222;Latvia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18223;Latvia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;17;1;6.478236562426352e-08;2070371;8.211088737235984e-06;1;0;Young +18224;Latvia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;105;1;4.0012637591456885e-07;2070371;5.0715548082928134e-05;1;0;Young +18225;Latvia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;92;1;3.5058691984895557e-07;2070371;4.443648022504179e-05;0;1;Old +18226;Latvia;F;Plant and machine operators, and assemblers;Education   ;Y15-29;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;1;0;Young +18227;Latvia;F;Plant and machine operators, and assemblers;Education   ;Y30-49;87;1;3.3153328290064277e-07;2070371;4.2021454125854735e-05;1;0;Young +18228;Latvia;F;Plant and machine operators, and assemblers;Education   ;Y50-64;87;1;3.3153328290064277e-07;2070371;4.2021454125854735e-05;0;1;Old +18229;Latvia;F;Plant and machine operators, and assemblers;Education   ;Y65-84;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +18230;Latvia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;1;0;Young +18231;Latvia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;63;1;2.400758255487413e-07;2070371;3.042932884975688e-05;1;0;Young +18232;Latvia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;95;1;3.6201910201794326e-07;2070371;4.5885495884554026e-05;0;1;Old +18233;Latvia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +18234;Latvia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;1;0;Young +18235;Latvia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;19;1;7.240382040358865e-08;2070371;9.177099176910805e-06;1;0;Young +18236;Latvia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;0;1;Old +18237;Latvia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18238;Latvia;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;31;1;1.1813254907953938e-07;2070371;1.4973161814959734e-05;1;0;Young +18239;Latvia;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;73;1;2.7818309944536694e-07;2070371;3.5259381048130985e-05;1;0;Young +18240;Latvia;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;45;1;1.7148273253481523e-07;2070371;2.1735234892683484e-05;0;1;Old +18241;Latvia;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18242;Latvia;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18243;Latvia;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18244;Latvia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;814;1;3.1019320951853244e-06;2070371;0.0003931662489476524;1;0;Young +18245;Latvia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;2401;1;9.149556462579808e-06;2070371;0.0011596955328296234;1;0;Young +18246;Latvia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;1610;1;6.135271097356723e-06;2070371;0.0007776384039382314;0;1;Old +18247;Latvia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;46;1;1.7529345992447778e-07;2070371;2.2218240112520896e-05;0;1;Old +18248;Latvia;F;Elementary occupations;Mining and quarrying   ;Y15-29;80;1;3.0485819117300483e-07;2070371;3.864041758699286e-05;1;0;Young +18249;Latvia;F;Elementary occupations;Mining and quarrying   ;Y30-49;196;1;7.469025683738619e-07;2070371;9.466902308813252e-05;1;0;Young +18250;Latvia;F;Elementary occupations;Mining and quarrying   ;Y50-64;100;1;3.8107273896625605e-07;2070371;4.830052198374108e-05;0;1;Old +18251;Latvia;F;Elementary occupations;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18252;Latvia;F;Elementary occupations;Manufacturing   ;Y15-29;1269;1;4.8358130574817896e-06;2070371;0.0006129336239736742;1;0;Young +18253;Latvia;F;Elementary occupations;Manufacturing   ;Y30-49;3250;1;1.2384864016403322e-05;2070371;0.001569766964471585;1;0;Young +18254;Latvia;F;Elementary occupations;Manufacturing   ;Y50-64;2787;1;1.0620497234989557e-05;2070371;0.0013461355476868638;0;1;Old +18255;Latvia;F;Elementary occupations;Manufacturing   ;Y65-84;113;1;4.3061219503186933e-07;2070371;5.457958984162742e-05;0;1;Old +18256;Latvia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;32;1;1.2194327646920193e-07;2070371;1.5456167034797146e-05;1;0;Young +18257;Latvia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;167;1;6.363914740736477e-07;2070371;8.06618717128476e-05;1;0;Young +18258;Latvia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;241;1;9.18385300908677e-07;2070371;0.000116404257980816;0;1;Old +18259;Latvia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;41;1;1.56239822976165e-07;2070371;1.9803214013333842e-05;0;1;Old +18260;Latvia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;231;1;8.802780270120515e-07;2070371;0.0001115742057824419;1;0;Young +18261;Latvia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;836;1;3.1857680977579008e-06;2070371;0.00040379236378407544;1;0;Young +18262;Latvia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;861;1;3.2810362824994645e-06;2070371;0.0004158674942800107;0;1;Old +18263;Latvia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;72;1;2.7437237205570434e-07;2070371;3.4776375828293576e-05;0;1;Old +18264;Latvia;F;Elementary occupations;Construction   ;Y15-29;109;1;4.153692854732191e-07;2070371;5.2647568962277776e-05;1;0;Young +18265;Latvia;F;Elementary occupations;Construction   ;Y30-49;342;1;1.3032687672645957e-06;2070371;0.0001651877851843945;1;0;Young +18266;Latvia;F;Elementary occupations;Construction   ;Y50-64;399;1;1.5204802284753616e-06;2070371;0.0001927190827151269;0;1;Old +18267;Latvia;F;Elementary occupations;Construction   ;Y65-84;57;1;2.1721146121076594e-07;2070371;2.7531297530732414e-05;0;1;Old +18268;Latvia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1124;1;4.283257585980718e-06;2070371;0.0005428978670972498;1;0;Young +18269;Latvia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2081;1;7.93012369788779e-06;2070371;0.001005133862481652;1;0;Young +18270;Latvia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2217;1;8.448382622881896e-06;2070371;0.0010708225723795397;0;1;Old +18271;Latvia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;185;1;7.049845670875737e-07;2070371;8.9355965669921e-05;0;1;Old +18272;Latvia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18273;Latvia;F;Elementary occupations;Transportation and storage   ;Y15-29;302;1;1.1508396716780934e-06;2070371;0.00014586757639089805;1;0;Young +18274;Latvia;F;Elementary occupations;Transportation and storage   ;Y30-49;930;1;3.5439764723861814e-06;2070371;0.00044919485444879203;1;0;Young +18275;Latvia;F;Elementary occupations;Transportation and storage   ;Y50-64;1038;1;3.955535030469738e-06;2070371;0.0005013594181912323;0;1;Old +18276;Latvia;F;Elementary occupations;Transportation and storage   ;Y65-84;83;1;3.1629037334199253e-07;2070371;4.008943324650509e-05;0;1;Old +18277;Latvia;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;1035;1;3.94410284830075e-06;2070371;0.0004999104025317202;1;0;Young +18278;Latvia;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;2093;1;7.975852426563739e-06;2070371;0.0010109299251197007;1;0;Young +18279;Latvia;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;1681;1;6.405832742022764e-06;2070371;0.0008119317745466875;0;1;Old +18280;Latvia;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;80;1;3.0485819117300483e-07;2070371;3.864041758699286e-05;0;1;Old +18281;Latvia;F;Elementary occupations;Information and communication   ;Y15-29;56;1;2.134007338211034e-07;2070371;2.7048292310895005e-05;1;0;Young +18282;Latvia;F;Elementary occupations;Information and communication   ;Y30-49;77;1;2.9342600900401714e-07;2070371;3.719140192748063e-05;1;0;Young +18283;Latvia;F;Elementary occupations;Information and communication   ;Y50-64;129;1;4.915838332664703e-07;2070371;6.230767335902599e-05;0;1;Old +18284;Latvia;F;Elementary occupations;Information and communication   ;Y65-84;15;1;5.716091084493841e-08;2070371;7.245078297561162e-06;0;1;Old +18285;Latvia;F;Elementary occupations;Financial and insurance activities   ;Y15-29;27;1;1.0288963952088914e-07;2070371;1.3041140935610092e-05;1;0;Young +18286;Latvia;F;Elementary occupations;Financial and insurance activities   ;Y30-49;93;1;3.543976472386181e-07;2070371;4.49194854448792e-05;1;0;Young +18287;Latvia;F;Elementary occupations;Financial and insurance activities   ;Y50-64;151;1;5.754198358390467e-07;2070371;7.293378819544903e-05;0;1;Old +18288;Latvia;F;Elementary occupations;Financial and insurance activities   ;Y65-84;15;1;5.716091084493841e-08;2070371;7.245078297561162e-06;0;1;Old +18289;Latvia;F;Elementary occupations;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18290;Latvia;F;Elementary occupations;Real estate activities   ;Y15-29;360;1;1.3718618602785219e-06;2070371;0.00017388187914146787;1;0;Young +18291;Latvia;F;Elementary occupations;Real estate activities   ;Y30-49;1998;1;7.613833324545796e-06;2070371;0.0009650444292351467;1;0;Young +18292;Latvia;F;Elementary occupations;Real estate activities   ;Y50-64;3006;1;1.1455046533325658e-05;2070371;0.0014519136908312568;0;1;Old +18293;Latvia;F;Elementary occupations;Real estate activities   ;Y65-84;527;1;2.0082533343521694e-06;2070371;0.0002545437508543155;0;1;Old +18294;Latvia;F;Elementary occupations;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18295;Latvia;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;69;1;2.629401898867167e-07;2070371;3.332736016878134e-05;1;0;Young +18296;Latvia;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;178;1;6.783094753599357e-07;2070371;8.597492913105912e-05;1;0;Young +18297;Latvia;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;202;1;7.697669327118372e-07;2070371;9.756705440715698e-05;0;1;Old +18298;Latvia;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;33;1;1.257540038588645e-07;2070371;1.5939172254634555e-05;0;1;Old +18299;Latvia;F;Elementary occupations;Administrative and support service activities   ;Y15-29;817;1;3.113364277354312e-06;2070371;0.0003946152646071646;1;0;Young +18300;Latvia;F;Elementary occupations;Administrative and support service activities   ;Y30-49;2880;1;1.0974894882228175e-05;2070371;0.001391055033131743;1;0;Young +18301;Latvia;F;Elementary occupations;Administrative and support service activities   ;Y50-64;2438;1;9.290553375997322e-06;2070371;0.0011775667259636075;0;1;Old +18302;Latvia;F;Elementary occupations;Administrative and support service activities   ;Y65-84;137;1;5.220696523837708e-07;2070371;6.617171511772528e-05;0;1;Old +18303;Latvia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;283;1;1.0784358512745046e-06;2070371;0.00013669047721398726;1;0;Young +18304;Latvia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;1190;1;4.534765593698447e-06;2070371;0.0005747762116065188;1;0;Young +18305;Latvia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;1295;1;4.934891969613016e-06;2070371;0.0006254917596894469;0;1;Old +18306;Latvia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;261;1;9.945998487019282e-07;2070371;0.0001260643623775642;0;1;Old +18307;Latvia;F;Elementary occupations;Education   ;Y15-29;675;1;2.5722409880222284e-06;2070371;0.00032602852339025227;1;0;Young +18308;Latvia;F;Elementary occupations;Education   ;Y30-49;3300;1;1.257540038588645e-05;2070371;0.0015939172254634557;1;0;Young +18309;Latvia;F;Elementary occupations;Education   ;Y50-64;4067;1;1.5498228293757633e-05;2070371;0.0019643822290787497;0;1;Old +18310;Latvia;F;Elementary occupations;Education   ;Y65-84;676;1;2.576051715411891e-06;2070371;0.0003265115286100897;0;1;Old +18311;Latvia;F;Elementary occupations;Education   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18312;Latvia;F;Elementary occupations;Human health and social work activities   ;Y15-29;431;1;1.6424235049445636e-06;2070371;0.00020817524974992403;1;0;Young +18313;Latvia;F;Elementary occupations;Human health and social work activities   ;Y30-49;1298;1;4.946324151782003e-06;2070371;0.0006269407753489592;1;0;Young +18314;Latvia;F;Elementary occupations;Human health and social work activities   ;Y50-64;1658;1;6.318186012060525e-06;2070371;0.0008008226544904271;0;1;Old +18315;Latvia;F;Elementary occupations;Human health and social work activities   ;Y65-84;246;1;9.374389378569899e-07;2070371;0.00011881928408000305;0;1;Old +18316;Latvia;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;236;1;8.993316639603643e-07;2070371;0.00011398923188162894;1;0;Young +18317;Latvia;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;634;1;2.4160011650460635e-06;2070371;0.00030622530937691843;1;0;Young +18318;Latvia;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;718;1;2.7361022657777186e-06;2070371;0.00034679774784326093;0;1;Old +18319;Latvia;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;154;1;5.868520180080343e-07;2070371;7.438280385496125e-05;0;1;Old +18320;Latvia;F;Elementary occupations;Other service activities   ;Y15-29;200;1;7.621454779325121e-07;2070371;9.660104396748215e-05;1;0;Young +18321;Latvia;F;Elementary occupations;Other service activities   ;Y30-49;421;1;1.604316231047938e-06;2070371;0.00020334519755154995;1;0;Young +18322;Latvia;F;Elementary occupations;Other service activities   ;Y50-64;411;1;1.5662089571513124e-06;2070371;0.00019851514535317583;0;1;Old +18323;Latvia;F;Elementary occupations;Other service activities   ;Y65-84;68;1;2.591294624970541e-07;2070371;3.2844354948943934e-05;0;1;Old +18324;Latvia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;33;1;1.257540038588645e-07;2070371;1.5939172254634555e-05;1;0;Young +18325;Latvia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;71;1;2.705616446660418e-07;2070371;3.429337060845617e-05;1;0;Young +18326;Latvia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;39;1;1.4861836819683987e-07;2070371;1.883720357365902e-05;0;1;Old +18327;Latvia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;1;0;Young +18328;Latvia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;1;0;Young +18329;Latvia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +18330;Latvia;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18331;Latvia;M;Not applicable;Not applicable  ;Y15-29;101330;1;0.00038614100639450727;2070371;0.04894291892612483;1;0;Young +18332;Latvia;M;Not applicable;Not applicable  ;Y30-49;44131;1;0.00016817121043319845;2070371;0.021315503356644776;1;0;Young +18333;Latvia;M;Not applicable;Not applicable  ;Y50-64;61267;1;0.0002334718349824561;2070371;0.029592280803778646;0;1;Old +18334;Latvia;M;Not applicable;Not applicable  ;Y65-84;104490;1;0.00039818290494584094;2070371;0.05046921542081105;0;1;Old +18335;Latvia;M;Not applicable;Not applicable  ;Y_GE85;6088;1;2.319970834826567e-05;2070371;0.0029405357783701567;0;1;Old +18336;Latvia;M;Not applicable;Not applicable  ;Y_LT15;150506;1;0.0005735373365085534;2070371;0.07269518361684935;0;1;Old +18337;Latvia;M;Armed forces occupations;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18338;Latvia;M;Armed forces occupations;Manufacturing   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18339;Latvia;M;Armed forces occupations;Manufacturing   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18340;Latvia;M;Armed forces occupations;Construction   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18341;Latvia;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18342;Latvia;M;Armed forces occupations;Information and communication   ;Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18343;Latvia;M;Armed forces occupations;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18344;Latvia;M;Armed forces occupations;Real estate activities   ;Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18345;Latvia;M;Armed forces occupations;Administrative and support service activities   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18346;Latvia;M;Armed forces occupations;Administrative and support service activities   ;Y30-49;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18347;Latvia;M;Armed forces occupations;Administrative and support service activities   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18348;Latvia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;1257;1;4.790084328805838e-06;2070371;0.0006071375613356253;1;0;Young +18349;Latvia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;1605;1;6.11621746040841e-06;2070371;0.0007752233778390444;1;0;Young +18350;Latvia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;56;1;2.134007338211034e-07;2070371;2.7048292310895005e-05;0;1;Old +18351;Latvia;M;Armed forces occupations;Education   ;Y15-29;213;1;8.116849339981254e-07;2070371;0.0001028801118253685;1;0;Young +18352;Latvia;M;Armed forces occupations;Education   ;Y30-49;147;1;5.601769262803964e-07;2070371;7.100176731609938e-05;1;0;Young +18353;Latvia;M;Armed forces occupations;Education   ;Y50-64;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18354;Latvia;M;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18355;Latvia;M;Armed forces occupations;Other service activities   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18356;Latvia;M;Managers;Agriculture, forestry and fishing   ;Y15-29;393;1;1.4976158641373862e-06;2070371;0.00018982105139610245;1;0;Young +18357;Latvia;M;Managers;Agriculture, forestry and fishing   ;Y30-49;2702;1;1.0296585406868239e-05;2070371;0.0013050801040006838;1;0;Young +18358;Latvia;M;Managers;Agriculture, forestry and fishing   ;Y50-64;1480;1;5.63987653670059e-06;2070371;0.000714847725359368;0;1;Old +18359;Latvia;M;Managers;Agriculture, forestry and fishing   ;Y65-84;129;1;4.915838332664703e-07;2070371;6.230767335902599e-05;0;1;Old +18360;Latvia;M;Managers;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18361;Latvia;M;Managers;Mining and quarrying   ;Y15-29;37;1;1.4099691341751475e-07;2070371;1.78711931339842e-05;1;0;Young +18362;Latvia;M;Managers;Mining and quarrying   ;Y30-49;109;1;4.153692854732191e-07;2070371;5.2647568962277776e-05;1;0;Young +18363;Latvia;M;Managers;Mining and quarrying   ;Y50-64;85;1;3.239118281213176e-07;2070371;4.105544368617992e-05;0;1;Old +18364;Latvia;M;Managers;Mining and quarrying   ;Y65-84;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +18365;Latvia;M;Managers;Manufacturing   ;Y15-29;857;1;3.2657933729408146e-06;2070371;0.00041393547340066105;1;0;Young +18366;Latvia;M;Managers;Manufacturing   ;Y30-49;4524;1;1.7239730710833423e-05;2070371;0.002185115614544446;1;0;Young +18367;Latvia;M;Managers;Manufacturing   ;Y50-64;2224;1;8.475057714609534e-06;2070371;0.0010742036089184015;0;1;Old +18368;Latvia;M;Managers;Manufacturing   ;Y65-84;201;1;7.659562053221747e-07;2070371;9.708404918731956e-05;0;1;Old +18369;Latvia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;67;1;2.5531873510739155e-07;2070371;3.2361349729106525e-05;1;0;Young +18370;Latvia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;449;1;1.7110165979584897e-06;2070371;0.00021686934370699745;1;0;Young +18371;Latvia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;314;1;1.196568400354044e-06;2070371;0.000151663639028947;0;1;Old +18372;Latvia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;36;1;1.3718618602785217e-07;2070371;1.7388187914146788e-05;0;1;Old +18373;Latvia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;47;1;1.7910418731414036e-07;2070371;2.2701245332358305e-05;1;0;Young +18374;Latvia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;264;1;1.006032030870916e-06;2070371;0.00012751337803707644;1;0;Young +18375;Latvia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;167;1;6.363914740736477e-07;2070371;8.06618717128476e-05;0;1;Old +18376;Latvia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;0;1;Old +18377;Latvia;M;Managers;Construction   ;Y15-29;1305;1;4.9729992435096415e-06;2070371;0.0006303218118878211;1;0;Young +18378;Latvia;M;Managers;Construction   ;Y30-49;4289;1;1.6344209774262724e-05;2070371;0.0020716093878826547;1;0;Young +18379;Latvia;M;Managers;Construction   ;Y50-64;1940;1;7.3928111359453676e-06;2070371;0.0009370301264845769;0;1;Old +18380;Latvia;M;Managers;Construction   ;Y65-84;178;1;6.783094753599357e-07;2070371;8.597492913105912e-05;0;1;Old +18381;Latvia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1984;1;7.56048314109052e-06;2070371;0.000958282356157423;1;0;Young +18382;Latvia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9063;1;3.4536622332511787e-05;2070371;0.004377476307386454;1;0;Young +18383;Latvia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;3070;1;1.169893308626406e-05;2070371;0.0014828260249008512;0;1;Old +18384;Latvia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;150;1;5.716091084493841e-07;2070371;7.245078297561162e-05;0;1;Old +18385;Latvia;M;Managers;Transportation and storage   ;Y15-29;638;1;2.4312440746047135e-06;2070371;0.00030815733025626806;1;0;Young +18386;Latvia;M;Managers;Transportation and storage   ;Y30-49;2801;1;1.0673847418444831e-05;2070371;0.0013528976207645876;1;0;Young +18387;Latvia;M;Managers;Transportation and storage   ;Y50-64;1322;1;5.037781609133905e-06;2070371;0.0006385329006250571;0;1;Old +18388;Latvia;M;Managers;Transportation and storage   ;Y65-84;119;1;4.5347655936984473e-07;2070371;5.7477621160651885e-05;0;1;Old +18389;Latvia;M;Managers;Transportation and storage   ;Y_GE85;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18390;Latvia;M;Managers;Accommodation and food service activities   ;Y15-29;271;1;1.032707122598554e-06;2070371;0.00013089441457593833;1;0;Young +18391;Latvia;M;Managers;Accommodation and food service activities   ;Y30-49;725;1;2.7627773575053563e-06;2070371;0.0003501787843821228;1;0;Young +18392;Latvia;M;Managers;Accommodation and food service activities   ;Y50-64;299;1;1.1394074895091056e-06;2070371;0.00014441856073138583;0;1;Old +18393;Latvia;M;Managers;Accommodation and food service activities   ;Y65-84;20;1;7.621454779325121e-08;2070371;9.660104396748215e-06;0;1;Old +18394;Latvia;M;Managers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18395;Latvia;M;Managers;Information and communication   ;Y15-29;516;1;1.9663353330658812e-06;2070371;0.00024923069343610397;1;0;Young +18396;Latvia;M;Managers;Information and communication   ;Y30-49;1243;1;4.736734145350563e-06;2070371;0.0006003754882579016;1;0;Young +18397;Latvia;M;Managers;Information and communication   ;Y50-64;294;1;1.1203538525607928e-06;2070371;0.00014200353463219876;0;1;Old +18398;Latvia;M;Managers;Information and communication   ;Y65-84;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;0;1;Old +18399;Latvia;M;Managers;Financial and insurance activities   ;Y15-29;383;1;1.4595085902407606e-06;2070371;0.00018499099919772833;1;0;Young +18400;Latvia;M;Managers;Financial and insurance activities   ;Y30-49;1084;1;4.130828490394216e-06;2070371;0.0005235776583037533;1;0;Young +18401;Latvia;M;Managers;Financial and insurance activities   ;Y50-64;225;1;8.574136626740762e-07;2070371;0.00010867617446341743;0;1;Old +18402;Latvia;M;Managers;Financial and insurance activities   ;Y65-84;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;0;1;Old +18403;Latvia;M;Managers;Real estate activities   ;Y15-29;190;1;7.240382040358865e-07;2070371;9.177099176910805e-05;1;0;Young +18404;Latvia;M;Managers;Real estate activities   ;Y30-49;985;1;3.753566478817622e-06;2070371;0.0004757601415398496;1;0;Young +18405;Latvia;M;Managers;Real estate activities   ;Y50-64;495;1;1.8863100578829675e-06;2070371;0.00023908758381951833;0;1;Old +18406;Latvia;M;Managers;Real estate activities   ;Y65-84;69;1;2.629401898867167e-07;2070371;3.332736016878134e-05;0;1;Old +18407;Latvia;M;Managers;Professional, scientific and technical activities   ;Y15-29;505;1;1.924417331779593e-06;2070371;0.00024391763601789245;1;0;Young +18408;Latvia;M;Managers;Professional, scientific and technical activities   ;Y30-49;1699;1;6.47442583503669e-06;2070371;0.0008206258685037609;1;0;Young +18409;Latvia;M;Managers;Professional, scientific and technical activities   ;Y50-64;559;1;2.1301966108213714e-06;2070371;0.00026999991788911263;0;1;Old +18410;Latvia;M;Managers;Professional, scientific and technical activities   ;Y65-84;73;1;2.7818309944536694e-07;2070371;3.5259381048130985e-05;0;1;Old +18411;Latvia;M;Managers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18412;Latvia;M;Managers;Administrative and support service activities   ;Y15-29;331;1;1.2613507659783075e-06;2070371;0.00015987472776618296;1;0;Young +18413;Latvia;M;Managers;Administrative and support service activities   ;Y30-49;1000;1;3.8107273896625605e-06;2070371;0.0004830052198374108;1;0;Young +18414;Latvia;M;Managers;Administrative and support service activities   ;Y50-64;377;1;1.4366442259027852e-06;2070371;0.00018209296787870388;0;1;Old +18415;Latvia;M;Managers;Administrative and support service activities   ;Y65-84;34;1;1.2956473124852705e-07;2070371;1.6422177474471967e-05;0;1;Old +18416;Latvia;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;321;1;1.223243492081682e-06;2070371;0.00015504467556780885;1;0;Young +18417;Latvia;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;1647;1;6.276268010774237e-06;2070371;0.0007955095970722156;1;0;Young +18418;Latvia;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;738;1;2.8123168135709697e-06;2070371;0.00035645785224000916;0;1;Old +18419;Latvia;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;134;1;5.106374702147831e-07;2070371;6.472269945821305e-05;0;1;Old +18420;Latvia;M;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18421;Latvia;M;Managers;Education   ;Y15-29;105;1;4.0012637591456885e-07;2070371;5.0715548082928134e-05;1;0;Young +18422;Latvia;M;Managers;Education   ;Y30-49;511;1;1.9472816961175682e-06;2070371;0.0002468156673369169;1;0;Young +18423;Latvia;M;Managers;Education   ;Y50-64;497;1;1.8939315126622927e-06;2070371;0.00024005359425919315;0;1;Old +18424;Latvia;M;Managers;Education   ;Y65-84;105;1;4.0012637591456885e-07;2070371;5.0715548082928134e-05;0;1;Old +18425;Latvia;M;Managers;Education   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18426;Latvia;M;Managers;Human health and social work activities   ;Y15-29;42;1;1.6005055036582754e-07;2070371;2.0286219233171254e-05;1;0;Young +18427;Latvia;M;Managers;Human health and social work activities   ;Y30-49;226;1;8.612243900637387e-07;2070371;0.00010915917968325484;1;0;Young +18428;Latvia;M;Managers;Human health and social work activities   ;Y50-64;197;1;7.507132957635244e-07;2070371;9.515202830796993e-05;0;1;Old +18429;Latvia;M;Managers;Human health and social work activities   ;Y65-84;33;1;1.257540038588645e-07;2070371;1.5939172254634555e-05;0;1;Old +18430;Latvia;M;Managers;Arts, entertainment and recreation   ;Y15-29;189;1;7.202274766462239e-07;2070371;9.128798654927064e-05;1;0;Young +18431;Latvia;M;Managers;Arts, entertainment and recreation   ;Y30-49;499;1;1.9015529674416177e-06;2070371;0.00024101960469886797;1;0;Young +18432;Latvia;M;Managers;Arts, entertainment and recreation   ;Y50-64;252;1;9.603033021949652e-07;2070371;0.00012171731539902752;0;1;Old +18433;Latvia;M;Managers;Arts, entertainment and recreation   ;Y65-84;38;1;1.448076408071773e-07;2070371;1.835419835382161e-05;0;1;Old +18434;Latvia;M;Managers;Other service activities   ;Y15-29;169;1;6.440129288529728e-07;2070371;8.162788215252243e-05;1;0;Young +18435;Latvia;M;Managers;Other service activities   ;Y30-49;605;1;2.3054900707458493e-06;2070371;0.00029221815800163355;1;0;Young +18436;Latvia;M;Managers;Other service activities   ;Y50-64;319;1;1.2156220373023567e-06;2070371;0.00015407866512813403;0;1;Old +18437;Latvia;M;Managers;Other service activities   ;Y65-84;79;1;3.010474637833423e-07;2070371;3.815741236715545e-05;0;1;Old +18438;Latvia;M;Managers;Other service activities   ;Y_GE85;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18439;Latvia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18440;Latvia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18441;Latvia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18442;Latvia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18443;Latvia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;1;0;Young +18444;Latvia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +18445;Latvia;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18446;Latvia;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;111;1;4.2299074025254424e-07;2070371;5.3613579401952594e-05;1;0;Young +18447;Latvia;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;492;1;1.8748778757139799e-06;2070371;0.0002376385681600061;1;0;Young +18448;Latvia;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;380;1;1.448076408071773e-06;2070371;0.0001835419835382161;0;1;Old +18449;Latvia;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;32;1;1.2194327646920193e-07;2070371;1.5456167034797146e-05;0;1;Old +18450;Latvia;M;Professionals;Mining and quarrying   ;Y15-29;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18451;Latvia;M;Professionals;Mining and quarrying   ;Y30-49;34;1;1.2956473124852705e-07;2070371;1.6422177474471967e-05;1;0;Young +18452;Latvia;M;Professionals;Mining and quarrying   ;Y50-64;18;1;6.859309301392609e-08;2070371;8.694093957073394e-06;0;1;Old +18453;Latvia;M;Professionals;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18454;Latvia;M;Professionals;Manufacturing   ;Y15-29;928;1;3.5363550176068562e-06;2070371;0.0004482288440091172;1;0;Young +18455;Latvia;M;Professionals;Manufacturing   ;Y30-49;1813;1;6.908848757458222e-06;2070371;0.0008756884635652257;1;0;Young +18456;Latvia;M;Professionals;Manufacturing   ;Y50-64;1262;1;4.809137965754151e-06;2070371;0.0006095525874348125;0;1;Old +18457;Latvia;M;Professionals;Manufacturing   ;Y65-84;177;1;6.744987479702732e-07;2070371;8.549192391122171e-05;0;1;Old +18458;Latvia;M;Professionals;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18459;Latvia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;194;1;7.392811135945367e-07;2070371;9.370301264845769e-05;1;0;Young +18460;Latvia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;629;1;2.3969475280977505e-06;2070371;0.00030381028327773136;1;0;Young +18461;Latvia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;443;1;1.6881522336205144e-06;2070371;0.00021397131238797297;0;1;Old +18462;Latvia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;56;1;2.134007338211034e-07;2070371;2.7048292310895005e-05;0;1;Old +18463;Latvia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18464;Latvia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;44;1;1.6767200514515266e-07;2070371;2.1252229672846075e-05;1;0;Young +18465;Latvia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;112;1;4.268014676422068e-07;2070371;5.409658462179001e-05;1;0;Young +18466;Latvia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;90;1;3.4296546506963047e-07;2070371;4.347046978536697e-05;0;1;Old +18467;Latvia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;27;1;1.0288963952088914e-07;2070371;1.3041140935610092e-05;0;1;Old +18468;Latvia;M;Professionals;Construction   ;Y15-29;730;1;2.7818309944536693e-06;2070371;0.0003525938104813099;1;0;Young +18469;Latvia;M;Professionals;Construction   ;Y30-49;1518;1;5.784684177507767e-06;2070371;0.0007332019237131895;1;0;Young +18470;Latvia;M;Professionals;Construction   ;Y50-64;805;1;3.0676355486783614e-06;2070371;0.0003888192019691157;0;1;Old +18471;Latvia;M;Professionals;Construction   ;Y65-84;109;1;4.153692854732191e-07;2070371;5.2647568962277776e-05;0;1;Old +18472;Latvia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;888;1;3.383925922020354e-06;2070371;0.00042890863521562075;1;0;Young +18473;Latvia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1882;1;7.171788947344939e-06;2070371;0.0009090158237340071;1;0;Young +18474;Latvia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;572;1;2.1797360668869848e-06;2070371;0.000276278985746999;0;1;Old +18475;Latvia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;73;1;2.7818309944536694e-07;2070371;3.5259381048130985e-05;0;1;Old +18476;Latvia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18477;Latvia;M;Professionals;Transportation and storage   ;Y15-29;326;1;1.2422971290299947e-06;2070371;0.00015745970166699592;1;0;Young +18478;Latvia;M;Professionals;Transportation and storage   ;Y30-49;761;1;2.8999635435332087e-06;2070371;0.0003675669722962696;1;0;Young +18479;Latvia;M;Professionals;Transportation and storage   ;Y50-64;508;1;1.935849513948581e-06;2070371;0.0002453666516774047;0;1;Old +18480;Latvia;M;Professionals;Transportation and storage   ;Y65-84;84;1;3.201011007316551e-07;2070371;4.057243846634251e-05;0;1;Old +18481;Latvia;M;Professionals;Accommodation and food service activities   ;Y15-29;63;1;2.400758255487413e-07;2070371;3.042932884975688e-05;1;0;Young +18482;Latvia;M;Professionals;Accommodation and food service activities   ;Y30-49;95;1;3.6201910201794326e-07;2070371;4.5885495884554026e-05;1;0;Young +18483;Latvia;M;Professionals;Accommodation and food service activities   ;Y50-64;55;1;2.0959000643144082e-07;2070371;2.6565287091057593e-05;0;1;Old +18484;Latvia;M;Professionals;Accommodation and food service activities   ;Y65-84;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18485;Latvia;M;Professionals;Information and communication   ;Y15-29;2710;1;1.032707122598554e-05;2070371;0.0013089441457593831;1;0;Young +18486;Latvia;M;Professionals;Information and communication   ;Y30-49;2693;1;1.0262288860361275e-05;2070371;0.0013007330570221473;1;0;Young +18487;Latvia;M;Professionals;Information and communication   ;Y50-64;626;1;2.385515345928763e-06;2070371;0.00030236126761821916;0;1;Old +18488;Latvia;M;Professionals;Information and communication   ;Y65-84;72;1;2.7437237205570434e-07;2070371;3.4776375828293576e-05;0;1;Old +18489;Latvia;M;Professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18490;Latvia;M;Professionals;Financial and insurance activities   ;Y15-29;725;1;2.7627773575053563e-06;2070371;0.0003501787843821228;1;0;Young +18491;Latvia;M;Professionals;Financial and insurance activities   ;Y30-49;928;1;3.5363550176068562e-06;2070371;0.0004482288440091172;1;0;Young +18492;Latvia;M;Professionals;Financial and insurance activities   ;Y50-64;190;1;7.240382040358865e-07;2070371;9.177099176910805e-05;0;1;Old +18493;Latvia;M;Professionals;Financial and insurance activities   ;Y65-84;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;0;1;Old +18494;Latvia;M;Professionals;Real estate activities   ;Y15-29;151;1;5.754198358390467e-07;2070371;7.293378819544903e-05;1;0;Young +18495;Latvia;M;Professionals;Real estate activities   ;Y30-49;459;1;1.7491238718551153e-06;2070371;0.00022169939590537156;1;0;Young +18496;Latvia;M;Professionals;Real estate activities   ;Y50-64;300;1;1.1432182168987682e-06;2070371;0.00014490156595122324;0;1;Old +18497;Latvia;M;Professionals;Real estate activities   ;Y65-84;74;1;2.819938268350295e-07;2070371;3.57423862679684e-05;0;1;Old +18498;Latvia;M;Professionals;Professional, scientific and technical activities   ;Y15-29;1745;1;6.649719294961168e-06;2070371;0.0008428441086162818;1;0;Young +18499;Latvia;M;Professionals;Professional, scientific and technical activities   ;Y30-49;2678;1;1.0205127949516336e-05;2070371;0.001293487978724586;1;0;Young +18500;Latvia;M;Professionals;Professional, scientific and technical activities   ;Y50-64;1117;1;4.25658249425308e-06;2070371;0.0005395168305583879;0;1;Old +18501;Latvia;M;Professionals;Professional, scientific and technical activities   ;Y65-84;418;1;1.5928840488789504e-06;2070371;0.00020189618189203772;0;1;Old +18502;Latvia;M;Professionals;Administrative and support service activities   ;Y15-29;252;1;9.603033021949652e-07;2070371;0.00012171731539902752;1;0;Young +18503;Latvia;M;Professionals;Administrative and support service activities   ;Y30-49;369;1;1.4061584067854849e-06;2070371;0.00017822892612000458;1;0;Young +18504;Latvia;M;Professionals;Administrative and support service activities   ;Y50-64;164;1;6.2495929190466e-07;2070371;7.921285605333537e-05;0;1;Old +18505;Latvia;M;Professionals;Administrative and support service activities   ;Y65-84;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;0;1;Old +18506;Latvia;M;Professionals;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18507;Latvia;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;994;1;3.7878630253245854e-06;2070371;0.0004801071885183863;1;0;Young +18508;Latvia;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;2018;1;7.690047872339047e-06;2070371;0.0009747045336318949;1;0;Young +18509;Latvia;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;873;1;3.3267650111754153e-06;2070371;0.0004216635569180596;0;1;Old +18510;Latvia;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;141;1;5.37312561942421e-07;2070371;6.810373599707493e-05;0;1;Old +18511;Latvia;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18512;Latvia;M;Professionals;Education   ;Y15-29;1125;1;4.287068313370381e-06;2070371;0.0005433808723170872;1;0;Young +18513;Latvia;M;Professionals;Education   ;Y30-49;2643;1;1.0071752490878147e-05;2070371;0.0012765827960302767;1;0;Young +18514;Latvia;M;Professionals;Education   ;Y50-64;2232;1;8.505543533726835e-06;2070371;0.0010780676506771008;0;1;Old +18515;Latvia;M;Professionals;Education   ;Y65-84;924;1;3.521112108048206e-06;2070371;0.0004462968231297676;0;1;Old +18516;Latvia;M;Professionals;Education   ;Y_GE85;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18517;Latvia;M;Professionals;Human health and social work activities   ;Y15-29;301;1;1.1470289442884308e-06;2070371;0.00014538457117106065;1;0;Young +18518;Latvia;M;Professionals;Human health and social work activities   ;Y30-49;1108;1;4.222285947746117e-06;2070371;0.0005351697835798511;1;0;Young +18519;Latvia;M;Professionals;Human health and social work activities   ;Y50-64;868;1;3.3077113742271027e-06;2070371;0.0004192485308188726;0;1;Old +18520;Latvia;M;Professionals;Human health and social work activities   ;Y65-84;298;1;1.135596762119443e-06;2070371;0.00014393555551154842;0;1;Old +18521;Latvia;M;Professionals;Arts, entertainment and recreation   ;Y15-29;514;1;1.958713878286556e-06;2070371;0.00024826468299642915;1;0;Young +18522;Latvia;M;Professionals;Arts, entertainment and recreation   ;Y30-49;953;1;3.63162320234842e-06;2070371;0.00046030397450505246;1;0;Young +18523;Latvia;M;Professionals;Arts, entertainment and recreation   ;Y50-64;441;1;1.6805307788411892e-06;2070371;0.00021300530194829815;0;1;Old +18524;Latvia;M;Professionals;Arts, entertainment and recreation   ;Y65-84;81;1;3.086689185626674e-07;2070371;3.9123422806830276e-05;0;1;Old +18525;Latvia;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18526;Latvia;M;Professionals;Other service activities   ;Y15-29;162;1;6.173378371253348e-07;2070371;7.824684561366055e-05;1;0;Young +18527;Latvia;M;Professionals;Other service activities   ;Y30-49;495;1;1.8863100578829675e-06;2070371;0.00023908758381951833;1;0;Young +18528;Latvia;M;Professionals;Other service activities   ;Y50-64;230;1;8.76467299622389e-07;2070371;0.00011109120056260449;0;1;Old +18529;Latvia;M;Professionals;Other service activities   ;Y65-84;41;1;1.56239822976165e-07;2070371;1.9803214013333842e-05;0;1;Old +18530;Latvia;M;Professionals;Other service activities   ;Y_GE85;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18531;Latvia;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18532;Latvia;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18533;Latvia;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18534;Latvia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;1;0;Young +18535;Latvia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;1;0;Young +18536;Latvia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;0;1;Old +18537;Latvia;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18538;Latvia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;199;1;7.583347505428495e-07;2070371;9.611803874764474e-05;1;0;Young +18539;Latvia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;663;1;2.5265122593462776e-06;2070371;0.00032023246075220336;1;0;Young +18540;Latvia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;306;1;1.1660825812367436e-06;2070371;0.0001477995972702477;0;1;Old +18541;Latvia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;24;1;9.145745735190145e-08;2070371;1.1592125276097859e-05;0;1;Old +18542;Latvia;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;1;0;Young +18543;Latvia;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;38;1;1.448076408071773e-07;2070371;1.835419835382161e-05;1;0;Young +18544;Latvia;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;24;1;9.145745735190145e-08;2070371;1.1592125276097859e-05;0;1;Old +18545;Latvia;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18546;Latvia;M;Technicians and associate professionals;Manufacturing   ;Y15-29;1200;1;4.572872867595073e-06;2070371;0.000579606263804893;1;0;Young +18547;Latvia;M;Technicians and associate professionals;Manufacturing   ;Y30-49;2433;1;9.27149973904901e-06;2070371;0.0011751516998644205;1;0;Young +18548;Latvia;M;Technicians and associate professionals;Manufacturing   ;Y50-64;1082;1;4.123207035614891e-06;2070371;0.0005226116478640784;0;1;Old +18549;Latvia;M;Technicians and associate professionals;Manufacturing   ;Y65-84;130;1;4.953945606561329e-07;2070371;6.27906785788634e-05;0;1;Old +18550;Latvia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;158;1;6.020949275666846e-07;2070371;7.63148247343109e-05;1;0;Young +18551;Latvia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;462;1;1.760556054024103e-06;2070371;0.0002231484115648838;1;0;Young +18552;Latvia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;376;1;1.4328334985131229e-06;2070371;0.00018160996265886644;0;1;Old +18553;Latvia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;38;1;1.448076408071773e-07;2070371;1.835419835382161e-05;0;1;Old +18554;Latvia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;95;1;3.6201910201794326e-07;2070371;4.5885495884554026e-05;1;0;Young +18555;Latvia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;225;1;8.574136626740762e-07;2070371;0.00010867617446341743;1;0;Young +18556;Latvia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;269;1;1.0250856678192288e-06;2070371;0.0001299284041362635;0;1;Old +18557;Latvia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;41;1;1.56239822976165e-07;2070371;1.9803214013333842e-05;0;1;Old +18558;Latvia;M;Technicians and associate professionals;Construction   ;Y15-29;847;1;3.227686099044189e-06;2070371;0.0004091054212022869;1;0;Young +18559;Latvia;M;Technicians and associate professionals;Construction   ;Y30-49;1439;1;5.483636713724425e-06;2070371;0.0006950445113460341;1;0;Young +18560;Latvia;M;Technicians and associate professionals;Construction   ;Y50-64;650;1;2.4769728032806642e-06;2070371;0.000313953392894317;0;1;Old +18561;Latvia;M;Technicians and associate professionals;Construction   ;Y65-84;64;1;2.4388655293840386e-07;2070371;3.091233406959429e-05;0;1;Old +18562;Latvia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2855;1;1.087962669748661e-05;2070371;0.0013789799026358077;1;0;Young +18563;Latvia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4973;1;1.8950747308791912e-05;2070371;0.0024019849582514437;1;0;Young +18564;Latvia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1159;1;4.416633044618908e-06;2070371;0.0005598030497915591;0;1;Old +18565;Latvia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;99;1;3.772620115765935e-07;2070371;4.781751676390367e-05;0;1;Old +18566;Latvia;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;1643;1;6.261025101215587e-06;2070371;0.0007935775761928659;1;0;Young +18567;Latvia;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;3392;1;1.2925987305735405e-05;2070371;0.0016383537056884974;1;0;Young +18568;Latvia;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;1871;1;7.129870946058651e-06;2070371;0.0009037027663157956;0;1;Old +18569;Latvia;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;162;1;6.173378371253348e-07;2070371;7.824684561366055e-05;0;1;Old +18570;Latvia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;270;1;1.0288963952088914e-06;2070371;0.00013041140935610092;1;0;Young +18571;Latvia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;274;1;1.0441393047675416e-06;2070371;0.00013234343023545055;1;0;Young +18572;Latvia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;80;1;3.0485819117300483e-07;2070371;3.864041758699286e-05;0;1;Old +18573;Latvia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18574;Latvia;M;Technicians and associate professionals;Information and communication   ;Y15-29;1143;1;4.355661406384307e-06;2070371;0.0005520749662741606;1;0;Young +18575;Latvia;M;Technicians and associate professionals;Information and communication   ;Y30-49;970;1;3.6964055679726838e-06;2070371;0.00046851506324228844;1;0;Young +18576;Latvia;M;Technicians and associate professionals;Information and communication   ;Y50-64;294;1;1.1203538525607928e-06;2070371;0.00014200353463219876;0;1;Old +18577;Latvia;M;Technicians and associate professionals;Information and communication   ;Y65-84;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;0;1;Old +18578;Latvia;M;Technicians and associate professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18579;Latvia;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;896;1;3.4144117411376543e-06;2070371;0.0004327726769743201;1;0;Young +18580;Latvia;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;884;1;3.3686830124617035e-06;2070371;0.0004269766143362711;1;0;Young +18581;Latvia;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;198;1;7.54524023153187e-07;2070371;9.563503352780734e-05;0;1;Old +18582;Latvia;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;0;1;Old +18583;Latvia;M;Technicians and associate professionals;Real estate activities   ;Y15-29;296;1;1.127975307340118e-06;2070371;0.0001429695450718736;1;0;Young +18584;Latvia;M;Technicians and associate professionals;Real estate activities   ;Y30-49;475;1;1.8100955100897163e-06;2070371;0.00022942747942277013;1;0;Young +18585;Latvia;M;Technicians and associate professionals;Real estate activities   ;Y50-64;220;1;8.383600257257633e-07;2070371;0.00010626114836423037;0;1;Old +18586;Latvia;M;Technicians and associate professionals;Real estate activities   ;Y65-84;66;1;2.51508007717729e-07;2070371;3.187834450926911e-05;0;1;Old +18587;Latvia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;1023;1;3.898374119624799e-06;2070371;0.0004941143398936712;1;0;Young +18588;Latvia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;1192;1;4.542387048477772e-06;2070371;0.0005757422220461937;1;0;Young +18589;Latvia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;398;1;1.516669501085699e-06;2070371;0.0001922360774952895;0;1;Old +18590;Latvia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;67;1;2.5531873510739155e-07;2070371;3.2361349729106525e-05;0;1;Old +18591;Latvia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18592;Latvia;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;355;1;1.352808223330209e-06;2070371;0.00017146685304228083;1;0;Young +18593;Latvia;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;370;1;1.4099691341751475e-06;2070371;0.000178711931339842;1;0;Young +18594;Latvia;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;146;1;5.563661988907339e-07;2070371;7.051876209626197e-05;0;1;Old +18595;Latvia;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;18;1;6.859309301392609e-08;2070371;8.694093957073394e-06;0;1;Old +18596;Latvia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;2377;1;9.058099005227907e-06;2070371;0.0011481034075535254;1;0;Young +18597;Latvia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;5286;1;2.0143504981756294e-05;2070371;0.0025531655920605534;1;0;Young +18598;Latvia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;792;1;3.018096092612748e-06;2070371;0.00038254013411122934;0;1;Old +18599;Latvia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;75;1;2.8580455422469204e-07;2070371;3.622539148780581e-05;0;1;Old +18600;Latvia;M;Technicians and associate professionals;Education   ;Y15-29;304;1;1.1584611264574184e-06;2070371;0.00014683358683057287;1;0;Young +18601;Latvia;M;Technicians and associate professionals;Education   ;Y30-49;295;1;1.1241645799504554e-06;2070371;0.0001424865398520362;1;0;Young +18602;Latvia;M;Technicians and associate professionals;Education   ;Y50-64;189;1;7.202274766462239e-07;2070371;9.128798654927064e-05;0;1;Old +18603;Latvia;M;Technicians and associate professionals;Education   ;Y65-84;76;1;2.896152816143546e-07;2070371;3.670839670764322e-05;0;1;Old +18604;Latvia;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;200;1;7.621454779325121e-07;2070371;9.660104396748215e-05;1;0;Young +18605;Latvia;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;344;1;1.310890222043921e-06;2070371;0.0001661537956240693;1;0;Young +18606;Latvia;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;238;1;9.069531187396895e-07;2070371;0.00011495524232130377;0;1;Old +18607;Latvia;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;63;1;2.400758255487413e-07;2070371;3.042932884975688e-05;0;1;Old +18608;Latvia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;904;1;3.4448975602549547e-06;2070371;0.00043663671873301935;1;0;Young +18609;Latvia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;807;1;3.075257003457686e-06;2070371;0.0003897852124087905;1;0;Young +18610;Latvia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;305;1;1.162271853847081e-06;2070371;0.00014731659205041028;0;1;Old +18611;Latvia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;61;1;2.3245437076941619e-07;2070371;2.946331841008206e-05;0;1;Old +18612;Latvia;M;Technicians and associate professionals;Other service activities   ;Y15-29;279;1;1.0631929417158544e-06;2070371;0.0001347584563346376;1;0;Young +18613;Latvia;M;Technicians and associate professionals;Other service activities   ;Y30-49;389;1;1.482372954578736e-06;2070371;0.00018788903051675278;1;0;Young +18614;Latvia;M;Technicians and associate professionals;Other service activities   ;Y50-64;154;1;5.868520180080343e-07;2070371;7.438280385496125e-05;0;1;Old +18615;Latvia;M;Technicians and associate professionals;Other service activities   ;Y65-84;15;1;5.716091084493841e-08;2070371;7.245078297561162e-06;0;1;Old +18616;Latvia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18617;Latvia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;1;0;Young +18618;Latvia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;1;0;Young +18619;Latvia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18620;Latvia;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18621;Latvia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;47;1;1.7910418731414036e-07;2070371;2.2701245332358305e-05;1;0;Young +18622;Latvia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;106;1;4.039371033042314e-07;2070371;5.119855330276554e-05;1;0;Young +18623;Latvia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;60;1;2.2864364337975364e-07;2070371;2.8980313190244647e-05;0;1;Old +18624;Latvia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;0;1;Old +18625;Latvia;M;Clerical support workers;Mining and quarrying   ;Y15-29;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18626;Latvia;M;Clerical support workers;Mining and quarrying   ;Y30-49;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +18627;Latvia;M;Clerical support workers;Mining and quarrying   ;Y50-64;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18628;Latvia;M;Clerical support workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18629;Latvia;M;Clerical support workers;Manufacturing   ;Y15-29;454;1;1.7300702349068025e-06;2070371;0.0002192843698061845;1;0;Young +18630;Latvia;M;Clerical support workers;Manufacturing   ;Y30-49;606;1;2.3093007981355115e-06;2070371;0.00029270116322147093;1;0;Young +18631;Latvia;M;Clerical support workers;Manufacturing   ;Y50-64;235;1;8.955209365707018e-07;2070371;0.00011350622666179153;0;1;Old +18632;Latvia;M;Clerical support workers;Manufacturing   ;Y65-84;26;1;9.907891213122657e-08;2070371;1.255813571577268e-05;0;1;Old +18633;Latvia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;15;1;5.716091084493841e-08;2070371;7.245078297561162e-06;1;0;Young +18634;Latvia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;30;1;1.1432182168987682e-07;2070371;1.4490156595122323e-05;1;0;Young +18635;Latvia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;29;1;1.1051109430021426e-07;2070371;1.4007151375284913e-05;0;1;Old +18636;Latvia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18637;Latvia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;1;0;Young +18638;Latvia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;36;1;1.3718618602785217e-07;2070371;1.7388187914146788e-05;1;0;Young +18639;Latvia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;30;1;1.1432182168987682e-07;2070371;1.4490156595122323e-05;0;1;Old +18640;Latvia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18641;Latvia;M;Clerical support workers;Construction   ;Y15-29;127;1;4.839623784871452e-07;2070371;6.134166291935118e-05;1;0;Young +18642;Latvia;M;Clerical support workers;Construction   ;Y30-49;173;1;6.592558384116229e-07;2070371;8.355990303187206e-05;1;0;Young +18643;Latvia;M;Clerical support workers;Construction   ;Y50-64;66;1;2.51508007717729e-07;2070371;3.187834450926911e-05;0;1;Old +18644;Latvia;M;Clerical support workers;Construction   ;Y65-84;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;0;1;Old +18645;Latvia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1509;1;5.7503876310008036e-06;2070371;0.0007288548767346529;1;0;Young +18646;Latvia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1627;1;6.200053462980986e-06;2070371;0.0007858494926754673;1;0;Young +18647;Latvia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;504;1;1.9206066043899305e-06;2070371;0.00024343463079805504;0;1;Old +18648;Latvia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;23;1;8.764672996223889e-08;2070371;1.1109120056260448e-05;0;1;Old +18649;Latvia;M;Clerical support workers;Transportation and storage   ;Y15-29;934;1;3.5592193819448314e-06;2070371;0.00045112687532814167;1;0;Young +18650;Latvia;M;Clerical support workers;Transportation and storage   ;Y30-49;1104;1;4.207043038187467e-06;2070371;0.0005332377627005015;1;0;Young +18651;Latvia;M;Clerical support workers;Transportation and storage   ;Y50-64;554;1;2.1111429738730584e-06;2070371;0.00026758489178992556;0;1;Old +18652;Latvia;M;Clerical support workers;Transportation and storage   ;Y65-84;48;1;1.829149147038029e-07;2070371;2.3184250552195717e-05;0;1;Old +18653;Latvia;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;226;1;8.612243900637387e-07;2070371;0.00010915917968325484;1;0;Young +18654;Latvia;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;72;1;2.7437237205570434e-07;2070371;3.4776375828293576e-05;1;0;Young +18655;Latvia;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;29;1;1.1051109430021426e-07;2070371;1.4007151375284913e-05;0;1;Old +18656;Latvia;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18657;Latvia;M;Clerical support workers;Information and communication   ;Y15-29;280;1;1.067003669105517e-06;2070371;0.000135241461554475;1;0;Young +18658;Latvia;M;Clerical support workers;Information and communication   ;Y30-49;118;1;4.496658319801821e-07;2070371;5.699461594081447e-05;1;0;Young +18659;Latvia;M;Clerical support workers;Information and communication   ;Y50-64;33;1;1.257540038588645e-07;2070371;1.5939172254634555e-05;0;1;Old +18660;Latvia;M;Clerical support workers;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;0;1;Old +18661;Latvia;M;Clerical support workers;Financial and insurance activities   ;Y15-29;308;1;1.1737040360160685e-06;2070371;0.0001487656077099225;1;0;Young +18662;Latvia;M;Clerical support workers;Financial and insurance activities   ;Y30-49;236;1;8.993316639603643e-07;2070371;0.00011398923188162894;1;0;Young +18663;Latvia;M;Clerical support workers;Financial and insurance activities   ;Y50-64;46;1;1.7529345992447778e-07;2070371;2.2218240112520896e-05;0;1;Old +18664;Latvia;M;Clerical support workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18665;Latvia;M;Clerical support workers;Real estate activities   ;Y15-29;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;1;0;Young +18666;Latvia;M;Clerical support workers;Real estate activities   ;Y30-49;52;1;1.9815782426245315e-07;2070371;2.511627143154536e-05;1;0;Young +18667;Latvia;M;Clerical support workers;Real estate activities   ;Y50-64;48;1;1.829149147038029e-07;2070371;2.3184250552195717e-05;0;1;Old +18668;Latvia;M;Clerical support workers;Real estate activities   ;Y65-84;18;1;6.859309301392609e-08;2070371;8.694093957073394e-06;0;1;Old +18669;Latvia;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;125;1;4.7634092370782007e-07;2070371;6.037565247967635e-05;1;0;Young +18670;Latvia;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;99;1;3.772620115765935e-07;2070371;4.781751676390367e-05;1;0;Young +18671;Latvia;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;31;1;1.1813254907953938e-07;2070371;1.4973161814959734e-05;0;1;Old +18672;Latvia;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;0;1;Old +18673;Latvia;M;Clerical support workers;Administrative and support service activities   ;Y15-29;306;1;1.1660825812367436e-06;2070371;0.0001477995972702477;1;0;Young +18674;Latvia;M;Clerical support workers;Administrative and support service activities   ;Y30-49;258;1;9.831676665329406e-07;2070371;0.00012461534671805199;1;0;Young +18675;Latvia;M;Clerical support workers;Administrative and support service activities   ;Y50-64;58;1;2.2102218860042852e-07;2070371;2.8014302750569826e-05;0;1;Old +18676;Latvia;M;Clerical support workers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18677;Latvia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;70;1;2.6675091727637925e-07;2070371;3.381036538861875e-05;1;0;Young +18678;Latvia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;140;1;5.335018345527585e-07;2070371;6.76207307772375e-05;1;0;Young +18679;Latvia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;84;1;3.201011007316551e-07;2070371;4.057243846634251e-05;0;1;Old +18680;Latvia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;13;1;4.953945606561329e-08;2070371;6.27906785788634e-06;0;1;Old +18681;Latvia;M;Clerical support workers;Education   ;Y15-29;33;1;1.257540038588645e-07;2070371;1.5939172254634555e-05;1;0;Young +18682;Latvia;M;Clerical support workers;Education   ;Y30-49;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;1;0;Young +18683;Latvia;M;Clerical support workers;Education   ;Y50-64;31;1;1.1813254907953938e-07;2070371;1.4973161814959734e-05;0;1;Old +18684;Latvia;M;Clerical support workers;Education   ;Y65-84;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +18685;Latvia;M;Clerical support workers;Human health and social work activities   ;Y15-29;35;1;1.3337545863818962e-07;2070371;1.6905182694309376e-05;1;0;Young +18686;Latvia;M;Clerical support workers;Human health and social work activities   ;Y30-49;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;1;0;Young +18687;Latvia;M;Clerical support workers;Human health and social work activities   ;Y50-64;28;1;1.067003669105517e-07;2070371;1.3524146155447502e-05;0;1;Old +18688;Latvia;M;Clerical support workers;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18689;Latvia;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;281;1;1.0708143964951796e-06;2070371;0.00013572446677431244;1;0;Young +18690;Latvia;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;248;1;9.45060392636315e-07;2070371;0.00011978529451967787;1;0;Young +18691;Latvia;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;45;1;1.7148273253481523e-07;2070371;2.1735234892683484e-05;0;1;Old +18692;Latvia;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18693;Latvia;M;Clerical support workers;Other service activities   ;Y15-29;41;1;1.56239822976165e-07;2070371;1.9803214013333842e-05;1;0;Young +18694;Latvia;M;Clerical support workers;Other service activities   ;Y30-49;45;1;1.7148273253481523e-07;2070371;2.1735234892683484e-05;1;0;Young +18695;Latvia;M;Clerical support workers;Other service activities   ;Y50-64;18;1;6.859309301392609e-08;2070371;8.694093957073394e-06;0;1;Old +18696;Latvia;M;Clerical support workers;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18697;Latvia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18698;Latvia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18699;Latvia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18700;Latvia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18701;Latvia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18702;Latvia;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18703;Latvia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;112;1;4.268014676422068e-07;2070371;5.409658462179001e-05;1;0;Young +18704;Latvia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;358;1;1.3642404054991967e-06;2070371;0.00017291586870179306;1;0;Young +18705;Latvia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;271;1;1.032707122598554e-06;2070371;0.00013089441457593833;0;1;Old +18706;Latvia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;44;1;1.6767200514515266e-07;2070371;2.1252229672846075e-05;0;1;Old +18707;Latvia;M;Service and sales workers;Mining and quarrying   ;Y15-29;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18708;Latvia;M;Service and sales workers;Mining and quarrying   ;Y30-49;37;1;1.4099691341751475e-07;2070371;1.78711931339842e-05;1;0;Young +18709;Latvia;M;Service and sales workers;Mining and quarrying   ;Y50-64;31;1;1.1813254907953938e-07;2070371;1.4973161814959734e-05;0;1;Old +18710;Latvia;M;Service and sales workers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18711;Latvia;M;Service and sales workers;Manufacturing   ;Y15-29;259;1;9.869783939226032e-07;2070371;0.0001250983519378894;1;0;Young +18712;Latvia;M;Service and sales workers;Manufacturing   ;Y30-49;564;1;2.149250247769684e-06;2070371;0.0002724149439882997;1;0;Young +18713;Latvia;M;Service and sales workers;Manufacturing   ;Y50-64;538;1;2.0501713356384576e-06;2070371;0.000259856808272527;0;1;Old +18714;Latvia;M;Service and sales workers;Manufacturing   ;Y65-84;116;1;4.4204437720085703e-07;2070371;5.602860550113965e-05;0;1;Old +18715;Latvia;M;Service and sales workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18716;Latvia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;1;0;Young +18717;Latvia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;53;1;2.019685516521157e-07;2070371;2.559927665138277e-05;1;0;Young +18718;Latvia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;38;1;1.448076408071773e-07;2070371;1.835419835382161e-05;0;1;Old +18719;Latvia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +18720;Latvia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;1;0;Young +18721;Latvia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;72;1;2.7437237205570434e-07;2070371;3.4776375828293576e-05;1;0;Young +18722;Latvia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;56;1;2.134007338211034e-07;2070371;2.7048292310895005e-05;0;1;Old +18723;Latvia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18724;Latvia;M;Service and sales workers;Construction   ;Y15-29;133;1;5.068267428251205e-07;2070371;6.423969423837563e-05;1;0;Young +18725;Latvia;M;Service and sales workers;Construction   ;Y30-49;269;1;1.0250856678192288e-06;2070371;0.0001299284041362635;1;0;Young +18726;Latvia;M;Service and sales workers;Construction   ;Y50-64;273;1;1.040328577377879e-06;2070371;0.00013186042501561315;0;1;Old +18727;Latvia;M;Service and sales workers;Construction   ;Y65-84;68;1;2.591294624970541e-07;2070371;3.2844354948943934e-05;0;1;Old +18728;Latvia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5055;1;1.9263226954744242e-05;2070371;0.0024415913862781114;1;0;Young +18729;Latvia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4792;1;1.826100565126299e-05;2070371;0.0023145610134608723;1;0;Young +18730;Latvia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1631;1;6.215296372539637e-06;2070371;0.000787781513554817;0;1;Old +18731;Latvia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;135;1;5.144481976044457e-07;2070371;6.520570467805046e-05;0;1;Old +18732;Latvia;M;Service and sales workers;Transportation and storage   ;Y15-29;553;1;2.1073322464833958e-06;2070371;0.0002671018865700882;1;0;Young +18733;Latvia;M;Service and sales workers;Transportation and storage   ;Y30-49;930;1;3.5439764723861814e-06;2070371;0.00044919485444879203;1;0;Young +18734;Latvia;M;Service and sales workers;Transportation and storage   ;Y50-64;617;1;2.3512187994217997e-06;2070371;0.00029801422063968245;0;1;Old +18735;Latvia;M;Service and sales workers;Transportation and storage   ;Y65-84;240;1;9.145745735190145e-07;2070371;0.00011592125276097859;0;1;Old +18736;Latvia;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;3027;1;1.153507180850857e-05;2070371;0.0014620568004478425;1;0;Young +18737;Latvia;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;1409;1;5.369314892034548e-06;2070371;0.0006805543547509118;1;0;Young +18738;Latvia;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;255;1;9.71735484363953e-07;2070371;0.00012316633105853976;0;1;Old +18739;Latvia;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;0;1;Old +18740;Latvia;M;Service and sales workers;Information and communication   ;Y15-29;73;1;2.7818309944536694e-07;2070371;3.5259381048130985e-05;1;0;Young +18741;Latvia;M;Service and sales workers;Information and communication   ;Y30-49;73;1;2.7818309944536694e-07;2070371;3.5259381048130985e-05;1;0;Young +18742;Latvia;M;Service and sales workers;Information and communication   ;Y50-64;37;1;1.4099691341751475e-07;2070371;1.78711931339842e-05;0;1;Old +18743;Latvia;M;Service and sales workers;Information and communication   ;Y65-84;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +18744;Latvia;M;Service and sales workers;Financial and insurance activities   ;Y15-29;105;1;4.0012637591456885e-07;2070371;5.0715548082928134e-05;1;0;Young +18745;Latvia;M;Service and sales workers;Financial and insurance activities   ;Y30-49;263;1;1.0022213034812534e-06;2070371;0.00012703037281723903;1;0;Young +18746;Latvia;M;Service and sales workers;Financial and insurance activities   ;Y50-64;71;1;2.705616446660418e-07;2070371;3.429337060845617e-05;0;1;Old +18747;Latvia;M;Service and sales workers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18748;Latvia;M;Service and sales workers;Real estate activities   ;Y15-29;186;1;7.087952944772362e-07;2070371;8.98389708897584e-05;1;0;Young +18749;Latvia;M;Service and sales workers;Real estate activities   ;Y30-49;451;1;1.7186380527378147e-06;2070371;0.00021783535414667226;1;0;Young +18750;Latvia;M;Service and sales workers;Real estate activities   ;Y50-64;493;1;1.8786886031036423e-06;2070371;0.00023812157337984352;0;1;Old +18751;Latvia;M;Service and sales workers;Real estate activities   ;Y65-84;120;1;4.572872867595073e-07;2070371;5.7960626380489294e-05;0;1;Old +18752;Latvia;M;Service and sales workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18753;Latvia;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;59;1;2.2483291599009106e-07;2070371;2.8497307970407235e-05;1;0;Young +18754;Latvia;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;93;1;3.543976472386181e-07;2070371;4.49194854448792e-05;1;0;Young +18755;Latvia;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;75;1;2.8580455422469204e-07;2070371;3.622539148780581e-05;0;1;Old +18756;Latvia;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;23;1;8.764672996223889e-08;2070371;1.1109120056260448e-05;0;1;Old +18757;Latvia;M;Service and sales workers;Administrative and support service activities   ;Y15-29;2478;1;9.442982471583825e-06;2070371;0.0011968869347571038;1;0;Young +18758;Latvia;M;Service and sales workers;Administrative and support service activities   ;Y30-49;4209;1;1.603935158308972e-05;2070371;0.002032968970295662;1;0;Young +18759;Latvia;M;Service and sales workers;Administrative and support service activities   ;Y50-64;2135;1;8.135902976929566e-06;2070371;0.001031216144352872;0;1;Old +18760;Latvia;M;Service and sales workers;Administrative and support service activities   ;Y65-84;228;1;8.688458448430638e-07;2070371;0.00011012519012292965;0;1;Old +18761;Latvia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;1651;1;6.291510920332888e-06;2070371;0.0007974416179515652;1;0;Young +18762;Latvia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;3872;1;1.4755136452773434e-05;2070371;0.0018701962112104545;1;0;Young +18763;Latvia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;570;1;2.1721146121076596e-06;2070371;0.00027531297530732416;0;1;Old +18764;Latvia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;170;1;6.478236562426352e-07;2070371;8.211088737235984e-05;0;1;Old +18765;Latvia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18766;Latvia;M;Service and sales workers;Education   ;Y15-29;319;1;1.2156220373023567e-06;2070371;0.00015407866512813403;1;0;Young +18767;Latvia;M;Service and sales workers;Education   ;Y30-49;773;1;2.9456922722091595e-06;2070371;0.00037336303493431855;1;0;Young +18768;Latvia;M;Service and sales workers;Education   ;Y50-64;794;1;3.0257175473920732e-06;2070371;0.00038350614455090416;0;1;Old +18769;Latvia;M;Service and sales workers;Education   ;Y65-84;222;1;8.459814805050885e-07;2070371;0.00010722715880390519;0;1;Old +18770;Latvia;M;Service and sales workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18771;Latvia;M;Service and sales workers;Human health and social work activities   ;Y15-29;285;1;1.0860573060538298e-06;2070371;0.00013765648765366208;1;0;Young +18772;Latvia;M;Service and sales workers;Human health and social work activities   ;Y30-49;506;1;1.9282280591692557e-06;2070371;0.00024440064123772983;1;0;Young +18773;Latvia;M;Service and sales workers;Human health and social work activities   ;Y50-64;396;1;1.509048046306374e-06;2070371;0.00019127006705561467;0;1;Old +18774;Latvia;M;Service and sales workers;Human health and social work activities   ;Y65-84;70;1;2.6675091727637925e-07;2070371;3.381036538861875e-05;0;1;Old +18775;Latvia;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;213;1;8.116849339981254e-07;2070371;0.0001028801118253685;1;0;Young +18776;Latvia;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;250;1;9.526818474156401e-07;2070371;0.0001207513049593527;1;0;Young +18777;Latvia;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;128;1;4.877731058768077e-07;2070371;6.182466813918858e-05;0;1;Old +18778;Latvia;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;43;1;1.638612777554901e-07;2070371;2.0769224453008663e-05;0;1;Old +18779;Latvia;M;Service and sales workers;Other service activities   ;Y15-29;189;1;7.202274766462239e-07;2070371;9.128798654927064e-05;1;0;Young +18780;Latvia;M;Service and sales workers;Other service activities   ;Y30-49;341;1;1.299458039874933e-06;2070371;0.00016470477996455708;1;0;Young +18781;Latvia;M;Service and sales workers;Other service activities   ;Y50-64;142;1;5.411232893320836e-07;2070371;6.858674121691233e-05;0;1;Old +18782;Latvia;M;Service and sales workers;Other service activities   ;Y65-84;27;1;1.0288963952088914e-07;2070371;1.3041140935610092e-05;0;1;Old +18783;Latvia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +18784;Latvia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;1;0;Young +18785;Latvia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18786;Latvia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18787;Latvia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18788;Latvia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;1;0;Young +18789;Latvia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18790;Latvia;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18791;Latvia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;984;1;3.7497557514279598e-06;2070371;0.0004752771363200122;1;0;Young +18792;Latvia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;3001;1;1.1435992896377345e-05;2070371;0.0014494986647320698;1;0;Young +18793;Latvia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;1836;1;6.996495487420461e-06;2070371;0.0008867975836214862;0;1;Old +18794;Latvia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;120;1;4.572872867595073e-07;2070371;5.7960626380489294e-05;0;1;Old +18795;Latvia;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18796;Latvia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;30;1;1.1432182168987682e-07;2070371;1.4490156595122323e-05;1;0;Young +18797;Latvia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;79;1;3.010474637833423e-07;2070371;3.815741236715545e-05;1;0;Young +18798;Latvia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;39;1;1.4861836819683987e-07;2070371;1.883720357365902e-05;0;1;Old +18799;Latvia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18800;Latvia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18801;Latvia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18802;Latvia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18803;Latvia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18804;Latvia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18805;Latvia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18806;Latvia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;1;0;Young +18807;Latvia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +18808;Latvia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18809;Latvia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +18810;Latvia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;20;1;7.621454779325121e-08;2070371;9.660104396748215e-06;1;0;Young +18811;Latvia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;0;1;Old +18812;Latvia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;1;0;Young +18813;Latvia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;1;0;Young +18814;Latvia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18815;Latvia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18816;Latvia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18817;Latvia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;1;0;Young +18818;Latvia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +18819;Latvia;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18820;Latvia;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +18821;Latvia;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;0;1;Old +18822;Latvia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18823;Latvia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18824;Latvia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18825;Latvia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;34;1;1.2956473124852705e-07;2070371;1.6422177474471967e-05;1;0;Young +18826;Latvia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;56;1;2.134007338211034e-07;2070371;2.7048292310895005e-05;1;0;Young +18827;Latvia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;16;1;6.097163823460096e-08;2070371;7.728083517398573e-06;0;1;Old +18828;Latvia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18829;Latvia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18830;Latvia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18831;Latvia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18832;Latvia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18833;Latvia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18834;Latvia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;0;1;Old +18835;Latvia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18836;Latvia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;1;0;Young +18837;Latvia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18838;Latvia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18839;Latvia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;1;0;Young +18840;Latvia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;14;1;5.335018345527585e-08;2070371;6.762073077723751e-06;1;0;Young +18841;Latvia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18842;Latvia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18843;Latvia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18844;Latvia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +18845;Latvia;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +18846;Latvia;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +18847;Latvia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;327;1;1.2461078564196573e-06;2070371;0.00015794270688683333;1;0;Young +18848;Latvia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;934;1;3.5592193819448314e-06;2070371;0.00045112687532814167;1;0;Young +18849;Latvia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;749;1;2.854234814857258e-06;2070371;0.0003617709096582207;0;1;Old +18850;Latvia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;49;1;1.8672564209346548e-07;2070371;2.366725577203313e-05;0;1;Old +18851;Latvia;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;59;1;2.2483291599009106e-07;2070371;2.8497307970407235e-05;1;0;Young +18852;Latvia;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;119;1;4.5347655936984473e-07;2070371;5.7477621160651885e-05;1;0;Young +18853;Latvia;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;93;1;3.543976472386181e-07;2070371;4.49194854448792e-05;0;1;Old +18854;Latvia;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18855;Latvia;M;Craft and related trades workers;Manufacturing   ;Y15-29;10005;1;3.812632753357392e-05;2070371;0.004832467224473295;1;0;Young +18856;Latvia;M;Craft and related trades workers;Manufacturing   ;Y30-49;19361;1;7.377949299125684e-05;2070371;0.009351464061272111;1;0;Young +18857;Latvia;M;Craft and related trades workers;Manufacturing   ;Y50-64;10365;1;3.949818939385244e-05;2070371;0.005006349103614763;0;1;Old +18858;Latvia;M;Craft and related trades workers;Manufacturing   ;Y65-84;755;1;2.877099179195233e-06;2070371;0.00036466894097724514;0;1;Old +18859;Latvia;M;Craft and related trades workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18860;Latvia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;469;1;1.787231145751741e-06;2070371;0.00022652944810374565;1;0;Young +18861;Latvia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1614;1;6.150514006915372e-06;2070371;0.000779570424817581;1;0;Young +18862;Latvia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1497;1;5.704658902324853e-06;2070371;0.000723058814096604;0;1;Old +18863;Latvia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;146;1;5.563661988907339e-07;2070371;7.051876209626197e-05;0;1;Old +18864;Latvia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;158;1;6.020949275666846e-07;2070371;7.63148247343109e-05;1;0;Young +18865;Latvia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;571;1;2.175925339497322e-06;2070371;0.00027579598052716154;1;0;Young +18866;Latvia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;490;1;1.8672564209346547e-06;2070371;0.0002366725577203313;0;1;Old +18867;Latvia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;100;1;3.8107273896625605e-07;2070371;4.830052198374108e-05;0;1;Old +18868;Latvia;M;Craft and related trades workers;Construction   ;Y15-29;9929;1;3.783671225195956e-05;2070371;0.004795758827765652;1;0;Young +18869;Latvia;M;Craft and related trades workers;Construction   ;Y30-49;19875;1;7.573820686954339e-05;2070371;0.00959972874426854;1;0;Young +18870;Latvia;M;Craft and related trades workers;Construction   ;Y50-64;8073;1;3.076400221674585e-05;2070371;0.003899301139747417;0;1;Old +18871;Latvia;M;Craft and related trades workers;Construction   ;Y65-84;305;1;1.162271853847081e-06;2070371;0.00014731659205041028;0;1;Old +18872;Latvia;M;Craft and related trades workers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18873;Latvia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3588;1;1.3672889874109268e-05;2070371;0.0017330227287766298;1;0;Young +18874;Latvia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5619;1;2.141247720251393e-05;2070371;0.002714006330266411;1;0;Young +18875;Latvia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2046;1;7.796748239249598e-06;2070371;0.0009882286797873424;0;1;Old +18876;Latvia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;133;1;5.068267428251205e-07;2070371;6.423969423837563e-05;0;1;Old +18877;Latvia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18878;Latvia;M;Craft and related trades workers;Transportation and storage   ;Y15-29;1020;1;3.886941937455812e-06;2070371;0.000492665324234159;1;0;Young +18879;Latvia;M;Craft and related trades workers;Transportation and storage   ;Y30-49;2742;1;1.0449014502454741e-05;2070371;0.0013244003127941804;1;0;Young +18880;Latvia;M;Craft and related trades workers;Transportation and storage   ;Y50-64;2359;1;8.98950591221398e-06;2070371;0.001139409313596452;0;1;Old +18881;Latvia;M;Craft and related trades workers;Transportation and storage   ;Y65-84;296;1;1.127975307340118e-06;2070371;0.0001429695450718736;0;1;Old +18882;Latvia;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;145;1;5.525554715010713e-07;2070371;7.003575687642456e-05;1;0;Young +18883;Latvia;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;144;1;5.487447441114087e-07;2070371;6.955275165658715e-05;1;0;Young +18884;Latvia;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;80;1;3.0485819117300483e-07;2070371;3.864041758699286e-05;0;1;Old +18885;Latvia;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;0;1;Old +18886;Latvia;M;Craft and related trades workers;Information and communication   ;Y15-29;197;1;7.507132957635244e-07;2070371;9.515202830796993e-05;1;0;Young +18887;Latvia;M;Craft and related trades workers;Information and communication   ;Y30-49;288;1;1.0974894882228174e-06;2070371;0.0001391055033131743;1;0;Young +18888;Latvia;M;Craft and related trades workers;Information and communication   ;Y50-64;145;1;5.525554715010713e-07;2070371;7.003575687642456e-05;0;1;Old +18889;Latvia;M;Craft and related trades workers;Information and communication   ;Y65-84;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;0;1;Old +18890;Latvia;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;15;1;5.716091084493841e-08;2070371;7.245078297561162e-06;1;0;Young +18891;Latvia;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;37;1;1.4099691341751475e-07;2070371;1.78711931339842e-05;1;0;Young +18892;Latvia;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;22;1;8.383600257257633e-08;2070371;1.0626114836423038e-05;0;1;Old +18893;Latvia;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +18894;Latvia;M;Craft and related trades workers;Real estate activities   ;Y15-29;357;1;1.360429678109534e-06;2070371;0.00017243286348195565;1;0;Young +18895;Latvia;M;Craft and related trades workers;Real estate activities   ;Y30-49;1069;1;4.073667579549277e-06;2070371;0.0005163325800061922;1;0;Young +18896;Latvia;M;Craft and related trades workers;Real estate activities   ;Y50-64;1104;1;4.207043038187467e-06;2070371;0.0005332377627005015;0;1;Old +18897;Latvia;M;Craft and related trades workers;Real estate activities   ;Y65-84;196;1;7.469025683738619e-07;2070371;9.466902308813252e-05;0;1;Old +18898;Latvia;M;Craft and related trades workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18899;Latvia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;262;1;9.984105760915908e-07;2070371;0.00012654736759740162;1;0;Young +18900;Latvia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;345;1;1.3147009494335833e-06;2070371;0.00016663680084390671;1;0;Young +18901;Latvia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;209;1;7.964420244394752e-07;2070371;0.00010094809094601886;0;1;Old +18902;Latvia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;49;1;1.8672564209346548e-07;2070371;2.366725577203313e-05;0;1;Old +18903;Latvia;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;435;1;1.6576664145032138e-06;2070371;0.0002101072706292737;1;0;Young +18904;Latvia;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;765;1;2.9152064530918587e-06;2070371;0.0003694989931756192;1;0;Young +18905;Latvia;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;391;1;1.4899944093580612e-06;2070371;0.00018885504095642763;0;1;Old +18906;Latvia;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;38;1;1.448076408071773e-07;2070371;1.835419835382161e-05;0;1;Old +18907;Latvia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;110;1;4.1918001286288164e-07;2070371;5.3130574182115185e-05;1;0;Young +18908;Latvia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;385;1;1.4671300450200858e-06;2070371;0.00018595700963740315;1;0;Young +18909;Latvia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;321;1;1.223243492081682e-06;2070371;0.00015504467556780885;0;1;Old +18910;Latvia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;66;1;2.51508007717729e-07;2070371;3.187834450926911e-05;0;1;Old +18911;Latvia;M;Craft and related trades workers;Education   ;Y15-29;210;1;8.002527518291377e-07;2070371;0.00010143109616585627;1;0;Young +18912;Latvia;M;Craft and related trades workers;Education   ;Y30-49;483;1;1.8405813292070167e-06;2070371;0.0002332915211814694;1;0;Young +18913;Latvia;M;Craft and related trades workers;Education   ;Y50-64;565;1;2.1530609751593466e-06;2070371;0.0002728979492081371;0;1;Old +18914;Latvia;M;Craft and related trades workers;Education   ;Y65-84;155;1;5.906627453976969e-07;2070371;7.486580907479868e-05;0;1;Old +18915;Latvia;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;94;1;3.582083746282807e-07;2070371;4.540249066471661e-05;1;0;Young +18916;Latvia;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;374;1;1.4252120437337977e-06;2070371;0.00018064395221919162;1;0;Young +18917;Latvia;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;374;1;1.4252120437337977e-06;2070371;0.00018064395221919162;0;1;Old +18918;Latvia;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;90;1;3.4296546506963047e-07;2070371;4.347046978536697e-05;0;1;Old +18919;Latvia;M;Craft and related trades workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18920;Latvia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;127;1;4.839623784871452e-07;2070371;6.134166291935118e-05;1;0;Young +18921;Latvia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;243;1;9.260067556880022e-07;2070371;0.00011737026842049081;1;0;Young +18922;Latvia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;189;1;7.202274766462239e-07;2070371;9.128798654927064e-05;0;1;Old +18923;Latvia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;36;1;1.3718618602785217e-07;2070371;1.7388187914146788e-05;0;1;Old +18924;Latvia;M;Craft and related trades workers;Other service activities   ;Y15-29;165;1;6.287700192943225e-07;2070371;7.969586127317278e-05;1;0;Young +18925;Latvia;M;Craft and related trades workers;Other service activities   ;Y30-49;654;1;2.4922157128393146e-06;2070371;0.00031588541377366666;1;0;Young +18926;Latvia;M;Craft and related trades workers;Other service activities   ;Y50-64;417;1;1.5890733214892878e-06;2070371;0.00020141317667220028;0;1;Old +18927;Latvia;M;Craft and related trades workers;Other service activities   ;Y65-84;50;1;1.9053636948312803e-07;2070371;2.415026099187054e-05;0;1;Old +18928;Latvia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;1;0;Young +18929;Latvia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;1;0;Young +18930;Latvia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +18931;Latvia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18932;Latvia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18933;Latvia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;1;0;Young +18934;Latvia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18935;Latvia;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18936;Latvia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;1381;1;5.262614525123996e-06;2070371;0.0006670302085954642;1;0;Young +18937;Latvia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;4835;1;1.842486692901848e-05;2070371;0.0023353302379138813;1;0;Young +18938;Latvia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2713;1;1.0338503408154527e-05;2070371;0.0013103931614188954;0;1;Old +18939;Latvia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;87;1;3.3153328290064277e-07;2070371;4.2021454125854735e-05;0;1;Old +18940;Latvia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;224;1;8.536029352844136e-07;2070371;0.00010819316924358002;1;0;Young +18941;Latvia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;699;1;2.66369844537413e-06;2070371;0.00033762064866635014;1;0;Young +18942;Latvia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;367;1;1.3985369520061597e-06;2070371;0.00017726291568032976;0;1;Old +18943;Latvia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;19;1;7.240382040358865e-08;2070371;9.177099176910805e-06;0;1;Old +18944;Latvia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;4220;1;1.6081269584376006e-05;2070371;0.0020382820277138735;1;0;Young +18945;Latvia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;9245;1;3.523017471743037e-05;2070371;0.004465383257396862;1;0;Young +18946;Latvia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;4787;1;1.824195201431468e-05;2070371;0.0023121459873616853;0;1;Old +18947;Latvia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;254;1;9.679247569742904e-07;2070371;0.00012268332583870235;0;1;Old +18948;Latvia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;127;1;4.839623784871452e-07;2070371;6.134166291935118e-05;1;0;Young +18949;Latvia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;660;1;2.51508007717729e-06;2070371;0.0003187834450926911;1;0;Young +18950;Latvia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;801;1;3.052392639119711e-06;2070371;0.00038688718108976605;0;1;Old +18951;Latvia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;67;1;2.5531873510739155e-07;2070371;3.2361349729106525e-05;0;1;Old +18952;Latvia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;119;1;4.5347655936984473e-07;2070371;5.7477621160651885e-05;1;0;Young +18953;Latvia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;733;1;2.7932631766226567e-06;2070371;0.0003540428261408221;1;0;Young +18954;Latvia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;642;1;2.446486984163364e-06;2070371;0.0003100893511356177;0;1;Old +18955;Latvia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;59;1;2.2483291599009106e-07;2070371;2.8497307970407235e-05;0;1;Old +18956;Latvia;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;916;1;3.4906262889309055e-06;2070371;0.00044243278137106825;1;0;Young +18957;Latvia;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;3444;1;1.3124145129997858e-05;2070371;0.0016634699771200427;1;0;Young +18958;Latvia;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;2651;1;1.0102238309995448e-05;2070371;0.001280446837788976;0;1;Old +18959;Latvia;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;145;1;5.525554715010713e-07;2070371;7.003575687642456e-05;0;1;Old +18960;Latvia;M;Plant and machine operators, and assemblers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +18961;Latvia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;920;1;3.505869198489556e-06;2070371;0.00044436480225041794;1;0;Young +18962;Latvia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3333;1;1.2701154389745315e-05;2070371;0.0016098563977180902;1;0;Young +18963;Latvia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1990;1;7.583347505428496e-06;2070371;0.0009611803874764475;0;1;Old +18964;Latvia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;128;1;4.877731058768077e-07;2070371;6.182466813918858e-05;0;1;Old +18965;Latvia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;3498;1;1.3329924409039637e-05;2070371;0.0016895522589912629;1;0;Young +18966;Latvia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;17093;1;6.513676327150215e-05;2070371;0.008256008222680862;1;0;Young +18967;Latvia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;10734;1;4.0904347800637926e-05;2070371;0.005184578029734767;0;1;Old +18968;Latvia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;540;1;2.057792790417783e-06;2070371;0.00026082281871220184;0;1;Old +18969;Latvia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;86;1;3.277225555109802e-07;2070371;4.1538448906017326e-05;1;0;Young +18970;Latvia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;140;1;5.335018345527585e-07;2070371;6.76207307772375e-05;1;0;Young +18971;Latvia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;102;1;3.886941937455812e-07;2070371;4.92665324234159e-05;0;1;Old +18972;Latvia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;6;1;2.2864364337975363e-08;2070371;2.8980313190244647e-06;0;1;Old +18973;Latvia;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;82;1;3.1247964595233e-07;2070371;3.9606428026667684e-05;1;0;Young +18974;Latvia;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;168;1;6.402022014633102e-07;2070371;8.114487693268502e-05;1;0;Young +18975;Latvia;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;108;1;4.1155855808355654e-07;2070371;5.216456374244037e-05;0;1;Old +18976;Latvia;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;0;1;Old +18977;Latvia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;1;0;Young +18978;Latvia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;50;1;1.9053636948312803e-07;2070371;2.415026099187054e-05;1;0;Young +18979;Latvia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;44;1;1.6767200514515266e-07;2070371;2.1252229672846075e-05;0;1;Old +18980;Latvia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;0;1;Old +18981;Latvia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;94;1;3.582083746282807e-07;2070371;4.540249066471661e-05;1;0;Young +18982;Latvia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;434;1;1.6538556871135514e-06;2070371;0.0002096242654094363;1;0;Young +18983;Latvia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;427;1;1.6271805953859134e-06;2070371;0.0002062432288705744;0;1;Old +18984;Latvia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;58;1;2.2102218860042852e-07;2070371;2.8014302750569826e-05;0;1;Old +18985;Latvia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;93;1;3.543976472386181e-07;2070371;4.49194854448792e-05;1;0;Young +18986;Latvia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;234;1;8.917102091810392e-07;2070371;0.00011302322144195412;1;0;Young +18987;Latvia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;152;1;5.792305632287092e-07;2070371;7.341679341528644e-05;0;1;Old +18988;Latvia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +18989;Latvia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;286;1;1.0898680334434924e-06;2070371;0.0001381394928734995;1;0;Young +18990;Latvia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;1007;1;3.837402481390198e-06;2070371;0.00048638625637627264;1;0;Young +18991;Latvia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;666;1;2.5379444415152654e-06;2070371;0.00032168147641171556;0;1;Old +18992;Latvia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;32;1;1.2194327646920193e-07;2070371;1.5456167034797146e-05;0;1;Old +18993;Latvia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;299;1;1.1394074895091056e-06;2070371;0.00014441856073138583;1;0;Young +18994;Latvia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;1185;1;4.5157119567501345e-06;2070371;0.0005723611855073318;1;0;Young +18995;Latvia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;1031;1;3.9288599387421e-06;2070371;0.0004979783816523706;0;1;Old +18996;Latvia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;131;1;4.992052880457954e-07;2070371;6.327368379870081e-05;0;1;Old +18997;Latvia;M;Plant and machine operators, and assemblers;Education   ;Y15-29;122;1;4.6490874153883237e-07;2070371;5.892663682016412e-05;1;0;Young +18998;Latvia;M;Plant and machine operators, and assemblers;Education   ;Y30-49;598;1;2.278814979018211e-06;2070371;0.00028883712146277166;1;0;Young +18999;Latvia;M;Plant and machine operators, and assemblers;Education   ;Y50-64;632;1;2.4083797102667383e-06;2070371;0.0003052592989372436;0;1;Old +19000;Latvia;M;Plant and machine operators, and assemblers;Education   ;Y65-84;75;1;2.8580455422469204e-07;2070371;3.622539148780581e-05;0;1;Old +19001;Latvia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;135;1;5.144481976044457e-07;2070371;6.520570467805046e-05;1;0;Young +19002;Latvia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;723;1;2.755155902726031e-06;2070371;0.000349212773942448;1;0;Young +19003;Latvia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;773;1;2.9456922722091595e-06;2070371;0.00037336303493431855;0;1;Old +19004;Latvia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;124;1;4.725301963181575e-07;2070371;5.9892647259838936e-05;0;1;Old +19005;Latvia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;55;1;2.0959000643144082e-07;2070371;2.6565287091057593e-05;1;0;Young +19006;Latvia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;131;1;4.992052880457954e-07;2070371;6.327368379870081e-05;1;0;Young +19007;Latvia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;114;1;4.344229224215319e-07;2070371;5.506259506146483e-05;0;1;Old +19008;Latvia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;9;1;3.429654650696304e-08;2070371;4.347046978536697e-06;0;1;Old +19009;Latvia;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;84;1;3.201011007316551e-07;2070371;4.057243846634251e-05;1;0;Young +19010;Latvia;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;217;1;8.269278435567757e-07;2070371;0.00010481213270471814;1;0;Young +19011;Latvia;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;142;1;5.411232893320836e-07;2070371;6.858674121691233e-05;0;1;Old +19012;Latvia;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;10;1;3.8107273896625604e-08;2070371;4.8300521983741075e-06;0;1;Old +19013;Latvia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +19014;Latvia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +19015;Latvia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +19016;Latvia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;1;0;Young +19017;Latvia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;11;1;4.1918001286288165e-08;2070371;5.313057418211519e-06;1;0;Young +19018;Latvia;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;18;1;6.859309301392609e-08;2070371;8.694093957073394e-06;0;1;Old +19019;Latvia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2992;1;1.1401696349870381e-05;2070371;0.001445151617753533;1;0;Young +19020;Latvia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;5173;1;1.9712892786724425e-05;2070371;0.002498586002218926;1;0;Young +19021;Latvia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;2160;1;8.231171161671131e-06;2070371;0.0010432912748488074;0;1;Old +19022;Latvia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;53;1;2.019685516521157e-07;2070371;2.559927665138277e-05;0;1;Old +19023;Latvia;M;Elementary occupations;Mining and quarrying   ;Y15-29;265;1;1.0098427582605786e-06;2070371;0.00012799638325691385;1;0;Young +19024;Latvia;M;Elementary occupations;Mining and quarrying   ;Y30-49;294;1;1.1203538525607928e-06;2070371;0.00014200353463219876;1;0;Young +19025;Latvia;M;Elementary occupations;Mining and quarrying   ;Y50-64;123;1;4.6871946892849497e-07;2070371;5.940964204000153e-05;0;1;Old +19026;Latvia;M;Elementary occupations;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;2070371;1.4490156595122323e-06;0;1;Old +19027;Latvia;M;Elementary occupations;Manufacturing   ;Y15-29;3145;1;1.1984737640488752e-05;2070371;0.0015190514163886568;1;0;Young +19028;Latvia;M;Elementary occupations;Manufacturing   ;Y30-49;3487;1;1.3288006407753348e-05;2070371;0.0016842392015730514;1;0;Young +19029;Latvia;M;Elementary occupations;Manufacturing   ;Y50-64;1691;1;6.44394001591939e-06;2070371;0.0008167618267450617;0;1;Old +19030;Latvia;M;Elementary occupations;Manufacturing   ;Y65-84;94;1;3.582083746282807e-07;2070371;4.540249066471661e-05;0;1;Old +19031;Latvia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;80;1;3.0485819117300483e-07;2070371;3.864041758699286e-05;1;0;Young +19032;Latvia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;147;1;5.601769262803964e-07;2070371;7.100176731609938e-05;1;0;Young +19033;Latvia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;153;1;5.830412906183718e-07;2070371;7.389979863512385e-05;0;1;Old +19034;Latvia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;2070371;3.8640417586992865e-06;0;1;Old +19035;Latvia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;373;1;1.421401316344135e-06;2070371;0.00018016094699935422;1;0;Young +19036;Latvia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;776;1;2.957124454378147e-06;2070371;0.00037481205059383075;1;0;Young +19037;Latvia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;628;1;2.393136800708088e-06;2070371;0.000303327278057894;0;1;Old +19038;Latvia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;35;1;1.3337545863818962e-07;2070371;1.6905182694309376e-05;0;1;Old +19039;Latvia;M;Elementary occupations;Construction   ;Y15-29;2390;1;9.10763846129352e-06;2070371;0.0011543824754114119;1;0;Young +19040;Latvia;M;Elementary occupations;Construction   ;Y30-49;2633;1;1.0033645216981521e-05;2070371;0.0012717527438319027;1;0;Young +19041;Latvia;M;Elementary occupations;Construction   ;Y50-64;970;1;3.6964055679726838e-06;2070371;0.00046851506324228844;0;1;Old +19042;Latvia;M;Elementary occupations;Construction   ;Y65-84;52;1;1.9815782426245315e-07;2070371;2.511627143154536e-05;0;1;Old +19043;Latvia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2791;1;1.0635740144548207e-05;2070371;0.0013480675685662135;1;0;Young +19044;Latvia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2599;1;9.904080485732994e-06;2070371;0.0012553305663574306;1;0;Young +19045;Latvia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1152;1;4.3899579528912695e-06;2070371;0.0005564220132526972;0;1;Old +19046;Latvia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;91;1;3.46776192459293e-07;2070371;4.3953475005204384e-05;0;1;Old +19047;Latvia;M;Elementary occupations;Transportation and storage   ;Y15-29;1223;1;4.660519597557312e-06;2070371;0.0005907153838611534;1;0;Young +19048;Latvia;M;Elementary occupations;Transportation and storage   ;Y30-49;1319;1;5.026349426964917e-06;2070371;0.0006370838849655448;1;0;Young +19049;Latvia;M;Elementary occupations;Transportation and storage   ;Y50-64;664;1;2.5303229867359402e-06;2070371;0.00032071546597204075;0;1;Old +19050;Latvia;M;Elementary occupations;Transportation and storage   ;Y65-84;63;1;2.400758255487413e-07;2070371;3.042932884975688e-05;0;1;Old +19051;Latvia;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;621;1;2.36646170898045e-06;2070371;0.0002999462415190321;1;0;Young +19052;Latvia;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;340;1;1.2956473124852705e-06;2070371;0.00016422177474471967;1;0;Young +19053;Latvia;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;145;1;5.525554715010713e-07;2070371;7.003575687642456e-05;0;1;Old +19054;Latvia;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;12;1;4.5728728675950726e-08;2070371;5.796062638048929e-06;0;1;Old +19055;Latvia;M;Elementary occupations;Information and communication   ;Y15-29;44;1;1.6767200514515266e-07;2070371;2.1252229672846075e-05;1;0;Young +19056;Latvia;M;Elementary occupations;Information and communication   ;Y30-49;48;1;1.829149147038029e-07;2070371;2.3184250552195717e-05;1;0;Young +19057;Latvia;M;Elementary occupations;Information and communication   ;Y50-64;25;1;9.526818474156401e-08;2070371;1.207513049593527e-05;0;1;Old +19058;Latvia;M;Elementary occupations;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;2070371;2.4150260991870538e-06;0;1;Old +19059;Latvia;M;Elementary occupations;Financial and insurance activities   ;Y15-29;30;1;1.1432182168987682e-07;2070371;1.4490156595122323e-05;1;0;Young +19060;Latvia;M;Elementary occupations;Financial and insurance activities   ;Y30-49;27;1;1.0288963952088914e-07;2070371;1.3041140935610092e-05;1;0;Young +19061;Latvia;M;Elementary occupations;Financial and insurance activities   ;Y50-64;20;1;7.621454779325121e-08;2070371;9.660104396748215e-06;0;1;Old +19062;Latvia;M;Elementary occupations;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;2070371;1.9320208793496433e-06;0;1;Old +19063;Latvia;M;Elementary occupations;Real estate activities   ;Y15-29;449;1;1.7110165979584897e-06;2070371;0.00021686934370699745;1;0;Young +19064;Latvia;M;Elementary occupations;Real estate activities   ;Y30-49;1107;1;4.218475220356454e-06;2070371;0.0005346867783600137;1;0;Young +19065;Latvia;M;Elementary occupations;Real estate activities   ;Y50-64;1091;1;4.157503582121853e-06;2070371;0.0005269586948426152;0;1;Old +19066;Latvia;M;Elementary occupations;Real estate activities   ;Y65-84;227;1;8.650351174534013e-07;2070371;0.00010964218490309225;0;1;Old +19067;Latvia;M;Elementary occupations;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +19068;Latvia;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;147;1;5.601769262803964e-07;2070371;7.100176731609938e-05;1;0;Young +19069;Latvia;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;146;1;5.563661988907339e-07;2070371;7.051876209626197e-05;1;0;Young +19070;Latvia;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;90;1;3.4296546506963047e-07;2070371;4.347046978536697e-05;0;1;Old +19071;Latvia;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;0;1;Old +19072;Latvia;M;Elementary occupations;Administrative and support service activities   ;Y15-29;975;1;3.7154592049209964e-06;2070371;0.0004709300893414755;1;0;Young +19073;Latvia;M;Elementary occupations;Administrative and support service activities   ;Y30-49;2150;1;8.193063887774505e-06;2070371;0.001038461222650433;1;0;Young +19074;Latvia;M;Elementary occupations;Administrative and support service activities   ;Y50-64;1694;1;6.455372198088378e-06;2070371;0.0008182108424045738;0;1;Old +19075;Latvia;M;Elementary occupations;Administrative and support service activities   ;Y65-84;48;1;1.829149147038029e-07;2070371;2.3184250552195717e-05;0;1;Old +19076;Latvia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;166;1;6.325807466839851e-07;2070371;8.017886649301019e-05;1;0;Young +19077;Latvia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;331;1;1.2613507659783075e-06;2070371;0.00015987472776618296;1;0;Young +19078;Latvia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;266;1;1.013653485650241e-06;2070371;0.00012847938847675126;0;1;Old +19079;Latvia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;35;1;1.3337545863818962e-07;2070371;1.6905182694309376e-05;0;1;Old +19080;Latvia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +19081;Latvia;M;Elementary occupations;Education   ;Y15-29;342;1;1.3032687672645957e-06;2070371;0.0001651877851843945;1;0;Young +19082;Latvia;M;Elementary occupations;Education   ;Y30-49;725;1;2.7627773575053563e-06;2070371;0.0003501787843821228;1;0;Young +19083;Latvia;M;Elementary occupations;Education   ;Y50-64;802;1;3.0562033665093736e-06;2070371;0.00038737018630960343;0;1;Old +19084;Latvia;M;Elementary occupations;Education   ;Y65-84;191;1;7.27848931425549e-07;2070371;9.225399698894546e-05;0;1;Old +19085;Latvia;M;Elementary occupations;Human health and social work activities   ;Y15-29;199;1;7.583347505428495e-07;2070371;9.611803874764474e-05;1;0;Young +19086;Latvia;M;Elementary occupations;Human health and social work activities   ;Y30-49;353;1;1.3451867685508839e-06;2070371;0.000170500842602606;1;0;Young +19087;Latvia;M;Elementary occupations;Human health and social work activities   ;Y50-64;313;1;1.1927576729643815e-06;2070371;0.00015118063380910958;0;1;Old +19088;Latvia;M;Elementary occupations;Human health and social work activities   ;Y65-84;52;1;1.9815782426245315e-07;2070371;2.511627143154536e-05;0;1;Old +19089;Latvia;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;212;1;8.078742066084628e-07;2070371;0.00010239710660553109;1;0;Young +19090;Latvia;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;220;1;8.383600257257633e-07;2070371;0.00010626114836423037;1;0;Young +19091;Latvia;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;154;1;5.868520180080343e-07;2070371;7.438280385496125e-05;0;1;Old +19092;Latvia;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;44;1;1.6767200514515266e-07;2070371;2.1252229672846075e-05;0;1;Old +19093;Latvia;M;Elementary occupations;Other service activities   ;Y15-29;185;1;7.049845670875737e-07;2070371;8.9355965669921e-05;1;0;Young +19094;Latvia;M;Elementary occupations;Other service activities   ;Y30-49;298;1;1.135596762119443e-06;2070371;0.00014393555551154842;1;0;Young +19095;Latvia;M;Elementary occupations;Other service activities   ;Y50-64;166;1;6.325807466839851e-07;2070371;8.017886649301019e-05;0;1;Old +19096;Latvia;M;Elementary occupations;Other service activities   ;Y65-84;17;1;6.478236562426352e-08;2070371;8.211088737235984e-06;0;1;Old +19097;Latvia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;21;1;8.002527518291377e-08;2070371;1.0143109616585627e-05;1;0;Young +19098;Latvia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;25;1;9.526818474156401e-08;2070371;1.207513049593527e-05;1;0;Young +19099;Latvia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;19;1;7.240382040358865e-08;2070371;9.177099176910805e-06;0;1;Old +19100;Latvia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;2070371;9.660104396748216e-07;1;0;Young +19101;Latvia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;7;1;2.6675091727637924e-08;2070371;3.3810365388618756e-06;1;0;Young +19102;Latvia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +19103;Latvia;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;2070371;4.830052198374108e-07;0;1;Old +19104;Malta;F;Not applicable;Not applicable  ;Y15-29;17951;1;6.840636737183263e-05;417432;0.043003411334061596;1;0;Young +19105;Malta;F;Not applicable;Not applicable  ;Y30-49;22014;1;8.38893527560316e-05;417432;0.05273673316851607;1;0;Young +19106;Malta;F;Not applicable;Not applicable  ;Y50-64;33958;1;0.00012940468069816123;417432;0.08134977673010214;0;1;Old +19107;Malta;F;Not applicable;Not applicable  ;Y65-84;33683;1;0.00012835673066600403;417432;0.08069098679545411;0;1;Old +19108;Malta;F;Not applicable;Not applicable  ;Y_GE85;4278;1;1.6302291772976433e-05;417432;0.010248375783361123;0;1;Old +19109;Malta;F;Not applicable;Not applicable  ;Y_LT15;30055;1;0.00011453141169630826;417432;0.07199975085762471;0;1;Old +19110;Malta;F;Armed forces occupations;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19111;Malta;F;Armed forces occupations;Administrative and support service activities   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19112;Malta;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;26;1;9.907891213122657e-08;417432;6.22855938212691e-05;1;0;Young +19113;Malta;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;1;0;Young +19114;Malta;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19115;Malta;F;Managers;Agriculture, forestry and fishing   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19116;Malta;F;Managers;Agriculture, forestry and fishing   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19117;Malta;F;Managers;Agriculture, forestry and fishing   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19118;Malta;F;Managers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19119;Malta;F;Managers;Mining and quarrying   ;Y30-49;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19120;Malta;F;Managers;Manufacturing   ;Y15-29;40;1;1.5242909558650242e-07;417432;9.582399049426015e-05;1;0;Young +19121;Malta;F;Managers;Manufacturing   ;Y30-49;157;1;5.98284200177022e-07;417432;0.00037610916268997105;1;0;Young +19122;Malta;F;Managers;Manufacturing   ;Y50-64;51;1;1.943470968727906e-07;417432;0.00012217558788018168;0;1;Old +19123;Malta;F;Managers;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19124;Malta;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19125;Malta;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19126;Malta;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19127;Malta;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19128;Malta;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +19129;Malta;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19130;Malta;F;Managers;Construction   ;Y15-29;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;1;0;Young +19131;Malta;F;Managers;Construction   ;Y30-49;37;1;1.4099691341751475e-07;417432;8.863719120719064e-05;1;0;Young +19132;Malta;F;Managers;Construction   ;Y50-64;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19133;Malta;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;259;1;9.869783939226032e-07;417432;0.0006204603384503345;1;0;Young +19134;Malta;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;655;1;2.4960264402289772e-06;417432;0.00156911784434351;1;0;Young +19135;Malta;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;284;1;1.0822465786641672e-06;417432;0.0006803503325092471;0;1;Old +19136;Malta;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;0;1;Old +19137;Malta;F;Managers;Transportation and storage   ;Y15-29;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;1;0;Young +19138;Malta;F;Managers;Transportation and storage   ;Y30-49;83;1;3.1629037334199253e-07;417432;0.0001988347802755898;1;0;Young +19139;Malta;F;Managers;Transportation and storage   ;Y50-64;22;1;8.383600257257633e-08;417432;5.270319477184308e-05;0;1;Old +19140;Malta;F;Managers;Accommodation and food service activities   ;Y15-29;115;1;4.382336498111945e-07;417432;0.0002754939726709979;1;0;Young +19141;Malta;F;Managers;Accommodation and food service activities   ;Y30-49;293;1;1.1165431251711302e-06;417432;0.0007019107303704556;1;0;Young +19142;Malta;F;Managers;Accommodation and food service activities   ;Y50-64;85;1;3.239118281213176e-07;417432;0.0002036259798003028;0;1;Old +19143;Malta;F;Managers;Accommodation and food service activities   ;Y65-84;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +19144;Malta;F;Managers;Information and communication   ;Y15-29;65;1;2.4769728032806646e-07;417432;0.00015571398455317275;1;0;Young +19145;Malta;F;Managers;Information and communication   ;Y30-49;160;1;6.097163823460097e-07;417432;0.0003832959619770406;1;0;Young +19146;Malta;F;Managers;Information and communication   ;Y50-64;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;0;1;Old +19147;Malta;F;Managers;Financial and insurance activities   ;Y15-29;82;1;3.1247964595233e-07;417432;0.0001964391805132333;1;0;Young +19148;Malta;F;Managers;Financial and insurance activities   ;Y30-49;440;1;1.6767200514515266e-06;417432;0.0010540638954368616;1;0;Young +19149;Malta;F;Managers;Financial and insurance activities   ;Y50-64;76;1;2.896152816143546e-07;417432;0.00018206558193909427;0;1;Old +19150;Malta;F;Managers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19151;Malta;F;Managers;Real estate activities   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19152;Malta;F;Managers;Real estate activities   ;Y30-49;23;1;8.764672996223889e-08;417432;5.509879453419958e-05;1;0;Young +19153;Malta;F;Managers;Real estate activities   ;Y50-64;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19154;Malta;F;Managers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19155;Malta;F;Managers;Professional, scientific and technical activities   ;Y15-29;62;1;2.3626509815907876e-07;417432;0.0001485271852661032;1;0;Young +19156;Malta;F;Managers;Professional, scientific and technical activities   ;Y30-49;218;1;8.307385709464382e-07;417432;0.0005222407481937178;1;0;Young +19157;Malta;F;Managers;Professional, scientific and technical activities   ;Y50-64;53;1;2.019685516521157e-07;417432;0.00012696678740489468;0;1;Old +19158;Malta;F;Managers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19159;Malta;F;Managers;Administrative and support service activities   ;Y15-29;44;1;1.6767200514515266e-07;417432;0.00010540638954368615;1;0;Young +19160;Malta;F;Managers;Administrative and support service activities   ;Y30-49;178;1;6.783094753599357e-07;417432;0.00042641675769945764;1;0;Young +19161;Malta;F;Managers;Administrative and support service activities   ;Y50-64;53;1;2.019685516521157e-07;417432;0.00012696678740489468;0;1;Old +19162;Malta;F;Managers;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19163;Malta;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;76;1;2.896152816143546e-07;417432;0.00018206558193909427;1;0;Young +19164;Malta;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;214;1;8.15495661387788e-07;417432;0.0005126583491442917;1;0;Young +19165;Malta;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;55;1;2.0959000643144082e-07;417432;0.0001317579869296077;0;1;Old +19166;Malta;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19167;Malta;F;Managers;Education   ;Y15-29;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;1;0;Young +19168;Malta;F;Managers;Education   ;Y30-49;308;1;1.1737040360160685e-06;417432;0.0007378447268058031;1;0;Young +19169;Malta;F;Managers;Education   ;Y50-64;196;1;7.469025683738619e-07;417432;0.0004695375534218747;0;1;Old +19170;Malta;F;Managers;Education   ;Y65-84;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;0;1;Old +19171;Malta;F;Managers;Human health and social work activities   ;Y15-29;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;1;0;Young +19172;Malta;F;Managers;Human health and social work activities   ;Y30-49;99;1;3.772620115765935e-07;417432;0.00023716437647329386;1;0;Young +19173;Malta;F;Managers;Human health and social work activities   ;Y50-64;56;1;2.134007338211034e-07;417432;0.0001341535866919642;0;1;Old +19174;Malta;F;Managers;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19175;Malta;F;Managers;Arts, entertainment and recreation   ;Y15-29;46;1;1.7529345992447778e-07;417432;0.00011019758906839916;1;0;Young +19176;Malta;F;Managers;Arts, entertainment and recreation   ;Y30-49;115;1;4.382336498111945e-07;417432;0.0002754939726709979;1;0;Young +19177;Malta;F;Managers;Arts, entertainment and recreation   ;Y50-64;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;0;1;Old +19178;Malta;F;Managers;Other service activities   ;Y15-29;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +19179;Malta;F;Managers;Other service activities   ;Y30-49;26;1;9.907891213122657e-08;417432;6.22855938212691e-05;1;0;Young +19180;Malta;F;Managers;Other service activities   ;Y50-64;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;0;1;Old +19181;Malta;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19182;Malta;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;1;0;Young +19183;Malta;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19184;Malta;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19185;Malta;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19186;Malta;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19187;Malta;F;Professionals;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19188;Malta;F;Professionals;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19189;Malta;F;Professionals;Manufacturing   ;Y15-29;185;1;7.049845670875737e-07;417432;0.00044318595603595317;1;0;Young +19190;Malta;F;Professionals;Manufacturing   ;Y30-49;126;1;4.801516510974826e-07;417432;0.00030184557005691944;1;0;Young +19191;Malta;F;Professionals;Manufacturing   ;Y50-64;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19192;Malta;F;Professionals;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19193;Malta;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;1;0;Young +19194;Malta;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;1;0;Young +19195;Malta;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19196;Malta;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;1;0;Young +19197;Malta;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +19198;Malta;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19199;Malta;F;Professionals;Construction   ;Y15-29;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;1;0;Young +19200;Malta;F;Professionals;Construction   ;Y30-49;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;1;0;Young +19201;Malta;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;204;1;7.773883874911624e-07;417432;0.0004887023515207267;1;0;Young +19202;Malta;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;281;1;1.0708143964951796e-06;417432;0.0006731635332221775;1;0;Young +19203;Malta;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;61;1;2.3245437076941619e-07;417432;0.00014613158550374672;0;1;Old +19204;Malta;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19205;Malta;F;Professionals;Transportation and storage   ;Y15-29;34;1;1.2956473124852705e-07;417432;8.145039192012113e-05;1;0;Young +19206;Malta;F;Professionals;Transportation and storage   ;Y30-49;55;1;2.0959000643144082e-07;417432;0.0001317579869296077;1;0;Young +19207;Malta;F;Professionals;Transportation and storage   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19208;Malta;F;Professionals;Accommodation and food service activities   ;Y15-29;44;1;1.6767200514515266e-07;417432;0.00010540638954368615;1;0;Young +19209;Malta;F;Professionals;Accommodation and food service activities   ;Y30-49;38;1;1.448076408071773e-07;417432;9.103279096954714e-05;1;0;Young +19210;Malta;F;Professionals;Accommodation and food service activities   ;Y50-64;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19211;Malta;F;Professionals;Information and communication   ;Y15-29;290;1;1.1051109430021426e-06;417432;0.000694723931083386;1;0;Young +19212;Malta;F;Professionals;Information and communication   ;Y30-49;205;1;7.811991148808249e-07;417432;0.0004910979512830832;1;0;Young +19213;Malta;F;Professionals;Information and communication   ;Y50-64;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;0;1;Old +19214;Malta;F;Professionals;Information and communication   ;Y65-84;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19215;Malta;F;Professionals;Financial and insurance activities   ;Y15-29;188;1;7.164167492565614e-07;417432;0.00045037275532302265;1;0;Young +19216;Malta;F;Professionals;Financial and insurance activities   ;Y30-49;201;1;7.659562053221747e-07;417432;0.0004815155522336572;1;0;Young +19217;Malta;F;Professionals;Financial and insurance activities   ;Y50-64;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;0;1;Old +19218;Malta;F;Professionals;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;1;0;Young +19219;Malta;F;Professionals;Real estate activities   ;Y30-49;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19220;Malta;F;Professionals;Real estate activities   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19221;Malta;F;Professionals;Professional, scientific and technical activities   ;Y15-29;822;1;3.132417914302625e-06;417432;0.001969183004657046;1;0;Young +19222;Malta;F;Professionals;Professional, scientific and technical activities   ;Y30-49;610;1;2.324543707694162e-06;417432;0.0014613158550374672;1;0;Young +19223;Malta;F;Professionals;Professional, scientific and technical activities   ;Y50-64;65;1;2.4769728032806646e-07;417432;0.00015571398455317275;0;1;Old +19224;Malta;F;Professionals;Professional, scientific and technical activities   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19225;Malta;F;Professionals;Administrative and support service activities   ;Y15-29;87;1;3.3153328290064277e-07;417432;0.00020841717932501582;1;0;Young +19226;Malta;F;Professionals;Administrative and support service activities   ;Y30-49;94;1;3.582083746282807e-07;417432;0.00022518637766151133;1;0;Young +19227;Malta;F;Professionals;Administrative and support service activities   ;Y50-64;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;0;1;Old +19228;Malta;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;314;1;1.196568400354044e-06;417432;0.0007522183253799421;1;0;Young +19229;Malta;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;600;1;2.2864364337975363e-06;417432;0.001437359857413902;1;0;Young +19230;Malta;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;111;1;4.2299074025254424e-07;417432;0.0002659115736215719;0;1;Old +19231;Malta;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19232;Malta;F;Professionals;Education   ;Y15-29;1756;1;6.691637296247457e-06;417432;0.00420667318269802;1;0;Young +19233;Malta;F;Professionals;Education   ;Y30-49;3153;1;1.2015223459606053e-05;417432;0.007553326050710056;1;0;Young +19234;Malta;F;Professionals;Education   ;Y50-64;1166;1;4.443308136346546e-06;417432;0.0027932693229076834;0;1;Old +19235;Malta;F;Professionals;Education   ;Y65-84;79;1;3.010474637833423e-07;417432;0.00018925238122616378;0;1;Old +19236;Malta;F;Professionals;Education   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19237;Malta;F;Professionals;Human health and social work activities   ;Y15-29;1027;1;3.9136170291834495e-06;417432;0.002460280955940129;1;0;Young +19238;Malta;F;Professionals;Human health and social work activities   ;Y30-49;1181;1;4.500469047191484e-06;417432;0.0028292033193430305;1;0;Young +19239;Malta;F;Professionals;Human health and social work activities   ;Y50-64;252;1;9.603033021949652e-07;417432;0.0006036911401138389;0;1;Old +19240;Malta;F;Professionals;Human health and social work activities   ;Y65-84;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19241;Malta;F;Professionals;Arts, entertainment and recreation   ;Y15-29;108;1;4.1155855808355654e-07;417432;0.0002587247743345024;1;0;Young +19242;Malta;F;Professionals;Arts, entertainment and recreation   ;Y30-49;148;1;5.63987653670059e-07;417432;0.00035454876482876255;1;0;Young +19243;Malta;F;Professionals;Arts, entertainment and recreation   ;Y50-64;28;1;1.067003669105517e-07;417432;6.70767933459821e-05;0;1;Old +19244;Malta;F;Professionals;Arts, entertainment and recreation   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19245;Malta;F;Professionals;Other service activities   ;Y15-29;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;1;0;Young +19246;Malta;F;Professionals;Other service activities   ;Y30-49;57;1;2.1721146121076594e-07;417432;0.0001365491864543207;1;0;Young +19247;Malta;F;Professionals;Other service activities   ;Y50-64;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;0;1;Old +19248;Malta;F;Professionals;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19249;Malta;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19250;Malta;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;1;0;Young +19251;Malta;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;1;0;Young +19252;Malta;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19253;Malta;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19254;Malta;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19255;Malta;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;1;0;Young +19256;Malta;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19257;Malta;F;Technicians and associate professionals;Manufacturing   ;Y15-29;215;1;8.193063887774505e-07;417432;0.0005150539489066483;1;0;Young +19258;Malta;F;Technicians and associate professionals;Manufacturing   ;Y30-49;248;1;9.45060392636315e-07;417432;0.0005941087410644128;1;0;Young +19259;Malta;F;Technicians and associate professionals;Manufacturing   ;Y50-64;57;1;2.1721146121076594e-07;417432;0.0001365491864543207;0;1;Old +19260;Malta;F;Technicians and associate professionals;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19261;Malta;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19262;Malta;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;45;1;1.7148273253481523e-07;417432;0.00010780198930604267;1;0;Young +19263;Malta;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19264;Malta;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;1;0;Young +19265;Malta;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;26;1;9.907891213122657e-08;417432;6.22855938212691e-05;1;0;Young +19266;Malta;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19267;Malta;F;Technicians and associate professionals;Construction   ;Y15-29;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;1;0;Young +19268;Malta;F;Technicians and associate professionals;Construction   ;Y30-49;36;1;1.3718618602785217e-07;417432;8.624159144483412e-05;1;0;Young +19269;Malta;F;Technicians and associate professionals;Construction   ;Y50-64;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19270;Malta;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;167;1;6.363914740736477e-07;417432;0.0004000651603135361;1;0;Young +19271;Malta;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;260;1;9.907891213122658e-07;417432;0.000622855938212691;1;0;Young +19272;Malta;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;56;1;2.134007338211034e-07;417432;0.0001341535866919642;0;1;Old +19273;Malta;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19274;Malta;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;54;1;2.0577927904177827e-07;417432;0.0001293623871672512;1;0;Young +19275;Malta;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;162;1;6.173378371253348e-07;417432;0.00038808716150175355;1;0;Young +19276;Malta;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;30;1;1.1432182168987682e-07;417432;7.18679928706951e-05;0;1;Old +19277;Malta;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;250;1;9.526818474156401e-07;417432;0.0005988999405891259;1;0;Young +19278;Malta;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;202;1;7.697669327118372e-07;417432;0.0004839111519960137;1;0;Young +19279;Malta;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;76;1;2.896152816143546e-07;417432;0.00018206558193909427;0;1;Old +19280;Malta;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19281;Malta;F;Technicians and associate professionals;Information and communication   ;Y15-29;122;1;4.6490874153883237e-07;417432;0.00029226317100749345;1;0;Young +19282;Malta;F;Technicians and associate professionals;Information and communication   ;Y30-49;122;1;4.6490874153883237e-07;417432;0.00029226317100749345;1;0;Young +19283;Malta;F;Technicians and associate professionals;Information and communication   ;Y50-64;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;0;1;Old +19284;Malta;F;Technicians and associate professionals;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19285;Malta;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;305;1;1.162271853847081e-06;417432;0.0007306579275187336;1;0;Young +19286;Malta;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;609;1;2.3207329803044993e-06;417432;0.0014589202552751108;1;0;Young +19287;Malta;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;88;1;3.353440102903053e-07;417432;0.0002108127790873723;0;1;Old +19288;Malta;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19289;Malta;F;Technicians and associate professionals;Real estate activities   ;Y15-29;47;1;1.7910418731414036e-07;417432;0.00011259318883075566;1;0;Young +19290;Malta;F;Technicians and associate professionals;Real estate activities   ;Y30-49;78;1;2.9723673639367974e-07;417432;0.00018685678146380727;1;0;Young +19291;Malta;F;Technicians and associate professionals;Real estate activities   ;Y50-64;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;0;1;Old +19292;Malta;F;Technicians and associate professionals;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19293;Malta;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;298;1;1.135596762119443e-06;417432;0.0007138887291822381;1;0;Young +19294;Malta;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;242;1;9.221960282983396e-07;417432;0.0005797351424902739;1;0;Young +19295;Malta;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;80;1;3.0485819117300483e-07;417432;0.0001916479809885203;0;1;Old +19296;Malta;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19297;Malta;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;103;1;3.9250492113524375e-07;417432;0.0002467467755227199;1;0;Young +19298;Malta;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;155;1;5.906627453976969e-07;417432;0.0003713179631652581;1;0;Young +19299;Malta;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;31;1;1.1813254907953938e-07;417432;7.42635926330516e-05;0;1;Old +19300;Malta;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;125;1;4.7634092370782007e-07;417432;0.00029944997029456293;1;0;Young +19301;Malta;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;658;1;2.507458622397965e-06;417432;0.0015763046436305793;1;0;Young +19302;Malta;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;144;1;5.487447441114087e-07;417432;0.0003449663657793365;0;1;Old +19303;Malta;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19304;Malta;F;Technicians and associate professionals;Education   ;Y15-29;65;1;2.4769728032806646e-07;417432;0.00015571398455317275;1;0;Young +19305;Malta;F;Technicians and associate professionals;Education   ;Y30-49;175;1;6.668772931909481e-07;417432;0.0004192299584123881;1;0;Young +19306;Malta;F;Technicians and associate professionals;Education   ;Y50-64;59;1;2.2483291599009106e-07;417432;0.0001413403859790337;0;1;Old +19307;Malta;F;Technicians and associate professionals;Education   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19308;Malta;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;347;1;1.3223224042129085e-06;417432;0.0008312731175377068;1;0;Young +19309;Malta;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;906;1;3.45251901503428e-06;417432;0.0021704133846949924;1;0;Young +19310;Malta;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;585;1;2.2292755229525977e-06;417432;0.0014014258609785545;0;1;Old +19311;Malta;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;0;1;Old +19312;Malta;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;80;1;3.0485819117300483e-07;417432;0.0001916479809885203;1;0;Young +19313;Malta;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;95;1;3.6201910201794326e-07;417432;0.00022758197742386784;1;0;Young +19314;Malta;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;0;1;Old +19315;Malta;F;Technicians and associate professionals;Other service activities   ;Y15-29;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;1;0;Young +19316;Malta;F;Technicians and associate professionals;Other service activities   ;Y30-49;53;1;2.019685516521157e-07;417432;0.00012696678740489468;1;0;Young +19317;Malta;F;Technicians and associate professionals;Other service activities   ;Y50-64;34;1;1.2956473124852705e-07;417432;8.145039192012113e-05;0;1;Old +19318;Malta;F;Technicians and associate professionals;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19319;Malta;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19320;Malta;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19321;Malta;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19322;Malta;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19323;Malta;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19324;Malta;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19325;Malta;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;1;0;Young +19326;Malta;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19327;Malta;F;Clerical support workers;Mining and quarrying   ;Y15-29;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +19328;Malta;F;Clerical support workers;Mining and quarrying   ;Y30-49;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19329;Malta;F;Clerical support workers;Mining and quarrying   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19330;Malta;F;Clerical support workers;Manufacturing   ;Y15-29;302;1;1.1508396716780934e-06;417432;0.0007234711282316641;1;0;Young +19331;Malta;F;Clerical support workers;Manufacturing   ;Y30-49;362;1;1.3794833150578469e-06;417432;0.0008672071139730542;1;0;Young +19332;Malta;F;Clerical support workers;Manufacturing   ;Y50-64;89;1;3.3915473767996787e-07;417432;0.00021320837884972882;0;1;Old +19333;Malta;F;Clerical support workers;Manufacturing   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19334;Malta;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +19335;Malta;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;33;1;1.257540038588645e-07;417432;7.905479215776462e-05;1;0;Young +19336;Malta;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19337;Malta;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;43;1;1.638612777554901e-07;417432;0.00010301078978132965;1;0;Young +19338;Malta;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;71;1;2.705616446660418e-07;417432;0.00017008758312731176;1;0;Young +19339;Malta;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;0;1;Old +19340;Malta;F;Clerical support workers;Construction   ;Y15-29;96;1;3.658298294076058e-07;417432;0.00022997757718622435;1;0;Young +19341;Malta;F;Clerical support workers;Construction   ;Y30-49;94;1;3.582083746282807e-07;417432;0.00022518637766151133;1;0;Young +19342;Malta;F;Clerical support workers;Construction   ;Y50-64;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;0;1;Old +19343;Malta;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;632;1;2.4083797102667383e-06;417432;0.0015140190498093102;1;0;Young +19344;Malta;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;643;1;2.4502977115530265e-06;417432;0.0015403706471952318;1;0;Young +19345;Malta;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;182;1;6.93552384918586e-07;417432;0.00043599915674888363;0;1;Old +19346;Malta;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19347;Malta;F;Clerical support workers;Transportation and storage   ;Y15-29;347;1;1.3223224042129085e-06;417432;0.0008312731175377068;1;0;Young +19348;Malta;F;Clerical support workers;Transportation and storage   ;Y30-49;435;1;1.6576664145032138e-06;417432;0.001042085896625079;1;0;Young +19349;Malta;F;Clerical support workers;Transportation and storage   ;Y50-64;92;1;3.5058691984895557e-07;417432;0.00022039517813679833;0;1;Old +19350;Malta;F;Clerical support workers;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19351;Malta;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;358;1;1.3642404054991967e-06;417432;0.0008576247149236283;1;0;Young +19352;Malta;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;256;1;9.755462117536154e-07;417432;0.0006132735391632649;1;0;Young +19353;Malta;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;71;1;2.705616446660418e-07;417432;0.00017008758312731176;0;1;Old +19354;Malta;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19355;Malta;F;Clerical support workers;Information and communication   ;Y15-29;274;1;1.0441393047675416e-06;417432;0.0006563943348856819;1;0;Young +19356;Malta;F;Clerical support workers;Information and communication   ;Y30-49;192;1;7.316596588152116e-07;417432;0.0004599551543724487;1;0;Young +19357;Malta;F;Clerical support workers;Information and communication   ;Y50-64;47;1;1.7910418731414036e-07;417432;0.00011259318883075566;0;1;Old +19358;Malta;F;Clerical support workers;Financial and insurance activities   ;Y15-29;759;1;2.8923420887538835e-06;417432;0.0018182602196285863;1;0;Young +19359;Malta;F;Clerical support workers;Financial and insurance activities   ;Y30-49;986;1;3.7573772062072845e-06;417432;0.0023620613656835125;1;0;Young +19360;Malta;F;Clerical support workers;Financial and insurance activities   ;Y50-64;126;1;4.801516510974826e-07;417432;0.00030184557005691944;0;1;Old +19361;Malta;F;Clerical support workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19362;Malta;F;Clerical support workers;Real estate activities   ;Y15-29;50;1;1.9053636948312803e-07;417432;0.00011977998811782519;1;0;Young +19363;Malta;F;Clerical support workers;Real estate activities   ;Y30-49;38;1;1.448076408071773e-07;417432;9.103279096954714e-05;1;0;Young +19364;Malta;F;Clerical support workers;Real estate activities   ;Y50-64;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19365;Malta;F;Clerical support workers;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19366;Malta;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;434;1;1.6538556871135514e-06;417432;0.0010396902968627226;1;0;Young +19367;Malta;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;311;1;1.1851362181850563e-06;417432;0.0007450315260928727;1;0;Young +19368;Malta;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;128;1;4.877731058768077e-07;417432;0.00030663676958163247;0;1;Old +19369;Malta;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19370;Malta;F;Clerical support workers;Administrative and support service activities   ;Y15-29;440;1;1.6767200514515266e-06;417432;0.0010540638954368616;1;0;Young +19371;Malta;F;Clerical support workers;Administrative and support service activities   ;Y30-49;376;1;1.4328334985131229e-06;417432;0.0009007455106460453;1;0;Young +19372;Malta;F;Clerical support workers;Administrative and support service activities   ;Y50-64;122;1;4.6490874153883237e-07;417432;0.00029226317100749345;0;1;Old +19373;Malta;F;Clerical support workers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19374;Malta;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;368;1;1.4023476793958223e-06;417432;0.0008815807125471933;1;0;Young +19375;Malta;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;944;1;3.597326655841457e-06;417432;0.002261446175664539;1;0;Young +19376;Malta;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;235;1;8.955209365707018e-07;417432;0.0005629659441537783;0;1;Old +19377;Malta;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19378;Malta;F;Clerical support workers;Education   ;Y15-29;183;1;6.973631123082485e-07;417432;0.00043839475651124014;1;0;Young +19379;Malta;F;Clerical support workers;Education   ;Y30-49;359;1;1.3680511328888593e-06;417432;0.0008600203146859848;1;0;Young +19380;Malta;F;Clerical support workers;Education   ;Y50-64;169;1;6.440129288529728e-07;417432;0.0004048563598382491;0;1;Old +19381;Malta;F;Clerical support workers;Education   ;Y65-84;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +19382;Malta;F;Clerical support workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19383;Malta;F;Clerical support workers;Human health and social work activities   ;Y15-29;134;1;5.106374702147831e-07;417432;0.0003210103681557715;1;0;Young +19384;Malta;F;Clerical support workers;Human health and social work activities   ;Y30-49;219;1;8.345492983361008e-07;417432;0.0005246363479560743;1;0;Young +19385;Malta;F;Clerical support workers;Human health and social work activities   ;Y50-64;103;1;3.9250492113524375e-07;417432;0.0002467467755227199;0;1;Old +19386;Malta;F;Clerical support workers;Human health and social work activities   ;Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19387;Malta;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;279;1;1.0631929417158544e-06;417432;0.0006683723336974645;1;0;Young +19388;Malta;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;198;1;7.54524023153187e-07;417432;0.0004743287529465877;1;0;Young +19389;Malta;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;84;1;3.201011007316551e-07;417432;0.0002012303800379463;0;1;Old +19390;Malta;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19391;Malta;F;Clerical support workers;Other service activities   ;Y15-29;31;1;1.1813254907953938e-07;417432;7.42635926330516e-05;1;0;Young +19392;Malta;F;Clerical support workers;Other service activities   ;Y30-49;58;1;2.2102218860042852e-07;417432;0.00013894478621667721;1;0;Young +19393;Malta;F;Clerical support workers;Other service activities   ;Y50-64;46;1;1.7529345992447778e-07;417432;0.00011019758906839916;0;1;Old +19394;Malta;F;Clerical support workers;Other service activities   ;Y65-84;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19395;Malta;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19396;Malta;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +19397;Malta;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;0;1;Old +19398;Malta;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19399;Malta;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19400;Malta;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19401;Malta;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19402;Malta;F;Service and sales workers;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19403;Malta;F;Service and sales workers;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19404;Malta;F;Service and sales workers;Manufacturing   ;Y15-29;118;1;4.496658319801821e-07;417432;0.0002826807719580674;1;0;Young +19405;Malta;F;Service and sales workers;Manufacturing   ;Y30-49;205;1;7.811991148808249e-07;417432;0.0004910979512830832;1;0;Young +19406;Malta;F;Service and sales workers;Manufacturing   ;Y50-64;93;1;3.543976472386181e-07;417432;0.00022279077789915484;0;1;Old +19407;Malta;F;Service and sales workers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19408;Malta;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19409;Malta;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19410;Malta;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;1;0;Young +19411;Malta;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19412;Malta;F;Service and sales workers;Construction   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19413;Malta;F;Service and sales workers;Construction   ;Y30-49;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19414;Malta;F;Service and sales workers;Construction   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19415;Malta;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2851;1;1.086438378792796e-05;417432;0.006829854922478392;1;0;Young +19416;Malta;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2804;1;1.0685279600613819e-05;417432;0.006717261733647636;1;0;Young +19417;Malta;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1121;1;4.2718254038117306e-06;417432;0.0026854673336016406;0;1;Old +19418;Malta;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;53;1;2.019685516521157e-07;417432;0.00012696678740489468;0;1;Old +19419;Malta;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19420;Malta;F;Service and sales workers;Transportation and storage   ;Y15-29;102;1;3.886941937455812e-07;417432;0.00024435117576036337;1;0;Young +19421;Malta;F;Service and sales workers;Transportation and storage   ;Y30-49;209;1;7.964420244394752e-07;417432;0.0005006803503325093;1;0;Young +19422;Malta;F;Service and sales workers;Transportation and storage   ;Y50-64;56;1;2.134007338211034e-07;417432;0.0001341535866919642;0;1;Old +19423;Malta;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;1318;1;5.0225386995752545e-06;417432;0.003157400486785872;1;0;Young +19424;Malta;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;850;1;3.2391182812131763e-06;417432;0.002036259798003028;1;0;Young +19425;Malta;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;363;1;1.3832940424475095e-06;417432;0.0008696027137354108;0;1;Old +19426;Malta;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +19427;Malta;F;Service and sales workers;Information and communication   ;Y15-29;109;1;4.153692854732191e-07;417432;0.0002611203740968589;1;0;Young +19428;Malta;F;Service and sales workers;Information and communication   ;Y30-49;78;1;2.9723673639367974e-07;417432;0.00018685678146380727;1;0;Young +19429;Malta;F;Service and sales workers;Information and communication   ;Y50-64;22;1;8.383600257257633e-08;417432;5.270319477184308e-05;0;1;Old +19430;Malta;F;Service and sales workers;Financial and insurance activities   ;Y15-29;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;1;0;Young +19431;Malta;F;Service and sales workers;Financial and insurance activities   ;Y30-49;26;1;9.907891213122657e-08;417432;6.22855938212691e-05;1;0;Young +19432;Malta;F;Service and sales workers;Financial and insurance activities   ;Y50-64;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;0;1;Old +19433;Malta;F;Service and sales workers;Real estate activities   ;Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19434;Malta;F;Service and sales workers;Real estate activities   ;Y30-49;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +19435;Malta;F;Service and sales workers;Real estate activities   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19436;Malta;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;39;1;1.4861836819683987e-07;417432;9.342839073190363e-05;1;0;Young +19437;Malta;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;56;1;2.134007338211034e-07;417432;0.0001341535866919642;1;0;Young +19438;Malta;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;0;1;Old +19439;Malta;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19440;Malta;F;Service and sales workers;Administrative and support service activities   ;Y15-29;130;1;4.953945606561329e-07;417432;0.0003114279691063455;1;0;Young +19441;Malta;F;Service and sales workers;Administrative and support service activities   ;Y30-49;239;1;9.10763846129352e-07;417432;0.0005725483432032043;1;0;Young +19442;Malta;F;Service and sales workers;Administrative and support service activities   ;Y50-64;148;1;5.63987653670059e-07;417432;0.00035454876482876255;0;1;Old +19443;Malta;F;Service and sales workers;Administrative and support service activities   ;Y65-84;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;0;1;Old +19444;Malta;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;201;1;7.659562053221747e-07;417432;0.0004815155522336572;1;0;Young +19445;Malta;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;251;1;9.564925748053026e-07;417432;0.0006012955403514824;1;0;Young +19446;Malta;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;61;1;2.3245437076941619e-07;417432;0.00014613158550374672;0;1;Old +19447;Malta;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19448;Malta;F;Service and sales workers;Education   ;Y15-29;796;1;3.033339002171398e-06;417432;0.001906897410835777;1;0;Young +19449;Malta;F;Service and sales workers;Education   ;Y30-49;939;1;3.5782730188931444e-06;417432;0.002249468176852757;1;0;Young +19450;Malta;F;Service and sales workers;Education   ;Y50-64;395;1;1.5052373189167114e-06;417432;0.0009462619061308189;0;1;Old +19451;Malta;F;Service and sales workers;Education   ;Y65-84;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19452;Malta;F;Service and sales workers;Human health and social work activities   ;Y15-29;571;1;2.175925339497322e-06;417432;0.0013678874643055635;1;0;Young +19453;Malta;F;Service and sales workers;Human health and social work activities   ;Y30-49;1399;1;5.3312076181379226e-06;417432;0.0033514440675367486;1;0;Young +19454;Malta;F;Service and sales workers;Human health and social work activities   ;Y50-64;839;1;3.197200279926888e-06;417432;0.0020099082006171066;0;1;Old +19455;Malta;F;Service and sales workers;Human health and social work activities   ;Y65-84;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;0;1;Old +19456;Malta;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;74;1;2.819938268350295e-07;417432;0.00017727438241438127;1;0;Young +19457;Malta;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;66;1;2.51508007717729e-07;417432;0.00015810958431552923;1;0;Young +19458;Malta;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;27;1;1.0288963952088914e-07;417432;6.46811935836256e-05;0;1;Old +19459;Malta;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19460;Malta;F;Service and sales workers;Other service activities   ;Y15-29;881;1;3.3572508302927157e-06;417432;0.0021105233906360795;1;0;Young +19461;Malta;F;Service and sales workers;Other service activities   ;Y30-49;670;1;2.5531873510739154e-06;417432;0.0016050518407788575;1;0;Young +19462;Malta;F;Service and sales workers;Other service activities   ;Y50-64;174;1;6.630665658012855e-07;417432;0.00041683435865003164;0;1;Old +19463;Malta;F;Service and sales workers;Other service activities   ;Y65-84;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +19464;Malta;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;1;0;Young +19465;Malta;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;40;1;1.5242909558650242e-07;417432;9.582399049426015e-05;1;0;Young +19466;Malta;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;0;1;Old +19467;Malta;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19468;Malta;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;1;0;Young +19469;Malta;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19470;Malta;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;1;0;Young +19471;Malta;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;73;1;2.7818309944536694e-07;417432;0.00017487878265202476;1;0;Young +19472;Malta;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;65;1;2.4769728032806646e-07;417432;0.00015571398455317275;0;1;Old +19473;Malta;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19474;Malta;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19475;Malta;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19476;Malta;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19477;Malta;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19478;Malta;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19479;Malta;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19480;Malta;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;1;0;Young +19481;Malta;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19482;Malta;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19483;Malta;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19484;Malta;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19485;Malta;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19486;Malta;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19487;Malta;F;Craft and related trades workers;Manufacturing   ;Y15-29;235;1;8.955209365707018e-07;417432;0.0005629659441537783;1;0;Young +19488;Malta;F;Craft and related trades workers;Manufacturing   ;Y30-49;372;1;1.4175905889544725e-06;417432;0.0008911631115966194;1;0;Young +19489;Malta;F;Craft and related trades workers;Manufacturing   ;Y50-64;99;1;3.772620115765935e-07;417432;0.00023716437647329386;0;1;Old +19490;Malta;F;Craft and related trades workers;Manufacturing   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19491;Malta;F;Craft and related trades workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19492;Malta;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19493;Malta;F;Craft and related trades workers;Construction   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19494;Malta;F;Craft and related trades workers;Construction   ;Y30-49;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19495;Malta;F;Craft and related trades workers;Construction   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19496;Malta;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;22;1;8.383600257257633e-08;417432;5.270319477184308e-05;1;0;Young +19497;Malta;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;54;1;2.0577927904177827e-07;417432;0.0001293623871672512;1;0;Young +19498;Malta;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;40;1;1.5242909558650242e-07;417432;9.582399049426015e-05;0;1;Old +19499;Malta;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19500;Malta;F;Craft and related trades workers;Transportation and storage   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19501;Malta;F;Craft and related trades workers;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19502;Malta;F;Craft and related trades workers;Transportation and storage   ;Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19503;Malta;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;40;1;1.5242909558650242e-07;417432;9.582399049426015e-05;1;0;Young +19504;Malta;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +19505;Malta;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;0;1;Old +19506;Malta;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19507;Malta;F;Craft and related trades workers;Information and communication   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19508;Malta;F;Craft and related trades workers;Information and communication   ;Y30-49;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19509;Malta;F;Craft and related trades workers;Information and communication   ;Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19510;Malta;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19511;Malta;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19512;Malta;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;23;1;8.764672996223889e-08;417432;5.509879453419958e-05;1;0;Young +19513;Malta;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;1;0;Young +19514;Malta;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19515;Malta;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19516;Malta;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19517;Malta;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19518;Malta;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19519;Malta;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19520;Malta;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19521;Malta;F;Craft and related trades workers;Education   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19522;Malta;F;Craft and related trades workers;Education   ;Y30-49;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +19523;Malta;F;Craft and related trades workers;Education   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19524;Malta;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19525;Malta;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +19526;Malta;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19527;Malta;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19528;Malta;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19529;Malta;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19530;Malta;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19531;Malta;F;Craft and related trades workers;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19532;Malta;F;Craft and related trades workers;Other service activities   ;Y30-49;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;1;0;Young +19533;Malta;F;Craft and related trades workers;Other service activities   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19534;Malta;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19535;Malta;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19536;Malta;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19537;Malta;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19538;Malta;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19539;Malta;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19540;Malta;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;1370;1;5.220696523837708e-06;417432;0.00328197167442841;1;0;Young +19541;Malta;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;1272;1;4.847245239650777e-06;417432;0.0030472028977174726;1;0;Young +19542;Malta;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;212;1;8.078742066084628e-07;417432;0.0005078671496195787;0;1;Old +19543;Malta;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19544;Malta;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19545;Malta;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19546;Malta;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19547;Malta;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;1;0;Young +19548;Malta;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;1;0;Young +19549;Malta;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19550;Malta;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;45;1;1.7148273253481523e-07;417432;0.00010780198930604267;1;0;Young +19551;Malta;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;0;1;Old +19552;Malta;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;1;0;Young +19553;Malta;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;75;1;2.8580455422469204e-07;417432;0.00017966998217673776;1;0;Young +19554;Malta;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;31;1;1.1813254907953938e-07;417432;7.42635926330516e-05;0;1;Old +19555;Malta;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19556;Malta;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19557;Malta;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19558;Malta;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +19559;Malta;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19560;Malta;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19561;Malta;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;33;1;1.257540038588645e-07;417432;7.905479215776462e-05;1;0;Young +19562;Malta;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;1;0;Young +19563;Malta;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19564;Malta;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19565;Malta;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +19566;Malta;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19567;Malta;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19568;Malta;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +19569;Malta;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19570;Malta;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19571;Malta;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;1;0;Young +19572;Malta;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19573;Malta;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19574;Malta;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19575;Malta;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;26;1;9.907891213122657e-08;417432;6.22855938212691e-05;1;0;Young +19576;Malta;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;23;1;8.764672996223889e-08;417432;5.509879453419958e-05;1;0;Young +19577;Malta;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19578;Malta;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19579;Malta;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19580;Malta;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;1;0;Young +19581;Malta;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19582;Malta;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19583;Malta;F;Elementary occupations;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19584;Malta;F;Elementary occupations;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19585;Malta;F;Elementary occupations;Manufacturing   ;Y15-29;165;1;6.287700192943225e-07;417432;0.0003952739607888231;1;0;Young +19586;Malta;F;Elementary occupations;Manufacturing   ;Y30-49;231;1;8.802780270120515e-07;417432;0.0005533835451043523;1;0;Young +19587;Malta;F;Elementary occupations;Manufacturing   ;Y50-64;100;1;3.8107273896625605e-07;417432;0.00023955997623565037;0;1;Old +19588;Malta;F;Elementary occupations;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19589;Malta;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19590;Malta;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19591;Malta;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19592;Malta;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +19593;Malta;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;1;0;Young +19594;Malta;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;0;1;Old +19595;Malta;F;Elementary occupations;Construction   ;Y15-29;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;1;0;Young +19596;Malta;F;Elementary occupations;Construction   ;Y30-49;23;1;8.764672996223889e-08;417432;5.509879453419958e-05;1;0;Young +19597;Malta;F;Elementary occupations;Construction   ;Y50-64;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;0;1;Old +19598;Malta;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;131;1;4.992052880457954e-07;417432;0.00031382356886870195;1;0;Young +19599;Malta;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;298;1;1.135596762119443e-06;417432;0.0007138887291822381;1;0;Young +19600;Malta;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;172;1;6.554451110219605e-07;417432;0.0004120431591253186;0;1;Old +19601;Malta;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19602;Malta;F;Elementary occupations;Transportation and storage   ;Y15-29;23;1;8.764672996223889e-08;417432;5.509879453419958e-05;1;0;Young +19603;Malta;F;Elementary occupations;Transportation and storage   ;Y30-49;84;1;3.201011007316551e-07;417432;0.0002012303800379463;1;0;Young +19604;Malta;F;Elementary occupations;Transportation and storage   ;Y50-64;28;1;1.067003669105517e-07;417432;6.70767933459821e-05;0;1;Old +19605;Malta;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;570;1;2.1721146121076596e-06;417432;0.0013654918645432071;1;0;Young +19606;Malta;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;654;1;2.4922157128393146e-06;417432;0.0015667222445811533;1;0;Young +19607;Malta;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;400;1;1.5242909558650242e-06;417432;0.0009582399049426015;0;1;Old +19608;Malta;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;0;1;Old +19609;Malta;F;Elementary occupations;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19610;Malta;F;Elementary occupations;Information and communication   ;Y15-29;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;1;0;Young +19611;Malta;F;Elementary occupations;Information and communication   ;Y30-49;23;1;8.764672996223889e-08;417432;5.509879453419958e-05;1;0;Young +19612;Malta;F;Elementary occupations;Information and communication   ;Y50-64;22;1;8.383600257257633e-08;417432;5.270319477184308e-05;0;1;Old +19613;Malta;F;Elementary occupations;Financial and insurance activities   ;Y15-29;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;1;0;Young +19614;Malta;F;Elementary occupations;Financial and insurance activities   ;Y30-49;47;1;1.7910418731414036e-07;417432;0.00011259318883075566;1;0;Young +19615;Malta;F;Elementary occupations;Financial and insurance activities   ;Y50-64;44;1;1.6767200514515266e-07;417432;0.00010540638954368615;0;1;Old +19616;Malta;F;Elementary occupations;Real estate activities   ;Y15-29;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;1;0;Young +19617;Malta;F;Elementary occupations;Real estate activities   ;Y30-49;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;1;0;Young +19618;Malta;F;Elementary occupations;Real estate activities   ;Y50-64;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +19619;Malta;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19620;Malta;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;32;1;1.2194327646920193e-07;417432;7.665919239540812e-05;1;0;Young +19621;Malta;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;28;1;1.067003669105517e-07;417432;6.70767933459821e-05;0;1;Old +19622;Malta;F;Elementary occupations;Administrative and support service activities   ;Y15-29;286;1;1.0898680334434924e-06;417432;0.00068514153203396;1;0;Young +19623;Malta;F;Elementary occupations;Administrative and support service activities   ;Y30-49;414;1;1.5776411393203e-06;417432;0.0009917783016155925;1;0;Young +19624;Malta;F;Elementary occupations;Administrative and support service activities   ;Y50-64;261;1;9.945998487019282e-07;417432;0.0006252515379750474;0;1;Old +19625;Malta;F;Elementary occupations;Administrative and support service activities   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19626;Malta;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;1;0;Young +19627;Malta;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;133;1;5.068267428251205e-07;417432;0.00031861476839341497;1;0;Young +19628;Malta;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;105;1;4.0012637591456885e-07;417432;0.00025153797504743285;0;1;Old +19629;Malta;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19630;Malta;F;Elementary occupations;Education   ;Y15-29;42;1;1.6005055036582754e-07;417432;0.00010061519001897316;1;0;Young +19631;Malta;F;Elementary occupations;Education   ;Y30-49;318;1;1.2118113099126943e-06;417432;0.0007618007244293681;1;0;Young +19632;Malta;F;Elementary occupations;Education   ;Y50-64;215;1;8.193063887774505e-07;417432;0.0005150539489066483;0;1;Old +19633;Malta;F;Elementary occupations;Education   ;Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19634;Malta;F;Elementary occupations;Human health and social work activities   ;Y15-29;121;1;4.610980141491698e-07;417432;0.00028986757124513694;1;0;Young +19635;Malta;F;Elementary occupations;Human health and social work activities   ;Y30-49;283;1;1.0784358512745046e-06;417432;0.0006779547327468905;1;0;Young +19636;Malta;F;Elementary occupations;Human health and social work activities   ;Y50-64;206;1;7.850098422704875e-07;417432;0.0004934935510454398;0;1;Old +19637;Malta;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +19638;Malta;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;47;1;1.7910418731414036e-07;417432;0.00011259318883075566;1;0;Young +19639;Malta;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;30;1;1.1432182168987682e-07;417432;7.18679928706951e-05;0;1;Old +19640;Malta;F;Elementary occupations;Other service activities   ;Y15-29;26;1;9.907891213122657e-08;417432;6.22855938212691e-05;1;0;Young +19641;Malta;F;Elementary occupations;Other service activities   ;Y30-49;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;1;0;Young +19642;Malta;F;Elementary occupations;Other service activities   ;Y50-64;47;1;1.7910418731414036e-07;417432;0.00011259318883075566;0;1;Old +19643;Malta;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19644;Malta;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +19645;Malta;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;27;1;1.0288963952088914e-07;417432;6.46811935836256e-05;0;1;Old +19646;Malta;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19647;Malta;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19648;Malta;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19649;Malta;M;Not applicable;Not applicable  ;Y15-29;15999;1;6.096782750721131e-05;417432;0.0383272005979417;1;0;Young +19650;Malta;M;Not applicable;Not applicable  ;Y30-49;3994;1;1.5220045194312267e-05;417432;0.009568025450851876;1;0;Young +19651;Malta;M;Not applicable;Not applicable  ;Y50-64;15698;1;5.982079856292287e-05;417432;0.03760612506947239;0;1;Old +19652;Malta;M;Not applicable;Not applicable  ;Y65-84;25570;1;9.744029935367167e-05;417432;0.061255485923455796;0;1;Old +19653;Malta;M;Not applicable;Not applicable  ;Y_GE85;2160;1;8.231171161671131e-06;417432;0.005174495486690048;0;1;Old +19654;Malta;M;Not applicable;Not applicable  ;Y_LT15;31673;1;0.00012069716861278228;417432;0.07587583127311753;0;1;Old +19655;Malta;M;Armed forces occupations;Mining and quarrying   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19656;Malta;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19657;Malta;M;Armed forces occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19658;Malta;M;Armed forces occupations;Transportation and storage   ;Y15-29;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19659;Malta;M;Armed forces occupations;Transportation and storage   ;Y30-49;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19660;Malta;M;Armed forces occupations;Transportation and storage   ;Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19661;Malta;M;Armed forces occupations;Accommodation and food service activities   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19662;Malta;M;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19663;Malta;M;Armed forces occupations;Professional, scientific and technical activities   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19664;Malta;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;477;1;1.8177169648690413e-06;417432;0.0011427010866440523;1;0;Young +19665;Malta;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;851;1;3.242929008602839e-06;417432;0.0020386553977653843;1;0;Young +19666;Malta;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;205;1;7.811991148808249e-07;417432;0.0004910979512830832;0;1;Old +19667;Malta;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19668;Malta;M;Armed forces occupations;Human health and social work activities   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19669;Malta;M;Armed forces occupations;Other service activities   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19670;Malta;M;Armed forces occupations;Other service activities   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19671;Malta;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19672;Malta;M;Managers;Agriculture, forestry and fishing   ;Y15-29;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +19673;Malta;M;Managers;Agriculture, forestry and fishing   ;Y30-49;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;1;0;Young +19674;Malta;M;Managers;Agriculture, forestry and fishing   ;Y50-64;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;0;1;Old +19675;Malta;M;Managers;Agriculture, forestry and fishing   ;Y65-84;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19676;Malta;M;Managers;Mining and quarrying   ;Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19677;Malta;M;Managers;Mining and quarrying   ;Y30-49;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +19678;Malta;M;Managers;Mining and quarrying   ;Y50-64;32;1;1.2194327646920193e-07;417432;7.665919239540812e-05;0;1;Old +19679;Malta;M;Managers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19680;Malta;M;Managers;Manufacturing   ;Y15-29;129;1;4.915838332664703e-07;417432;0.000309032369343989;1;0;Young +19681;Malta;M;Managers;Manufacturing   ;Y30-49;730;1;2.7818309944536693e-06;417432;0.0017487878265202476;1;0;Young +19682;Malta;M;Managers;Manufacturing   ;Y50-64;550;1;2.0959000643144084e-06;417432;0.0013175798692960769;0;1;Old +19683;Malta;M;Managers;Manufacturing   ;Y65-84;47;1;1.7910418731414036e-07;417432;0.00011259318883075566;0;1;Old +19684;Malta;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19685;Malta;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;1;0;Young +19686;Malta;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;0;1;Old +19687;Malta;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +19688;Malta;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;28;1;1.067003669105517e-07;417432;6.70767933459821e-05;1;0;Young +19689;Malta;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;37;1;1.4099691341751475e-07;417432;8.863719120719064e-05;0;1;Old +19690;Malta;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19691;Malta;M;Managers;Construction   ;Y15-29;79;1;3.010474637833423e-07;417432;0.00018925238122616378;1;0;Young +19692;Malta;M;Managers;Construction   ;Y30-49;372;1;1.4175905889544725e-06;417432;0.0008911631115966194;1;0;Young +19693;Malta;M;Managers;Construction   ;Y50-64;272;1;1.0365178499882164e-06;417432;0.000651603135360969;0;1;Old +19694;Malta;M;Managers;Construction   ;Y65-84;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;0;1;Old +19695;Malta;M;Managers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19696;Malta;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;301;1;1.1470289442884308e-06;417432;0.0007210755284693075;1;0;Young +19697;Malta;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1719;1;6.550640382829941e-06;417432;0.0041180359914908295;1;0;Young +19698;Malta;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1066;1;4.062235397380289e-06;417432;0.002553709346672033;0;1;Old +19699;Malta;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;148;1;5.63987653670059e-07;417432;0.00035454876482876255;0;1;Old +19700;Malta;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19701;Malta;M;Managers;Transportation and storage   ;Y15-29;50;1;1.9053636948312803e-07;417432;0.00011977998811782519;1;0;Young +19702;Malta;M;Managers;Transportation and storage   ;Y30-49;328;1;1.24991858380932e-06;417432;0.0007857567220529332;1;0;Young +19703;Malta;M;Managers;Transportation and storage   ;Y50-64;243;1;9.260067556880022e-07;417432;0.0005821307422526304;0;1;Old +19704;Malta;M;Managers;Transportation and storage   ;Y65-84;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;0;1;Old +19705;Malta;M;Managers;Accommodation and food service activities   ;Y15-29;208;1;7.926312970498126e-07;417432;0.0004982847505701528;1;0;Young +19706;Malta;M;Managers;Accommodation and food service activities   ;Y30-49;826;1;3.147660823861275e-06;417432;0.001978765403706472;1;0;Young +19707;Malta;M;Managers;Accommodation and food service activities   ;Y50-64;474;1;1.8062847827000537e-06;417432;0.0011355142873569826;0;1;Old +19708;Malta;M;Managers;Accommodation and food service activities   ;Y65-84;55;1;2.0959000643144082e-07;417432;0.0001317579869296077;0;1;Old +19709;Malta;M;Managers;Information and communication   ;Y15-29;104;1;3.963156485249063e-07;417432;0.0002491423752850764;1;0;Young +19710;Malta;M;Managers;Information and communication   ;Y30-49;461;1;1.7567453266344403e-06;417432;0.001104371490446348;1;0;Young +19711;Malta;M;Managers;Information and communication   ;Y50-64;99;1;3.772620115765935e-07;417432;0.00023716437647329386;0;1;Old +19712;Malta;M;Managers;Information and communication   ;Y65-84;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;0;1;Old +19713;Malta;M;Managers;Financial and insurance activities   ;Y15-29;92;1;3.5058691984895557e-07;417432;0.00022039517813679833;1;0;Young +19714;Malta;M;Managers;Financial and insurance activities   ;Y30-49;760;1;2.896152816143546e-06;417432;0.0018206558193909427;1;0;Young +19715;Malta;M;Managers;Financial and insurance activities   ;Y50-64;452;1;1.7224487801274773e-06;417432;0.0010828110925851396;0;1;Old +19716;Malta;M;Managers;Financial and insurance activities   ;Y65-84;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;0;1;Old +19717;Malta;M;Managers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19718;Malta;M;Managers;Real estate activities   ;Y15-29;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19719;Malta;M;Managers;Real estate activities   ;Y30-49;80;1;3.0485819117300483e-07;417432;0.0001916479809885203;1;0;Young +19720;Malta;M;Managers;Real estate activities   ;Y50-64;76;1;2.896152816143546e-07;417432;0.00018206558193909427;0;1;Old +19721;Malta;M;Managers;Real estate activities   ;Y65-84;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +19722;Malta;M;Managers;Professional, scientific and technical activities   ;Y15-29;62;1;2.3626509815907876e-07;417432;0.0001485271852661032;1;0;Young +19723;Malta;M;Managers;Professional, scientific and technical activities   ;Y30-49;395;1;1.5052373189167114e-06;417432;0.0009462619061308189;1;0;Young +19724;Malta;M;Managers;Professional, scientific and technical activities   ;Y50-64;191;1;7.27848931425549e-07;417432;0.0004575595546100922;0;1;Old +19725;Malta;M;Managers;Professional, scientific and technical activities   ;Y65-84;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;0;1;Old +19726;Malta;M;Managers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19727;Malta;M;Managers;Administrative and support service activities   ;Y15-29;56;1;2.134007338211034e-07;417432;0.0001341535866919642;1;0;Young +19728;Malta;M;Managers;Administrative and support service activities   ;Y30-49;323;1;1.2308649468610071e-06;417432;0.0007737787232411507;1;0;Young +19729;Malta;M;Managers;Administrative and support service activities   ;Y50-64;211;1;8.040634792188003e-07;417432;0.0005054715498572222;0;1;Old +19730;Malta;M;Managers;Administrative and support service activities   ;Y65-84;27;1;1.0288963952088914e-07;417432;6.46811935836256e-05;0;1;Old +19731;Malta;M;Managers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19732;Malta;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;50;1;1.9053636948312803e-07;417432;0.00011977998811782519;1;0;Young +19733;Malta;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;351;1;1.3375653137715587e-06;417432;0.0008408555165871327;1;0;Young +19734;Malta;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;249;1;9.488711200259775e-07;417432;0.0005965043408267693;0;1;Old +19735;Malta;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;37;1;1.4099691341751475e-07;417432;8.863719120719064e-05;0;1;Old +19736;Malta;M;Managers;Education   ;Y15-29;30;1;1.1432182168987682e-07;417432;7.18679928706951e-05;1;0;Young +19737;Malta;M;Managers;Education   ;Y30-49;273;1;1.040328577377879e-06;417432;0.0006539987351233255;1;0;Young +19738;Malta;M;Managers;Education   ;Y50-64;171;1;6.516343836322978e-07;417432;0.0004096475593629621;0;1;Old +19739;Malta;M;Managers;Education   ;Y65-84;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;0;1;Old +19740;Malta;M;Managers;Human health and social work activities   ;Y15-29;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +19741;Malta;M;Managers;Human health and social work activities   ;Y30-49;105;1;4.0012637591456885e-07;417432;0.00025153797504743285;1;0;Young +19742;Malta;M;Managers;Human health and social work activities   ;Y50-64;62;1;2.3626509815907876e-07;417432;0.0001485271852661032;0;1;Old +19743;Malta;M;Managers;Human health and social work activities   ;Y65-84;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;0;1;Old +19744;Malta;M;Managers;Arts, entertainment and recreation   ;Y15-29;82;1;3.1247964595233e-07;417432;0.0001964391805132333;1;0;Young +19745;Malta;M;Managers;Arts, entertainment and recreation   ;Y30-49;284;1;1.0822465786641672e-06;417432;0.0006803503325092471;1;0;Young +19746;Malta;M;Managers;Arts, entertainment and recreation   ;Y50-64;67;1;2.5531873510739155e-07;417432;0.00016050518407788574;0;1;Old +19747;Malta;M;Managers;Arts, entertainment and recreation   ;Y65-84;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +19748;Malta;M;Managers;Other service activities   ;Y15-29;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +19749;Malta;M;Managers;Other service activities   ;Y30-49;78;1;2.9723673639367974e-07;417432;0.00018685678146380727;1;0;Young +19750;Malta;M;Managers;Other service activities   ;Y50-64;40;1;1.5242909558650242e-07;417432;9.582399049426015e-05;0;1;Old +19751;Malta;M;Managers;Other service activities   ;Y65-84;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19752;Malta;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19753;Malta;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;1;0;Young +19754;Malta;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;0;1;Old +19755;Malta;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19756;Malta;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19757;Malta;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +19758;Malta;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19759;Malta;M;Professionals;Mining and quarrying   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19760;Malta;M;Professionals;Mining and quarrying   ;Y30-49;22;1;8.383600257257633e-08;417432;5.270319477184308e-05;1;0;Young +19761;Malta;M;Professionals;Mining and quarrying   ;Y50-64;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;0;1;Old +19762;Malta;M;Professionals;Manufacturing   ;Y15-29;316;1;1.2041898551333691e-06;417432;0.0007570095249046551;1;0;Young +19763;Malta;M;Professionals;Manufacturing   ;Y30-49;395;1;1.5052373189167114e-06;417432;0.0009462619061308189;1;0;Young +19764;Malta;M;Professionals;Manufacturing   ;Y50-64;139;1;5.296911071630959e-07;417432;0.000332988366967554;0;1;Old +19765;Malta;M;Professionals;Manufacturing   ;Y65-84;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +19766;Malta;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;44;1;1.6767200514515266e-07;417432;0.00010540638954368615;1;0;Young +19767;Malta;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;97;1;3.6964055679726836e-07;417432;0.00023237317694858083;1;0;Young +19768;Malta;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;0;1;Old +19769;Malta;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;1;0;Young +19770;Malta;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;39;1;1.4861836819683987e-07;417432;9.342839073190363e-05;1;0;Young +19771;Malta;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;0;1;Old +19772;Malta;M;Professionals;Construction   ;Y15-29;71;1;2.705616446660418e-07;417432;0.00017008758312731176;1;0;Young +19773;Malta;M;Professionals;Construction   ;Y30-49;105;1;4.0012637591456885e-07;417432;0.00025153797504743285;1;0;Young +19774;Malta;M;Professionals;Construction   ;Y50-64;39;1;1.4861836819683987e-07;417432;9.342839073190363e-05;0;1;Old +19775;Malta;M;Professionals;Construction   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19776;Malta;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;151;1;5.754198358390467e-07;417432;0.00036173556411583203;1;0;Young +19777;Malta;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;293;1;1.1165431251711302e-06;417432;0.0007019107303704556;1;0;Young +19778;Malta;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;73;1;2.7818309944536694e-07;417432;0.00017487878265202476;0;1;Old +19779;Malta;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;0;1;Old +19780;Malta;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19781;Malta;M;Professionals;Transportation and storage   ;Y15-29;56;1;2.134007338211034e-07;417432;0.0001341535866919642;1;0;Young +19782;Malta;M;Professionals;Transportation and storage   ;Y30-49;149;1;5.677983810597215e-07;417432;0.00035694436459111906;1;0;Young +19783;Malta;M;Professionals;Transportation and storage   ;Y50-64;78;1;2.9723673639367974e-07;417432;0.00018685678146380727;0;1;Old +19784;Malta;M;Professionals;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19785;Malta;M;Professionals;Accommodation and food service activities   ;Y15-29;40;1;1.5242909558650242e-07;417432;9.582399049426015e-05;1;0;Young +19786;Malta;M;Professionals;Accommodation and food service activities   ;Y30-49;63;1;2.400758255487413e-07;417432;0.00015092278502845972;1;0;Young +19787;Malta;M;Professionals;Accommodation and food service activities   ;Y50-64;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;0;1;Old +19788;Malta;M;Professionals;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19789;Malta;M;Professionals;Information and communication   ;Y15-29;836;1;3.1857680977579008e-06;417432;0.002002721401330037;1;0;Young +19790;Malta;M;Professionals;Information and communication   ;Y30-49;759;1;2.8923420887538835e-06;417432;0.0018182602196285863;1;0;Young +19791;Malta;M;Professionals;Information and communication   ;Y50-64;111;1;4.2299074025254424e-07;417432;0.0002659115736215719;0;1;Old +19792;Malta;M;Professionals;Information and communication   ;Y65-84;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;0;1;Old +19793;Malta;M;Professionals;Financial and insurance activities   ;Y15-29;211;1;8.040634792188003e-07;417432;0.0005054715498572222;1;0;Young +19794;Malta;M;Professionals;Financial and insurance activities   ;Y30-49;253;1;9.641140295846278e-07;417432;0.0006060867398761954;1;0;Young +19795;Malta;M;Professionals;Financial and insurance activities   ;Y50-64;53;1;2.019685516521157e-07;417432;0.00012696678740489468;0;1;Old +19796;Malta;M;Professionals;Financial and insurance activities   ;Y65-84;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19797;Malta;M;Professionals;Real estate activities   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19798;Malta;M;Professionals;Real estate activities   ;Y30-49;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;1;0;Young +19799;Malta;M;Professionals;Real estate activities   ;Y50-64;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19800;Malta;M;Professionals;Professional, scientific and technical activities   ;Y15-29;696;1;2.652266263205142e-06;417432;0.0016673374346001266;1;0;Young +19801;Malta;M;Professionals;Professional, scientific and technical activities   ;Y30-49;972;1;3.704027022752009e-06;417432;0.0023285229690105215;1;0;Young +19802;Malta;M;Professionals;Professional, scientific and technical activities   ;Y50-64;395;1;1.5052373189167114e-06;417432;0.0009462619061308189;0;1;Old +19803;Malta;M;Professionals;Professional, scientific and technical activities   ;Y65-84;76;1;2.896152816143546e-07;417432;0.00018206558193909427;0;1;Old +19804;Malta;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19805;Malta;M;Professionals;Administrative and support service activities   ;Y15-29;84;1;3.201011007316551e-07;417432;0.0002012303800379463;1;0;Young +19806;Malta;M;Professionals;Administrative and support service activities   ;Y30-49;102;1;3.886941937455812e-07;417432;0.00024435117576036337;1;0;Young +19807;Malta;M;Professionals;Administrative and support service activities   ;Y50-64;59;1;2.2483291599009106e-07;417432;0.0001413403859790337;0;1;Old +19808;Malta;M;Professionals;Administrative and support service activities   ;Y65-84;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +19809;Malta;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;213;1;8.116849339981254e-07;417432;0.0005102627493819352;1;0;Young +19810;Malta;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;546;1;2.080657154755758e-06;417432;0.001307997470246651;1;0;Young +19811;Malta;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;267;1;1.0174642130399036e-06;417432;0.0006396251365491865;0;1;Old +19812;Malta;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;0;1;Old +19813;Malta;M;Professionals;Education   ;Y15-29;584;1;2.2254647955629356e-06;417432;0.001399030261216198;1;0;Young +19814;Malta;M;Professionals;Education   ;Y30-49;1592;1;6.066678004342796e-06;417432;0.003813794821671554;1;0;Young +19815;Malta;M;Professionals;Education   ;Y50-64;671;1;2.556998078463578e-06;417432;0.0016074474405412139;0;1;Old +19816;Malta;M;Professionals;Education   ;Y65-84;110;1;4.1918001286288164e-07;417432;0.0002635159738592154;0;1;Old +19817;Malta;M;Professionals;Education   ;Y_GE85;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19818;Malta;M;Professionals;Human health and social work activities   ;Y15-29;350;1;1.3337545863818963e-06;417432;0.0008384599168247762;1;0;Young +19819;Malta;M;Professionals;Human health and social work activities   ;Y30-49;809;1;3.0828784582370114e-06;417432;0.0019380402077464115;1;0;Young +19820;Malta;M;Professionals;Human health and social work activities   ;Y50-64;336;1;1.2804044029266203e-06;417432;0.0008049215201517853;0;1;Old +19821;Malta;M;Professionals;Human health and social work activities   ;Y65-84;61;1;2.3245437076941619e-07;417432;0.00014613158550374672;0;1;Old +19822;Malta;M;Professionals;Arts, entertainment and recreation   ;Y15-29;154;1;5.868520180080343e-07;417432;0.00036892236340290156;1;0;Young +19823;Malta;M;Professionals;Arts, entertainment and recreation   ;Y30-49;223;1;8.49792207894751e-07;417432;0.0005342187470055002;1;0;Young +19824;Malta;M;Professionals;Arts, entertainment and recreation   ;Y50-64;79;1;3.010474637833423e-07;417432;0.00018925238122616378;0;1;Old +19825;Malta;M;Professionals;Arts, entertainment and recreation   ;Y65-84;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19826;Malta;M;Professionals;Other service activities   ;Y15-29;48;1;1.829149147038029e-07;417432;0.00011498878859311217;1;0;Young +19827;Malta;M;Professionals;Other service activities   ;Y30-49;137;1;5.220696523837708e-07;417432;0.00032819716744284097;1;0;Young +19828;Malta;M;Professionals;Other service activities   ;Y50-64;114;1;4.344229224215319e-07;417432;0.0002730983729086414;0;1;Old +19829;Malta;M;Professionals;Other service activities   ;Y65-84;67;1;2.5531873510739155e-07;417432;0.00016050518407788574;0;1;Old +19830;Malta;M;Professionals;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19831;Malta;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +19832;Malta;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;1;0;Young +19833;Malta;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19834;Malta;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +19835;Malta;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;1;0;Young +19836;Malta;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19837;Malta;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +19838;Malta;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;1;0;Young +19839;Malta;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;32;1;1.2194327646920193e-07;417432;7.665919239540812e-05;0;1;Old +19840;Malta;M;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19841;Malta;M;Technicians and associate professionals;Manufacturing   ;Y15-29;830;1;3.162903733419925e-06;417432;0.001988347802755898;1;0;Young +19842;Malta;M;Technicians and associate professionals;Manufacturing   ;Y30-49;1239;1;4.721491235791912e-06;417432;0.002968148105559708;1;0;Young +19843;Malta;M;Technicians and associate professionals;Manufacturing   ;Y50-64;509;1;1.9396602413382435e-06;417432;0.0012193602790394602;0;1;Old +19844;Malta;M;Technicians and associate professionals;Manufacturing   ;Y65-84;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;0;1;Old +19845;Malta;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +19846;Malta;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;291;1;1.1089216703918052e-06;417432;0.0006971195308457425;1;0;Young +19847;Malta;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;156;1;5.944734727873595e-07;417432;0.00037371356292761453;0;1;Old +19848;Malta;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19849;Malta;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;38;1;1.448076408071773e-07;417432;9.103279096954714e-05;1;0;Young +19850;Malta;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;110;1;4.1918001286288164e-07;417432;0.0002635159738592154;1;0;Young +19851;Malta;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;112;1;4.268014676422068e-07;417432;0.0002683071733839284;0;1;Old +19852;Malta;M;Technicians and associate professionals;Construction   ;Y15-29;265;1;1.0098427582605786e-06;417432;0.0006348339370244734;1;0;Young +19853;Malta;M;Technicians and associate professionals;Construction   ;Y30-49;459;1;1.7491238718551153e-06;417432;0.001099580290921635;1;0;Young +19854;Malta;M;Technicians and associate professionals;Construction   ;Y50-64;229;1;8.726565722327264e-07;417432;0.0005485923455796393;0;1;Old +19855;Malta;M;Technicians and associate professionals;Construction   ;Y65-84;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19856;Malta;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;384;1;1.4633193176304232e-06;417432;0.0009199103087448974;1;0;Young +19857;Malta;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;631;1;2.4045689828770757e-06;417432;0.0015116234500469538;1;0;Young +19858;Malta;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;338;1;1.2880258577059455e-06;417432;0.0008097127196764982;0;1;Old +19859;Malta;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;48;1;1.829149147038029e-07;417432;0.00011498878859311217;0;1;Old +19860;Malta;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19861;Malta;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;183;1;6.973631123082485e-07;417432;0.00043839475651124014;1;0;Young +19862;Malta;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;657;1;2.5036478950083024e-06;417432;0.001573909043868223;1;0;Young +19863;Malta;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;350;1;1.3337545863818963e-06;417432;0.0008384599168247762;0;1;Old +19864;Malta;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19865;Malta;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;770;1;2.9342600900401717e-06;417432;0.0018446118170145078;1;0;Young +19866;Malta;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;797;1;3.0371497295610606e-06;417432;0.0019092930105981333;1;0;Young +19867;Malta;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;354;1;1.3489974959405465e-06;417432;0.0008480423158742023;0;1;Old +19868;Malta;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;0;1;Old +19869;Malta;M;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19870;Malta;M;Technicians and associate professionals;Information and communication   ;Y15-29;349;1;1.3299438589922337e-06;417432;0.0008360643170624198;1;0;Young +19871;Malta;M;Technicians and associate professionals;Information and communication   ;Y30-49;463;1;1.7643667814137655e-06;417432;0.001109162689971061;1;0;Young +19872;Malta;M;Technicians and associate professionals;Information and communication   ;Y50-64;183;1;6.973631123082485e-07;417432;0.00043839475651124014;0;1;Old +19873;Malta;M;Technicians and associate professionals;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19874;Malta;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;216;1;8.231171161671131e-07;417432;0.0005174495486690048;1;0;Young +19875;Malta;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;413;1;1.5738304119306376e-06;417432;0.000989382701853236;1;0;Young +19876;Malta;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;124;1;4.725301963181575e-07;417432;0.0002970543705322064;0;1;Old +19877;Malta;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +19878;Malta;M;Technicians and associate professionals;Real estate activities   ;Y15-29;58;1;2.2102218860042852e-07;417432;0.00013894478621667721;1;0;Young +19879;Malta;M;Technicians and associate professionals;Real estate activities   ;Y30-49;216;1;8.231171161671131e-07;417432;0.0005174495486690048;1;0;Young +19880;Malta;M;Technicians and associate professionals;Real estate activities   ;Y50-64;76;1;2.896152816143546e-07;417432;0.00018206558193909427;0;1;Old +19881;Malta;M;Technicians and associate professionals;Real estate activities   ;Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19882;Malta;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;267;1;1.0174642130399036e-06;417432;0.0006396251365491865;1;0;Young +19883;Malta;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;274;1;1.0441393047675416e-06;417432;0.0006563943348856819;1;0;Young +19884;Malta;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;125;1;4.7634092370782007e-07;417432;0.00029944997029456293;0;1;Old +19885;Malta;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;23;1;8.764672996223889e-08;417432;5.509879453419958e-05;0;1;Old +19886;Malta;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +19887;Malta;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;101;1;3.848834663559186e-07;417432;0.00024195557599800686;1;0;Young +19888;Malta;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;180;1;6.859309301392609e-07;417432;0.00043120795722417066;1;0;Young +19889;Malta;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;104;1;3.963156485249063e-07;417432;0.0002491423752850764;0;1;Old +19890;Malta;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19891;Malta;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;124;1;4.725301963181575e-07;417432;0.0002970543705322064;1;0;Young +19892;Malta;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;628;1;2.393136800708088e-06;417432;0.0015044366507598842;1;0;Young +19893;Malta;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;445;1;1.6957736883998393e-06;417432;0.001066041894248644;0;1;Old +19894;Malta;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +19895;Malta;M;Technicians and associate professionals;Education   ;Y15-29;95;1;3.6201910201794326e-07;417432;0.00022758197742386784;1;0;Young +19896;Malta;M;Technicians and associate professionals;Education   ;Y30-49;235;1;8.955209365707018e-07;417432;0.0005629659441537783;1;0;Young +19897;Malta;M;Technicians and associate professionals;Education   ;Y50-64;66;1;2.51508007717729e-07;417432;0.00015810958431552923;0;1;Old +19898;Malta;M;Technicians and associate professionals;Education   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19899;Malta;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;170;1;6.478236562426352e-07;417432;0.0004072519596006056;1;0;Young +19900;Malta;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;590;1;2.2483291599009107e-06;417432;0.0014134038597903372;1;0;Young +19901;Malta;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;282;1;1.074625123884842e-06;417432;0.000675559132984534;0;1;Old +19902;Malta;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +19903;Malta;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;221;1;8.421707531154259e-07;417432;0.0005294275474807873;1;0;Young +19904;Malta;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;237;1;9.031423913500269e-07;417432;0.0005677571436784913;1;0;Young +19905;Malta;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;52;1;1.9815782426245315e-07;417432;0.0001245711876425382;0;1;Old +19906;Malta;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19907;Malta;M;Technicians and associate professionals;Other service activities   ;Y15-29;70;1;2.6675091727637925e-07;417432;0.00016769198336495525;1;0;Young +19908;Malta;M;Technicians and associate professionals;Other service activities   ;Y30-49;107;1;4.07747830693894e-07;417432;0.0002563291745721459;1;0;Young +19909;Malta;M;Technicians and associate professionals;Other service activities   ;Y50-64;67;1;2.5531873510739155e-07;417432;0.00016050518407788574;0;1;Old +19910;Malta;M;Technicians and associate professionals;Other service activities   ;Y65-84;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;0;1;Old +19911;Malta;M;Technicians and associate professionals;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19912;Malta;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19913;Malta;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19914;Malta;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +19915;Malta;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +19916;Malta;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19917;Malta;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19918;Malta;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19919;Malta;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;1;0;Young +19920;Malta;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +19921;Malta;M;Clerical support workers;Mining and quarrying   ;Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +19922;Malta;M;Clerical support workers;Mining and quarrying   ;Y30-49;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +19923;Malta;M;Clerical support workers;Mining and quarrying   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19924;Malta;M;Clerical support workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19925;Malta;M;Clerical support workers;Manufacturing   ;Y15-29;218;1;8.307385709464382e-07;417432;0.0005222407481937178;1;0;Young +19926;Malta;M;Clerical support workers;Manufacturing   ;Y30-49;343;1;1.3070794946542583e-06;417432;0.0008216907184882807;1;0;Young +19927;Malta;M;Clerical support workers;Manufacturing   ;Y50-64;183;1;6.973631123082485e-07;417432;0.00043839475651124014;0;1;Old +19928;Malta;M;Clerical support workers;Manufacturing   ;Y65-84;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +19929;Malta;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +19930;Malta;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;51;1;1.943470968727906e-07;417432;0.00012217558788018168;1;0;Young +19931;Malta;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;32;1;1.2194327646920193e-07;417432;7.665919239540812e-05;0;1;Old +19932;Malta;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;1;0;Young +19933;Malta;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;48;1;1.829149147038029e-07;417432;0.00011498878859311217;1;0;Young +19934;Malta;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;0;1;Old +19935;Malta;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19936;Malta;M;Clerical support workers;Construction   ;Y15-29;67;1;2.5531873510739155e-07;417432;0.00016050518407788574;1;0;Young +19937;Malta;M;Clerical support workers;Construction   ;Y30-49;93;1;3.543976472386181e-07;417432;0.00022279077789915484;1;0;Young +19938;Malta;M;Clerical support workers;Construction   ;Y50-64;68;1;2.591294624970541e-07;417432;0.00016290078384024225;0;1;Old +19939;Malta;M;Clerical support workers;Construction   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19940;Malta;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;587;1;2.236896977731923e-06;417432;0.0014062170605032675;1;0;Young +19941;Malta;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;562;1;2.141628792990359e-06;417432;0.001346327066444355;1;0;Young +19942;Malta;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;262;1;9.984105760915908e-07;417432;0.0006276471377374039;0;1;Old +19943;Malta;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;0;1;Old +19944;Malta;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19945;Malta;M;Clerical support workers;Transportation and storage   ;Y15-29;303;1;1.1546503990677558e-06;417432;0.0007258667279940206;1;0;Young +19946;Malta;M;Clerical support workers;Transportation and storage   ;Y30-49;657;1;2.5036478950083024e-06;417432;0.001573909043868223;1;0;Young +19947;Malta;M;Clerical support workers;Transportation and storage   ;Y50-64;219;1;8.345492983361008e-07;417432;0.0005246363479560743;0;1;Old +19948;Malta;M;Clerical support workers;Transportation and storage   ;Y65-84;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +19949;Malta;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;195;1;7.430918409841993e-07;417432;0.0004671419536595182;1;0;Young +19950;Malta;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;210;1;8.002527518291377e-07;417432;0.0005030759500948657;1;0;Young +19951;Malta;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;133;1;5.068267428251205e-07;417432;0.00031861476839341497;0;1;Old +19952;Malta;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;0;1;Old +19953;Malta;M;Clerical support workers;Information and communication   ;Y15-29;134;1;5.106374702147831e-07;417432;0.0003210103681557715;1;0;Young +19954;Malta;M;Clerical support workers;Information and communication   ;Y30-49;97;1;3.6964055679726836e-07;417432;0.00023237317694858083;1;0;Young +19955;Malta;M;Clerical support workers;Information and communication   ;Y50-64;61;1;2.3245437076941619e-07;417432;0.00014613158550374672;0;1;Old +19956;Malta;M;Clerical support workers;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +19957;Malta;M;Clerical support workers;Financial and insurance activities   ;Y15-29;346;1;1.3185116768232459e-06;417432;0.0008288775177753503;1;0;Young +19958;Malta;M;Clerical support workers;Financial and insurance activities   ;Y30-49;342;1;1.3032687672645957e-06;417432;0.0008192951187259242;1;0;Young +19959;Malta;M;Clerical support workers;Financial and insurance activities   ;Y50-64;92;1;3.5058691984895557e-07;417432;0.00022039517813679833;0;1;Old +19960;Malta;M;Clerical support workers;Financial and insurance activities   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19961;Malta;M;Clerical support workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19962;Malta;M;Clerical support workers;Real estate activities   ;Y15-29;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;1;0;Young +19963;Malta;M;Clerical support workers;Real estate activities   ;Y30-49;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +19964;Malta;M;Clerical support workers;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19965;Malta;M;Clerical support workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +19966;Malta;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;126;1;4.801516510974826e-07;417432;0.00030184557005691944;1;0;Young +19967;Malta;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;70;1;2.6675091727637925e-07;417432;0.00016769198336495525;1;0;Young +19968;Malta;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;39;1;1.4861836819683987e-07;417432;9.342839073190363e-05;0;1;Old +19969;Malta;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +19970;Malta;M;Clerical support workers;Administrative and support service activities   ;Y15-29;184;1;7.011738396979111e-07;417432;0.00044079035627359666;1;0;Young +19971;Malta;M;Clerical support workers;Administrative and support service activities   ;Y30-49;152;1;5.792305632287092e-07;417432;0.00036413116387818854;1;0;Young +19972;Malta;M;Clerical support workers;Administrative and support service activities   ;Y50-64;100;1;3.8107273896625605e-07;417432;0.00023955997623565037;0;1;Old +19973;Malta;M;Clerical support workers;Administrative and support service activities   ;Y65-84;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +19974;Malta;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;166;1;6.325807466839851e-07;417432;0.0003976695605511796;1;0;Young +19975;Malta;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;462;1;1.760556054024103e-06;417432;0.0011067670902087047;1;0;Young +19976;Malta;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;322;1;1.2270542194713445e-06;417432;0.0007713831234787942;0;1;Old +19977;Malta;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;0;1;Old +19978;Malta;M;Clerical support workers;Education   ;Y15-29;59;1;2.2483291599009106e-07;417432;0.0001413403859790337;1;0;Young +19979;Malta;M;Clerical support workers;Education   ;Y30-49;79;1;3.010474637833423e-07;417432;0.00018925238122616378;1;0;Young +19980;Malta;M;Clerical support workers;Education   ;Y50-64;39;1;1.4861836819683987e-07;417432;9.342839073190363e-05;0;1;Old +19981;Malta;M;Clerical support workers;Education   ;Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +19982;Malta;M;Clerical support workers;Human health and social work activities   ;Y15-29;38;1;1.448076408071773e-07;417432;9.103279096954714e-05;1;0;Young +19983;Malta;M;Clerical support workers;Human health and social work activities   ;Y30-49;95;1;3.6201910201794326e-07;417432;0.00022758197742386784;1;0;Young +19984;Malta;M;Clerical support workers;Human health and social work activities   ;Y50-64;71;1;2.705616446660418e-07;417432;0.00017008758312731176;0;1;Old +19985;Malta;M;Clerical support workers;Human health and social work activities   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +19986;Malta;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;259;1;9.869783939226032e-07;417432;0.0006204603384503345;1;0;Young +19987;Malta;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;198;1;7.54524023153187e-07;417432;0.0004743287529465877;1;0;Young +19988;Malta;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;99;1;3.772620115765935e-07;417432;0.00023716437647329386;0;1;Old +19989;Malta;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;0;1;Old +19990;Malta;M;Clerical support workers;Other service activities   ;Y15-29;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;1;0;Young +19991;Malta;M;Clerical support workers;Other service activities   ;Y30-49;27;1;1.0288963952088914e-07;417432;6.46811935836256e-05;1;0;Young +19992;Malta;M;Clerical support workers;Other service activities   ;Y50-64;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;0;1;Old +19993;Malta;M;Clerical support workers;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +19994;Malta;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +19995;Malta;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +19996;Malta;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +19997;Malta;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +19998;Malta;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;1;0;Young +19999;Malta;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;0;1;Old +20000;Malta;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20001;Malta;M;Service and sales workers;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20002;Malta;M;Service and sales workers;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;1;0;Young +20003;Malta;M;Service and sales workers;Mining and quarrying   ;Y50-64;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +20004;Malta;M;Service and sales workers;Manufacturing   ;Y15-29;141;1;5.37312561942421e-07;417432;0.000337779566492267;1;0;Young +20005;Malta;M;Service and sales workers;Manufacturing   ;Y30-49;261;1;9.945998487019282e-07;417432;0.0006252515379750474;1;0;Young +20006;Malta;M;Service and sales workers;Manufacturing   ;Y50-64;152;1;5.792305632287092e-07;417432;0.00036413116387818854;0;1;Old +20007;Malta;M;Service and sales workers;Manufacturing   ;Y65-84;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;0;1;Old +20008;Malta;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +20009;Malta;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;0;1;Old +20010;Malta;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +20011;Malta;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;1;0;Young +20012;Malta;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;57;1;2.1721146121076594e-07;417432;0.0001365491864543207;0;1;Old +20013;Malta;M;Service and sales workers;Construction   ;Y15-29;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;1;0;Young +20014;Malta;M;Service and sales workers;Construction   ;Y30-49;69;1;2.629401898867167e-07;417432;0.00016529638360259874;1;0;Young +20015;Malta;M;Service and sales workers;Construction   ;Y50-64;84;1;3.201011007316551e-07;417432;0.0002012303800379463;0;1;Old +20016;Malta;M;Service and sales workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20017;Malta;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1573;1;5.9942741839392075e-06;417432;0.00376827842618678;1;0;Young +20018;Malta;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2513;1;9.576357930222014e-06;417432;0.006020142202801893;1;0;Young +20019;Malta;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1382;1;5.266425252513658e-06;417432;0.003310718871576688;0;1;Old +20020;Malta;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;170;1;6.478236562426352e-07;417432;0.0004072519596006056;0;1;Old +20021;Malta;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20022;Malta;M;Service and sales workers;Transportation and storage   ;Y15-29;130;1;4.953945606561329e-07;417432;0.0003114279691063455;1;0;Young +20023;Malta;M;Service and sales workers;Transportation and storage   ;Y30-49;355;1;1.352808223330209e-06;417432;0.0008504379156365588;1;0;Young +20024;Malta;M;Service and sales workers;Transportation and storage   ;Y50-64;230;1;8.76467299622389e-07;417432;0.0005509879453419958;0;1;Old +20025;Malta;M;Service and sales workers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20026;Malta;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;1350;1;5.144481976044457e-06;417432;0.00323405967918128;1;0;Young +20027;Malta;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;1118;1;4.260393221642743e-06;417432;0.002678280534314571;1;0;Young +20028;Malta;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;675;1;2.5722409880222284e-06;417432;0.00161702983959064;0;1;Old +20029;Malta;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;47;1;1.7910418731414036e-07;417432;0.00011259318883075566;0;1;Old +20030;Malta;M;Service and sales workers;Information and communication   ;Y15-29;96;1;3.658298294076058e-07;417432;0.00022997757718622435;1;0;Young +20031;Malta;M;Service and sales workers;Information and communication   ;Y30-49;58;1;2.2102218860042852e-07;417432;0.00013894478621667721;1;0;Young +20032;Malta;M;Service and sales workers;Information and communication   ;Y50-64;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;0;1;Old +20033;Malta;M;Service and sales workers;Information and communication   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +20034;Malta;M;Service and sales workers;Financial and insurance activities   ;Y15-29;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +20035;Malta;M;Service and sales workers;Financial and insurance activities   ;Y30-49;69;1;2.629401898867167e-07;417432;0.00016529638360259874;1;0;Young +20036;Malta;M;Service and sales workers;Financial and insurance activities   ;Y50-64;33;1;1.257540038588645e-07;417432;7.905479215776462e-05;0;1;Old +20037;Malta;M;Service and sales workers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +20038;Malta;M;Service and sales workers;Real estate activities   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +20039;Malta;M;Service and sales workers;Real estate activities   ;Y30-49;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;1;0;Young +20040;Malta;M;Service and sales workers;Real estate activities   ;Y50-64;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +20041;Malta;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +20042;Malta;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;35;1;1.3337545863818962e-07;417432;8.384599168247763e-05;1;0;Young +20043;Malta;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;0;1;Old +20044;Malta;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20045;Malta;M;Service and sales workers;Administrative and support service activities   ;Y15-29;268;1;1.0212749404295662e-06;417432;0.000642020736311543;1;0;Young +20046;Malta;M;Service and sales workers;Administrative and support service activities   ;Y30-49;450;1;1.7148273253481523e-06;417432;0.0010780198930604265;1;0;Young +20047;Malta;M;Service and sales workers;Administrative and support service activities   ;Y50-64;428;1;1.630991322775576e-06;417432;0.0010253166982885835;0;1;Old +20048;Malta;M;Service and sales workers;Administrative and support service activities   ;Y65-84;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;0;1;Old +20049;Malta;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;560;1;2.134007338211034e-06;417432;0.001341535866919642;1;0;Young +20050;Malta;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;1186;1;4.519522684139797e-06;417432;0.002841181318154813;1;0;Young +20051;Malta;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;634;1;2.4160011650460635e-06;417432;0.0015188102493340233;0;1;Old +20052;Malta;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20053;Malta;M;Service and sales workers;Education   ;Y15-29;161;1;6.135271097356723e-07;417432;0.0003856915617393971;1;0;Young +20054;Malta;M;Service and sales workers;Education   ;Y30-49;175;1;6.668772931909481e-07;417432;0.0004192299584123881;1;0;Young +20055;Malta;M;Service and sales workers;Education   ;Y50-64;151;1;5.754198358390467e-07;417432;0.00036173556411583203;0;1;Old +20056;Malta;M;Service and sales workers;Education   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +20057;Malta;M;Service and sales workers;Human health and social work activities   ;Y15-29;154;1;5.868520180080343e-07;417432;0.00036892236340290156;1;0;Young +20058;Malta;M;Service and sales workers;Human health and social work activities   ;Y30-49;802;1;3.0562033665093736e-06;417432;0.0019212710094099158;1;0;Young +20059;Malta;M;Service and sales workers;Human health and social work activities   ;Y50-64;375;1;1.4290227711234603e-06;417432;0.0008983499108836888;0;1;Old +20060;Malta;M;Service and sales workers;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +20061;Malta;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;88;1;3.353440102903053e-07;417432;0.0002108127790873723;1;0;Young +20062;Malta;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;114;1;4.344229224215319e-07;417432;0.0002730983729086414;1;0;Young +20063;Malta;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;94;1;3.582083746282807e-07;417432;0.00022518637766151133;0;1;Old +20064;Malta;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20065;Malta;M;Service and sales workers;Other service activities   ;Y15-29;133;1;5.068267428251205e-07;417432;0.00031861476839341497;1;0;Young +20066;Malta;M;Service and sales workers;Other service activities   ;Y30-49;190;1;7.240382040358865e-07;417432;0.0004551639548477357;1;0;Young +20067;Malta;M;Service and sales workers;Other service activities   ;Y50-64;105;1;4.0012637591456885e-07;417432;0.00025153797504743285;0;1;Old +20068;Malta;M;Service and sales workers;Other service activities   ;Y65-84;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;0;1;Old +20069;Malta;M;Service and sales workers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20070;Malta;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20071;Malta;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20072;Malta;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;1;0;Young +20073;Malta;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +20074;Malta;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;0;1;Old +20075;Malta;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20076;Malta;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;200;1;7.621454779325121e-07;417432;0.00047911995247130074;1;0;Young +20077;Malta;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;600;1;2.2864364337975363e-06;417432;0.001437359857413902;1;0;Young +20078;Malta;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;605;1;2.3054900707458493e-06;417432;0.0014493378562256847;0;1;Old +20079;Malta;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;114;1;4.344229224215319e-07;417432;0.0002730983729086414;0;1;Old +20080;Malta;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20081;Malta;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +20082;Malta;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +20083;Malta;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +20084;Malta;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20085;Malta;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20086;Malta;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20087;Malta;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20088;Malta;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20089;Malta;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +20090;Malta;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20091;Malta;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;1;0;Young +20092;Malta;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;1;0;Young +20093;Malta;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;23;1;8.764672996223889e-08;417432;5.509879453419958e-05;0;1;Old +20094;Malta;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +20095;Malta;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20096;Malta;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +20097;Malta;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +20098;Malta;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +20099;Malta;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;1;0;Young +20100;Malta;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;21;1;8.002527518291377e-08;417432;5.030759500948658e-05;0;1;Old +20101;Malta;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20102;Malta;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20103;Malta;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20104;Malta;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20105;Malta;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20106;Malta;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20107;Malta;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20108;Malta;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20109;Malta;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20110;Malta;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20111;Malta;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;49;1;1.8672564209346548e-07;417432;0.00011738438835546867;1;0;Young +20112;Malta;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;144;1;5.487447441114087e-07;417432;0.0003449663657793365;1;0;Young +20113;Malta;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;86;1;3.277225555109802e-07;417432;0.0002060215795626593;0;1;Old +20114;Malta;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20115;Malta;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20116;Malta;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;26;1;9.907891213122657e-08;417432;6.22855938212691e-05;1;0;Young +20117;Malta;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;0;1;Old +20118;Malta;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;1;0;Young +20119;Malta;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +20120;Malta;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;1;0;Young +20121;Malta;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +20122;Malta;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20123;Malta;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;1;0;Young +20124;Malta;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +20125;Malta;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20126;Malta;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +20127;Malta;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20128;Malta;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +20129;Malta;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;1;0;Young +20130;Malta;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;31;1;1.1813254907953938e-07;417432;7.42635926330516e-05;1;0;Young +20131;Malta;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;0;1;Old +20132;Malta;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;39;1;1.4861836819683987e-07;417432;9.342839073190363e-05;1;0;Young +20133;Malta;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;106;1;4.039371033042314e-07;417432;0.00025393357480978936;1;0;Young +20134;Malta;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;42;1;1.6005055036582754e-07;417432;0.00010061519001897316;0;1;Old +20135;Malta;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20136;Malta;M;Craft and related trades workers;Manufacturing   ;Y15-29;1564;1;5.959977637432245e-06;417432;0.0037467180283255715;1;0;Young +20137;Malta;M;Craft and related trades workers;Manufacturing   ;Y30-49;2733;1;1.0414717955947778e-05;417432;0.006547174150520324;1;0;Young +20138;Malta;M;Craft and related trades workers;Manufacturing   ;Y50-64;1758;1;6.699258751026782e-06;417432;0.004211464382222733;0;1;Old +20139;Malta;M;Craft and related trades workers;Manufacturing   ;Y65-84;81;1;3.086689185626674e-07;417432;0.00019404358075087678;0;1;Old +20140;Malta;M;Craft and related trades workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20141;Malta;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +20142;Malta;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;274;1;1.0441393047675416e-06;417432;0.0006563943348856819;1;0;Young +20143;Malta;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;123;1;4.6871946892849497e-07;417432;0.00029465877076984996;0;1;Old +20144;Malta;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20145;Malta;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;26;1;9.907891213122657e-08;417432;6.22855938212691e-05;1;0;Young +20146;Malta;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;171;1;6.516343836322978e-07;417432;0.0004096475593629621;1;0;Young +20147;Malta;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;177;1;6.744987479702732e-07;417432;0.0004240211579371011;0;1;Old +20148;Malta;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +20149;Malta;M;Craft and related trades workers;Construction   ;Y15-29;1683;1;6.413454196802089e-06;417432;0.0040317944000459955;1;0;Young +20150;Malta;M;Craft and related trades workers;Construction   ;Y30-49;3158;1;1.2034277096554366e-05;417432;0.007565304049521838;1;0;Young +20151;Malta;M;Craft and related trades workers;Construction   ;Y50-64;1555;1;5.9256810909252815e-06;417432;0.003725157630464363;0;1;Old +20152;Malta;M;Craft and related trades workers;Construction   ;Y65-84;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;0;1;Old +20153;Malta;M;Craft and related trades workers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20154;Malta;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;630;1;2.400758255487413e-06;417432;0.0015092278502845972;1;0;Young +20155;Malta;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1313;1;5.003485062626942e-06;417432;0.0031454224879740892;1;0;Young +20156;Malta;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;714;1;2.720859356219068e-06;417432;0.0017104582303225436;0;1;Old +20157;Malta;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;46;1;1.7529345992447778e-07;417432;0.00011019758906839916;0;1;Old +20158;Malta;M;Craft and related trades workers;Transportation and storage   ;Y15-29;65;1;2.4769728032806646e-07;417432;0.00015571398455317275;1;0;Young +20159;Malta;M;Craft and related trades workers;Transportation and storage   ;Y30-49;204;1;7.773883874911624e-07;417432;0.0004887023515207267;1;0;Young +20160;Malta;M;Craft and related trades workers;Transportation and storage   ;Y50-64;117;1;4.458551045905196e-07;417432;0.00028028517219571094;0;1;Old +20161;Malta;M;Craft and related trades workers;Transportation and storage   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +20162;Malta;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;172;1;6.554451110219605e-07;417432;0.0004120431591253186;1;0;Young +20163;Malta;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;315;1;1.2003791277437065e-06;417432;0.0007546139251422986;1;0;Young +20164;Malta;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;224;1;8.536029352844136e-07;417432;0.0005366143467678568;0;1;Old +20165;Malta;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +20166;Malta;M;Craft and related trades workers;Information and communication   ;Y15-29;54;1;2.0577927904177827e-07;417432;0.0001293623871672512;1;0;Young +20167;Malta;M;Craft and related trades workers;Information and communication   ;Y30-49;157;1;5.98284200177022e-07;417432;0.00037610916268997105;1;0;Young +20168;Malta;M;Craft and related trades workers;Information and communication   ;Y50-64;89;1;3.3915473767996787e-07;417432;0.00021320837884972882;0;1;Old +20169;Malta;M;Craft and related trades workers;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20170;Malta;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;1;0;Young +20171;Malta;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;1;0;Young +20172;Malta;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;0;1;Old +20173;Malta;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20174;Malta;M;Craft and related trades workers;Real estate activities   ;Y15-29;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;1;0;Young +20175;Malta;M;Craft and related trades workers;Real estate activities   ;Y30-49;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;1;0;Young +20176;Malta;M;Craft and related trades workers;Real estate activities   ;Y50-64;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;0;1;Old +20177;Malta;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;65;1;2.4769728032806646e-07;417432;0.00015571398455317275;1;0;Young +20178;Malta;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;100;1;3.8107273896625605e-07;417432;0.00023955997623565037;1;0;Young +20179;Malta;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;67;1;2.5531873510739155e-07;417432;0.00016050518407788574;0;1;Old +20180;Malta;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20181;Malta;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;50;1;1.9053636948312803e-07;417432;0.00011977998811782519;1;0;Young +20182;Malta;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;158;1;6.020949275666846e-07;417432;0.00037850476245232756;1;0;Young +20183;Malta;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;91;1;3.46776192459293e-07;417432;0.00021799957837444182;0;1;Old +20184;Malta;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20185;Malta;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +20186;Malta;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;328;1;1.24991858380932e-06;417432;0.0007857567220529332;1;0;Young +20187;Malta;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;198;1;7.54524023153187e-07;417432;0.0004743287529465877;0;1;Old +20188;Malta;M;Craft and related trades workers;Education   ;Y15-29;18;1;6.859309301392609e-08;417432;4.312079572241706e-05;1;0;Young +20189;Malta;M;Craft and related trades workers;Education   ;Y30-49;87;1;3.3153328290064277e-07;417432;0.00020841717932501582;1;0;Young +20190;Malta;M;Craft and related trades workers;Education   ;Y50-64;49;1;1.8672564209346548e-07;417432;0.00011738438835546867;0;1;Old +20191;Malta;M;Craft and related trades workers;Education   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20192;Malta;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;1;0;Young +20193;Malta;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;115;1;4.382336498111945e-07;417432;0.0002754939726709979;1;0;Young +20194;Malta;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;85;1;3.239118281213176e-07;417432;0.0002036259798003028;0;1;Old +20195;Malta;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20196;Malta;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;30;1;1.1432182168987682e-07;417432;7.18679928706951e-05;1;0;Young +20197;Malta;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;80;1;3.0485819117300483e-07;417432;0.0001916479809885203;1;0;Young +20198;Malta;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;51;1;1.943470968727906e-07;417432;0.00012217558788018168;0;1;Old +20199;Malta;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20200;Malta;M;Craft and related trades workers;Other service activities   ;Y15-29;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +20201;Malta;M;Craft and related trades workers;Other service activities   ;Y30-49;65;1;2.4769728032806646e-07;417432;0.00015571398455317275;1;0;Young +20202;Malta;M;Craft and related trades workers;Other service activities   ;Y50-64;44;1;1.6767200514515266e-07;417432;0.00010540638954368615;0;1;Old +20203;Malta;M;Craft and related trades workers;Other service activities   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +20204;Malta;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20205;Malta;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20206;Malta;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +20207;Malta;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20208;Malta;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +20209;Malta;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +20210;Malta;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +20211;Malta;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;52;1;1.9815782426245315e-07;417432;0.0001245711876425382;1;0;Young +20212;Malta;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;121;1;4.610980141491698e-07;417432;0.00028986757124513694;1;0;Young +20213;Malta;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;105;1;4.0012637591456885e-07;417432;0.00025153797504743285;0;1;Old +20214;Malta;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;1301;1;4.957756333950991e-06;417432;0.003116675290825811;1;0;Young +20215;Malta;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;1503;1;5.727523266662829e-06;417432;0.003600586442821825;1;0;Young +20216;Malta;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;534;1;2.0349284260798072e-06;417432;0.001279250273098373;0;1;Old +20217;Malta;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;0;1;Old +20218;Malta;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +20219;Malta;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;58;1;2.2102218860042852e-07;417432;0.00013894478621667721;1;0;Young +20220;Malta;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;55;1;2.0959000643144082e-07;417432;0.0001317579869296077;0;1;Old +20221;Malta;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;33;1;1.257540038588645e-07;417432;7.905479215776462e-05;1;0;Young +20222;Malta;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;96;1;3.658298294076058e-07;417432;0.00022997757718622435;1;0;Young +20223;Malta;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;85;1;3.239118281213176e-07;417432;0.0002036259798003028;0;1;Old +20224;Malta;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20225;Malta;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;190;1;7.240382040358865e-07;417432;0.0004551639548477357;1;0;Young +20226;Malta;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;451;1;1.7186380527378147e-06;417432;0.0010804154928227832;1;0;Young +20227;Malta;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;270;1;1.0288963952088914e-06;417432;0.000646811935836256;0;1;Old +20228;Malta;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;0;1;Old +20229;Malta;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;122;1;4.6490874153883237e-07;417432;0.00029226317100749345;1;0;Young +20230;Malta;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;203;1;7.735776601014998e-07;417432;0.0004863067517583702;1;0;Young +20231;Malta;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;97;1;3.6964055679726836e-07;417432;0.00023237317694858083;0;1;Old +20232;Malta;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +20233;Malta;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;499;1;1.9015529674416177e-06;417432;0.0011954042814158953;1;0;Young +20234;Malta;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;1381;1;5.262614525123996e-06;417432;0.0033083232718143316;1;0;Young +20235;Malta;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;822;1;3.132417914302625e-06;417432;0.001969183004657046;0;1;Old +20236;Malta;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;50;1;1.9053636948312803e-07;417432;0.00011977998811782519;0;1;Old +20237;Malta;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;1;0;Young +20238;Malta;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +20239;Malta;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;43;1;1.638612777554901e-07;417432;0.00010301078978132965;0;1;Old +20240;Malta;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20241;Malta;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20242;Malta;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +20243;Malta;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;0;1;Old +20244;Malta;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20245;Malta;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;1;0;Young +20246;Malta;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;13;1;4.953945606561329e-08;417432;3.114279691063455e-05;1;0;Young +20247;Malta;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;11;1;4.1918001286288165e-08;417432;2.635159738592154e-05;0;1;Old +20248;Malta;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20249;Malta;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;1;0;Young +20250;Malta;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +20251;Malta;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +20252;Malta;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;1;0;Young +20253;Malta;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;0;1;Old +20254;Malta;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;40;1;1.5242909558650242e-07;417432;9.582399049426015e-05;1;0;Young +20255;Malta;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;93;1;3.543976472386181e-07;417432;0.00022279077789915484;1;0;Young +20256;Malta;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;107;1;4.07747830693894e-07;417432;0.0002563291745721459;0;1;Old +20257;Malta;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +20258;Malta;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;1;0;Young +20259;Malta;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;70;1;2.6675091727637925e-07;417432;0.00016769198336495525;1;0;Young +20260;Malta;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;171;1;6.516343836322978e-07;417432;0.0004096475593629621;0;1;Old +20261;Malta;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20262;Malta;M;Plant and machine operators, and assemblers;Education   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20263;Malta;M;Plant and machine operators, and assemblers;Education   ;Y30-49;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;1;0;Young +20264;Malta;M;Plant and machine operators, and assemblers;Education   ;Y50-64;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +20265;Malta;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;1;0;Young +20266;Malta;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;61;1;2.3245437076941619e-07;417432;0.00014613158550374672;1;0;Young +20267;Malta;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;91;1;3.46776192459293e-07;417432;0.00021799957837444182;0;1;Old +20268;Malta;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;6;1;2.2864364337975363e-08;417432;1.4373598574139022e-05;1;0;Young +20269;Malta;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;1;0;Young +20270;Malta;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +20271;Malta;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20272;Malta;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +20273;Malta;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;28;1;1.067003669105517e-07;417432;6.70767933459821e-05;1;0;Young +20274;Malta;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;16;1;6.097163823460096e-08;417432;3.832959619770406e-05;0;1;Old +20275;Malta;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20276;Malta;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;1;0;Young +20277;Malta;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;1;0;Young +20278;Malta;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;19;1;7.240382040358865e-08;417432;4.551639548477357e-05;0;1;Old +20279;Malta;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;1;0;Young +20280;Malta;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;33;1;1.257540038588645e-07;417432;7.905479215776462e-05;1;0;Young +20281;Malta;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;0;1;Old +20282;Malta;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20283;Malta;M;Elementary occupations;Mining and quarrying   ;Y15-29;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;1;0;Young +20284;Malta;M;Elementary occupations;Mining and quarrying   ;Y30-49;33;1;1.257540038588645e-07;417432;7.905479215776462e-05;1;0;Young +20285;Malta;M;Elementary occupations;Mining and quarrying   ;Y50-64;17;1;6.478236562426352e-08;417432;4.0725195960060564e-05;0;1;Old +20286;Malta;M;Elementary occupations;Manufacturing   ;Y15-29;607;1;2.313111525525174e-06;417432;0.0014541290557503978;1;0;Young +20287;Malta;M;Elementary occupations;Manufacturing   ;Y30-49;616;1;2.347408072032137e-06;417432;0.0014756894536116063;1;0;Young +20288;Malta;M;Elementary occupations;Manufacturing   ;Y50-64;331;1;1.2613507659783075e-06;417432;0.0007929435213400027;0;1;Old +20289;Malta;M;Elementary occupations;Manufacturing   ;Y65-84;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +20290;Malta;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20291;Malta;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;33;1;1.257540038588645e-07;417432;7.905479215776462e-05;1;0;Young +20292;Malta;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;76;1;2.896152816143546e-07;417432;0.00018206558193909427;0;1;Old +20293;Malta;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;132;1;5.03016015435458e-07;417432;0.00031621916863105846;1;0;Young +20294;Malta;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;217;1;8.269278435567757e-07;417432;0.0005198451484313613;1;0;Young +20295;Malta;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;191;1;7.27848931425549e-07;417432;0.0004575595546100922;0;1;Old +20296;Malta;M;Elementary occupations;Construction   ;Y15-29;529;1;2.0158747891314946e-06;417432;0.0012672722742865905;1;0;Young +20297;Malta;M;Elementary occupations;Construction   ;Y30-49;797;1;3.0371497295610606e-06;417432;0.0019092930105981333;1;0;Young +20298;Malta;M;Elementary occupations;Construction   ;Y50-64;478;1;1.821527692258704e-06;417432;0.0011450966864064087;0;1;Old +20299;Malta;M;Elementary occupations;Construction   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +20300;Malta;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;962;1;3.6659197488553834e-06;417432;0.0023045669713869566;1;0;Young +20301;Malta;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;860;1;3.277225555109802e-06;417432;0.002060215795626593;1;0;Young +20302;Malta;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;317;1;1.2080005825230317e-06;417432;0.0007594051246670116;0;1;Old +20303;Malta;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;14;1;5.335018345527585e-08;417432;3.353839667299105e-05;0;1;Old +20304;Malta;M;Elementary occupations;Transportation and storage   ;Y15-29;281;1;1.0708143964951796e-06;417432;0.0006731635332221775;1;0;Young +20305;Malta;M;Elementary occupations;Transportation and storage   ;Y30-49;614;1;2.3397866172528123e-06;417432;0.0014708982540868932;1;0;Young +20306;Malta;M;Elementary occupations;Transportation and storage   ;Y50-64;465;1;1.7719882361930907e-06;417432;0.0011139538894957741;0;1;Old +20307;Malta;M;Elementary occupations;Transportation and storage   ;Y65-84;8;1;3.048581911730048e-08;417432;1.916479809885203e-05;0;1;Old +20308;Malta;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;643;1;2.4502977115530265e-06;417432;0.0015403706471952318;1;0;Young +20309;Malta;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;435;1;1.6576664145032138e-06;417432;0.001042085896625079;1;0;Young +20310;Malta;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;327;1;1.2461078564196573e-06;417432;0.0007833611222905766;0;1;Old +20311;Malta;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;0;1;Old +20312;Malta;M;Elementary occupations;Information and communication   ;Y15-29;24;1;9.145745735190145e-08;417432;5.749439429655609e-05;1;0;Young +20313;Malta;M;Elementary occupations;Information and communication   ;Y30-49;45;1;1.7148273253481523e-07;417432;0.00010780198930604267;1;0;Young +20314;Malta;M;Elementary occupations;Information and communication   ;Y50-64;45;1;1.7148273253481523e-07;417432;0.00010780198930604267;0;1;Old +20315;Malta;M;Elementary occupations;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20316;Malta;M;Elementary occupations;Financial and insurance activities   ;Y15-29;30;1;1.1432182168987682e-07;417432;7.18679928706951e-05;1;0;Young +20317;Malta;M;Elementary occupations;Financial and insurance activities   ;Y30-49;67;1;2.5531873510739155e-07;417432;0.00016050518407788574;1;0;Young +20318;Malta;M;Elementary occupations;Financial and insurance activities   ;Y50-64;75;1;2.8580455422469204e-07;417432;0.00017966998217673776;0;1;Old +20319;Malta;M;Elementary occupations;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;0;1;Old +20320;Malta;M;Elementary occupations;Real estate activities   ;Y15-29;9;1;3.429654650696304e-08;417432;2.156039786120853e-05;1;0;Young +20321;Malta;M;Elementary occupations;Real estate activities   ;Y30-49;15;1;5.716091084493841e-08;417432;3.593399643534755e-05;1;0;Young +20322;Malta;M;Elementary occupations;Real estate activities   ;Y50-64;12;1;4.5728728675950726e-08;417432;2.8747197148278044e-05;0;1;Old +20323;Malta;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;25;1;9.526818474156401e-08;417432;5.988999405891259e-05;1;0;Young +20324;Malta;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;40;1;1.5242909558650242e-07;417432;9.582399049426015e-05;1;0;Young +20325;Malta;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;32;1;1.2194327646920193e-07;417432;7.665919239540812e-05;0;1;Old +20326;Malta;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20327;Malta;M;Elementary occupations;Administrative and support service activities   ;Y15-29;301;1;1.1470289442884308e-06;417432;0.0007210755284693075;1;0;Young +20328;Malta;M;Elementary occupations;Administrative and support service activities   ;Y30-49;334;1;1.2727829481472953e-06;417432;0.0008001303206270722;1;0;Young +20329;Malta;M;Elementary occupations;Administrative and support service activities   ;Y50-64;214;1;8.15495661387788e-07;417432;0.0005126583491442917;0;1;Old +20330;Malta;M;Elementary occupations;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +20331;Malta;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;29;1;1.1051109430021426e-07;417432;6.947239310833861e-05;1;0;Young +20332;Malta;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;394;1;1.5014265915270488e-06;417432;0.0009438663063684624;1;0;Young +20333;Malta;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;546;1;2.080657154755758e-06;417432;0.001307997470246651;0;1;Old +20334;Malta;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;417432;7.186799287069511e-06;0;1;Old +20335;Malta;M;Elementary occupations;Education   ;Y15-29;33;1;1.257540038588645e-07;417432;7.905479215776462e-05;1;0;Young +20336;Malta;M;Elementary occupations;Education   ;Y30-49;160;1;6.097163823460097e-07;417432;0.0003832959619770406;1;0;Young +20337;Malta;M;Elementary occupations;Education   ;Y50-64;199;1;7.583347505428495e-07;417432;0.00047672435270894423;0;1;Old +20338;Malta;M;Elementary occupations;Education   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20339;Malta;M;Elementary occupations;Human health and social work activities   ;Y15-29;81;1;3.086689185626674e-07;417432;0.00019404358075087678;1;0;Young +20340;Malta;M;Elementary occupations;Human health and social work activities   ;Y30-49;177;1;6.744987479702732e-07;417432;0.0004240211579371011;1;0;Young +20341;Malta;M;Elementary occupations;Human health and social work activities   ;Y50-64;167;1;6.363914740736477e-07;417432;0.0004000651603135361;0;1;Old +20342;Malta;M;Elementary occupations;Human health and social work activities   ;Y65-84;4;1;1.524290955865024e-08;417432;9.582399049426015e-06;0;1;Old +20343;Malta;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;20;1;7.621454779325121e-08;417432;4.791199524713007e-05;1;0;Young +20344;Malta;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;52;1;1.9815782426245315e-07;417432;0.0001245711876425382;1;0;Young +20345;Malta;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;49;1;1.8672564209346548e-07;417432;0.00011738438835546867;0;1;Old +20346;Malta;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20347;Malta;M;Elementary occupations;Other service activities   ;Y15-29;47;1;1.7910418731414036e-07;417432;0.00011259318883075566;1;0;Young +20348;Malta;M;Elementary occupations;Other service activities   ;Y30-49;64;1;2.4388655293840386e-07;417432;0.00015331838479081623;1;0;Young +20349;Malta;M;Elementary occupations;Other service activities   ;Y50-64;71;1;2.705616446660418e-07;417432;0.00017008758312731176;0;1;Old +20350;Malta;M;Elementary occupations;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;417432;2.3955997623565036e-06;0;1;Old +20351;Malta;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20352;Malta;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;10;1;3.8107273896625604e-08;417432;2.3955997623565036e-05;1;0;Young +20353;Malta;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;7;1;2.6675091727637924e-08;417432;1.6769198336495524e-05;0;1;Old +20354;Malta;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20355;Malta;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;2;1;7.62145477932512e-09;417432;4.791199524713007e-06;1;0;Young +20356;Malta;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;417432;1.1977998811782518e-05;0;1;Old +20357;Poland;F;Not applicable;Not applicable  ;Y15-29;2331939;1;0.008886383818322323;38018718;0.0613366026702952;1;0;Young +20358;Poland;F;Not applicable;Not applicable  ;Y30-49;1176278;1;0.004482474792457497;38018718;0.03093944409172345;1;0;Young +20359;Poland;F;Not applicable;Not applicable  ;Y50-64;2477011;1;0.009439213662195448;38018718;0.06515240729579572;0;1;Old +20360;Poland;F;Not applicable;Not applicable  ;Y65-84;2754225;1;0.010495600644793365;38018718;0.0724439209128514;0;1;Old +20361;Poland;F;Not applicable;Not applicable  ;Y_GE85;392079;1;0.001494106184211507;38018718;0.010312788558520043;0;1;Old +20362;Poland;F;Not applicable;Not applicable  ;Y_LT15;2815656;1;0.010729697439067726;38018718;0.07405973026234078;0;1;Old +20363;Poland;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;956;1;3.643055384517408e-06;38018718;2.5145508588690443e-05;1;0;Young +20364;Poland;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;1099;1;4.187989401239154e-06;38018718;2.8906813743693303e-05;1;0;Young +20365;Poland;F;Managers;Agriculture, forestry and fishing   ;Y15-29;594;1;2.263572069459561e-06;38018718;1.562388295155034e-05;1;0;Young +20366;Poland;F;Managers;Agriculture, forestry and fishing   ;Y30-49;2792;1;1.063955087193787e-05;38018718;7.343751043893695e-05;1;0;Young +20367;Poland;F;Managers;Agriculture, forestry and fishing   ;Y50-64;2496;1;9.511575564597752e-06;38018718;6.565187179641354e-05;0;1;Old +20368;Poland;F;Managers;Mining and quarrying   ;Y30-49;866;1;3.3000899194477775e-06;38018718;2.27782535960313e-05;1;0;Young +20369;Poland;F;Managers;Mining and quarrying   ;Y50-64;544;1;2.073035699976433e-06;38018718;1.4308741288961927e-05;0;1;Old +20370;Poland;F;Managers;Manufacturing   ;Y15-29;7850;1;2.99142100088511e-05;38018718;0.00020647724102638073;1;0;Young +20371;Poland;F;Managers;Manufacturing   ;Y30-49;34948;1;0.00013317730081392716;38018718;0.0009192314164827967;1;0;Young +20372;Poland;F;Managers;Manufacturing   ;Y50-64;14234;1;5.424189366445689e-05;38018718;0.00037439452850566925;0;1;Old +20373;Poland;F;Managers;Manufacturing   ;Y65-84;597;1;2.2750042516285485e-06;38018718;1.5702791451305643e-05;0;1;Old +20374;Poland;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1762;1;6.714501660585431e-06;38018718;4.6345592189615654e-05;1;0;Young +20375;Poland;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;985;1;3.753566478817622e-06;38018718;2.5908290752991724e-05;0;1;Old +20376;Poland;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;352;1;1.3413760411612213e-06;38018718;9.258597304622423e-06;1;0;Young +20377;Poland;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1971;1;7.5109436850249065e-06;38018718;5.184288433923522e-05;1;0;Young +20378;Poland;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1350;1;5.144481976044457e-06;38018718;3.5508824889887136e-05;0;1;Old +20379;Poland;F;Managers;Construction   ;Y15-29;2273;1;8.661783356703e-06;38018718;5.9786339981269225e-05;1;0;Young +20380;Poland;F;Managers;Construction   ;Y30-49;9612;1;3.662871166943653e-05;38018718;0.0002528228332159964;1;0;Young +20381;Poland;F;Managers;Construction   ;Y50-64;5309;1;2.0231151711718532e-05;38018718;0.00013964174173363762;0;1;Old +20382;Poland;F;Managers;Construction   ;Y65-84;257;1;9.79356939143278e-07;38018718;6.759828145704439e-06;0;1;Old +20383;Poland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;16251;1;6.192813080940627e-05;38018718;0.0004274473431744858;1;0;Young +20384;Poland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;49739;1;0.0001895417696344261;38018718;0.001308276623109701;1;0;Young +20385;Poland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;15405;1;5.8704255437751747e-05;38018718;0.0004051951462434899;0;1;Old +20386;Poland;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;792;1;3.018096092612748e-06;38018718;2.0831843935400453e-05;0;1;Old +20387;Poland;F;Managers;Transportation and storage   ;Y15-29;1810;1;6.8974165752892345e-06;38018718;4.760812818570053e-05;1;0;Young +20388;Poland;F;Managers;Transportation and storage   ;Y30-49;9488;1;3.615618147311838e-05;38018718;0.0002495612818927771;1;0;Young +20389;Poland;F;Managers;Transportation and storage   ;Y50-64;3838;1;1.4625571721524908e-05;38018718;0.00010095027402028654;0;1;Old +20390;Poland;F;Managers;Accommodation and food service activities   ;Y15-29;5000;1;1.9053636948312804e-05;38018718;0.00013151416625884125;1;0;Young +20391;Poland;F;Managers;Accommodation and food service activities   ;Y30-49;10840;1;4.130828490394216e-05;38018718;0.0002851227124491678;1;0;Young +20392;Poland;F;Managers;Accommodation and food service activities   ;Y50-64;4064;1;1.5486796111588647e-05;38018718;0.00010689471433518616;0;1;Old +20393;Poland;F;Managers;Accommodation and food service activities   ;Y65-84;282;1;1.074625123884842e-06;38018718;7.417398976998646e-06;0;1;Old +20394;Poland;F;Managers;Information and communication   ;Y15-29;2129;1;8.11303861259159e-06;38018718;5.59987319930146e-05;1;0;Young +20395;Poland;F;Managers;Information and communication   ;Y30-49;7138;1;2.7200972107411356e-05;38018718;0.00018774962375112174;1;0;Young +20396;Poland;F;Managers;Information and communication   ;Y50-64;1735;1;6.611612021064543e-06;38018718;4.563541569181791e-05;0;1;Old +20397;Poland;F;Managers;Financial and insurance activities   ;Y15-29;3434;1;1.3086037856101232e-05;38018718;9.032392938657216e-05;1;0;Young +20398;Poland;F;Managers;Financial and insurance activities   ;Y30-49;15424;1;5.877665925815533e-05;38018718;0.00040569490007527344;1;0;Young +20399;Poland;F;Managers;Financial and insurance activities   ;Y50-64;4997;1;1.9042204766143814e-05;38018718;0.00013143525775908594;0;1;Old +20400;Poland;F;Managers;Real estate activities   ;Y15-29;413;1;1.5738304119306376e-06;38018718;1.0863070132980286e-05;1;0;Young +20401;Poland;F;Managers;Real estate activities   ;Y30-49;3319;1;1.2647804206290038e-05;38018718;8.729910356261881e-05;1;0;Young +20402;Poland;F;Managers;Real estate activities   ;Y50-64;3540;1;1.3489974959405464e-05;38018718;9.31120297112596e-05;0;1;Old +20403;Poland;F;Managers;Real estate activities   ;Y65-84;273;1;1.040328577377879e-06;38018718;7.180673477732732e-06;0;1;Old +20404;Poland;F;Managers;Professional, scientific and technical activities   ;Y15-29;3278;1;1.2491564383313873e-05;38018718;8.622068739929631e-05;1;0;Young +20405;Poland;F;Managers;Professional, scientific and technical activities   ;Y30-49;12297;1;4.6860514710680505e-05;38018718;0.00032344594049699414;1;0;Young +20406;Poland;F;Managers;Professional, scientific and technical activities   ;Y50-64;4681;1;1.7838014911010446e-05;38018718;0.00012312356245152716;0;1;Old +20407;Poland;F;Managers;Professional, scientific and technical activities   ;Y65-84;426;1;1.6233698679962508e-06;38018718;1.1205006965253273e-05;0;1;Old +20408;Poland;F;Managers;Administrative and support service activities   ;Y15-29;1837;1;7.000306214810124e-06;38018718;4.8318304683498274e-05;1;0;Young +20409;Poland;F;Managers;Administrative and support service activities   ;Y30-49;6054;1;2.307014361701714e-05;38018718;0.00015923735250620498;1;0;Young +20410;Poland;F;Managers;Administrative and support service activities   ;Y50-64;2623;1;9.995537943084897e-06;38018718;6.899233161938811e-05;0;1;Old +20411;Poland;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;9602;1;3.659060439553991e-05;38018718;0.00025255980488347873;1;0;Young +20412;Poland;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;40810;1;0.0001555157847721291;38018718;0.0010734186250046622;1;0;Young +20413;Poland;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;21927;1;8.355781947313097e-05;38018718;0.0005767422247115224;0;1;Old +20414;Poland;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;340;1;1.2956473124852705e-06;38018718;8.942963305601204e-06;0;1;Old +20415;Poland;F;Managers;Education   ;Y15-29;1755;1;6.687826568857794e-06;38018718;4.616147235685327e-05;1;0;Young +20416;Poland;F;Managers;Education   ;Y30-49;16777;1;6.393257341636877e-05;38018718;0.00044128263346491587;1;0;Young +20417;Poland;F;Managers;Education   ;Y50-64;11691;1;4.455121391254499e-05;38018718;0.0003075064235464226;0;1;Old +20418;Poland;F;Managers;Education   ;Y65-84;304;1;1.1584611264574184e-06;38018718;7.996061308537548e-06;0;1;Old +20419;Poland;F;Managers;Human health and social work activities   ;Y15-29;1358;1;5.174967795161758e-06;38018718;3.571924755590128e-05;1;0;Young +20420;Poland;F;Managers;Human health and social work activities   ;Y30-49;20005;1;7.623360143019952e-05;38018718;0.0005261881792016238;1;0;Young +20421;Poland;F;Managers;Human health and social work activities   ;Y50-64;12505;1;4.765314600773032e-05;38018718;0.00032891692981336195;0;1;Old +20422;Poland;F;Managers;Human health and social work activities   ;Y65-84;303;1;1.1546503990677558e-06;38018718;7.969758475285778e-06;0;1;Old +20423;Poland;F;Managers;Arts, entertainment and recreation   ;Y15-29;1041;1;3.966967212638726e-06;38018718;2.7381249415090744e-05;1;0;Young +20424;Poland;F;Managers;Arts, entertainment and recreation   ;Y30-49;5043;1;1.9217498226068294e-05;38018718;0.00013264518808866728;1;0;Young +20425;Poland;F;Managers;Arts, entertainment and recreation   ;Y50-64;3625;1;1.3813886787526782e-05;38018718;9.53477705376599e-05;0;1;Old +20426;Poland;F;Managers;Other service activities   ;Y15-29;636;1;2.4236226198253887e-06;38018718;1.6728601948124605e-05;1;0;Young +20427;Poland;F;Managers;Other service activities   ;Y30-49;2303;1;8.776105178392876e-06;38018718;6.057542497882228e-05;1;0;Young +20428;Poland;F;Managers;Other service activities   ;Y50-64;1399;1;5.3312076181379226e-06;38018718;3.679766371922378e-05;0;1;Old +20429;Poland;F;Managers;Not stated   ;Y15-29;512;1;1.951092423507231e-06;38018718;1.3467050624905343e-05;1;0;Young +20430;Poland;F;Managers;Not stated   ;Y30-49;1600;1;6.097163823460097e-06;38018718;4.20845332028292e-05;1;0;Young +20431;Poland;F;Managers;Not stated   ;Y50-64;821;1;3.128607186912962e-06;38018718;2.159462609970173e-05;0;1;Old +20432;Poland;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;1926;1;7.339460952490092e-06;38018718;5.0659256842905645e-05;1;0;Young +20433;Poland;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;4646;1;1.7704639452372257e-05;38018718;0.00012220296328771527;1;0;Young +20434;Poland;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;2348;1;8.947587910927692e-06;38018718;6.175905247515184e-05;0;1;Old +20435;Poland;F;Professionals;Mining and quarrying   ;Y15-29;831;1;3.1667144608095878e-06;38018718;2.1857654432219415e-05;1;0;Young +20436;Poland;F;Professionals;Mining and quarrying   ;Y30-49;2853;1;1.0872005242707285e-05;38018718;7.50419832672948e-05;1;0;Young +20437;Poland;F;Professionals;Mining and quarrying   ;Y50-64;1684;1;6.417264924191752e-06;38018718;4.429397119597773e-05;0;1;Old +20438;Poland;F;Professionals;Manufacturing   ;Y15-29;26886;1;0.0001024552165984676;38018718;0.0007071779748070411;1;0;Young +20439;Poland;F;Professionals;Manufacturing   ;Y30-49;50271;1;0.00019156907660572659;38018718;0.0013222697303996416;1;0;Young +20440;Poland;F;Professionals;Manufacturing   ;Y50-64;14144;1;5.3898928199387256e-05;38018718;0.00037202727351301007;0;1;Old +20441;Poland;F;Professionals;Manufacturing   ;Y65-84;501;1;1.9091744222209427e-06;38018718;1.3177719459135892e-05;0;1;Old +20442;Poland;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2124;1;8.09398497564328e-06;38018718;5.586721782675576e-05;1;0;Young +20443;Poland;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;6316;1;2.4068554193108732e-05;38018718;0.00016612869481816826;1;0;Young +20444;Poland;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;3151;1;1.2007602004826728e-05;38018718;8.288022757632175e-05;0;1;Old +20445;Poland;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1418;1;5.403611438541511e-06;38018718;3.729741755100737e-05;1;0;Young +20446;Poland;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3900;1;1.4861836819683985e-05;38018718;0.00010258104968189617;1;0;Young +20447;Poland;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1780;1;6.783094753599357e-06;38018718;4.681904318814748e-05;0;1;Old +20448;Poland;F;Professionals;Construction   ;Y15-29;7684;1;2.9281629262167116e-05;38018718;0.00020211097070658722;1;0;Young +20449;Poland;F;Professionals;Construction   ;Y30-49;11175;1;4.258487857947911e-05;38018718;0.0002939341615885102;1;0;Young +20450;Poland;F;Professionals;Construction   ;Y50-64;5056;1;1.9267037682133906e-05;38018718;0.00013298712492094026;0;1;Old +20451;Poland;F;Professionals;Construction   ;Y65-84;278;1;1.0593822143261918e-06;38018718;7.3121876439915726e-06;0;1;Old +20452;Poland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;22475;1;8.564609808266605e-05;38018718;0.0005911561773334913;1;0;Young +20453;Poland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;39280;1;0.00014968537186594539;38018718;0.0010331752901294568;1;0;Young +20454;Poland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;12734;1;4.8525802579963047e-05;38018718;0.00033494027862801686;0;1;Old +20455;Poland;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1554;1;5.921870363535619e-06;38018718;4.087460287324785e-05;0;1;Old +20456;Poland;F;Professionals;Transportation and storage   ;Y15-29;4778;1;1.8207655467807713e-05;38018718;0.0001256749372769487;1;0;Young +20457;Poland;F;Professionals;Transportation and storage   ;Y30-49;10044;1;3.8274945901770756e-05;38018718;0.0002641856571807603;1;0;Young +20458;Poland;F;Professionals;Transportation and storage   ;Y50-64;4071;1;1.5513471203316283e-05;38018718;0.00010707883416794854;0;1;Old +20459;Poland;F;Professionals;Accommodation and food service activities   ;Y15-29;3643;1;1.3882479880540709e-05;38018718;9.582122153619172e-05;1;0;Young +20460;Poland;F;Professionals;Accommodation and food service activities   ;Y30-49;4970;1;1.8939315126622926e-05;38018718;0.0001307250812612882;1;0;Young +20461;Poland;F;Professionals;Accommodation and food service activities   ;Y50-64;1604;1;6.112406733018747e-06;38018718;4.218974453583627e-05;0;1;Old +20462;Poland;F;Professionals;Information and communication   ;Y15-29;17754;1;6.76556540760691e-05;38018718;0.0004669805015518935;1;0;Young +20463;Poland;F;Professionals;Information and communication   ;Y30-49;24128;1;9.194523045777826e-05;38018718;0.0006346347606986642;1;0;Young +20464;Poland;F;Professionals;Information and communication   ;Y50-64;6016;1;2.2925335976209966e-05;38018718;0.00015823784484263778;0;1;Old +20465;Poland;F;Professionals;Information and communication   ;Y65-84;561;1;2.1378180656006966e-06;38018718;1.4755889454241986e-05;0;1;Old +20466;Poland;F;Professionals;Financial and insurance activities   ;Y15-29;37012;1;0.00014104264214619068;38018718;0.0009735204643144463;1;0;Young +20467;Poland;F;Professionals;Financial and insurance activities   ;Y30-49;66957;1;0.00025515487382963604;38018718;0.0017611588060386465;1;0;Young +20468;Poland;F;Professionals;Financial and insurance activities   ;Y50-64;15114;1;5.759533376735994e-05;38018718;0.0003975410217672253;0;1;Old +20469;Poland;F;Professionals;Real estate activities   ;Y15-29;2111;1;8.044445519577666e-06;38018718;5.552528099448277e-05;1;0;Young +20470;Poland;F;Professionals;Real estate activities   ;Y30-49;5228;1;1.9922482793155867e-05;38018718;0.0001375112122402444;1;0;Young +20471;Poland;F;Professionals;Real estate activities   ;Y50-64;3984;1;1.518193792041564e-05;38018718;0.00010479048767504469;0;1;Old +20472;Poland;F;Professionals;Real estate activities   ;Y65-84;189;1;7.202274766462239e-07;38018718;4.971235484584199e-06;0;1;Old +20473;Poland;F;Professionals;Professional, scientific and technical activities   ;Y15-29;36542;1;0.0001392516002730493;38018718;0.0009611581326861153;1;0;Young +20474;Poland;F;Professionals;Professional, scientific and technical activities   ;Y30-49;54869;1;0.00020909080114339502;38018718;0.001443210157691272;1;0;Young +20475;Poland;F;Professionals;Professional, scientific and technical activities   ;Y50-64;20565;1;7.836760876841056e-05;38018718;0.000540917765822614;0;1;Old +20476;Poland;F;Professionals;Professional, scientific and technical activities   ;Y65-84;2602;1;9.915512667901982e-06;38018718;6.843997212110098e-05;0;1;Old +20477;Poland;F;Professionals;Administrative and support service activities   ;Y15-29;6784;1;2.585197461147081e-05;38018718;0.00017843842077999578;1;0;Young +20478;Poland;F;Professionals;Administrative and support service activities   ;Y30-49;6386;1;2.433530511038511e-05;38018718;0.00016796989314579202;1;0;Young +20479;Poland;F;Professionals;Administrative and support service activities   ;Y50-64;1860;1;7.087952944772363e-06;38018718;4.892326984828894e-05;0;1;Old +20480;Poland;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;26640;1;0.00010151777766061061;38018718;0.0007007074778271061;1;0;Young +20481;Poland;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;69979;1;0.0002666708920011963;38018718;0.0018406459681254903;1;0;Young +20482;Poland;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;27508;1;0.00010482548903483772;38018718;0.000723538337089641;0;1;Old +20483;Poland;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;1299;1;4.950134879171666e-06;38018718;3.416738039404695e-05;0;1;Old +20484;Poland;F;Professionals;Education   ;Y15-29;97100;1;0.0003700216295362346;38018718;0.002554005108746697;1;0;Young +20485;Poland;F;Professionals;Education   ;Y30-49;382361;1;0.0014570735354387664;38018718;0.010057177624979359;1;0;Young +20486;Poland;F;Professionals;Education   ;Y50-64;120784;1;0.0004602748970330027;38018718;0.003176961411481576;0;1;Old +20487;Poland;F;Professionals;Education   ;Y65-84;4374;1;1.666812160238404e-05;38018718;0.00011504859264323432;0;1;Old +20488;Poland;F;Professionals;Human health and social work activities   ;Y15-29;44754;1;0.00017054529359695824;38018718;0.0011771569993496362;1;0;Young +20489;Poland;F;Professionals;Human health and social work activities   ;Y30-49;156685;1;0.0005970838210492783;38018718;0.004121259428053308;1;0;Young +20490;Poland;F;Professionals;Human health and social work activities   ;Y50-64;73027;1;0.0002782859890848878;38018718;0.0019208170038768797;0;1;Old +20491;Poland;F;Professionals;Human health and social work activities   ;Y65-84;8319;1;3.170144115460284e-05;38018718;0.00021881326982146006;0;1;Old +20492;Poland;F;Professionals;Arts, entertainment and recreation   ;Y15-29;7814;1;2.9777023822823247e-05;38018718;0.0002055303390293171;1;0;Young +20493;Poland;F;Professionals;Arts, entertainment and recreation   ;Y30-49;16612;1;6.330380339707445e-05;38018718;0.0004369426659783741;1;0;Young +20494;Poland;F;Professionals;Arts, entertainment and recreation   ;Y50-64;8139;1;3.101551022446358e-05;38018718;0.00021407875983614177;0;1;Old +20495;Poland;F;Professionals;Arts, entertainment and recreation   ;Y65-84;685;1;2.610348261918854e-06;38018718;1.801744077746125e-05;0;1;Old +20496;Poland;F;Professionals;Other service activities   ;Y15-29;4092;1;1.5593496478499196e-05;38018718;0.00010763119366623566;1;0;Young +20497;Poland;F;Professionals;Other service activities   ;Y30-49;4862;1;1.852775656853937e-05;38018718;0.0001278843752700972;1;0;Young +20498;Poland;F;Professionals;Other service activities   ;Y50-64;1711;1;6.520154563712641e-06;38018718;4.500414769377547e-05;0;1;Old +20499;Poland;F;Professionals;Other service activities   ;Y65-84;265;1;1.0098427582605786e-06;38018718;6.970250811718586e-06;0;1;Old +20500;Poland;F;Professionals;Not stated   ;Y15-29;2321;1;8.844698271406803e-06;38018718;6.10488759773541e-05;1;0;Young +20501;Poland;F;Professionals;Not stated   ;Y30-49;3774;1;1.4381685168586503e-05;38018718;9.926689269217336e-05;1;0;Young +20502;Poland;F;Professionals;Not stated   ;Y50-64;1403;1;5.346450527696572e-06;38018718;3.690287505223085e-05;0;1;Old +20503;Poland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;4013;1;1.5292449014715856e-05;38018718;0.00010555326983934597;1;0;Young +20504;Poland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;13439;1;5.121236538967515e-05;38018718;0.0003534837760705135;1;0;Young +20505;Poland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;7744;1;2.951027290554687e-05;38018718;0.0002036891407016933;0;1;Old +20506;Poland;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;233;1;8.878994817913766e-07;38018718;6.128560147662002e-06;0;1;Old +20507;Poland;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;651;1;2.480783530670327e-06;38018718;1.7123144446901128e-05;1;0;Young +20508;Poland;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;3118;1;1.1881848000967864e-05;38018718;8.20122340790134e-05;1;0;Young +20509;Poland;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;2101;1;8.00633824568104e-06;38018718;5.526225266196509e-05;0;1;Old +20510;Poland;F;Technicians and associate professionals;Manufacturing   ;Y15-29;36140;1;0.00013771968786240493;38018718;0.0009505843937189045;1;0;Young +20511;Poland;F;Technicians and associate professionals;Manufacturing   ;Y30-49;79760;1;0.0003039436165994858;38018718;0.0020979139801610355;1;0;Young +20512;Poland;F;Technicians and associate professionals;Manufacturing   ;Y50-64;31351;1;0.00011947011439331094;38018718;0.0008246201252761863;0;1;Old +20513;Poland;F;Technicians and associate professionals;Manufacturing   ;Y65-84;699;1;2.66369844537413e-06;38018718;1.8385680442986005e-05;0;1;Old +20514;Poland;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;1158;1;4.412822317229245e-06;38018718;3.0458680905547632e-05;1;0;Young +20515;Poland;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;5002;1;1.906125840309213e-05;38018718;0.00013156677192534478;1;0;Young +20516;Poland;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;3823;1;1.4568410810679969e-05;38018718;0.00010055573152151001;0;1;Old +20517;Poland;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1934;1;7.369946771607392e-06;38018718;5.086967950891979e-05;1;0;Young +20518;Poland;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;4345;1;1.6557610508083826e-05;38018718;0.00011428581047893304;1;0;Young +20519;Poland;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2990;1;1.1394074895091056e-05;38018718;7.864547142278705e-05;0;1;Old +20520;Poland;F;Technicians and associate professionals;Construction   ;Y15-29;6487;1;2.472018857674103e-05;38018718;0.0001706264793042206;1;0;Young +20521;Poland;F;Technicians and associate professionals;Construction   ;Y30-49;12637;1;4.8156162023165776e-05;38018718;0.00033238890380259535;1;0;Young +20522;Poland;F;Technicians and associate professionals;Construction   ;Y50-64;6647;1;2.532990495908704e-05;38018718;0.00017483493262450354;0;1;Old +20523;Poland;F;Technicians and associate professionals;Construction   ;Y65-84;251;1;9.564925748053026e-07;38018718;6.60201114619383e-06;0;1;Old +20524;Poland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;36902;1;0.00014062346213332782;38018718;0.0009706271526567519;1;0;Young +20525;Poland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;63460;1;0.0002418287601479861;38018718;0.001669177798157213;1;0;Young +20526;Poland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;22874;1;8.71665783111414e-05;38018718;0.0006016510078009469;0;1;Old +20527;Poland;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1172;1;4.466172500684521e-06;38018718;3.082692057107239e-05;0;1;Old +20528;Poland;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;8739;1;3.330194665826112e-05;38018718;0.00022986045978720272;1;0;Young +20529;Poland;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;19068;1;7.26629498660857e-05;38018718;0.0005015424244447169;1;0;Young +20530;Poland;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;7062;1;2.6911356825797002e-05;38018718;0.00018575060842398737;0;1;Old +20531;Poland;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;3355;1;1.278499039231789e-05;38018718;8.824600555968247e-05;1;0;Young +20532;Poland;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;6215;1;2.3683670726752815e-05;38018718;0.00016347210865973966;1;0;Young +20533;Poland;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;3170;1;1.2080005825230317e-05;38018718;8.337998140810534e-05;0;1;Old +20534;Poland;F;Technicians and associate professionals;Information and communication   ;Y15-29;6383;1;2.4323872928216125e-05;38018718;0.0001678909846460367;1;0;Young +20535;Poland;F;Technicians and associate professionals;Information and communication   ;Y30-49;8281;1;3.155663351379566e-05;38018718;0.00021781376215789286;1;0;Young +20536;Poland;F;Technicians and associate professionals;Information and communication   ;Y50-64;2696;1;1.0273721042530263e-05;38018718;7.091243844676719e-05;0;1;Old +20537;Poland;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;19520;1;7.438539864621318e-05;38018718;0.0005134313050745162;1;0;Young +20538;Poland;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;31820;1;0.00012125734553906268;38018718;0.0008369561540712656;1;0;Young +20539;Poland;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;13998;1;5.334256200049652e-05;38018718;0.00036818705985825194;0;1;Old +20540;Poland;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;468;1;1.7834204183620783e-06;38018718;1.230972596182754e-05;0;1;Old +20541;Poland;F;Technicians and associate professionals;Real estate activities   ;Y15-29;4902;1;1.8680185664125872e-05;38018718;0.00012893648860016796;1;0;Young +20542;Poland;F;Technicians and associate professionals;Real estate activities   ;Y30-49;13746;1;5.238225869830156e-05;38018718;0.0003615587458788063;1;0;Young +20543;Poland;F;Technicians and associate professionals;Real estate activities   ;Y50-64;9322;1;3.552360072643439e-05;38018718;0.0002451950115729836;0;1;Old +20544;Poland;F;Technicians and associate professionals;Real estate activities   ;Y65-84;419;1;1.5966947762686128e-06;38018718;1.1020887132490896e-05;0;1;Old +20545;Poland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;25838;1;9.846157429410124e-05;38018718;0.000679612605559188;1;0;Young +20546;Poland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;40251;1;0.0001533855881613077;38018718;0.0010587153412169236;1;0;Young +20547;Poland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;17055;1;6.499195563069497e-05;38018718;0.00044859482110890745;0;1;Old +20548;Poland;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;1112;1;4.237528857304767e-06;38018718;2.924875057596629e-05;0;1;Old +20549;Poland;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;3887;1;1.4812297363618373e-05;38018718;0.00010223911284962318;1;0;Young +20550;Poland;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;5127;1;1.953759932679995e-05;38018718;0.0001348546260818158;1;0;Young +20551;Poland;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2372;1;9.039045368279594e-06;38018718;6.239032047319428e-05;0;1;Old +20552;Poland;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;36142;1;0.00013772730931718426;38018718;0.000950636999385408;1;0;Young +20553;Poland;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;91351;1;0.00034811375777306456;38018718;0.002402790120382281;1;0;Young +20554;Poland;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;41739;1;0.0001590559505171256;38018718;0.001097853957095555;0;1;Old +20555;Poland;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;447;1;1.7033951431791645e-06;38018718;1.1757366463540407e-05;0;1;Old +20556;Poland;F;Technicians and associate professionals;Education   ;Y15-29;8897;1;3.39040415858278e-05;38018718;0.0002340163074409821;1;0;Young +20557;Poland;F;Technicians and associate professionals;Education   ;Y30-49;20035;1;7.63479232518894e-05;38018718;0.0005269772641991768;1;0;Young +20558;Poland;F;Technicians and associate professionals;Education   ;Y50-64;13506;1;5.146768412478254e-05;38018718;0.00035524606589838195;0;1;Old +20559;Poland;F;Technicians and associate professionals;Education   ;Y65-84;516;1;1.9663353330658812e-06;38018718;1.3572261957912415e-05;0;1;Old +20560;Poland;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;35882;1;0.000136736520195872;38018718;0.0009437982627399482;1;0;Young +20561;Poland;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;89886;1;0.00034253104214720893;38018718;0.0023642564696684408;1;0;Young +20562;Poland;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;51678;1;0.0001969307700429818;38018718;0.0013592778167848794;0;1;Old +20563;Poland;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;1654;1;6.302943102501875e-06;38018718;4.3504886198424684e-05;0;1;Old +20564;Poland;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;9111;1;3.471953724721559e-05;38018718;0.0002396451137568605;1;0;Young +20565;Poland;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;16271;1;6.200434535719953e-05;38018718;0.00042797339983952114;1;0;Young +20566;Poland;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;8922;1;3.399930977056937e-05;38018718;0.0002346738782722763;0;1;Old +20567;Poland;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;411;1;1.5662089571513124e-06;38018718;1.081046446647675e-05;0;1;Old +20568;Poland;F;Technicians and associate professionals;Other service activities   ;Y15-29;3491;1;1.3303249317311999e-05;38018718;9.182319088192296e-05;1;0;Young +20569;Poland;F;Technicians and associate professionals;Other service activities   ;Y30-49;5233;1;1.9941536430104178e-05;38018718;0.00013764272640650325;1;0;Young +20570;Poland;F;Technicians and associate professionals;Other service activities   ;Y50-64;2977;1;1.1344535439025442e-05;38018718;7.830353459051407e-05;0;1;Old +20571;Poland;F;Technicians and associate professionals;Other service activities   ;Y65-84;468;1;1.7834204183620783e-06;38018718;1.230972596182754e-05;0;1;Old +20572;Poland;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;595;1;2.2673827968492233e-06;38018718;1.5650185784802108e-05;1;0;Young +20573;Poland;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;828;1;3.1552822786406e-06;38018718;2.177874593246411e-05;1;0;Young +20574;Poland;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;606;1;2.3093007981355115e-06;38018718;1.5939516950571557e-05;0;1;Old +20575;Poland;F;Technicians and associate professionals;Not stated   ;Y15-29;2786;1;1.0616686507599894e-05;38018718;7.327969343942634e-05;1;0;Young +20576;Poland;F;Technicians and associate professionals;Not stated   ;Y30-49;4393;1;1.6740525422787627e-05;38018718;0.0001155483464750179;1;0;Young +20577;Poland;F;Technicians and associate professionals;Not stated   ;Y50-64;1895;1;7.221328403410552e-06;38018718;4.984386901210083e-05;0;1;Old +20578;Poland;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;2062;1;7.8577198774842e-06;38018718;5.4236442165146125e-05;1;0;Young +20579;Poland;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;3624;1;1.381007606013712e-05;38018718;9.532146770440813e-05;1;0;Young +20580;Poland;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;2104;1;8.017770427850027e-06;38018718;5.5341161161720394e-05;0;1;Old +20581;Poland;F;Clerical support workers;Mining and quarrying   ;Y15-29;801;1;3.052392639119711e-06;38018718;2.1068569434666367e-05;1;0;Young +20582;Poland;F;Clerical support workers;Mining and quarrying   ;Y30-49;3256;1;1.2407728380741298e-05;38018718;8.564202506775742e-05;1;0;Young +20583;Poland;F;Clerical support workers;Mining and quarrying   ;Y50-64;2271;1;8.654161901923675e-06;38018718;5.973373431476569e-05;0;1;Old +20584;Poland;F;Clerical support workers;Manufacturing   ;Y15-29;23594;1;8.991030203169845e-05;38018718;0.0006205890477422201;1;0;Young +20585;Poland;F;Clerical support workers;Manufacturing   ;Y30-49;41092;1;0.00015659040989601393;38018718;0.0010808360239816608;1;0;Young +20586;Poland;F;Clerical support workers;Manufacturing   ;Y50-64;16217;1;6.179856607815774e-05;38018718;0.0004265530468439257;0;1;Old +20587;Poland;F;Clerical support workers;Manufacturing   ;Y65-84;212;1;8.078742066084628e-07;38018718;5.576200649374868e-06;0;1;Old +20588;Poland;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1306;1;4.976809970899304e-06;38018718;3.435150022680933e-05;1;0;Young +20589;Poland;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4336;1;1.6523313961576864e-05;38018718;0.00011404908497966712;1;0;Young +20590;Poland;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3010;1;1.1470289442884308e-05;38018718;7.917152808782242e-05;0;1;Old +20591;Poland;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2126;1;8.101606430422605e-06;38018718;5.591982349325929e-05;1;0;Young +20592;Poland;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3068;1;1.1691311631484735e-05;38018718;8.069709241642498e-05;1;0;Young +20593;Poland;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1762;1;6.714501660585431e-06;38018718;4.6345592189615654e-05;0;1;Old +20594;Poland;F;Clerical support workers;Construction   ;Y15-29;6832;1;2.6034889526174614e-05;38018718;0.00017970095677608068;1;0;Young +20595;Poland;F;Clerical support workers;Construction   ;Y30-49;8918;1;3.398406686101072e-05;38018718;0.00023456866693926924;1;0;Young +20596;Poland;F;Clerical support workers;Construction   ;Y50-64;3851;1;1.4675111177590521e-05;38018718;0.00010129221085255953;0;1;Old +20597;Poland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;24833;1;9.463179326749036e-05;38018718;0.0006531782581411609;1;0;Young +20598;Poland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;34540;1;0.00013162252403894483;38018718;0.0009084998605160753;1;0;Young +20599;Poland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9762;1;3.720032077788592e-05;38018718;0.00025676825820376164;0;1;Old +20600;Poland;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;224;1;8.536029352844136e-07;38018718;5.891834648396087e-06;0;1;Old +20601;Poland;F;Clerical support workers;Transportation and storage   ;Y15-29;17289;1;6.588366583987601e-05;38018718;0.00045474968408982125;1;0;Young +20602;Poland;F;Clerical support workers;Transportation and storage   ;Y30-49;43099;1;0.0001642385397670667;38018718;0.0011336258103179597;1;0;Young +20603;Poland;F;Clerical support workers;Transportation and storage   ;Y50-64;19057;1;7.262103186479942e-05;38018718;0.0005012530932789475;0;1;Old +20604;Poland;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;10129;1;3.8598857729892075e-05;38018718;0.00026642139800716057;1;0;Young +20605;Poland;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;7851;1;2.9918020736240762e-05;38018718;0.0002065035438596325;1;0;Young +20606;Poland;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;2624;1;9.99934867047456e-06;38018718;6.901863445263988e-05;0;1;Old +20607;Poland;F;Clerical support workers;Information and communication   ;Y15-29;7140;1;2.720859356219068e-05;38018718;0.0001878022294176253;1;0;Young +20608;Poland;F;Clerical support workers;Information and communication   ;Y30-49;7310;1;2.7856417218433317e-05;38018718;0.0001922737110704259;1;0;Young +20609;Poland;F;Clerical support workers;Information and communication   ;Y50-64;2837;1;1.0811033604472685e-05;38018718;7.462113793526652e-05;0;1;Old +20610;Poland;F;Clerical support workers;Financial and insurance activities   ;Y15-29;14768;1;5.627682209053669e-05;38018718;0.0003884402414621135;1;0;Young +20611;Poland;F;Clerical support workers;Financial and insurance activities   ;Y30-49;22523;1;8.582901299736986e-05;38018718;0.0005924187133295762;1;0;Young +20612;Poland;F;Clerical support workers;Financial and insurance activities   ;Y50-64;10565;1;4.0260334871784955e-05;38018718;0.0002778894333049315;0;1;Old +20613;Poland;F;Clerical support workers;Real estate activities   ;Y15-29;3918;1;1.4930429912697912e-05;38018718;0.00010305450068042799;1;0;Young +20614;Poland;F;Clerical support workers;Real estate activities   ;Y30-49;8019;1;3.055822293770407e-05;38018718;0.00021092241984592959;1;0;Young +20615;Poland;F;Clerical support workers;Real estate activities   ;Y50-64;7066;1;2.6926599735355652e-05;38018718;0.00018585581975699442;0;1;Old +20616;Poland;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;14590;1;5.559851261517676e-05;38018718;0.00038375833714329873;1;0;Young +20617;Poland;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;13010;1;4.957756333950991e-05;38018718;0.0003421998606055049;1;0;Young +20618;Poland;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;4970;1;1.8939315126622926e-05;38018718;0.0001307250812612882;0;1;Old +20619;Poland;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;221;1;8.421707531154259e-07;38018718;5.812926148640782e-06;0;1;Old +20620;Poland;F;Clerical support workers;Administrative and support service activities   ;Y15-29;10662;1;4.062997542858222e-05;38018718;0.0002804408081303531;1;0;Young +20621;Poland;F;Clerical support workers;Administrative and support service activities   ;Y30-49;8157;1;3.108410331747751e-05;38018718;0.0002145522108346736;1;0;Young +20622;Poland;F;Clerical support workers;Administrative and support service activities   ;Y50-64;2800;1;1.067003669105517e-05;38018718;7.364793310495109e-05;0;1;Old +20623;Poland;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;33816;1;0.00012886355740882914;38018718;0.0008894566092417951;1;0;Young +20624;Poland;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;39752;1;0.00015148403519386612;38018718;0.0010455902274242913;1;0;Young +20625;Poland;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;20599;1;7.849717349965909e-05;38018718;0.0005418120621531741;0;1;Old +20626;Poland;F;Clerical support workers;Education   ;Y15-29;13419;1;5.11361508418819e-05;38018718;0.0003529577194054781;1;0;Young +20627;Poland;F;Clerical support workers;Education   ;Y30-49;19316;1;7.360801025872202e-05;38018718;0.0005080655270911555;1;0;Young +20628;Poland;F;Clerical support workers;Education   ;Y50-64;12530;1;4.774841419247188e-05;38018718;0.0003295745006446561;0;1;Old +20629;Poland;F;Clerical support workers;Education   ;Y65-84;306;1;1.1660825812367436e-06;38018718;8.048666975041084e-06;0;1;Old +20630;Poland;F;Clerical support workers;Human health and social work activities   ;Y15-29;11041;1;4.207424110926433e-05;38018718;0.00029040958193277323;1;0;Young +20631;Poland;F;Clerical support workers;Human health and social work activities   ;Y30-49;17609;1;6.710309860456803e-05;38018718;0.00046316659073038707;1;0;Young +20632;Poland;F;Clerical support workers;Human health and social work activities   ;Y50-64;11595;1;4.418538408313739e-05;38018718;0.00030498135155425284;0;1;Old +20633;Poland;F;Clerical support workers;Human health and social work activities   ;Y65-84;240;1;9.145745735190145e-07;38018718;6.312679980424379e-06;0;1;Old +20634;Poland;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;4747;1;1.8089522918728174e-05;38018718;0.00012485954944614386;1;0;Young +20635;Poland;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;5248;1;1.999869734094912e-05;38018718;0.00013803726890527975;1;0;Young +20636;Poland;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;2845;1;1.0841519423589984e-05;38018718;7.483156060128066e-05;0;1;Old +20637;Poland;F;Clerical support workers;Other service activities   ;Y15-29;3174;1;1.2095248734788968e-05;38018718;8.348519274111242e-05;1;0;Young +20638;Poland;F;Clerical support workers;Other service activities   ;Y30-49;4031;1;1.5361042107729783e-05;38018718;0.00010602672083787781;1;0;Young +20639;Poland;F;Clerical support workers;Other service activities   ;Y50-64;1753;1;6.680205114078469e-06;38018718;4.6108866690349737e-05;0;1;Old +20640;Poland;F;Clerical support workers;Not stated   ;Y15-29;2164;1;8.246414071229782e-06;38018718;5.691933115682649e-05;1;0;Young +20641;Poland;F;Clerical support workers;Not stated   ;Y30-49;2156;1;8.215928252112481e-06;38018718;5.6708908490812344e-05;1;0;Young +20642;Poland;F;Clerical support workers;Not stated   ;Y50-64;782;1;2.9799888187161225e-06;38018718;2.056881560288277e-05;0;1;Old +20643;Poland;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2522;1;9.610654476728977e-06;38018718;6.633574546095952e-05;1;0;Young +20644;Poland;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;6719;1;2.5604277331142745e-05;38018718;0.00017672873661863086;1;0;Young +20645;Poland;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;3535;1;1.3470921322457151e-05;38018718;9.298051554500075e-05;0;1;Old +20646;Poland;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;304;1;1.1584611264574184e-06;38018718;7.996061308537548e-06;0;1;Old +20647;Poland;F;Service and sales workers;Mining and quarrying   ;Y30-49;604;1;2.3016793433561867e-06;38018718;1.5886911284068022e-05;1;0;Young +20648;Poland;F;Service and sales workers;Mining and quarrying   ;Y50-64;358;1;1.3642404054991967e-06;38018718;9.416414304133033e-06;0;1;Old +20649;Poland;F;Service and sales workers;Manufacturing   ;Y15-29;29148;1;0.00011107508195388431;38018718;0.0007666749836225409;1;0;Young +20650;Poland;F;Service and sales workers;Manufacturing   ;Y30-49;49230;1;0.00018760210939308786;38018718;0.001294888480984551;1;0;Young +20651;Poland;F;Service and sales workers;Manufacturing   ;Y50-64;16121;1;6.143273624875013e-05;38018718;0.0004240279748517559;0;1;Old +20652;Poland;F;Service and sales workers;Manufacturing   ;Y65-84;658;1;2.507458622397965e-06;38018718;1.7307264279663507e-05;0;1;Old +20653;Poland;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1006;1;3.833591754000536e-06;38018718;2.646065025127886e-05;1;0;Young +20654;Poland;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1643;1;6.261025101215587e-06;38018718;4.321555503265523e-05;1;0;Young +20655;Poland;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;863;1;3.2886577372787897e-06;38018718;2.2699345096276e-05;0;1;Old +20656;Poland;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;192;1;7.316596588152116e-07;38018718;5.050143984339503e-06;1;0;Young +20657;Poland;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;767;1;2.922827907871184e-06;38018718;2.0174273104106245e-05;1;0;Young +20658;Poland;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;605;1;2.3054900707458493e-06;38018718;1.591321411731979e-05;0;1;Old +20659;Poland;F;Service and sales workers;Construction   ;Y15-29;1156;1;4.40520086244992e-06;38018718;3.0406075239044094e-05;1;0;Young +20660;Poland;F;Service and sales workers;Construction   ;Y30-49;2584;1;9.846919574888057e-06;38018718;6.796652112256915e-05;1;0;Young +20661;Poland;F;Service and sales workers;Construction   ;Y50-64;921;1;3.5096799258792185e-06;38018718;2.4224909424878557e-05;0;1;Old +20662;Poland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;307795;1;0.0011729228369011877;38018718;0.008095880560728007;1;0;Young +20663;Poland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;466043;1;0.0017759628248605087;38018718;0.012258251317153829;1;0;Young +20664;Poland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;138872;1;0.0005292033340572191;38018718;0.00365272705933956;0;1;Old +20665;Poland;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;6199;1;2.3622699088518213e-05;38018718;0.00016305126332771136;0;1;Old +20666;Poland;F;Service and sales workers;Transportation and storage   ;Y15-29;2611;1;9.949809214408946e-06;38018718;6.867669762036689e-05;1;0;Young +20667;Poland;F;Service and sales workers;Transportation and storage   ;Y30-49;7714;1;2.939595108385699e-05;38018718;0.00020290005570414027;1;0;Young +20668;Poland;F;Service and sales workers;Transportation and storage   ;Y50-64;3574;1;1.3619539690653991e-05;38018718;9.400632604181972e-05;0;1;Old +20669;Poland;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;68867;1;0.00026243336314389154;38018718;0.001811397217549524;1;0;Young +20670;Poland;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;64026;1;0.0002439856318505351;38018718;0.001684065201777714;1;0;Young +20671;Poland;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;21637;1;8.245270853012882e-05;38018718;0.0005691144030685096;0;1;Old +20672;Poland;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;775;1;2.9533137269884843e-06;38018718;2.0384695770120392e-05;0;1;Old +20673;Poland;F;Service and sales workers;Information and communication   ;Y15-29;9593;1;3.655630784903294e-05;38018718;0.0002523230793842128;1;0;Young +20674;Poland;F;Service and sales workers;Information and communication   ;Y30-49;4590;1;1.7491238718551155e-05;38018718;0.00012073000462561626;1;0;Young +20675;Poland;F;Service and sales workers;Information and communication   ;Y50-64;1254;1;4.7786521466368505e-06;38018718;3.298375289771738e-05;0;1;Old +20676;Poland;F;Service and sales workers;Financial and insurance activities   ;Y15-29;3213;1;1.2243867102985808e-05;38018718;8.451100323793138e-05;1;0;Young +20677;Poland;F;Service and sales workers;Financial and insurance activities   ;Y30-49;2968;1;1.131023889251848e-05;38018718;7.806680909124816e-05;1;0;Young +20678;Poland;F;Service and sales workers;Financial and insurance activities   ;Y50-64;765;1;2.9152064530918587e-06;38018718;2.012166743760271e-05;0;1;Old +20679;Poland;F;Service and sales workers;Real estate activities   ;Y15-29;396;1;1.509048046306374e-06;38018718;1.0415921967700226e-05;1;0;Young +20680;Poland;F;Service and sales workers;Real estate activities   ;Y30-49;2556;1;9.740219207977504e-06;38018718;6.723004179151965e-05;1;0;Young +20681;Poland;F;Service and sales workers;Real estate activities   ;Y50-64;2712;1;1.0334692680764865e-05;38018718;7.133328377879548e-05;0;1;Old +20682;Poland;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;3370;1;1.2842151303162829e-05;38018718;8.8640548058459e-05;1;0;Young +20683;Poland;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;1965;1;7.488079320686932e-06;38018718;5.168506733972461e-05;1;0;Young +20684;Poland;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;636;1;2.4236226198253887e-06;38018718;1.6728601948124605e-05;0;1;Old +20685;Poland;F;Service and sales workers;Administrative and support service activities   ;Y15-29;9385;1;3.5763676551983134e-05;38018718;0.000246852090067845;1;0;Young +20686;Poland;F;Service and sales workers;Administrative and support service activities   ;Y30-49;10884;1;4.1475956909087306e-05;38018718;0.0002862800371122456;1;0;Young +20687;Poland;F;Service and sales workers;Administrative and support service activities   ;Y50-64;7443;1;2.8363243961258438e-05;38018718;0.00019577198789291108;0;1;Old +20688;Poland;F;Service and sales workers;Administrative and support service activities   ;Y65-84;268;1;1.0212749404295662e-06;38018718;7.04915931147389e-06;0;1;Old +20689;Poland;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;5091;1;1.9400413140772096e-05;38018718;0.00013390772408475215;1;0;Young +20690;Poland;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;11670;1;4.447118863736208e-05;38018718;0.00030695406404813546;1;0;Young +20691;Poland;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;4164;1;1.5867868850554904e-05;38018718;0.00010952499766036298;0;1;Old +20692;Poland;F;Service and sales workers;Education   ;Y15-29;9256;1;3.527209271871666e-05;38018718;0.0002434590245783669;1;0;Young +20693;Poland;F;Service and sales workers;Education   ;Y30-49;34515;1;0.00013152725585420326;38018718;0.0009078422896847811;1;0;Young +20694;Poland;F;Service and sales workers;Education   ;Y50-64;25600;1;9.755462117536155e-05;38018718;0.0006733525312452672;0;1;Old +20695;Poland;F;Service and sales workers;Education   ;Y65-84;393;1;1.4976158641373862e-06;38018718;1.033701346794492e-05;0;1;Old +20696;Poland;F;Service and sales workers;Human health and social work activities   ;Y15-29;6708;1;2.5562359329856455e-05;38018718;0.0001764394054528614;1;0;Young +20697;Poland;F;Service and sales workers;Human health and social work activities   ;Y30-49;26304;1;0.000100237373257684;38018718;0.000691869725854512;1;0;Young +20698;Poland;F;Service and sales workers;Human health and social work activities   ;Y50-64;18523;1;7.05861034387196e-05;38018718;0.0004872073803225032;0;1;Old +20699;Poland;F;Service and sales workers;Human health and social work activities   ;Y65-84;469;1;1.787231145751741e-06;38018718;1.2336028795079307e-05;0;1;Old +20700;Poland;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;4770;1;1.8177169648690413e-05;38018718;0.00012546451461093453;1;0;Young +20701;Poland;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;5060;1;1.9282280591692557e-05;38018718;0.00013309233625394734;1;0;Young +20702;Poland;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2703;1;1.0300396134257901e-05;38018718;7.109655827952958e-05;0;1;Old +20703;Poland;F;Service and sales workers;Other service activities   ;Y15-29;52812;1;0.00020125213490285914;38018718;0.0013891052296923848;1;0;Young +20704;Poland;F;Service and sales workers;Other service activities   ;Y30-49;51998;1;0.00019815020280767383;38018718;0.0013676947234254452;1;0;Young +20705;Poland;F;Service and sales workers;Other service activities   ;Y50-64;10074;1;3.838926772346064e-05;38018718;0.00026497474217831334;0;1;Old +20706;Poland;F;Service and sales workers;Other service activities   ;Y65-84;1173;1;4.469983228074183e-06;38018718;3.085322340432415e-05;0;1;Old +20707;Poland;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;872;1;3.3229542837857527e-06;38018718;2.2936070595541913e-05;1;0;Young +20708;Poland;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1638;1;6.241971464267274e-06;38018718;4.308404086639639e-05;1;0;Young +20709;Poland;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;997;1;3.7992952074935727e-06;38018718;2.6223924752012944e-05;0;1;Old +20710;Poland;F;Service and sales workers;Not stated   ;Y15-29;5687;1;2.1671606665010982e-05;38018718;0.00014958421270280602;1;0;Young +20711;Poland;F;Service and sales workers;Not stated   ;Y30-49;6549;1;2.495645367490011e-05;38018718;0.00017225725496583026;1;0;Young +20712;Poland;F;Service and sales workers;Not stated   ;Y50-64;2262;1;8.619865355416711e-06;38018718;5.949700881549977e-05;0;1;Old +20713;Poland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;102848;1;0.00039192569057201504;38018718;0.0027051937942778608;1;0;Young +20714;Poland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;375318;1;0.0014302345824333729;38018718;0.009871926770387155;1;0;Young +20715;Poland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;239438;1;0.0009124329447260242;38018718;0.006297897788136886;0;1;Old +20716;Poland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;42658;1;0.0001625580089882255;38018718;0.00112202626085393;0;1;Old +20717;Poland;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;265;1;1.0098427582605786e-06;38018718;6.970250811718586e-06;0;1;Old +20718;Poland;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;266;1;1.013653485650241e-06;38018718;6.996553644970354e-06;1;0;Young +20719;Poland;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;1098;1;4.184178673849492e-06;38018718;2.8880510910441535e-05;1;0;Young +20720;Poland;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;541;1;2.0616035178074454e-06;38018718;1.4229832789206623e-05;0;1;Old +20721;Poland;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;209;1;7.964420244394752e-07;38018718;5.497292149619564e-06;1;0;Young +20722;Poland;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;947;1;3.608758838010445e-06;38018718;2.490878308942453e-05;1;0;Young +20723;Poland;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2578;1;9.824055210550081e-06;38018718;6.780870412305854e-05;1;0;Young +20724;Poland;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1049;1;3.997453031756026e-06;38018718;2.759167208110489e-05;0;1;Old +20725;Poland;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;194;1;7.392811135945367e-07;38018718;5.10274965084304e-06;1;0;Young +20726;Poland;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;311;1;1.1851362181850563e-06;38018718;8.180181141299925e-06;1;0;Young +20727;Poland;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;162;1;6.173378371253348e-07;38018718;4.261058986786456e-06;0;1;Old +20728;Poland;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;264;1;1.006032030870916e-06;38018718;6.9439479784668175e-06;1;0;Young +20729;Poland;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;1080;1;4.115585580835566e-06;38018718;2.8407059911909707e-05;1;0;Young +20730;Poland;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;563;1;2.1454395203800218e-06;38018718;1.4808495120745523e-05;0;1;Old +20731;Poland;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;480;1;1.829149147038029e-06;38018718;1.2625359960848758e-05;1;0;Young +20732;Poland;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;278;1;1.0593822143261918e-06;38018718;7.3121876439915726e-06;0;1;Old +20733;Poland;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;201;1;7.659562053221747e-07;38018718;5.286869483605417e-06;1;0;Young +20734;Poland;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;375;1;1.4290227711234603e-06;38018718;9.863562469413092e-06;1;0;Young +20735;Poland;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;231;1;8.802780270120515e-07;38018718;6.075954481158465e-06;0;1;Old +20736;Poland;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;194;1;7.392811135945367e-07;38018718;5.10274965084304e-06;1;0;Young +20737;Poland;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;474;1;1.8062847827000537e-06;38018718;1.246754296133815e-05;1;0;Young +20738;Poland;F;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;194;1;7.392811135945367e-07;38018718;5.10274965084304e-06;0;1;Old +20739;Poland;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;719;1;2.739912993167381e-06;38018718;1.891173710802137e-05;1;0;Young +20740;Poland;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;2299;1;8.760862268834226e-06;38018718;6.04702136458152e-05;1;0;Young +20741;Poland;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;798;1;3.0409604569507232e-06;38018718;2.098966093491106e-05;0;1;Old +20742;Poland;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;561;1;2.1378180656006966e-06;38018718;1.4755889454241986e-05;1;0;Young +20743;Poland;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;487;1;1.8558242387656669e-06;38018718;1.2809479793611136e-05;0;1;Old +20744;Poland;F;Craft and related trades workers;Manufacturing   ;Y15-29;52479;1;0.00019998316268210153;38018718;0.0013803463862195459;1;0;Young +20745;Poland;F;Craft and related trades workers;Manufacturing   ;Y30-49;240310;1;0.0009157558990098099;38018718;0.006320833858732428;1;0;Young +20746;Poland;F;Craft and related trades workers;Manufacturing   ;Y50-64;72329;1;0.0002756261013669033;38018718;0.0019024576262671455;0;1;Old +20747;Poland;F;Craft and related trades workers;Manufacturing   ;Y65-84;1401;1;5.338829072917247e-06;38018718;3.6850269385727315e-05;0;1;Old +20748;Poland;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;207;1;7.8882056966015e-07;38018718;5.444686483116027e-06;1;0;Young +20749;Poland;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;222;1;8.459814805050885e-07;38018718;5.839228981892551e-06;0;1;Old +20750;Poland;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;336;1;1.2804044029266203e-06;38018718;8.837751972594131e-06;1;0;Young +20751;Poland;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;176;1;6.706880205806106e-07;38018718;4.629298652311211e-06;0;1;Old +20752;Poland;F;Craft and related trades workers;Construction   ;Y15-29;871;1;3.31914355639609e-06;38018718;2.2909767762290142e-05;1;0;Young +20753;Poland;F;Craft and related trades workers;Construction   ;Y30-49;2755;1;1.0498553958520355e-05;38018718;7.246430560862153e-05;1;0;Young +20754;Poland;F;Craft and related trades workers;Construction   ;Y50-64;1039;1;3.959345757859401e-06;38018718;2.732864374858721e-05;0;1;Old +20755;Poland;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1747;1;6.657340749740493e-06;38018718;4.595104969083913e-05;1;0;Young +20756;Poland;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5511;1;2.100091864443037e-05;38018718;0.0001449549140504948;1;0;Young +20757;Poland;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1993;1;7.594779687597483e-06;38018718;5.242154667077412e-05;0;1;Old +20758;Poland;F;Craft and related trades workers;Transportation and storage   ;Y30-49;1415;1;5.392179256372523e-06;38018718;3.721850905125207e-05;1;0;Young +20759;Poland;F;Craft and related trades workers;Transportation and storage   ;Y50-64;794;1;3.0257175473920732e-06;38018718;2.0884449601903988e-05;0;1;Old +20760;Poland;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;194;1;7.392811135945367e-07;38018718;5.10274965084304e-06;1;0;Young +20761;Poland;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;432;1;1.6462342323342262e-06;38018718;1.1362823964763883e-05;1;0;Young +20762;Poland;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;182;1;6.93552384918586e-07;38018718;4.7871156518218214e-06;0;1;Old +20763;Poland;F;Craft and related trades workers;Information and communication   ;Y15-29;236;1;8.993316639603643e-07;38018718;6.207468647417307e-06;1;0;Young +20764;Poland;F;Craft and related trades workers;Information and communication   ;Y30-49;609;1;2.3207329803044993e-06;38018718;1.6018425450326863e-05;1;0;Young +20765;Poland;F;Craft and related trades workers;Information and communication   ;Y50-64;201;1;7.659562053221747e-07;38018718;5.286869483605417e-06;0;1;Old +20766;Poland;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;260;1;9.907891213122658e-07;38018718;6.838736645459744e-06;1;0;Young +20767;Poland;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;627;1;2.3893260733184253e-06;38018718;1.649187644885869e-05;1;0;Young +20768;Poland;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;241;1;9.18385300908677e-07;38018718;6.3389828136761475e-06;0;1;Old +20769;Poland;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;361;1;1.3756725876681843e-06;38018718;9.495322803888337e-06;1;0;Young +20770;Poland;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;716;1;2.7284808109983934e-06;38018718;1.8832828608266066e-05;1;0;Young +20771;Poland;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;325;1;1.2384864016403321e-06;38018718;8.54842080682468e-06;0;1;Old +20772;Poland;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;300;1;1.1432182168987682e-06;38018718;7.890849975530474e-06;1;0;Young +20773;Poland;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;257;1;9.79356939143278e-07;38018718;6.759828145704439e-06;0;1;Old +20774;Poland;F;Craft and related trades workers;Education   ;Y30-49;287;1;1.0936787608331548e-06;38018718;7.548913143257487e-06;1;0;Young +20775;Poland;F;Craft and related trades workers;Education   ;Y50-64;272;1;1.0365178499882164e-06;38018718;7.154370644480963e-06;0;1;Old +20776;Poland;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;649;1;2.4731620758910016e-06;38018718;1.7070538780397593e-05;1;0;Young +20777;Poland;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;574;1;2.1873575216663095e-06;38018718;1.5097826286514974e-05;0;1;Old +20778;Poland;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;308;1;1.1737040360160685e-06;38018718;8.101272641544621e-06;1;0;Young +20779;Poland;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;834;1;3.1781466429785756e-06;38018718;2.1936562931974718e-05;1;0;Young +20780;Poland;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;434;1;1.6538556871135514e-06;38018718;1.141542963126742e-05;0;1;Old +20781;Poland;F;Craft and related trades workers;Other service activities   ;Y15-29;683;1;2.602726807139529e-06;38018718;1.796483511095771e-05;1;0;Young +20782;Poland;F;Craft and related trades workers;Other service activities   ;Y30-49;3008;1;1.1462667988104983e-05;38018718;7.911892242131889e-05;1;0;Young +20783;Poland;F;Craft and related trades workers;Other service activities   ;Y50-64;1271;1;4.843434512261115e-06;38018718;3.343090106299744e-05;0;1;Old +20784;Poland;F;Craft and related trades workers;Not stated   ;Y15-29;816;1;3.1095535499646496e-06;38018718;2.146311193344289e-05;1;0;Young +20785;Poland;F;Craft and related trades workers;Not stated   ;Y30-49;2811;1;1.0711954692341457e-05;38018718;7.393726427072055e-05;1;0;Young +20786;Poland;F;Craft and related trades workers;Not stated   ;Y50-64;797;1;3.0371497295610606e-06;38018718;2.0963358101659293e-05;0;1;Old +20787;Poland;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;274;1;1.0441393047675416e-06;38018718;7.2069763109845e-06;1;0;Young +20788;Poland;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;731;1;2.785641721843332e-06;38018718;1.9227371107042588e-05;1;0;Young +20789;Poland;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;243;1;9.260067556880022e-07;38018718;6.391588480179684e-06;0;1;Old +20790;Poland;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;1020;1;3.886941937455812e-06;38018718;2.6828889916803613e-05;1;0;Young +20791;Poland;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;514;1;1.958713878286556e-06;38018718;1.3519656291408878e-05;0;1;Old +20792;Poland;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;29978;1;0.00011423798568730424;38018718;0.0007885063352215086;1;0;Young +20793;Poland;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;78856;1;0.0003004987190392309;38018718;0.0020741362189014368;1;0;Young +20794;Poland;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;21739;1;8.28414027238744e-05;38018718;0.0005717972920601899;0;1;Old +20795;Poland;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;253;1;9.641140295846278e-07;38018718;6.654616812697367e-06;1;0;Young +20796;Poland;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;753;1;2.869477724415908e-06;38018718;1.980603343858149e-05;1;0;Young +20797;Poland;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;289;1;1.10130021561248e-06;38018718;7.6015188097610234e-06;0;1;Old +20798;Poland;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;299;1;1.1394074895091056e-06;38018718;7.864547142278705e-06;1;0;Young +20799;Poland;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;754;1;2.8732884518055705e-06;38018718;1.9832336271833257e-05;1;0;Young +20800;Poland;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;261;1;9.945998487019282e-07;38018718;6.8650394787115125e-06;0;1;Old +20801;Poland;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;996;1;3.79548448010391e-06;38018718;2.6197621918761173e-05;1;0;Young +20802;Poland;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2098;1;7.994906063512052e-06;38018718;5.518334416220978e-05;1;0;Young +20803;Poland;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;643;1;2.4502977115530265e-06;38018718;1.6912721780886985e-05;0;1;Old +20804;Poland;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;984;1;3.7497557514279598e-06;38018718;2.5881987919739957e-05;1;0;Young +20805;Poland;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;9180;1;3.498247743710231e-05;38018718;0.00024146000925123252;1;0;Young +20806;Poland;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;3300;1;1.257540038588645e-05;38018718;8.679934973083521e-05;0;1;Old +20807;Poland;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;285;1;1.0860573060538298e-06;38018718;7.49630747675395e-06;1;0;Young +20808;Poland;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;461;1;1.7567453266344403e-06;38018718;1.2125606129065162e-05;1;0;Young +20809;Poland;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;198;1;7.54524023153187e-07;38018718;5.207960983850113e-06;0;1;Old +20810;Poland;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;219;1;8.345492983361008e-07;38018718;5.7603204821372466e-06;1;0;Young +20811;Poland;F;Plant and machine operators, and assemblers;Education   ;Y30-49;235;1;8.955209365707018e-07;38018718;6.181165814165538e-06;1;0;Young +20812;Poland;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;556;1;2.1187644286523836e-06;38018718;1.4624375287983145e-05;1;0;Young +20813;Poland;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;363;1;1.3832940424475095e-06;38018718;9.547928470391874e-06;0;1;Old +20814;Poland;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;759;1;2.8923420887538835e-06;38018718;1.9963850438092098e-05;1;0;Young +20815;Poland;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2913;1;1.1100648886087039e-05;38018718;7.662015326240091e-05;1;0;Young +20816;Poland;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;1336;1;5.091131792589181e-06;38018718;3.514058522436238e-05;0;1;Old +20817;Poland;F;Plant and machine operators, and assemblers;Not stated   ;Y15-29;518;1;1.9739567878452064e-06;38018718;1.3624867624415952e-05;1;0;Young +20818;Poland;F;Plant and machine operators, and assemblers;Not stated   ;Y30-49;1110;1;4.229907402525442e-06;38018718;2.9196144909462755e-05;1;0;Young +20819;Poland;F;Plant and machine operators, and assemblers;Not stated   ;Y50-64;379;1;1.4442656806821104e-06;38018718;9.968773802420165e-06;0;1;Old +20820;Poland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;3866;1;1.4732272088435459e-05;38018718;0.00010168675335133604;1;0;Young +20821;Poland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;8407;1;3.203678516489315e-05;38018718;0.00022112791914761566;1;0;Young +20822;Poland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;4090;1;1.558587502371987e-05;38018718;0.00010757858799973214;0;1;Old +20823;Poland;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;200;1;7.621454779325121e-07;38018718;5.26056665035365e-06;0;1;Old +20824;Poland;F;Elementary occupations;Mining and quarrying   ;Y30-49;1671;1;6.367725468126139e-06;38018718;4.395203436370474e-05;1;0;Young +20825;Poland;F;Elementary occupations;Mining and quarrying   ;Y50-64;1113;1;4.24133958469443e-06;38018718;2.9275053409218058e-05;0;1;Old +20826;Poland;F;Elementary occupations;Manufacturing   ;Y15-29;24835;1;9.46394147222697e-05;38018718;0.0006532308638076644;1;0;Young +20827;Poland;F;Elementary occupations;Manufacturing   ;Y30-49;67766;1;0.0002582377522878731;38018718;0.001782437798139327;1;0;Young +20828;Poland;F;Elementary occupations;Manufacturing   ;Y50-64;29147;1;0.00011107127122649465;38018718;0.0007666486807892891;0;1;Old +20829;Poland;F;Elementary occupations;Manufacturing   ;Y65-84;376;1;1.4328334985131229e-06;38018718;9.889865302664861e-06;0;1;Old +20830;Poland;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;1127;1;4.294689768149705e-06;38018718;2.9643293074742816e-05;1;0;Young +20831;Poland;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;1306;1;4.976809970899304e-06;38018718;3.435150022680933e-05;0;1;Old +20832;Poland;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;578;1;2.20260043122496e-06;38018718;1.5203037619522047e-05;1;0;Young +20833;Poland;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3506;1;1.3360410228156938e-05;38018718;9.221773338069947e-05;1;0;Young +20834;Poland;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2489;1;9.484900472870113e-06;38018718;6.546775196365117e-05;0;1;Old +20835;Poland;F;Elementary occupations;Construction   ;Y15-29;600;1;2.2864364337975363e-06;38018718;1.578169995106095e-05;1;0;Young +20836;Poland;F;Elementary occupations;Construction   ;Y30-49;2702;1;1.0296585406868239e-05;38018718;7.10702554462778e-05;1;0;Young +20837;Poland;F;Elementary occupations;Construction   ;Y50-64;2110;1;8.040634792188003e-06;38018718;5.5498978161231005e-05;0;1;Old +20838;Poland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5618;1;2.1408666475124264e-05;38018718;0.000147769317208434;1;0;Young +20839;Poland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;12435;1;4.738639509045394e-05;38018718;0.00032707573148573816;1;0;Young +20840;Poland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7786;1;2.9670323455912698e-05;38018718;0.0002047938596982676;0;1;Old +20841;Poland;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;357;1;1.360429678109534e-06;38018718;9.390111470881264e-06;0;1;Old +20842;Poland;F;Elementary occupations;Transportation and storage   ;Y15-29;1726;1;6.5773154745575795e-06;38018718;4.5398690192552e-05;1;0;Young +20843;Poland;F;Elementary occupations;Transportation and storage   ;Y30-49;4651;1;1.7723693089320568e-05;38018718;0.00012233447745397413;1;0;Young +20844;Poland;F;Elementary occupations;Transportation and storage   ;Y50-64;3576;1;1.3627161145433316e-05;38018718;9.405893170832326e-05;0;1;Old +20845;Poland;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;8575;1;3.267698736635646e-05;38018718;0.00022554679513391273;1;0;Young +20846;Poland;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;19615;1;7.474741774823113e-05;38018718;0.0005159300742334341;1;0;Young +20847;Poland;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;9994;1;3.808440953228763e-05;38018718;0.0002628705155181719;0;1;Old +20848;Poland;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;179;1;6.821202027495983e-07;38018718;4.708207152066516e-06;0;1;Old +20849;Poland;F;Elementary occupations;Information and communication   ;Y15-29;870;1;3.3153328290064275e-06;38018718;2.2883464929038375e-05;1;0;Young +20850;Poland;F;Elementary occupations;Information and communication   ;Y30-49;990;1;3.772620115765935e-06;38018718;2.6039804919250565e-05;1;0;Young +20851;Poland;F;Elementary occupations;Information and communication   ;Y50-64;805;1;3.0676355486783614e-06;38018718;2.117378076767344e-05;0;1;Old +20852;Poland;F;Elementary occupations;Financial and insurance activities   ;Y15-29;545;1;2.0768464273660954e-06;38018718;1.4335044122213694e-05;1;0;Young +20853;Poland;F;Elementary occupations;Financial and insurance activities   ;Y30-49;2547;1;9.705922661470543e-06;38018718;6.699331629225373e-05;1;0;Young +20854;Poland;F;Elementary occupations;Financial and insurance activities   ;Y50-64;2849;1;1.0856762333148634e-05;38018718;7.493677193428773e-05;0;1;Old +20855;Poland;F;Elementary occupations;Real estate activities   ;Y15-29;443;1;1.6881522336205144e-06;38018718;1.1652155130533334e-05;1;0;Young +20856;Poland;F;Elementary occupations;Real estate activities   ;Y30-49;4340;1;1.653855687113551e-05;38018718;0.00011415429631267419;1;0;Young +20857;Poland;F;Elementary occupations;Real estate activities   ;Y50-64;5322;1;2.0280691167784148e-05;38018718;0.00013998367856591062;0;1;Old +20858;Poland;F;Elementary occupations;Real estate activities   ;Y65-84;209;1;7.964420244394752e-07;38018718;5.497292149619564e-06;0;1;Old +20859;Poland;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;725;1;2.7627773575053563e-06;38018718;1.906955410753198e-05;1;0;Young +20860;Poland;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;1652;1;6.29532164772255e-06;38018718;4.345228053192114e-05;1;0;Young +20861;Poland;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;1582;1;6.028570730446171e-06;38018718;4.161108220429737e-05;0;1;Old +20862;Poland;F;Elementary occupations;Administrative and support service activities   ;Y15-29;8322;1;3.171287333677183e-05;38018718;0.00021889217832121534;1;0;Young +20863;Poland;F;Elementary occupations;Administrative and support service activities   ;Y30-49;34017;1;0.00012962951361415132;38018718;0.0008947434787254005;1;0;Young +20864;Poland;F;Elementary occupations;Administrative and support service activities   ;Y50-64;27699;1;0.00010555333796626326;38018718;0.0007285621782407287;0;1;Old +20865;Poland;F;Elementary occupations;Administrative and support service activities   ;Y65-84;639;1;2.435054801994376e-06;38018718;1.680751044787991e-05;0;1;Old +20866;Poland;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;1965;1;7.488079320686932e-06;38018718;5.168506733972461e-05;1;0;Young +20867;Poland;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;13294;1;5.065980991817408e-05;38018718;0.0003496698652490071;1;0;Young +20868;Poland;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;11115;1;4.235623493609936e-05;38018718;0.00029235599159340407;0;1;Old +20869;Poland;F;Elementary occupations;Education   ;Y15-29;4937;1;1.8813561122764062e-05;38018718;0.00012985708776397983;1;0;Young +20870;Poland;F;Elementary occupations;Education   ;Y30-49;53230;1;0.0002028450189517381;38018718;0.0014000998139916238;1;0;Young +20871;Poland;F;Elementary occupations;Education   ;Y50-64;47890;1;0.00018249573469094002;38018718;0.0012596426844271814;0;1;Old +20872;Poland;F;Elementary occupations;Education   ;Y65-84;470;1;1.7910418731414035e-06;38018718;1.2362331628331077e-05;0;1;Old +20873;Poland;F;Elementary occupations;Human health and social work activities   ;Y15-29;4538;1;1.72930808942887e-05;38018718;0.00011936225729652431;1;0;Young +20874;Poland;F;Elementary occupations;Human health and social work activities   ;Y30-49;97934;1;0.0003731997761792132;38018718;0.0025759416716786714;1;0;Young +20875;Poland;F;Elementary occupations;Human health and social work activities   ;Y50-64;57488;1;0.0002190710961769213;38018718;0.001512097277977653;0;1;Old +20876;Poland;F;Elementary occupations;Human health and social work activities   ;Y65-84;416;1;1.5852625940996252e-06;38018718;1.0941978632735591e-05;0;1;Old +20877;Poland;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;1058;1;4.031749578262989e-06;38018718;2.7828397580370805e-05;1;0;Young +20878;Poland;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;4517;1;1.7213055619105786e-05;38018718;0.00011880989779823717;1;0;Young +20879;Poland;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;4399;1;1.6763389787125603e-05;38018718;0.00011570616347452852;0;1;Old +20880;Poland;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;195;1;7.430918409841993e-07;38018718;5.129052484094808e-06;0;1;Old +20881;Poland;F;Elementary occupations;Other service activities   ;Y15-29;826;1;3.147660823861275e-06;38018718;2.172614026596057e-05;1;0;Young +20882;Poland;F;Elementary occupations;Other service activities   ;Y30-49;3733;1;1.4225445345610338e-05;38018718;9.818847652885087e-05;1;0;Young +20883;Poland;F;Elementary occupations;Other service activities   ;Y50-64;2801;1;1.0673847418444831e-05;38018718;7.367423593820287e-05;0;1;Old +20884;Poland;F;Elementary occupations;Other service activities   ;Y65-84;207;1;7.8882056966015e-07;38018718;5.444686483116027e-06;0;1;Old +20885;Poland;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;254;1;9.679247569742904e-07;38018718;6.680919645949135e-06;1;0;Young +20886;Poland;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;681;1;2.5951053523602036e-06;38018718;1.7912229444454176e-05;1;0;Young +20887;Poland;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;549;1;2.092089336924746e-06;38018718;1.4440255455220768e-05;0;1;Old +20888;Poland;F;Elementary occupations;Not stated   ;Y15-29;1912;1;7.286110769034816e-06;38018718;5.0291017177380886e-05;1;0;Young +20889;Poland;F;Elementary occupations;Not stated   ;Y30-49;5096;1;1.941946677772041e-05;38018718;0.00013403923825101098;1;0;Young +20890;Poland;F;Elementary occupations;Not stated   ;Y50-64;2693;1;1.0262288860361275e-05;38018718;7.08335299470119e-05;0;1;Old +20891;Poland;F;Not stated;Agriculture, forestry and fishing   ;Y15-29;1410;1;5.37312561942421e-06;38018718;3.7086994884993226e-05;1;0;Young +20892;Poland;F;Not stated;Agriculture, forestry and fishing   ;Y30-49;3731;1;1.4217823890831013e-05;38018718;9.813587086234733e-05;1;0;Young +20893;Poland;F;Not stated;Agriculture, forestry and fishing   ;Y50-64;1994;1;7.5985904149871455e-06;38018718;5.244784950402589e-05;0;1;Old +20894;Poland;F;Not stated;Agriculture, forestry and fishing   ;Y65-84;200;1;7.621454779325121e-07;38018718;5.26056665035365e-06;0;1;Old +20895;Poland;F;Not stated;Mining and quarrying   ;Y30-49;310;1;1.1813254907953937e-06;38018718;8.153878308048156e-06;1;0;Young +20896;Poland;F;Not stated;Mining and quarrying   ;Y50-64;220;1;8.383600257257633e-07;38018718;5.786623315389014e-06;0;1;Old +20897;Poland;F;Not stated;Manufacturing   ;Y15-29;4242;1;1.6165105586948583e-05;38018718;0.0001115766186540009;1;0;Young +20898;Poland;F;Not stated;Manufacturing   ;Y30-49;10341;1;3.940673193650054e-05;38018718;0.00027199759865653543;1;0;Young +20899;Poland;F;Not stated;Manufacturing   ;Y50-64;4339;1;1.653474614374585e-05;38018718;0.00011412799347942243;0;1;Old +20900;Poland;F;Not stated;Manufacturing   ;Y65-84;207;1;7.8882056966015e-07;38018718;5.444686483116027e-06;0;1;Old +20901;Poland;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;402;1;1.5319124106443494e-06;38018718;1.0573738967210835e-05;1;0;Young +20902;Poland;F;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;310;1;1.1813254907953937e-06;38018718;8.153878308048156e-06;0;1;Old +20903;Poland;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;189;1;7.202274766462239e-07;38018718;4.971235484584199e-06;1;0;Young +20904;Poland;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;654;1;2.4922157128393146e-06;38018718;1.7202052946656434e-05;1;0;Young +20905;Poland;F;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;387;1;1.4747514997994108e-06;38018718;1.0179196468434312e-05;0;1;Old +20906;Poland;F;Not stated;Construction   ;Y15-29;604;1;2.3016793433561867e-06;38018718;1.5886911284068022e-05;1;0;Young +20907;Poland;F;Not stated;Construction   ;Y30-49;1197;1;4.561440685426085e-06;38018718;3.148449140236659e-05;1;0;Young +20908;Poland;F;Not stated;Construction   ;Y50-64;715;1;2.7246700836087308e-06;38018718;1.8806525775014298e-05;0;1;Old +20909;Poland;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2340;1;8.917102091810391e-06;38018718;6.15486298091377e-05;1;0;Young +20910;Poland;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4684;1;1.7849447093179432e-05;38018718;0.00012320247095128247;1;0;Young +20911;Poland;F;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2069;1;7.884394969211838e-06;38018718;5.44205619979085e-05;0;1;Old +20912;Poland;F;Not stated;Transportation and storage   ;Y15-29;771;1;2.9380708174298343e-06;38018718;2.027948443711332e-05;1;0;Young +20913;Poland;F;Not stated;Transportation and storage   ;Y30-49;2042;1;7.78150532969095e-06;38018718;5.371038550011076e-05;1;0;Young +20914;Poland;F;Not stated;Transportation and storage   ;Y50-64;1120;1;4.268014676422068e-06;38018718;2.9459173241980437e-05;0;1;Old +20915;Poland;F;Not stated;Accommodation and food service activities   ;Y15-29;1003;1;3.822159571831548e-06;38018718;2.6381741751523552e-05;1;0;Young +20916;Poland;F;Not stated;Accommodation and food service activities   ;Y30-49;1447;1;5.514122532841725e-06;38018718;3.8060199715308654e-05;1;0;Young +20917;Poland;F;Not stated;Accommodation and food service activities   ;Y50-64;822;1;3.132417914302625e-06;38018718;2.16209289329535e-05;0;1;Old +20918;Poland;F;Not stated;Information and communication   ;Y15-29;844;1;3.216253916875201e-06;38018718;2.21995912644924e-05;1;0;Young +20919;Poland;F;Not stated;Information and communication   ;Y30-49;736;1;2.8046953587916445e-06;38018718;1.935888527330143e-05;1;0;Young +20920;Poland;F;Not stated;Information and communication   ;Y50-64;303;1;1.1546503990677558e-06;38018718;7.969758475285778e-06;0;1;Old +20921;Poland;F;Not stated;Financial and insurance activities   ;Y15-29;1220;1;4.649087415388324e-06;38018718;3.208945656715726e-05;1;0;Young +20922;Poland;F;Not stated;Financial and insurance activities   ;Y30-49;1381;1;5.262614525123996e-06;38018718;3.632421272069195e-05;1;0;Young +20923;Poland;F;Not stated;Financial and insurance activities   ;Y50-64;643;1;2.4502977115530265e-06;38018718;1.6912721780886985e-05;0;1;Old +20924;Poland;F;Not stated;Real estate activities   ;Y15-29;428;1;1.630991322775576e-06;38018718;1.125761263175681e-05;1;0;Young +20925;Poland;F;Not stated;Real estate activities   ;Y30-49;1705;1;6.497290199374666e-06;38018718;4.484633069426486e-05;1;0;Young +20926;Poland;F;Not stated;Real estate activities   ;Y50-64;1628;1;6.203864190370649e-06;38018718;4.282101253387871e-05;0;1;Old +20927;Poland;F;Not stated;Professional, scientific and technical activities   ;Y15-29;1389;1;5.2931003442412966e-06;38018718;3.65346353867061e-05;1;0;Young +20928;Poland;F;Not stated;Professional, scientific and technical activities   ;Y30-49;1707;1;6.504911654153991e-06;38018718;4.48989363607684e-05;1;0;Young +20929;Poland;F;Not stated;Professional, scientific and technical activities   ;Y50-64;913;1;3.4791941067619177e-06;38018718;2.401448675886441e-05;0;1;Old +20930;Poland;F;Not stated;Administrative and support service activities   ;Y15-29;864;1;3.2924684646684523e-06;38018718;2.2725647929527766e-05;1;0;Young +20931;Poland;F;Not stated;Administrative and support service activities   ;Y30-49;1612;1;6.142892552136047e-06;38018718;4.2400167201850415e-05;1;0;Young +20932;Poland;F;Not stated;Administrative and support service activities   ;Y50-64;1151;1;4.386147225501607e-06;38018718;3.0274561072785253e-05;0;1;Old +20933;Poland;F;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;1948;1;7.4232969550626675e-06;38018718;5.123791917444454e-05;1;0;Young +20934;Poland;F;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;3353;1;1.2777368937538565e-05;38018718;8.819339989317893e-05;1;0;Young +20935;Poland;F;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;1964;1;7.484268593297269e-06;38018718;5.1658764506472836e-05;0;1;Old +20936;Poland;F;Not stated;Education   ;Y15-29;1949;1;7.42710768245233e-06;38018718;5.1264222007696314e-05;1;0;Young +20937;Poland;F;Not stated;Education   ;Y30-49;6182;1;2.355791672289395e-05;38018718;0.0001626041151624313;1;0;Young +20938;Poland;F;Not stated;Education   ;Y50-64;4946;1;1.8847857669271024e-05;38018718;0.00013009381326324574;0;1;Old +20939;Poland;F;Not stated;Human health and social work activities   ;Y15-29;901;1;3.433465378085967e-06;38018718;2.369885275984319e-05;1;0;Young +20940;Poland;F;Not stated;Human health and social work activities   ;Y30-49;3179;1;1.211430237173728e-05;38018718;8.361670690737126e-05;1;0;Young +20941;Poland;F;Not stated;Human health and social work activities   ;Y50-64;1978;1;7.537618776752545e-06;38018718;5.2027004171997595e-05;0;1;Old +20942;Poland;F;Not stated;Arts, entertainment and recreation   ;Y15-29;767;1;2.922827907871184e-06;38018718;2.0174273104106245e-05;1;0;Young +20943;Poland;F;Not stated;Arts, entertainment and recreation   ;Y30-49;1232;1;4.694816144064274e-06;38018718;3.2405090566178484e-05;1;0;Young +20944;Poland;F;Not stated;Arts, entertainment and recreation   ;Y50-64;699;1;2.66369844537413e-06;38018718;1.8385680442986005e-05;0;1;Old +20945;Poland;F;Not stated;Other service activities   ;Y15-29;500;1;1.9053636948312803e-06;38018718;1.3151416625884123e-05;1;0;Young +20946;Poland;F;Not stated;Other service activities   ;Y30-49;1115;1;4.248961039473755e-06;38018718;2.9327659075721596e-05;1;0;Young +20947;Poland;F;Not stated;Other service activities   ;Y50-64;785;1;2.99142100088511e-06;38018718;2.0647724102638073e-05;0;1;Old +20948;Poland;F;Not stated;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;195;1;7.430918409841993e-07;38018718;5.129052484094808e-06;1;0;Young +20949;Poland;F;Not stated;Not stated   ;Y15-29;55485;1;0.00021143820921542717;38018718;0.0014594127029743612;1;0;Young +20950;Poland;F;Not stated;Not stated   ;Y30-49;134348;1;0.0005119636033463857;38018718;0.0035337330417085605;1;0;Young +20951;Poland;F;Not stated;Not stated   ;Y50-64;67936;1;0.00025888557594411574;38018718;0.0017869092797921276;0;1;Old +20952;Poland;F;Not stated;Not stated   ;Y65-84;1340;1;5.106374702147831e-06;38018718;3.5245796557369454e-05;0;1;Old +20953;Poland;M;Not applicable;Not applicable  ;Y15-29;2020345;1;0.007698984028067806;38018718;0.05314079764604372;1;0;Young +20954;Poland;M;Not applicable;Not applicable  ;Y30-49;782071;1;0.0029802593803607883;38018718;0.020570683104043645;1;0;Young +20955;Poland;M;Not applicable;Not applicable  ;Y50-64;1607758;1;0.006126727446549099;38018718;0.042288590583196416;0;1;Old +20956;Poland;M;Not applicable;Not applicable  ;Y65-84;1682444;1;0.006411335432373437;38018718;0.04425304398743798;0;1;Old +20957;Poland;M;Not applicable;Not applicable  ;Y_GE85;137866;1;0.0005253697423032186;38018718;0.003626266409088281;0;1;Old +20958;Poland;M;Not applicable;Not applicable  ;Y_LT15;2965914;1;0.011302289715183643;38018718;0.07801194138108497;0;1;Old +20959;Poland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;32180;1;0.00012262920739934118;38018718;0.0008464251740419022;1;0;Young +20960;Poland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;54927;1;0.00020931182333199547;38018718;0.0014447357220198746;1;0;Young +20961;Poland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;8018;1;3.055441221031441e-05;38018718;0.0002108961170126778;0;1;Old +20962;Poland;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;226;1;8.612243900637387e-07;38018718;5.944440314899624e-06;0;1;Old +20963;Poland;M;Managers;Agriculture, forestry and fishing   ;Y15-29;1112;1;4.237528857304767e-06;38018718;2.924875057596629e-05;1;0;Young +20964;Poland;M;Managers;Agriculture, forestry and fishing   ;Y30-49;5358;1;2.0417877353811998e-05;38018718;0.00014093058056297426;1;0;Young +20965;Poland;M;Managers;Agriculture, forestry and fishing   ;Y50-64;4567;1;1.7403591988588913e-05;38018718;0.00012012503946082559;0;1;Old +20966;Poland;M;Managers;Agriculture, forestry and fishing   ;Y65-84;235;1;8.955209365707018e-07;38018718;6.181165814165538e-06;0;1;Old +20967;Poland;M;Managers;Mining and quarrying   ;Y15-29;502;1;1.9129851496106053e-06;38018718;1.320402229238766e-05;1;0;Young +20968;Poland;M;Managers;Mining and quarrying   ;Y30-49;2682;1;1.0220370859074987e-05;38018718;7.054419878124244e-05;1;0;Young +20969;Poland;M;Managers;Mining and quarrying   ;Y50-64;2569;1;9.789758664043118e-06;38018718;6.757197862379263e-05;0;1;Old +20970;Poland;M;Managers;Mining and quarrying   ;Y65-84;195;1;7.430918409841993e-07;38018718;5.129052484094808e-06;0;1;Old +20971;Poland;M;Managers;Manufacturing   ;Y15-29;15738;1;5.997322765850938e-05;38018718;0.0004139539897163287;1;0;Young +20972;Poland;M;Managers;Manufacturing   ;Y30-49;77895;1;0.00029683661001776517;38018718;0.0020488591961464876;1;0;Young +20973;Poland;M;Managers;Manufacturing   ;Y50-64;37674;1;0.00014356534367814731;38018718;0.000990932939927117;0;1;Old +20974;Poland;M;Managers;Manufacturing   ;Y65-84;2502;1;9.534439928935727e-06;38018718;6.580968879592415e-05;0;1;Old +20975;Poland;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;412;1;1.570019684540975e-06;38018718;1.0836767299728518e-05;1;0;Young +20976;Poland;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4619;1;1.7601749812851368e-05;38018718;0.00012149278678991754;1;0;Young +20977;Poland;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3568;1;1.3596675326316016e-05;38018718;9.38485090423091e-05;0;1;Old +20978;Poland;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;623;1;2.3740831637597753e-06;38018718;1.6386665115851618e-05;1;0;Young +20979;Poland;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3954;1;1.5067616098725764e-05;38018718;0.00010400140267749165;1;0;Young +20980;Poland;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3895;1;1.4842783182735674e-05;38018718;0.00010244953551563732;0;1;Old +20981;Poland;M;Managers;Construction   ;Y15-29;12487;1;4.7584552914716396e-05;38018718;0.0003284434788148301;1;0;Young +20982;Poland;M;Managers;Construction   ;Y30-49;50243;1;0.00019146237623881603;38018718;0.001321533251068592;1;0;Young +20983;Poland;M;Managers;Construction   ;Y50-64;30969;1;0.00011801441653045983;38018718;0.0008145724429740108;0;1;Old +20984;Poland;M;Managers;Construction   ;Y65-84;1885;1;7.183221129513926e-06;38018718;4.958084067958315e-05;0;1;Old +20985;Poland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;15700;1;5.98284200177022e-05;38018718;0.00041295448205276147;1;0;Young +20986;Poland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;63591;1;0.0002423279654360319;38018718;0.0016726234693131947;1;0;Young +20987;Poland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;23496;1;8.953685074751152e-05;38018718;0.0006180113700835467;0;1;Old +20988;Poland;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1511;1;5.758009085780129e-06;38018718;3.974358104342182e-05;0;1;Old +20989;Poland;M;Managers;Transportation and storage   ;Y15-29;4185;1;1.5947894125737817e-05;38018718;0.00011007735715865012;1;0;Young +20990;Poland;M;Managers;Transportation and storage   ;Y30-49;18309;1;6.977060777733182e-05;38018718;0.00048157857400662487;1;0;Young +20991;Poland;M;Managers;Transportation and storage   ;Y50-64;9529;1;3.631242129609454e-05;38018718;0.0002506396980560996;0;1;Old +20992;Poland;M;Managers;Transportation and storage   ;Y65-84;324;1;1.2346756742506695e-06;38018718;8.522117973572913e-06;0;1;Old +20993;Poland;M;Managers;Accommodation and food service activities   ;Y15-29;3061;1;1.1664636539757097e-05;38018718;8.05129725836626e-05;1;0;Young +20994;Poland;M;Managers;Accommodation and food service activities   ;Y30-49;7158;1;2.727718665520461e-05;38018718;0.0001882756804161571;1;0;Young +20995;Poland;M;Managers;Accommodation and food service activities   ;Y50-64;3381;1;1.2884069304449118e-05;38018718;8.892987922422845e-05;0;1;Old +20996;Poland;M;Managers;Accommodation and food service activities   ;Y65-84;245;1;9.336282104673273e-07;38018718;6.444194146683221e-06;0;1;Old +20997;Poland;M;Managers;Information and communication   ;Y15-29;4169;1;1.5886922487503215e-05;38018718;0.00010965651182662182;1;0;Young +20998;Poland;M;Managers;Information and communication   ;Y30-49;16811;1;6.40621381476173e-05;38018718;0.000442176929795476;1;0;Young +20999;Poland;M;Managers;Information and communication   ;Y50-64;3433;1;1.308222712871157e-05;38018718;9.02976265533204e-05;0;1;Old +21000;Poland;M;Managers;Information and communication   ;Y65-84;190;1;7.240382040358865e-07;38018718;4.997538317835967e-06;0;1;Old +21001;Poland;M;Managers;Financial and insurance activities   ;Y15-29;2234;1;8.51316498850616e-06;38018718;5.876052948445026e-05;1;0;Young +21002;Poland;M;Managers;Financial and insurance activities   ;Y30-49;13757;1;5.242417669958785e-05;38018718;0.0003618480770445758;1;0;Young +21003;Poland;M;Managers;Financial and insurance activities   ;Y50-64;2970;1;1.1317860347297804e-05;38018718;7.811941475775169e-05;0;1;Old +21004;Poland;M;Managers;Financial and insurance activities   ;Y65-84;209;1;7.964420244394752e-07;38018718;5.497292149619564e-06;0;1;Old +21005;Poland;M;Managers;Real estate activities   ;Y15-29;289;1;1.10130021561248e-06;38018718;7.6015188097610234e-06;1;0;Young +21006;Poland;M;Managers;Real estate activities   ;Y30-49;2788;1;1.0624307962379219e-05;38018718;7.333229910592988e-05;1;0;Young +21007;Poland;M;Managers;Real estate activities   ;Y50-64;4107;1;1.5650657389344137e-05;38018718;0.00010802573616501219;0;1;Old +21008;Poland;M;Managers;Real estate activities   ;Y65-84;400;1;1.5242909558650242e-06;38018718;1.05211333007073e-05;0;1;Old +21009;Poland;M;Managers;Professional, scientific and technical activities   ;Y15-29;2617;1;9.972673578746921e-06;38018718;6.88345146198775e-05;1;0;Young +21010;Poland;M;Managers;Professional, scientific and technical activities   ;Y30-49;11683;1;4.452072809342769e-05;38018718;0.0003072960008804084;1;0;Young +21011;Poland;M;Managers;Professional, scientific and technical activities   ;Y50-64;4574;1;1.7430267080316553e-05;38018718;0.00012030915929358797;0;1;Old +21012;Poland;M;Managers;Professional, scientific and technical activities   ;Y65-84;921;1;3.5096799258792185e-06;38018718;2.4224909424878557e-05;0;1;Old +21013;Poland;M;Managers;Administrative and support service activities   ;Y15-29;2050;1;7.811991148808249e-06;38018718;5.392080816612491e-05;1;0;Young +21014;Poland;M;Managers;Administrative and support service activities   ;Y30-49;7410;1;2.8237489957399574e-05;38018718;0.0001949039943956027;1;0;Young +21015;Poland;M;Managers;Administrative and support service activities   ;Y50-64;4606;1;1.7552210356785753e-05;38018718;0.00012115084995764455;0;1;Old +21016;Poland;M;Managers;Administrative and support service activities   ;Y65-84;305;1;1.162271853847081e-06;38018718;8.022364141789315e-06;0;1;Old +21017;Poland;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;3997;1;1.5231477376481254e-05;38018718;0.00010513242450731768;1;0;Young +21018;Poland;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;24998;1;9.52605632867847e-05;38018718;0.0006575182256277027;1;0;Young +21019;Poland;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;15048;1;5.734382575964221e-05;38018718;0.00039580503477260856;0;1;Old +21020;Poland;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;1050;1;4.0012637591456885e-06;38018718;2.761797491435666e-05;0;1;Old +21021;Poland;M;Managers;Education   ;Y15-29;545;1;2.0768464273660954e-06;38018718;1.4335044122213694e-05;1;0;Young +21022;Poland;M;Managers;Education   ;Y30-49;5489;1;2.0917082641857794e-05;38018718;0.00014437625171895592;1;0;Young +21023;Poland;M;Managers;Education   ;Y50-64;4525;1;1.7243541438223087e-05;38018718;0.00011902032046425132;0;1;Old +21024;Poland;M;Managers;Education   ;Y65-84;457;1;1.7415024170757901e-06;38018718;1.2020394796058089e-05;0;1;Old +21025;Poland;M;Managers;Human health and social work activities   ;Y15-29;538;1;2.0501713356384576e-06;38018718;1.4150924289451317e-05;1;0;Young +21026;Poland;M;Managers;Human health and social work activities   ;Y30-49;3158;1;1.2034277096554366e-05;38018718;8.306434740908413e-05;1;0;Young +21027;Poland;M;Managers;Human health and social work activities   ;Y50-64;3109;1;1.18475514544609e-05;38018718;8.177550857974748e-05;0;1;Old +21028;Poland;M;Managers;Human health and social work activities   ;Y65-84;214;1;8.15495661387788e-07;38018718;5.628806315878405e-06;0;1;Old +21029;Poland;M;Managers;Arts, entertainment and recreation   ;Y15-29;732;1;2.789452449232994e-06;38018718;1.9253673940294356e-05;1;0;Young +21030;Poland;M;Managers;Arts, entertainment and recreation   ;Y30-49;3607;1;1.3745293694512855e-05;38018718;9.487431953912807e-05;1;0;Young +21031;Poland;M;Managers;Arts, entertainment and recreation   ;Y50-64;2582;1;9.839298120108732e-06;38018718;6.791391545606562e-05;0;1;Old +21032;Poland;M;Managers;Arts, entertainment and recreation   ;Y65-84;222;1;8.459814805050885e-07;38018718;5.839228981892551e-06;0;1;Old +21033;Poland;M;Managers;Other service activities   ;Y15-29;621;1;2.36646170898045e-06;38018718;1.6334059449348083e-05;1;0;Young +21034;Poland;M;Managers;Other service activities   ;Y30-49;2394;1;9.12288137085217e-06;38018718;6.296898280473318e-05;1;0;Young +21035;Poland;M;Managers;Other service activities   ;Y50-64;1448;1;5.5179332602313875e-06;38018718;3.8086502548560425e-05;0;1;Old +21036;Poland;M;Managers;Other service activities   ;Y65-84;202;1;7.697669327118372e-07;38018718;5.313172316857186e-06;0;1;Old +21037;Poland;M;Managers;Not stated   ;Y15-29;626;1;2.385515345928763e-06;38018718;1.6465573615606924e-05;1;0;Young +21038;Poland;M;Managers;Not stated   ;Y30-49;2364;1;9.008559549162293e-06;38018718;6.217989780718014e-05;1;0;Young +21039;Poland;M;Managers;Not stated   ;Y50-64;1198;1;4.5652514128157474e-06;38018718;3.151079423561836e-05;0;1;Old +21040;Poland;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;2121;1;8.082552793474292e-06;38018718;5.578830932700045e-05;1;0;Young +21041;Poland;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;6112;1;2.329116580561757e-05;38018718;0.00016076291683480754;1;0;Young +21042;Poland;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;3212;1;1.2240056375596145e-05;38018718;8.448470040467961e-05;0;1;Old +21043;Poland;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;283;1;1.0784358512745046e-06;38018718;7.443701810250414e-06;0;1;Old +21044;Poland;M;Professionals;Mining and quarrying   ;Y15-29;2474;1;9.427739562025174e-06;38018718;6.507320946487465e-05;1;0;Young +21045;Poland;M;Professionals;Mining and quarrying   ;Y30-49;8358;1;3.185005952279968e-05;38018718;0.000219839080318279;1;0;Young +21046;Poland;M;Professionals;Mining and quarrying   ;Y50-64;3751;1;1.4294038438624265e-05;38018718;9.86619275273827e-05;0;1;Old +21047;Poland;M;Professionals;Manufacturing   ;Y15-29;30512;1;0.00011627291411338404;38018718;0.0008025520481779527;1;0;Young +21048;Poland;M;Professionals;Manufacturing   ;Y30-49;59055;1;0.00022504250599652252;38018718;0.001553313817683174;1;0;Young +21049;Poland;M;Professionals;Manufacturing   ;Y50-64;20001;1;7.621835852064088e-05;38018718;0.0005260829678686167;0;1;Old +21050;Poland;M;Professionals;Manufacturing   ;Y65-84;1911;1;7.282300041645153e-06;38018718;5.026471434412912e-05;0;1;Old +21051;Poland;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2892;1;1.1020623610904125e-05;38018718;7.606779376411377e-05;1;0;Young +21052;Poland;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;10033;1;3.823302790048447e-05;38018718;0.00026389632601499084;1;0;Young +21053;Poland;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;4728;1;1.8017119098324587e-05;38018718;0.00012435979561436028;0;1;Old +21054;Poland;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;364;1;1.387104769837172e-06;38018718;9.574231303643643e-06;0;1;Old +21055;Poland;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1109;1;4.226096675135779e-06;38018718;2.9169842076210988e-05;1;0;Young +21056;Poland;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2837;1;1.0811033604472685e-05;38018718;7.462113793526652e-05;1;0;Young +21057;Poland;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1905;1;7.259435677307178e-06;38018718;5.010689734461851e-05;0;1;Old +21058;Poland;M;Professionals;Construction   ;Y15-29;11980;1;4.5652514128157476e-05;38018718;0.0003151079423561836;1;0;Young +21059;Poland;M;Professionals;Construction   ;Y30-49;19926;1;7.593255396641619e-05;38018718;0.0005241102553747341;1;0;Young +21060;Poland;M;Professionals;Construction   ;Y50-64;12264;1;4.673476070682164e-05;38018718;0.0003225779469996858;0;1;Old +21061;Poland;M;Professionals;Construction   ;Y65-84;1853;1;7.061277853044725e-06;38018718;4.873915001552656e-05;0;1;Old +21062;Poland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;13495;1;5.142576612349626e-05;38018718;0.0003549567347326125;1;0;Young +21063;Poland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;25492;1;9.7143062617278e-05;38018718;0.0006705118252540762;1;0;Young +21064;Poland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;6259;1;2.3851342731897966e-05;38018718;0.00016462943332281747;0;1;Old +21065;Poland;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;829;1;3.1590930060302626e-06;38018718;2.1805048765715877e-05;0;1;Old +21066;Poland;M;Professionals;Transportation and storage   ;Y15-29;3523;1;1.34251925937812e-05;38018718;9.266488154597953e-05;1;0;Young +21067;Poland;M;Professionals;Transportation and storage   ;Y30-49;7487;1;2.8530915966403592e-05;38018718;0.00019692931255598886;1;0;Young +21068;Poland;M;Professionals;Transportation and storage   ;Y50-64;4162;1;1.586024739577558e-05;38018718;0.00010947239199385945;0;1;Old +21069;Poland;M;Professionals;Accommodation and food service activities   ;Y15-29;1445;1;5.5065010780624e-06;38018718;3.800759404880512e-05;1;0;Young +21070;Poland;M;Professionals;Accommodation and food service activities   ;Y30-49;2046;1;7.796748239249598e-06;38018718;5.381559683311783e-05;1;0;Young +21071;Poland;M;Professionals;Accommodation and food service activities   ;Y50-64;744;1;2.835181177908945e-06;38018718;1.9569307939315576e-05;0;1;Old +21072;Poland;M;Professionals;Information and communication   ;Y15-29;36460;1;0.00013893912062709697;38018718;0.0009590013003594703;1;0;Young +21073;Poland;M;Professionals;Information and communication   ;Y30-49;49876;1;0.00019006383928680986;38018718;0.001311880111265193;1;0;Young +21074;Poland;M;Professionals;Information and communication   ;Y50-64;8142;1;3.102694240663257e-05;38018718;0.00021415766833589707;0;1;Old +21075;Poland;M;Professionals;Information and communication   ;Y65-84;902;1;3.4372761054756295e-06;38018718;2.3725155593094958e-05;0;1;Old +21076;Poland;M;Professionals;Financial and insurance activities   ;Y15-29;19367;1;7.38023573555948e-05;38018718;0.0005094069715869957;1;0;Young +21077;Poland;M;Professionals;Financial and insurance activities   ;Y30-49;32785;1;0.00012493469747008705;38018718;0.000862338388159222;1;0;Young +21078;Poland;M;Professionals;Financial and insurance activities   ;Y50-64;5079;1;1.9354684412096144e-05;38018718;0.00013359209008573093;0;1;Old +21079;Poland;M;Professionals;Financial and insurance activities   ;Y65-84;280;1;1.067003669105517e-06;38018718;7.364793310495109e-06;0;1;Old +21080;Poland;M;Professionals;Real estate activities   ;Y15-29;901;1;3.433465378085967e-06;38018718;2.369885275984319e-05;1;0;Young +21081;Poland;M;Professionals;Real estate activities   ;Y30-49;2231;1;8.501732806337173e-06;38018718;5.868162098469496e-05;1;0;Young +21082;Poland;M;Professionals;Real estate activities   ;Y50-64;2024;1;7.712912236677023e-06;38018718;5.323693450157893e-05;0;1;Old +21083;Poland;M;Professionals;Real estate activities   ;Y65-84;372;1;1.4175905889544725e-06;38018718;9.784653969657788e-06;0;1;Old +21084;Poland;M;Professionals;Professional, scientific and technical activities   ;Y15-29;28765;1;0.00010961557336364355;38018718;0.0007566009984871136;1;0;Young +21085;Poland;M;Professionals;Professional, scientific and technical activities   ;Y30-49;58142;1;0.0002215633118897606;38018718;0.0015292993309243095;1;0;Young +21086;Poland;M;Professionals;Professional, scientific and technical activities   ;Y50-64;27366;1;0.00010428436574550564;38018718;0.0007198033347678898;0;1;Old +21087;Poland;M;Professionals;Professional, scientific and technical activities   ;Y65-84;6464;1;2.463254184677879e-05;38018718;0.00017002151413942994;0;1;Old +21088;Poland;M;Professionals;Administrative and support service activities   ;Y15-29;2913;1;1.1100648886087039e-05;38018718;7.662015326240091e-05;1;0;Young +21089;Poland;M;Professionals;Administrative and support service activities   ;Y30-49;3683;1;1.4034908976127211e-05;38018718;9.687333486626245e-05;1;0;Young +21090;Poland;M;Professionals;Administrative and support service activities   ;Y50-64;1168;1;4.450929591125871e-06;38018718;3.072170923806531e-05;0;1;Old +21091;Poland;M;Professionals;Administrative and support service activities   ;Y65-84;191;1;7.27848931425549e-07;38018718;5.023841151087736e-06;0;1;Old +21092;Poland;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;10057;1;3.8324485357836374e-05;38018718;0.0002645275940130333;1;0;Young +21093;Poland;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;32453;1;0.0001236695359767191;38018718;0.0008536058475196349;1;0;Young +21094;Poland;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;13953;1;5.3171079267961704e-05;38018718;0.00036700343236192233;0;1;Old +21095;Poland;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;1793;1;6.832634209664971e-06;38018718;4.716098002042047e-05;0;1;Old +21096;Poland;M;Professionals;Education   ;Y15-29;21700;1;8.269278435567756e-05;38018718;0.000570771481563371;1;0;Young +21097;Poland;M;Professionals;Education   ;Y30-49;92592;1;0.0003528428704636358;38018718;0.0024354319364477254;1;0;Young +21098;Poland;M;Professionals;Education   ;Y50-64;44067;1;0.00016792732388026005;38018718;0.0011590869529056714;0;1;Old +21099;Poland;M;Professionals;Education   ;Y65-84;8386;1;3.1956759889710235e-05;38018718;0.00022057555964932852;0;1;Old +21100;Poland;M;Professionals;Human health and social work activities   ;Y15-29;12215;1;4.6548035064728175e-05;38018718;0.00032128910817034914;1;0;Young +21101;Poland;M;Professionals;Human health and social work activities   ;Y30-49;37003;1;0.00014100834559968372;38018718;0.0009732837388151805;1;0;Young +21102;Poland;M;Professionals;Human health and social work activities   ;Y50-64;21041;1;8.018151500588994e-05;38018718;0.0005534379144504557;0;1;Old +21103;Poland;M;Professionals;Human health and social work activities   ;Y65-84;5648;1;2.1522988296814142e-05;38018718;0.00014855840220598707;0;1;Old +21104;Poland;M;Professionals;Arts, entertainment and recreation   ;Y15-29;5326;1;2.0295934077342798e-05;38018718;0.00014008888989891768;1;0;Young +21105;Poland;M;Professionals;Arts, entertainment and recreation   ;Y30-49;12499;1;4.763028164339235e-05;38018718;0.00032875911281385133;1;0;Young +21106;Poland;M;Professionals;Arts, entertainment and recreation   ;Y50-64;6953;1;2.6495987540323784e-05;38018718;0.00018288359959954463;0;1;Old +21107;Poland;M;Professionals;Arts, entertainment and recreation   ;Y65-84;1011;1;3.852645390948849e-06;38018718;2.65921644175377e-05;0;1;Old +21108;Poland;M;Professionals;Other service activities   ;Y15-29;3081;1;1.174085108755035e-05;38018718;8.103902924869797e-05;1;0;Young +21109;Poland;M;Professionals;Other service activities   ;Y30-49;11854;1;4.517236247705999e-05;38018718;0.0003117937853664608;1;0;Young +21110;Poland;M;Professionals;Other service activities   ;Y50-64;8088;1;3.082116312759079e-05;38018718;0.0002127373153403016;0;1;Old +21111;Poland;M;Professionals;Other service activities   ;Y65-84;1973;1;7.518565139804232e-06;38018718;5.1895490005738754e-05;0;1;Old +21112;Poland;M;Professionals;Not stated   ;Y15-29;1457;1;5.552229806738351e-06;38018718;3.8323228047826336e-05;1;0;Young +21113;Poland;M;Professionals;Not stated   ;Y30-49;2588;1;9.862162484446707e-06;38018718;6.807173245557622e-05;1;0;Young +21114;Poland;M;Professionals;Not stated   ;Y50-64;1241;1;4.729112690571238e-06;38018718;3.2641816065444395e-05;0;1;Old +21115;Poland;M;Professionals;Not stated   ;Y65-84;204;1;7.773883874911624e-07;38018718;5.365777983360722e-06;0;1;Old +21116;Poland;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;8747;1;3.333243247737842e-05;38018718;0.00023007088245321686;1;0;Young +21117;Poland;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;21455;1;8.175915614521023e-05;38018718;0.0005643272874166878;1;0;Young +21118;Poland;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;12850;1;4.89678469571639e-05;38018718;0.000337991407285222;0;1;Old +21119;Poland;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;340;1;1.2956473124852705e-06;38018718;8.942963305601204e-06;0;1;Old +21120;Poland;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;3859;1;1.470559699670782e-05;38018718;0.00010150263351857367;1;0;Young +21121;Poland;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;12589;1;4.797324710846198e-05;38018718;0.00033112636780651046;1;0;Young +21122;Poland;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;5882;1;2.241469850599518e-05;38018718;0.00015471326518690082;0;1;Old +21123;Poland;M;Technicians and associate professionals;Manufacturing   ;Y15-29;67910;1;0.00025878649703198447;38018718;0.0017862254061275817;1;0;Young +21124;Poland;M;Technicians and associate professionals;Manufacturing   ;Y30-49;137106;1;0.000522473589487075;38018718;0.0036062762558169374;1;0;Young +21125;Poland;M;Technicians and associate professionals;Manufacturing   ;Y50-64;64611;1;0.0002462149073734877;38018718;0.0016994523592299981;0;1;Old +21126;Poland;M;Technicians and associate professionals;Manufacturing   ;Y65-84;2068;1;7.880584241822175e-06;38018718;5.439425916465674e-05;0;1;Old +21127;Poland;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;4125;1;1.5719250482358064e-05;38018718;0.00010849918716354401;1;0;Young +21128;Poland;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;22143;1;8.438093658929808e-05;38018718;0.0005824236366939043;1;0;Young +21129;Poland;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;15395;1;5.866614816385512e-05;38018718;0.00040493211791097216;0;1;Old +21130;Poland;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2800;1;1.067003669105517e-05;38018718;7.364793310495109e-05;1;0;Young +21131;Poland;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;9781;1;3.7272724598289503e-05;38018718;0.00025726801203554525;1;0;Young +21132;Poland;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;8416;1;3.207108171140011e-05;38018718;0.00022136464464688157;0;1;Old +21133;Poland;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;211;1;8.040634792188003e-07;38018718;5.5498978161231e-06;0;1;Old +21134;Poland;M;Technicians and associate professionals;Construction   ;Y15-29;26726;1;0.00010184550021612159;38018718;0.0007029695214867582;1;0;Young +21135;Poland;M;Technicians and associate professionals;Construction   ;Y30-49;50183;1;0.00019123373259543626;38018718;0.0013199550810734859;1;0;Young +21136;Poland;M;Technicians and associate professionals;Construction   ;Y50-64;27849;1;0.00010612494707471264;38018718;0.0007325076032284939;0;1;Old +21137;Poland;M;Technicians and associate professionals;Construction   ;Y65-84;1520;1;5.792305632287092e-06;38018718;3.998030654268774e-05;0;1;Old +21138;Poland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;57236;1;0.0002181107928747263;38018718;0.0015054689639982075;1;0;Young +21139;Poland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;100158;1;0.00038167483389382273;38018718;0.002634439172830604;1;0;Young +21140;Poland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;28630;1;0.00010910112516603911;38018718;0.000753050115998125;0;1;Old +21141;Poland;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1405;1;5.354071982475897e-06;38018718;3.6955480718734385e-05;0;1;Old +21142;Poland;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;13074;1;4.982144989244832e-05;38018718;0.00034388324193361806;1;0;Young +21143;Poland;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;29113;1;0.00011094170649524613;38018718;0.000765754384458729;1;0;Young +21144;Poland;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;17133;1;6.528919236708865e-05;38018718;0.0004506464421025454;0;1;Old +21145;Poland;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;465;1;1.7719882361930907e-06;38018718;1.2230817462072236e-05;0;1;Old +21146;Poland;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;3228;1;1.2301028013830745e-05;38018718;8.49055457367079e-05;1;0;Young +21147;Poland;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;4864;1;1.8535378023318694e-05;38018718;0.00012793698093660076;1;0;Young +21148;Poland;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;1926;1;7.339460952490092e-06;38018718;5.0659256842905645e-05;0;1;Old +21149;Poland;M;Technicians and associate professionals;Information and communication   ;Y15-29;16416;1;6.255690082870059e-05;38018718;0.00043178731066102755;1;0;Young +21150;Poland;M;Technicians and associate professionals;Information and communication   ;Y30-49;20493;1;7.809323639635486e-05;38018718;0.0005390239618284867;1;0;Young +21151;Poland;M;Technicians and associate professionals;Information and communication   ;Y50-64;4378;1;1.668336451194269e-05;38018718;0.00011515380397624139;0;1;Old +21152;Poland;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;10236;1;3.900660556058597e-05;38018718;0.0002692358011650998;1;0;Young +21153;Poland;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;16567;1;6.313232066453964e-05;38018718;0.00043575903848204456;1;0;Young +21154;Poland;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;7079;1;2.6976139191421265e-05;38018718;0.00018619775658926743;0;1;Old +21155;Poland;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;778;1;2.964745909157472e-06;38018718;2.0463604269875698e-05;0;1;Old +21156;Poland;M;Technicians and associate professionals;Real estate activities   ;Y15-29;3042;1;1.159223271935351e-05;38018718;8.0013218751879e-05;1;0;Young +21157;Poland;M;Technicians and associate professionals;Real estate activities   ;Y30-49;7855;1;2.9933263645799412e-05;38018718;0.0002066087551926396;1;0;Young +21158;Poland;M;Technicians and associate professionals;Real estate activities   ;Y50-64;7390;1;2.816127540960632e-05;38018718;0.00019437793773056735;0;1;Old +21159;Poland;M;Technicians and associate professionals;Real estate activities   ;Y65-84;684;1;2.6065375345291914e-06;38018718;1.7991137944209482e-05;0;1;Old +21160;Poland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;16693;1;6.361247231563712e-05;38018718;0.00043907319547176736;1;0;Young +21161;Poland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;23305;1;8.880900181608597e-05;38018718;0.000612987528932459;1;0;Young +21162;Poland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;13727;1;5.230985487789797e-05;38018718;0.00036105899204702275;0;1;Old +21163;Poland;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;2066;1;7.87296278704285e-06;38018718;5.43416534981532e-05;0;1;Old +21164;Poland;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;3981;1;1.5170505738246653e-05;38018718;0.00010471157917528939;1;0;Young +21165;Poland;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;4760;1;1.8139062374793787e-05;38018718;0.00012520148627841686;1;0;Young +21166;Poland;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;2063;1;7.861530604873862e-06;38018718;5.4262744998397896e-05;0;1;Old +21167;Poland;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;18183;1;6.929045612623434e-05;38018718;0.000478264417016902;1;0;Young +21168;Poland;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;62370;1;0.0002376750672932539;38018718;0.0016405077099127855;1;0;Young +21169;Poland;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;16397;1;6.2484497008297e-05;38018718;0.00043128755682924393;0;1;Old +21170;Poland;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;886;1;3.3763044672410287e-06;38018718;2.3304310261066668e-05;0;1;Old +21171;Poland;M;Technicians and associate professionals;Education   ;Y15-29;4000;1;1.5242909558650242e-05;38018718;0.00010521133300707299;1;0;Young +21172;Poland;M;Technicians and associate professionals;Education   ;Y30-49;5945;1;2.2654774331543923e-05;38018718;0.00015637034368176224;1;0;Young +21173;Poland;M;Technicians and associate professionals;Education   ;Y50-64;4956;1;1.888596494316765e-05;38018718;0.00013035684159576344;0;1;Old +21174;Poland;M;Technicians and associate professionals;Education   ;Y65-84;465;1;1.7719882361930907e-06;38018718;1.2230817462072236e-05;0;1;Old +21175;Poland;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;10055;1;3.8316863903057046e-05;38018718;0.00026447498834652973;1;0;Young +21176;Poland;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;17588;1;6.702307332938511e-05;38018718;0.00046261423123209995;1;0;Young +21177;Poland;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;8033;1;3.061157312115935e-05;38018718;0.00021129065951145434;0;1;Old +21178;Poland;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;514;1;1.958713878286556e-06;38018718;1.3519656291408878e-05;0;1;Old +21179;Poland;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;8941;1;3.407171359097295e-05;38018718;0.0002351736321040599;1;0;Young +21180;Poland;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;9501;1;3.620572092918399e-05;38018718;0.0002499032187250501;1;0;Young +21181;Poland;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;4945;1;1.8844046941881363e-05;38018718;0.000130067510429994;0;1;Old +21182;Poland;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;581;1;2.2140326133939478e-06;38018718;1.5281946119277353e-05;0;1;Old +21183;Poland;M;Technicians and associate professionals;Other service activities   ;Y15-29;5420;1;2.065414245197108e-05;38018718;0.0001425613562245839;1;0;Young +21184;Poland;M;Technicians and associate professionals;Other service activities   ;Y30-49;6551;1;2.4964075129679435e-05;38018718;0.00017230986063233378;1;0;Young +21185;Poland;M;Technicians and associate professionals;Other service activities   ;Y50-64;3114;1;1.1866605091409213e-05;38018718;8.190702274600632e-05;0;1;Old +21186;Poland;M;Technicians and associate professionals;Other service activities   ;Y65-84;337;1;1.284215130316283e-06;38018718;8.864054805845899e-06;0;1;Old +21187;Poland;M;Technicians and associate professionals;Not stated   ;Y15-29;3340;1;1.2727829481472953e-05;38018718;8.785146306090594e-05;1;0;Young +21188;Poland;M;Technicians and associate professionals;Not stated   ;Y30-49;5253;1;2.001775097789743e-05;38018718;0.0001381687830715386;1;0;Young +21189;Poland;M;Technicians and associate professionals;Not stated   ;Y50-64;2279;1;8.684647721040976e-06;38018718;5.994415698077984e-05;0;1;Old +21190;Poland;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;1810;1;6.8974165752892345e-06;38018718;4.760812818570053e-05;1;0;Young +21191;Poland;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;2612;1;9.953619941798608e-06;38018718;6.870300045361867e-05;1;0;Young +21192;Poland;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;1765;1;6.725933842754419e-06;38018718;4.642450068937096e-05;0;1;Old +21193;Poland;M;Clerical support workers;Mining and quarrying   ;Y15-29;479;1;1.8253384196483665e-06;38018718;1.259905712759699e-05;1;0;Young +21194;Poland;M;Clerical support workers;Mining and quarrying   ;Y30-49;1358;1;5.174967795161758e-06;38018718;3.571924755590128e-05;1;0;Young +21195;Poland;M;Clerical support workers;Mining and quarrying   ;Y50-64;996;1;3.79548448010391e-06;38018718;2.6197621918761173e-05;0;1;Old +21196;Poland;M;Clerical support workers;Manufacturing   ;Y15-29;36369;1;0.00013859234443463768;38018718;0.0009566077425335594;1;0;Young +21197;Poland;M;Clerical support workers;Manufacturing   ;Y30-49;49728;1;0.0001894998516331398;38018718;0.0013079872919439313;1;0;Young +21198;Poland;M;Clerical support workers;Manufacturing   ;Y50-64;18128;1;6.90808661198029e-05;38018718;0.0004768177611880548;0;1;Old +21199;Poland;M;Clerical support workers;Manufacturing   ;Y65-84;305;1;1.162271853847081e-06;38018718;8.022364141789315e-06;0;1;Old +21200;Poland;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;878;1;3.3458186481237283e-06;38018718;2.309388759505252e-05;1;0;Young +21201;Poland;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;3290;1;1.2537293111989824e-05;38018718;8.653632139831753e-05;1;0;Young +21202;Poland;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2119;1;8.074931338694966e-06;38018718;5.5735703660496916e-05;0;1;Old +21203;Poland;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1144;1;4.3594721337739695e-06;38018718;3.0090441240022874e-05;1;0;Young +21204;Poland;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2797;1;1.0658604508886183e-05;38018718;7.356902460519578e-05;1;0;Young +21205;Poland;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1616;1;6.158135461694698e-06;38018718;4.2505378534857485e-05;0;1;Old +21206;Poland;M;Clerical support workers;Construction   ;Y15-29;3283;1;1.2510618020262186e-05;38018718;8.635220156555516e-05;1;0;Young +21207;Poland;M;Clerical support workers;Construction   ;Y30-49;4900;1;1.8672564209346547e-05;38018718;0.0001288838829336644;1;0;Young +21208;Poland;M;Clerical support workers;Construction   ;Y50-64;2654;1;1.0113670492164436e-05;38018718;6.980771945019293e-05;0;1;Old +21209;Poland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;48572;1;0.0001850946507706899;38018718;0.0012775812167048874;1;0;Young +21210;Poland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;46517;1;0.00017726360598493333;38018718;0.0012235288943725036;1;0;Young +21211;Poland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;13795;1;5.2568984340395024e-05;38018718;0.000362847584708143;0;1;Old +21212;Poland;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;407;1;1.5509660475926622e-06;38018718;1.0705253133469677e-05;0;1;Old +21213;Poland;M;Clerical support workers;Transportation and storage   ;Y15-29;27088;1;0.00010322498353117945;38018718;0.0007124911471238982;1;0;Young +21214;Poland;M;Clerical support workers;Transportation and storage   ;Y30-49;37658;1;0.0001435043720399127;38018718;0.0009905120945950887;1;0;Young +21215;Poland;M;Clerical support workers;Transportation and storage   ;Y50-64;14711;1;5.6059610629325925e-05;38018718;0.0003869409799667627;0;1;Old +21216;Poland;M;Clerical support workers;Transportation and storage   ;Y65-84;179;1;6.821202027495983e-07;38018718;4.708207152066516e-06;0;1;Old +21217;Poland;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;2482;1;9.458225381142475e-06;38018718;6.528363213088879e-05;1;0;Young +21218;Poland;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;1703;1;6.4896687445953405e-06;38018718;4.479372502776133e-05;1;0;Young +21219;Poland;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;730;1;2.7818309944536693e-06;38018718;1.920106827379082e-05;0;1;Old +21220;Poland;M;Clerical support workers;Information and communication   ;Y15-29;3365;1;1.2823097666214516e-05;38018718;8.850903389220015e-05;1;0;Young +21221;Poland;M;Clerical support workers;Information and communication   ;Y30-49;3089;1;1.177133690666765e-05;38018718;8.124945191471212e-05;1;0;Young +21222;Poland;M;Clerical support workers;Information and communication   ;Y50-64;884;1;3.3686830124617035e-06;38018718;2.325170459456313e-05;0;1;Old +21223;Poland;M;Clerical support workers;Financial and insurance activities   ;Y15-29;3930;1;1.4976158641373863e-05;38018718;0.00010337013467944921;1;0;Young +21224;Poland;M;Clerical support workers;Financial and insurance activities   ;Y30-49;4853;1;1.8493460022032407e-05;38018718;0.00012764764977083132;1;0;Young +21225;Poland;M;Clerical support workers;Financial and insurance activities   ;Y50-64;1809;1;6.893605847899572e-06;38018718;4.758182535244876e-05;0;1;Old +21226;Poland;M;Clerical support workers;Real estate activities   ;Y15-29;995;1;3.791673752714248e-06;38018718;2.6171319085509406e-05;1;0;Young +21227;Poland;M;Clerical support workers;Real estate activities   ;Y30-49;2694;1;1.0266099587750938e-05;38018718;7.085983278026366e-05;1;0;Young +21228;Poland;M;Clerical support workers;Real estate activities   ;Y50-64;2658;1;1.0128913401723086e-05;38018718;6.99129307832e-05;0;1;Old +21229;Poland;M;Clerical support workers;Real estate activities   ;Y65-84;263;1;1.0022213034812534e-06;38018718;6.917645145215049e-06;0;1;Old +21230;Poland;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;3973;1;1.5140019919129354e-05;38018718;0.00010450115650927525;1;0;Young +21231;Poland;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2925;1;1.114637761476299e-05;38018718;7.693578726142212e-05;1;0;Young +21232;Poland;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;973;1;3.7078377501416716e-06;38018718;2.5592656753970504e-05;0;1;Old +21233;Poland;M;Clerical support workers;Administrative and support service activities   ;Y15-29;3616;1;1.3779590241019819e-05;38018718;9.511104503839399e-05;1;0;Young +21234;Poland;M;Clerical support workers;Administrative and support service activities   ;Y30-49;3207;1;1.2221002738647832e-05;38018718;8.435318623842077e-05;1;0;Young +21235;Poland;M;Clerical support workers;Administrative and support service activities   ;Y50-64;1376;1;5.243560888175684e-06;38018718;3.619269855443311e-05;0;1;Old +21236;Poland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;7449;1;2.8386108325596413e-05;38018718;0.00019592980489242166;1;0;Young +21237;Poland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;8370;1;3.189578825147563e-05;38018718;0.00022015471431730024;1;0;Young +21238;Poland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;5427;1;2.0680817543698716e-05;38018718;0.00014274547605734627;0;1;Old +21239;Poland;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;266;1;1.013653485650241e-06;38018718;6.996553644970354e-06;0;1;Old +21240;Poland;M;Clerical support workers;Education   ;Y15-29;1102;1;4.199421583408142e-06;38018718;2.898572224344861e-05;1;0;Young +21241;Poland;M;Clerical support workers;Education   ;Y30-49;1576;1;6.005706366108195e-06;38018718;4.145326520478676e-05;1;0;Young +21242;Poland;M;Clerical support workers;Education   ;Y50-64;1622;1;6.180999826032673e-06;38018718;4.26631955343681e-05;0;1;Old +21243;Poland;M;Clerical support workers;Human health and social work activities   ;Y15-29;1349;1;5.140671248654794e-06;38018718;3.5482522056635365e-05;1;0;Young +21244;Poland;M;Clerical support workers;Human health and social work activities   ;Y30-49;1684;1;6.417264924191752e-06;38018718;4.429397119597773e-05;1;0;Young +21245;Poland;M;Clerical support workers;Human health and social work activities   ;Y50-64;1240;1;4.725301963181575e-06;38018718;3.2615513232192624e-05;0;1;Old +21246;Poland;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;1350;1;5.144481976044457e-06;38018718;3.5508824889887136e-05;1;0;Young +21247;Poland;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;1410;1;5.37312561942421e-06;38018718;3.7086994884993226e-05;1;0;Young +21248;Poland;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;877;1;3.3420079207340657e-06;38018718;2.3067584761800754e-05;0;1;Old +21249;Poland;M;Clerical support workers;Other service activities   ;Y15-29;804;1;3.063824821288699e-06;38018718;2.114747793442167e-05;1;0;Young +21250;Poland;M;Clerical support workers;Other service activities   ;Y30-49;1027;1;3.9136170291834495e-06;38018718;2.701300974956599e-05;1;0;Young +21251;Poland;M;Clerical support workers;Other service activities   ;Y50-64;541;1;2.0616035178074454e-06;38018718;1.4229832789206623e-05;0;1;Old +21252;Poland;M;Clerical support workers;Not stated   ;Y15-29;1893;1;7.213706948631227e-06;38018718;4.9791263345597294e-05;1;0;Young +21253;Poland;M;Clerical support workers;Not stated   ;Y30-49;1740;1;6.630665658012855e-06;38018718;4.576692985807675e-05;1;0;Young +21254;Poland;M;Clerical support workers;Not stated   ;Y50-64;699;1;2.66369844537413e-06;38018718;1.8385680442986005e-05;0;1;Old +21255;Poland;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2162;1;8.238792616450456e-06;38018718;5.686672549032295e-05;1;0;Young +21256;Poland;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;4660;1;1.7757989635827533e-05;38018718;0.00012257120295324005;1;0;Young +21257;Poland;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;3582;1;1.3650025509771292e-05;38018718;9.421674870783386e-05;0;1;Old +21258;Poland;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;275;1;1.0479500321572042e-06;38018718;7.233279144236268e-06;0;1;Old +21259;Poland;M;Service and sales workers;Mining and quarrying   ;Y15-29;619;1;2.358840254201125e-06;38018718;1.6281453782844545e-05;1;0;Young +21260;Poland;M;Service and sales workers;Mining and quarrying   ;Y30-49;2948;1;1.1234024344725228e-05;38018718;7.75407524262128e-05;1;0;Young +21261;Poland;M;Service and sales workers;Mining and quarrying   ;Y50-64;1269;1;4.8358130574817896e-06;38018718;3.3378295396493905e-05;0;1;Old +21262;Poland;M;Service and sales workers;Manufacturing   ;Y15-29;10401;1;3.9635375579880296e-05;38018718;0.00027357576865164154;1;0;Young +21263;Poland;M;Service and sales workers;Manufacturing   ;Y30-49;19494;1;7.428631973408196e-05;38018718;0.0005127474314099702;1;0;Young +21264;Poland;M;Service and sales workers;Manufacturing   ;Y50-64;15858;1;6.043051494526888e-05;38018718;0.0004171103297065409;0;1;Old +21265;Poland;M;Service and sales workers;Manufacturing   ;Y65-84;1708;1;6.5087223815436535e-06;38018718;4.492523919402017e-05;0;1;Old +21266;Poland;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1657;1;6.3143752846708626e-06;38018718;4.358379469817998e-05;1;0;Young +21267;Poland;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2579;1;9.827865937939744e-06;38018718;6.783500695631031e-05;1;0;Young +21268;Poland;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1746;1;6.653530022350831e-06;38018718;4.592474685758736e-05;0;1;Old +21269;Poland;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;504;1;1.9206066043899305e-06;38018718;1.3256627958891197e-05;1;0;Young +21270;Poland;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1320;1;5.03016015435458e-06;38018718;3.4719739892334084e-05;1;0;Young +21271;Poland;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1751;1;6.672583659299144e-06;38018718;4.60562610238462e-05;0;1;Old +21272;Poland;M;Service and sales workers;Construction   ;Y15-29;2315;1;8.821833907068828e-06;38018718;6.0891058977843493e-05;1;0;Young +21273;Poland;M;Service and sales workers;Construction   ;Y30-49;4475;1;1.7053005068739957e-05;38018718;0.00011770517880166291;1;0;Young +21274;Poland;M;Service and sales workers;Construction   ;Y50-64;3602;1;1.3726240057564542e-05;38018718;9.474280537286923e-05;0;1;Old +21275;Poland;M;Service and sales workers;Construction   ;Y65-84;366;1;1.394726224616497e-06;38018718;9.626836970147178e-06;0;1;Old +21276;Poland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;102399;1;0.0003902146739740565;38018718;0.0026933838221478166;1;0;Young +21277;Poland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;138770;1;0.0005288146398634736;38018718;0.0036500441703478798;1;0;Young +21278;Poland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;59596;1;0.00022710410951432995;38018718;0.0015675436504723804;0;1;Old +21279;Poland;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4126;1;1.5723061209747725e-05;38018718;0.00010852548999679579;0;1;Old +21280;Poland;M;Service and sales workers;Transportation and storage   ;Y15-29;2542;1;9.68686902452223e-06;38018718;6.686180212599488e-05;1;0;Young +21281;Poland;M;Service and sales workers;Transportation and storage   ;Y30-49;9745;1;3.713553841226165e-05;38018718;0.0002563211100384816;1;0;Young +21282;Poland;M;Service and sales workers;Transportation and storage   ;Y50-64;6049;1;2.305108998006883e-05;38018718;0.00015910583833994612;0;1;Old +21283;Poland;M;Service and sales workers;Transportation and storage   ;Y65-84;370;1;1.4099691341751475e-06;38018718;9.732048303154251e-06;0;1;Old +21284;Poland;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;42748;1;0.00016290097445329513;38018718;0.001124393515846589;1;0;Young +21285;Poland;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;25747;1;9.811479810164195e-05;38018718;0.000677219047733277;1;0;Young +21286;Poland;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;8433;1;3.213586407702437e-05;38018718;0.00022181179281216163;0;1;Old +21287;Poland;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;524;1;1.9968211521831816e-06;38018718;1.3782684623926562e-05;0;1;Old +21288;Poland;M;Service and sales workers;Information and communication   ;Y15-29;5306;1;2.0219719529549546e-05;38018718;0.0001395628332338823;1;0;Young +21289;Poland;M;Service and sales workers;Information and communication   ;Y30-49;2837;1;1.0811033604472685e-05;38018718;7.462113793526652e-05;1;0;Young +21290;Poland;M;Service and sales workers;Information and communication   ;Y50-64;775;1;2.9533137269884843e-06;38018718;2.0384695770120392e-05;0;1;Old +21291;Poland;M;Service and sales workers;Financial and insurance activities   ;Y15-29;1164;1;4.435686681567221e-06;38018718;3.061649790505824e-05;1;0;Young +21292;Poland;M;Service and sales workers;Financial and insurance activities   ;Y30-49;1916;1;7.301353678593466e-06;38018718;5.039622851038796e-05;1;0;Young +21293;Poland;M;Service and sales workers;Financial and insurance activities   ;Y50-64;996;1;3.79548448010391e-06;38018718;2.6197621918761173e-05;0;1;Old +21294;Poland;M;Service and sales workers;Real estate activities   ;Y15-29;392;1;1.4938051367477238e-06;38018718;1.0310710634693153e-05;1;0;Young +21295;Poland;M;Service and sales workers;Real estate activities   ;Y30-49;1676;1;6.386779105074451e-06;38018718;4.408354852996358e-05;1;0;Young +21296;Poland;M;Service and sales workers;Real estate activities   ;Y50-64;2402;1;9.15336718996947e-06;38018718;6.317940547074734e-05;0;1;Old +21297;Poland;M;Service and sales workers;Real estate activities   ;Y65-84;297;1;1.1317860347297806e-06;38018718;7.81194147577517e-06;0;1;Old +21298;Poland;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;1189;1;4.530954866308785e-06;38018718;3.1274068736352445e-05;1;0;Young +21299;Poland;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;1323;1;5.0415923365235675e-06;38018718;3.479864839208939e-05;1;0;Young +21300;Poland;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;722;1;2.7513451753363685e-06;38018718;1.8990645607776674e-05;0;1;Old +21301;Poland;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;192;1;7.316596588152116e-07;38018718;5.050143984339503e-06;0;1;Old +21302;Poland;M;Service and sales workers;Administrative and support service activities   ;Y15-29;23114;1;8.808115288466043e-05;38018718;0.0006079636877813712;1;0;Young +21303;Poland;M;Service and sales workers;Administrative and support service activities   ;Y30-49;46993;1;0.0001790775122224127;38018718;0.0012360490430003452;1;0;Young +21304;Poland;M;Service and sales workers;Administrative and support service activities   ;Y50-64;59866;1;0.00022813300590953886;38018718;0.0015746454154503579;0;1;Old +21305;Poland;M;Service and sales workers;Administrative and support service activities   ;Y65-84;6149;1;2.3432162719035086e-05;38018718;0.00016173612166512296;0;1;Old +21306;Poland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;28809;1;0.00010978324536878871;38018718;0.0007577583231501915;1;0;Young +21307;Poland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;79696;1;0.0003036997300465474;38018718;0.002096230598832922;1;0;Young +21308;Poland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;11906;1;4.537052030132245e-05;38018718;0.00031316153269555277;0;1;Old +21309;Poland;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;365;1;1.3909154972268347e-06;38018718;9.60053413689541e-06;0;1;Old +21310;Poland;M;Service and sales workers;Education   ;Y15-29;3295;1;1.2556346748938137e-05;38018718;8.666783556457638e-05;1;0;Young +21311;Poland;M;Service and sales workers;Education   ;Y30-49;7898;1;3.0097124923554902e-05;38018718;0.00020773977702246563;1;0;Young +21312;Poland;M;Service and sales workers;Education   ;Y50-64;8028;1;3.0592519484211034e-05;38018718;0.0002111591453451955;0;1;Old +21313;Poland;M;Service and sales workers;Education   ;Y65-84;718;1;2.7361022657777186e-06;38018718;1.88854342747696e-05;0;1;Old +21314;Poland;M;Service and sales workers;Human health and social work activities   ;Y15-29;2529;1;9.637329568456616e-06;38018718;6.651986529372189e-05;1;0;Young +21315;Poland;M;Service and sales workers;Human health and social work activities   ;Y30-49;6170;1;2.3512187994218e-05;38018718;0.00016228848116341008;1;0;Young +21316;Poland;M;Service and sales workers;Human health and social work activities   ;Y50-64;4044;1;1.5410581563795395e-05;38018718;0.0001063686576701508;0;1;Old +21317;Poland;M;Service and sales workers;Human health and social work activities   ;Y65-84;179;1;6.821202027495983e-07;38018718;4.708207152066516e-06;0;1;Old +21318;Poland;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;3479;1;1.3257520588636047e-05;38018718;9.150755688290173e-05;1;0;Young +21319;Poland;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;3480;1;1.326133131602571e-05;38018718;9.15338597161535e-05;1;0;Young +21320;Poland;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;2493;1;9.500143382428764e-06;38018718;6.557296329665824e-05;0;1;Old +21321;Poland;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;221;1;8.421707531154259e-07;38018718;5.812926148640782e-06;0;1;Old +21322;Poland;M;Service and sales workers;Other service activities   ;Y15-29;4731;1;1.8028551280493573e-05;38018718;0.00012443870411411558;1;0;Young +21323;Poland;M;Service and sales workers;Other service activities   ;Y30-49;6701;1;2.553568423812882e-05;38018718;0.00017625528562009902;1;0;Young +21324;Poland;M;Service and sales workers;Other service activities   ;Y50-64;3172;1;1.2087627280009643e-05;38018718;8.343258707460888e-05;0;1;Old +21325;Poland;M;Service and sales workers;Other service activities   ;Y65-84;739;1;2.8161275409606323e-06;38018718;1.9437793773056735e-05;0;1;Old +21326;Poland;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;316;1;1.2041898551333691e-06;38018718;8.311695307558766e-06;1;0;Young +21327;Poland;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;225;1;8.574136626740762e-07;38018718;5.918137481647856e-06;1;0;Young +21328;Poland;M;Service and sales workers;Not stated   ;Y15-29;1905;1;7.259435677307178e-06;38018718;5.010689734461851e-05;1;0;Young +21329;Poland;M;Service and sales workers;Not stated   ;Y30-49;2460;1;9.3743893785699e-06;38018718;6.470496979934988e-05;1;0;Young +21330;Poland;M;Service and sales workers;Not stated   ;Y50-64;1523;1;5.80373781445608e-06;38018718;4.005921504244304e-05;0;1;Old +21331;Poland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;168279;1;0.000641265394405026;38018718;0.004426214476774309;1;0;Young +21332;Poland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;409168;1;0.0015592277045734506;38018718;0.01076227767595951;1;0;Young +21333;Poland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;323618;1;0.0012332199763878185;38018718;0.008512070291270737;0;1;Old +21334;Poland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;50467;1;0.00019231597917410045;38018718;0.0013274250857169881;0;1;Old +21335;Poland;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;343;1;1.3070794946542583e-06;38018718;9.021871805356509e-06;0;1;Old +21336;Poland;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;1155;1;4.401390135060257e-06;38018718;3.0379772405792326e-05;1;0;Young +21337;Poland;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;2247;1;8.562704444571774e-06;38018718;5.910246631672325e-05;1;0;Young +21338;Poland;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;1311;1;4.995863607847617e-06;38018718;3.4483014393068173e-05;0;1;Old +21339;Poland;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;212;1;8.078742066084628e-07;38018718;5.576200649374868e-06;1;0;Young +21340;Poland;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;498;1;1.897742240051955e-06;38018718;1.3098810959380587e-05;1;0;Young +21341;Poland;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;381;1;1.4518871354614356e-06;38018718;1.0021379468923702e-05;0;1;Old +21342;Poland;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;177;1;6.744987479702732e-07;38018718;4.65560148556298e-06;1;0;Young +21343;Poland;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;223;1;8.49792207894751e-07;38018718;5.865531815144319e-06;1;0;Young +21344;Poland;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;200;1;7.621454779325121e-07;38018718;5.26056665035365e-06;0;1;Old +21345;Poland;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;472;1;1.7986633279207285e-06;38018718;1.2414937294834613e-05;1;0;Young +21346;Poland;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1120;1;4.268014676422068e-06;38018718;2.9459173241980437e-05;1;0;Young +21347;Poland;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;648;1;2.469351348501339e-06;38018718;1.7044235947145825e-05;0;1;Old +21348;Poland;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;182;1;6.93552384918586e-07;38018718;4.7871156518218214e-06;1;0;Young +21349;Poland;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;352;1;1.3413760411612213e-06;38018718;9.258597304622423e-06;1;0;Young +21350;Poland;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;391;1;1.4899944093580612e-06;38018718;1.0284407801441385e-05;0;1;Old +21351;Poland;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;384;1;1.4633193176304232e-06;38018718;1.0100287968679006e-05;1;0;Young +21352;Poland;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;507;1;1.9320387865589183e-06;38018718;1.33355364586465e-05;0;1;Old +21353;Poland;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;226;1;8.612243900637387e-07;38018718;5.944440314899624e-06;1;0;Young +21354;Poland;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;548;1;2.088278609535083e-06;38018718;1.4413952621969e-05;1;0;Young +21355;Poland;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;364;1;1.387104769837172e-06;38018718;9.574231303643643e-06;0;1;Old +21356;Poland;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2202;1;8.391221712036959e-06;38018718;5.791883882039368e-05;1;0;Young +21357;Poland;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;3405;1;1.2975526761801018e-05;38018718;8.956114722227088e-05;1;0;Young +21358;Poland;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;1856;1;7.0727100352137125e-06;38018718;4.8818058515281866e-05;0;1;Old +21359;Poland;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;211;1;8.040634792188003e-07;38018718;5.5498978161231e-06;1;0;Young +21360;Poland;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;708;1;2.697994991881093e-06;38018718;1.862240594225192e-05;1;0;Young +21361;Poland;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;774;1;2.9495029995988217e-06;38018718;2.0358392936868624e-05;0;1;Old +21362;Poland;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;425;1;1.6195591406065882e-06;38018718;1.1178704132001506e-05;1;0;Young +21363;Poland;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;777;1;2.9609351817678095e-06;38018718;2.0437301436623927e-05;0;1;Old +21364;Poland;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;219;1;8.345492983361008e-07;38018718;5.7603204821372466e-06;1;0;Young +21365;Poland;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;272;1;1.0365178499882164e-06;38018718;7.154370644480963e-06;0;1;Old +21366;Poland;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;188;1;7.164167492565614e-07;38018718;4.944932651332431e-06;1;0;Young +21367;Poland;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;454;1;1.7300702349068025e-06;38018718;1.1941486296302785e-05;1;0;Young +21368;Poland;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;441;1;1.6805307788411892e-06;38018718;1.1599549464029797e-05;0;1;Old +21369;Poland;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;166;1;6.325807466839851e-07;38018718;4.366270319793529e-06;1;0;Young +21370;Poland;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;182;1;6.93552384918586e-07;38018718;4.7871156518218214e-06;1;0;Young +21371;Poland;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;459;1;1.7491238718551153e-06;38018718;1.2073000462561626e-05;1;0;Young +21372;Poland;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;268;1;1.0212749404295662e-06;38018718;7.04915931147389e-06;0;1;Old +21373;Poland;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y15-29;418;1;1.5928840488789504e-06;38018718;1.0994584299239128e-05;1;0;Young +21374;Poland;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y30-49;950;1;3.6201910201794326e-06;38018718;2.4987691589179835e-05;1;0;Young +21375;Poland;M;Skilled agricultural, forestry, and fishery workers;Not stated   ;Y50-64;526;1;2.004442606962507e-06;38018718;1.3835290290430098e-05;0;1;Old +21376;Poland;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;5637;1;2.1481070295527855e-05;38018718;0.0001482690710402176;1;0;Young +21377;Poland;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;13086;1;4.986717862112427e-05;38018718;0.0003441988759326393;1;0;Young +21378;Poland;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;8263;1;3.148804042078174e-05;38018718;0.00021734031115936103;0;1;Old +21379;Poland;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;7103;1;2.7067596648773167e-05;38018718;0.00018682902458730987;1;0;Young +21380;Poland;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;33773;1;0.00012869969613107365;38018718;0.000888325587411969;1;0;Young +21381;Poland;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;11132;1;4.2421017301723625e-05;38018718;0.0002928031397586841;0;1;Old +21382;Poland;M;Craft and related trades workers;Manufacturing   ;Y15-29;257073;1;0.0009796351222427235;38018718;0.006761748252531819;1;0;Young +21383;Poland;M;Craft and related trades workers;Manufacturing   ;Y30-49;496059;1;0.0018903456181886202;38018718;0.013047757160038906;1;0;Young +21384;Poland;M;Craft and related trades workers;Manufacturing   ;Y50-64;218232;1;0.0008316226597008399;38018718;0.005740119906199888;0;1;Old +21385;Poland;M;Craft and related trades workers;Manufacturing   ;Y65-84;4976;1;1.89621794909609e-05;38018718;0.0001308828982607988;0;1;Old +21386;Poland;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;4013;1;1.5292449014715856e-05;38018718;0.00010555326983934597;1;0;Young +21387;Poland;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;23593;1;8.990649130430879e-05;38018718;0.0006205627449089682;1;0;Young +21388;Poland;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;17097;1;6.515200618106079e-05;38018718;0.00044969954010548173;0;1;Old +21389;Poland;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;4435;1;1.6900575973153457e-05;38018718;0.00011665306547159217;1;0;Young +21390;Poland;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;15787;1;6.015995330060284e-05;38018718;0.0004152428285456653;1;0;Young +21391;Poland;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;12685;1;4.833907693786958e-05;38018718;0.00033365143979868024;0;1;Old +21392;Poland;M;Craft and related trades workers;Construction   ;Y15-29;213348;1;0.000813011067129728;38018718;0.005611656868598252;1;0;Young +21393;Poland;M;Craft and related trades workers;Construction   ;Y30-49;419546;1;0.0015987754334233686;38018718;0.01103524847944636;1;0;Young +21394;Poland;M;Craft and related trades workers;Construction   ;Y50-64;172300;1;0.0006565883292388592;38018718;0.004531978169279669;0;1;Old +21395;Poland;M;Craft and related trades workers;Construction   ;Y65-84;1744;1;6.6459085675715054e-06;38018718;4.5872141191083826e-05;0;1;Old +21396;Poland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;62527;1;0.00023827335149343093;38018718;0.0016446372547333132;1;0;Young +21397;Poland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;96692;1;0.0003684668527612523;38018718;0.0025432735527799754;1;0;Young +21398;Poland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;34460;1;0.00013131766584777185;38018718;0.0009063956338559338;0;1;Old +21399;Poland;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1195;1;4.55381923064676e-06;38018718;3.1431885735863056e-05;0;1;Old +21400;Poland;M;Craft and related trades workers;Transportation and storage   ;Y15-29;4637;1;1.7670342905865292e-05;38018718;0.00012196623778844936;1;0;Young +21401;Poland;M;Craft and related trades workers;Transportation and storage   ;Y30-49;22744;1;8.667118375048527e-05;38018718;0.000598231639478217;1;0;Young +21402;Poland;M;Craft and related trades workers;Transportation and storage   ;Y50-64;18805;1;7.166072856260445e-05;38018718;0.0004946247792995019;0;1;Old +21403;Poland;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;813;1;3.098121367795662e-06;38018718;2.1384203433687583e-05;1;0;Young +21404;Poland;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2444;1;9.313417740335298e-06;38018718;6.428412446732159e-05;1;0;Young +21405;Poland;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;2123;1;8.090174248253617e-06;38018718;5.5840914993503986e-05;0;1;Old +21406;Poland;M;Craft and related trades workers;Information and communication   ;Y15-29;2868;1;1.0929166153552224e-05;38018718;7.543652576607133e-05;1;0;Young +21407;Poland;M;Craft and related trades workers;Information and communication   ;Y30-49;6459;1;2.461348820983048e-05;38018718;0.0001698899999731711;1;0;Young +21408;Poland;M;Craft and related trades workers;Information and communication   ;Y50-64;2171;1;8.273089162957418e-06;38018718;5.7103450989588866e-05;0;1;Old +21409;Poland;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;317;1;1.2080005825230317e-06;38018718;8.337998140810535e-06;1;0;Young +21410;Poland;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;232;1;8.840887544017141e-07;38018718;6.102257314410233e-06;0;1;Old +21411;Poland;M;Craft and related trades workers;Real estate activities   ;Y15-29;702;1;2.6751306275431174e-06;38018718;1.846458894274131e-05;1;0;Young +21412;Poland;M;Craft and related trades workers;Real estate activities   ;Y30-49;5409;1;2.061222445068479e-05;38018718;0.00014227202505881446;1;0;Young +21413;Poland;M;Craft and related trades workers;Real estate activities   ;Y50-64;7378;1;2.811554668093037e-05;38018718;0.00019406230373154613;0;1;Old +21414;Poland;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;2079;1;7.922502243108464e-06;38018718;5.468359033042619e-05;1;0;Young +21415;Poland;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;3978;1;1.5159073556077667e-05;38018718;0.0001046326706755341;1;0;Young +21416;Poland;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;1963;1;7.4804578659076065e-06;38018718;5.163246167322107e-05;0;1;Old +21417;Poland;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;2132;1;8.124470794760578e-06;38018718;5.6077640492769904e-05;1;0;Young +21418;Poland;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;4664;1;1.7773232545386184e-05;38018718;0.0001226764142862471;1;0;Young +21419;Poland;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;3260;1;1.2422971290299948e-05;38018718;8.574723640076449e-05;0;1;Old +21420;Poland;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;239;1;9.10763846129352e-07;38018718;6.286377147172611e-06;0;1;Old +21421;Poland;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;1470;1;5.601769262803964e-06;38018718;3.866516488009932e-05;1;0;Young +21422;Poland;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;7569;1;2.8843395612355922e-05;38018718;0.00019908614488263387;1;0;Young +21423;Poland;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;8533;1;3.251693681599063e-05;38018718;0.00022444207613733845;0;1;Old +21424;Poland;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;222;1;8.459814805050885e-07;38018718;5.839228981892551e-06;0;1;Old +21425;Poland;M;Craft and related trades workers;Education   ;Y15-29;1120;1;4.268014676422068e-06;38018718;2.9459173241980437e-05;1;0;Young +21426;Poland;M;Craft and related trades workers;Education   ;Y30-49;5686;1;2.1667795937621318e-05;38018718;0.00014955790986955424;1;0;Young +21427;Poland;M;Craft and related trades workers;Education   ;Y50-64;9606;1;3.660584730509855e-05;38018718;0.0002526650162164858;0;1;Old +21428;Poland;M;Craft and related trades workers;Education   ;Y65-84;424;1;1.6157484132169256e-06;38018718;1.1152401298749736e-05;0;1;Old +21429;Poland;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;642;1;2.446486984163364e-06;38018718;1.6886418947635214e-05;1;0;Young +21430;Poland;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;4931;1;1.8790696758426086e-05;38018718;0.00012969927076446922;1;0;Young +21431;Poland;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;5723;1;2.1808792851038836e-05;38018718;0.0001505311146998697;0;1;Old +21432;Poland;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;171;1;6.516343836322978e-07;38018718;4.4977844860523706e-06;0;1;Old +21433;Poland;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;1680;1;6.4020220146331015e-06;38018718;4.418875986297066e-05;1;0;Young +21434;Poland;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;4405;1;1.678625415146358e-05;38018718;0.00011586398047403913;1;0;Young +21435;Poland;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;3724;1;1.4191148799103376e-05;38018718;9.795175102958496e-05;0;1;Old +21436;Poland;M;Craft and related trades workers;Other service activities   ;Y15-29;5135;1;1.956808514591725e-05;38018718;0.00013506504874782996;1;0;Young +21437;Poland;M;Craft and related trades workers;Other service activities   ;Y30-49;11321;1;4.314124477836985e-05;38018718;0.0002977743752432683;1;0;Young +21438;Poland;M;Craft and related trades workers;Other service activities   ;Y50-64;6800;1;2.591294624970541e-05;38018718;0.0001788592661120241;0;1;Old +21439;Poland;M;Craft and related trades workers;Other service activities   ;Y65-84;876;1;3.338197193344403e-06;38018718;2.3041281928548986e-05;0;1;Old +21440;Poland;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;299;1;1.1394074895091056e-06;38018718;7.864547142278705e-06;1;0;Young +21441;Poland;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;197;1;7.507132957635244e-07;38018718;5.181658150598345e-06;0;1;Old +21442;Poland;M;Craft and related trades workers;Not stated   ;Y15-29;7605;1;2.8980581798383772e-05;38018718;0.0002000330468796975;1;0;Young +21443;Poland;M;Craft and related trades workers;Not stated   ;Y30-49;14068;1;5.36093129177729e-05;38018718;0.00037002825818587573;1;0;Young +21444;Poland;M;Craft and related trades workers;Not stated   ;Y50-64;6579;1;2.5070775496589984e-05;38018718;0.0001730463399633833;0;1;Old +21445;Poland;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;5761;1;2.195360049184601e-05;38018718;0.00015153062236343686;1;0;Young +21446;Poland;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;15753;1;6.003038856935432e-05;38018718;0.0004143485322151052;1;0;Young +21447;Poland;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;12507;1;4.766076746250965e-05;38018718;0.00032896953547986545;0;1;Old +21448;Poland;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;22967;1;8.752097595838003e-05;38018718;0.0006040971712933614;1;0;Young +21449;Poland;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;71357;1;0.00027192207434415135;38018718;0.0018768912723464268;1;0;Young +21450;Poland;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;14701;1;5.60215033554293e-05;38018718;0.000386677951634245;0;1;Old +21451;Poland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;100546;1;0.0003831533961210118;38018718;0.00264464467213229;1;0;Young +21452;Poland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;165299;1;0.0006299094267838316;38018718;0.004347832033684039;1;0;Young +21453;Poland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;66535;1;0.00025354674687119846;38018718;0.0017500590104064003;0;1;Old +21454;Poland;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;748;1;2.8504240874675953e-06;38018718;1.967451927232265e-05;0;1;Old +21455;Poland;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1292;1;4.9234597874440285e-06;38018718;3.3983260561284574e-05;1;0;Young +21456;Poland;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;7638;1;2.9106335802242636e-05;38018718;0.00020090104037700588;1;0;Young +21457;Poland;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;6487;1;2.472018857674103e-05;38018718;0.0001706264793042206;0;1;Old +21458;Poland;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;5541;1;2.111524046612025e-05;38018718;0.00014574399904804787;1;0;Young +21459;Poland;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;16812;1;6.406594887500697e-05;38018718;0.00044220323262872776;1;0;Young +21460;Poland;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;10755;1;4.098437307582084e-05;38018718;0.0002828869716227675;0;1;Old +21461;Poland;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;23596;1;8.991792348647777e-05;38018718;0.0006206416534087235;1;0;Young +21462;Poland;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;46487;1;0.00017714928416324345;38018718;0.0012227398093749506;1;0;Young +21463;Poland;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;25992;1;9.904842631210928e-05;38018718;0.0006836632418799603;0;1;Old +21464;Poland;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;329;1;1.2537293111989825e-06;38018718;8.653632139831754e-06;0;1;Old +21465;Poland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;27890;1;0.00010628118689768881;38018718;0.0007335860193918164;1;0;Young +21466;Poland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;45207;1;0.00017227155310447538;38018718;0.001189072182812687;1;0;Young +21467;Poland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;15587;1;5.939780782267033e-05;38018718;0.0004099822618953117;0;1;Old +21468;Poland;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;370;1;1.4099691341751475e-06;38018718;9.732048303154251e-06;0;1;Old +21469;Poland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;67710;1;0.00025802435155405196;38018718;0.001780964839477228;1;0;Young +21470;Poland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;216605;1;0.0008254226062378589;38018718;0.005697325196499261;1;0;Young +21471;Poland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;125405;1;0.0004778842683006334;38018718;0.003298506803937997;0;1;Old +21472;Poland;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;4375;1;1.6671932329773704e-05;38018718;0.00011507489547648608;0;1;Old +21473;Poland;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2288;1;8.718944267547939e-06;38018718;6.018088248004575e-05;1;0;Young +21474;Poland;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;2036;1;7.758640965352974e-06;38018718;5.355256850060015e-05;1;0;Young +21475;Poland;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;914;1;3.4830048341515803e-06;38018718;2.4040789592116178e-05;0;1;Old +21476;Poland;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;259;1;9.869783939226032e-07;38018718;6.812433812207976e-06;1;0;Young +21477;Poland;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;727;1;2.7703988122846815e-06;38018718;1.9122159774035515e-05;1;0;Young +21478;Poland;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;336;1;1.2804044029266203e-06;38018718;8.837751972594131e-06;0;1;Old +21479;Poland;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;423;1;1.6119376858272632e-06;38018718;1.1126098465497969e-05;1;0;Young +21480;Poland;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;240;1;9.145745735190145e-07;38018718;6.312679980424379e-06;0;1;Old +21481;Poland;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;187;1;7.126060218668988e-07;38018718;4.918629818080662e-06;1;0;Young +21482;Poland;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;1290;1;4.915838332664703e-06;38018718;3.393065489478104e-05;1;0;Young +21483;Poland;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;1732;1;6.600179838895555e-06;38018718;4.55565071920626e-05;0;1;Old +21484;Poland;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;952;1;3.627812474958758e-06;38018718;2.5040297255683373e-05;1;0;Young +21485;Poland;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;1662;1;6.3334289216191756e-06;38018718;4.371530886443883e-05;1;0;Young +21486;Poland;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;1282;1;4.8853525135474025e-06;38018718;3.372023222876689e-05;0;1;Old +21487;Poland;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;1624;1;6.1886212808119984e-06;38018718;4.271580120087163e-05;1;0;Young +21488;Poland;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;3709;1;1.4133987888258437e-05;38018718;9.755720853080843e-05;1;0;Young +21489;Poland;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2138;1;8.147335159098554e-06;38018718;5.6235457492280515e-05;0;1;Old +21490;Poland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2455;1;9.355335741621587e-06;38018718;6.457345563309105e-05;1;0;Young +21491;Poland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;8666;1;3.302376355881575e-05;38018718;0.00022794035295982363;1;0;Young +21492;Poland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;7049;1;2.686181736973139e-05;38018718;0.00018540867159171437;0;1;Old +21493;Poland;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;195;1;7.430918409841993e-07;38018718;5.129052484094808e-06;0;1;Old +21494;Poland;M;Plant and machine operators, and assemblers;Education   ;Y15-29;380;1;1.448076408071773e-06;38018718;9.995076635671935e-06;1;0;Young +21495;Poland;M;Plant and machine operators, and assemblers;Education   ;Y30-49;2531;1;9.644951023235941e-06;38018718;6.657247096022543e-05;1;0;Young +21496;Poland;M;Plant and machine operators, and assemblers;Education   ;Y50-64;3314;1;1.2628750569341725e-05;38018718;8.716758939635997e-05;0;1;Old +21497;Poland;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;1210;1;4.610980141491699e-06;38018718;3.182642823463958e-05;1;0;Young +21498;Poland;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;6271;1;2.3897071460573917e-05;38018718;0.00016494506732183867;1;0;Young +21499;Poland;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;5996;1;2.2849121428416714e-05;38018718;0.00015771178817760242;0;1;Old +21500;Poland;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;595;1;2.2673827968492233e-06;38018718;1.5650185784802108e-05;1;0;Young +21501;Poland;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;1412;1;5.3807470742035355e-06;38018718;3.713960055149677e-05;1;0;Young +21502;Poland;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;903;1;3.441086832865292e-06;38018718;2.375145842634673e-05;0;1;Old +21503;Poland;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;1448;1;5.5179332602313875e-06;38018718;3.8086502548560425e-05;1;0;Young +21504;Poland;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2807;1;1.0696711782782807e-05;38018718;7.383205293771346e-05;1;0;Young +21505;Poland;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;1586;1;6.043813640004821e-06;38018718;4.171629353730444e-05;0;1;Old +21506;Poland;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;235;1;8.955209365707018e-07;38018718;6.181165814165538e-06;0;1;Old +21507;Poland;M;Plant and machine operators, and assemblers;Not stated   ;Y15-29;2838;1;1.0814844331862347e-05;38018718;7.464744076851829e-05;1;0;Young +21508;Poland;M;Plant and machine operators, and assemblers;Not stated   ;Y30-49;5488;1;2.0913271914468133e-05;38018718;0.00014434994888570414;1;0;Young +21509;Poland;M;Plant and machine operators, and assemblers;Not stated   ;Y50-64;2808;1;1.070052251017247e-05;38018718;7.385835577096524e-05;0;1;Old +21510;Poland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;7644;1;2.9129200166580612e-05;38018718;0.0002010588573765165;1;0;Young +21511;Poland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;9432;1;3.594278073929727e-05;38018718;0.0002480883232306781;1;0;Young +21512;Poland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;5805;1;2.2121272496991165e-05;38018718;0.00015268794702651467;0;1;Old +21513;Poland;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;290;1;1.1051109430021426e-06;38018718;7.627821643012792e-06;0;1;Old +21514;Poland;M;Elementary occupations;Mining and quarrying   ;Y15-29;1334;1;5.083510337809856e-06;38018718;3.508797955785884e-05;1;0;Young +21515;Poland;M;Elementary occupations;Mining and quarrying   ;Y30-49;3699;1;1.4095880614361811e-05;38018718;9.729418019829074e-05;1;0;Young +21516;Poland;M;Elementary occupations;Mining and quarrying   ;Y50-64;1489;1;5.674173083207552e-06;38018718;3.916491871188292e-05;0;1;Old +21517;Poland;M;Elementary occupations;Manufacturing   ;Y15-29;25815;1;9.8373927564139e-05;38018718;0.0006790076403943973;1;0;Young +21518;Poland;M;Elementary occupations;Manufacturing   ;Y30-49;26086;1;9.940663468673755e-05;38018718;0.0006861357082056265;1;0;Young +21519;Poland;M;Elementary occupations;Manufacturing   ;Y50-64;13888;1;5.2923381987633644e-05;38018718;0.00036529374820055743;0;1;Old +21520;Poland;M;Elementary occupations;Manufacturing   ;Y65-84;585;1;2.2292755229525977e-06;38018718;1.5387157452284426e-05;0;1;Old +21521;Poland;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;300;1;1.1432182168987682e-06;38018718;7.890849975530474e-06;1;0;Young +21522;Poland;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;555;1;2.114953701262721e-06;38018718;1.4598072454731378e-05;1;0;Young +21523;Poland;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;675;1;2.5722409880222284e-06;38018718;1.7754412444943568e-05;0;1;Old +21524;Poland;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3038;1;1.157698980979486e-05;38018718;7.990800741887193e-05;1;0;Young +21525;Poland;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;7178;1;2.735340120299786e-05;38018718;0.0001888017370811925;1;0;Young +21526;Poland;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;5418;1;2.0646520997191754e-05;38018718;0.00014250875055808035;0;1;Old +21527;Poland;M;Elementary occupations;Construction   ;Y15-29;44503;1;0.00016958880102215293;38018718;0.0011705549882034423;1;0;Young +21528;Poland;M;Elementary occupations;Construction   ;Y30-49;62908;1;0.00023972523862889235;38018718;0.001654658634202237;1;0;Young +21529;Poland;M;Elementary occupations;Construction   ;Y50-64;21009;1;8.005957172942074e-05;38018718;0.0005525962237863991;0;1;Old +21530;Poland;M;Elementary occupations;Construction   ;Y65-84;453;1;1.72625950751714e-06;38018718;1.1915183463051016e-05;0;1;Old +21531;Poland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;11461;1;4.3674746612922605e-05;38018718;0.0003014567718985159;1;0;Young +21532;Poland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9708;1;3.6994541498844135e-05;38018718;0.00025534790520816613;1;0;Young +21533;Poland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5795;1;2.208316522309454e-05;38018718;0.000152424918693997;0;1;Old +21534;Poland;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;582;1;2.2178433407836104e-06;38018718;1.530824895252912e-05;0;1;Old +21535;Poland;M;Elementary occupations;Transportation and storage   ;Y15-29;4398;1;1.6759579059735942e-05;38018718;0.00011567986064127675;1;0;Young +21536;Poland;M;Elementary occupations;Transportation and storage   ;Y30-49;5460;1;2.080657154755758e-05;38018718;0.00014361346955465463;1;0;Young +21537;Poland;M;Elementary occupations;Transportation and storage   ;Y50-64;4174;1;1.5905976124451526e-05;38018718;0.00010978802599288066;0;1;Old +21538;Poland;M;Elementary occupations;Transportation and storage   ;Y65-84;488;1;1.8596349661553295e-06;38018718;1.2835782626862905e-05;0;1;Old +21539;Poland;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;4230;1;1.6119376858272632e-05;38018718;0.00011126098465497969;1;0;Young +21540;Poland;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;2401;1;9.149556462579808e-06;38018718;6.315310263749556e-05;1;0;Young +21541;Poland;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;1567;1;5.971409819601233e-06;38018718;4.121653970552084e-05;0;1;Old +21542;Poland;M;Elementary occupations;Information and communication   ;Y15-29;1133;1;4.317554132487681e-06;38018718;2.9801110074253425e-05;1;0;Young +21543;Poland;M;Elementary occupations;Information and communication   ;Y30-49;447;1;1.7033951431791645e-06;38018718;1.1757366463540407e-05;1;0;Young +21544;Poland;M;Elementary occupations;Information and communication   ;Y50-64;352;1;1.3413760411612213e-06;38018718;9.258597304622423e-06;0;1;Old +21545;Poland;M;Elementary occupations;Financial and insurance activities   ;Y15-29;197;1;7.507132957635244e-07;38018718;5.181658150598345e-06;1;0;Young +21546;Poland;M;Elementary occupations;Financial and insurance activities   ;Y30-49;162;1;6.173378371253348e-07;38018718;4.261058986786456e-06;1;0;Young +21547;Poland;M;Elementary occupations;Real estate activities   ;Y15-29;288;1;1.0974894882228174e-06;38018718;7.575215976509255e-06;1;0;Young +21548;Poland;M;Elementary occupations;Real estate activities   ;Y30-49;1455;1;5.544608351959026e-06;38018718;3.82706223813228e-05;1;0;Young +21549;Poland;M;Elementary occupations;Real estate activities   ;Y50-64;2183;1;8.31881789163337e-06;38018718;5.741908498861008e-05;0;1;Old +21550;Poland;M;Elementary occupations;Real estate activities   ;Y65-84;284;1;1.0822465786641672e-06;38018718;7.470004643502183e-06;0;1;Old +21551;Poland;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;776;1;2.957124454378147e-06;38018718;2.041099860337216e-05;1;0;Young +21552;Poland;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;640;1;2.4388655293840387e-06;38018718;1.683381328113168e-05;1;0;Young +21553;Poland;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;376;1;1.4328334985131229e-06;38018718;9.889865302664861e-06;0;1;Old +21554;Poland;M;Elementary occupations;Administrative and support service activities   ;Y15-29;4006;1;1.5265773922988216e-05;38018718;0.0001053691500065836;1;0;Young +21555;Poland;M;Elementary occupations;Administrative and support service activities   ;Y30-49;6415;1;2.4445816204685325e-05;38018718;0.0001687326753100933;1;0;Young +21556;Poland;M;Elementary occupations;Administrative and support service activities   ;Y50-64;7099;1;2.7052353739214517e-05;38018718;0.0001867238132543028;0;1;Old +21557;Poland;M;Elementary occupations;Administrative and support service activities   ;Y65-84;558;1;2.1263858834317088e-06;38018718;1.4676980954486682e-05;0;1;Old +21558;Poland;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2007;1;7.648129871052758e-06;38018718;5.2789786336298876e-05;1;0;Young +21559;Poland;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;5346;1;2.037214862513605e-05;38018718;0.00014061494656395304;1;0;Young +21560;Poland;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;6816;1;2.5973917887940012e-05;38018718;0.00017928011144405237;0;1;Old +21561;Poland;M;Elementary occupations;Education   ;Y15-29;966;1;3.6811626584140334e-06;38018718;2.5408536921208128e-05;1;0;Young +21562;Poland;M;Elementary occupations;Education   ;Y30-49;5709;1;2.175544266758356e-05;38018718;0.0001501628750343449;1;0;Young +21563;Poland;M;Elementary occupations;Education   ;Y50-64;10399;1;3.962775412510097e-05;38018718;0.000273523162985138;0;1;Old +21564;Poland;M;Elementary occupations;Education   ;Y65-84;856;1;3.261982645551152e-06;38018718;2.251522526351362e-05;0;1;Old +21565;Poland;M;Elementary occupations;Human health and social work activities   ;Y15-29;916;1;3.4906262889309055e-06;38018718;2.4093395258619713e-05;1;0;Young +21566;Poland;M;Elementary occupations;Human health and social work activities   ;Y30-49;2687;1;1.02394244960233e-05;38018718;7.067571294750128e-05;1;0;Young +21567;Poland;M;Elementary occupations;Human health and social work activities   ;Y50-64;2514;1;9.580168657611677e-06;38018718;6.612532279494538e-05;0;1;Old +21568;Poland;M;Elementary occupations;Human health and social work activities   ;Y65-84;165;1;6.287700192943225e-07;38018718;4.3399674865417605e-06;0;1;Old +21569;Poland;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;967;1;3.684973385803696e-06;38018718;2.5434839754459896e-05;1;0;Young +21570;Poland;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;1225;1;4.668141052336637e-06;38018718;3.22209707334161e-05;1;0;Young +21571;Poland;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;1534;1;5.845655815742368e-06;38018718;4.034854620821249e-05;0;1;Old +21572;Poland;M;Elementary occupations;Other service activities   ;Y15-29;1182;1;4.504279774581147e-06;38018718;3.108994890359007e-05;1;0;Young +21573;Poland;M;Elementary occupations;Other service activities   ;Y30-49;2411;1;9.187663736476434e-06;38018718;6.341613097001324e-05;1;0;Young +21574;Poland;M;Elementary occupations;Other service activities   ;Y50-64;1618;1;6.165756916474023e-06;38018718;4.255798420136103e-05;0;1;Old +21575;Poland;M;Elementary occupations;Other service activities   ;Y65-84;202;1;7.697669327118372e-07;38018718;5.313172316857186e-06;0;1;Old +21576;Poland;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;197;1;7.507132957635244e-07;38018718;5.181658150598345e-06;1;0;Young +21577;Poland;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;202;1;7.697669327118372e-07;38018718;5.313172316857186e-06;1;0;Young +21578;Poland;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;206;1;7.850098422704875e-07;38018718;5.418383649864259e-06;0;1;Old +21579;Poland;M;Elementary occupations;Not stated   ;Y15-29;3563;1;1.3577621689367703e-05;38018718;9.371699487605027e-05;1;0;Young +21580;Poland;M;Elementary occupations;Not stated   ;Y30-49;4536;1;1.7285459439509374e-05;38018718;0.00011930965163002077;1;0;Young +21581;Poland;M;Elementary occupations;Not stated   ;Y50-64;2529;1;9.637329568456616e-06;38018718;6.651986529372189e-05;0;1;Old +21582;Poland;M;Not stated;Agriculture, forestry and fishing   ;Y15-29;1899;1;7.236571312969203e-06;38018718;4.99490803451079e-05;1;0;Young +21583;Poland;M;Not stated;Agriculture, forestry and fishing   ;Y30-49;3486;1;1.3284195680363686e-05;38018718;9.169167671566411e-05;1;0;Young +21584;Poland;M;Not stated;Agriculture, forestry and fishing   ;Y50-64;1925;1;7.335650225100429e-06;38018718;5.0632954009653874e-05;0;1;Old +21585;Poland;M;Not stated;Mining and quarrying   ;Y15-29;208;1;7.926312970498126e-07;38018718;5.470989316367796e-06;1;0;Young +21586;Poland;M;Not stated;Mining and quarrying   ;Y30-49;699;1;2.66369844537413e-06;38018718;1.8385680442986005e-05;1;0;Young +21587;Poland;M;Not stated;Mining and quarrying   ;Y50-64;273;1;1.040328577377879e-06;38018718;7.180673477732732e-06;0;1;Old +21588;Poland;M;Not stated;Manufacturing   ;Y15-29;6783;1;2.5848163884081148e-05;38018718;0.00017841211794674403;1;0;Young +21589;Poland;M;Not stated;Manufacturing   ;Y30-49;10730;1;4.0889104891079276e-05;38018718;0.0002822294007914733;1;0;Young +21590;Poland;M;Not stated;Manufacturing   ;Y50-64;4702;1;1.791804018619336e-05;38018718;0.0001236759219498143;0;1;Old +21591;Poland;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y15-29;185;1;7.049845670875737e-07;38018718;4.866024151577126e-06;1;0;Young +21592;Poland;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y30-49;651;1;2.480783530670327e-06;38018718;1.7123144446901128e-05;1;0;Young +21593;Poland;M;Not stated;Electricity, gas, steam and air conditioning supply   ;Y50-64;430;1;1.638612777554901e-06;38018718;1.1310218298260346e-05;0;1;Old +21594;Poland;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;371;1;1.41377986156481e-06;38018718;9.75835113640602e-06;1;0;Young +21595;Poland;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;772;1;2.941881544819497e-06;38018718;2.0305787270365086e-05;1;0;Young +21596;Poland;M;Not stated;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;613;1;2.3359758898631497e-06;38018718;1.6123636783333936e-05;0;1;Old +21597;Poland;M;Not stated;Construction   ;Y15-29;1894;1;7.21751767602089e-06;38018718;4.981756617884906e-05;1;0;Young +21598;Poland;M;Not stated;Construction   ;Y30-49;4162;1;1.586024739577558e-05;38018718;0.00010947239199385945;1;0;Young +21599;Poland;M;Not stated;Construction   ;Y50-64;1836;1;6.996495487420461e-06;38018718;4.82920018502465e-05;0;1;Old +21600;Poland;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2861;1;1.0902491061824586e-05;38018718;7.525240593330896e-05;1;0;Young +21601;Poland;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;5134;1;1.9564274418527586e-05;38018718;0.00013503874591457818;1;0;Young +21602;Poland;M;Not stated;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2300;1;8.764672996223889e-06;38018718;6.049651647906697e-05;0;1;Old +21603;Poland;M;Not stated;Transportation and storage   ;Y15-29;926;1;3.528733562827531e-06;38018718;2.4356423591137398e-05;1;0;Young +21604;Poland;M;Not stated;Transportation and storage   ;Y30-49;2330;1;8.878994817913767e-06;38018718;6.128560147662002e-05;1;0;Young +21605;Poland;M;Not stated;Transportation and storage   ;Y50-64;1396;1;5.319775435968935e-06;38018718;3.6718755219468475e-05;0;1;Old +21606;Poland;M;Not stated;Accommodation and food service activities   ;Y15-29;662;1;2.522701531956615e-06;38018718;1.741247561267058e-05;1;0;Young +21607;Poland;M;Not stated;Accommodation and food service activities   ;Y30-49;807;1;3.075257003457686e-06;38018718;2.1226386434176975e-05;1;0;Young +21608;Poland;M;Not stated;Accommodation and food service activities   ;Y50-64;404;1;1.5395338654236744e-06;38018718;1.0626344633714371e-05;0;1;Old +21609;Poland;M;Not stated;Information and communication   ;Y15-29;817;1;3.113364277354312e-06;38018718;2.1489414766694657e-05;1;0;Young +21610;Poland;M;Not stated;Information and communication   ;Y30-49;898;1;3.4220331959169795e-06;38018718;2.3619944260087885e-05;1;0;Young +21611;Poland;M;Not stated;Information and communication   ;Y50-64;229;1;8.726565722327264e-07;38018718;6.023348814654928e-06;0;1;Old +21612;Poland;M;Not stated;Financial and insurance activities   ;Y15-29;745;1;2.8389919052986075e-06;38018718;1.9595610772567343e-05;1;0;Young +21613;Poland;M;Not stated;Financial and insurance activities   ;Y30-49;623;1;2.3740831637597753e-06;38018718;1.6386665115851618e-05;1;0;Young +21614;Poland;M;Not stated;Financial and insurance activities   ;Y50-64;237;1;9.031423913500269e-07;38018718;6.233771480669075e-06;0;1;Old +21615;Poland;M;Not stated;Real estate activities   ;Y15-29;249;1;9.488711200259775e-07;38018718;6.549405479690293e-06;1;0;Young +21616;Poland;M;Not stated;Real estate activities   ;Y30-49;857;1;3.2657933729408146e-06;38018718;2.2541528096765387e-05;1;0;Young +21617;Poland;M;Not stated;Real estate activities   ;Y50-64;726;1;2.766588084895019e-06;38018718;1.9095856940783747e-05;0;1;Old +21618;Poland;M;Not stated;Professional, scientific and technical activities   ;Y15-29;1153;1;4.393768680280932e-06;38018718;3.0327166739288788e-05;1;0;Young +21619;Poland;M;Not stated;Professional, scientific and technical activities   ;Y30-49;1682;1;6.409643469412427e-06;38018718;4.4241365529474194e-05;1;0;Young +21620;Poland;M;Not stated;Professional, scientific and technical activities   ;Y50-64;896;1;3.4144117411376543e-06;38018718;2.356733859358435e-05;0;1;Old +21621;Poland;M;Not stated;Administrative and support service activities   ;Y15-29;948;1;3.6125695654001074e-06;38018718;2.49350859226763e-05;1;0;Young +21622;Poland;M;Not stated;Administrative and support service activities   ;Y30-49;1318;1;5.0225386995752545e-06;38018718;3.466713422583055e-05;1;0;Young +21623;Poland;M;Not stated;Administrative and support service activities   ;Y50-64;839;1;3.197200279926888e-06;38018718;2.206807709823356e-05;0;1;Old +21624;Poland;M;Not stated;"Public administration and defence; compulsory social security   ";Y15-29;763;1;2.907584998312534e-06;38018718;2.006906177109917e-05;1;0;Young +21625;Poland;M;Not stated;"Public administration and defence; compulsory social security   ";Y30-49;1654;1;6.302943102501875e-06;38018718;4.3504886198424684e-05;1;0;Young +21626;Poland;M;Not stated;"Public administration and defence; compulsory social security   ";Y50-64;1109;1;4.226096675135779e-06;38018718;2.9169842076210988e-05;0;1;Old +21627;Poland;M;Not stated;Education   ;Y15-29;528;1;2.012064061741832e-06;38018718;1.3887895956933635e-05;1;0;Young +21628;Poland;M;Not stated;Education   ;Y30-49;1542;1;5.8761416348596686e-06;38018718;4.055896887422664e-05;1;0;Young +21629;Poland;M;Not stated;Education   ;Y50-64;755;1;2.877099179195233e-06;38018718;1.985863910508503e-05;0;1;Old +21630;Poland;M;Not stated;Human health and social work activities   ;Y15-29;268;1;1.0212749404295662e-06;38018718;7.04915931147389e-06;1;0;Young +21631;Poland;M;Not stated;Human health and social work activities   ;Y30-49;803;1;3.0600140938990362e-06;38018718;2.1121175101169902e-05;1;0;Young +21632;Poland;M;Not stated;Human health and social work activities   ;Y50-64;399;1;1.5204802284753616e-06;38018718;1.049483046745553e-05;0;1;Old +21633;Poland;M;Not stated;Arts, entertainment and recreation   ;Y15-29;730;1;2.7818309944536693e-06;38018718;1.920106827379082e-05;1;0;Young +21634;Poland;M;Not stated;Arts, entertainment and recreation   ;Y30-49;818;1;3.1171750047439744e-06;38018718;2.1515717599946428e-05;1;0;Young +21635;Poland;M;Not stated;Arts, entertainment and recreation   ;Y50-64;318;1;1.2118113099126943e-06;38018718;8.364300974062303e-06;0;1;Old +21636;Poland;M;Not stated;Other service activities   ;Y15-29;450;1;1.7148273253481523e-06;38018718;1.1836274963295711e-05;1;0;Young +21637;Poland;M;Not stated;Other service activities   ;Y30-49;774;1;2.9495029995988217e-06;38018718;2.0358392936868624e-05;1;0;Young +21638;Poland;M;Not stated;Other service activities   ;Y50-64;503;1;1.916795877000268e-06;38018718;1.323032512563943e-05;0;1;Old +21639;Poland;M;Not stated;Not stated   ;Y15-29;61685;1;0.00023506471903133504;38018718;0.0016224902691353244;1;0;Young +21640;Poland;M;Not stated;Not stated   ;Y30-49;130031;1;0.0004955126932052125;38018718;0.003420183710560677;1;0;Young +21641;Poland;M;Not stated;Not stated   ;Y50-64;82948;1;0.0003160922155177301;38018718;0.0021817674125676726;0;1;Old +21642;Poland;M;Not stated;Not stated   ;Y65-84;1896;1;7.225139130800215e-06;38018718;4.98701718453526e-05;0;1;Old +21643;Portugal;F;Not applicable;Not applicable  ;Y15-29;448632;1;0.0017096142502790938;10562178;0.04247533037220164;1;0;Young +21644;Portugal;F;Not applicable;Not applicable  ;Y30-49;265839;1;0.0010130399585405055;10562178;0.025168956629967796;1;0;Young +21645;Portugal;F;Not applicable;Not applicable  ;Y50-64;534630;1;0.002037329184335295;10562178;0.050617401070120194;0;1;Old +21646;Portugal;F;Not applicable;Not applicable  ;Y65-84;985440;1;0.0037552431988690737;10562178;0.09329893891203121;0;1;Old +21647;Portugal;F;Not applicable;Not applicable  ;Y_GE85;158628;1;0.0006044880643673926;10562178;0.015018493344838535;0;1;Old +21648;Portugal;F;Not applicable;Not applicable  ;Y_LT15;768330;1;0.0029278961752994353;10562178;0.07274351937640135;0;1;Old +21649;Portugal;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;3562;1;1.357381096197804e-05;10562178;0.00033724105009402415;1;0;Young +21650;Portugal;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;946;1;3.6049481106207822e-06;10562178;8.956486058083854e-05;1;0;Young +21651;Portugal;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;112;1;4.268014676422068e-07;10562178;1.0603873557139446e-05;0;1;Old +21652;Portugal;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +21653;Portugal;F;Armed forces occupations;Education   ;Y15-29;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;1;0;Young +21654;Portugal;F;Armed forces occupations;Education   ;Y30-49;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +21655;Portugal;F;Armed forces occupations;Human health and social work activities   ;Y15-29;49;1;1.8672564209346548e-07;10562178;4.639194681248508e-06;1;0;Young +21656;Portugal;F;Armed forces occupations;Human health and social work activities   ;Y30-49;13;1;4.953945606561329e-08;10562178;1.2308067521679714e-06;1;0;Young +21657;Portugal;F;Armed forces occupations;Human health and social work activities   ;Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21658;Portugal;F;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +21659;Portugal;F;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +21660;Portugal;F;Armed forces occupations;Other service activities   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +21661;Portugal;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;1;0;Young +21662;Portugal;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +21663;Portugal;F;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21664;Portugal;F;Managers;Agriculture, forestry and fishing   ;Y15-29;171;1;6.516343836322978e-07;10562178;1.6189842663132547e-05;1;0;Young +21665;Portugal;F;Managers;Agriculture, forestry and fishing   ;Y30-49;2055;1;7.831044785756562e-06;10562178;0.00019456214428501393;1;0;Young +21666;Portugal;F;Managers;Agriculture, forestry and fishing   ;Y50-64;2065;1;7.869152059653188e-06;10562178;0.00019550891870975855;0;1;Old +21667;Portugal;F;Managers;Agriculture, forestry and fishing   ;Y65-84;297;1;1.1317860347297806e-06;10562178;2.8119200414914424e-05;0;1;Old +21668;Portugal;F;Managers;Agriculture, forestry and fishing   ;Y_GE85;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;0;1;Old +21669;Portugal;F;Managers;Mining and quarrying   ;Y15-29;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;1;0;Young +21670;Portugal;F;Managers;Mining and quarrying   ;Y30-49;108;1;4.1155855808355654e-07;10562178;1.0225163787241609e-05;1;0;Young +21671;Portugal;F;Managers;Mining and quarrying   ;Y50-64;57;1;2.1721146121076594e-07;10562178;5.396614221044182e-06;0;1;Old +21672;Portugal;F;Managers;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +21673;Portugal;F;Managers;Manufacturing   ;Y15-29;1249;1;4.759598509688538e-06;10562178;0.00011825212565059971;1;0;Young +21674;Portugal;F;Managers;Manufacturing   ;Y30-49;10200;1;3.8869419374558115e-05;10562178;0.0009657099132394853;1;0;Young +21675;Portugal;F;Managers;Manufacturing   ;Y50-64;4196;1;1.5989812127024103e-05;10562178;0.00039726654862283137;0;1;Old +21676;Portugal;F;Managers;Manufacturing   ;Y65-84;357;1;1.360429678109534e-06;10562178;3.379984696338198e-05;0;1;Old +21677;Portugal;F;Managers;Manufacturing   ;Y_GE85;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +21678;Portugal;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;52;1;1.9815782426245315e-07;10562178;4.9232270086718855e-06;1;0;Young +21679;Portugal;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;188;1;7.164167492565614e-07;10562178;1.7799359185198355e-05;1;0;Young +21680;Portugal;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;70;1;2.6675091727637925e-07;10562178;6.627420973212154e-06;0;1;Old +21681;Portugal;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21682;Portugal;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;37;1;1.4099691341751475e-07;10562178;3.5030653715549957e-06;1;0;Young +21683;Portugal;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;366;1;1.394726224616497e-06;10562178;3.4651943945652116e-05;1;0;Young +21684;Portugal;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;77;1;2.9342600900401714e-07;10562178;7.290163070533369e-06;0;1;Old +21685;Portugal;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +21686;Portugal;F;Managers;Construction   ;Y15-29;302;1;1.1508396716780934e-06;10562178;2.859258762728672e-05;1;0;Young +21687;Portugal;F;Managers;Construction   ;Y30-49;2474;1;9.427739562025174e-06;10562178;0.0002342319926818124;1;0;Young +21688;Portugal;F;Managers;Construction   ;Y50-64;1246;1;4.748166327519551e-06;10562178;0.00011796809332317634;0;1;Old +21689;Portugal;F;Managers;Construction   ;Y65-84;83;1;3.1629037334199253e-07;10562178;7.858227725380125e-06;0;1;Old +21690;Portugal;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3996;1;1.5227666649091592e-05;10562178;0.0003783310601279395;1;0;Young +21691;Portugal;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;21713;1;8.274232381174318e-05;10562178;0.0020557313084479355;1;0;Young +21692;Portugal;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;10522;1;4.009647359402946e-05;10562178;0.0009961960497162612;0;1;Old +21693;Portugal;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1370;1;5.220696523837708e-06;10562178;0.0001297080961900093;0;1;Old +21694;Portugal;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;0;1;Old +21695;Portugal;F;Managers;Transportation and storage   ;Y15-29;227;1;8.650351174534013e-07;10562178;2.149177944170227e-05;1;0;Young +21696;Portugal;F;Managers;Transportation and storage   ;Y30-49;1679;1;6.398211287243439e-06;10562178;0.00015896342591461724;1;0;Young +21697;Portugal;F;Managers;Transportation and storage   ;Y50-64;682;1;2.598916079749866e-06;10562178;6.457001576758126e-05;0;1;Old +21698;Portugal;F;Managers;Transportation and storage   ;Y65-84;44;1;1.6767200514515266e-07;10562178;4.165807468876211e-06;0;1;Old +21699;Portugal;F;Managers;Accommodation and food service activities   ;Y15-29;1711;1;6.520154563712641e-06;10562178;0.00016199310407379993;1;0;Young +21700;Portugal;F;Managers;Accommodation and food service activities   ;Y30-49;9162;1;3.491388434408838e-05;10562178;0.0008674347279509965;1;0;Young +21701;Portugal;F;Managers;Accommodation and food service activities   ;Y50-64;5078;1;1.9350873684706483e-05;10562178;0.0004807720528853045;0;1;Old +21702;Portugal;F;Managers;Accommodation and food service activities   ;Y65-84;513;1;1.9549031508968934e-06;10562178;4.856952798939764e-05;0;1;Old +21703;Portugal;F;Managers;Accommodation and food service activities   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +21704;Portugal;F;Managers;Information and communication   ;Y15-29;635;1;2.419811892435726e-06;10562178;6.012017597128168e-05;1;0;Young +21705;Portugal;F;Managers;Information and communication   ;Y30-49;2430;1;9.260067556880022e-06;10562178;0.0002300661852129362;1;0;Young +21706;Portugal;F;Managers;Information and communication   ;Y50-64;284;1;1.0822465786641672e-06;10562178;2.688839366274645e-05;0;1;Old +21707;Portugal;F;Managers;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +21708;Portugal;F;Managers;Financial and insurance activities   ;Y15-29;429;1;1.6348020501652386e-06;10562178;4.0616622821543056e-05;1;0;Young +21709;Portugal;F;Managers;Financial and insurance activities   ;Y30-49;2375;1;9.050477550448582e-06;10562178;0.00022485892587684094;1;0;Young +21710;Portugal;F;Managers;Financial and insurance activities   ;Y50-64;399;1;1.5204802284753616e-06;10562178;3.777629954730928e-05;0;1;Old +21711;Portugal;F;Managers;Financial and insurance activities   ;Y65-84;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +21712;Portugal;F;Managers;Real estate activities   ;Y15-29;179;1;6.821202027495983e-07;10562178;1.6947262202928222e-05;1;0;Young +21713;Portugal;F;Managers;Real estate activities   ;Y30-49;1295;1;4.934891969613016e-06;10562178;0.00012260728800442483;1;0;Young +21714;Portugal;F;Managers;Real estate activities   ;Y50-64;417;1;1.5890733214892878e-06;10562178;3.9480493511849545e-05;0;1;Old +21715;Portugal;F;Managers;Real estate activities   ;Y65-84;46;1;1.7529345992447778e-07;10562178;4.35516235382513e-06;0;1;Old +21716;Portugal;F;Managers;Real estate activities   ;Y_GE85;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +21717;Portugal;F;Managers;Professional, scientific and technical activities   ;Y15-29;630;1;2.400758255487413e-06;10562178;5.964678875890938e-05;1;0;Young +21718;Portugal;F;Managers;Professional, scientific and technical activities   ;Y30-49;3106;1;1.1836119272291913e-05;10562178;0.0002940681363256707;1;0;Young +21719;Portugal;F;Managers;Professional, scientific and technical activities   ;Y50-64;747;1;2.8466133600779327e-06;10562178;7.072404952842113e-05;0;1;Old +21720;Portugal;F;Managers;Professional, scientific and technical activities   ;Y65-84;49;1;1.8672564209346548e-07;10562178;4.639194681248508e-06;0;1;Old +21721;Portugal;F;Managers;Administrative and support service activities   ;Y15-29;508;1;1.935849513948581e-06;10562178;4.809614077702535e-05;1;0;Young +21722;Portugal;F;Managers;Administrative and support service activities   ;Y30-49;2577;1;9.820244483160419e-06;10562178;0.0002439837692566817;1;0;Young +21723;Portugal;F;Managers;Administrative and support service activities   ;Y50-64;640;1;2.4388655293840387e-06;10562178;6.0593563183653976e-05;0;1;Old +21724;Portugal;F;Managers;Administrative and support service activities   ;Y65-84;39;1;1.4861836819683987e-07;10562178;3.692420256503914e-06;0;1;Old +21725;Portugal;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;135;1;5.144481976044457e-07;10562178;1.278145473405201e-05;1;0;Young +21726;Portugal;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;1900;1;7.240382040358865e-06;10562178;0.00017988714070147274;1;0;Young +21727;Portugal;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;775;1;2.9533137269884843e-06;10562178;7.337501791770598e-05;0;1;Old +21728;Portugal;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +21729;Portugal;F;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21730;Portugal;F;Managers;Education   ;Y15-29;198;1;7.54524023153187e-07;10562178;1.874613360994295e-05;1;0;Young +21731;Portugal;F;Managers;Education   ;Y30-49;2129;1;8.11303861259159e-06;10562178;0.00020156827502812392;1;0;Young +21732;Portugal;F;Managers;Education   ;Y50-64;1027;1;3.9136170291834495e-06;10562178;9.723373342126974e-05;0;1;Old +21733;Portugal;F;Managers;Education   ;Y65-84;85;1;3.239118281213176e-07;10562178;8.047582610329044e-06;0;1;Old +21734;Portugal;F;Managers;Education   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +21735;Portugal;F;Managers;Human health and social work activities   ;Y15-29;559;1;2.1301966108213714e-06;10562178;5.292469034322277e-05;1;0;Young +21736;Portugal;F;Managers;Human health and social work activities   ;Y30-49;3534;1;1.3467110595067489e-05;10562178;0.0003345900817047393;1;0;Young +21737;Portugal;F;Managers;Human health and social work activities   ;Y50-64;1315;1;5.0111065174062675e-06;10562178;0.00012450083685391404;0;1;Old +21738;Portugal;F;Managers;Human health and social work activities   ;Y65-84;123;1;4.6871946892849497e-07;10562178;1.1645325424358499e-05;0;1;Old +21739;Portugal;F;Managers;Human health and social work activities   ;Y_GE85;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +21740;Portugal;F;Managers;Arts, entertainment and recreation   ;Y15-29;171;1;6.516343836322978e-07;10562178;1.6189842663132547e-05;1;0;Young +21741;Portugal;F;Managers;Arts, entertainment and recreation   ;Y30-49;635;1;2.419811892435726e-06;10562178;6.012017597128168e-05;1;0;Young +21742;Portugal;F;Managers;Arts, entertainment and recreation   ;Y50-64;129;1;4.915838332664703e-07;10562178;1.2213390079205255e-05;0;1;Old +21743;Portugal;F;Managers;Arts, entertainment and recreation   ;Y65-84;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +21744;Portugal;F;Managers;Other service activities   ;Y15-29;209;1;7.964420244394752e-07;10562178;1.9787585477162003e-05;1;0;Young +21745;Portugal;F;Managers;Other service activities   ;Y30-49;1551;1;5.910438181366631e-06;10562178;0.00014684471327788644;1;0;Young +21746;Portugal;F;Managers;Other service activities   ;Y50-64;623;1;2.3740831637597753e-06;10562178;5.898404666158817e-05;0;1;Old +21747;Portugal;F;Managers;Other service activities   ;Y65-84;48;1;1.829149147038029e-07;10562178;4.544517238774049e-06;0;1;Old +21748;Portugal;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +21749;Portugal;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +21750;Portugal;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;20;1;7.621454779325121e-08;10562178;1.8935488494891867e-06;1;0;Young +21751;Portugal;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +21752;Portugal;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;278;1;1.0593822143261918e-06;10562178;2.6320329007899696e-05;1;0;Young +21753;Portugal;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;803;1;3.0600140938990362e-06;10562178;7.602598630699085e-05;1;0;Young +21754;Portugal;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;99;1;3.772620115765935e-07;10562178;9.373066804971475e-06;0;1;Old +21755;Portugal;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +21756;Portugal;F;Professionals;Mining and quarrying   ;Y15-29;36;1;1.3718618602785217e-07;10562178;3.4083879290805363e-06;1;0;Young +21757;Portugal;F;Professionals;Mining and quarrying   ;Y30-49;83;1;3.1629037334199253e-07;10562178;7.858227725380125e-06;1;0;Young +21758;Portugal;F;Professionals;Mining and quarrying   ;Y50-64;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +21759;Portugal;F;Professionals;Manufacturing   ;Y15-29;3076;1;1.1721797450602036e-05;10562178;0.0002912278130514369;1;0;Young +21760;Portugal;F;Professionals;Manufacturing   ;Y30-49;7585;1;2.890436725059052e-05;10562178;0.000718128401168774;1;0;Young +21761;Portugal;F;Professionals;Manufacturing   ;Y50-64;815;1;3.105742822574987e-06;10562178;7.716211561668436e-05;0;1;Old +21762;Portugal;F;Professionals;Manufacturing   ;Y65-84;50;1;1.9053636948312803e-07;10562178;4.733872123722967e-06;0;1;Old +21763;Portugal;F;Professionals;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +21764;Portugal;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;145;1;5.525554715010713e-07;10562178;1.3728229158796605e-05;1;0;Young +21765;Portugal;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;370;1;1.4099691341751475e-06;10562178;3.5030653715549955e-05;1;0;Young +21766;Portugal;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;124;1;4.725301963181575e-07;10562178;1.1740002866832959e-05;0;1;Old +21767;Portugal;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21768;Portugal;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;238;1;9.069531187396895e-07;10562178;2.2533231308921323e-05;1;0;Young +21769;Portugal;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;821;1;3.128607186912962e-06;10562178;7.773018027153112e-05;1;0;Young +21770;Portugal;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;79;1;3.010474637833423e-07;10562178;7.479517955482288e-06;0;1;Old +21771;Portugal;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21772;Portugal;F;Professionals;Construction   ;Y15-29;1246;1;4.748166327519551e-06;10562178;0.00011796809332317634;1;0;Young +21773;Portugal;F;Professionals;Construction   ;Y30-49;2912;1;1.1096838158697377e-05;10562178;0.0002757007124856256;1;0;Young +21774;Portugal;F;Professionals;Construction   ;Y50-64;234;1;8.917102091810392e-07;10562178;2.2154521539023487e-05;0;1;Old +21775;Portugal;F;Professionals;Construction   ;Y65-84;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +21776;Portugal;F;Professionals;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21777;Portugal;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4720;1;1.7986633279207286e-05;10562178;0.00044687752847944807;1;0;Young +21778;Portugal;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8186;1;3.119461441177772e-05;10562178;0.0007750295440959241;1;0;Young +21779;Portugal;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1362;1;5.190210704720407e-06;10562178;0.00012895067665021363;0;1;Old +21780;Portugal;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;187;1;7.126060218668988e-07;10562178;1.7704681742723897e-05;0;1;Old +21781;Portugal;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +21782;Portugal;F;Professionals;Transportation and storage   ;Y15-29;221;1;8.421707531154259e-07;10562178;2.0923714786855514e-05;1;0;Young +21783;Portugal;F;Professionals;Transportation and storage   ;Y30-49;1117;1;4.25658249425308e-06;10562178;0.00010575470324397108;1;0;Young +21784;Portugal;F;Professionals;Transportation and storage   ;Y50-64;317;1;1.2080005825230317e-06;10562178;3.001274926440361e-05;0;1;Old +21785;Portugal;F;Professionals;Transportation and storage   ;Y65-84;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +21786;Portugal;F;Professionals;Accommodation and food service activities   ;Y15-29;454;1;1.7300702349068025e-06;10562178;4.298355888340454e-05;1;0;Young +21787;Portugal;F;Professionals;Accommodation and food service activities   ;Y30-49;668;1;2.5455658962945906e-06;10562178;6.324453157293884e-05;1;0;Young +21788;Portugal;F;Professionals;Accommodation and food service activities   ;Y50-64;99;1;3.772620115765935e-07;10562178;9.373066804971475e-06;0;1;Old +21789;Portugal;F;Professionals;Accommodation and food service activities   ;Y65-84;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +21790;Portugal;F;Professionals;Information and communication   ;Y15-29;3340;1;1.2727829481472953e-05;10562178;0.0003162226578646942;1;0;Young +21791;Portugal;F;Professionals;Information and communication   ;Y30-49;7356;1;2.8031710678357796e-05;10562178;0.0006964472668421229;1;0;Young +21792;Portugal;F;Professionals;Information and communication   ;Y50-64;814;1;3.1019320951853244e-06;10562178;7.70674381742099e-05;0;1;Old +21793;Portugal;F;Professionals;Information and communication   ;Y65-84;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +21794;Portugal;F;Professionals;Financial and insurance activities   ;Y15-29;806;1;3.0714462760680236e-06;10562178;7.631001863441422e-05;1;0;Young +21795;Portugal;F;Professionals;Financial and insurance activities   ;Y30-49;2657;1;1.0125102674333424e-05;10562178;0.00025155796465463847;1;0;Young +21796;Portugal;F;Professionals;Financial and insurance activities   ;Y50-64;384;1;1.4633193176304232e-06;10562178;3.635613791019239e-05;0;1;Old +21797;Portugal;F;Professionals;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +21798;Portugal;F;Professionals;Real estate activities   ;Y15-29;147;1;5.601769262803964e-07;10562178;1.3917584043745523e-05;1;0;Young +21799;Portugal;F;Professionals;Real estate activities   ;Y30-49;452;1;1.7224487801274773e-06;10562178;4.2794203998455624e-05;1;0;Young +21800;Portugal;F;Professionals;Real estate activities   ;Y50-64;59;1;2.2483291599009106e-07;10562178;5.585969105993101e-06;0;1;Old +21801;Portugal;F;Professionals;Real estate activities   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +21802;Portugal;F;Professionals;Professional, scientific and technical activities   ;Y15-29;12378;1;4.7169183629243174e-05;10562178;0.0011719173829488577;1;0;Young +21803;Portugal;F;Professionals;Professional, scientific and technical activities   ;Y30-49;26085;1;9.940282395934789e-05;10562178;0.002469661086946272;1;0;Young +21804;Portugal;F;Professionals;Professional, scientific and technical activities   ;Y50-64;2795;1;1.0650983054106857e-05;10562178;0.00026462345171611386;0;1;Old +21805;Portugal;F;Professionals;Professional, scientific and technical activities   ;Y65-84;186;1;7.087952944772362e-07;10562178;1.7610004300249436e-05;0;1;Old +21806;Portugal;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21807;Portugal;F;Professionals;Administrative and support service activities   ;Y15-29;1145;1;4.363282861163632e-06;10562178;0.00010840567163325594;1;0;Young +21808;Portugal;F;Professionals;Administrative and support service activities   ;Y30-49;2023;1;7.70910150928736e-06;10562178;0.00019153246612583125;1;0;Young +21809;Portugal;F;Professionals;Administrative and support service activities   ;Y50-64;220;1;8.383600257257633e-07;10562178;2.0829037344381056e-05;0;1;Old +21810;Portugal;F;Professionals;Administrative and support service activities   ;Y65-84;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +21811;Portugal;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;3332;1;1.2697343662355652e-05;10562178;0.0003154652383248985;1;0;Young +21812;Portugal;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;19341;1;7.370327844346358e-05;10562178;0.0018311564148985181;1;0;Young +21813;Portugal;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;5022;1;1.9137472950885378e-05;10562178;0.0004754701161067348;0;1;Old +21814;Portugal;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;65;1;2.4769728032806646e-07;10562178;6.154033760839857e-06;0;1;Old +21815;Portugal;F;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21816;Portugal;F;Professionals;Education   ;Y15-29;23945;1;9.124786734547001e-05;10562178;0.0022670513600509287;1;0;Young +21817;Portugal;F;Professionals;Education   ;Y30-49;119704;1;0.00045615931145216715;10562178;0.01133326857396268;1;0;Young +21818;Portugal;F;Professionals;Education   ;Y50-64;40516;1;0.0001543954309195683;10562178;0.0038359512592951945;0;1;Old +21819;Portugal;F;Professionals;Education   ;Y65-84;776;1;2.957124454378147e-06;10562178;7.346969536018044e-05;0;1;Old +21820;Portugal;F;Professionals;Education   ;Y_GE85;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +21821;Portugal;F;Professionals;Human health and social work activities   ;Y15-29;29887;1;0.00011389120949484494;10562178;0.0028296247232341663;1;0;Young +21822;Portugal;F;Professionals;Human health and social work activities   ;Y30-49;49692;1;0.00018936266544711196;10562178;0.004704711471440834;1;0;Young +21823;Portugal;F;Professionals;Human health and social work activities   ;Y50-64;13948;1;5.315202563101339e-05;10562178;0.0013205609676337588;0;1;Old +21824;Portugal;F;Professionals;Human health and social work activities   ;Y65-84;667;1;2.541755168904928e-06;10562178;6.314985413046438e-05;0;1;Old +21825;Portugal;F;Professionals;Human health and social work activities   ;Y_GE85;13;1;4.953945606561329e-08;10562178;1.2308067521679714e-06;0;1;Old +21826;Portugal;F;Professionals;Arts, entertainment and recreation   ;Y15-29;1591;1;6.0628672769531335e-06;10562178;0.00015063181097686482;1;0;Young +21827;Portugal;F;Professionals;Arts, entertainment and recreation   ;Y30-49;3012;1;1.1477910897663632e-05;10562178;0.00028516845673307153;1;0;Young +21828;Portugal;F;Professionals;Arts, entertainment and recreation   ;Y50-64;698;1;2.6598877179844674e-06;10562178;6.608485484717262e-05;0;1;Old +21829;Portugal;F;Professionals;Arts, entertainment and recreation   ;Y65-84;65;1;2.4769728032806646e-07;10562178;6.154033760839857e-06;0;1;Old +21830;Portugal;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +21831;Portugal;F;Professionals;Other service activities   ;Y15-29;708;1;2.697994991881093e-06;10562178;6.703162927191721e-05;1;0;Young +21832;Portugal;F;Professionals;Other service activities   ;Y30-49;1766;1;6.729744570144082e-06;10562178;0.0001672003634098952;1;0;Young +21833;Portugal;F;Professionals;Other service activities   ;Y50-64;319;1;1.2156220373023567e-06;10562178;3.020210414935253e-05;0;1;Old +21834;Portugal;F;Professionals;Other service activities   ;Y65-84;46;1;1.7529345992447778e-07;10562178;4.35516235382513e-06;0;1;Old +21835;Portugal;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +21836;Portugal;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;1;0;Young +21837;Portugal;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21838;Portugal;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;21;1;8.002527518291377e-08;10562178;1.988226291963646e-06;1;0;Young +21839;Portugal;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;111;1;4.2299074025254424e-07;10562178;1.0509196114664986e-05;1;0;Young +21840;Portugal;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;35;1;1.3337545863818962e-07;10562178;3.313710486606077e-06;0;1;Old +21841;Portugal;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;207;1;7.8882056966015e-07;10562178;1.9598230592213084e-05;1;0;Young +21842;Portugal;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;681;1;2.5951053523602036e-06;10562178;6.447533832510682e-05;1;0;Young +21843;Portugal;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;218;1;8.307385709464382e-07;10562178;2.0639682459432137e-05;0;1;Old +21844;Portugal;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +21845;Portugal;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;53;1;2.019685516521157e-07;10562178;5.017904451146345e-06;1;0;Young +21846;Portugal;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;143;1;5.449340167217462e-07;10562178;1.3538874273847685e-05;1;0;Young +21847;Portugal;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;50;1;1.9053636948312803e-07;10562178;4.733872123722967e-06;0;1;Old +21848;Portugal;F;Technicians and associate professionals;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +21849;Portugal;F;Technicians and associate professionals;Manufacturing   ;Y15-29;5039;1;1.9202255316509644e-05;10562178;0.0004770796326288006;1;0;Young +21850;Portugal;F;Technicians and associate professionals;Manufacturing   ;Y30-49;17393;1;6.627998148840092e-05;10562178;0.0016467247569582713;1;0;Young +21851;Portugal;F;Technicians and associate professionals;Manufacturing   ;Y50-64;4889;1;1.8630646208060257e-05;10562178;0.0004628780162576317;0;1;Old +21852;Portugal;F;Technicians and associate professionals;Manufacturing   ;Y65-84;106;1;4.039371033042314e-07;10562178;1.003580890229269e-05;0;1;Old +21853;Portugal;F;Technicians and associate professionals;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +21854;Portugal;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;122;1;4.6490874153883237e-07;10562178;1.155064798188404e-05;1;0;Young +21855;Portugal;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;407;1;1.5509660475926622e-06;10562178;3.853371908710495e-05;1;0;Young +21856;Portugal;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;271;1;1.032707122598554e-06;10562178;2.5657586910578482e-05;0;1;Old +21857;Portugal;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21858;Portugal;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;262;1;9.984105760915908e-07;10562178;2.480548992830835e-05;1;0;Young +21859;Portugal;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1044;1;3.978399394807713e-06;10562178;9.884324994333555e-05;1;0;Young +21860;Portugal;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;181;1;6.897416575289234e-07;10562178;1.7136617087877142e-05;0;1;Old +21861;Portugal;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +21862;Portugal;F;Technicians and associate professionals;Construction   ;Y15-29;1252;1;4.771030691857526e-06;10562178;0.0001185361579780231;1;0;Young +21863;Portugal;F;Technicians and associate professionals;Construction   ;Y30-49;3785;1;1.4423603169872791e-05;10562178;0.0003583541197658286;1;0;Young +21864;Portugal;F;Technicians and associate professionals;Construction   ;Y50-64;910;1;3.4677619245929303e-06;10562178;8.6156472651758e-05;0;1;Old +21865;Portugal;F;Technicians and associate professionals;Construction   ;Y65-84;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +21866;Portugal;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6202;1;2.36341312706872e-05;10562178;0.0005871894982265968;1;0;Young +21867;Portugal;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;18806;1;7.166453928999411e-05;10562178;0.0017805039831746824;1;0;Young +21868;Portugal;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4349;1;1.6572853417642476e-05;10562178;0.00041175219732142367;0;1;Old +21869;Portugal;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;183;1;6.973631123082485e-07;10562178;1.7325971972826058e-05;0;1;Old +21870;Portugal;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +21871;Portugal;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;823;1;3.1362286416922874e-06;10562178;7.791953515648004e-05;1;0;Young +21872;Portugal;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;3285;1;1.2518239475041511e-05;10562178;0.00031101539852859895;1;0;Young +21873;Portugal;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;1031;1;3.9288599387421e-06;10562178;9.761244319116758e-05;0;1;Old +21874;Portugal;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;19;1;7.240382040358865e-08;10562178;1.7988714070147276e-06;0;1;Old +21875;Portugal;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;798;1;3.0409604569507232e-06;10562178;7.555259909461856e-05;1;0;Young +21876;Portugal;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;2056;1;7.834855513146224e-06;10562178;0.0001946568217274884;1;0;Young +21877;Portugal;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;642;1;2.446486984163364e-06;10562178;6.07829180686029e-05;0;1;Old +21878;Portugal;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;26;1;9.907891213122657e-08;10562178;2.4616135043359427e-06;0;1;Old +21879;Portugal;F;Technicians and associate professionals;Information and communication   ;Y15-29;1645;1;6.268646555994912e-06;10562178;0.0001557443928704856;1;0;Young +21880;Portugal;F;Technicians and associate professionals;Information and communication   ;Y30-49;4580;1;1.745313144465453e-05;10562178;0.0004336226865330238;1;0;Young +21881;Portugal;F;Technicians and associate professionals;Information and communication   ;Y50-64;888;1;3.383925922020354e-06;10562178;8.407356891731989e-05;0;1;Old +21882;Portugal;F;Technicians and associate professionals;Information and communication   ;Y65-84;21;1;8.002527518291377e-08;10562178;1.988226291963646e-06;0;1;Old +21883;Portugal;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;5599;1;2.1336262654720676e-05;10562178;0.0005300990004144979;1;0;Young +21884;Portugal;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;22867;1;8.713990321941378e-05;10562178;0.002164989077063462;1;0;Young +21885;Portugal;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;5619;1;2.141247720251393e-05;10562178;0.0005319925492639871;0;1;Old +21886;Portugal;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;72;1;2.7437237205570434e-07;10562178;6.816775858161073e-06;0;1;Old +21887;Portugal;F;Technicians and associate professionals;Real estate activities   ;Y15-29;882;1;3.3610615576823783e-06;10562178;8.350550426247313e-05;1;0;Young +21888;Portugal;F;Technicians and associate professionals;Real estate activities   ;Y30-49;3768;1;1.4358820804248529e-05;10562178;0.0003567446032437628;1;0;Young +21889;Portugal;F;Technicians and associate professionals;Real estate activities   ;Y50-64;1211;1;4.61479086888136e-06;10562178;0.00011465438283657026;0;1;Old +21890;Portugal;F;Technicians and associate professionals;Real estate activities   ;Y65-84;59;1;2.2483291599009106e-07;10562178;5.585969105993101e-06;0;1;Old +21891;Portugal;F;Technicians and associate professionals;Real estate activities   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +21892;Portugal;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;6661;1;2.5383255142542314e-05;10562178;0.0006306464443223737;1;0;Young +21893;Portugal;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;20506;1;7.814277585242046e-05;10562178;0.0019414556353812631;1;0;Young +21894;Portugal;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;4538;1;1.72930808942887e-05;10562178;0.0004296462339490965;0;1;Old +21895;Portugal;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;174;1;6.630665658012855e-07;10562178;1.6473874990555925e-05;0;1;Old +21896;Portugal;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +21897;Portugal;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;1816;1;6.92028093962721e-06;10562178;0.00017193423553361816;1;0;Young +21898;Portugal;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;3865;1;1.4728461361045796e-05;10562178;0.0003659283151637853;1;0;Young +21899;Portugal;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;745;1;2.8389919052986075e-06;10562178;7.05346946434722e-05;0;1;Old +21900;Portugal;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;32;1;1.2194327646920193e-07;10562178;3.0296781591826987e-06;0;1;Old +21901;Portugal;F;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21902;Portugal;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;1561;1;5.948545455263257e-06;10562178;0.00014779148770263103;1;0;Young +21903;Portugal;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;14136;1;5.3868442380269955e-05;10562178;0.0013383603268189571;1;0;Young +21904;Portugal;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;7773;1;2.9620783999847082e-05;10562178;0.0007359277603539724;0;1;Old +21905;Portugal;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;72;1;2.7437237205570434e-07;10562178;6.816775858161073e-06;0;1;Old +21906;Portugal;F;Technicians and associate professionals;Education   ;Y15-29;1258;1;4.793895056195501e-06;10562178;0.00011910422263286985;1;0;Young +21907;Portugal;F;Technicians and associate professionals;Education   ;Y30-49;4746;1;1.8085712191338514e-05;10562178;0.00044933914198378404;1;0;Young +21908;Portugal;F;Technicians and associate professionals;Education   ;Y50-64;2007;1;7.648129871052758e-06;10562178;0.0001900176270462399;0;1;Old +21909;Portugal;F;Technicians and associate professionals;Education   ;Y65-84;75;1;2.8580455422469204e-07;10562178;7.10080818558445e-06;0;1;Old +21910;Portugal;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;8271;1;3.151852623989904e-05;10562178;0.0007830771267062532;1;0;Young +21911;Portugal;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;18364;1;6.998019778376326e-05;10562178;0.0017386565536009714;1;0;Young +21912;Portugal;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;6203;1;2.3637941998076864e-05;10562178;0.0005872841756690713;0;1;Old +21913;Portugal;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;339;1;1.2918365850956081e-06;10562178;3.2095652998841716e-05;0;1;Old +21914;Portugal;F;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +21915;Portugal;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;1346;1;5.1292390664858064e-06;10562178;0.00012743583757062228;1;0;Young +21916;Portugal;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2008;1;7.651940598442421e-06;10562178;0.00019011230448871436;1;0;Young +21917;Portugal;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;370;1;1.4099691341751475e-06;10562178;3.5030653715549955e-05;0;1;Old +21918;Portugal;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;22;1;8.383600257257633e-08;10562178;2.0829037344381055e-06;0;1;Old +21919;Portugal;F;Technicians and associate professionals;Other service activities   ;Y15-29;673;1;2.5646195332429032e-06;10562178;6.371791878531114e-05;1;0;Young +21920;Portugal;F;Technicians and associate professionals;Other service activities   ;Y30-49;1784;1;6.798337663158008e-06;10562178;0.00016890455737443547;1;0;Young +21921;Portugal;F;Technicians and associate professionals;Other service activities   ;Y50-64;627;1;2.3893260733184253e-06;10562178;5.9362756431486e-05;0;1;Old +21922;Portugal;F;Technicians and associate professionals;Other service activities   ;Y65-84;99;1;3.772620115765935e-07;10562178;9.373066804971475e-06;0;1;Old +21923;Portugal;F;Technicians and associate professionals;Other service activities   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +21924;Portugal;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;1;0;Young +21925;Portugal;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;24;1;9.145745735190145e-08;10562178;2.2722586193870243e-06;1;0;Young +21926;Portugal;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;0;1;Old +21927;Portugal;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;16;1;6.097163823460096e-08;10562178;1.5148390795913494e-06;1;0;Young +21928;Portugal;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;92;1;3.5058691984895557e-07;10562178;8.71032470765026e-06;1;0;Young +21929;Portugal;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;46;1;1.7529345992447778e-07;10562178;4.35516235382513e-06;0;1;Old +21930;Portugal;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +21931;Portugal;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;345;1;1.3147009494335833e-06;10562178;3.266371765368847e-05;1;0;Young +21932;Portugal;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;1238;1;4.71768050840225e-06;10562178;0.00011721067378338066;1;0;Young +21933;Portugal;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;495;1;1.8863100578829675e-06;10562178;4.6865334024857374e-05;0;1;Old +21934;Portugal;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +21935;Portugal;F;Clerical support workers;Mining and quarrying   ;Y15-29;90;1;3.4296546506963047e-07;10562178;8.52096982270134e-06;1;0;Young +21936;Portugal;F;Clerical support workers;Mining and quarrying   ;Y30-49;379;1;1.4442656806821104e-06;10562178;3.588275069782009e-05;1;0;Young +21937;Portugal;F;Clerical support workers;Mining and quarrying   ;Y50-64;92;1;3.5058691984895557e-07;10562178;8.71032470765026e-06;0;1;Old +21938;Portugal;F;Clerical support workers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +21939;Portugal;F;Clerical support workers;Manufacturing   ;Y15-29;5654;1;2.1545852661152118e-05;10562178;0.0005353062597505931;1;0;Young +21940;Portugal;F;Clerical support workers;Manufacturing   ;Y30-49;20664;1;7.874487077998716e-05;10562178;0.0019564146712922276;1;0;Young +21941;Portugal;F;Clerical support workers;Manufacturing   ;Y50-64;6523;1;2.4857374762768882e-05;10562178;0.0006175809572608983;0;1;Old +21942;Portugal;F;Clerical support workers;Manufacturing   ;Y65-84;96;1;3.658298294076058e-07;10562178;9.089034477548097e-06;0;1;Old +21943;Portugal;F;Clerical support workers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +21944;Portugal;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;292;1;1.1127323977814678e-06;10562178;2.7645813202542126e-05;1;0;Young +21945;Portugal;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;738;1;2.8123168135709697e-06;10562178;6.987195254615099e-05;1;0;Young +21946;Portugal;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;488;1;1.8596349661553295e-06;10562178;4.620259192753616e-05;0;1;Old +21947;Portugal;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +21948;Portugal;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;406;1;1.5471553202029996e-06;10562178;3.843904164463049e-05;1;0;Young +21949;Portugal;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1583;1;6.0323814578358335e-06;10562178;0.00014987439143706913;1;0;Young +21950;Portugal;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;455;1;1.7338809622964651e-06;10562178;4.3078236325879e-05;0;1;Old +21951;Portugal;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21952;Portugal;F;Clerical support workers;Construction   ;Y15-29;2194;1;8.360735892919658e-06;10562178;0.0002077223087889638;1;0;Young +21953;Portugal;F;Clerical support workers;Construction   ;Y30-49;7688;1;2.9296872171725766e-05;10562178;0.0007278801777436435;1;0;Young +21954;Portugal;F;Clerical support workers;Construction   ;Y50-64;2218;1;8.452193350271559e-06;10562178;0.00020999456740835082;0;1;Old +21955;Portugal;F;Clerical support workers;Construction   ;Y65-84;42;1;1.6005055036582754e-07;10562178;3.976452583927292e-06;0;1;Old +21956;Portugal;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9725;1;3.7059323864468405e-05;10562178;0.0009207381280641171;1;0;Young +21957;Portugal;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;29869;1;0.00011382261640183102;10562178;0.002827920529269626;1;0;Young +21958;Portugal;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;8103;1;3.087832403843573e-05;10562178;0.000767171316370544;0;1;Old +21959;Portugal;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;210;1;8.002527518291377e-07;10562178;1.988226291963646e-05;0;1;Old +21960;Portugal;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +21961;Portugal;F;Clerical support workers;Transportation and storage   ;Y15-29;2694;1;1.0266099587750938e-05;10562178;0.00025506103002619345;1;0;Young +21962;Portugal;F;Clerical support workers;Transportation and storage   ;Y30-49;8326;1;3.172811624633048e-05;10562178;0.0007882843860423485;1;0;Young +21963;Portugal;F;Clerical support workers;Transportation and storage   ;Y50-64;2895;1;1.1032055793073112e-05;10562178;0.0002740911959635598;0;1;Old +21964;Portugal;F;Clerical support workers;Transportation and storage   ;Y65-84;48;1;1.829149147038029e-07;10562178;4.544517238774049e-06;0;1;Old +21965;Portugal;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;3183;1;1.212954528129593e-05;10562178;0.00030135829939620406;1;0;Young +21966;Portugal;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;5371;1;2.0467416809877614e-05;10562178;0.0005085125435303211;1;0;Young +21967;Portugal;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;1232;1;4.694816144064274e-06;10562178;0.00011664260912853391;0;1;Old +21968;Portugal;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;46;1;1.7529345992447778e-07;10562178;4.35516235382513e-06;0;1;Old +21969;Portugal;F;Clerical support workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21970;Portugal;F;Clerical support workers;Information and communication   ;Y15-29;4039;1;1.5391527926847084e-05;10562178;0.0003824021901543413;1;0;Young +21971;Portugal;F;Clerical support workers;Information and communication   ;Y30-49;5682;1;2.165255302806267e-05;10562178;0.000537957228139878;1;0;Young +21972;Portugal;F;Clerical support workers;Information and communication   ;Y50-64;1170;1;4.4585510459051955e-06;10562178;0.00011077260769511743;0;1;Old +21973;Portugal;F;Clerical support workers;Information and communication   ;Y65-84;21;1;8.002527518291377e-08;10562178;1.988226291963646e-06;0;1;Old +21974;Portugal;F;Clerical support workers;Financial and insurance activities   ;Y15-29;2436;1;9.282931921217997e-06;10562178;0.00023063424986778295;1;0;Young +21975;Portugal;F;Clerical support workers;Financial and insurance activities   ;Y30-49;4494;1;1.7125408889143548e-05;10562178;0.0004254804264802203;1;0;Young +21976;Portugal;F;Clerical support workers;Financial and insurance activities   ;Y50-64;842;1;3.208632462095876e-06;10562178;7.971840656349477e-05;0;1;Old +21977;Portugal;F;Clerical support workers;Financial and insurance activities   ;Y65-84;19;1;7.240382040358865e-08;10562178;1.7988714070147276e-06;0;1;Old +21978;Portugal;F;Clerical support workers;Real estate activities   ;Y15-29;859;1;3.2734148277201393e-06;10562178;8.132792308556057e-05;1;0;Young +21979;Portugal;F;Clerical support workers;Real estate activities   ;Y30-49;2559;1;9.751651390146492e-06;10562178;0.00024227957529214146;1;0;Young +21980;Portugal;F;Clerical support workers;Real estate activities   ;Y50-64;573;1;2.1835467942766474e-06;10562178;5.42501745378652e-05;0;1;Old +21981;Portugal;F;Clerical support workers;Real estate activities   ;Y65-84;20;1;7.621454779325121e-08;10562178;1.8935488494891867e-06;0;1;Old +21982;Portugal;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;4281;1;1.6313723955145423e-05;10562178;0.00040531413123316045;1;0;Young +21983;Portugal;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;12106;1;4.613266577925496e-05;10562178;0.0011461651185958048;1;0;Young +21984;Portugal;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;3215;1;1.2251488557765133e-05;10562178;0.0003043879775553868;0;1;Old +21985;Portugal;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;91;1;3.46776192459293e-07;10562178;8.6156472651758e-06;0;1;Old +21986;Portugal;F;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21987;Portugal;F;Clerical support workers;Administrative and support service activities   ;Y15-29;5762;1;2.1957411219235675e-05;10562178;0.0005455314235378347;1;0;Young +21988;Portugal;F;Clerical support workers;Administrative and support service activities   ;Y30-49;9595;1;3.656392930381227e-05;10562178;0.0009084300605424374;1;0;Young +21989;Portugal;F;Clerical support workers;Administrative and support service activities   ;Y50-64;2104;1;8.017770427850027e-06;10562178;0.00019920133896626245;0;1;Old +21990;Portugal;F;Clerical support workers;Administrative and support service activities   ;Y65-84;51;1;1.943470968727906e-07;10562178;4.8285495661974265e-06;0;1;Old +21991;Portugal;F;Clerical support workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +21992;Portugal;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;4624;1;1.762080344979968e-05;10562178;0.0004377884940019;1;0;Young +21993;Portugal;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;26298;1;0.00010021450889334601;10562178;0.0024898273821933317;1;0;Young +21994;Portugal;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;15174;1;5.782397741073969e-05;10562178;0.001436635512107446;0;1;Old +21995;Portugal;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;275;1;1.0479500321572042e-06;10562178;2.6036296680476318e-05;0;1;Old +21996;Portugal;F;Clerical support workers;Education   ;Y15-29;1791;1;6.825012754885646e-06;10562178;0.0001695672994717567;1;0;Young +21997;Portugal;F;Clerical support workers;Education   ;Y30-49;10766;1;4.102629107710713e-05;10562178;0.0010192973456800293;1;0;Young +21998;Portugal;F;Clerical support workers;Education   ;Y50-64;5133;1;1.9560463691137925e-05;10562178;0.00048597931222139977;0;1;Old +21999;Portugal;F;Clerical support workers;Education   ;Y65-84;137;1;5.220696523837708e-07;10562178;1.297080961900093e-05;0;1;Old +22000;Portugal;F;Clerical support workers;Human health and social work activities   ;Y15-29;4921;1;1.875258948452946e-05;10562178;0.0004659076944168144;1;0;Young +22001;Portugal;F;Clerical support workers;Human health and social work activities   ;Y30-49;19281;1;7.347463480008383e-05;10562178;0.0018254757683500505;1;0;Young +22002;Portugal;F;Clerical support workers;Human health and social work activities   ;Y50-64;8180;1;3.117175004743974e-05;10562178;0.0007744614794410774;0;1;Old +22003;Portugal;F;Clerical support workers;Human health and social work activities   ;Y65-84;218;1;8.307385709464382e-07;10562178;2.0639682459432137e-05;0;1;Old +22004;Portugal;F;Clerical support workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22005;Portugal;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;1193;1;4.5461977758674344e-06;10562178;0.00011295018887202999;1;0;Young +22006;Portugal;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2936;1;1.1188295616049277e-05;10562178;0.0002779729711050126;1;0;Young +22007;Portugal;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;907;1;3.4563297424239425e-06;10562178;8.587244032433462e-05;0;1;Old +22008;Portugal;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;38;1;1.448076408071773e-07;10562178;3.597742814029455e-06;0;1;Old +22009;Portugal;F;Clerical support workers;Other service activities   ;Y15-29;928;1;3.5363550176068562e-06;10562178;8.786066661629827e-05;1;0;Young +22010;Portugal;F;Clerical support workers;Other service activities   ;Y30-49;2930;1;1.1165431251711302e-05;10562178;0.0002774049064501659;1;0;Young +22011;Portugal;F;Clerical support workers;Other service activities   ;Y50-64;1167;1;4.4471188637362085e-06;10562178;0.00011048857536769404;0;1;Old +22012;Portugal;F;Clerical support workers;Other service activities   ;Y65-84;44;1;1.6767200514515266e-07;10562178;4.165807468876211e-06;0;1;Old +22013;Portugal;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;1;0;Young +22014;Portugal;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;29;1;1.1051109430021426e-07;10562178;2.745645831759321e-06;1;0;Young +22015;Portugal;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22016;Portugal;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;1;0;Young +22017;Portugal;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;89;1;3.3915473767996787e-07;10562178;8.426292380226882e-06;1;0;Young +22018;Portugal;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;59;1;2.2483291599009106e-07;10562178;5.585969105993101e-06;0;1;Old +22019;Portugal;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22020;Portugal;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;153;1;5.830412906183718e-07;10562178;1.4485648698592279e-05;1;0;Young +22021;Portugal;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;506;1;1.9282280591692557e-06;10562178;4.7906785892076424e-05;1;0;Young +22022;Portugal;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;263;1;1.0022213034812534e-06;10562178;2.4900167370782807e-05;0;1;Old +22023;Portugal;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;18;1;6.859309301392609e-08;10562178;1.7041939645402682e-06;0;1;Old +22024;Portugal;F;Service and sales workers;Mining and quarrying   ;Y15-29;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;1;0;Young +22025;Portugal;F;Service and sales workers;Mining and quarrying   ;Y30-49;36;1;1.3718618602785217e-07;10562178;3.4083879290805363e-06;1;0;Young +22026;Portugal;F;Service and sales workers;Mining and quarrying   ;Y50-64;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +22027;Portugal;F;Service and sales workers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22028;Portugal;F;Service and sales workers;Manufacturing   ;Y15-29;4203;1;1.6016487218751743e-05;10562178;0.0003979292907201526;1;0;Young +22029;Portugal;F;Service and sales workers;Manufacturing   ;Y30-49;8178;1;3.116412859266042e-05;10562178;0.0007742721245561284;1;0;Young +22030;Portugal;F;Service and sales workers;Manufacturing   ;Y50-64;2868;1;1.0929166153552224e-05;10562178;0.0002715349050167494;0;1;Old +22031;Portugal;F;Service and sales workers;Manufacturing   ;Y65-84;123;1;4.6871946892849497e-07;10562178;1.1645325424358499e-05;0;1;Old +22032;Portugal;F;Service and sales workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22033;Portugal;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;98;1;3.7345128418693096e-07;10562178;9.278389362497015e-06;1;0;Young +22034;Portugal;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;153;1;5.830412906183718e-07;10562178;1.4485648698592279e-05;1;0;Young +22035;Portugal;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;92;1;3.5058691984895557e-07;10562178;8.71032470765026e-06;0;1;Old +22036;Portugal;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22037;Portugal;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;51;1;1.943470968727906e-07;10562178;4.8285495661974265e-06;1;0;Young +22038;Portugal;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;132;1;5.03016015435458e-07;10562178;1.2497422406628632e-05;1;0;Young +22039;Portugal;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;54;1;2.0577927904177827e-07;10562178;5.112581893620804e-06;0;1;Old +22040;Portugal;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22041;Portugal;F;Service and sales workers;Construction   ;Y15-29;141;1;5.37312561942421e-07;10562178;1.3349519388898767e-05;1;0;Young +22042;Portugal;F;Service and sales workers;Construction   ;Y30-49;452;1;1.7224487801274773e-06;10562178;4.2794203998455624e-05;1;0;Young +22043;Portugal;F;Service and sales workers;Construction   ;Y50-64;171;1;6.516343836322978e-07;10562178;1.6189842663132547e-05;0;1;Old +22044;Portugal;F;Service and sales workers;Construction   ;Y65-84;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22045;Portugal;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;71836;1;0.0002737474127637997;10562178;0.006801248757595261;1;0;Young +22046;Portugal;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;103781;1;0.0003954810992265702;10562178;0.009825719657441865;1;0;Young +22047;Portugal;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;33030;1;0.00012586832568055437;10562178;0.003127195924931392;0;1;Old +22048;Portugal;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3120;1;1.1889469455747189e-05;10562178;0.00029539362052031316;0;1;Old +22049;Portugal;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;47;1;1.7910418731414036e-07;10562178;4.449839796299589e-06;0;1;Old +22050;Portugal;F;Service and sales workers;Transportation and storage   ;Y15-29;1826;1;6.958388213523835e-06;10562178;0.00017288100995836275;1;0;Young +22051;Portugal;F;Service and sales workers;Transportation and storage   ;Y30-49;3933;1;1.4987590823542851e-05;10562178;0.0003723663812520486;1;0;Young +22052;Portugal;F;Service and sales workers;Transportation and storage   ;Y50-64;793;1;3.0219068200024106e-06;10562178;7.507921188224626e-05;0;1;Old +22053;Portugal;F;Service and sales workers;Transportation and storage   ;Y65-84;29;1;1.1051109430021426e-07;10562178;2.745645831759321e-06;0;1;Old +22054;Portugal;F;Service and sales workers;Transportation and storage   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22055;Portugal;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;39849;1;0.00015185367575066338;10562178;0.0037728014051647304;1;0;Young +22056;Portugal;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;72503;1;0.0002762891679327046;10562178;0.0068643986117257255;1;0;Young +22057;Portugal;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;30593;1;0.00011658158303194671;10562178;0.0028964669976211345;0;1;Old +22058;Portugal;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;1429;1;5.445529439827799e-06;10562178;0.0001352940652960024;0;1;Old +22059;Portugal;F;Service and sales workers;Accommodation and food service activities   ;Y_GE85;18;1;6.859309301392609e-08;10562178;1.7041939645402682e-06;0;1;Old +22060;Portugal;F;Service and sales workers;Information and communication   ;Y15-29;2440;1;9.298174830776648e-06;10562178;0.0002310129596376808;1;0;Young +22061;Portugal;F;Service and sales workers;Information and communication   ;Y30-49;2793;1;1.0643361599327532e-05;10562178;0.00026443409683116496;1;0;Young +22062;Portugal;F;Service and sales workers;Information and communication   ;Y50-64;250;1;9.526818474156401e-07;10562178;2.3669360618614834e-05;0;1;Old +22063;Portugal;F;Service and sales workers;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22064;Portugal;F;Service and sales workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22065;Portugal;F;Service and sales workers;Financial and insurance activities   ;Y15-29;501;1;1.9091744222209427e-06;10562178;4.743339867970413e-05;1;0;Young +22066;Portugal;F;Service and sales workers;Financial and insurance activities   ;Y30-49;804;1;3.063824821288699e-06;10562178;7.612066374946531e-05;1;0;Young +22067;Portugal;F;Service and sales workers;Financial and insurance activities   ;Y50-64;160;1;6.097163823460097e-07;10562178;1.5148390795913494e-05;0;1;Old +22068;Portugal;F;Service and sales workers;Financial and insurance activities   ;Y65-84;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22069;Portugal;F;Service and sales workers;Real estate activities   ;Y15-29;188;1;7.164167492565614e-07;10562178;1.7799359185198355e-05;1;0;Young +22070;Portugal;F;Service and sales workers;Real estate activities   ;Y30-49;723;1;2.755155902726031e-06;10562178;6.84517909090341e-05;1;0;Young +22071;Portugal;F;Service and sales workers;Real estate activities   ;Y50-64;549;1;2.092089336924746e-06;10562178;5.1977915918478174e-05;0;1;Old +22072;Portugal;F;Service and sales workers;Real estate activities   ;Y65-84;125;1;4.7634092370782007e-07;10562178;1.1834680309307417e-05;0;1;Old +22073;Portugal;F;Service and sales workers;Real estate activities   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22074;Portugal;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;768;1;2.9266386352608465e-06;10562178;7.271227582038478e-05;1;0;Young +22075;Portugal;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;1238;1;4.71768050840225e-06;10562178;0.00011721067378338066;1;0;Young +22076;Portugal;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;273;1;1.040328577377879e-06;10562178;2.5846941795527398e-05;0;1;Old +22077;Portugal;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +22078;Portugal;F;Service and sales workers;Administrative and support service activities   ;Y15-29;2818;1;1.0738629784069095e-05;10562178;0.0002668010328930264;1;0;Young +22079;Portugal;F;Service and sales workers;Administrative and support service activities   ;Y30-49;7256;1;2.765063793939154e-05;10562178;0.000686979522594677;1;0;Young +22080;Portugal;F;Service and sales workers;Administrative and support service activities   ;Y50-64;1896;1;7.225139130800215e-06;10562178;0.00017950843093157492;0;1;Old +22081;Portugal;F;Service and sales workers;Administrative and support service activities   ;Y65-84;114;1;4.344229224215319e-07;10562178;1.0793228442088364e-05;0;1;Old +22082;Portugal;F;Service and sales workers;Administrative and support service activities   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22083;Portugal;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;2145;1;8.174010250826192e-06;10562178;0.00020308311410771528;1;0;Young +22084;Portugal;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;6012;1;2.2910093066651315e-05;10562178;0.0005692007841564496;1;0;Young +22085;Portugal;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;2250;1;8.574136626740762e-06;10562178;0.0002130242455675335;0;1;Old +22086;Portugal;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;79;1;3.010474637833423e-07;10562178;7.479517955482288e-06;0;1;Old +22087;Portugal;F;Service and sales workers;Education   ;Y15-29;5309;1;2.0231151711718532e-05;10562178;0.0005026425420969047;1;0;Young +22088;Portugal;F;Service and sales workers;Education   ;Y30-49;23892;1;9.10458987938179e-05;10562178;0.0022620334555997824;1;0;Young +22089;Portugal;F;Service and sales workers;Education   ;Y50-64;13193;1;5.027492645181816e-05;10562178;0.001249079498565542;0;1;Old +22090;Portugal;F;Service and sales workers;Education   ;Y65-84;451;1;1.7186380527378147e-06;10562178;4.269952655598116e-05;0;1;Old +22091;Portugal;F;Service and sales workers;Education   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22092;Portugal;F;Service and sales workers;Human health and social work activities   ;Y15-29;13218;1;5.0370194636559725e-05;10562178;0.0012514464346274035;1;0;Young +22093;Portugal;F;Service and sales workers;Human health and social work activities   ;Y30-49;60824;1;0.00023178368274883558;10562178;0.005758660761066515;1;0;Young +22094;Portugal;F;Service and sales workers;Human health and social work activities   ;Y50-64;32545;1;0.00012402012289656803;10562178;0.003081277365331279;0;1;Old +22095;Portugal;F;Service and sales workers;Human health and social work activities   ;Y65-84;912;1;3.475383379372255e-06;10562178;8.634582753670691e-05;0;1;Old +22096;Portugal;F;Service and sales workers;Human health and social work activities   ;Y_GE85;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +22097;Portugal;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;824;1;3.14003936908195e-06;10562178;7.80142125989545e-05;1;0;Young +22098;Portugal;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;1128;1;4.298500495539368e-06;10562178;0.00010679615511119014;1;0;Young +22099;Portugal;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;418;1;1.5928840488789504e-06;10562178;3.957517095432401e-05;0;1;Old +22100;Portugal;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;33;1;1.257540038588645e-07;10562178;3.124355601657158e-06;0;1;Old +22101;Portugal;F;Service and sales workers;Other service activities   ;Y15-29;12260;1;4.671951779726299e-05;10562178;0.0011607454447368716;1;0;Young +22102;Portugal;F;Service and sales workers;Other service activities   ;Y30-49;29169;1;0.00011115510722906723;10562178;0.0027616463195375045;1;0;Young +22103;Portugal;F;Service and sales workers;Other service activities   ;Y50-64;6866;1;2.616445425742314e-05;10562178;0.0006500553200296379;0;1;Old +22104;Portugal;F;Service and sales workers;Other service activities   ;Y65-84;472;1;1.7986633279207285e-06;10562178;4.468775284794481e-05;0;1;Old +22105;Portugal;F;Service and sales workers;Other service activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22106;Portugal;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;336;1;1.2804044029266203e-06;10562178;3.181162067141834e-05;1;0;Young +22107;Portugal;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1100;1;4.191800128628817e-06;10562178;0.00010414518672190527;1;0;Young +22108;Portugal;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;940;1;3.582083746282807e-06;10562178;8.899679592599178e-05;0;1;Old +22109;Portugal;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;190;1;7.240382040358865e-07;10562178;1.7988714070147275e-05;0;1;Old +22110;Portugal;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22111;Portugal;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +22112;Portugal;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;17;1;6.478236562426352e-08;10562178;1.6095165220658088e-06;1;0;Young +22113;Portugal;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +22114;Portugal;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22115;Portugal;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;1866;1;7.110817309110338e-06;10562178;0.00017666810765734113;1;0;Young +22116;Portugal;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;9356;1;3.565316545768291e-05;10562178;0.0008858021517910415;1;0;Young +22117;Portugal;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;9547;1;3.6381014389108465e-05;10562178;0.0009038855433036633;0;1;Old +22118;Portugal;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;1119;1;4.264203949032405e-06;10562178;0.00010594405812892;0;1;Old +22119;Portugal;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;20;1;7.621454779325121e-08;10562178;1.8935488494891867e-06;0;1;Old +22120;Portugal;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22121;Portugal;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;1;0;Young +22122;Portugal;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22123;Portugal;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;96;1;3.658298294076058e-07;10562178;9.089034477548097e-06;1;0;Young +22124;Portugal;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;390;1;1.4861836819683986e-06;10562178;3.6924202565039145e-05;1;0;Young +22125;Portugal;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;262;1;9.984105760915908e-07;10562178;2.480548992830835e-05;0;1;Old +22126;Portugal;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +22127;Portugal;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22128;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;1;0;Young +22129;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;1;0;Young +22130;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +22131;Portugal;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;1;0;Young +22132;Portugal;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;26;1;9.907891213122657e-08;10562178;2.4616135043359427e-06;1;0;Young +22133;Portugal;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;17;1;6.478236562426352e-08;10562178;1.6095165220658088e-06;0;1;Old +22134;Portugal;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22135;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;240;1;9.145745735190145e-07;10562178;2.2722586193870243e-05;1;0;Young +22136;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1099;1;4.187989401239154e-06;10562178;0.00010405050927943081;1;0;Young +22137;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;644;1;2.454108438942689e-06;10562178;6.0972272953551815e-05;0;1;Old +22138;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;36;1;1.3718618602785217e-07;10562178;3.4083879290805363e-06;0;1;Old +22139;Portugal;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22140;Portugal;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +22141;Portugal;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22142;Portugal;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;1;0;Young +22143;Portugal;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;67;1;2.5531873510739155e-07;10562178;6.343388645788776e-06;1;0;Young +22144;Portugal;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;60;1;2.2864364337975364e-07;10562178;5.680646548467561e-06;0;1;Old +22145;Portugal;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22146;Portugal;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22147;Portugal;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22148;Portugal;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22149;Portugal;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;1;0;Young +22150;Portugal;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;1;0;Young +22151;Portugal;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +22152;Portugal;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;1;0;Young +22153;Portugal;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;1;0;Young +22154;Portugal;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +22155;Portugal;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;1;0;Young +22156;Portugal;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;34;1;1.2956473124852705e-07;10562178;3.2190330441316175e-06;1;0;Young +22157;Portugal;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22158;Portugal;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22159;Portugal;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;261;1;9.945998487019282e-07;10562178;2.4710812485833887e-05;1;0;Young +22160;Portugal;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;1353;1;5.155914158213445e-06;10562178;0.0001280985796679435;1;0;Young +22161;Portugal;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;665;1;2.534133714125603e-06;10562178;6.296049924551546e-05;0;1;Old +22162;Portugal;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;26;1;9.907891213122657e-08;10562178;2.4616135043359427e-06;0;1;Old +22163;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;71;1;2.705616446660418e-07;10562178;6.722098415686613e-06;1;0;Young +22164;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;998;1;3.8031059348832353e-06;10562178;9.448808758951043e-05;1;0;Young +22165;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;594;1;2.263572069459561e-06;10562178;5.623840082982885e-05;0;1;Old +22166;Portugal;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;28;1;1.067003669105517e-07;10562178;2.6509683892848615e-06;0;1;Old +22167;Portugal;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;1;0;Young +22168;Portugal;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;61;1;2.3245437076941619e-07;10562178;5.77532399094202e-06;1;0;Young +22169;Portugal;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;0;1;Old +22170;Portugal;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22171;Portugal;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;17;1;6.478236562426352e-08;10562178;1.6095165220658088e-06;1;0;Young +22172;Portugal;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;78;1;2.9723673639367974e-07;10562178;7.384840513007828e-06;1;0;Young +22173;Portugal;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;48;1;1.829149147038029e-07;10562178;4.544517238774049e-06;0;1;Old +22174;Portugal;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22175;Portugal;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;16;1;6.097163823460096e-08;10562178;1.5148390795913494e-06;1;0;Young +22176;Portugal;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;91;1;3.46776192459293e-07;10562178;8.6156472651758e-06;1;0;Young +22177;Portugal;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;39;1;1.4861836819683987e-07;10562178;3.692420256503914e-06;0;1;Old +22178;Portugal;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22179;Portugal;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;19;1;7.240382040358865e-08;10562178;1.7988714070147276e-06;1;0;Young +22180;Portugal;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;68;1;2.591294624970541e-07;10562178;6.438066088263235e-06;1;0;Young +22181;Portugal;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;29;1;1.1051109430021426e-07;10562178;2.745645831759321e-06;0;1;Old +22182;Portugal;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22183;Portugal;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22184;Portugal;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;93;1;3.543976472386181e-07;10562178;8.805002150124718e-06;1;0;Young +22185;Portugal;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;414;1;1.5776411393203e-06;10562178;3.919646118442617e-05;1;0;Young +22186;Portugal;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;212;1;8.078742066084628e-07;10562178;2.007161780458538e-05;0;1;Old +22187;Portugal;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22188;Portugal;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;1;0;Young +22189;Portugal;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;1;0;Young +22190;Portugal;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22191;Portugal;F;Craft and related trades workers;Manufacturing   ;Y15-29;16856;1;6.423362088015212e-05;10562178;0.0015958829703494866;1;0;Young +22192;Portugal;F;Craft and related trades workers;Manufacturing   ;Y30-49;75621;1;0.0002881710159336725;10562178;0.007159602877361089;1;0;Young +22193;Portugal;F;Craft and related trades workers;Manufacturing   ;Y50-64;23563;1;8.979216948261891e-05;10562178;0.0022308845770256853;0;1;Old +22194;Portugal;F;Craft and related trades workers;Manufacturing   ;Y65-84;461;1;1.7567453266344403e-06;10562178;4.364630098072576e-05;0;1;Old +22195;Portugal;F;Craft and related trades workers;Manufacturing   ;Y_GE85;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22196;Portugal;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;26;1;9.907891213122657e-08;10562178;2.4616135043359427e-06;1;0;Young +22197;Portugal;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;68;1;2.591294624970541e-07;10562178;6.438066088263235e-06;1;0;Young +22198;Portugal;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;0;1;Old +22199;Portugal;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;1;0;Young +22200;Portugal;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;27;1;1.0288963952088914e-07;10562178;2.556290946810402e-06;1;0;Young +22201;Portugal;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +22202;Portugal;F;Craft and related trades workers;Construction   ;Y15-29;238;1;9.069531187396895e-07;10562178;2.2533231308921323e-05;1;0;Young +22203;Portugal;F;Craft and related trades workers;Construction   ;Y30-49;628;1;2.393136800708088e-06;10562178;5.9457433873960465e-05;1;0;Young +22204;Portugal;F;Craft and related trades workers;Construction   ;Y50-64;236;1;8.993316639603643e-07;10562178;2.2343876423972403e-05;0;1;Old +22205;Portugal;F;Craft and related trades workers;Construction   ;Y65-84;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +22206;Portugal;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2828;1;1.0776737057965721e-05;10562178;0.000267747807317771;1;0;Young +22207;Portugal;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;9708;1;3.6994541498844135e-05;10562178;0.0009191286115420512;1;0;Young +22208;Portugal;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4101;1;1.562779302500616e-05;10562178;0.00038827219158775776;0;1;Old +22209;Portugal;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;161;1;6.135271097356723e-07;10562178;1.5243068238387954e-05;0;1;Old +22210;Portugal;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22211;Portugal;F;Craft and related trades workers;Transportation and storage   ;Y15-29;31;1;1.1813254907953938e-07;10562178;2.9350007167082397e-06;1;0;Young +22212;Portugal;F;Craft and related trades workers;Transportation and storage   ;Y30-49;99;1;3.772620115765935e-07;10562178;9.373066804971475e-06;1;0;Young +22213;Portugal;F;Craft and related trades workers;Transportation and storage   ;Y50-64;33;1;1.257540038588645e-07;10562178;3.124355601657158e-06;0;1;Old +22214;Portugal;F;Craft and related trades workers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22215;Portugal;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;739;1;2.8161275409606323e-06;10562178;6.996662998862545e-05;1;0;Young +22216;Portugal;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2141;1;8.158767341267542e-06;10562178;0.00020270440433781744;1;0;Young +22217;Portugal;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;933;1;3.555408654555169e-06;10562178;8.833405382867056e-05;0;1;Old +22218;Portugal;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;47;1;1.7910418731414036e-07;10562178;4.449839796299589e-06;0;1;Old +22219;Portugal;F;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22220;Portugal;F;Craft and related trades workers;Information and communication   ;Y15-29;125;1;4.7634092370782007e-07;10562178;1.1834680309307417e-05;1;0;Young +22221;Portugal;F;Craft and related trades workers;Information and communication   ;Y30-49;217;1;8.269278435567757e-07;10562178;2.0545005016957675e-05;1;0;Young +22222;Portugal;F;Craft and related trades workers;Information and communication   ;Y50-64;63;1;2.400758255487413e-07;10562178;5.9646788758909384e-06;0;1;Old +22223;Portugal;F;Craft and related trades workers;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22224;Portugal;F;Craft and related trades workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22225;Portugal;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;1;0;Young +22226;Portugal;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;17;1;6.478236562426352e-08;10562178;1.6095165220658088e-06;1;0;Young +22227;Portugal;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22228;Portugal;F;Craft and related trades workers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22229;Portugal;F;Craft and related trades workers;Real estate activities   ;Y30-49;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;1;0;Young +22230;Portugal;F;Craft and related trades workers;Real estate activities   ;Y50-64;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22231;Portugal;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;79;1;3.010474637833423e-07;10562178;7.479517955482288e-06;1;0;Young +22232;Portugal;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;262;1;9.984105760915908e-07;10562178;2.480548992830835e-05;1;0;Young +22233;Portugal;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;97;1;3.6964055679726836e-07;10562178;9.183711920022556e-06;0;1;Old +22234;Portugal;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22235;Portugal;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;81;1;3.086689185626674e-07;10562178;7.668872840431207e-06;1;0;Young +22236;Portugal;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;160;1;6.097163823460097e-07;10562178;1.5148390795913494e-05;1;0;Young +22237;Portugal;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;78;1;2.9723673639367974e-07;10562178;7.384840513007828e-06;0;1;Old +22238;Portugal;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22239;Portugal;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;34;1;1.2956473124852705e-07;10562178;3.2190330441316175e-06;1;0;Young +22240;Portugal;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;192;1;7.316596588152116e-07;10562178;1.8178068955096195e-05;1;0;Young +22241;Portugal;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;167;1;6.363914740736477e-07;10562178;1.581113289323471e-05;0;1;Old +22242;Portugal;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22243;Portugal;F;Craft and related trades workers;Education   ;Y15-29;33;1;1.257540038588645e-07;10562178;3.124355601657158e-06;1;0;Young +22244;Portugal;F;Craft and related trades workers;Education   ;Y30-49;312;1;1.188946945574719e-06;10562178;2.9539362052031313e-05;1;0;Young +22245;Portugal;F;Craft and related trades workers;Education   ;Y50-64;178;1;6.783094753599357e-07;10562178;1.6852584760453764e-05;0;1;Old +22246;Portugal;F;Craft and related trades workers;Education   ;Y65-84;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +22247;Portugal;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;52;1;1.9815782426245315e-07;10562178;4.9232270086718855e-06;1;0;Young +22248;Portugal;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;303;1;1.1546503990677558e-06;10562178;2.868726506976118e-05;1;0;Young +22249;Portugal;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;481;1;1.8329598744276917e-06;10562178;4.553984983021494e-05;0;1;Old +22250;Portugal;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;37;1;1.4099691341751475e-07;10562178;3.5030653715549957e-06;0;1;Old +22251;Portugal;F;Craft and related trades workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22252;Portugal;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;1;0;Young +22253;Portugal;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;90;1;3.4296546506963047e-07;10562178;8.52096982270134e-06;1;0;Young +22254;Portugal;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;68;1;2.591294624970541e-07;10562178;6.438066088263235e-06;0;1;Old +22255;Portugal;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22256;Portugal;F;Craft and related trades workers;Other service activities   ;Y15-29;108;1;4.1155855808355654e-07;10562178;1.0225163787241609e-05;1;0;Young +22257;Portugal;F;Craft and related trades workers;Other service activities   ;Y30-49;810;1;3.086689185626674e-06;10562178;7.668872840431207e-05;1;0;Young +22258;Portugal;F;Craft and related trades workers;Other service activities   ;Y50-64;721;1;2.7475344479467064e-06;10562178;6.826243602408518e-05;0;1;Old +22259;Portugal;F;Craft and related trades workers;Other service activities   ;Y65-84;51;1;1.943470968727906e-07;10562178;4.8285495661974265e-06;0;1;Old +22260;Portugal;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22261;Portugal;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22262;Portugal;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;59;1;2.2483291599009106e-07;10562178;5.585969105993101e-06;1;0;Young +22263;Portugal;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;255;1;9.71735484363953e-07;10562178;2.414274783098713e-05;1;0;Young +22264;Portugal;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;150;1;5.716091084493841e-07;10562178;1.42016163711689e-05;0;1;Old +22265;Portugal;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22266;Portugal;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;20;1;7.621454779325121e-08;10562178;1.8935488494891867e-06;1;0;Young +22267;Portugal;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;56;1;2.134007338211034e-07;10562178;5.301936778569723e-06;1;0;Young +22268;Portugal;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +22269;Portugal;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22270;Portugal;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;7383;1;2.8134600317878685e-05;10562178;0.0006990035577889333;1;0;Young +22271;Portugal;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;29147;1;0.00011107127122649465;10562178;0.0027595634158030665;1;0;Young +22272;Portugal;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;10474;1;3.991355867932566e-05;10562178;0.000991651532477487;0;1;Old +22273;Portugal;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;87;1;3.3153328290064277e-07;10562178;8.236937495277962e-06;0;1;Old +22274;Portugal;F;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22275;Portugal;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;1;0;Young +22276;Portugal;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;16;1;6.097163823460096e-08;10562178;1.5148390795913494e-06;1;0;Young +22277;Portugal;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22278;Portugal;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;1;0;Young +22279;Portugal;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;65;1;2.4769728032806646e-07;10562178;6.154033760839857e-06;1;0;Young +22280;Portugal;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;28;1;1.067003669105517e-07;10562178;2.6509683892848615e-06;0;1;Old +22281;Portugal;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22282;Portugal;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;45;1;1.7148273253481523e-07;10562178;4.26048491135067e-06;1;0;Young +22283;Portugal;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;92;1;3.5058691984895557e-07;10562178;8.71032470765026e-06;1;0;Young +22284;Portugal;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;35;1;1.3337545863818962e-07;10562178;3.313710486606077e-06;0;1;Old +22285;Portugal;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;650;1;2.4769728032806642e-06;10562178;6.154033760839858e-05;1;0;Young +22286;Portugal;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2334;1;8.894237727472417e-06;10562178;0.0002209771507353881;1;0;Young +22287;Portugal;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;631;1;2.4045689828770757e-06;10562178;5.974146620138384e-05;0;1;Old +22288;Portugal;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;13;1;4.953945606561329e-08;10562178;1.2308067521679714e-06;0;1;Old +22289;Portugal;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22290;Portugal;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;348;1;1.326133131602571e-06;10562178;3.294774998111185e-05;1;0;Young +22291;Portugal;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;1596;1;6.0819209139014465e-06;10562178;0.00015110519818923711;1;0;Young +22292;Portugal;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;550;1;2.0959000643144084e-06;10562178;5.2072593360952636e-05;0;1;Old +22293;Portugal;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;21;1;8.002527518291377e-08;10562178;1.988226291963646e-06;0;1;Old +22294;Portugal;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;1;0;Young +22295;Portugal;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;83;1;3.1629037334199253e-07;10562178;7.858227725380125e-06;1;0;Young +22296;Portugal;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;45;1;1.7148273253481523e-07;10562178;4.26048491135067e-06;0;1;Old +22297;Portugal;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22298;Portugal;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;1;0;Young +22299;Portugal;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;1;0;Young +22300;Portugal;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22301;Portugal;F;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22302;Portugal;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;1;0;Young +22303;Portugal;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;1;0;Young +22304;Portugal;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22305;Portugal;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22306;Portugal;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +22307;Portugal;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22308;Portugal;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;1;0;Young +22309;Portugal;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;31;1;1.1813254907953938e-07;10562178;2.9350007167082397e-06;1;0;Young +22310;Portugal;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;14;1;5.335018345527585e-08;10562178;1.3254841946424308e-06;0;1;Old +22311;Portugal;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;39;1;1.4861836819683987e-07;10562178;3.692420256503914e-06;1;0;Young +22312;Portugal;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;112;1;4.268014676422068e-07;10562178;1.0603873557139446e-05;1;0;Young +22313;Portugal;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;28;1;1.067003669105517e-07;10562178;2.6509683892848615e-06;0;1;Old +22314;Portugal;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;60;1;2.2864364337975364e-07;10562178;5.680646548467561e-06;1;0;Young +22315;Portugal;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;268;1;1.0212749404295662e-06;10562178;2.5373554583155104e-05;1;0;Young +22316;Portugal;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;75;1;2.8580455422469204e-07;10562178;7.10080818558445e-06;0;1;Old +22317;Portugal;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22318;Portugal;F;Plant and machine operators, and assemblers;Education   ;Y15-29;33;1;1.257540038588645e-07;10562178;3.124355601657158e-06;1;0;Young +22319;Portugal;F;Plant and machine operators, and assemblers;Education   ;Y30-49;144;1;5.487447441114087e-07;10562178;1.3633551716322145e-05;1;0;Young +22320;Portugal;F;Plant and machine operators, and assemblers;Education   ;Y50-64;48;1;1.829149147038029e-07;10562178;4.544517238774049e-06;0;1;Old +22321;Portugal;F;Plant and machine operators, and assemblers;Education   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22322;Portugal;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;63;1;2.400758255487413e-07;10562178;5.9646788758909384e-06;1;0;Young +22323;Portugal;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;491;1;1.8710671483243173e-06;10562178;4.6486624254959535e-05;1;0;Young +22324;Portugal;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;198;1;7.54524023153187e-07;10562178;1.874613360994295e-05;0;1;Old +22325;Portugal;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22326;Portugal;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;13;1;4.953945606561329e-08;10562178;1.2308067521679714e-06;1;0;Young +22327;Portugal;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;27;1;1.0288963952088914e-07;10562178;2.556290946810402e-06;1;0;Young +22328;Portugal;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +22329;Portugal;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;120;1;4.572872867595073e-07;10562178;1.1361293096935121e-05;1;0;Young +22330;Portugal;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;553;1;2.1073322464833958e-06;10562178;5.2356625688376013e-05;1;0;Young +22331;Portugal;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;170;1;6.478236562426352e-07;10562178;1.609516522065809e-05;0;1;Old +22332;Portugal;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +22333;Portugal;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22334;Portugal;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +22335;Portugal;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22336;Portugal;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22337;Portugal;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22338;Portugal;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22339;Portugal;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;1378;1;5.251182342955009e-06;10562178;0.00013046551572980496;1;0;Young +22340;Portugal;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;5475;1;2.086373245840252e-05;10562178;0.0005183589975476649;1;0;Young +22341;Portugal;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;4010;1;1.5281016832546866e-05;10562178;0.00037965654432258193;0;1;Old +22342;Portugal;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;175;1;6.668772931909481e-07;10562178;1.6568552433030383e-05;0;1;Old +22343;Portugal;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22344;Portugal;F;Elementary occupations;Mining and quarrying   ;Y15-29;13;1;4.953945606561329e-08;10562178;1.2308067521679714e-06;1;0;Young +22345;Portugal;F;Elementary occupations;Mining and quarrying   ;Y30-49;120;1;4.572872867595073e-07;10562178;1.1361293096935121e-05;1;0;Young +22346;Portugal;F;Elementary occupations;Mining and quarrying   ;Y50-64;88;1;3.353440102903053e-07;10562178;8.331614937752422e-06;0;1;Old +22347;Portugal;F;Elementary occupations;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22348;Portugal;F;Elementary occupations;Manufacturing   ;Y15-29;14251;1;5.430667603008115e-05;10562178;0.00134924823270352;1;0;Young +22349;Portugal;F;Elementary occupations;Manufacturing   ;Y30-49;43859;1;0.00016713469258321025;10562178;0.004152457949487313;1;0;Young +22350;Portugal;F;Elementary occupations;Manufacturing   ;Y50-64;16343;1;6.227871772925522e-05;10562178;0.001547313442360089;0;1;Old +22351;Portugal;F;Elementary occupations;Manufacturing   ;Y65-84;213;1;8.116849339981254e-07;10562178;2.016629524705984e-05;0;1;Old +22352;Portugal;F;Elementary occupations;Manufacturing   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22353;Portugal;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;50;1;1.9053636948312803e-07;10562178;4.733872123722967e-06;1;0;Young +22354;Portugal;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;168;1;6.402022014633102e-07;10562178;1.590581033570917e-05;1;0;Young +22355;Portugal;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;122;1;4.6490874153883237e-07;10562178;1.155064798188404e-05;0;1;Old +22356;Portugal;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22357;Portugal;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;223;1;8.49792207894751e-07;10562178;2.1113069671804434e-05;1;0;Young +22358;Portugal;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1026;1;3.909806301793787e-06;10562178;9.713905597879528e-05;1;0;Young +22359;Portugal;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;438;1;1.6690985966722016e-06;10562178;4.146871980381319e-05;0;1;Old +22360;Portugal;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22361;Portugal;F;Elementary occupations;Construction   ;Y15-29;301;1;1.1470289442884308e-06;10562178;2.849791018481226e-05;1;0;Young +22362;Portugal;F;Elementary occupations;Construction   ;Y30-49;1315;1;5.0111065174062675e-06;10562178;0.00012450083685391404;1;0;Young +22363;Portugal;F;Elementary occupations;Construction   ;Y50-64;1068;1;4.0698568521596144e-06;10562178;0.00010111550856272257;0;1;Old +22364;Portugal;F;Elementary occupations;Construction   ;Y65-84;40;1;1.5242909558650242e-07;10562178;3.7870976989783735e-06;0;1;Old +22365;Portugal;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;7231;1;2.7555369754649976e-05;10562178;0.0006846125865328155;1;0;Young +22366;Portugal;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;20020;1;7.629076234104446e-05;10562178;0.001895442398338676;1;0;Young +22367;Portugal;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9677;1;3.68764089497646e-05;10562178;0.000916193610825343;0;1;Old +22368;Portugal;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;491;1;1.8710671483243173e-06;10562178;4.6486624254959535e-05;0;1;Old +22369;Portugal;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22370;Portugal;F;Elementary occupations;Transportation and storage   ;Y15-29;371;1;1.41377986156481e-06;10562178;3.512533115802442e-05;1;0;Young +22371;Portugal;F;Elementary occupations;Transportation and storage   ;Y30-49;1080;1;4.115585580835566e-06;10562178;0.00010225163787241608;1;0;Young +22372;Portugal;F;Elementary occupations;Transportation and storage   ;Y50-64;801;1;3.052392639119711e-06;10562178;7.583663142204193e-05;0;1;Old +22373;Portugal;F;Elementary occupations;Transportation and storage   ;Y65-84;43;1;1.638612777554901e-07;10562178;4.071130026401751e-06;0;1;Old +22374;Portugal;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;4192;1;1.5974569217465453e-05;10562178;0.0003968878388529336;1;0;Young +22375;Portugal;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;15009;1;5.719520739144537e-05;10562178;0.0014210137340991602;1;0;Young +22376;Portugal;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;9116;1;3.47385908841639e-05;10562178;0.0008630795655971713;0;1;Old +22377;Portugal;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;257;1;9.79356939143278e-07;10562178;2.433210271593605e-05;0;1;Old +22378;Portugal;F;Elementary occupations;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22379;Portugal;F;Elementary occupations;Information and communication   ;Y15-29;179;1;6.821202027495983e-07;10562178;1.6947262202928222e-05;1;0;Young +22380;Portugal;F;Elementary occupations;Information and communication   ;Y30-49;333;1;1.2689722207576327e-06;10562178;3.152758834399496e-05;1;0;Young +22381;Portugal;F;Elementary occupations;Information and communication   ;Y50-64;250;1;9.526818474156401e-07;10562178;2.3669360618614834e-05;0;1;Old +22382;Portugal;F;Elementary occupations;Information and communication   ;Y65-84;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +22383;Portugal;F;Elementary occupations;Financial and insurance activities   ;Y15-29;106;1;4.039371033042314e-07;10562178;1.003580890229269e-05;1;0;Young +22384;Portugal;F;Elementary occupations;Financial and insurance activities   ;Y30-49;601;1;2.290247161187199e-06;10562178;5.6901142927150065e-05;1;0;Young +22385;Portugal;F;Elementary occupations;Financial and insurance activities   ;Y50-64;858;1;3.269604100330477e-06;10562178;8.123324564308611e-05;0;1;Old +22386;Portugal;F;Elementary occupations;Financial and insurance activities   ;Y65-84;37;1;1.4099691341751475e-07;10562178;3.5030653715549957e-06;0;1;Old +22387;Portugal;F;Elementary occupations;Real estate activities   ;Y15-29;160;1;6.097163823460097e-07;10562178;1.5148390795913494e-05;1;0;Young +22388;Portugal;F;Elementary occupations;Real estate activities   ;Y30-49;825;1;3.1438500964716126e-06;10562178;7.810889004142895e-05;1;0;Young +22389;Portugal;F;Elementary occupations;Real estate activities   ;Y50-64;560;1;2.134007338211034e-06;10562178;5.301936778569723e-05;0;1;Old +22390;Portugal;F;Elementary occupations;Real estate activities   ;Y65-84;28;1;1.067003669105517e-07;10562178;2.6509683892848615e-06;0;1;Old +22391;Portugal;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;265;1;1.0098427582605786e-06;10562178;2.5089522255731726e-05;1;0;Young +22392;Portugal;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;1084;1;4.130828490394216e-06;10562178;0.00010263034764231393;1;0;Young +22393;Portugal;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;929;1;3.540165744996519e-06;10562178;8.795534405877273e-05;0;1;Old +22394;Portugal;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;42;1;1.6005055036582754e-07;10562178;3.976452583927292e-06;0;1;Old +22395;Portugal;F;Elementary occupations;Administrative and support service activities   ;Y15-29;9176;1;3.496723452754366e-05;10562178;0.0008687602121456389;1;0;Young +22396;Portugal;F;Elementary occupations;Administrative and support service activities   ;Y30-49;48094;1;0.0001832731230784312;10562178;0.004553416918366648;1;0;Young +22397;Portugal;F;Elementary occupations;Administrative and support service activities   ;Y50-64;32042;1;0.00012210332701956776;10562178;0.0030336546117666263;0;1;Old +22398;Portugal;F;Elementary occupations;Administrative and support service activities   ;Y65-84;1281;1;4.88154178615774e-06;10562178;0.00012128180380978241;0;1;Old +22399;Portugal;F;Elementary occupations;Administrative and support service activities   ;Y_GE85;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22400;Portugal;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;1012;1;3.856456118338511e-06;10562178;9.581357178415285e-05;1;0;Young +22401;Portugal;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;7788;1;2.9677944910692023e-05;10562178;0.0007373479219910893;1;0;Young +22402;Portugal;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;6462;1;2.4624920391999465e-05;10562178;0.0006118056332699562;0;1;Old +22403;Portugal;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;376;1;1.4328334985131229e-06;10562178;3.559871837039671e-05;0;1;Old +22404;Portugal;F;Elementary occupations;Education   ;Y15-29;4384;1;1.6706228876280666e-05;10562178;0.00041506590780802976;1;0;Young +22405;Portugal;F;Elementary occupations;Education   ;Y30-49;25996;1;9.906366922166792e-05;10562178;0.002461234794566045;1;0;Young +22406;Portugal;F;Elementary occupations;Education   ;Y50-64;14912;1;5.68255668346481e-05;10562178;0.0014118300221791376;0;1;Old +22407;Portugal;F;Elementary occupations;Education   ;Y65-84;467;1;1.7796096909724157e-06;10562178;4.421436563557251e-05;0;1;Old +22408;Portugal;F;Elementary occupations;Education   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22409;Portugal;F;Elementary occupations;Human health and social work activities   ;Y15-29;3846;1;1.4656057540642208e-05;10562178;0.0003641294437567706;1;0;Young +22410;Portugal;F;Elementary occupations;Human health and social work activities   ;Y30-49;18501;1;7.050226743614704e-05;10562178;0.0017516273632199723;1;0;Young +22411;Portugal;F;Elementary occupations;Human health and social work activities   ;Y50-64;10400;1;3.963156485249063e-05;10562178;0.0009846454017343772;0;1;Old +22412;Portugal;F;Elementary occupations;Human health and social work activities   ;Y65-84;363;1;1.3832940424475095e-06;10562178;3.436791161822874e-05;0;1;Old +22413;Portugal;F;Elementary occupations;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22414;Portugal;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;301;1;1.1470289442884308e-06;10562178;2.849791018481226e-05;1;0;Young +22415;Portugal;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;1384;1;5.2740467072929836e-06;10562178;0.00013103358038465173;1;0;Young +22416;Portugal;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;1000;1;3.8107273896625605e-06;10562178;9.467744247445934e-05;0;1;Old +22417;Portugal;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;43;1;1.638612777554901e-07;10562178;4.071130026401751e-06;0;1;Old +22418;Portugal;F;Elementary occupations;Other service activities   ;Y15-29;950;1;3.6201910201794326e-06;10562178;8.994357035073637e-05;1;0;Young +22419;Portugal;F;Elementary occupations;Other service activities   ;Y30-49;4341;1;1.6542367598525175e-05;10562178;0.000410994777781628;1;0;Young +22420;Portugal;F;Elementary occupations;Other service activities   ;Y50-64;2506;1;9.549682838494376e-06;10562178;0.00023726167084099512;0;1;Old +22421;Portugal;F;Elementary occupations;Other service activities   ;Y65-84;103;1;3.9250492113524375e-07;10562178;9.751776574869313e-06;0;1;Old +22422;Portugal;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5407;1;2.0604602995905464e-05;10562178;0.0005119209314594016;1;0;Young +22423;Portugal;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;44910;1;0.0001711397670697456;10562178;0.0042519639415279685;1;0;Young +22424;Portugal;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;36927;1;0.00014071873031806938;10562178;0.0034961539182543602;0;1;Old +22425;Portugal;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2120;1;8.078742066084629e-06;10562178;0.0002007161780458538;0;1;Old +22426;Portugal;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;21;1;8.002527518291377e-08;10562178;1.988226291963646e-06;0;1;Old +22427;Portugal;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +22428;Portugal;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;1;0;Young +22429;Portugal;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;0;1;Old +22430;Portugal;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22431;Portugal;M;Not applicable;Not applicable  ;Y15-29;434496;1;0.001655745807898824;10562178;0.041136970045382686;1;0;Young +22432;Portugal;M;Not applicable;Not applicable  ;Y30-49;133461;1;0.000508583488151755;10562178;0.012635746150083818;1;0;Young +22433;Portugal;M;Not applicable;Not applicable  ;Y50-64;331784;1;0.001264338376251803;10562178;0.03141246057394602;0;1;Old +22434;Portugal;M;Not applicable;Not applicable  ;Y65-84;721132;1;0.0027480374639621418;10562178;0.06827493344649181;0;1;Old +22435;Portugal;M;Not applicable;Not applicable  ;Y_GE85;74750;1;0.0002848518723772764;10562178;0.007077138824965835;0;1;Old +22436;Portugal;M;Not applicable;Not applicable  ;Y_LT15;803999;1;0.003063821010561309;10562178;0.07612056907202283;0;1;Old +22437;Portugal;M;Armed forces occupations;Manufacturing   ;Y15-29;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;1;0;Young +22438;Portugal;M;Armed forces occupations;Manufacturing   ;Y30-49;20;1;7.621454779325121e-08;10562178;1.8935488494891867e-06;1;0;Young +22439;Portugal;M;Armed forces occupations;Manufacturing   ;Y50-64;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22440;Portugal;M;Armed forces occupations;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22441;Portugal;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +22442;Portugal;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;14626;1;5.573569880120461e-05;10562178;0.0013847522736314423;1;0;Young +22443;Portugal;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;11905;1;4.5366709573932786e-05;10562178;0.0011271349526584384;1;0;Young +22444;Portugal;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;2691;1;1.025466740558195e-05;10562178;0.0002547769976987701;0;1;Old +22445;Portugal;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;35;1;1.3337545863818962e-07;10562178;3.313710486606077e-06;0;1;Old +22446;Portugal;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22447;Portugal;M;Armed forces occupations;Education   ;Y15-29;61;1;2.3245437076941619e-07;10562178;5.77532399094202e-06;1;0;Young +22448;Portugal;M;Armed forces occupations;Education   ;Y30-49;69;1;2.629401898867167e-07;10562178;6.532743530737695e-06;1;0;Young +22449;Portugal;M;Armed forces occupations;Education   ;Y50-64;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;0;1;Old +22450;Portugal;M;Armed forces occupations;Education   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22451;Portugal;M;Armed forces occupations;Human health and social work activities   ;Y15-29;61;1;2.3245437076941619e-07;10562178;5.77532399094202e-06;1;0;Young +22452;Portugal;M;Armed forces occupations;Human health and social work activities   ;Y30-49;105;1;4.0012637591456885e-07;10562178;9.94113145981823e-06;1;0;Young +22453;Portugal;M;Armed forces occupations;Human health and social work activities   ;Y50-64;47;1;1.7910418731414036e-07;10562178;4.449839796299589e-06;0;1;Old +22454;Portugal;M;Armed forces occupations;Human health and social work activities   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22455;Portugal;M;Armed forces occupations;Arts, entertainment and recreation   ;Y15-29;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;1;0;Young +22456;Portugal;M;Armed forces occupations;Arts, entertainment and recreation   ;Y30-49;13;1;4.953945606561329e-08;10562178;1.2308067521679714e-06;1;0;Young +22457;Portugal;M;Armed forces occupations;Arts, entertainment and recreation   ;Y50-64;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +22458;Portugal;M;Armed forces occupations;Other service activities   ;Y30-49;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22459;Portugal;M;Armed forces occupations;Other service activities   ;Y50-64;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22460;Portugal;M;Armed forces occupations;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22461;Portugal;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;1;0;Young +22462;Portugal;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;43;1;1.638612777554901e-07;10562178;4.071130026401751e-06;1;0;Young +22463;Portugal;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;14;1;5.335018345527585e-08;10562178;1.3254841946424308e-06;0;1;Old +22464;Portugal;M;Managers;Agriculture, forestry and fishing   ;Y15-29;688;1;2.621780444087842e-06;10562178;6.513808042242802e-05;1;0;Young +22465;Portugal;M;Managers;Agriculture, forestry and fishing   ;Y30-49;5842;1;2.226226941040868e-05;10562178;0.0005531056189357914;1;0;Young +22466;Portugal;M;Managers;Agriculture, forestry and fishing   ;Y50-64;5889;1;2.244137359772282e-05;10562178;0.0005575554587320911;0;1;Old +22467;Portugal;M;Managers;Agriculture, forestry and fishing   ;Y65-84;1217;1;4.637655233219336e-06;10562178;0.00011522244749141701;0;1;Old +22468;Portugal;M;Managers;Agriculture, forestry and fishing   ;Y_GE85;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;0;1;Old +22469;Portugal;M;Managers;Mining and quarrying   ;Y15-29;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;1;0;Young +22470;Portugal;M;Managers;Mining and quarrying   ;Y30-49;350;1;1.3337545863818963e-06;10562178;3.3137104866060766e-05;1;0;Young +22471;Portugal;M;Managers;Mining and quarrying   ;Y50-64;232;1;8.840887544017141e-07;10562178;2.1965166654074567e-05;0;1;Old +22472;Portugal;M;Managers;Mining and quarrying   ;Y65-84;43;1;1.638612777554901e-07;10562178;4.071130026401751e-06;0;1;Old +22473;Portugal;M;Managers;Manufacturing   ;Y15-29;1998;1;7.613833324545796e-06;10562178;0.00018916553006396975;1;0;Young +22474;Portugal;M;Managers;Manufacturing   ;Y30-49;21064;1;8.026916173585217e-05;10562178;0.0019942856482820116;1;0;Young +22475;Portugal;M;Managers;Manufacturing   ;Y50-64;12329;1;4.698245798714971e-05;10562178;0.0011672781882676093;0;1;Old +22476;Portugal;M;Managers;Manufacturing   ;Y65-84;1764;1;6.722123115364757e-06;10562178;0.00016701100852494627;0;1;Old +22477;Portugal;M;Managers;Manufacturing   ;Y_GE85;28;1;1.067003669105517e-07;10562178;2.6509683892848615e-06;0;1;Old +22478;Portugal;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;69;1;2.629401898867167e-07;10562178;6.532743530737695e-06;1;0;Young +22479;Portugal;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;543;1;2.06922497258677e-06;10562178;5.140985126363142e-05;1;0;Young +22480;Portugal;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;405;1;1.543344592813337e-06;10562178;3.8344364202156034e-05;0;1;Old +22481;Portugal;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;24;1;9.145745735190145e-08;10562178;2.2722586193870243e-06;0;1;Old +22482;Portugal;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;109;1;4.153692854732191e-07;10562178;1.0319841229716068e-05;1;0;Young +22483;Portugal;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;776;1;2.957124454378147e-06;10562178;7.346969536018044e-05;1;0;Young +22484;Portugal;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;343;1;1.3070794946542583e-06;10562178;3.2474362768739555e-05;0;1;Old +22485;Portugal;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;40;1;1.5242909558650242e-07;10562178;3.7870976989783735e-06;0;1;Old +22486;Portugal;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22487;Portugal;M;Managers;Construction   ;Y15-29;1214;1;4.626223051050348e-06;10562178;0.00011493841516399364;1;0;Young +22488;Portugal;M;Managers;Construction   ;Y30-49;13200;1;5.03016015435458e-05;10562178;0.0012497422406628632;1;0;Young +22489;Portugal;M;Managers;Construction   ;Y50-64;8214;1;3.1301314778688274e-05;10562178;0.000777680512485209;0;1;Old +22490;Portugal;M;Managers;Construction   ;Y65-84;777;1;2.9609351817678095e-06;10562178;7.35643728026549e-05;0;1;Old +22491;Portugal;M;Managers;Construction   ;Y_GE85;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +22492;Portugal;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4095;1;1.5604928660668186e-05;10562178;0.000387704126932911;1;0;Young +22493;Portugal;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;35683;1;0.00013597818544532916;10562178;0.0033783751798161328;1;0;Young +22494;Portugal;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;21624;1;8.240316907406321e-05;10562178;0.002047305016067709;0;1;Old +22495;Portugal;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4238;1;1.6149862677389933e-05;10562178;0.00040124300120675867;0;1;Old +22496;Portugal;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;74;1;2.819938268350295e-07;10562178;7.006130743109991e-06;0;1;Old +22497;Portugal;M;Managers;Transportation and storage   ;Y15-29;380;1;1.448076408071773e-06;10562178;3.597742814029455e-05;1;0;Young +22498;Portugal;M;Managers;Transportation and storage   ;Y30-49;3501;1;1.3341356591208625e-05;10562178;0.00033146572610308215;1;0;Young +22499;Portugal;M;Managers;Transportation and storage   ;Y50-64;1822;1;6.943145303965185e-06;10562178;0.00017250230018846493;0;1;Old +22500;Portugal;M;Managers;Transportation and storage   ;Y65-84;243;1;9.260067556880022e-07;10562178;2.300661852129362e-05;0;1;Old +22501;Portugal;M;Managers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22502;Portugal;M;Managers;Accommodation and food service activities   ;Y15-29;2285;1;8.707512085378951e-06;10562178;0.0002163379560541396;1;0;Young +22503;Portugal;M;Managers;Accommodation and food service activities   ;Y30-49;13551;1;5.1639166857317356e-05;10562178;0.0012829740229713985;1;0;Young +22504;Portugal;M;Managers;Accommodation and food service activities   ;Y50-64;9895;1;3.7707147520711037e-05;10562178;0.0009368332932847751;0;1;Old +22505;Portugal;M;Managers;Accommodation and food service activities   ;Y65-84;1350;1;5.144481976044457e-06;10562178;0.0001278145473405201;0;1;Old +22506;Portugal;M;Managers;Accommodation and food service activities   ;Y_GE85;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22507;Portugal;M;Managers;Information and communication   ;Y15-29;877;1;3.3420079207340657e-06;10562178;8.303211705010084e-05;1;0;Young +22508;Portugal;M;Managers;Information and communication   ;Y30-49;4971;1;1.8943125854012587e-05;10562178;0.00047064156654053735;1;0;Young +22509;Portugal;M;Managers;Information and communication   ;Y50-64;995;1;3.791673752714248e-06;10562178;9.420405526208704e-05;0;1;Old +22510;Portugal;M;Managers;Information and communication   ;Y65-84;55;1;2.0959000643144082e-07;10562178;5.207259336095264e-06;0;1;Old +22511;Portugal;M;Managers;Financial and insurance activities   ;Y15-29;427;1;1.6271805953859134e-06;10562178;4.042726793659414e-05;1;0;Young +22512;Portugal;M;Managers;Financial and insurance activities   ;Y30-49;4123;1;1.571162902757874e-05;10562178;0.0003903550953221959;1;0;Young +22513;Portugal;M;Managers;Financial and insurance activities   ;Y50-64;1470;1;5.601769262803964e-06;10562178;0.00013917584043745523;0;1;Old +22514;Portugal;M;Managers;Financial and insurance activities   ;Y65-84;130;1;4.953945606561329e-07;10562178;1.2308067521679714e-05;0;1;Old +22515;Portugal;M;Managers;Financial and insurance activities   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22516;Portugal;M;Managers;Real estate activities   ;Y15-29;214;1;8.15495661387788e-07;10562178;2.0260972689534297e-05;1;0;Young +22517;Portugal;M;Managers;Real estate activities   ;Y30-49;1989;1;7.579536778038833e-06;10562178;0.00018831343308169964;1;0;Young +22518;Portugal;M;Managers;Real estate activities   ;Y50-64;865;1;3.296279192058115e-06;10562178;8.189598774040733e-05;0;1;Old +22519;Portugal;M;Managers;Real estate activities   ;Y65-84;176;1;6.706880205806106e-07;10562178;1.6663229875504844e-05;0;1;Old +22520;Portugal;M;Managers;Real estate activities   ;Y_GE85;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;0;1;Old +22521;Portugal;M;Managers;Professional, scientific and technical activities   ;Y15-29;676;1;2.576051715411891e-06;10562178;6.400195111273451e-05;1;0;Young +22522;Portugal;M;Managers;Professional, scientific and technical activities   ;Y30-49;4915;1;1.8729725120191485e-05;10562178;0.00046533962976196767;1;0;Young +22523;Portugal;M;Managers;Professional, scientific and technical activities   ;Y50-64;1466;1;5.5865263532453134e-06;10562178;0.0001387971306675574;0;1;Old +22524;Portugal;M;Managers;Professional, scientific and technical activities   ;Y65-84;179;1;6.821202027495983e-07;10562178;1.6947262202928222e-05;0;1;Old +22525;Portugal;M;Managers;Professional, scientific and technical activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22526;Portugal;M;Managers;Administrative and support service activities   ;Y15-29;506;1;1.9282280591692557e-06;10562178;4.7906785892076424e-05;1;0;Young +22527;Portugal;M;Managers;Administrative and support service activities   ;Y30-49;3792;1;1.445027826160043e-05;10562178;0.00035901686186314984;1;0;Young +22528;Portugal;M;Managers;Administrative and support service activities   ;Y50-64;1369;1;5.216885796448045e-06;10562178;0.00012961341874753482;0;1;Old +22529;Portugal;M;Managers;Administrative and support service activities   ;Y65-84;140;1;5.335018345527585e-07;10562178;1.3254841946424308e-05;0;1;Old +22530;Portugal;M;Managers;Administrative and support service activities   ;Y_GE85;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +22531;Portugal;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;268;1;1.0212749404295662e-06;10562178;2.5373554583155104e-05;1;0;Young +22532;Portugal;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;3233;1;1.2320081650779058e-05;10562178;0.00030609217151992706;1;0;Young +22533;Portugal;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2023;1;7.70910150928736e-06;10562178;0.00019153246612583125;0;1;Old +22534;Portugal;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;176;1;6.706880205806106e-07;10562178;1.6663229875504844e-05;0;1;Old +22535;Portugal;M;Managers;Education   ;Y15-29;125;1;4.7634092370782007e-07;10562178;1.1834680309307417e-05;1;0;Young +22536;Portugal;M;Managers;Education   ;Y30-49;1222;1;4.656708870167649e-06;10562178;0.00011569583470378932;1;0;Young +22537;Portugal;M;Managers;Education   ;Y50-64;666;1;2.5379444415152654e-06;10562178;6.305517668798992e-05;0;1;Old +22538;Portugal;M;Managers;Education   ;Y65-84;92;1;3.5058691984895557e-07;10562178;8.71032470765026e-06;0;1;Old +22539;Portugal;M;Managers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22540;Portugal;M;Managers;Human health and social work activities   ;Y15-29;224;1;8.536029352844136e-07;10562178;2.1207747114278892e-05;1;0;Young +22541;Portugal;M;Managers;Human health and social work activities   ;Y30-49;1674;1;6.379157650295127e-06;10562178;0.00015849003870224492;1;0;Young +22542;Portugal;M;Managers;Human health and social work activities   ;Y50-64;835;1;3.181957370368238e-06;10562178;7.905566446617355e-05;0;1;Old +22543;Portugal;M;Managers;Human health and social work activities   ;Y65-84;134;1;5.106374702147831e-07;10562178;1.2686777291577552e-05;0;1;Old +22544;Portugal;M;Managers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22545;Portugal;M;Managers;Arts, entertainment and recreation   ;Y15-29;220;1;8.383600257257633e-07;10562178;2.0829037344381056e-05;1;0;Young +22546;Portugal;M;Managers;Arts, entertainment and recreation   ;Y30-49;1132;1;4.313743405098018e-06;10562178;0.00010717486488108797;1;0;Young +22547;Portugal;M;Managers;Arts, entertainment and recreation   ;Y50-64;414;1;1.5776411393203e-06;10562178;3.919646118442617e-05;0;1;Old +22548;Portugal;M;Managers;Arts, entertainment and recreation   ;Y65-84;40;1;1.5242909558650242e-07;10562178;3.7870976989783735e-06;0;1;Old +22549;Portugal;M;Managers;Other service activities   ;Y15-29;112;1;4.268014676422068e-07;10562178;1.0603873557139446e-05;1;0;Young +22550;Portugal;M;Managers;Other service activities   ;Y30-49;1008;1;3.841213208779861e-06;10562178;9.543486201425501e-05;1;0;Young +22551;Portugal;M;Managers;Other service activities   ;Y50-64;607;1;2.313111525525174e-06;10562178;5.746920758199682e-05;0;1;Old +22552;Portugal;M;Managers;Other service activities   ;Y65-84;99;1;3.772620115765935e-07;10562178;9.373066804971475e-06;0;1;Old +22553;Portugal;M;Managers;Other service activities   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22554;Portugal;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;1;0;Young +22555;Portugal;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;31;1;1.1813254907953938e-07;10562178;2.9350007167082397e-06;1;0;Young +22556;Portugal;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;10562178;1.8935488494891867e-06;0;1;Old +22557;Portugal;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22558;Portugal;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;280;1;1.067003669105517e-06;10562178;2.6509683892848615e-05;1;0;Young +22559;Portugal;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;1092;1;4.161314309511516e-06;10562178;0.00010338776718210959;1;0;Young +22560;Portugal;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;369;1;1.4061584067854849e-06;10562178;3.4935976273075494e-05;0;1;Old +22561;Portugal;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;42;1;1.6005055036582754e-07;10562178;3.976452583927292e-06;0;1;Old +22562;Portugal;M;Professionals;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22563;Portugal;M;Professionals;Mining and quarrying   ;Y15-29;61;1;2.3245437076941619e-07;10562178;5.77532399094202e-06;1;0;Young +22564;Portugal;M;Professionals;Mining and quarrying   ;Y30-49;204;1;7.773883874911624e-07;10562178;1.9314198264789706e-05;1;0;Young +22565;Portugal;M;Professionals;Mining and quarrying   ;Y50-64;55;1;2.0959000643144082e-07;10562178;5.207259336095264e-06;0;1;Old +22566;Portugal;M;Professionals;Mining and quarrying   ;Y65-84;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;0;1;Old +22567;Portugal;M;Professionals;Manufacturing   ;Y15-29;4213;1;1.6054594492648366e-05;10562178;0.0003988760651448972;1;0;Young +22568;Portugal;M;Professionals;Manufacturing   ;Y30-49;12370;1;4.7138697810125873e-05;10562178;0.0011711599634090621;1;0;Young +22569;Portugal;M;Professionals;Manufacturing   ;Y50-64;3045;1;1.1603664901522497e-05;10562178;0.00028829281233472867;0;1;Old +22570;Portugal;M;Professionals;Manufacturing   ;Y65-84;277;1;1.0555714869365292e-06;10562178;2.6225651565425237e-05;0;1;Old +22571;Portugal;M;Professionals;Manufacturing   ;Y_GE85;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;0;1;Old +22572;Portugal;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;417;1;1.5890733214892878e-06;10562178;3.9480493511849545e-05;1;0;Young +22573;Portugal;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1165;1;4.439497408956883e-06;10562178;0.00011029922048274513;1;0;Young +22574;Portugal;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;745;1;2.8389919052986075e-06;10562178;7.05346946434722e-05;0;1;Old +22575;Portugal;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;0;1;Old +22576;Portugal;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;204;1;7.773883874911624e-07;10562178;1.9314198264789706e-05;1;0;Young +22577;Portugal;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;786;1;2.9952317282747724e-06;10562178;7.441646978492505e-05;1;0;Young +22578;Portugal;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;239;1;9.10763846129352e-07;10562178;2.262790875139578e-05;0;1;Old +22579;Portugal;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +22580;Portugal;M;Professionals;Construction   ;Y15-29;3033;1;1.1557936172846546e-05;10562178;0.0002871566830250352;1;0;Young +22581;Portugal;M;Professionals;Construction   ;Y30-49;8396;1;3.199486716360686e-05;10562178;0.0007949118070155606;1;0;Young +22582;Portugal;M;Professionals;Construction   ;Y50-64;2186;1;8.330250073802357e-06;10562178;0.0002069648892491681;0;1;Old +22583;Portugal;M;Professionals;Construction   ;Y65-84;209;1;7.964420244394752e-07;10562178;1.9787585477162003e-05;0;1;Old +22584;Portugal;M;Professionals;Construction   ;Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22585;Portugal;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2602;1;9.915512667901982e-06;10562178;0.0002463507053185432;1;0;Young +22586;Portugal;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7307;1;2.784498503626433e-05;10562178;0.0006918080721608744;1;0;Young +22587;Portugal;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1589;1;6.055245822173809e-06;10562178;0.0001504424560919159;0;1;Old +22588;Portugal;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;180;1;6.859309301392609e-07;10562178;1.704193964540268e-05;0;1;Old +22589;Portugal;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22590;Portugal;M;Professionals;Transportation and storage   ;Y15-29;340;1;1.2956473124852705e-06;10562178;3.219033044131618e-05;1;0;Young +22591;Portugal;M;Professionals;Transportation and storage   ;Y30-49;1545;1;5.887573817028656e-06;10562178;0.00014627664862303967;1;0;Young +22592;Portugal;M;Professionals;Transportation and storage   ;Y50-64;724;1;2.7589666301156937e-06;10562178;6.854646835150857e-05;0;1;Old +22593;Portugal;M;Professionals;Transportation and storage   ;Y65-84;58;1;2.2102218860042852e-07;10562178;5.491291663518642e-06;0;1;Old +22594;Portugal;M;Professionals;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22595;Portugal;M;Professionals;Accommodation and food service activities   ;Y15-29;363;1;1.3832940424475095e-06;10562178;3.436791161822874e-05;1;0;Young +22596;Portugal;M;Professionals;Accommodation and food service activities   ;Y30-49;758;1;2.888531361364221e-06;10562178;7.176550139564018e-05;1;0;Young +22597;Portugal;M;Professionals;Accommodation and food service activities   ;Y50-64;214;1;8.15495661387788e-07;10562178;2.0260972689534297e-05;0;1;Old +22598;Portugal;M;Professionals;Accommodation and food service activities   ;Y65-84;28;1;1.067003669105517e-07;10562178;2.6509683892848615e-06;0;1;Old +22599;Portugal;M;Professionals;Information and communication   ;Y15-29;7520;1;2.8656669970262456e-05;10562178;0.0007119743674079342;1;0;Young +22600;Portugal;M;Professionals;Information and communication   ;Y30-49;16534;1;6.300656666068078e-05;10562178;0.0015653968338727108;1;0;Young +22601;Portugal;M;Professionals;Information and communication   ;Y50-64;2386;1;9.092395551734869e-06;10562178;0.00022590037774405998;0;1;Old +22602;Portugal;M;Professionals;Information and communication   ;Y65-84;158;1;6.020949275666846e-07;10562178;1.4959035910964576e-05;0;1;Old +22603;Portugal;M;Professionals;Information and communication   ;Y_GE85;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22604;Portugal;M;Professionals;Financial and insurance activities   ;Y15-29;885;1;3.372493739851366e-06;10562178;8.378953658989652e-05;1;0;Young +22605;Portugal;M;Professionals;Financial and insurance activities   ;Y30-49;2903;1;1.1062541612190413e-05;10562178;0.0002748486155033555;1;0;Young +22606;Portugal;M;Professionals;Financial and insurance activities   ;Y50-64;831;1;3.1667144608095878e-06;10562178;7.86769546962757e-05;0;1;Old +22607;Portugal;M;Professionals;Financial and insurance activities   ;Y65-84;91;1;3.46776192459293e-07;10562178;8.6156472651758e-06;0;1;Old +22608;Portugal;M;Professionals;Financial and insurance activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22609;Portugal;M;Professionals;Real estate activities   ;Y15-29;108;1;4.1155855808355654e-07;10562178;1.0225163787241609e-05;1;0;Young +22610;Portugal;M;Professionals;Real estate activities   ;Y30-49;472;1;1.7986633279207285e-06;10562178;4.468775284794481e-05;1;0;Young +22611;Portugal;M;Professionals;Real estate activities   ;Y50-64;154;1;5.868520180080343e-07;10562178;1.4580326141066738e-05;0;1;Old +22612;Portugal;M;Professionals;Real estate activities   ;Y65-84;35;1;1.3337545863818962e-07;10562178;3.313710486606077e-06;0;1;Old +22613;Portugal;M;Professionals;Professional, scientific and technical activities   ;Y15-29;11697;1;4.457407827688297e-05;10562178;0.0011074420446237508;1;0;Young +22614;Portugal;M;Professionals;Professional, scientific and technical activities   ;Y30-49;28074;1;0.00010698236073738673;10562178;0.0026579745200279717;1;0;Young +22615;Portugal;M;Professionals;Professional, scientific and technical activities   ;Y50-64;8165;1;3.111458913659481e-05;10562178;0.0007730413178039605;0;1;Old +22616;Portugal;M;Professionals;Professional, scientific and technical activities   ;Y65-84;1804;1;6.874552210951259e-06;10562178;0.00017079810622392465;0;1;Old +22617;Portugal;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;32;1;1.2194327646920193e-07;10562178;3.0296781591826987e-06;0;1;Old +22618;Portugal;M;Professionals;Administrative and support service activities   ;Y15-29;789;1;3.0066639104437602e-06;10562178;7.470050211234842e-05;1;0;Young +22619;Portugal;M;Professionals;Administrative and support service activities   ;Y30-49;1713;1;6.5277760184919665e-06;10562178;0.00016218245895874885;1;0;Young +22620;Portugal;M;Professionals;Administrative and support service activities   ;Y50-64;333;1;1.2689722207576327e-06;10562178;3.152758834399496e-05;0;1;Old +22621;Portugal;M;Professionals;Administrative and support service activities   ;Y65-84;29;1;1.1051109430021426e-07;10562178;2.745645831759321e-06;0;1;Old +22622;Portugal;M;Professionals;Administrative and support service activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22623;Portugal;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;1633;1;6.222917827318961e-06;10562178;0.0001546082635607921;1;0;Young +22624;Portugal;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;9650;1;3.677351931024371e-05;10562178;0.0009136373198785326;1;0;Young +22625;Portugal;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;4982;1;1.8985043855298877e-05;10562178;0.0004716830184077564;0;1;Old +22626;Portugal;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;181;1;6.897416575289234e-07;10562178;1.7136617087877142e-05;0;1;Old +22627;Portugal;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22628;Portugal;M;Professionals;Education   ;Y15-29;8265;1;3.149566187556106e-05;10562178;0.0007825090620514065;1;0;Young +22629;Portugal;M;Professionals;Education   ;Y30-49;41101;1;0.0001566247064425209;10562178;0.0038913375631427533;1;0;Young +22630;Portugal;M;Professionals;Education   ;Y50-64;18222;1;6.943907449443118e-05;10562178;0.001725212356769598;0;1;Old +22631;Portugal;M;Professionals;Education   ;Y65-84;914;1;3.4830048341515803e-06;10562178;8.653518242165584e-05;0;1;Old +22632;Portugal;M;Professionals;Education   ;Y_GE85;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +22633;Portugal;M;Professionals;Human health and social work activities   ;Y15-29;7305;1;2.7837363581485006e-05;10562178;0.0006916187172759255;1;0;Young +22634;Portugal;M;Professionals;Human health and social work activities   ;Y30-49;14549;1;5.5442272792200594e-05;10562178;0.001377462110560909;1;0;Young +22635;Portugal;M;Professionals;Human health and social work activities   ;Y50-64;9805;1;3.7364182055641406e-05;10562178;0.0009283123234620738;0;1;Old +22636;Portugal;M;Professionals;Human health and social work activities   ;Y65-84;1742;1;6.63828711279218e-06;10562178;0.00016492810479050817;0;1;Old +22637;Portugal;M;Professionals;Human health and social work activities   ;Y_GE85;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;0;1;Old +22638;Portugal;M;Professionals;Arts, entertainment and recreation   ;Y15-29;1873;1;7.137492400837976e-06;10562178;0.00017733084975466234;1;0;Young +22639;Portugal;M;Professionals;Arts, entertainment and recreation   ;Y30-49;4436;1;1.6904386700543117e-05;10562178;0.00041998913481670165;1;0;Young +22640;Portugal;M;Professionals;Arts, entertainment and recreation   ;Y50-64;1322;1;5.037781609133905e-06;10562178;0.00012516357895123525;0;1;Old +22641;Portugal;M;Professionals;Arts, entertainment and recreation   ;Y65-84;194;1;7.392811135945367e-07;10562178;1.836742384004511e-05;0;1;Old +22642;Portugal;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +22643;Portugal;M;Professionals;Other service activities   ;Y15-29;562;1;2.141628792990359e-06;10562178;5.320872267064615e-05;1;0;Young +22644;Portugal;M;Professionals;Other service activities   ;Y30-49;2211;1;8.425518258543922e-06;10562178;0.0002093318253110296;1;0;Young +22645;Portugal;M;Professionals;Other service activities   ;Y50-64;899;1;3.425843923306642e-06;10562178;8.511502078453894e-05;0;1;Old +22646;Portugal;M;Professionals;Other service activities   ;Y65-84;627;1;2.3893260733184253e-06;10562178;5.9362756431486e-05;0;1;Old +22647;Portugal;M;Professionals;Other service activities   ;Y_GE85;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;0;1;Old +22648;Portugal;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;1;0;Young +22649;Portugal;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22650;Portugal;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;1;0;Young +22651;Portugal;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;80;1;3.0485819117300483e-07;10562178;7.574195397956747e-06;1;0;Young +22652;Portugal;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;0;1;Old +22653;Portugal;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22654;Portugal;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;285;1;1.0860573060538298e-06;10562178;2.6983071105220913e-05;1;0;Young +22655;Portugal;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;870;1;3.3153328290064275e-06;10562178;8.236937495277962e-05;1;0;Young +22656;Portugal;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;495;1;1.8863100578829675e-06;10562178;4.6865334024857374e-05;0;1;Old +22657;Portugal;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;36;1;1.3718618602785217e-07;10562178;3.4083879290805363e-06;0;1;Old +22658;Portugal;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22659;Portugal;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;100;1;3.8107273896625605e-07;10562178;9.467744247445933e-06;1;0;Young +22660;Portugal;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;426;1;1.6233698679962508e-06;10562178;4.033259049411968e-05;1;0;Young +22661;Portugal;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;243;1;9.260067556880022e-07;10562178;2.300661852129362e-05;0;1;Old +22662;Portugal;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22663;Portugal;M;Technicians and associate professionals;Manufacturing   ;Y15-29;7217;1;2.75020195711947e-05;10562178;0.0006832871023381731;1;0;Young +22664;Portugal;M;Technicians and associate professionals;Manufacturing   ;Y30-49;26539;1;0.0001011328941942547;10562178;0.0025126446458296763;1;0;Young +22665;Portugal;M;Technicians and associate professionals;Manufacturing   ;Y50-64;11974;1;4.56296497638195e-05;10562178;0.001133667696189176;0;1;Old +22666;Portugal;M;Technicians and associate professionals;Manufacturing   ;Y65-84;586;1;2.2330862503422603e-06;10562178;5.5480981290033176e-05;0;1;Old +22667;Portugal;M;Technicians and associate professionals;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22668;Portugal;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;293;1;1.1165431251711302e-06;10562178;2.7740490645016588e-05;1;0;Young +22669;Portugal;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1086;1;4.13844994517354e-06;10562178;0.00010281970252726284;1;0;Young +22670;Portugal;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1093;1;4.165125036901179e-06;10562178;0.00010348244462458405;0;1;Old +22671;Portugal;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;16;1;6.097163823460096e-08;10562178;1.5148390795913494e-06;0;1;Old +22672;Portugal;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;620;1;2.3626509815907875e-06;10562178;5.870001433416479e-05;1;0;Young +22673;Portugal;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2506;1;9.549682838494376e-06;10562178;0.00023726167084099512;1;0;Young +22674;Portugal;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1033;1;3.936481393521425e-06;10562178;9.78017980761165e-05;0;1;Old +22675;Portugal;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;35;1;1.3337545863818962e-07;10562178;3.313710486606077e-06;0;1;Old +22676;Portugal;M;Technicians and associate professionals;Construction   ;Y15-29;3028;1;1.1538882535898233e-05;10562178;0.00028668329581266286;1;0;Young +22677;Portugal;M;Technicians and associate professionals;Construction   ;Y30-49;15633;1;5.9573101282594806e-05;10562178;0.0014800924582032229;1;0;Young +22678;Portugal;M;Technicians and associate professionals;Construction   ;Y50-64;7429;1;2.830989377780316e-05;10562178;0.0007033587201427584;0;1;Old +22679;Portugal;M;Technicians and associate professionals;Construction   ;Y65-84;346;1;1.3185116768232459e-06;10562178;3.275839509616293e-05;0;1;Old +22680;Portugal;M;Technicians and associate professionals;Construction   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22681;Portugal;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6780;1;2.5836731701912162e-05;10562178;0.0006419130599768343;1;0;Young +22682;Portugal;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;23816;1;9.075628351220354e-05;10562178;0.0022548379699717236;1;0;Young +22683;Portugal;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;8158;1;3.108791404486717e-05;10562178;0.0007723785757066393;0;1;Old +22684;Portugal;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;677;1;2.5798624428015536e-06;10562178;6.409662855520897e-05;0;1;Old +22685;Portugal;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +22686;Portugal;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;1238;1;4.71768050840225e-06;10562178;0.00011721067378338066;1;0;Young +22687;Portugal;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;6326;1;2.410666146700536e-05;10562178;0.0005989295010934298;1;0;Young +22688;Portugal;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;2812;1;1.071576541973112e-05;10562178;0.00026623296823817966;0;1;Old +22689;Portugal;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;178;1;6.783094753599357e-07;10562178;1.6852584760453764e-05;0;1;Old +22690;Portugal;M;Technicians and associate professionals;Transportation and storage   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22691;Portugal;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;730;1;2.7818309944536693e-06;10562178;6.911453300635532e-05;1;0;Young +22692;Portugal;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;1968;1;7.4995115028559195e-06;10562178;0.00018632520678973599;1;0;Young +22693;Portugal;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;657;1;2.5036478950083024e-06;10562178;6.220307970571978e-05;0;1;Old +22694;Portugal;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;49;1;1.8672564209346548e-07;10562178;4.639194681248508e-06;0;1;Old +22695;Portugal;M;Technicians and associate professionals;Information and communication   ;Y15-29;7464;1;2.844326923644135e-05;10562178;0.0007066724306293645;1;0;Young +22696;Portugal;M;Technicians and associate professionals;Information and communication   ;Y30-49;14356;1;5.470680240599572e-05;10562178;0.0013591893641633384;1;0;Young +22697;Portugal;M;Technicians and associate professionals;Information and communication   ;Y50-64;2930;1;1.1165431251711302e-05;10562178;0.0002774049064501659;0;1;Old +22698;Portugal;M;Technicians and associate professionals;Information and communication   ;Y65-84;59;1;2.2483291599009106e-07;10562178;5.585969105993101e-06;0;1;Old +22699;Portugal;M;Technicians and associate professionals;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22700;Portugal;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;4326;1;1.6485206687680238e-05;10562178;0.0004095746161445111;1;0;Young +22701;Portugal;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;25594;1;9.753175681102357e-05;10562178;0.0024231744626913125;1;0;Young +22702;Portugal;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;10772;1;4.10491554414451e-05;10562178;0.0010198654103348761;0;1;Old +22703;Portugal;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;585;1;2.2292755229525977e-06;10562178;5.5386303847558714e-05;0;1;Old +22704;Portugal;M;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;13;1;4.953945606561329e-08;10562178;1.2308067521679714e-06;0;1;Old +22705;Portugal;M;Technicians and associate professionals;Real estate activities   ;Y15-29;796;1;3.033339002171398e-06;10562178;7.536324420966963e-05;1;0;Young +22706;Portugal;M;Technicians and associate professionals;Real estate activities   ;Y30-49;3632;1;1.384056187925442e-05;10562178;0.0003438684710672363;1;0;Young +22707;Portugal;M;Technicians and associate professionals;Real estate activities   ;Y50-64;1749;1;6.6649622045198184e-06;10562178;0.0001655908468878294;0;1;Old +22708;Portugal;M;Technicians and associate professionals;Real estate activities   ;Y65-84;252;1;9.603033021949652e-07;10562178;2.3858715503563754e-05;0;1;Old +22709;Portugal;M;Technicians and associate professionals;Real estate activities   ;Y_GE85;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;0;1;Old +22710;Portugal;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;4292;1;1.635564195643171e-05;10562178;0.0004063555831003795;1;0;Young +22711;Portugal;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;14680;1;5.594147808024639e-05;10562178;0.001389864855525063;1;0;Young +22712;Portugal;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;6303;1;2.401901473704312e-05;10562178;0.0005967519199165172;0;1;Old +22713;Portugal;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;1255;1;4.782462874026513e-06;10562178;0.00011882019030544647;0;1;Old +22714;Portugal;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +22715;Portugal;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;1606;1;6.1200281877980725e-06;10562178;0.0001520519726139817;1;0;Young +22716;Portugal;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;4331;1;1.650426032462855e-05;10562178;0.0004100480033568834;1;0;Young +22717;Portugal;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;988;1;3.7649986609866098e-06;10562178;9.354131316476583e-05;0;1;Old +22718;Portugal;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;78;1;2.9723673639367974e-07;10562178;7.384840513007828e-06;0;1;Old +22719;Portugal;M;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22720;Portugal;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;1498;1;5.708469629714516e-06;10562178;0.0001418268088267401;1;0;Young +22721;Portugal;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;12690;1;4.835813057481789e-05;10562178;0.001201456745000889;1;0;Young +22722;Portugal;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;7355;1;2.8027899950968132e-05;10562178;0.0006963525893996485;0;1;Old +22723;Portugal;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;161;1;6.135271097356723e-07;10562178;1.5243068238387954e-05;0;1;Old +22724;Portugal;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22725;Portugal;M;Technicians and associate professionals;Education   ;Y15-29;958;1;3.650676839296733e-06;10562178;9.070098989053205e-05;1;0;Young +22726;Portugal;M;Technicians and associate professionals;Education   ;Y30-49;2336;1;8.901859182251742e-06;10562178;0.000221166505620337;1;0;Young +22727;Portugal;M;Technicians and associate professionals;Education   ;Y50-64;714;1;2.720859356219068e-06;10562178;6.759969392676397e-05;0;1;Old +22728;Portugal;M;Technicians and associate professionals;Education   ;Y65-84;56;1;2.134007338211034e-07;10562178;5.301936778569723e-06;0;1;Old +22729;Portugal;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;2007;1;7.648129871052758e-06;10562178;0.0001900176270462399;1;0;Young +22730;Portugal;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;4296;1;1.637088486599036e-05;10562178;0.0004067342928702773;1;0;Young +22731;Portugal;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;1692;1;6.447750743309053e-06;10562178;0.0001601942326667852;0;1;Old +22732;Portugal;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;188;1;7.164167492565614e-07;10562178;1.7799359185198355e-05;0;1;Old +22733;Portugal;M;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22734;Portugal;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;3754;1;1.4305470620793253e-05;10562178;0.0003554191190491204;1;0;Young +22735;Portugal;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;4235;1;1.6138430495220943e-05;10562178;0.0004009589688793353;1;0;Young +22736;Portugal;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;908;1;3.460140469813605e-06;10562178;8.596711776680908e-05;0;1;Old +22737;Portugal;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;69;1;2.629401898867167e-07;10562178;6.532743530737695e-06;0;1;Old +22738;Portugal;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22739;Portugal;M;Technicians and associate professionals;Other service activities   ;Y15-29;1081;1;4.119396308225228e-06;10562178;0.00010234631531489054;1;0;Young +22740;Portugal;M;Technicians and associate professionals;Other service activities   ;Y30-49;2104;1;8.017770427850027e-06;10562178;0.00019920133896626245;1;0;Young +22741;Portugal;M;Technicians and associate professionals;Other service activities   ;Y50-64;747;1;2.8466133600779327e-06;10562178;7.072404952842113e-05;0;1;Old +22742;Portugal;M;Technicians and associate professionals;Other service activities   ;Y65-84;105;1;4.0012637591456885e-07;10562178;9.94113145981823e-06;0;1;Old +22743;Portugal;M;Technicians and associate professionals;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22744;Portugal;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;24;1;9.145745735190145e-08;10562178;2.2722586193870243e-06;1;0;Young +22745;Portugal;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;34;1;1.2956473124852705e-07;10562178;3.2190330441316175e-06;1;0;Young +22746;Portugal;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22747;Portugal;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22748;Portugal;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;1;0;Young +22749;Portugal;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;46;1;1.7529345992447778e-07;10562178;4.35516235382513e-06;1;0;Young +22750;Portugal;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;36;1;1.3718618602785217e-07;10562178;3.4083879290805363e-06;0;1;Old +22751;Portugal;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;212;1;8.078742066084628e-07;10562178;2.007161780458538e-05;1;0;Young +22752;Portugal;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;564;1;2.149250247769684e-06;10562178;5.339807755559507e-05;1;0;Young +22753;Portugal;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;374;1;1.4252120437337977e-06;10562178;3.5409363485447795e-05;0;1;Old +22754;Portugal;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;14;1;5.335018345527585e-08;10562178;1.3254841946424308e-06;0;1;Old +22755;Portugal;M;Clerical support workers;Mining and quarrying   ;Y15-29;73;1;2.7818309944536694e-07;10562178;6.911453300635532e-06;1;0;Young +22756;Portugal;M;Clerical support workers;Mining and quarrying   ;Y30-49;215;1;8.193063887774505e-07;10562178;2.035565013200876e-05;1;0;Young +22757;Portugal;M;Clerical support workers;Mining and quarrying   ;Y50-64;67;1;2.5531873510739155e-07;10562178;6.343388645788776e-06;0;1;Old +22758;Portugal;M;Clerical support workers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22759;Portugal;M;Clerical support workers;Manufacturing   ;Y15-29;4739;1;1.8059037099610874e-05;10562178;0.0004486763998864628;1;0;Young +22760;Portugal;M;Clerical support workers;Manufacturing   ;Y30-49;11330;1;4.317554132487681e-05;10562178;0.0010726954232356243;1;0;Young +22761;Portugal;M;Clerical support workers;Manufacturing   ;Y50-64;4951;1;1.8866911306219338e-05;10562178;0.0004687480176910482;0;1;Old +22762;Portugal;M;Clerical support workers;Manufacturing   ;Y65-84;169;1;6.440129288529728e-07;10562178;1.6000487778183627e-05;0;1;Old +22763;Portugal;M;Clerical support workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22764;Portugal;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;230;1;8.76467299622389e-07;10562178;2.1775811769125648e-05;1;0;Young +22765;Portugal;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;462;1;1.760556054024103e-06;10562178;4.374097842320021e-05;1;0;Young +22766;Portugal;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;558;1;2.1263858834317088e-06;10562178;5.2830012900748314e-05;0;1;Old +22767;Portugal;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22768;Portugal;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;246;1;9.374389378569899e-07;10562178;2.3290650848716998e-05;1;0;Young +22769;Portugal;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;989;1;3.7688093883762724e-06;10562178;9.363599060724029e-05;1;0;Young +22770;Portugal;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;481;1;1.8329598744276917e-06;10562178;4.553984983021494e-05;0;1;Old +22771;Portugal;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;14;1;5.335018345527585e-08;10562178;1.3254841946424308e-06;0;1;Old +22772;Portugal;M;Clerical support workers;Construction   ;Y15-29;1218;1;4.641465960608999e-06;10562178;0.00011531712493389147;1;0;Young +22773;Portugal;M;Clerical support workers;Construction   ;Y30-49;3480;1;1.326133131602571e-05;10562178;0.0003294774998111185;1;0;Young +22774;Portugal;M;Clerical support workers;Construction   ;Y50-64;1381;1;5.262614525123996e-06;10562178;0.00013074954805722833;0;1;Old +22775;Portugal;M;Clerical support workers;Construction   ;Y65-84;53;1;2.019685516521157e-07;10562178;5.017904451146345e-06;0;1;Old +22776;Portugal;M;Clerical support workers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22777;Portugal;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9392;1;3.579035164371077e-05;10562178;0.0008892105397201221;1;0;Young +22778;Portugal;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;17241;1;6.570075092517221e-05;10562178;0.0016323337857021534;1;0;Young +22779;Portugal;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5690;1;2.1683038847179968e-05;10562178;0.0005387146476796736;0;1;Old +22780;Portugal;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;299;1;1.1394074895091056e-06;10562178;2.8308555299863343e-05;0;1;Old +22781;Portugal;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22782;Portugal;M;Clerical support workers;Transportation and storage   ;Y15-29;3969;1;1.5124777009570703e-05;10562178;0.0003757747691811291;1;0;Young +22783;Portugal;M;Clerical support workers;Transportation and storage   ;Y30-49;11872;1;4.524095557007392e-05;10562178;0.0011240105970567813;1;0;Young +22784;Portugal;M;Clerical support workers;Transportation and storage   ;Y50-64;4259;1;1.6229887952572846e-05;10562178;0.0004032312274987223;0;1;Old +22785;Portugal;M;Clerical support workers;Transportation and storage   ;Y65-84;79;1;3.010474637833423e-07;10562178;7.479517955482288e-06;0;1;Old +22786;Portugal;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;2148;1;8.18544243299518e-06;10562178;0.00020336714643513865;1;0;Young +22787;Portugal;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;3131;1;1.1931387457033478e-05;10562178;0.00029643507238753217;1;0;Young +22788;Portugal;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;1089;1;4.149882127342528e-06;10562178;0.00010310373485468622;0;1;Old +22789;Portugal;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;109;1;4.153692854732191e-07;10562178;1.0319841229716068e-05;0;1;Old +22790;Portugal;M;Clerical support workers;Accommodation and food service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22791;Portugal;M;Clerical support workers;Information and communication   ;Y15-29;2940;1;1.1203538525607928e-05;10562178;0.00027835168087491047;1;0;Young +22792;Portugal;M;Clerical support workers;Information and communication   ;Y30-49;2534;1;9.656383205404929e-06;10562178;0.00023991263923027996;1;0;Young +22793;Portugal;M;Clerical support workers;Information and communication   ;Y50-64;518;1;1.9739567878452064e-06;10562178;4.9042915201769935e-05;0;1;Old +22794;Portugal;M;Clerical support workers;Information and communication   ;Y65-84;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +22795;Portugal;M;Clerical support workers;Financial and insurance activities   ;Y15-29;1030;1;3.925049211352437e-06;10562178;9.751776574869311e-05;1;0;Young +22796;Portugal;M;Clerical support workers;Financial and insurance activities   ;Y30-49;1682;1;6.409643469412427e-06;10562178;0.00015924745824204061;1;0;Young +22797;Portugal;M;Clerical support workers;Financial and insurance activities   ;Y50-64;568;1;2.1644931573283344e-06;10562178;5.37767873254929e-05;0;1;Old +22798;Portugal;M;Clerical support workers;Financial and insurance activities   ;Y65-84;34;1;1.2956473124852705e-07;10562178;3.2190330441316175e-06;0;1;Old +22799;Portugal;M;Clerical support workers;Real estate activities   ;Y15-29;196;1;7.469025683738619e-07;10562178;1.855677872499403e-05;1;0;Young +22800;Portugal;M;Clerical support workers;Real estate activities   ;Y30-49;456;1;1.7376916896861275e-06;10562178;4.3172913768353456e-05;1;0;Young +22801;Portugal;M;Clerical support workers;Real estate activities   ;Y50-64;207;1;7.8882056966015e-07;10562178;1.9598230592213084e-05;0;1;Old +22802;Portugal;M;Clerical support workers;Real estate activities   ;Y65-84;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;0;1;Old +22803;Portugal;M;Clerical support workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22804;Portugal;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;1309;1;4.988242153068292e-06;10562178;0.00012393277219906727;1;0;Young +22805;Portugal;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2553;1;9.728787025808516e-06;10562178;0.00024171151063729469;1;0;Young +22806;Portugal;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;891;1;3.3953581041893413e-06;10562178;8.435760124474327e-05;0;1;Old +22807;Portugal;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;58;1;2.2102218860042852e-07;10562178;5.491291663518642e-06;0;1;Old +22808;Portugal;M;Clerical support workers;Administrative and support service activities   ;Y15-29;3334;1;1.2704965117134977e-05;10562178;0.00031565459320984747;1;0;Young +22809;Portugal;M;Clerical support workers;Administrative and support service activities   ;Y30-49;4420;1;1.684341506230852e-05;10562178;0.00041847429573711026;1;0;Young +22810;Portugal;M;Clerical support workers;Administrative and support service activities   ;Y50-64;1080;1;4.115585580835566e-06;10562178;0.00010225163787241608;0;1;Old +22811;Portugal;M;Clerical support workers;Administrative and support service activities   ;Y65-84;65;1;2.4769728032806646e-07;10562178;6.154033760839857e-06;0;1;Old +22812;Portugal;M;Clerical support workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22813;Portugal;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;2779;1;1.0590011415872256e-05;10562178;0.00026310861263652253;1;0;Young +22814;Portugal;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;11900;1;4.534765593698447e-05;10562178;0.0011266615654460662;1;0;Young +22815;Portugal;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;7923;1;3.0192393108296466e-05;10562178;0.0007501293767251413;0;1;Old +22816;Portugal;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;213;1;8.116849339981254e-07;10562178;2.016629524705984e-05;0;1;Old +22817;Portugal;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22818;Portugal;M;Clerical support workers;Education   ;Y15-29;505;1;1.924417331779593e-06;10562178;4.781210844960197e-05;1;0;Young +22819;Portugal;M;Clerical support workers;Education   ;Y30-49;2095;1;7.983473881343064e-06;10562178;0.00019834924198399231;1;0;Young +22820;Portugal;M;Clerical support workers;Education   ;Y50-64;1230;1;4.68719468928495e-06;10562178;0.00011645325424358498;0;1;Old +22821;Portugal;M;Clerical support workers;Education   ;Y65-84;41;1;1.56239822976165e-07;10562178;3.881775141452833e-06;0;1;Old +22822;Portugal;M;Clerical support workers;Human health and social work activities   ;Y15-29;1142;1;4.351850678994644e-06;10562178;0.00010812163930583256;1;0;Young +22823;Portugal;M;Clerical support workers;Human health and social work activities   ;Y30-49;3548;1;1.3520460778522765e-05;10562178;0.0003359155658993817;1;0;Young +22824;Portugal;M;Clerical support workers;Human health and social work activities   ;Y50-64;1815;1;6.9164702122375476e-06;10562178;0.0001718395580911437;0;1;Old +22825;Portugal;M;Clerical support workers;Human health and social work activities   ;Y65-84;79;1;3.010474637833423e-07;10562178;7.479517955482288e-06;0;1;Old +22826;Portugal;M;Clerical support workers;Human health and social work activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22827;Portugal;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;581;1;2.2140326133939478e-06;10562178;5.5007594077660875e-05;1;0;Young +22828;Portugal;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;1483;1;5.651308718869578e-06;10562178;0.0001404066471896232;1;0;Young +22829;Portugal;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;712;1;2.713237901439743e-06;10562178;6.741033904181506e-05;0;1;Old +22830;Portugal;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;0;1;Old +22831;Portugal;M;Clerical support workers;Other service activities   ;Y15-29;269;1;1.0250856678192288e-06;10562178;2.5468232025629562e-05;1;0;Young +22832;Portugal;M;Clerical support workers;Other service activities   ;Y30-49;812;1;3.0943106404059992e-06;10562178;7.687808328926098e-05;1;0;Young +22833;Portugal;M;Clerical support workers;Other service activities   ;Y50-64;535;1;2.03873915346947e-06;10562178;5.065243172383575e-05;0;1;Old +22834;Portugal;M;Clerical support workers;Other service activities   ;Y65-84;37;1;1.4099691341751475e-07;10562178;3.5030653715549957e-06;0;1;Old +22835;Portugal;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;1;0;Young +22836;Portugal;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +22837;Portugal;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22838;Portugal;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;1;0;Young +22839;Portugal;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;67;1;2.5531873510739155e-07;10562178;6.343388645788776e-06;1;0;Young +22840;Portugal;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;37;1;1.4099691341751475e-07;10562178;3.5030653715549957e-06;0;1;Old +22841;Portugal;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22842;Portugal;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;346;1;1.3185116768232459e-06;10562178;3.275839509616293e-05;1;0;Young +22843;Portugal;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;1163;1;4.431875954177558e-06;10562178;0.00011010986559779621;1;0;Young +22844;Portugal;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;818;1;3.1171750047439744e-06;10562178;7.744614794410775e-05;0;1;Old +22845;Portugal;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;65;1;2.4769728032806646e-07;10562178;6.154033760839857e-06;0;1;Old +22846;Portugal;M;Service and sales workers;Mining and quarrying   ;Y15-29;21;1;8.002527518291377e-08;10562178;1.988226291963646e-06;1;0;Young +22847;Portugal;M;Service and sales workers;Mining and quarrying   ;Y30-49;65;1;2.4769728032806646e-07;10562178;6.154033760839857e-06;1;0;Young +22848;Portugal;M;Service and sales workers;Mining and quarrying   ;Y50-64;45;1;1.7148273253481523e-07;10562178;4.26048491135067e-06;0;1;Old +22849;Portugal;M;Service and sales workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22850;Portugal;M;Service and sales workers;Manufacturing   ;Y15-29;2129;1;8.11303861259159e-06;10562178;0.00020156827502812392;1;0;Young +22851;Portugal;M;Service and sales workers;Manufacturing   ;Y30-49;7359;1;2.8043142860526783e-05;10562178;0.0006967312991695463;1;0;Young +22852;Portugal;M;Service and sales workers;Manufacturing   ;Y50-64;3774;1;1.4381685168586503e-05;10562178;0.00035731266789860956;0;1;Old +22853;Portugal;M;Service and sales workers;Manufacturing   ;Y65-84;317;1;1.2080005825230317e-06;10562178;3.001274926440361e-05;0;1;Old +22854;Portugal;M;Service and sales workers;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22855;Portugal;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;60;1;2.2864364337975364e-07;10562178;5.680646548467561e-06;1;0;Young +22856;Portugal;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;161;1;6.135271097356723e-07;10562178;1.5243068238387954e-05;1;0;Young +22857;Portugal;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;92;1;3.5058691984895557e-07;10562178;8.71032470765026e-06;0;1;Old +22858;Portugal;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +22859;Portugal;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;80;1;3.0485819117300483e-07;10562178;7.574195397956747e-06;1;0;Young +22860;Portugal;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;265;1;1.0098427582605786e-06;10562178;2.5089522255731726e-05;1;0;Young +22861;Portugal;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;170;1;6.478236562426352e-07;10562178;1.609516522065809e-05;0;1;Old +22862;Portugal;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22863;Portugal;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22864;Portugal;M;Service and sales workers;Construction   ;Y15-29;223;1;8.49792207894751e-07;10562178;2.1113069671804434e-05;1;0;Young +22865;Portugal;M;Service and sales workers;Construction   ;Y30-49;923;1;3.5173013806585432e-06;10562178;8.738727940392598e-05;1;0;Young +22866;Portugal;M;Service and sales workers;Construction   ;Y50-64;455;1;1.7338809622964651e-06;10562178;4.3078236325879e-05;0;1;Old +22867;Portugal;M;Service and sales workers;Construction   ;Y65-84;48;1;1.829149147038029e-07;10562178;4.544517238774049e-06;0;1;Old +22868;Portugal;M;Service and sales workers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22869;Portugal;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;29917;1;0.00011400553131653483;10562178;0.0028324650465084;1;0;Young +22870;Portugal;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;61263;1;0.00023345659207289746;10562178;0.005800224158312803;1;0;Young +22871;Portugal;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;27530;1;0.0001049093250374103;10562178;0.0026064699913218655;0;1;Old +22872;Portugal;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4051;1;1.543725665552303e-05;10562178;0.00038353831946403476;0;1;Old +22873;Portugal;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;85;1;3.239118281213176e-07;10562178;8.047582610329044e-06;0;1;Old +22874;Portugal;M;Service and sales workers;Transportation and storage   ;Y15-29;1442;1;5.495068895893413e-06;10562178;0.00013652487204817037;1;0;Young +22875;Portugal;M;Service and sales workers;Transportation and storage   ;Y30-49;4561;1;1.7380727624250937e-05;10562178;0.000431823815126009;1;0;Young +22876;Portugal;M;Service and sales workers;Transportation and storage   ;Y50-64;1587;1;6.047624367394484e-06;10562178;0.00015025310120696697;0;1;Old +22877;Portugal;M;Service and sales workers;Transportation and storage   ;Y65-84;104;1;3.963156485249063e-07;10562178;9.846454017343771e-06;0;1;Old +22878;Portugal;M;Service and sales workers;Transportation and storage   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22879;Portugal;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;26429;1;0.00010071371418139181;10562178;0.0025022301271574857;1;0;Young +22880;Portugal;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;39320;1;0.00014983780096153188;10562178;0.0037227170380957414;1;0;Young +22881;Portugal;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;17516;1;6.674870095732942e-05;10562178;0.0016583700823826297;0;1;Old +22882;Portugal;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;1271;1;4.843434512261115e-06;10562178;0.00012033502938503783;0;1;Old +22883;Portugal;M;Service and sales workers;Accommodation and food service activities   ;Y_GE85;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +22884;Portugal;M;Service and sales workers;Information and communication   ;Y15-29;1878;1;7.156546037786289e-06;10562178;0.00017780423696703464;1;0;Young +22885;Portugal;M;Service and sales workers;Information and communication   ;Y30-49;1959;1;7.465214956348956e-06;10562178;0.00018547310980746585;1;0;Young +22886;Portugal;M;Service and sales workers;Information and communication   ;Y50-64;257;1;9.79356939143278e-07;10562178;2.433210271593605e-05;0;1;Old +22887;Portugal;M;Service and sales workers;Information and communication   ;Y65-84;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +22888;Portugal;M;Service and sales workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22889;Portugal;M;Service and sales workers;Financial and insurance activities   ;Y15-29;285;1;1.0860573060538298e-06;10562178;2.6983071105220913e-05;1;0;Young +22890;Portugal;M;Service and sales workers;Financial and insurance activities   ;Y30-49;639;1;2.435054801994376e-06;10562178;6.049888574117952e-05;1;0;Young +22891;Portugal;M;Service and sales workers;Financial and insurance activities   ;Y50-64;154;1;5.868520180080343e-07;10562178;1.4580326141066738e-05;0;1;Old +22892;Portugal;M;Service and sales workers;Financial and insurance activities   ;Y65-84;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +22893;Portugal;M;Service and sales workers;Real estate activities   ;Y15-29;140;1;5.335018345527585e-07;10562178;1.3254841946424308e-05;1;0;Young +22894;Portugal;M;Service and sales workers;Real estate activities   ;Y30-49;588;1;2.2407077051215855e-06;10562178;5.567033617498209e-05;1;0;Young +22895;Portugal;M;Service and sales workers;Real estate activities   ;Y50-64;505;1;1.924417331779593e-06;10562178;4.781210844960197e-05;0;1;Old +22896;Portugal;M;Service and sales workers;Real estate activities   ;Y65-84;109;1;4.153692854732191e-07;10562178;1.0319841229716068e-05;0;1;Old +22897;Portugal;M;Service and sales workers;Real estate activities   ;Y_GE85;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +22898;Portugal;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;350;1;1.3337545863818963e-06;10562178;3.3137104866060766e-05;1;0;Young +22899;Portugal;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;813;1;3.098121367795662e-06;10562178;7.697276073173544e-05;1;0;Young +22900;Portugal;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;219;1;8.345492983361008e-07;10562178;2.0734359901906595e-05;0;1;Old +22901;Portugal;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;17;1;6.478236562426352e-08;10562178;1.6095165220658088e-06;0;1;Old +22902;Portugal;M;Service and sales workers;Administrative and support service activities   ;Y15-29;8373;1;3.190722043364462e-05;10562178;0.000792734225838648;1;0;Young +22903;Portugal;M;Service and sales workers;Administrative and support service activities   ;Y30-49;19713;1;7.512086903241806e-05;10562178;0.001866376423499017;1;0;Young +22904;Portugal;M;Service and sales workers;Administrative and support service activities   ;Y50-64;6517;1;2.4834510398430907e-05;10562178;0.0006170128926060515;0;1;Old +22905;Portugal;M;Service and sales workers;Administrative and support service activities   ;Y65-84;336;1;1.2804044029266203e-06;10562178;3.181162067141834e-05;0;1;Old +22906;Portugal;M;Service and sales workers;Administrative and support service activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22907;Portugal;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;10217;1;3.8934201740182384e-05;10562178;0.0009673194297615511;1;0;Young +22908;Portugal;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;35610;1;0.0001357000023458838;10562178;0.003371463726515497;1;0;Young +22909;Portugal;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;9518;1;3.627050329480825e-05;10562178;0.000901139897471904;0;1;Old +22910;Portugal;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;115;1;4.382336498111945e-07;10562178;1.0887905884562824e-05;0;1;Old +22911;Portugal;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22912;Portugal;M;Service and sales workers;Education   ;Y15-29;723;1;2.755155902726031e-06;10562178;6.84517909090341e-05;1;0;Young +22913;Portugal;M;Service and sales workers;Education   ;Y30-49;3894;1;1.4838972455346012e-05;10562178;0.00036867396099554467;1;0;Young +22914;Portugal;M;Service and sales workers;Education   ;Y50-64;2885;1;1.0993948519176488e-05;10562178;0.0002731444215388152;0;1;Old +22915;Portugal;M;Service and sales workers;Education   ;Y65-84;203;1;7.735776601014998e-07;10562178;1.9219520822315244e-05;0;1;Old +22916;Portugal;M;Service and sales workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22917;Portugal;M;Service and sales workers;Human health and social work activities   ;Y15-29;2339;1;8.913291364420728e-06;10562178;0.00022145053794776038;1;0;Young +22918;Portugal;M;Service and sales workers;Human health and social work activities   ;Y30-49;5571;1;2.1229562287810124e-05;10562178;0.000527448032025213;1;0;Young +22919;Portugal;M;Service and sales workers;Human health and social work activities   ;Y50-64;2379;1;9.065720460007232e-06;10562178;0.00022523763564673876;0;1;Old +22920;Portugal;M;Service and sales workers;Human health and social work activities   ;Y65-84;118;1;4.496658319801821e-07;10562178;1.1171938211986202e-05;0;1;Old +22921;Portugal;M;Service and sales workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22922;Portugal;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;835;1;3.181957370368238e-06;10562178;7.905566446617355e-05;1;0;Young +22923;Portugal;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;1392;1;5.304532526410284e-06;10562178;0.0001317909999244474;1;0;Young +22924;Portugal;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;555;1;2.114953701262721e-06;10562178;5.2545980573324937e-05;0;1;Old +22925;Portugal;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;54;1;2.0577927904177827e-07;10562178;5.112581893620804e-06;0;1;Old +22926;Portugal;M;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22927;Portugal;M;Service and sales workers;Other service activities   ;Y15-29;1188;1;4.527144138919122e-06;10562178;0.0001124768016596577;1;0;Young +22928;Portugal;M;Service and sales workers;Other service activities   ;Y30-49;3547;1;1.3516650051133103e-05;10562178;0.0003358208884569073;1;0;Young +22929;Portugal;M;Service and sales workers;Other service activities   ;Y50-64;1803;1;6.870741483561596e-06;10562178;0.0001707034287814502;0;1;Old +22930;Portugal;M;Service and sales workers;Other service activities   ;Y65-84;638;1;2.4312440746047135e-06;10562178;6.040420829870506e-05;0;1;Old +22931;Portugal;M;Service and sales workers;Other service activities   ;Y_GE85;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +22932;Portugal;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;34;1;1.2956473124852705e-07;10562178;3.2190330441316175e-06;1;0;Young +22933;Portugal;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;143;1;5.449340167217462e-07;10562178;1.3538874273847685e-05;1;0;Young +22934;Portugal;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;130;1;4.953945606561329e-07;10562178;1.2308067521679714e-05;0;1;Old +22935;Portugal;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;36;1;1.3718618602785217e-07;10562178;3.4083879290805363e-06;0;1;Old +22936;Portugal;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22937;Portugal;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;1;0;Young +22938;Portugal;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;26;1;9.907891213122657e-08;10562178;2.4616135043359427e-06;1;0;Young +22939;Portugal;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22940;Portugal;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22941;Portugal;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;6467;1;2.464397402894778e-05;10562178;0.0006122790204823286;1;0;Young +22942;Portugal;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;25010;1;9.530629201546064e-05;10562178;0.002367882836286228;1;0;Young +22943;Portugal;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;21472;1;8.18239385108345e-05;10562178;0.002032914044811591;0;1;Old +22944;Portugal;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;2990;1;1.1394074895091056e-05;10562178;0.0002830855529986334;0;1;Old +22945;Portugal;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;46;1;1.7529345992447778e-07;10562178;4.35516235382513e-06;0;1;Old +22946;Portugal;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;1;0;Young +22947;Portugal;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;28;1;1.067003669105517e-07;10562178;2.6509683892848615e-06;1;0;Young +22948;Portugal;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;18;1;6.859309301392609e-08;10562178;1.7041939645402682e-06;0;1;Old +22949;Portugal;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22950;Portugal;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;486;1;1.8520135113760045e-06;10562178;4.601323704258724e-05;1;0;Young +22951;Portugal;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;1461;1;5.567472716297001e-06;10562178;0.0001383237434551851;1;0;Young +22952;Portugal;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;930;1;3.5439764723861814e-06;10562178;8.805002150124718e-05;0;1;Old +22953;Portugal;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;65;1;2.4769728032806646e-07;10562178;6.154033760839857e-06;0;1;Old +22954;Portugal;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22955;Portugal;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;1;0;Young +22956;Portugal;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;1;0;Young +22957;Portugal;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22958;Portugal;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22959;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;1;0;Young +22960;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;150;1;5.716091084493841e-07;10562178;1.42016163711689e-05;1;0;Young +22961;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;104;1;3.963156485249063e-07;10562178;9.846454017343771e-06;0;1;Old +22962;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +22963;Portugal;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;52;1;1.9815782426245315e-07;10562178;4.9232270086718855e-06;1;0;Young +22964;Portugal;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;177;1;6.744987479702732e-07;10562178;1.6757907317979303e-05;1;0;Young +22965;Portugal;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;97;1;3.6964055679726836e-07;10562178;9.183711920022556e-06;0;1;Old +22966;Portugal;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +22967;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;777;1;2.9609351817678095e-06;10562178;7.35643728026549e-05;1;0;Young +22968;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2393;1;9.119070643462507e-06;10562178;0.0002265631198413812;1;0;Young +22969;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1529;1;5.826602178794055e-06;10562178;0.00014476180954344834;0;1;Old +22970;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;125;1;4.7634092370782007e-07;10562178;1.1834680309307417e-05;0;1;Old +22971;Portugal;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;20;1;7.621454779325121e-08;10562178;1.8935488494891867e-06;1;0;Young +22972;Portugal;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;59;1;2.2483291599009106e-07;10562178;5.585969105993101e-06;1;0;Young +22973;Portugal;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;41;1;1.56239822976165e-07;10562178;3.881775141452833e-06;0;1;Old +22974;Portugal;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22975;Portugal;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;148;1;5.63987653670059e-07;10562178;1.4012261486219983e-05;1;0;Young +22976;Portugal;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;384;1;1.4633193176304232e-06;10562178;3.635613791019239e-05;1;0;Young +22977;Portugal;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;309;1;1.1775147634057311e-06;10562178;2.9255329724607935e-05;0;1;Old +22978;Portugal;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;21;1;8.002527518291377e-08;10562178;1.988226291963646e-06;0;1;Old +22979;Portugal;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +22980;Portugal;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22981;Portugal;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;1;0;Young +22982;Portugal;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;16;1;6.097163823460096e-08;10562178;1.5148390795913494e-06;1;0;Young +22983;Portugal;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +22984;Portugal;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22985;Portugal;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;14;1;5.335018345527585e-08;10562178;1.3254841946424308e-06;1;0;Young +22986;Portugal;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;70;1;2.6675091727637925e-07;10562178;6.627420973212154e-06;1;0;Young +22987;Portugal;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;36;1;1.3718618602785217e-07;10562178;3.4083879290805363e-06;0;1;Old +22988;Portugal;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +22989;Portugal;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;14;1;5.335018345527585e-08;10562178;1.3254841946424308e-06;1;0;Young +22990;Portugal;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;41;1;1.56239822976165e-07;10562178;3.881775141452833e-06;1;0;Young +22991;Portugal;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;18;1;6.859309301392609e-08;10562178;1.7041939645402682e-06;0;1;Old +22992;Portugal;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +22993;Portugal;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;2381;1;9.073341914786556e-06;10562178;0.00022542699053168768;1;0;Young +22994;Portugal;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;5556;1;2.1172401376965186e-05;10562178;0.0005260278703880961;1;0;Young +22995;Portugal;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;2419;1;9.218149555593735e-06;10562178;0.00022902473334571714;0;1;Old +22996;Portugal;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;140;1;5.335018345527585e-07;10562178;1.3254841946424308e-05;0;1;Old +22997;Portugal;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +22998;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;356;1;1.3566189507198715e-06;10562178;3.370516952090753e-05;1;0;Young +22999;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2043;1;7.78531605708061e-06;10562178;0.00019342601497532042;1;0;Young +23000;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;1630;1;6.211485645149974e-06;10562178;0.00015432423123336872;0;1;Old +23001;Portugal;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;61;1;2.3245437076941619e-07;10562178;5.77532399094202e-06;0;1;Old +23002;Portugal;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;78;1;2.9723673639367974e-07;10562178;7.384840513007828e-06;1;0;Young +23003;Portugal;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;187;1;7.126060218668988e-07;10562178;1.7704681742723897e-05;1;0;Young +23004;Portugal;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;155;1;5.906627453976969e-07;10562178;1.4675003583541198e-05;0;1;Old +23005;Portugal;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;0;1;Old +23006;Portugal;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23007;Portugal;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;69;1;2.629401898867167e-07;10562178;6.532743530737695e-06;1;0;Young +23008;Portugal;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;248;1;9.45060392636315e-07;10562178;2.3480005733665918e-05;1;0;Young +23009;Portugal;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;202;1;7.697669327118372e-07;10562178;1.9124843379840786e-05;0;1;Old +23010;Portugal;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;24;1;9.145745735190145e-08;10562178;2.2722586193870243e-06;0;1;Old +23011;Portugal;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;160;1;6.097163823460097e-07;10562178;1.5148390795913494e-05;1;0;Young +23012;Portugal;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;367;1;1.3985369520061597e-06;10562178;3.474662138812658e-05;1;0;Young +23013;Portugal;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;179;1;6.821202027495983e-07;10562178;1.6947262202928222e-05;0;1;Old +23014;Portugal;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;18;1;6.859309301392609e-08;10562178;1.7041939645402682e-06;0;1;Old +23015;Portugal;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23016;Portugal;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;1;0;Young +23017;Portugal;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;141;1;5.37312561942421e-07;10562178;1.3349519388898767e-05;1;0;Young +23018;Portugal;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;84;1;3.201011007316551e-07;10562178;7.952905167854585e-06;0;1;Old +23019;Portugal;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +23020;Portugal;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;1;0;Young +23021;Portugal;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +23022;Portugal;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23023;Portugal;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;376;1;1.4328334985131229e-06;10562178;3.559871837039671e-05;1;0;Young +23024;Portugal;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;1114;1;4.245150312084092e-06;10562178;0.0001054706709165477;1;0;Young +23025;Portugal;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;688;1;2.621780444087842e-06;10562178;6.513808042242802e-05;0;1;Old +23026;Portugal;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;31;1;1.1813254907953938e-07;10562178;2.9350007167082397e-06;0;1;Old +23027;Portugal;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23028;Portugal;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;224;1;8.536029352844136e-07;10562178;2.1207747114278892e-05;1;0;Young +23029;Portugal;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;810;1;3.086689185626674e-06;10562178;7.668872840431207e-05;1;0;Young +23030;Portugal;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;445;1;1.6957736883998393e-06;10562178;4.213146190113441e-05;0;1;Old +23031;Portugal;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;16;1;6.097163823460096e-08;10562178;1.5148390795913494e-06;0;1;Old +23032;Portugal;M;Craft and related trades workers;Mining and quarrying   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23033;Portugal;M;Craft and related trades workers;Manufacturing   ;Y15-29;42832;1;0.00016322107555402678;10562178;0.004055224216066042;1;0;Young +23034;Portugal;M;Craft and related trades workers;Manufacturing   ;Y30-49;120570;1;0.00045945940137161493;10562178;0.011415259239145563;1;0;Young +23035;Portugal;M;Craft and related trades workers;Manufacturing   ;Y50-64;56508;1;0.00021533658333505197;10562178;0.005350032919346748;0;1;Old +23036;Portugal;M;Craft and related trades workers;Manufacturing   ;Y65-84;2141;1;8.158767341267542e-06;10562178;0.00020270440433781744;0;1;Old +23037;Portugal;M;Craft and related trades workers;Manufacturing   ;Y_GE85;23;1;8.764672996223889e-08;10562178;2.177581176912565e-06;0;1;Old +23038;Portugal;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3498;1;1.3329924409039637e-05;10562178;0.0003311816937756588;1;0;Young +23039;Portugal;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;7947;1;3.0283850565648368e-05;10562178;0.0007524016353445284;1;0;Young +23040;Portugal;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;4169;1;1.5886922487503215e-05;10562178;0.000394710257676021;0;1;Old +23041;Portugal;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;85;1;3.239118281213176e-07;10562178;8.047582610329044e-06;0;1;Old +23042;Portugal;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;389;1;1.482372954578736e-06;10562178;3.6829525122564684e-05;1;0;Young +23043;Portugal;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1711;1;6.520154563712641e-06;10562178;0.00016199310407379993;1;0;Young +23044;Portugal;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;938;1;3.574462291503482e-06;10562178;8.880744104104286e-05;0;1;Old +23045;Portugal;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;16;1;6.097163823460096e-08;10562178;1.5148390795913494e-06;0;1;Old +23046;Portugal;M;Craft and related trades workers;Construction   ;Y15-29;38765;1;0.00014772284726026917;10562178;0.0036701710575224164;1;0;Young +23047;Portugal;M;Craft and related trades workers;Construction   ;Y30-49;160657;1;0.000612220030241018;10562178;0.015210593875619214;1;0;Young +23048;Portugal;M;Craft and related trades workers;Construction   ;Y50-64;67194;1;0.00025605801622098607;10562178;0.006361756069628821;0;1;Old +23049;Portugal;M;Craft and related trades workers;Construction   ;Y65-84;1348;1;5.136860521265132e-06;10562178;0.0001276251924555712;0;1;Old +23050;Portugal;M;Craft and related trades workers;Construction   ;Y_GE85;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +23051;Portugal;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;19972;1;7.610784742634066e-05;10562178;0.001890897881099902;1;0;Young +23052;Portugal;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;55564;1;0.0002117392566792105;10562178;0.0052606574136508585;1;0;Young +23053;Portugal;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;25623;1;9.764226790532379e-05;10562178;0.002425920108523072;0;1;Old +23054;Portugal;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1470;1;5.601769262803964e-06;10562178;0.00013917584043745523;0;1;Old +23055;Portugal;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +23056;Portugal;M;Craft and related trades workers;Transportation and storage   ;Y15-29;1097;1;4.180367946459829e-06;10562178;0.0001038611543944819;1;0;Young +23057;Portugal;M;Craft and related trades workers;Transportation and storage   ;Y30-49;3652;1;1.391677642704767e-05;10562178;0.0003457620199167255;1;0;Young +23058;Portugal;M;Craft and related trades workers;Transportation and storage   ;Y50-64;2617;1;9.972673578746921e-06;10562178;0.0002477708669556601;0;1;Old +23059;Portugal;M;Craft and related trades workers;Transportation and storage   ;Y65-84;63;1;2.400758255487413e-07;10562178;5.9646788758909384e-06;0;1;Old +23060;Portugal;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;1997;1;7.610022597156133e-06;10562178;0.0001890708526214953;1;0;Young +23061;Portugal;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;4652;1;1.7727503816710232e-05;10562178;0.00044043946239118485;1;0;Young +23062;Portugal;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;1863;1;7.099385126941351e-06;10562178;0.00017638407532991776;0;1;Old +23063;Portugal;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;82;1;3.1247964595233e-07;10562178;7.763550282905667e-06;0;1;Old +23064;Portugal;M;Craft and related trades workers;Information and communication   ;Y15-29;976;1;3.719269932310659e-06;10562178;9.240518385507231e-05;1;0;Young +23065;Portugal;M;Craft and related trades workers;Information and communication   ;Y30-49;1912;1;7.286110769034816e-06;10562178;0.00018102327001116625;1;0;Young +23066;Portugal;M;Craft and related trades workers;Information and communication   ;Y50-64;588;1;2.2407077051215855e-06;10562178;5.567033617498209e-05;0;1;Old +23067;Portugal;M;Craft and related trades workers;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +23068;Portugal;M;Craft and related trades workers;Information and communication   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23069;Portugal;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;43;1;1.638612777554901e-07;10562178;4.071130026401751e-06;1;0;Young +23070;Portugal;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;120;1;4.572872867595073e-07;10562178;1.1361293096935121e-05;1;0;Young +23071;Portugal;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;85;1;3.239118281213176e-07;10562178;8.047582610329044e-06;0;1;Old +23072;Portugal;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +23073;Portugal;M;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23074;Portugal;M;Craft and related trades workers;Real estate activities   ;Y15-29;89;1;3.3915473767996787e-07;10562178;8.426292380226882e-06;1;0;Young +23075;Portugal;M;Craft and related trades workers;Real estate activities   ;Y30-49;488;1;1.8596349661553295e-06;10562178;4.620259192753616e-05;1;0;Young +23076;Portugal;M;Craft and related trades workers;Real estate activities   ;Y50-64;241;1;9.18385300908677e-07;10562178;2.28172636363447e-05;0;1;Old +23077;Portugal;M;Craft and related trades workers;Real estate activities   ;Y65-84;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;0;1;Old +23078;Portugal;M;Craft and related trades workers;Real estate activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23079;Portugal;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;522;1;1.9891996974038564e-06;10562178;4.9421624971667774e-05;1;0;Young +23080;Portugal;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;1364;1;5.197832159499732e-06;10562178;0.00012914003153516253;1;0;Young +23081;Portugal;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;425;1;1.6195591406065882e-06;10562178;4.023791305164522e-05;0;1;Old +23082;Portugal;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;15;1;5.716091084493841e-08;10562178;1.4201616371168902e-06;0;1;Old +23083;Portugal;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;896;1;3.4144117411376543e-06;10562178;8.483098845711557e-05;1;0;Young +23084;Portugal;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2555;1;9.736408480587842e-06;10562178;0.0002419008655222436;1;0;Young +23085;Portugal;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;1010;1;3.848834663559186e-06;10562178;9.562421689920394e-05;0;1;Old +23086;Portugal;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;39;1;1.4861836819683987e-07;10562178;3.692420256503914e-06;0;1;Old +23087;Portugal;M;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23088;Portugal;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;755;1;2.877099179195233e-06;10562178;7.14814690682168e-05;1;0;Young +23089;Portugal;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;5979;1;2.278433906279245e-05;10562178;0.0005660764285547923;1;0;Young +23090;Portugal;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;4993;1;1.9026961856585164e-05;10562178;0.0004727244702749755;0;1;Old +23091;Portugal;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;120;1;4.572872867595073e-07;10562178;1.1361293096935121e-05;0;1;Old +23092;Portugal;M;Craft and related trades workers;Education   ;Y15-29;137;1;5.220696523837708e-07;10562178;1.297080961900093e-05;1;0;Young +23093;Portugal;M;Craft and related trades workers;Education   ;Y30-49;469;1;1.787231145751741e-06;10562178;4.440372052052143e-05;1;0;Young +23094;Portugal;M;Craft and related trades workers;Education   ;Y50-64;445;1;1.6957736883998393e-06;10562178;4.213146190113441e-05;0;1;Old +23095;Portugal;M;Craft and related trades workers;Education   ;Y65-84;41;1;1.56239822976165e-07;10562178;3.881775141452833e-06;0;1;Old +23096;Portugal;M;Craft and related trades workers;Education   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23097;Portugal;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;216;1;8.231171161671131e-07;10562178;2.0450327574483217e-05;1;0;Young +23098;Portugal;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;1159;1;4.416633044618908e-06;10562178;0.00010973115582789838;1;0;Young +23099;Portugal;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;882;1;3.3610615576823783e-06;10562178;8.350550426247313e-05;0;1;Old +23100;Portugal;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;50;1;1.9053636948312803e-07;10562178;4.733872123722967e-06;0;1;Old +23101;Portugal;M;Craft and related trades workers;Human health and social work activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23102;Portugal;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;220;1;8.383600257257633e-07;10562178;2.0829037344381056e-05;1;0;Young +23103;Portugal;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;796;1;3.033339002171398e-06;10562178;7.536324420966963e-05;1;0;Young +23104;Portugal;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;396;1;1.509048046306374e-06;10562178;3.74922672198859e-05;0;1;Old +23105;Portugal;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;0;1;Old +23106;Portugal;M;Craft and related trades workers;Other service activities   ;Y15-29;753;1;2.869477724415908e-06;10562178;7.129211418326788e-05;1;0;Young +23107;Portugal;M;Craft and related trades workers;Other service activities   ;Y30-49;2581;1;9.83548739271907e-06;10562178;0.00024436247902657955;1;0;Young +23108;Portugal;M;Craft and related trades workers;Other service activities   ;Y50-64;1691;1;6.44394001591939e-06;10562178;0.00016009955522431075;0;1;Old +23109;Portugal;M;Craft and related trades workers;Other service activities   ;Y65-84;291;1;1.1089216703918052e-06;10562178;2.7551135760067668e-05;0;1;Old +23110;Portugal;M;Craft and related trades workers;Other service activities   ;Y_GE85;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +23111;Portugal;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;26;1;9.907891213122657e-08;10562178;2.4616135043359427e-06;1;0;Young +23112;Portugal;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;10562178;1.8935488494891867e-06;0;1;Old +23113;Portugal;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;1067;1;4.066046124769952e-06;10562178;0.00010102083112024811;1;0;Young +23114;Portugal;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;4045;1;1.5414392291185056e-05;10562178;0.000382970254809188;1;0;Young +23115;Portugal;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;2468;1;9.404875197687199e-06;10562178;0.00023366392802696566;0;1;Old +23116;Portugal;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;165;1;6.287700192943225e-07;10562178;1.562177800828579e-05;0;1;Old +23117;Portugal;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;1301;1;4.957756333950991e-06;10562178;0.0001231753526592716;1;0;Young +23118;Portugal;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;4785;1;1.8234330559535353e-05;10562178;0.0004530315622402879;1;0;Young +23119;Portugal;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;2044;1;7.789126784470273e-06;10562178;0.0001935206924177949;0;1;Old +23120;Portugal;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;30;1;1.1432182168987682e-07;10562178;2.8403232742337803e-06;0;1;Old +23121;Portugal;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23122;Portugal;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;12158;1;4.633082360351741e-05;10562178;0.0011510883456044767;1;0;Young +23123;Portugal;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;34131;1;0.00013006393653657285;10562178;0.0032314357890957717;1;0;Young +23124;Portugal;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;17340;1;6.60780129367488e-05;10562178;0.001641706852507125;0;1;Old +23125;Portugal;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;348;1;1.326133131602571e-06;10562178;3.294774998111185e-05;0;1;Old +23126;Portugal;M;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +23127;Portugal;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;108;1;4.1155855808355654e-07;10562178;1.0225163787241609e-05;1;0;Young +23128;Portugal;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;415;1;1.5814518667099626e-06;10562178;3.929113862690063e-05;1;0;Young +23129;Portugal;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;216;1;8.231171161671131e-07;10562178;2.0450327574483217e-05;0;1;Old +23130;Portugal;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +23131;Portugal;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;505;1;1.924417331779593e-06;10562178;4.781210844960197e-05;1;0;Young +23132;Portugal;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2848;1;1.0852951605758972e-05;10562178;0.0002696413561672602;1;0;Young +23133;Portugal;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1358;1;5.174967795161758e-06;10562178;0.0001285719668803158;0;1;Old +23134;Portugal;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;31;1;1.1813254907953938e-07;10562178;2.9350007167082397e-06;0;1;Old +23135;Portugal;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;4168;1;1.5883111760113554e-05;10562178;0.0003946155802335465;1;0;Young +23136;Portugal;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;17449;1;6.649338222222201e-05;10562178;0.001652026693736841;1;0;Young +23137;Portugal;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;7346;1;2.799360340446117e-05;10562178;0.0006955004924173783;0;1;Old +23138;Portugal;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;152;1;5.792305632287092e-07;10562178;1.439097125611782e-05;0;1;Old +23139;Portugal;M;Plant and machine operators, and assemblers;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23140;Portugal;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;4182;1;1.5936461943568827e-05;10562178;0.00039594106442818894;1;0;Young +23141;Portugal;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;16765;1;6.388684468769283e-05;10562178;0.0015872673230843109;1;0;Young +23142;Portugal;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7415;1;2.8256543594347885e-05;10562178;0.000702033235948116;0;1;Old +23143;Portugal;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;244;1;9.298174830776647e-07;10562178;2.310129596376808e-05;0;1;Old +23144;Portugal;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +23145;Portugal;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;6782;1;2.5844353156691484e-05;10562178;0.0006421024148617832;1;0;Young +23146;Portugal;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;47853;1;0.0001823547377775225;10562178;0.004530599654730303;1;0;Young +23147;Portugal;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;22903;1;8.727708940544163e-05;10562178;0.002168397464992542;0;1;Old +23148;Portugal;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;1850;1;7.049845670875737e-06;10562178;0.00017515326857774977;0;1;Old +23149;Portugal;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;10;1;3.8107273896625604e-08;10562178;9.467744247445934e-07;0;1;Old +23150;Portugal;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;151;1;5.754198358390467e-07;10562178;1.429629381364336e-05;1;0;Young +23151;Portugal;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;571;1;2.175925339497322e-06;10562178;5.406081965291628e-05;1;0;Young +23152;Portugal;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;357;1;1.360429678109534e-06;10562178;3.379984696338198e-05;0;1;Old +23153;Portugal;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;24;1;9.145745735190145e-08;10562178;2.2722586193870243e-06;0;1;Old +23154;Portugal;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;42;1;1.6005055036582754e-07;10562178;3.976452583927292e-06;1;0;Young +23155;Portugal;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;180;1;6.859309301392609e-07;10562178;1.704193964540268e-05;1;0;Young +23156;Portugal;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;116;1;4.4204437720085703e-07;10562178;1.0982583327037284e-05;0;1;Old +23157;Portugal;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;10562178;7.574195397956747e-07;0;1;Old +23158;Portugal;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;1;0;Young +23159;Portugal;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;97;1;3.6964055679726836e-07;10562178;9.183711920022556e-06;1;0;Young +23160;Portugal;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;61;1;2.3245437076941619e-07;10562178;5.77532399094202e-06;0;1;Old +23161;Portugal;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;10562178;4.733872123722967e-07;0;1;Old +23162;Portugal;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;17;1;6.478236562426352e-08;10562178;1.6095165220658088e-06;1;0;Young +23163;Portugal;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;72;1;2.7437237205570434e-07;10562178;6.816775858161073e-06;1;0;Young +23164;Portugal;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;49;1;1.8672564209346548e-07;10562178;4.639194681248508e-06;0;1;Old +23165;Portugal;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +23166;Portugal;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;82;1;3.1247964595233e-07;10562178;7.763550282905667e-06;1;0;Young +23167;Portugal;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;268;1;1.0212749404295662e-06;10562178;2.5373554583155104e-05;1;0;Young +23168;Portugal;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;137;1;5.220696523837708e-07;10562178;1.297080961900093e-05;0;1;Old +23169;Portugal;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;12;1;4.5728728675950726e-08;10562178;1.1361293096935122e-06;0;1;Old +23170;Portugal;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;442;1;1.6843415062308518e-06;10562178;4.184742957371103e-05;1;0;Young +23171;Portugal;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;2029;1;7.731965873625336e-06;10562178;0.000192100530780678;1;0;Young +23172;Portugal;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;801;1;3.052392639119711e-06;10562178;7.583663142204193e-05;0;1;Old +23173;Portugal;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;34;1;1.2956473124852705e-07;10562178;3.2190330441316175e-06;0;1;Old +23174;Portugal;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;505;1;1.924417331779593e-06;10562178;4.781210844960197e-05;1;0;Young +23175;Portugal;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;5272;1;2.0090154798301018e-05;10562178;0.0004991394767253496;1;0;Young +23176;Portugal;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;4729;1;1.8020929825714248e-05;10562178;0.00044772962546171823;0;1;Old +23177;Portugal;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;173;1;6.592558384116229e-07;10562178;1.6379197548081467e-05;0;1;Old +23178;Portugal;M;Plant and machine operators, and assemblers;Education   ;Y15-29;61;1;2.3245437076941619e-07;10562178;5.77532399094202e-06;1;0;Young +23179;Portugal;M;Plant and machine operators, and assemblers;Education   ;Y30-49;527;1;2.0082533343521694e-06;10562178;4.9895012184040075e-05;1;0;Young +23180;Portugal;M;Plant and machine operators, and assemblers;Education   ;Y50-64;490;1;1.8672564209346547e-06;10562178;4.639194681248507e-05;0;1;Old +23181;Portugal;M;Plant and machine operators, and assemblers;Education   ;Y65-84;48;1;1.829149147038029e-07;10562178;4.544517238774049e-06;0;1;Old +23182;Portugal;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;359;1;1.3680511328888593e-06;10562178;3.3989201848330906e-05;1;0;Young +23183;Portugal;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;1967;1;7.495700775466257e-06;10562178;0.0001862305293472615;1;0;Young +23184;Portugal;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;1498;1;5.708469629714516e-06;10562178;0.0001418268088267401;0;1;Old +23185;Portugal;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;113;1;4.3061219503186933e-07;10562178;1.0698550999613906e-05;0;1;Old +23186;Portugal;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;56;1;2.134007338211034e-07;10562178;5.301936778569723e-06;1;0;Young +23187;Portugal;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;219;1;8.345492983361008e-07;10562178;2.0734359901906595e-05;1;0;Young +23188;Portugal;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;156;1;5.944734727873595e-07;10562178;1.4769681026015656e-05;0;1;Old +23189;Portugal;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +23190;Portugal;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;175;1;6.668772931909481e-07;10562178;1.6568552433030383e-05;1;0;Young +23191;Portugal;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;543;1;2.06922497258677e-06;10562178;5.140985126363142e-05;1;0;Young +23192;Portugal;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;256;1;9.755462117536154e-07;10562178;2.423742527346159e-05;0;1;Old +23193;Portugal;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;21;1;8.002527518291377e-08;10562178;1.988226291963646e-06;0;1;Old +23194;Portugal;M;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23195;Portugal;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;6;1;2.2864364337975363e-08;10562178;5.680646548467561e-07;1;0;Young +23196;Portugal;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;49;1;1.8672564209346548e-07;10562178;4.639194681248508e-06;1;0;Young +23197;Portugal;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;46;1;1.7529345992447778e-07;10562178;4.35516235382513e-06;0;1;Old +23198;Portugal;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +23199;Portugal;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;1;0;Young +23200;Portugal;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;33;1;1.257540038588645e-07;10562178;3.124355601657158e-06;1;0;Young +23201;Portugal;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;0;1;Old +23202;Portugal;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23203;Portugal;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;2947;1;1.1230213617335566e-05;10562178;0.0002790144229722317;1;0;Young +23204;Portugal;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;7217;1;2.75020195711947e-05;10562178;0.0006832871023381731;1;0;Young +23205;Portugal;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;4679;1;1.783039345623112e-05;10562178;0.00044299575333799524;0;1;Old +23206;Portugal;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;286;1;1.0898680334434924e-06;10562178;2.707774854769537e-05;0;1;Old +23207;Portugal;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +23208;Portugal;M;Elementary occupations;Mining and quarrying   ;Y15-29;181;1;6.897416575289234e-07;10562178;1.7136617087877142e-05;1;0;Young +23209;Portugal;M;Elementary occupations;Mining and quarrying   ;Y30-49;350;1;1.3337545863818963e-06;10562178;3.3137104866060766e-05;1;0;Young +23210;Portugal;M;Elementary occupations;Mining and quarrying   ;Y50-64;186;1;7.087952944772362e-07;10562178;1.7610004300249436e-05;0;1;Old +23211;Portugal;M;Elementary occupations;Mining and quarrying   ;Y65-84;7;1;2.6675091727637924e-08;10562178;6.627420973212154e-07;0;1;Old +23212;Portugal;M;Elementary occupations;Manufacturing   ;Y15-29;18023;1;6.868073974388832e-05;10562178;0.0017063715457171806;1;0;Young +23213;Portugal;M;Elementary occupations;Manufacturing   ;Y30-49;28379;1;0.0001081446325912338;10562178;0.0026868511399826818;1;0;Young +23214;Portugal;M;Elementary occupations;Manufacturing   ;Y50-64;12477;1;4.754644564081977e-05;10562178;0.0011812904497538292;0;1;Old +23215;Portugal;M;Elementary occupations;Manufacturing   ;Y65-84;244;1;9.298174830776647e-07;10562178;2.310129596376808e-05;0;1;Old +23216;Portugal;M;Elementary occupations;Manufacturing   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +23217;Portugal;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;688;1;2.621780444087842e-06;10562178;6.513808042242802e-05;1;0;Young +23218;Portugal;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;816;1;3.1095535499646496e-06;10562178;7.725679305915882e-05;1;0;Young +23219;Portugal;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;361;1;1.3756725876681843e-06;10562178;3.417855673327982e-05;0;1;Old +23220;Portugal;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;14;1;5.335018345527585e-08;10562178;1.3254841946424308e-06;0;1;Old +23221;Portugal;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1165;1;4.439497408956883e-06;10562178;0.00011029922048274513;1;0;Young +23222;Portugal;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3271;1;1.2464889291586235e-05;10562178;0.0003096899143339565;1;0;Young +23223;Portugal;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1591;1;6.0628672769531335e-06;10562178;0.00015063181097686482;0;1;Old +23224;Portugal;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;35;1;1.3337545863818962e-07;10562178;3.313710486606077e-06;0;1;Old +23225;Portugal;M;Elementary occupations;Construction   ;Y15-29;14577;1;5.554897315911115e-05;10562178;0.0013801130789501937;1;0;Young +23226;Portugal;M;Elementary occupations;Construction   ;Y30-49;27521;1;0.00010487502849090332;10562178;0.0026056178943395956;1;0;Young +23227;Portugal;M;Elementary occupations;Construction   ;Y50-64;11523;1;4.391101171108168e-05;10562178;0.001090968169633195;0;1;Old +23228;Portugal;M;Elementary occupations;Construction   ;Y65-84;250;1;9.526818474156401e-07;10562178;2.3669360618614834e-05;0;1;Old +23229;Portugal;M;Elementary occupations;Construction   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23230;Portugal;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;13931;1;5.308724326538913e-05;10562178;0.001318951451111693;1;0;Young +23231;Portugal;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;20323;1;7.744541274011222e-05;10562178;0.0019241296634084372;1;0;Young +23232;Portugal;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;8091;1;3.083259530975978e-05;10562178;0.0007660351870608505;0;1;Old +23233;Portugal;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;472;1;1.7986633279207285e-06;10562178;4.468775284794481e-05;0;1;Old +23234;Portugal;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;0;1;Old +23235;Portugal;M;Elementary occupations;Transportation and storage   ;Y15-29;2115;1;8.059688429136316e-06;10562178;0.00020024279083348152;1;0;Young +23236;Portugal;M;Elementary occupations;Transportation and storage   ;Y30-49;4201;1;1.6008865763972418e-05;10562178;0.0003977399358352037;1;0;Young +23237;Portugal;M;Elementary occupations;Transportation and storage   ;Y50-64;1737;1;6.619233475843868e-06;10562178;0.00016445471757813588;0;1;Old +23238;Portugal;M;Elementary occupations;Transportation and storage   ;Y65-84;36;1;1.3718618602785217e-07;10562178;3.4083879290805363e-06;0;1;Old +23239;Portugal;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;2029;1;7.731965873625336e-06;10562178;0.000192100530780678;1;0;Young +23240;Portugal;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;2518;1;9.595411567170327e-06;10562178;0.00023839780015068863;1;0;Young +23241;Portugal;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;1030;1;3.925049211352437e-06;10562178;9.751776574869311e-05;0;1;Old +23242;Portugal;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;56;1;2.134007338211034e-07;10562178;5.301936778569723e-06;0;1;Old +23243;Portugal;M;Elementary occupations;Accommodation and food service activities   ;Y_GE85;2;1;7.62145477932512e-09;10562178;1.8935488494891867e-07;0;1;Old +23244;Portugal;M;Elementary occupations;Information and communication   ;Y15-29;345;1;1.3147009494335833e-06;10562178;3.266371765368847e-05;1;0;Young +23245;Portugal;M;Elementary occupations;Information and communication   ;Y30-49;373;1;1.421401316344135e-06;10562178;3.531468604297333e-05;1;0;Young +23246;Portugal;M;Elementary occupations;Information and communication   ;Y50-64;137;1;5.220696523837708e-07;10562178;1.297080961900093e-05;0;1;Old +23247;Portugal;M;Elementary occupations;Information and communication   ;Y65-84;3;1;1.1432182168987682e-08;10562178;2.8403232742337804e-07;0;1;Old +23248;Portugal;M;Elementary occupations;Financial and insurance activities   ;Y15-29;40;1;1.5242909558650242e-07;10562178;3.7870976989783735e-06;1;0;Young +23249;Portugal;M;Elementary occupations;Financial and insurance activities   ;Y30-49;96;1;3.658298294076058e-07;10562178;9.089034477548097e-06;1;0;Young +23250;Portugal;M;Elementary occupations;Financial and insurance activities   ;Y50-64;56;1;2.134007338211034e-07;10562178;5.301936778569723e-06;0;1;Old +23251;Portugal;M;Elementary occupations;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23252;Portugal;M;Elementary occupations;Financial and insurance activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23253;Portugal;M;Elementary occupations;Real estate activities   ;Y15-29;85;1;3.239118281213176e-07;10562178;8.047582610329044e-06;1;0;Young +23254;Portugal;M;Elementary occupations;Real estate activities   ;Y30-49;206;1;7.850098422704875e-07;10562178;1.9503553149738626e-05;1;0;Young +23255;Portugal;M;Elementary occupations;Real estate activities   ;Y50-64;84;1;3.201011007316551e-07;10562178;7.952905167854585e-06;0;1;Old +23256;Portugal;M;Elementary occupations;Real estate activities   ;Y65-84;9;1;3.429654650696304e-08;10562178;8.520969822701341e-07;0;1;Old +23257;Portugal;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;638;1;2.4312440746047135e-06;10562178;6.040420829870506e-05;1;0;Young +23258;Portugal;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;779;1;2.9685566365471347e-06;10562178;7.375372768760383e-05;1;0;Young +23259;Portugal;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;248;1;9.45060392636315e-07;10562178;2.3480005733665918e-05;0;1;Old +23260;Portugal;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;16;1;6.097163823460096e-08;10562178;1.5148390795913494e-06;0;1;Old +23261;Portugal;M;Elementary occupations;Administrative and support service activities   ;Y15-29;1976;1;7.5299973219732195e-06;10562178;0.00018708262632953165;1;0;Young +23262;Portugal;M;Elementary occupations;Administrative and support service activities   ;Y30-49;3925;1;1.495710500442555e-05;10562178;0.0003716089617122529;1;0;Young +23263;Portugal;M;Elementary occupations;Administrative and support service activities   ;Y50-64;1882;1;7.171788947344939e-06;10562178;0.00017818294673693248;0;1;Old +23264;Portugal;M;Elementary occupations;Administrative and support service activities   ;Y65-84;87;1;3.3153328290064277e-07;10562178;8.236937495277962e-06;0;1;Old +23265;Portugal;M;Elementary occupations;Administrative and support service activities   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23266;Portugal;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;1450;1;5.525554715010713e-06;10562178;0.00013728229158796603;1;0;Young +23267;Portugal;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;8294;1;3.1606172969861275e-05;10562178;0.0007852547078831658;1;0;Young +23268;Portugal;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;7541;1;2.873669524544537e-05;10562178;0.0007139625936998979;0;1;Old +23269;Portugal;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;246;1;9.374389378569899e-07;10562178;2.3290650848716998e-05;0;1;Old +23270;Portugal;M;Elementary occupations;Education   ;Y15-29;348;1;1.326133131602571e-06;10562178;3.294774998111185e-05;1;0;Young +23271;Portugal;M;Elementary occupations;Education   ;Y30-49;1953;1;7.4423505920109805e-06;10562178;0.0001849050451526191;1;0;Young +23272;Portugal;M;Elementary occupations;Education   ;Y50-64;1829;1;6.969820395692823e-06;10562178;0.00017316504228578612;0;1;Old +23273;Portugal;M;Elementary occupations;Education   ;Y65-84;74;1;2.819938268350295e-07;10562178;7.006130743109991e-06;0;1;Old +23274;Portugal;M;Elementary occupations;Education   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23275;Portugal;M;Elementary occupations;Human health and social work activities   ;Y15-29;406;1;1.5471553202029996e-06;10562178;3.843904164463049e-05;1;0;Young +23276;Portugal;M;Elementary occupations;Human health and social work activities   ;Y30-49;1006;1;3.833591754000536e-06;10562178;9.524550712930609e-05;1;0;Young +23277;Portugal;M;Elementary occupations;Human health and social work activities   ;Y50-64;589;1;2.244518432511248e-06;10562178;5.5765013617456554e-05;0;1;Old +23278;Portugal;M;Elementary occupations;Human health and social work activities   ;Y65-84;37;1;1.4099691341751475e-07;10562178;3.5030653715549957e-06;0;1;Old +23279;Portugal;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;480;1;1.829149147038029e-06;10562178;4.5445172387740485e-05;1;0;Young +23280;Portugal;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;1029;1;3.921238483962775e-06;10562178;9.742308830621867e-05;1;0;Young +23281;Portugal;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;513;1;1.9549031508968934e-06;10562178;4.856952798939764e-05;0;1;Old +23282;Portugal;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;46;1;1.7529345992447778e-07;10562178;4.35516235382513e-06;0;1;Old +23283;Portugal;M;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23284;Portugal;M;Elementary occupations;Other service activities   ;Y15-29;346;1;1.3185116768232459e-06;10562178;3.275839509616293e-05;1;0;Young +23285;Portugal;M;Elementary occupations;Other service activities   ;Y30-49;774;1;2.9495029995988217e-06;10562178;7.328034047523153e-05;1;0;Young +23286;Portugal;M;Elementary occupations;Other service activities   ;Y50-64;449;1;1.7110165979584897e-06;10562178;4.2510171671032246e-05;0;1;Old +23287;Portugal;M;Elementary occupations;Other service activities   ;Y65-84;25;1;9.526818474156401e-08;10562178;2.3669360618614833e-06;0;1;Old +23288;Portugal;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;196;1;7.469025683738619e-07;10562178;1.855677872499403e-05;1;0;Young +23289;Portugal;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;453;1;1.72625950751714e-06;10562178;4.288888144093008e-05;1;0;Young +23290;Portugal;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;256;1;9.755462117536154e-07;10562178;2.423742527346159e-05;0;1;Old +23291;Portugal;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +23292;Portugal;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;4;1;1.524290955865024e-08;10562178;3.7870976989783734e-07;1;0;Young +23293;Portugal;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;18;1;6.859309301392609e-08;10562178;1.7041939645402682e-06;1;0;Young +23294;Portugal;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;11;1;4.1918001286288165e-08;10562178;1.0414518672190528e-06;0;1;Old +23295;Portugal;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;1;1;3.81072738966256e-09;10562178;9.467744247445933e-08;0;1;Old +23296;Romania;F;Not applicable;Not applicable  ;Y15-29;1151915;1;0.0043896340410631484;20121494;0.05724798566150208;1;0;Young +23297;Romania;F;Not applicable;Not applicable  ;Y30-49;724258;1;0.002759949797782227;20121494;0.03599424575531022;1;0;Young +23298;Romania;F;Not applicable;Not applicable  ;Y50-64;1251649;1;0.004769693126543754;20121494;0.062204575863005006;0;1;Old +23299;Romania;F;Not applicable;Not applicable  ;Y65-84;1512393;1;0.005763317429033929;20121494;0.0751630569777771;0;1;Old +23300;Romania;F;Not applicable;Not applicable  ;Y_GE85;163570;1;0.000623320679127105;20121494;0.008129118046602305;0;1;Old +23301;Romania;F;Not applicable;Not applicable  ;Y_LT15;1551335;1;0.005911714775042169;20121494;0.07709840034740958;0;1;Old +23302;Romania;F;Managers;Agriculture, forestry and fishing   ;Y15-29;297;1;1.1317860347297806e-06;20121494;1.4760335390602705e-05;1;0;Young +23303;Romania;F;Managers;Agriculture, forestry and fishing   ;Y30-49;1355;1;5.16353561299277e-06;20121494;6.734092408843995e-05;1;0;Young +23304;Romania;F;Managers;Agriculture, forestry and fishing   ;Y50-64;468;1;1.7834204183620783e-06;20121494;2.325871031246487e-05;0;1;Old +23305;Romania;F;Managers;Agriculture, forestry and fishing   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23306;Romania;F;Managers;Mining and quarrying   ;Y15-29;88;1;3.353440102903053e-07;20121494;4.373432708326728e-06;1;0;Young +23307;Romania;F;Managers;Mining and quarrying   ;Y30-49;362;1;1.3794833150578469e-06;20121494;1.7990711822889493e-05;1;0;Young +23308;Romania;F;Managers;Mining and quarrying   ;Y50-64;115;1;4.382336498111945e-07;20121494;5.715281380199701e-06;0;1;Old +23309;Romania;F;Managers;Manufacturing   ;Y15-29;2123;1;8.090174248253617e-06;20121494;0.0001055090640883823;1;0;Young +23310;Romania;F;Managers;Manufacturing   ;Y30-49;7827;1;2.9826563278888863e-05;20121494;0.00038898702054628747;1;0;Young +23311;Romania;F;Managers;Manufacturing   ;Y50-64;1898;1;7.23276058557954e-06;20121494;9.43269918227742e-05;0;1;Old +23312;Romania;F;Managers;Manufacturing   ;Y65-84;23;1;8.764672996223889e-08;20121494;1.1430562760399403e-06;0;1;Old +23313;Romania;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;94;1;3.582083746282807e-07;20121494;4.671621302076277e-06;1;0;Young +23314;Romania;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;674;1;2.568430260632566e-06;20121494;3.349651869786607e-05;1;0;Young +23315;Romania;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;233;1;8.878994817913766e-07;20121494;1.1579657057274177e-05;0;1;Old +23316;Romania;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;133;1;5.068267428251205e-07;20121494;6.60984716144835e-06;1;0;Young +23317;Romania;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;658;1;2.507458622397965e-06;20121494;3.2701349114533944e-05;1;0;Young +23318;Romania;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;215;1;8.193063887774505e-07;20121494;1.0685091276025528e-05;0;1;Old +23319;Romania;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23320;Romania;F;Managers;Construction   ;Y15-29;531;1;2.02349624391082e-06;20121494;2.638969054683514e-05;1;0;Young +23321;Romania;F;Managers;Construction   ;Y30-49;2309;1;8.798969542730852e-06;20121494;0.00011475291049461834;1;0;Young +23322;Romania;F;Managers;Construction   ;Y50-64;595;1;2.2673827968492233e-06;20121494;2.957036888016367e-05;0;1;Old +23323;Romania;F;Managers;Construction   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +23324;Romania;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5714;1;2.177449630453187e-05;20121494;0.00028397493744748773;1;0;Young +23325;Romania;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;15293;1;5.8277453970109535e-05;20121494;0.0007600330273686437;1;0;Young +23326;Romania;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2644;1;1.007556321826781e-05;20121494;0.00013140177364563487;0;1;Old +23327;Romania;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;65;1;2.4769728032806646e-07;20121494;3.2303764322867876e-06;0;1;Old +23328;Romania;F;Managers;Transportation and storage   ;Y15-29;536;1;2.0425498808591324e-06;20121494;2.663818104162643e-05;1;0;Young +23329;Romania;F;Managers;Transportation and storage   ;Y30-49;1835;1;6.992684760030799e-06;20121494;9.119601158840393e-05;1;0;Young +23330;Romania;F;Managers;Transportation and storage   ;Y50-64;282;1;1.074625123884842e-06;20121494;1.4014863906228831e-05;0;1;Old +23331;Romania;F;Managers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23332;Romania;F;Managers;Accommodation and food service activities   ;Y15-29;813;1;3.098121367795662e-06;20121494;4.0404554453063975e-05;1;0;Young +23333;Romania;F;Managers;Accommodation and food service activities   ;Y30-49;1766;1;6.729744570144082e-06;20121494;8.77668427602841e-05;1;0;Young +23334;Romania;F;Managers;Accommodation and food service activities   ;Y50-64;315;1;1.2003791277437065e-06;20121494;1.5654901171851354e-05;0;1;Old +23335;Romania;F;Managers;Information and communication   ;Y15-29;981;1;3.738323569258972e-06;20121494;4.875383507805136e-05;1;0;Young +23336;Romania;F;Managers;Information and communication   ;Y30-49;2129;1;8.11303861259159e-06;20121494;0.00010580725268213185;1;0;Young +23337;Romania;F;Managers;Information and communication   ;Y50-64;275;1;1.0479500321572042e-06;20121494;1.3666977213521024e-05;0;1;Old +23338;Romania;F;Managers;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23339;Romania;F;Managers;Financial and insurance activities   ;Y15-29;887;1;3.3801151946306913e-06;20121494;4.408221377597509e-05;1;0;Young +23340;Romania;F;Managers;Financial and insurance activities   ;Y30-49;3119;1;1.1885658728357526e-05;20121494;0.00015500837065080754;1;0;Young +23341;Romania;F;Managers;Financial and insurance activities   ;Y50-64;477;1;1.8177169648690413e-06;20121494;2.3705993203089194e-05;0;1;Old +23342;Romania;F;Managers;Real estate activities   ;Y15-29;173;1;6.592558384116229e-07;20121494;8.59777111977868e-06;1;0;Young +23343;Romania;F;Managers;Real estate activities   ;Y30-49;760;1;2.896152816143546e-06;20121494;3.7770555208276285e-05;1;0;Young +23344;Romania;F;Managers;Real estate activities   ;Y50-64;185;1;7.049845670875737e-07;20121494;9.19414830727778e-06;0;1;Old +23345;Romania;F;Managers;Professional, scientific and technical activities   ;Y15-29;1184;1;4.511901229360472e-06;20121494;5.884254916657779e-05;1;0;Young +23346;Romania;F;Managers;Professional, scientific and technical activities   ;Y30-49;3224;1;1.2285785104272094e-05;20121494;0.00016022667104142465;1;0;Young +23347;Romania;F;Managers;Professional, scientific and technical activities   ;Y50-64;579;1;2.2064111586146226e-06;20121494;2.877519929683154e-05;0;1;Old +23348;Romania;F;Managers;Professional, scientific and technical activities   ;Y65-84;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +23349;Romania;F;Managers;Administrative and support service activities   ;Y15-29;701;1;2.6713199001534548e-06;20121494;3.483836736973905e-05;1;0;Young +23350;Romania;F;Managers;Administrative and support service activities   ;Y30-49;1662;1;6.3334289216191756e-06;20121494;8.259824046862525e-05;1;0;Young +23351;Romania;F;Managers;Administrative and support service activities   ;Y50-64;272;1;1.0365178499882164e-06;20121494;1.3517882916646249e-05;0;1;Old +23352;Romania;F;Managers;Administrative and support service activities   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +23353;Romania;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;1231;1;4.691005416674612e-06;20121494;6.117835981761593e-05;1;0;Young +23354;Romania;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;7155;1;2.7265754473035622e-05;20121494;0.00035558989804633794;1;0;Young +23355;Romania;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;2343;1;8.928534273979379e-06;20121494;0.00011644264585919912;0;1;Old +23356;Romania;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +23357;Romania;F;Managers;Education   ;Y15-29;310;1;1.1813254907953937e-06;20121494;1.5406410677060065e-05;1;0;Young +23358;Romania;F;Managers;Education   ;Y30-49;2353;1;8.966641547876005e-06;20121494;0.0001169396268487817;1;0;Young +23359;Romania;F;Managers;Education   ;Y50-64;1067;1;4.066046124769952e-06;20121494;5.302787158846157e-05;0;1;Old +23360;Romania;F;Managers;Education   ;Y65-84;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;0;1;Old +23361;Romania;F;Managers;Human health and social work activities   ;Y15-29;460;1;1.752934599244778e-06;20121494;2.2861125520798803e-05;1;0;Young +23362;Romania;F;Managers;Human health and social work activities   ;Y30-49;2828;1;1.0776737057965721e-05;20121494;0.00014054622385395438;1;0;Young +23363;Romania;F;Managers;Human health and social work activities   ;Y50-64;1198;1;4.5652514128157474e-06;20121494;5.953832255199341e-05;0;1;Old +23364;Romania;F;Managers;Human health and social work activities   ;Y65-84;50;1;1.9053636948312803e-07;20121494;2.4849049479129134e-06;0;1;Old +23365;Romania;F;Managers;Arts, entertainment and recreation   ;Y15-29;349;1;1.3299438589922337e-06;20121494;1.7344636536432137e-05;1;0;Young +23366;Romania;F;Managers;Arts, entertainment and recreation   ;Y30-49;755;1;2.877099179195233e-06;20121494;3.7522064713484995e-05;1;0;Young +23367;Romania;F;Managers;Arts, entertainment and recreation   ;Y50-64;225;1;8.574136626740762e-07;20121494;1.118207226560811e-05;0;1;Old +23368;Romania;F;Managers;Arts, entertainment and recreation   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +23369;Romania;F;Managers;Other service activities   ;Y15-29;746;1;2.84280263268827e-06;20121494;3.707478182286067e-05;1;0;Young +23370;Romania;F;Managers;Other service activities   ;Y30-49;1999;1;7.6176440519354585e-06;20121494;9.934649981755828e-05;1;0;Young +23371;Romania;F;Managers;Other service activities   ;Y50-64;449;1;1.7110165979584897e-06;20121494;2.2314446432257962e-05;0;1;Old +23372;Romania;F;Managers;Other service activities   ;Y65-84;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;0;1;Old +23373;Romania;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;145;1;5.525554715010713e-07;20121494;7.206224348947449e-06;1;0;Young +23374;Romania;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;375;1;1.4290227711234603e-06;20121494;1.863678710934685e-05;1;0;Young +23375;Romania;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;87;1;3.3153328290064277e-07;20121494;4.323734609368469e-06;0;1;Old +23376;Romania;F;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +23377;Romania;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;1199;1;4.56906214020541e-06;20121494;5.9588020650951665e-05;1;0;Young +23378;Romania;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;3486;1;1.3284195680363686e-05;20121494;0.00017324757296848832;1;0;Young +23379;Romania;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;1350;1;5.144481976044457e-06;20121494;6.709243359364866e-05;0;1;Old +23380;Romania;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +23381;Romania;F;Professionals;Mining and quarrying   ;Y15-29;437;1;1.665287869282539e-06;20121494;2.1718069244758864e-05;1;0;Young +23382;Romania;F;Professionals;Mining and quarrying   ;Y30-49;2467;1;9.401064470297536e-06;20121494;0.00012260521013002316;1;0;Young +23383;Romania;F;Professionals;Mining and quarrying   ;Y50-64;904;1;3.4448975602549547e-06;20121494;4.492708145826547e-05;0;1;Old +23384;Romania;F;Professionals;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23385;Romania;F;Professionals;Manufacturing   ;Y15-29;14175;1;5.40170607484668e-05;20121494;0.000704470552733311;1;0;Young +23386;Romania;F;Professionals;Manufacturing   ;Y30-49;33836;1;0.0001289397719566224;20121494;0.0016815848763516268;1;0;Young +23387;Romania;F;Professionals;Manufacturing   ;Y50-64;9854;1;3.755090769773487e-05;20121494;0.0004897250671346769;0;1;Old +23388;Romania;F;Professionals;Manufacturing   ;Y65-84;74;1;2.819938268350295e-07;20121494;3.677659322911112e-06;0;1;Old +23389;Romania;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;1037;1;3.9517243030800755e-06;20121494;5.153692861971382e-05;1;0;Young +23390;Romania;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;5857;1;2.2319430321253617e-05;20121494;0.00029108176559851866;1;0;Young +23391;Romania;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1985;1;7.564293868480183e-06;20121494;9.865072643214267e-05;0;1;Old +23392;Romania;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23393;Romania;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;757;1;2.8847206339745583e-06;20121494;3.762146091140151e-05;1;0;Young +23394;Romania;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2723;1;1.0376610682051152e-05;20121494;0.00013532792346333727;1;0;Young +23395;Romania;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;836;1;3.1857680977579008e-06;20121494;4.1547610729103914e-05;0;1;Old +23396;Romania;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23397;Romania;F;Professionals;Construction   ;Y15-29;4257;1;1.622226649779352e-05;20121494;0.00021156480726530546;1;0;Young +23398;Romania;F;Professionals;Construction   ;Y30-49;12436;1;4.73902058178436e-05;20121494;0.0006180455586448999;1;0;Young +23399;Romania;F;Professionals;Construction   ;Y50-64;4002;1;1.5250531013429567e-05;20121494;0.0001988917920309496;0;1;Old +23400;Romania;F;Professionals;Construction   ;Y65-84;39;1;1.4861836819683987e-07;20121494;1.9382258593720726e-06;0;1;Old +23401;Romania;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;16592;1;6.322758884928121e-05;20121494;0.0008245908579154211;1;0;Young +23402;Romania;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;29218;1;0.0001113418328711607;20121494;0.00145207905536239;1;0;Young +23403;Romania;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4734;1;1.8039983462662562e-05;20121494;0.00023527080046839465;0;1;Old +23404;Romania;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;173;1;6.592558384116229e-07;20121494;8.59777111977868e-06;0;1;Old +23405;Romania;F;Professionals;Transportation and storage   ;Y15-29;2326;1;8.863751908355116e-06;20121494;0.00011559777817690873;1;0;Young +23406;Romania;F;Professionals;Transportation and storage   ;Y30-49;8899;1;3.391166304060713e-05;20121494;0.00044226338262954033;1;0;Young +23407;Romania;F;Professionals;Transportation and storage   ;Y50-64;2094;1;7.979663153953401e-06;20121494;0.00010406781921859282;0;1;Old +23408;Romania;F;Professionals;Transportation and storage   ;Y65-84;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;0;1;Old +23409;Romania;F;Professionals;Accommodation and food service activities   ;Y15-29;960;1;3.658298294076058e-06;20121494;4.7710174999927935e-05;1;0;Young +23410;Romania;F;Professionals;Accommodation and food service activities   ;Y30-49;1525;1;5.811359269235405e-06;20121494;7.578960091134385e-05;1;0;Young +23411;Romania;F;Professionals;Accommodation and food service activities   ;Y50-64;258;1;9.831676665329406e-07;20121494;1.2822109531230633e-05;0;1;Old +23412;Romania;F;Professionals;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23413;Romania;F;Professionals;Information and communication   ;Y15-29;12939;1;4.930700169484387e-05;20121494;0.0006430437024209037;1;0;Young +23414;Romania;F;Professionals;Information and communication   ;Y30-49;13781;1;5.2515634156939744e-05;20121494;0.0006848895017437572;1;0;Young +23415;Romania;F;Professionals;Information and communication   ;Y50-64;1911;1;7.282300041645153e-06;20121494;9.497306710923156e-05;0;1;Old +23416;Romania;F;Professionals;Information and communication   ;Y65-84;42;1;1.6005055036582754e-07;20121494;2.087320156246847e-06;0;1;Old +23417;Romania;F;Professionals;Financial and insurance activities   ;Y15-29;15807;1;6.0236167848396095e-05;20121494;0.0007855778502331884;1;0;Young +23418;Romania;F;Professionals;Financial and insurance activities   ;Y30-49;27003;1;0.00010290107170305812;20121494;0.001341997766169848;1;0;Young +23419;Romania;F;Professionals;Financial and insurance activities   ;Y50-64;4280;1;1.630991322775576e-05;20121494;0.00021270786354134539;0;1;Old +23420;Romania;F;Professionals;Financial and insurance activities   ;Y65-84;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +23421;Romania;F;Professionals;Real estate activities   ;Y15-29;470;1;1.7910418731414035e-06;20121494;2.3358106510381385e-05;1;0;Young +23422;Romania;F;Professionals;Real estate activities   ;Y30-49;1166;1;4.443308136346546e-06;20121494;5.794798338532914e-05;1;0;Young +23423;Romania;F;Professionals;Real estate activities   ;Y50-64;226;1;8.612243900637387e-07;20121494;1.1231770364566368e-05;0;1;Old +23424;Romania;F;Professionals;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23425;Romania;F;Professionals;Professional, scientific and technical activities   ;Y15-29;19678;1;7.498749357377986e-05;20121494;0.0009779591913006062;1;0;Young +23426;Romania;F;Professionals;Professional, scientific and technical activities   ;Y30-49;35828;1;0.00013653074091683022;20121494;0.0017805834894764772;1;0;Young +23427;Romania;F;Professionals;Professional, scientific and technical activities   ;Y50-64;7831;1;2.9841806188447513e-05;20121494;0.0003891858129421205;0;1;Old +23428;Romania;F;Professionals;Professional, scientific and technical activities   ;Y65-84;300;1;1.1432182168987682e-06;20121494;1.490942968747748e-05;0;1;Old +23429;Romania;F;Professionals;Administrative and support service activities   ;Y15-29;3133;1;1.1939008911812803e-05;20121494;0.00015570414403622316;1;0;Young +23430;Romania;F;Professionals;Administrative and support service activities   ;Y30-49;4440;1;1.6919629610101768e-05;20121494;0.0002206595593746667;1;0;Young +23431;Romania;F;Professionals;Administrative and support service activities   ;Y50-64;786;1;2.9952317282747724e-06;20121494;3.9062705781191e-05;0;1;Old +23432;Romania;F;Professionals;Administrative and support service activities   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23433;Romania;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;11335;1;4.319459496182512e-05;20121494;0.0005633279516918575;1;0;Young +23434;Romania;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;61811;1;0.00023554487068243253;20121494;0.0030718891947089017;1;0;Young +23435;Romania;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;16267;1;6.198910244764087e-05;20121494;0.0008084389757539872;0;1;Old +23436;Romania;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;74;1;2.819938268350295e-07;20121494;3.677659322911112e-06;0;1;Old +23437;Romania;F;Professionals;Education   ;Y15-29;34284;1;0.00013064697782719123;20121494;0.0017038496246849265;1;0;Young +23438;Romania;F;Professionals;Education   ;Y30-49;119855;1;0.0004567347312880062;20121494;0.005956565650642045;1;0;Young +23439;Romania;F;Professionals;Education   ;Y50-64;49364;1;0.00018811274686330264;20121494;0.0024532969569754613;0;1;Old +23440;Romania;F;Professionals;Education   ;Y65-84;371;1;1.41377986156481e-06;20121494;1.8437994713513818e-05;0;1;Old +23441;Romania;F;Professionals;Human health and social work activities   ;Y15-29;22870;1;8.715133540158276e-05;20121494;0.0011365955231753665;1;0;Young +23442;Romania;F;Professionals;Human health and social work activities   ;Y30-49;93563;1;0.00035654308675899817;20121494;0.004649903232831518;1;0;Young +23443;Romania;F;Professionals;Human health and social work activities   ;Y50-64;27881;1;0.00010624689035118185;20121494;0.0013856326970551989;0;1;Old +23444;Romania;F;Professionals;Human health and social work activities   ;Y65-84;735;1;2.800884631401982e-06;20121494;3.652810273431983e-05;0;1;Old +23445;Romania;F;Professionals;Arts, entertainment and recreation   ;Y15-29;1909;1;7.274678586865828e-06;20121494;9.487367091131504e-05;1;0;Young +23446;Romania;F;Professionals;Arts, entertainment and recreation   ;Y30-49;5572;1;2.1233373015199788e-05;20121494;0.00027691780739541507;1;0;Young +23447;Romania;F;Professionals;Arts, entertainment and recreation   ;Y50-64;1547;1;5.8951952718079816e-06;20121494;7.688295908842554e-05;0;1;Old +23448;Romania;F;Professionals;Arts, entertainment and recreation   ;Y65-84;45;1;1.7148273253481523e-07;20121494;2.236414453121622e-06;0;1;Old +23449;Romania;F;Professionals;Other service activities   ;Y15-29;3062;1;1.166844726714676e-05;20121494;0.00015217557901018683;1;0;Young +23450;Romania;F;Professionals;Other service activities   ;Y30-49;6688;1;2.5486144782063206e-05;20121494;0.0003323808858328313;1;0;Young +23451;Romania;F;Professionals;Other service activities   ;Y50-64;1536;1;5.853277270521693e-06;20121494;7.63362799998847e-05;0;1;Old +23452;Romania;F;Professionals;Other service activities   ;Y65-84;70;1;2.6675091727637925e-07;20121494;3.478866927078079e-06;0;1;Old +23453;Romania;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;147;1;5.601769262803964e-07;20121494;7.305620546863966e-06;1;0;Young +23454;Romania;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;330;1;1.257540038588645e-06;20121494;1.640037265622523e-05;1;0;Young +23455;Romania;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;65;1;2.4769728032806646e-07;20121494;3.2303764322867876e-06;0;1;Old +23456;Romania;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23457;Romania;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;583;1;2.221654068173273e-06;20121494;2.897399169266457e-05;1;0;Young +23458;Romania;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2373;1;9.042856095669257e-06;20121494;0.00011793358882794687;1;0;Young +23459;Romania;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;1181;1;4.500469047191484e-06;20121494;5.8693454869703016e-05;0;1;Old +23460;Romania;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +23461;Romania;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;182;1;6.93552384918586e-07;20121494;9.045054010403005e-06;1;0;Young +23462;Romania;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;1118;1;4.260393221642743e-06;20121494;5.556247463533275e-05;1;0;Young +23463;Romania;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;438;1;1.6690985966722016e-06;20121494;2.1767767343717122e-05;0;1;Old +23464;Romania;F;Technicians and associate professionals;Manufacturing   ;Y15-29;7928;1;3.021144674524478e-05;20121494;0.00039400652854107155;1;0;Young +23465;Romania;F;Technicians and associate professionals;Manufacturing   ;Y30-49;21582;1;8.224311852369739e-05;20121494;0.0010725843717171299;1;0;Young +23466;Romania;F;Technicians and associate professionals;Manufacturing   ;Y50-64;7237;1;2.7578234118987952e-05;20121494;0.0003596651421609151;0;1;Old +23467;Romania;F;Technicians and associate professionals;Manufacturing   ;Y65-84;43;1;1.638612777554901e-07;20121494;2.1370182552051055e-06;0;1;Old +23468;Romania;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;420;1;1.6005055036582754e-06;20121494;2.0873201562468473e-05;1;0;Young +23469;Romania;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;3452;1;1.3154630949115159e-05;20121494;0.00017155783760390754;1;0;Young +23470;Romania;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;1610;1;6.135271097356723e-06;20121494;8.001393932279581e-05;0;1;Old +23471;Romania;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;418;1;1.5928840488789504e-06;20121494;2.0773805364551957e-05;1;0;Young +23472;Romania;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2246;1;8.558893717182112e-06;20121494;0.00011162193026024807;1;0;Young +23473;Romania;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1196;1;4.557629958036422e-06;20121494;5.943892635407689e-05;0;1;Old +23474;Romania;F;Technicians and associate professionals;Construction   ;Y15-29;2192;1;8.353114438140333e-06;20121494;0.00010893823291650212;1;0;Young +23475;Romania;F;Technicians and associate professionals;Construction   ;Y30-49;5451;1;2.0772275001050618e-05;20121494;0.0002709043374214658;1;0;Young +23476;Romania;F;Technicians and associate professionals;Construction   ;Y50-64;2272;1;8.657972629313337e-06;20121494;0.00011291408083316279;0;1;Old +23477;Romania;F;Technicians and associate professionals;Construction   ;Y65-84;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;0;1;Old +23478;Romania;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;25615;1;9.761178208620649e-05;20121494;0.0012730168048157855;1;0;Young +23479;Romania;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;42394;1;0.0001615519769573546;20121494;0.002106901207236401;1;0;Young +23480;Romania;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7392;1;2.8168896864385647e-05;20121494;0.0003673683474994451;0;1;Old +23481;Romania;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;90;1;3.4296546506963047e-07;20121494;4.472828906243244e-06;0;1;Old +23482;Romania;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;1848;1;7.042224216096412e-06;20121494;9.184208687486127e-05;1;0;Young +23483;Romania;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;5642;1;2.1500123932476167e-05;20121494;0.00028039667432249317;1;0;Young +23484;Romania;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;1901;1;7.244192767748528e-06;20121494;9.447608611964896e-05;0;1;Old +23485;Romania;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +23486;Romania;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;1041;1;3.966967212638726e-06;20121494;5.173572101554686e-05;1;0;Young +23487;Romania;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;1786;1;6.805959117937333e-06;20121494;8.876080473944927e-05;1;0;Young +23488;Romania;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;578;1;2.20260043122496e-06;20121494;2.872550119787328e-05;0;1;Old +23489;Romania;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23490;Romania;F;Technicians and associate professionals;Information and communication   ;Y15-29;6704;1;2.5547116420297805e-05;20121494;0.00033317605541616343;1;0;Young +23491;Romania;F;Technicians and associate professionals;Information and communication   ;Y30-49;6878;1;2.621018298609909e-05;20121494;0.00034182352463490035;1;0;Young +23492;Romania;F;Technicians and associate professionals;Information and communication   ;Y50-64;1304;1;4.969188516119979e-06;20121494;6.480632104156878e-05;0;1;Old +23493;Romania;F;Technicians and associate professionals;Information and communication   ;Y65-84;10;1;3.8107273896625604e-08;20121494;4.969809895825827e-07;0;1;Old +23494;Romania;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;5525;1;2.1054268827885647e-05;20121494;0.00027458199674437696;1;0;Young +23495;Romania;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;10453;1;3.9833533404142744e-05;20121494;0.0005194942284106736;1;0;Young +23496;Romania;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;3100;1;1.1813254907953937e-05;20121494;0.00015406410677060064;0;1;Old +23497;Romania;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;35;1;1.3337545863818962e-07;20121494;1.7394334635390395e-06;0;1;Old +23498;Romania;F;Technicians and associate professionals;Real estate activities   ;Y15-29;818;1;3.1171750047439744e-06;20121494;4.0653044947855264e-05;1;0;Young +23499;Romania;F;Technicians and associate professionals;Real estate activities   ;Y30-49;1557;1;5.933302545704607e-06;20121494;7.737994007800812e-05;1;0;Young +23500;Romania;F;Technicians and associate professionals;Real estate activities   ;Y50-64;445;1;1.6957736883998393e-06;20121494;2.211565403642493e-05;0;1;Old +23501;Romania;F;Technicians and associate professionals;Real estate activities   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23502;Romania;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;6716;1;2.5592845148973756e-05;20121494;0.00033377243260366256;1;0;Young +23503;Romania;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;13075;1;4.982526061983798e-05;20121494;0.0006498026438792268;1;0;Young +23504;Romania;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;4668;1;1.7788475454944834e-05;20121494;0.0002319907259371496;0;1;Old +23505;Romania;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;62;1;2.3626509815907876e-07;20121494;3.0812821354120126e-06;0;1;Old +23506;Romania;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;4296;1;1.637088486599036e-05;20121494;0.0002135030331246775;1;0;Young +23507;Romania;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;4975;1;1.8958368763571237e-05;20121494;0.0002472480423173349;1;0;Young +23508;Romania;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;1246;1;4.748166327519551e-06;20121494;6.192383130198981e-05;0;1;Old +23509;Romania;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +23510;Romania;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;4782;1;1.8222898377366364e-05;20121494;0.00023765630921839103;1;0;Young +23511;Romania;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;27890;1;0.00010628118689768881;20121494;0.0013860799799458232;1;0;Young +23512;Romania;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;11446;1;4.361758570207767e-05;20121494;0.0005688444406762241;0;1;Old +23513;Romania;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;61;1;2.3245437076941619e-07;20121494;3.0315840364537543e-06;0;1;Old +23514;Romania;F;Technicians and associate professionals;Education   ;Y15-29;1039;1;3.959345757859401e-06;20121494;5.163632481763034e-05;1;0;Young +23515;Romania;F;Technicians and associate professionals;Education   ;Y30-49;4187;1;1.5955515580517142e-05;20121494;0.00020808594033822737;1;0;Young +23516;Romania;F;Technicians and associate professionals;Education   ;Y50-64;2140;1;8.15495661387788e-06;20121494;0.00010635393177067269;0;1;Old +23517;Romania;F;Technicians and associate professionals;Education   ;Y65-84;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;0;1;Old +23518;Romania;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;6536;1;2.4906914218834494e-05;20121494;0.00032482677479117605;1;0;Young +23519;Romania;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;29499;1;0.00011241264726765588;20121494;0.0014660442211696606;1;0;Young +23520;Romania;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;8795;1;3.351534739208222e-05;20121494;0.00043709478033788146;0;1;Old +23521;Romania;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;84;1;3.201011007316551e-07;20121494;4.174640312493694e-06;0;1;Old +23522;Romania;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;1978;1;7.537618776752545e-06;20121494;9.830283973943486e-05;1;0;Young +23523;Romania;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;2254;1;8.58937953629941e-06;20121494;0.00011201951505191414;1;0;Young +23524;Romania;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;660;1;2.51508007717729e-06;20121494;3.280074531245046e-05;0;1;Old +23525;Romania;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;10;1;3.8107273896625604e-08;20121494;4.969809895825827e-07;0;1;Old +23526;Romania;F;Technicians and associate professionals;Other service activities   ;Y15-29;2189;1;8.341682255971345e-06;20121494;0.00010878913861962735;1;0;Young +23527;Romania;F;Technicians and associate professionals;Other service activities   ;Y30-49;5437;1;2.0718924817595342e-05;20121494;0.0002702085640360502;1;0;Young +23528;Romania;F;Technicians and associate professionals;Other service activities   ;Y50-64;1573;1;5.9942741839392075e-06;20121494;7.817510966134026e-05;0;1;Old +23529;Romania;F;Technicians and associate professionals;Other service activities   ;Y65-84;242;1;9.221960282983396e-07;20121494;1.2026939947898501e-05;0;1;Old +23530;Romania;F;Technicians and associate professionals;Other service activities   ;Y_GE85;50;1;1.9053636948312803e-07;20121494;2.4849049479129134e-06;0;1;Old +23531;Romania;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;56;1;2.134007338211034e-07;20121494;2.783093541662463e-06;1;0;Young +23532;Romania;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;99;1;3.772620115765935e-07;20121494;4.920111796867569e-06;1;0;Young +23533;Romania;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;28;1;1.067003669105517e-07;20121494;1.3915467708312315e-06;0;1;Old +23534;Romania;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;391;1;1.4899944093580612e-06;20121494;1.9431956692678983e-05;1;0;Young +23535;Romania;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;1434;1;5.464583076776112e-06;20121494;7.126707390614236e-05;1;0;Young +23536;Romania;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;462;1;1.760556054024103e-06;20121494;2.296052171871532e-05;0;1;Old +23537;Romania;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23538;Romania;F;Clerical support workers;Mining and quarrying   ;Y15-29;113;1;4.3061219503186933e-07;20121494;5.615885182283184e-06;1;0;Young +23539;Romania;F;Clerical support workers;Mining and quarrying   ;Y30-49;834;1;3.1781466429785756e-06;20121494;4.14482145311874e-05;1;0;Young +23540;Romania;F;Clerical support workers;Mining and quarrying   ;Y50-64;271;1;1.032707122598554e-06;20121494;1.3468184817687991e-05;0;1;Old +23541;Romania;F;Clerical support workers;Manufacturing   ;Y15-29;5079;1;1.9354684412096144e-05;20121494;0.0002524166446089937;1;0;Young +23542;Romania;F;Clerical support workers;Manufacturing   ;Y30-49;15314;1;5.8357479245292455e-05;20121494;0.0007610766874467671;1;0;Young +23543;Romania;F;Clerical support workers;Manufacturing   ;Y50-64;4335;1;1.65195032341872e-05;20121494;0.0002154412589840496;0;1;Old +23544;Romania;F;Clerical support workers;Manufacturing   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23545;Romania;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;202;1;7.697669327118372e-07;20121494;1.003901598956817e-05;1;0;Young +23546;Romania;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1803;1;6.870741483561596e-06;20121494;8.960567242173966e-05;1;0;Young +23547;Romania;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;699;1;2.66369844537413e-06;20121494;3.473897117182253e-05;0;1;Old +23548;Romania;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;288;1;1.0974894882228174e-06;20121494;1.431305249997838e-05;1;0;Young +23549;Romania;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1250;1;4.763409237078201e-06;20121494;6.212262369782284e-05;1;0;Young +23550;Romania;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;505;1;1.924417331779593e-06;20121494;2.5097539973920426e-05;0;1;Old +23551;Romania;F;Clerical support workers;Construction   ;Y15-29;1523;1;5.80373781445608e-06;20121494;7.569020471342734e-05;1;0;Young +23552;Romania;F;Clerical support workers;Construction   ;Y30-49;4471;1;1.7037762159181307e-05;20121494;0.00022220020044237272;1;0;Young +23553;Romania;F;Clerical support workers;Construction   ;Y50-64;1207;1;4.599547959322711e-06;20121494;5.998560544261773e-05;0;1;Old +23554;Romania;F;Clerical support workers;Construction   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +23555;Romania;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;12957;1;4.9375594787857795e-05;20121494;0.0006439382682021524;1;0;Young +23556;Romania;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;29829;1;0.00011367018730624452;20121494;0.001482444593825886;1;0;Young +23557;Romania;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5766;1;2.1972654128794326e-05;20121494;0.0002865592385933172;0;1;Old +23558;Romania;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;41;1;1.56239822976165e-07;20121494;2.037622057288589e-06;0;1;Old +23559;Romania;F;Clerical support workers;Transportation and storage   ;Y15-29;4043;1;1.5406770836405734e-05;20121494;0.00020092941408823817;1;0;Young +23560;Romania;F;Clerical support workers;Transportation and storage   ;Y30-49;22031;1;8.395413512165586e-05;20121494;0.0010948988181493878;1;0;Young +23561;Romania;F;Clerical support workers;Transportation and storage   ;Y50-64;6793;1;2.5886271157977774e-05;20121494;0.0003375991862234484;0;1;Old +23562;Romania;F;Clerical support workers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23563;Romania;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;3843;1;1.464462535847322e-05;20121494;0.00019098979429658654;1;0;Young +23564;Romania;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;4489;1;1.7106355252195234e-05;20121494;0.00022309476622362138;1;0;Young +23565;Romania;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;1081;1;4.119396308225228e-06;20121494;5.372364497387719e-05;0;1;Old +23566;Romania;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +23567;Romania;F;Clerical support workers;Information and communication   ;Y15-29;3200;1;1.2194327646920194e-05;20121494;0.00015903391666642646;1;0;Young +23568;Romania;F;Clerical support workers;Information and communication   ;Y30-49;3437;1;1.309747003827022e-05;20121494;0.00017081236611953367;1;0;Young +23569;Romania;F;Clerical support workers;Information and communication   ;Y50-64;839;1;3.197200279926888e-06;20121494;4.169670502597869e-05;0;1;Old +23570;Romania;F;Clerical support workers;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23571;Romania;F;Clerical support workers;Financial and insurance activities   ;Y15-29;3435;1;1.3089848583490895e-05;20121494;0.00017071296992161714;1;0;Young +23572;Romania;F;Clerical support workers;Financial and insurance activities   ;Y30-49;5772;1;2.1995518493132298e-05;20121494;0.0002868574271870667;1;0;Young +23573;Romania;F;Clerical support workers;Financial and insurance activities   ;Y50-64;1530;1;5.830412906183717e-06;20121494;7.603809140613515e-05;0;1;Old +23574;Romania;F;Clerical support workers;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23575;Romania;F;Clerical support workers;Real estate activities   ;Y15-29;338;1;1.2880258577059455e-06;20121494;1.6797957447891293e-05;1;0;Young +23576;Romania;F;Clerical support workers;Real estate activities   ;Y30-49;537;1;2.046360608248795e-06;20121494;2.668787914058469e-05;1;0;Young +23577;Romania;F;Clerical support workers;Real estate activities   ;Y50-64;152;1;5.792305632287092e-07;20121494;7.554111041655257e-06;0;1;Old +23578;Romania;F;Clerical support workers;Real estate activities   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23579;Romania;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;2669;1;1.0170831403009375e-05;20121494;0.00013264422611959133;1;0;Young +23580;Romania;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;4590;1;1.7491238718551155e-05;20121494;0.00022811427421840546;1;0;Young +23581;Romania;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;1278;1;4.870109603988752e-06;20121494;6.351417046865407e-05;0;1;Old +23582;Romania;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;14;1;5.335018345527585e-08;20121494;6.957733854156158e-07;0;1;Old +23583;Romania;F;Clerical support workers;Administrative and support service activities   ;Y15-29;4159;1;1.584881521360659e-05;20121494;0.00020669439356739614;1;0;Young +23584;Romania;F;Clerical support workers;Administrative and support service activities   ;Y30-49;4236;1;1.6142241222610607e-05;20121494;0.00021052114718718204;1;0;Young +23585;Romania;F;Clerical support workers;Administrative and support service activities   ;Y50-64;732;1;2.789452449232994e-06;20121494;3.637900843744505e-05;0;1;Old +23586;Romania;F;Clerical support workers;Administrative and support service activities   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +23587;Romania;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;3453;1;1.3158441676504822e-05;20121494;0.0001716075357028658;1;0;Young +23588;Romania;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;15882;1;6.0521972402620785e-05;20121494;0.0007893052076550578;1;0;Young +23589;Romania;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;5805;1;2.2121272496991165e-05;20121494;0.0002884974644526892;0;1;Old +23590;Romania;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;0;1;Old +23591;Romania;F;Clerical support workers;Education   ;Y15-29;852;1;3.2467397359925016e-06;20121494;4.234278031243605e-05;1;0;Young +23592;Romania;F;Clerical support workers;Education   ;Y30-49;4229;1;1.6115566130882968e-05;20121494;0.0002101732604944742;1;0;Young +23593;Romania;F;Clerical support workers;Education   ;Y50-64;2460;1;9.3743893785699e-06;20121494;0.00012225732343731533;0;1;Old +23594;Romania;F;Clerical support workers;Education   ;Y65-84;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;0;1;Old +23595;Romania;F;Clerical support workers;Human health and social work activities   ;Y15-29;1040;1;3.963156485249063e-06;20121494;5.16860229165886e-05;1;0;Young +23596;Romania;F;Clerical support workers;Human health and social work activities   ;Y30-49;2941;1;1.120734925299759e-05;20121494;0.00014616210903623756;1;0;Young +23597;Romania;F;Clerical support workers;Human health and social work activities   ;Y50-64;1410;1;5.37312561942421e-06;20121494;7.007431953114416e-05;0;1;Old +23598;Romania;F;Clerical support workers;Human health and social work activities   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +23599;Romania;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;2850;1;1.0860573060538297e-05;20121494;0.00014163958203103607;1;0;Young +23600;Romania;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;2663;1;1.0147967038671399e-05;20121494;0.00013234603752584176;1;0;Young +23601;Romania;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;854;1;3.2543611907718268e-06;20121494;4.244217651035256e-05;0;1;Old +23602;Romania;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +23603;Romania;F;Clerical support workers;Other service activities   ;Y15-29;1055;1;4.0203173960940015e-06;20121494;5.243149440096247e-05;1;0;Young +23604;Romania;F;Clerical support workers;Other service activities   ;Y30-49;2097;1;7.991095336122389e-06;20121494;0.00010421691351546758;1;0;Young +23605;Romania;F;Clerical support workers;Other service activities   ;Y50-64;770;1;2.9342600900401717e-06;20121494;3.8267536197858864e-05;0;1;Old +23606;Romania;F;Clerical support workers;Other service activities   ;Y65-84;14;1;5.335018345527585e-08;20121494;6.957733854156158e-07;0;1;Old +23607;Romania;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;116;1;4.4204437720085703e-07;20121494;5.7649794791579594e-06;1;0;Young +23608;Romania;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;160;1;6.097163823460097e-07;20121494;7.951695833321324e-06;1;0;Young +23609;Romania;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;58;1;2.2102218860042852e-07;20121494;2.8824897395789797e-06;0;1;Old +23610;Romania;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;290;1;1.1051109430021426e-06;20121494;1.4412448697894898e-05;1;0;Young +23611;Romania;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;1189;1;4.530954866308785e-06;20121494;5.909103966136908e-05;1;0;Young +23612;Romania;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;394;1;1.5014265915270488e-06;20121494;1.9581050989553757e-05;0;1;Old +23613;Romania;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +23614;Romania;F;Service and sales workers;Mining and quarrying   ;Y15-29;54;1;2.0577927904177827e-07;20121494;2.6836973437459464e-06;1;0;Young +23615;Romania;F;Service and sales workers;Mining and quarrying   ;Y30-49;262;1;9.984105760915908e-07;20121494;1.3020901927063666e-05;1;0;Young +23616;Romania;F;Service and sales workers;Mining and quarrying   ;Y50-64;124;1;4.725301963181575e-07;20121494;6.162564270824025e-06;0;1;Old +23617;Romania;F;Service and sales workers;Manufacturing   ;Y15-29;5426;1;2.0677006816309055e-05;20121494;0.00026966188494750935;1;0;Young +23618;Romania;F;Service and sales workers;Manufacturing   ;Y30-49;14931;1;5.689797065505169e-05;20121494;0.0007420423155457542;1;0;Young +23619;Romania;F;Service and sales workers;Manufacturing   ;Y50-64;3585;1;1.366145769194028e-05;20121494;0.0001781676847653559;0;1;Old +23620;Romania;F;Service and sales workers;Manufacturing   ;Y65-84;23;1;8.764672996223889e-08;20121494;1.1430562760399403e-06;0;1;Old +23621;Romania;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;88;1;3.353440102903053e-07;20121494;4.373432708326728e-06;1;0;Young +23622;Romania;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;852;1;3.2467397359925016e-06;20121494;4.234278031243605e-05;1;0;Young +23623;Romania;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;339;1;1.2918365850956081e-06;20121494;1.6847655546849555e-05;0;1;Old +23624;Romania;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;190;1;7.240382040358865e-07;20121494;9.442638802069071e-06;1;0;Young +23625;Romania;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1363;1;5.19402143211007e-06;20121494;6.773850888010602e-05;1;0;Young +23626;Romania;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;510;1;1.943470968727906e-06;20121494;2.5346030468711715e-05;0;1;Old +23627;Romania;F;Service and sales workers;Construction   ;Y15-29;709;1;2.7018057192707556e-06;20121494;3.523595216140511e-05;1;0;Young +23628;Romania;F;Service and sales workers;Construction   ;Y30-49;2386;1;9.092395551734869e-06;20121494;0.00011857966411440423;1;0;Young +23629;Romania;F;Service and sales workers;Construction   ;Y50-64;698;1;2.6598877179844674e-06;20121494;3.4689273072864274e-05;0;1;Old +23630;Romania;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;96349;1;0.00036715977326659804;20121494;0.004788362136529226;1;0;Young +23631;Romania;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;246153;1;0.0009380219791476083;20121494;0.012233336152872148;1;0;Young +23632;Romania;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;48264;1;0.00018392094673467383;20121494;0.002398629048121377;0;1;Old +23633;Romania;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;298;1;1.135596762119443e-06;20121494;1.4810033489560965e-05;0;1;Old +23634;Romania;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23635;Romania;F;Service and sales workers;Transportation and storage   ;Y15-29;1849;1;7.046034943486074e-06;20121494;9.189178497381954e-05;1;0;Young +23636;Romania;F;Service and sales workers;Transportation and storage   ;Y30-49;7750;1;2.9533137269884844e-05;20121494;0.0003851602669265016;1;0;Young +23637;Romania;F;Service and sales workers;Transportation and storage   ;Y50-64;2103;1;8.013959700460365e-06;20121494;0.00010451510210921714;0;1;Old +23638;Romania;F;Service and sales workers;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23639;Romania;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;27707;1;0.00010558382378538056;20121494;0.0013769852278364618;1;0;Young +23640;Romania;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;39236;1;0.00014951769986080022;20121494;0.0019499546107262214;1;0;Young +23641;Romania;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;8308;1;3.1659523153316555e-05;20121494;0.0004128918061452097;0;1;Old +23642;Romania;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;36;1;1.3718618602785217e-07;20121494;1.7891315624972976e-06;0;1;Old +23643;Romania;F;Service and sales workers;Information and communication   ;Y15-29;748;1;2.8504240874675953e-06;20121494;3.717417802077718e-05;1;0;Young +23644;Romania;F;Service and sales workers;Information and communication   ;Y30-49;1629;1;6.2076749177603114e-06;20121494;8.095820320300272e-05;1;0;Young +23645;Romania;F;Service and sales workers;Information and communication   ;Y50-64;409;1;1.5585875023719872e-06;20121494;2.0326522473927632e-05;0;1;Old +23646;Romania;F;Service and sales workers;Financial and insurance activities   ;Y15-29;1072;1;4.085099761718265e-06;20121494;5.327636208325286e-05;1;0;Young +23647;Romania;F;Service and sales workers;Financial and insurance activities   ;Y30-49;2663;1;1.0147967038671399e-05;20121494;0.00013234603752584176;1;0;Young +23648;Romania;F;Service and sales workers;Financial and insurance activities   ;Y50-64;813;1;3.098121367795662e-06;20121494;4.0404554453063975e-05;0;1;Old +23649;Romania;F;Service and sales workers;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23650;Romania;F;Service and sales workers;Real estate activities   ;Y15-29;178;1;6.783094753599357e-07;20121494;8.846261614569971e-06;1;0;Young +23651;Romania;F;Service and sales workers;Real estate activities   ;Y30-49;769;1;2.930449362650509e-06;20121494;3.8217838098900606e-05;1;0;Young +23652;Romania;F;Service and sales workers;Real estate activities   ;Y50-64;469;1;1.787231145751741e-06;20121494;2.3308408411423127e-05;0;1;Old +23653;Romania;F;Service and sales workers;Real estate activities   ;Y65-84;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;0;1;Old +23654;Romania;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;585;1;2.2292755229525977e-06;20121494;2.9073387890581086e-05;1;0;Young +23655;Romania;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;1447;1;5.514122532841725e-06;20121494;7.191314919259971e-05;1;0;Young +23656;Romania;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;560;1;2.134007338211034e-06;20121494;2.783093541662463e-05;0;1;Old +23657;Romania;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +23658;Romania;F;Service and sales workers;Administrative and support service activities   ;Y15-29;3775;1;1.4385495895976165e-05;20121494;0.00018761032356742497;1;0;Young +23659;Romania;F;Service and sales workers;Administrative and support service activities   ;Y30-49;13417;1;5.112852938710258e-05;20121494;0.0006667993937229512;1;0;Young +23660;Romania;F;Service and sales workers;Administrative and support service activities   ;Y50-64;3362;1;1.2811665484045528e-05;20121494;0.0001670850086976643;0;1;Old +23661;Romania;F;Service and sales workers;Administrative and support service activities   ;Y65-84;17;1;6.478236562426352e-08;20121494;8.448676822903906e-07;0;1;Old +23662;Romania;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;3806;1;1.4503628445055706e-05;20121494;0.00018915096463513096;1;0;Young +23663;Romania;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;16368;1;6.237398591399679e-05;20121494;0.0008134584837487714;1;0;Young +23664;Romania;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;6463;1;2.462873111938913e-05;20121494;0.00032119881356722316;0;1;Old +23665;Romania;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;71;1;2.705616446660418e-07;20121494;3.5285650260363372e-06;0;1;Old +23666;Romania;F;Service and sales workers;Education   ;Y15-29;1006;1;3.833591754000536e-06;20121494;4.999628755200782e-05;1;0;Young +23667;Romania;F;Service and sales workers;Education   ;Y30-49;14986;1;5.7107560661483135e-05;20121494;0.0007447757109884584;1;0;Young +23668;Romania;F;Service and sales workers;Education   ;Y50-64;8101;1;3.08707025836564e-05;20121494;0.0004026042996608502;0;1;Old +23669;Romania;F;Service and sales workers;Education   ;Y65-84;24;1;9.145745735190145e-08;20121494;1.1927543749981984e-06;0;1;Old +23670;Romania;F;Service and sales workers;Human health and social work activities   ;Y15-29;5558;1;2.118002283174451e-05;20121494;0.0002762220340099995;1;0;Young +23671;Romania;F;Service and sales workers;Human health and social work activities   ;Y30-49;58244;1;0.00022195200608350618;20121494;0.0028946160757247945;1;0;Young +23672;Romania;F;Service and sales workers;Human health and social work activities   ;Y50-64;24948;1;9.507002691730155e-05;20121494;0.0012398681728106272;0;1;Old +23673;Romania;F;Service and sales workers;Human health and social work activities   ;Y65-84;443;1;1.6881522336205144e-06;20121494;2.201625783850841e-05;0;1;Old +23674;Romania;F;Service and sales workers;Human health and social work activities   ;Y_GE85;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23675;Romania;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;2574;1;9.808812300991431e-06;20121494;0.00012792290671855678;1;0;Young +23676;Romania;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;2786;1;1.0616686507599894e-05;20121494;0.00013845890369770754;1;0;Young +23677;Romania;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;862;1;3.284847009889127e-06;20121494;4.2839761302018626e-05;0;1;Old +23678;Romania;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23679;Romania;F;Service and sales workers;Other service activities   ;Y15-29;11612;1;4.425016644876165e-05;20121494;0.000577094325103295;1;0;Young +23680;Romania;F;Service and sales workers;Other service activities   ;Y30-49;24047;1;9.16365615392156e-05;20121494;0.0011950901856492366;1;0;Young +23681;Romania;F;Service and sales workers;Other service activities   ;Y50-64;6042;1;2.302441488834119e-05;20121494;0.00030027591390579644;0;1;Old +23682;Romania;F;Service and sales workers;Other service activities   ;Y65-84;117;1;4.458551045905196e-07;20121494;5.814677578116217e-06;0;1;Old +23683;Romania;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;767;1;2.922827907871184e-06;20121494;3.811844190098409e-05;1;0;Young +23684;Romania;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1884;1;7.1794104021242645e-06;20121494;9.363121843735857e-05;1;0;Young +23685;Romania;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;721;1;2.7475344479467064e-06;20121494;3.583232934890421e-05;0;1;Old +23686;Romania;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;0;1;Old +23687;Romania;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;41;1;1.56239822976165e-07;20121494;2.037622057288589e-06;1;0;Young +23688;Romania;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;108;1;4.1155855808355654e-07;20121494;5.367394687491893e-06;1;0;Young +23689;Romania;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;38;1;1.448076408071773e-07;20121494;1.8885277604138143e-06;0;1;Old +23690;Romania;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;42276;1;0.00016110231112537442;20121494;0.0021010368315593267;1;0;Young +23691;Romania;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;355624;1;0.0013551861172213585;20121494;0.017673836743931637;1;0;Young +23692;Romania;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;345778;1;0.0013176656953427408;20121494;0.017184509261588626;0;1;Old +23693;Romania;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;212934;1;0.0008114334259904076;20121494;0.010582415003577766;0;1;Old +23694;Romania;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;9943;1;3.789006243541484e-05;20121494;0.000494148197941962;0;1;Old +23695;Romania;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;113;1;4.3061219503186933e-07;20121494;5.615885182283184e-06;1;0;Young +23696;Romania;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;587;1;2.236896977731923e-06;20121494;2.9172784088497605e-05;1;0;Young +23697;Romania;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;170;1;6.478236562426352e-07;20121494;8.448676822903906e-06;0;1;Old +23698;Romania;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;0;1;Old +23699;Romania;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;32;1;1.2194327646920193e-07;20121494;1.5903391666642647e-06;1;0;Young +23700;Romania;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;54;1;2.0577927904177827e-07;20121494;2.6836973437459464e-06;1;0;Young +23701;Romania;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +23702;Romania;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;1;0;Young +23703;Romania;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;12;1;4.5728728675950726e-08;20121494;5.963771874990992e-07;1;0;Young +23704;Romania;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;14;1;5.335018345527585e-08;20121494;6.957733854156158e-07;0;1;Old +23705;Romania;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;1;0;Young +23706;Romania;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;20;1;7.621454779325121e-08;20121494;9.939619791651655e-07;1;0;Young +23707;Romania;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23708;Romania;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;1;0;Young +23709;Romania;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;1;0;Young +23710;Romania;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;1;0;Young +23711;Romania;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;1;0;Young +23712;Romania;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;51;1;1.943470968727906e-07;20121494;2.5346030468711718e-06;1;0;Young +23713;Romania;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;32;1;1.2194327646920193e-07;20121494;1.5903391666642647e-06;0;1;Old +23714;Romania;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;85;1;3.239118281213176e-07;20121494;4.224338411451953e-06;1;0;Young +23715;Romania;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;665;1;2.534133714125603e-06;20121494;3.304923580724175e-05;1;0;Young +23716;Romania;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;229;1;8.726565722327264e-07;20121494;1.1380864661441143e-05;0;1;Old +23717;Romania;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;10;1;3.8107273896625604e-08;20121494;4.969809895825827e-07;0;1;Old +23718;Romania;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;30;1;1.1432182168987682e-07;20121494;1.490942968747748e-06;1;0;Young +23719;Romania;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;479;1;1.8253384196483665e-06;20121494;2.380538940100571e-05;1;0;Young +23720;Romania;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;266;1;1.013653485650241e-06;20121494;1.32196943228967e-05;0;1;Old +23721;Romania;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;38;1;1.448076408071773e-07;20121494;1.8885277604138143e-06;0;1;Old +23722;Romania;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;1;0;Young +23723;Romania;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;71;1;2.705616446660418e-07;20121494;3.5285650260363372e-06;1;0;Young +23724;Romania;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;44;1;1.6767200514515266e-07;20121494;2.186716354163364e-06;0;1;Old +23725;Romania;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +23726;Romania;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;1;0;Young +23727;Romania;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;34;1;1.2956473124852705e-07;20121494;1.6897353645807811e-06;1;0;Young +23728;Romania;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +23729;Romania;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;0;1;Old +23730;Romania;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;1;0;Young +23731;Romania;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;45;1;1.7148273253481523e-07;20121494;2.236414453121622e-06;1;0;Young +23732;Romania;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;30;1;1.1432182168987682e-07;20121494;1.490942968747748e-06;0;1;Old +23733;Romania;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;54;1;2.0577927904177827e-07;20121494;2.6836973437459464e-06;1;0;Young +23734;Romania;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;232;1;8.840887544017141e-07;20121494;1.1529958958315919e-05;1;0;Young +23735;Romania;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;127;1;4.839623784871452e-07;20121494;6.3116585676988e-06;0;1;Old +23736;Romania;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;24;1;9.145745735190145e-08;20121494;1.1927543749981984e-06;0;1;Old +23737;Romania;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1162;1;4.4280652267878955e-06;20121494;5.774919098949611e-05;1;0;Young +23738;Romania;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2940;1;1.1203538525607928e-05;20121494;0.00014611241093727932;1;0;Young +23739;Romania;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1624;1;6.1886212808119984e-06;20121494;8.070971270821143e-05;0;1;Old +23740;Romania;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;424;1;1.6157484132169256e-06;20121494;2.1071993958301504e-05;0;1;Old +23741;Romania;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +23742;Romania;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;235;1;8.955209365707018e-07;20121494;1.1679053255190693e-05;1;0;Young +23743;Romania;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;843;1;3.2124431894855386e-06;20121494;4.189549742181172e-05;1;0;Young +23744;Romania;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;211;1;8.040634792188003e-07;20121494;1.0486298880192494e-05;0;1;Old +23745;Romania;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +23746;Romania;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;86;1;3.277225555109802e-07;20121494;4.274036510410211e-06;1;0;Young +23747;Romania;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;961;1;3.662109021465721e-06;20121494;4.775987309888619e-05;1;0;Young +23748;Romania;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;239;1;9.10763846129352e-07;20121494;1.1877845651023726e-05;0;1;Old +23749;Romania;F;Craft and related trades workers;Manufacturing   ;Y15-29;48493;1;0.00018479360330690654;20121494;0.0024100099127828184;1;0;Young +23750;Romania;F;Craft and related trades workers;Manufacturing   ;Y30-49;180899;1;0.0006893567740625675;20121494;0.008990336403449962;1;0;Young +23751;Romania;F;Craft and related trades workers;Manufacturing   ;Y50-64;36843;1;0.00014039862921733773;20121494;0.0018310270599191094;0;1;Old +23752;Romania;F;Craft and related trades workers;Manufacturing   ;Y65-84;97;1;3.6964055679726836e-07;20121494;4.820715598951052e-06;0;1;Old +23753;Romania;F;Craft and related trades workers;Manufacturing   ;Y_GE85;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +23754;Romania;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;148;1;5.63987653670059e-07;20121494;7.355318645822224e-06;1;0;Young +23755;Romania;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1767;1;6.733555297533744e-06;20121494;8.781654085924236e-05;1;0;Young +23756;Romania;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;751;1;2.861856269636583e-06;20121494;3.732327231765196e-05;0;1;Old +23757;Romania;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23758;Romania;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;66;1;2.51508007717729e-07;20121494;3.2800745312450456e-06;1;0;Young +23759;Romania;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;593;1;2.2597613420698985e-06;20121494;2.9470972682247153e-05;1;0;Young +23760;Romania;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;324;1;1.2346756742506695e-06;20121494;1.610218406247568e-05;0;1;Old +23761;Romania;F;Craft and related trades workers;Construction   ;Y15-29;1885;1;7.183221129513926e-06;20121494;9.368091653631684e-05;1;0;Young +23762;Romania;F;Craft and related trades workers;Construction   ;Y30-49;6793;1;2.5886271157977774e-05;20121494;0.0003375991862234484;1;0;Young +23763;Romania;F;Craft and related trades workers;Construction   ;Y50-64;2000;1;7.621454779325121e-06;20121494;9.939619791651653e-05;0;1;Old +23764;Romania;F;Craft and related trades workers;Construction   ;Y65-84;29;1;1.1051109430021426e-07;20121494;1.4412448697894899e-06;0;1;Old +23765;Romania;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1251;1;4.767219964467864e-06;20121494;6.217232179678109e-05;1;0;Young +23766;Romania;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4150;1;1.5814518667099627e-05;20121494;0.00020624711067677182;1;0;Young +23767;Romania;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1057;1;4.027938850873327e-06;20121494;5.253089059887899e-05;0;1;Old +23768;Romania;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23769;Romania;F;Craft and related trades workers;Transportation and storage   ;Y15-29;124;1;4.725301963181575e-07;20121494;6.162564270824025e-06;1;0;Young +23770;Romania;F;Craft and related trades workers;Transportation and storage   ;Y30-49;1612;1;6.142892552136047e-06;20121494;8.011333552071233e-05;1;0;Young +23771;Romania;F;Craft and related trades workers;Transportation and storage   ;Y50-64;595;1;2.2673827968492233e-06;20121494;2.957036888016367e-05;0;1;Old +23772;Romania;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;774;1;2.9495029995988217e-06;20121494;3.84663285936919e-05;1;0;Young +23773;Romania;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;2168;1;8.261656980788432e-06;20121494;0.00010774547854150393;1;0;Young +23774;Romania;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;560;1;2.134007338211034e-06;20121494;2.783093541662463e-05;0;1;Old +23775;Romania;F;Craft and related trades workers;Information and communication   ;Y15-29;465;1;1.7719882361930907e-06;20121494;2.3109616015590096e-05;1;0;Young +23776;Romania;F;Craft and related trades workers;Information and communication   ;Y30-49;1571;1;5.986652729159882e-06;20121494;7.807571346342374e-05;1;0;Young +23777;Romania;F;Craft and related trades workers;Information and communication   ;Y50-64;444;1;1.691962961010177e-06;20121494;2.2065955937466673e-05;0;1;Old +23778;Romania;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;1;0;Young +23779;Romania;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;56;1;2.134007338211034e-07;20121494;2.783093541662463e-06;1;0;Young +23780;Romania;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;0;1;Old +23781;Romania;F;Craft and related trades workers;Real estate activities   ;Y15-29;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;1;0;Young +23782;Romania;F;Craft and related trades workers;Real estate activities   ;Y30-49;20;1;7.621454779325121e-08;20121494;9.939619791651655e-07;1;0;Young +23783;Romania;F;Craft and related trades workers;Real estate activities   ;Y50-64;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +23784;Romania;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;142;1;5.411232893320836e-07;20121494;7.0571300520726745e-06;1;0;Young +23785;Romania;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;546;1;2.080657154755758e-06;20121494;2.7135162031209014e-05;1;0;Young +23786;Romania;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;214;1;8.15495661387788e-07;20121494;1.063539317706727e-05;0;1;Old +23787;Romania;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;234;1;8.917102091810392e-07;20121494;1.1629355156232435e-05;1;0;Young +23788;Romania;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;496;1;1.89012078527263e-06;20121494;2.46502570832961e-05;1;0;Young +23789;Romania;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;139;1;5.296911071630959e-07;20121494;6.908035755197899e-06;0;1;Old +23790;Romania;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;164;1;6.2495929190466e-07;20121494;8.150488229154355e-06;1;0;Young +23791;Romania;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;756;1;2.8809099065848957e-06;20121494;3.757176281244325e-05;1;0;Young +23792;Romania;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;387;1;1.4747514997994108e-06;20121494;1.923316429684595e-05;0;1;Old +23793;Romania;F;Craft and related trades workers;Education   ;Y15-29;46;1;1.7529345992447778e-07;20121494;2.2861125520798805e-06;1;0;Young +23794;Romania;F;Craft and related trades workers;Education   ;Y30-49;390;1;1.4861836819683986e-06;20121494;1.9382258593720725e-05;1;0;Young +23795;Romania;F;Craft and related trades workers;Education   ;Y50-64;274;1;1.0441393047675416e-06;20121494;1.3617279114562765e-05;0;1;Old +23796;Romania;F;Craft and related trades workers;Education   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +23797;Romania;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;75;1;2.8580455422469204e-07;20121494;3.72735742186937e-06;1;0;Young +23798;Romania;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;533;1;2.0311176986901446e-06;20121494;2.6489086744751657e-05;1;0;Young +23799;Romania;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;327;1;1.2461078564196573e-06;20121494;1.6251278359350453e-05;0;1;Old +23800;Romania;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23801;Romania;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;90;1;3.4296546506963047e-07;20121494;4.472828906243244e-06;1;0;Young +23802;Romania;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;373;1;1.421401316344135e-06;20121494;1.8537390911430334e-05;1;0;Young +23803;Romania;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;178;1;6.783094753599357e-07;20121494;8.846261614569971e-06;0;1;Old +23804;Romania;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23805;Romania;F;Craft and related trades workers;Other service activities   ;Y15-29;454;1;1.7300702349068025e-06;20121494;2.2562936927049255e-05;1;0;Young +23806;Romania;F;Craft and related trades workers;Other service activities   ;Y30-49;1544;1;5.883763089638994e-06;20121494;7.673386479155076e-05;1;0;Young +23807;Romania;F;Craft and related trades workers;Other service activities   ;Y50-64;530;1;2.0196855165211572e-06;20121494;2.6339992447876884e-05;0;1;Old +23808;Romania;F;Craft and related trades workers;Other service activities   ;Y65-84;8;1;3.048581911730048e-08;20121494;3.9758479166606616e-07;0;1;Old +23809;Romania;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;1;0;Young +23810;Romania;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;8;1;3.048581911730048e-08;20121494;3.9758479166606616e-07;1;0;Young +23811;Romania;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23812;Romania;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;89;1;3.3915473767996787e-07;20121494;4.423130807284986e-06;1;0;Young +23813;Romania;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;336;1;1.2804044029266203e-06;20121494;1.6698561249974777e-05;1;0;Young +23814;Romania;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;90;1;3.4296546506963047e-07;20121494;4.472828906243244e-06;0;1;Old +23815;Romania;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23816;Romania;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;128;1;4.877731058768077e-07;20121494;6.361356666657059e-06;1;0;Young +23817;Romania;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;1448;1;5.5179332602313875e-06;20121494;7.196284729155797e-05;1;0;Young +23818;Romania;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;400;1;1.5242909558650242e-06;20121494;1.9879239583303308e-05;0;1;Old +23819;Romania;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;23751;1;9.050858623187547e-05;20121494;0.001180379548357592;1;0;Young +23820;Romania;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;82163;1;0.00031310079451684497;20121494;0.004083344904707374;1;0;Young +23821;Romania;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;14995;1;5.71418572079901e-05;20121494;0.0007452229938790827;0;1;Old +23822;Romania;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;36;1;1.3718618602785217e-07;20121494;1.7891315624972976e-06;0;1;Old +23823;Romania;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;1;0;Young +23824;Romania;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;610;1;2.324543707694162e-06;20121494;3.0315840364537544e-05;1;0;Young +23825;Romania;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;296;1;1.127975307340118e-06;20121494;1.4710637291644447e-05;0;1;Old +23826;Romania;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;41;1;1.56239822976165e-07;20121494;2.037622057288589e-06;1;0;Young +23827;Romania;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;190;1;7.240382040358865e-07;20121494;9.442638802069071e-06;1;0;Young +23828;Romania;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;69;1;2.629401898867167e-07;20121494;3.4291688281198206e-06;0;1;Old +23829;Romania;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;163;1;6.211485645149974e-07;20121494;8.100790130196097e-06;1;0;Young +23830;Romania;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;587;1;2.236896977731923e-06;20121494;2.9172784088497605e-05;1;0;Young +23831;Romania;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;150;1;5.716091084493841e-07;20121494;7.45471484373874e-06;0;1;Old +23832;Romania;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;565;1;2.1530609751593466e-06;20121494;2.807942591141592e-05;1;0;Young +23833;Romania;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1493;1;5.689415992766203e-06;20121494;7.41992617446796e-05;1;0;Young +23834;Romania;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;309;1;1.1775147634057311e-06;20121494;1.5356712578101804e-05;0;1;Old +23835;Romania;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;1012;1;3.856456118338511e-06;20121494;5.029447614575737e-05;1;0;Young +23836;Romania;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;4219;1;1.607745885698634e-05;20121494;0.00020967627950489165;1;0;Young +23837;Romania;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;1051;1;4.005074486535351e-06;20121494;5.223270200512944e-05;0;1;Old +23838;Romania;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23839;Romania;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;23;1;8.764672996223889e-08;20121494;1.1430562760399403e-06;1;0;Young +23840;Romania;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;60;1;2.2864364337975364e-07;20121494;2.981885937495496e-06;1;0;Young +23841;Romania;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;17;1;6.478236562426352e-08;20121494;8.448676822903906e-07;0;1;Old +23842;Romania;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;25;1;9.526818474156401e-08;20121494;1.2424524739564567e-06;1;0;Young +23843;Romania;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;85;1;3.239118281213176e-07;20121494;4.224338411451953e-06;1;0;Young +23844;Romania;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +23845;Romania;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;1;0;Young +23846;Romania;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;12;1;4.5728728675950726e-08;20121494;5.963771874990992e-07;1;0;Young +23847;Romania;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;1;0;Young +23848;Romania;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;12;1;4.5728728675950726e-08;20121494;5.963771874990992e-07;1;0;Young +23849;Romania;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23850;Romania;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;43;1;1.638612777554901e-07;20121494;2.1370182552051055e-06;1;0;Young +23851;Romania;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;186;1;7.087952944772362e-07;20121494;9.243846406236038e-06;1;0;Young +23852;Romania;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;72;1;2.7437237205570434e-07;20121494;3.578263124994595e-06;0;1;Old +23853;Romania;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;130;1;4.953945606561329e-07;20121494;6.460752864573575e-06;1;0;Young +23854;Romania;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;330;1;1.257540038588645e-06;20121494;1.640037265622523e-05;1;0;Young +23855;Romania;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;94;1;3.582083746282807e-07;20121494;4.671621302076277e-06;0;1;Old +23856;Romania;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;216;1;8.231171161671131e-07;20121494;1.0734789374983785e-05;1;0;Young +23857;Romania;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;688;1;2.621780444087842e-06;20121494;3.419229208328169e-05;1;0;Young +23858;Romania;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;208;1;7.926312970498126e-07;20121494;1.033720458331772e-05;0;1;Old +23859;Romania;F;Plant and machine operators, and assemblers;Education   ;Y15-29;32;1;1.2194327646920193e-07;20121494;1.5903391666642647e-06;1;0;Young +23860;Romania;F;Plant and machine operators, and assemblers;Education   ;Y30-49;279;1;1.0631929417158544e-06;20121494;1.3865769609354058e-05;1;0;Young +23861;Romania;F;Plant and machine operators, and assemblers;Education   ;Y50-64;137;1;5.220696523837708e-07;20121494;6.808639557281382e-06;0;1;Old +23862;Romania;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;43;1;1.638612777554901e-07;20121494;2.1370182552051055e-06;1;0;Young +23863;Romania;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;616;1;2.347408072032137e-06;20121494;3.061402895828709e-05;1;0;Young +23864;Romania;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;384;1;1.4633193176304232e-06;20121494;1.9084069999971174e-05;0;1;Old +23865;Romania;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;31;1;1.1813254907953938e-07;20121494;1.5406410677060063e-06;1;0;Young +23866;Romania;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;68;1;2.591294624970541e-07;20121494;3.3794707291615622e-06;1;0;Young +23867;Romania;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;20;1;7.621454779325121e-08;20121494;9.939619791651655e-07;0;1;Old +23868;Romania;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;165;1;6.287700192943225e-07;20121494;8.200186328112615e-06;1;0;Young +23869;Romania;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;536;1;2.0425498808591324e-06;20121494;2.663818104162643e-05;1;0;Young +23870;Romania;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;133;1;5.068267428251205e-07;20121494;6.60984716144835e-06;0;1;Old +23871;Romania;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;1;0;Young +23872;Romania;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;18796;1;7.162643201609749e-05;20121494;0.0009341254680194224;1;0;Young +23873;Romania;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;37788;1;0.00014399976660056885;20121494;0.0018779917634346634;1;0;Young +23874;Romania;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;25144;1;9.581692948567542e-05;20121494;0.0012496090002064458;0;1;Old +23875;Romania;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;33457;1;0.0001274955062759403;20121494;0.001662749296846447;0;1;Old +23876;Romania;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;2577;1;9.820244483160419e-06;20121494;0.00012807200101543157;0;1;Old +23877;Romania;F;Elementary occupations;Mining and quarrying   ;Y15-29;246;1;9.374389378569899e-07;20121494;1.2225732343731535e-05;1;0;Young +23878;Romania;F;Elementary occupations;Mining and quarrying   ;Y30-49;636;1;2.4236226198253887e-06;20121494;3.1607990937452256e-05;1;0;Young +23879;Romania;F;Elementary occupations;Mining and quarrying   ;Y50-64;189;1;7.202274766462239e-07;20121494;9.392940703110813e-06;0;1;Old +23880;Romania;F;Elementary occupations;Manufacturing   ;Y15-29;18449;1;7.030410961188457e-05;20121494;0.0009168802276809068;1;0;Young +23881;Romania;F;Elementary occupations;Manufacturing   ;Y30-49;45544;1;0.00017355576823479166;20121494;0.0022634502189549147;1;0;Young +23882;Romania;F;Elementary occupations;Manufacturing   ;Y50-64;8803;1;3.354583321119952e-05;20121494;0.0004374923651295475;0;1;Old +23883;Romania;F;Elementary occupations;Manufacturing   ;Y65-84;56;1;2.134007338211034e-07;20121494;2.783093541662463e-06;0;1;Old +23884;Romania;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;108;1;4.1155855808355654e-07;20121494;5.367394687491893e-06;1;0;Young +23885;Romania;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;926;1;3.528733562827531e-06;20121494;4.602043963534716e-05;1;0;Young +23886;Romania;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;332;1;1.2651614933679701e-06;20121494;1.6499768854141746e-05;0;1;Old +23887;Romania;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1318;1;5.0225386995752545e-06;20121494;6.55020944269844e-05;1;0;Young +23888;Romania;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;4989;1;1.9011718947026514e-05;20121494;0.0002479438157027505;1;0;Young +23889;Romania;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1319;1;5.026349426964917e-06;20121494;6.555179252594265e-05;0;1;Old +23890;Romania;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +23891;Romania;F;Elementary occupations;Construction   ;Y15-29;2150;1;8.193063887774505e-06;20121494;0.00010685091276025527;1;0;Young +23892;Romania;F;Elementary occupations;Construction   ;Y30-49;6959;1;2.651885190466176e-05;20121494;0.0003458490706505193;1;0;Young +23893;Romania;F;Elementary occupations;Construction   ;Y50-64;1950;1;7.430918409841993e-06;20121494;9.691129296860362e-05;0;1;Old +23894;Romania;F;Elementary occupations;Construction   ;Y65-84;22;1;8.383600257257633e-08;20121494;1.093358177081682e-06;0;1;Old +23895;Romania;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6531;1;2.4887860581886183e-05;20121494;0.00032457828429638473;1;0;Young +23896;Romania;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;14768;1;5.627682209053669e-05;20121494;0.0007339415254155581;1;0;Young +23897;Romania;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4085;1;1.556682138677156e-05;20121494;0.00020301673424448502;0;1;Old +23898;Romania;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;41;1;1.56239822976165e-07;20121494;2.037622057288589e-06;0;1;Old +23899;Romania;F;Elementary occupations;Transportation and storage   ;Y15-29;679;1;2.587483897580879e-06;20121494;3.374500919265737e-05;1;0;Young +23900;Romania;F;Elementary occupations;Transportation and storage   ;Y30-49;2930;1;1.1165431251711302e-05;20121494;0.00014561542994769673;1;0;Young +23901;Romania;F;Elementary occupations;Transportation and storage   ;Y50-64;1084;1;4.130828490394216e-06;20121494;5.3872739270751964e-05;0;1;Old +23902;Romania;F;Elementary occupations;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23903;Romania;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;3458;1;1.3177495313453135e-05;20121494;0.0001718560261976571;1;0;Young +23904;Romania;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;6931;1;2.6412151537751206e-05;20121494;0.00034445752387968806;1;0;Young +23905;Romania;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;2075;1;7.907259333549814e-06;20121494;0.00010312355533838591;0;1;Old +23906;Romania;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;0;1;Old +23907;Romania;F;Elementary occupations;Information and communication   ;Y15-29;300;1;1.1432182168987682e-06;20121494;1.490942968747748e-05;1;0;Young +23908;Romania;F;Elementary occupations;Information and communication   ;Y30-49;1061;1;4.043181760431977e-06;20121494;5.2729682994712025e-05;1;0;Young +23909;Romania;F;Elementary occupations;Information and communication   ;Y50-64;387;1;1.4747514997994108e-06;20121494;1.923316429684595e-05;0;1;Old +23910;Romania;F;Elementary occupations;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +23911;Romania;F;Elementary occupations;Financial and insurance activities   ;Y15-29;102;1;3.886941937455812e-07;20121494;5.0692060937423436e-06;1;0;Young +23912;Romania;F;Elementary occupations;Financial and insurance activities   ;Y30-49;625;1;2.3817046185391005e-06;20121494;3.106131184891142e-05;1;0;Young +23913;Romania;F;Elementary occupations;Financial and insurance activities   ;Y50-64;349;1;1.3299438589922337e-06;20121494;1.7344636536432137e-05;0;1;Old +23914;Romania;F;Elementary occupations;Financial and insurance activities   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +23915;Romania;F;Elementary occupations;Real estate activities   ;Y15-29;111;1;4.2299074025254424e-07;20121494;5.516488984366668e-06;1;0;Young +23916;Romania;F;Elementary occupations;Real estate activities   ;Y30-49;716;1;2.7284808109983934e-06;20121494;3.558383885411292e-05;1;0;Young +23917;Romania;F;Elementary occupations;Real estate activities   ;Y50-64;398;1;1.516669501085699e-06;20121494;1.9779843385386792e-05;0;1;Old +23918;Romania;F;Elementary occupations;Real estate activities   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +23919;Romania;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;411;1;1.5662089571513124e-06;20121494;2.0425918671844148e-05;1;0;Young +23920;Romania;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;1413;1;5.384557801593198e-06;20121494;7.022341382801894e-05;1;0;Young +23921;Romania;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;648;1;2.469351348501339e-06;20121494;3.220436812495136e-05;0;1;Old +23922;Romania;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +23923;Romania;F;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +23924;Romania;F;Elementary occupations;Administrative and support service activities   ;Y15-29;2329;1;8.875184090524104e-06;20121494;0.00011574687247378351;1;0;Young +23925;Romania;F;Elementary occupations;Administrative and support service activities   ;Y30-49;8767;1;3.340864702517167e-05;20121494;0.00043570323356705026;1;0;Young +23926;Romania;F;Elementary occupations;Administrative and support service activities   ;Y50-64;2945;1;1.122259216255624e-05;20121494;0.0001463609014320706;0;1;Old +23927;Romania;F;Elementary occupations;Administrative and support service activities   ;Y65-84;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;0;1;Old +23928;Romania;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;1663;1;6.337239649008838e-06;20121494;8.26479385675835e-05;1;0;Young +23929;Romania;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;7281;1;2.7745906124133103e-05;20121494;0.0003618518585150785;1;0;Young +23930;Romania;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;3818;1;1.4549357173731656e-05;20121494;0.00018974734182263008;0;1;Old +23931;Romania;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;46;1;1.7529345992447778e-07;20121494;2.2861125520798805e-06;0;1;Old +23932;Romania;F;Elementary occupations;Education   ;Y15-29;1065;1;4.058424669990627e-06;20121494;5.292847539054506e-05;1;0;Young +23933;Romania;F;Elementary occupations;Education   ;Y30-49;12725;1;4.8491506033456085e-05;20121494;0.0006324083092438365;1;0;Young +23934;Romania;F;Elementary occupations;Education   ;Y50-64;7870;1;2.9990424556644353e-05;20121494;0.0003911240388014926;0;1;Old +23935;Romania;F;Elementary occupations;Education   ;Y65-84;31;1;1.1813254907953938e-07;20121494;1.5406410677060063e-06;0;1;Old +23936;Romania;F;Elementary occupations;Human health and social work activities   ;Y15-29;460;1;1.752934599244778e-06;20121494;2.2861125520798803e-05;1;0;Young +23937;Romania;F;Elementary occupations;Human health and social work activities   ;Y30-49;5302;1;2.0204476619990896e-05;20121494;0.00026349932067668534;1;0;Young +23938;Romania;F;Elementary occupations;Human health and social work activities   ;Y50-64;3020;1;1.1508396716780932e-05;20121494;0.00015008825885393998;0;1;Old +23939;Romania;F;Elementary occupations;Human health and social work activities   ;Y65-84;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +23940;Romania;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;369;1;1.4061584067854849e-06;20121494;1.8338598515597302e-05;1;0;Young +23941;Romania;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;1635;1;6.230539282098286e-06;20121494;8.125639179675226e-05;1;0;Young +23942;Romania;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;865;1;3.296279192058115e-06;20121494;4.29888555988934e-05;0;1;Old +23943;Romania;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;10;1;3.8107273896625604e-08;20121494;4.969809895825827e-07;0;1;Old +23944;Romania;F;Elementary occupations;Other service activities   ;Y15-29;2226;1;8.48267916938886e-06;20121494;0.0001106279682810829;1;0;Young +23945;Romania;F;Elementary occupations;Other service activities   ;Y30-49;8434;1;3.213967480441403e-05;20121494;0.00041915376661395023;1;0;Young +23946;Romania;F;Elementary occupations;Other service activities   ;Y50-64;3847;1;1.4659868268031871e-05;20121494;0.00019118858669241957;0;1;Old +23947;Romania;F;Elementary occupations;Other service activities   ;Y65-84;90;1;3.4296546506963047e-07;20121494;4.472828906243244e-06;0;1;Old +23948;Romania;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;19329;1;7.365754971478764e-05;20121494;0.0009606145547641741;1;0;Young +23949;Romania;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;37713;1;0.00014371396204634416;20121494;0.0018742644060127942;1;0;Young +23950;Romania;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;10433;1;3.975731885634949e-05;20121494;0.0005185002664315086;0;1;Old +23951;Romania;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;458;1;1.7453131444654527e-06;20121494;2.2761729322882287e-05;0;1;Old +23952;Romania;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +23953;Romania;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;1;0;Young +23954;Romania;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;73;1;2.7818309944536694e-07;20121494;3.6279612239528535e-06;1;0;Young +23955;Romania;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;25;1;9.526818474156401e-08;20121494;1.2424524739564567e-06;0;1;Old +23956;Romania;M;Not applicable;Not applicable  ;Y15-29;1007398;1;0.0038389191508912844;20121494;0.05006576549435146;1;0;Young +23957;Romania;M;Not applicable;Not applicable  ;Y30-49;464449;1;0.0017698885254013865;20121494;0.023082232363064094;1;0;Young +23958;Romania;M;Not applicable;Not applicable  ;Y50-64;787231;1;0.0029999227336914474;20121494;0.03912388414100861;0;1;Old +23959;Romania;M;Not applicable;Not applicable  ;Y65-84;852650;1;0.003249216708795782;20121494;0.04237508407675891;0;1;Old +23960;Romania;M;Not applicable;Not applicable  ;Y_GE85;74415;1;0.00028357527870173947;20121494;0.003698284033978789;0;1;Old +23961;Romania;M;Not applicable;Not applicable  ;Y_LT15;1638311;1;0.006243156600485459;20121494;0.08142094220240306;0;1;Old +23962;Romania;M;Managers;Agriculture, forestry and fishing   ;Y15-29;752;1;2.8656669970262457e-06;20121494;3.7372970416610215e-05;1;0;Young +23963;Romania;M;Managers;Agriculture, forestry and fishing   ;Y30-49;4084;1;1.55630106593819e-05;20121494;0.00020296703614552678;1;0;Young +23964;Romania;M;Managers;Agriculture, forestry and fishing   ;Y50-64;2056;1;7.834855513146224e-06;20121494;0.000102179291458179;0;1;Old +23965;Romania;M;Managers;Agriculture, forestry and fishing   ;Y65-84;81;1;3.086689185626674e-07;20121494;4.02554601561892e-06;0;1;Old +23966;Romania;M;Managers;Mining and quarrying   ;Y15-29;95;1;3.6201910201794326e-07;20121494;4.721319401034536e-06;1;0;Young +23967;Romania;M;Managers;Mining and quarrying   ;Y30-49;854;1;3.2543611907718268e-06;20121494;4.244217651035256e-05;1;0;Young +23968;Romania;M;Managers;Mining and quarrying   ;Y50-64;525;1;2.0006318795728442e-06;20121494;2.609150195308559e-05;0;1;Old +23969;Romania;M;Managers;Mining and quarrying   ;Y65-84;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +23970;Romania;M;Managers;Manufacturing   ;Y15-29;2378;1;9.06190973261757e-06;20121494;0.00011818207932273816;1;0;Young +23971;Romania;M;Managers;Manufacturing   ;Y30-49;11603;1;4.421586990225469e-05;20121494;0.0005766470422126707;1;0;Young +23972;Romania;M;Managers;Manufacturing   ;Y50-64;4994;1;1.903077258397483e-05;20121494;0.00024819230619754177;0;1;Old +23973;Romania;M;Managers;Manufacturing   ;Y65-84;153;1;5.830412906183718e-07;20121494;7.603809140613515e-06;0;1;Old +23974;Romania;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;143;1;5.449340167217462e-07;20121494;7.106828151030932e-06;1;0;Young +23975;Romania;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1232;1;4.694816144064274e-06;20121494;6.122805791657418e-05;1;0;Young +23976;Romania;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;812;1;3.0943106404059992e-06;20121494;4.035485635410572e-05;0;1;Old +23977;Romania;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;0;1;Old +23978;Romania;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;226;1;8.612243900637387e-07;20121494;1.1231770364566368e-05;1;0;Young +23979;Romania;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1236;1;4.710059053622925e-06;20121494;6.142685031240721e-05;1;0;Young +23980;Romania;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;881;1;3.3572508302927157e-06;20121494;4.378402518222553e-05;0;1;Old +23981;Romania;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;0;1;Old +23982;Romania;M;Managers;Construction   ;Y15-29;1211;1;4.61479086888136e-06;20121494;6.0184397838450766e-05;1;0;Young +23983;Romania;M;Managers;Construction   ;Y30-49;6304;1;2.402282546443278e-05;20121494;0.0003132968158328601;1;0;Young +23984;Romania;M;Managers;Construction   ;Y50-64;3203;1;1.2205759829089182e-05;20121494;0.00015918301096330123;0;1;Old +23985;Romania;M;Managers;Construction   ;Y65-84;92;1;3.5058691984895557e-07;20121494;4.572225104159761e-06;0;1;Old +23986;Romania;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5889;1;2.244137359772282e-05;20121494;0.0002926721047651829;1;0;Young +23987;Romania;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;23259;1;8.863370835616149e-05;20121494;0.001155928083670129;1;0;Young +23988;Romania;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;6516;1;2.4830699671041246e-05;20121494;0.00032383281281201087;0;1;Old +23989;Romania;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;172;1;6.554451110219605e-07;20121494;8.548073020820422e-06;0;1;Old +23990;Romania;M;Managers;Transportation and storage   ;Y15-29;830;1;3.162903733419925e-06;20121494;4.1249422135354366e-05;1;0;Young +23991;Romania;M;Managers;Transportation and storage   ;Y30-49;4010;1;1.5281016832546866e-05;20121494;0.00019928937682261565;1;0;Young +23992;Romania;M;Managers;Transportation and storage   ;Y50-64;1344;1;5.121617611706481e-06;20121494;6.679424499989911e-05;0;1;Old +23993;Romania;M;Managers;Transportation and storage   ;Y65-84;21;1;8.002527518291377e-08;20121494;1.0436600781234236e-06;0;1;Old +23994;Romania;M;Managers;Accommodation and food service activities   ;Y15-29;723;1;2.755155902726031e-06;20121494;3.593172554682073e-05;1;0;Young +23995;Romania;M;Managers;Accommodation and food service activities   ;Y30-49;2033;1;7.747208783183986e-06;20121494;0.00010103623518213906;1;0;Young +23996;Romania;M;Managers;Accommodation and food service activities   ;Y50-64;671;1;2.556998078463578e-06;20121494;3.33474244009913e-05;0;1;Old +23997;Romania;M;Managers;Accommodation and food service activities   ;Y65-84;25;1;9.526818474156401e-08;20121494;1.2424524739564567e-06;0;1;Old +23998;Romania;M;Managers;Information and communication   ;Y15-29;1056;1;4.024128123483664e-06;20121494;5.248119249992073e-05;1;0;Young +23999;Romania;M;Managers;Information and communication   ;Y30-49;3510;1;1.3375653137715588e-05;20121494;0.00017444032734348654;1;0;Young +24000;Romania;M;Managers;Information and communication   ;Y50-64;705;1;2.686562809712105e-06;20121494;3.503715976557208e-05;0;1;Old +24001;Romania;M;Managers;Information and communication   ;Y65-84;26;1;9.907891213122657e-08;20121494;1.292150572914715e-06;0;1;Old +24002;Romania;M;Managers;Financial and insurance activities   ;Y15-29;444;1;1.691962961010177e-06;20121494;2.2065955937466673e-05;1;0;Young +24003;Romania;M;Managers;Financial and insurance activities   ;Y30-49;2078;1;7.918691515718801e-06;20121494;0.00010327264963526068;1;0;Young +24004;Romania;M;Managers;Financial and insurance activities   ;Y50-64;510;1;1.943470968727906e-06;20121494;2.5346030468711715e-05;0;1;Old +24005;Romania;M;Managers;Financial and insurance activities   ;Y65-84;16;1;6.097163823460096e-08;20121494;7.951695833321323e-07;0;1;Old +24006;Romania;M;Managers;Real estate activities   ;Y15-29;176;1;6.706880205806106e-07;20121494;8.746865416653455e-06;1;0;Young +24007;Romania;M;Managers;Real estate activities   ;Y30-49;1052;1;4.008885213925014e-06;20121494;5.22824001040877e-05;1;0;Young +24008;Romania;M;Managers;Real estate activities   ;Y50-64;378;1;1.4404549532924478e-06;20121494;1.8785881406221627e-05;0;1;Old +24009;Romania;M;Managers;Real estate activities   ;Y65-84;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;0;1;Old +24010;Romania;M;Managers;Professional, scientific and technical activities   ;Y15-29;840;1;3.2010110073165508e-06;20121494;4.1746403124936945e-05;1;0;Young +24011;Romania;M;Managers;Professional, scientific and technical activities   ;Y30-49;3572;1;1.3611918235874666e-05;20121494;0.00017752160947889854;1;0;Young +24012;Romania;M;Managers;Professional, scientific and technical activities   ;Y50-64;1104;1;4.207043038187467e-06;20121494;5.486670124991713e-05;0;1;Old +24013;Romania;M;Managers;Professional, scientific and technical activities   ;Y65-84;86;1;3.277225555109802e-07;20121494;4.274036510410211e-06;0;1;Old +24014;Romania;M;Managers;Administrative and support service activities   ;Y15-29;544;1;2.073035699976433e-06;20121494;2.7035765833292498e-05;1;0;Young +24015;Romania;M;Managers;Administrative and support service activities   ;Y30-49;2172;1;8.27689989034708e-06;20121494;0.00010794427093733696;1;0;Young +24016;Romania;M;Managers;Administrative and support service activities   ;Y50-64;728;1;2.774209539674344e-06;20121494;3.618021604161202e-05;0;1;Old +24017;Romania;M;Managers;Administrative and support service activities   ;Y65-84;21;1;8.002527518291377e-08;20121494;1.0436600781234236e-06;0;1;Old +24018;Romania;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;901;1;3.433465378085967e-06;20121494;4.47779871613907e-05;1;0;Young +24019;Romania;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;8145;1;3.1038374588801556e-05;20121494;0.0004047910160150136;1;0;Young +24020;Romania;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;4514;1;1.7201623436936797e-05;20121494;0.00022433721869757783;0;1;Old +24021;Romania;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;175;1;6.668772931909481e-07;20121494;8.697167317695197e-06;0;1;Old +24022;Romania;M;Managers;Education   ;Y15-29;171;1;6.516343836322978e-07;20121494;8.498374921862164e-06;1;0;Young +24023;Romania;M;Managers;Education   ;Y30-49;1474;1;5.617012172362614e-06;20121494;7.325499786447269e-05;1;0;Young +24024;Romania;M;Managers;Education   ;Y50-64;922;1;3.5134906532688806e-06;20121494;4.582164723951412e-05;0;1;Old +24025;Romania;M;Managers;Education   ;Y65-84;32;1;1.2194327646920193e-07;20121494;1.5903391666642647e-06;0;1;Old +24026;Romania;M;Managers;Human health and social work activities   ;Y15-29;197;1;7.507132957635244e-07;20121494;9.790525494776878e-06;1;0;Young +24027;Romania;M;Managers;Human health and social work activities   ;Y30-49;1495;1;5.697037447545528e-06;20121494;7.429865794259612e-05;1;0;Young +24028;Romania;M;Managers;Human health and social work activities   ;Y50-64;851;1;3.242929008602839e-06;20121494;4.229308221347779e-05;0;1;Old +24029;Romania;M;Managers;Human health and social work activities   ;Y65-84;48;1;1.829149147038029e-07;20121494;2.3855087499963968e-06;0;1;Old +24030;Romania;M;Managers;Arts, entertainment and recreation   ;Y15-29;375;1;1.4290227711234603e-06;20121494;1.863678710934685e-05;1;0;Young +24031;Romania;M;Managers;Arts, entertainment and recreation   ;Y30-49;1350;1;5.144481976044457e-06;20121494;6.709243359364866e-05;1;0;Young +24032;Romania;M;Managers;Arts, entertainment and recreation   ;Y50-64;532;1;2.027306971300482e-06;20121494;2.64393886457934e-05;0;1;Old +24033;Romania;M;Managers;Arts, entertainment and recreation   ;Y65-84;37;1;1.4099691341751475e-07;20121494;1.838829661455556e-06;0;1;Old +24034;Romania;M;Managers;Other service activities   ;Y15-29;517;1;1.970146060455544e-06;20121494;2.5693917161419524e-05;1;0;Young +24035;Romania;M;Managers;Other service activities   ;Y30-49;2270;1;8.650351174534012e-06;20121494;0.00011281468463524628;1;0;Young +24036;Romania;M;Managers;Other service activities   ;Y50-64;921;1;3.5096799258792185e-06;20121494;4.577194914055586e-05;0;1;Old +24037;Romania;M;Managers;Other service activities   ;Y65-84;54;1;2.0577927904177827e-07;20121494;2.6836973437459464e-06;0;1;Old +24038;Romania;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;118;1;4.496658319801821e-07;20121494;5.864375677074476e-06;1;0;Young +24039;Romania;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;427;1;1.6271805953859134e-06;20121494;2.122108825517628e-05;1;0;Young +24040;Romania;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;193;1;7.354703862048742e-07;20121494;9.591733098943845e-06;0;1;Old +24041;Romania;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;0;1;Old +24042;Romania;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;2915;1;1.1108270340866364e-05;20121494;0.00014486995846332284;1;0;Young +24043;Romania;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;10663;1;4.063378615597188e-05;20121494;0.0005299308291919079;1;0;Young +24044;Romania;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;5545;1;2.11304833756789e-05;20121494;0.0002755759587235421;0;1;Old +24045;Romania;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;86;1;3.277225555109802e-07;20121494;4.274036510410211e-06;0;1;Old +24046;Romania;M;Professionals;Mining and quarrying   ;Y15-29;713;1;2.7170486288294055e-06;20121494;3.543474455723814e-05;1;0;Young +24047;Romania;M;Professionals;Mining and quarrying   ;Y30-49;4065;1;1.5490606838978308e-05;20121494;0.00020202277226531986;1;0;Young +24048;Romania;M;Professionals;Mining and quarrying   ;Y50-64;2549;1;9.713544116249866e-06;20121494;0.00012668045424460032;0;1;Old +24049;Romania;M;Professionals;Mining and quarrying   ;Y65-84;19;1;7.240382040358865e-08;20121494;9.442638802069071e-07;0;1;Old +24050;Romania;M;Professionals;Manufacturing   ;Y15-29;15514;1;5.911962472322496e-05;20121494;0.0007710163072384188;1;0;Young +24051;Romania;M;Professionals;Manufacturing   ;Y30-49;40984;1;0.0001561788513379304;20121494;0.002036826887705257;1;0;Young +24052;Romania;M;Professionals;Manufacturing   ;Y50-64;21118;1;8.047494101489395e-05;20121494;0.001049524453800498;0;1;Old +24053;Romania;M;Professionals;Manufacturing   ;Y65-84;333;1;1.2689722207576327e-06;20121494;1.6549466953100004e-05;0;1;Old +24054;Romania;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;1640;1;6.249592919046599e-06;20121494;8.150488229154356e-05;1;0;Young +24055;Romania;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;7707;1;2.9369275992129354e-05;20121494;0.00038302324867129647;1;0;Young +24056;Romania;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;4727;1;1.8013308370934922e-05;20121494;0.00023492291377568683;0;1;Old +24057;Romania;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;38;1;1.448076408071773e-07;20121494;1.8885277604138143e-06;0;1;Old +24058;Romania;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;689;1;2.6255911714775044e-06;20121494;3.4241990182239946e-05;1;0;Young +24059;Romania;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2194;1;8.360735892919658e-06;20121494;0.00010903762911441865;1;0;Young +24060;Romania;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1617;1;6.16194618908436e-06;20121494;8.036182601550362e-05;0;1;Old +24061;Romania;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +24062;Romania;M;Professionals;Construction   ;Y15-29;8651;1;3.296660264797081e-05;20121494;0.00042993825408789226;1;0;Young +24063;Romania;M;Professionals;Construction   ;Y30-49;24928;1;9.499381236950831e-05;20121494;0.0012388742108314621;1;0;Young +24064;Romania;M;Professionals;Construction   ;Y50-64;12973;1;4.9436566426092396e-05;20121494;0.0006447334377854845;0;1;Old +24065;Romania;M;Professionals;Construction   ;Y65-84;345;1;1.3147009494335833e-06;20121494;1.7145844140599102e-05;0;1;Old +24066;Romania;M;Professionals;Construction   ;Y_GE85;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24067;Romania;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;8700;1;3.3153328290064274e-05;20121494;0.00043237346093684696;1;0;Young +24068;Romania;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;19408;1;7.395859717857097e-05;20121494;0.0009645407045818765;1;0;Young +24069;Romania;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4806;1;1.8314355834718266e-05;20121494;0.00023884906359338925;0;1;Old +24070;Romania;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;143;1;5.449340167217462e-07;20121494;7.106828151030932e-06;0;1;Old +24071;Romania;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24072;Romania;M;Professionals;Transportation and storage   ;Y15-29;2505;1;9.545872111104715e-06;20121494;0.00012449373789043697;1;0;Young +24073;Romania;M;Professionals;Transportation and storage   ;Y30-49;12714;1;4.8449588032169795e-05;20121494;0.0006318616301552956;1;0;Young +24074;Romania;M;Professionals;Transportation and storage   ;Y50-64;5161;1;1.9667164058048474e-05;20121494;0.00025649188872357094;0;1;Old +24075;Romania;M;Professionals;Transportation and storage   ;Y65-84;56;1;2.134007338211034e-07;20121494;2.783093541662463e-06;0;1;Old +24076;Romania;M;Professionals;Accommodation and food service activities   ;Y15-29;391;1;1.4899944093580612e-06;20121494;1.9431956692678983e-05;1;0;Young +24077;Romania;M;Professionals;Accommodation and food service activities   ;Y30-49;877;1;3.3420079207340657e-06;20121494;4.35852327863925e-05;1;0;Young +24078;Romania;M;Professionals;Accommodation and food service activities   ;Y50-64;237;1;9.031423913500269e-07;20121494;1.177844945310721e-05;0;1;Old +24079;Romania;M;Professionals;Accommodation and food service activities   ;Y65-84;10;1;3.8107273896625604e-08;20121494;4.969809895825827e-07;0;1;Old +24080;Romania;M;Professionals;Information and communication   ;Y15-29;18350;1;6.992684760030798e-05;20121494;0.0009119601158840392;1;0;Young +24081;Romania;M;Professionals;Information and communication   ;Y30-49;24152;1;9.203668791513016e-05;20121494;0.0012003084860398537;1;0;Young +24082;Romania;M;Professionals;Information and communication   ;Y50-64;4104;1;1.5639225207175148e-05;20121494;0.00020396099812469194;0;1;Old +24083;Romania;M;Professionals;Information and communication   ;Y65-84;95;1;3.6201910201794326e-07;20121494;4.721319401034536e-06;0;1;Old +24084;Romania;M;Professionals;Information and communication   ;Y_GE85;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24085;Romania;M;Professionals;Financial and insurance activities   ;Y15-29;6399;1;2.4384844566450727e-05;20121494;0.00031801813523389466;1;0;Young +24086;Romania;M;Professionals;Financial and insurance activities   ;Y30-49;11641;1;4.4360677543061866e-05;20121494;0.0005785355699730845;1;0;Young +24087;Romania;M;Professionals;Financial and insurance activities   ;Y50-64;2728;1;1.0395664318999465e-05;20121494;0.00013557641395812856;0;1;Old +24088;Romania;M;Professionals;Financial and insurance activities   ;Y65-84;54;1;2.0577927904177827e-07;20121494;2.6836973437459464e-06;0;1;Old +24089;Romania;M;Professionals;Real estate activities   ;Y15-29;252;1;9.603033021949652e-07;20121494;1.2523920937481084e-05;1;0;Young +24090;Romania;M;Professionals;Real estate activities   ;Y30-49;724;1;2.7589666301156937e-06;20121494;3.5981423645778987e-05;1;0;Young +24091;Romania;M;Professionals;Real estate activities   ;Y50-64;251;1;9.564925748053026e-07;20121494;1.2474222838522826e-05;0;1;Old +24092;Romania;M;Professionals;Real estate activities   ;Y65-84;10;1;3.8107273896625604e-08;20121494;4.969809895825827e-07;0;1;Old +24093;Romania;M;Professionals;Professional, scientific and technical activities   ;Y15-29;11972;1;4.5622028309040175e-05;20121494;0.000594985640728268;1;0;Young +24094;Romania;M;Professionals;Professional, scientific and technical activities   ;Y30-49;27870;1;0.00010620497234989556;20121494;0.001385086017966658;1;0;Young +24095;Romania;M;Professionals;Professional, scientific and technical activities   ;Y50-64;11284;1;4.300024786495233e-05;20121494;0.0005607933486449863;0;1;Old +24096;Romania;M;Professionals;Professional, scientific and technical activities   ;Y65-84;883;1;3.364872285072041e-06;20121494;4.388342138014205e-05;0;1;Old +24097;Romania;M;Professionals;Administrative and support service activities   ;Y15-29;1825;1;6.954577486134173e-06;20121494;9.069903059882134e-05;1;0;Young +24098;Romania;M;Professionals;Administrative and support service activities   ;Y30-49;3441;1;1.311271294782887e-05;20121494;0.0001710111585153667;1;0;Young +24099;Romania;M;Professionals;Administrative and support service activities   ;Y50-64;1054;1;4.016506668704339e-06;20121494;5.238179630200421e-05;0;1;Old +24100;Romania;M;Professionals;Administrative and support service activities   ;Y65-84;27;1;1.0288963952088914e-07;20121494;1.3418486718729732e-06;0;1;Old +24101;Romania;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;9750;1;3.715459204920997e-05;20121494;0.0004845564648430181;1;0;Young +24102;Romania;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;48477;1;0.00018473263166867194;20121494;0.002409214743199486;1;0;Young +24103;Romania;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;15967;1;6.0845884230742104e-05;20121494;0.0007935295460665098;0;1;Old +24104;Romania;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;220;1;8.383600257257633e-07;20121494;1.0933581770816819e-05;0;1;Old +24105;Romania;M;Professionals;Education   ;Y15-29;7514;1;2.863380560592448e-05;20121494;0.00037343151557235263;1;0;Young +24106;Romania;M;Professionals;Education   ;Y30-49;30689;1;0.00011694741286135432;20121494;0.001525184958929988;1;0;Young +24107;Romania;M;Professionals;Education   ;Y50-64;26180;1;9.976484306136584e-05;20121494;0.0013010962307272015;0;1;Old +24108;Romania;M;Professionals;Education   ;Y65-84;965;1;3.6773519310243708e-06;20121494;4.795866549471923e-05;0;1;Old +24109;Romania;M;Professionals;Education   ;Y_GE85;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24110;Romania;M;Professionals;Human health and social work activities   ;Y15-29;5882;1;2.241469850599518e-05;20121494;0.0002923242180724751;1;0;Young +24111;Romania;M;Professionals;Human health and social work activities   ;Y30-49;19433;1;7.405386536331253e-05;20121494;0.000965783157055833;1;0;Young +24112;Romania;M;Professionals;Human health and social work activities   ;Y50-64;9269;1;3.532163217478227e-05;20121494;0.0004606516792440959;0;1;Old +24113;Romania;M;Professionals;Human health and social work activities   ;Y65-84;895;1;3.4106010137479917e-06;20121494;4.447979856764115e-05;0;1;Old +24114;Romania;M;Professionals;Human health and social work activities   ;Y_GE85;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24115;Romania;M;Professionals;Arts, entertainment and recreation   ;Y15-29;1889;1;7.198464039072577e-06;20121494;9.387970893214987e-05;1;0;Young +24116;Romania;M;Professionals;Arts, entertainment and recreation   ;Y30-49;4773;1;1.8188601830859402e-05;20121494;0.0002372090263277667;1;0;Young +24117;Romania;M;Professionals;Arts, entertainment and recreation   ;Y50-64;1942;1;7.400432590724693e-06;20121494;9.651370817693756e-05;0;1;Old +24118;Romania;M;Professionals;Arts, entertainment and recreation   ;Y65-84;87;1;3.3153328290064277e-07;20121494;4.323734609368469e-06;0;1;Old +24119;Romania;M;Professionals;Other service activities   ;Y15-29;5313;1;2.0246394621277183e-05;20121494;0.0002640459997652262;1;0;Young +24120;Romania;M;Professionals;Other service activities   ;Y30-49;18215;1;6.941239940270354e-05;20121494;0.0009052508725246744;1;0;Young +24121;Romania;M;Professionals;Other service activities   ;Y50-64;7634;1;2.9091092892683986e-05;20121494;0.00037939528744734363;0;1;Old +24122;Romania;M;Professionals;Other service activities   ;Y65-84;536;1;2.0425498808591324e-06;20121494;2.663818104162643e-05;0;1;Old +24123;Romania;M;Professionals;Other service activities   ;Y_GE85;8;1;3.048581911730048e-08;20121494;3.9758479166606616e-07;0;1;Old +24124;Romania;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;56;1;2.134007338211034e-07;20121494;2.783093541662463e-06;1;0;Young +24125;Romania;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;144;1;5.487447441114087e-07;20121494;7.15652624998919e-06;1;0;Young +24126;Romania;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;39;1;1.4861836819683987e-07;20121494;1.9382258593720726e-06;0;1;Old +24127;Romania;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;614;1;2.3397866172528123e-06;20121494;3.0514632760370576e-05;1;0;Young +24128;Romania;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;2504;1;9.542061383715052e-06;20121494;0.0001244440397914787;1;0;Young +24129;Romania;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;1393;1;5.308343253799947e-06;20121494;6.922945184885377e-05;0;1;Old +24130;Romania;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +24131;Romania;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;265;1;1.0098427582605786e-06;20121494;1.3169996223938442e-05;1;0;Young +24132;Romania;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;2212;1;8.429328985933583e-06;20121494;0.00010993219489566729;1;0;Young +24133;Romania;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;1271;1;4.843434512261115e-06;20121494;6.316628377594626e-05;0;1;Old +24134;Romania;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24135;Romania;M;Technicians and associate professionals;Manufacturing   ;Y15-29;8343;1;3.179289861195474e-05;20121494;0.00041463123960874874;1;0;Young +24136;Romania;M;Technicians and associate professionals;Manufacturing   ;Y30-49;55756;1;0.00021247091633802573;20121494;0.002770967205516648;1;0;Young +24137;Romania;M;Technicians and associate professionals;Manufacturing   ;Y50-64;11120;1;4.237528857304767e-05;20121494;0.0005526428604158319;0;1;Old +24138;Romania;M;Technicians and associate professionals;Manufacturing   ;Y65-84;96;1;3.658298294076058e-07;20121494;4.7710174999927935e-06;0;1;Old +24139;Romania;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;605;1;2.3054900707458493e-06;20121494;3.006734986974625e-05;1;0;Young +24140;Romania;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;5131;1;1.95528422363586e-05;20121494;0.00025500094575482316;1;0;Young +24141;Romania;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;3708;1;1.4130177160868775e-05;20121494;0.00018428055093722167;0;1;Old +24142;Romania;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +24143;Romania;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;323;1;1.2308649468610071e-06;20121494;1.605248596351742e-05;1;0;Young +24144;Romania;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1817;1;6.924091667016873e-06;20121494;9.030144580715527e-05;1;0;Young +24145;Romania;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1425;1;5.4302865302691485e-06;20121494;7.081979101551803e-05;0;1;Old +24146;Romania;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +24147;Romania;M;Technicians and associate professionals;Construction   ;Y15-29;2443;1;9.309607012945635e-06;20121494;0.00012141245575502496;1;0;Young +24148;Romania;M;Technicians and associate professionals;Construction   ;Y30-49;6472;1;2.466302766589609e-05;20121494;0.0003216460964578475;1;0;Young +24149;Romania;M;Technicians and associate professionals;Construction   ;Y50-64;34442;1;0.00013124907275475792;20121494;0.0017117019243203314;0;1;Old +24150;Romania;M;Technicians and associate professionals;Construction   ;Y65-84;103;1;3.9250492113524375e-07;20121494;5.1189041927006015e-06;0;1;Old +24151;Romania;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;28466;1;0.00010847616587413445;20121494;0.00141470608494578;1;0;Young +24152;Romania;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;44655;1;0.00017016803158538164;20121494;0.002219268608981023;1;0;Young +24153;Romania;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;6614;1;2.5204150955228174e-05;20121494;0.0003287032265099202;0;1;Old +24154;Romania;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;119;1;4.5347655936984473e-07;20121494;5.914073776032734e-06;0;1;Old +24155;Romania;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;2887;1;1.1001569973955812e-05;20121494;0.00014347841169249162;1;0;Young +24156;Romania;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;8119;1;3.093929567667033e-05;20121494;0.00040349886544209886;1;0;Young +24157;Romania;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;3896;1;1.4846593910125335e-05;20121494;0.0001936237935413742;0;1;Old +24158;Romania;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;0;1;Old +24159;Romania;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;728;1;2.774209539674344e-06;20121494;3.618021604161202e-05;1;0;Young +24160;Romania;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;973;1;3.7078377501416716e-06;20121494;4.8356250286385295e-05;1;0;Young +24161;Romania;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;256;1;9.755462117536154e-07;20121494;1.2722713333314117e-05;0;1;Old +24162;Romania;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24163;Romania;M;Technicians and associate professionals;Information and communication   ;Y15-29;10214;1;3.8922769558013394e-05;20121494;0.0005076163827596499;1;0;Young +24164;Romania;M;Technicians and associate professionals;Information and communication   ;Y30-49;14283;1;5.442861930655035e-05;20121494;0.0007098379474208029;1;0;Young +24165;Romania;M;Technicians and associate professionals;Information and communication   ;Y50-64;2760;1;1.0517607595468666e-05;20121494;0.00013716675312479282;0;1;Old +24166;Romania;M;Technicians and associate professionals;Information and communication   ;Y65-84;39;1;1.4861836819683987e-07;20121494;1.9382258593720726e-06;0;1;Old +24167;Romania;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;2855;1;1.087962669748661e-05;20121494;0.00014188807252582737;1;0;Young +24168;Romania;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;6060;1;2.3093007981355117e-05;20121494;0.0003011704796870451;1;0;Young +24169;Romania;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;2055;1;7.831044785756562e-06;20121494;0.00010212959335922074;0;1;Old +24170;Romania;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;50;1;1.9053636948312803e-07;20121494;2.4849049479129134e-06;0;1;Old +24171;Romania;M;Technicians and associate professionals;Real estate activities   ;Y15-29;784;1;2.9876102734954477e-06;20121494;3.896330958327448e-05;1;0;Young +24172;Romania;M;Technicians and associate professionals;Real estate activities   ;Y30-49;1645;1;6.268646555994912e-06;20121494;8.175337278633486e-05;1;0;Young +24173;Romania;M;Technicians and associate professionals;Real estate activities   ;Y50-64;393;1;1.4976158641373862e-06;20121494;1.95313528905955e-05;0;1;Old +24174;Romania;M;Technicians and associate professionals;Real estate activities   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24175;Romania;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;4532;1;1.7270216529950724e-05;20121494;0.00022523178447882646;1;0;Young +24176;Romania;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;8592;1;3.274176973198072e-05;20121494;0.000427006066249355;1;0;Young +24177;Romania;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;3610;1;1.3756725876681843e-05;20121494;0.00017941013723931235;0;1;Old +24178;Romania;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;109;1;4.153692854732191e-07;20121494;5.4170927864501515e-06;0;1;Old +24179;Romania;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;2617;1;9.972673578746921e-06;20121494;0.0001300599249737619;1;0;Young +24180;Romania;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;4717;1;1.79752010970383e-05;20121494;0.00023442593278610426;1;0;Young +24181;Romania;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;1560;1;5.9447347278735945e-06;20121494;7.75290343748829e-05;0;1;Old +24182;Romania;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;38;1;1.448076408071773e-07;20121494;1.8885277604138143e-06;0;1;Old +24183;Romania;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;6882;1;2.622542589565774e-05;20121494;0.0003420223170307334;1;0;Young +24184;Romania;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;27912;1;0.00010636502290026139;20121494;0.0013871733381229047;1;0;Young +24185;Romania;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;9001;1;3.430035723435271e-05;20121494;0.0004473325887232827;0;1;Old +24186;Romania;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;175;1;6.668772931909481e-07;20121494;8.697167317695197e-06;0;1;Old +24187;Romania;M;Technicians and associate professionals;Education   ;Y15-29;637;1;2.4274333472150513e-06;20121494;3.1657689036410514e-05;1;0;Young +24188;Romania;M;Technicians and associate professionals;Education   ;Y30-49;1438;1;5.479825986334762e-06;20121494;7.14658663019754e-05;1;0;Young +24189;Romania;M;Technicians and associate professionals;Education   ;Y50-64;1353;1;5.155914158213445e-06;20121494;6.724152789052344e-05;0;1;Old +24190;Romania;M;Technicians and associate professionals;Education   ;Y65-84;17;1;6.478236562426352e-08;20121494;8.448676822903906e-07;0;1;Old +24191;Romania;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;1928;1;7.347082407269416e-06;20121494;9.581793479152195e-05;1;0;Young +24192;Romania;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;6649;1;2.5337526413866367e-05;20121494;0.0003304426599734592;1;0;Young +24193;Romania;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;2435;1;9.279121193828335e-06;20121494;0.00012101487096335888;0;1;Old +24194;Romania;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;31;1;1.1813254907953938e-07;20121494;1.5406410677060063e-06;0;1;Old +24195;Romania;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;3644;1;1.388629060793037e-05;20121494;0.00018109987260389314;1;0;Young +24196;Romania;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;3872;1;1.4755136452773434e-05;20121494;0.00019243103916637602;1;0;Young +24197;Romania;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;1394;1;5.3121539811896096e-06;20121494;6.927914994781203e-05;0;1;Old +24198;Romania;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;36;1;1.3718618602785217e-07;20121494;1.7891315624972976e-06;0;1;Old +24199;Romania;M;Technicians and associate professionals;Other service activities   ;Y15-29;1848;1;7.042224216096412e-06;20121494;9.184208687486127e-05;1;0;Young +24200;Romania;M;Technicians and associate professionals;Other service activities   ;Y30-49;4054;1;1.544868883769202e-05;20121494;0.00020147609317677903;1;0;Young +24201;Romania;M;Technicians and associate professionals;Other service activities   ;Y50-64;1461;1;5.567472716297001e-06;20121494;7.260892257801533e-05;0;1;Old +24202;Romania;M;Technicians and associate professionals;Other service activities   ;Y65-84;107;1;4.07747830693894e-07;20121494;5.317696588533635e-06;0;1;Old +24203;Romania;M;Technicians and associate professionals;Other service activities   ;Y_GE85;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +24204;Romania;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;30;1;1.1432182168987682e-07;20121494;1.490942968747748e-06;1;0;Young +24205;Romania;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;57;1;2.1721146121076594e-07;20121494;2.8327916406207214e-06;1;0;Young +24206;Romania;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;14;1;5.335018345527585e-08;20121494;6.957733854156158e-07;0;1;Old +24207;Romania;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;248;1;9.45060392636315e-07;20121494;1.232512854164805e-05;1;0;Young +24208;Romania;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;810;1;3.086689185626674e-06;20121494;4.0255460156189194e-05;1;0;Young +24209;Romania;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;399;1;1.5204802284753616e-06;20121494;1.982954148434505e-05;0;1;Old +24210;Romania;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24211;Romania;M;Clerical support workers;Mining and quarrying   ;Y15-29;81;1;3.086689185626674e-07;20121494;4.02554601561892e-06;1;0;Young +24212;Romania;M;Clerical support workers;Mining and quarrying   ;Y30-49;405;1;1.543344592813337e-06;20121494;2.0127730078094597e-05;1;0;Young +24213;Romania;M;Clerical support workers;Mining and quarrying   ;Y50-64;167;1;6.363914740736477e-07;20121494;8.29958252602913e-06;0;1;Old +24214;Romania;M;Clerical support workers;Manufacturing   ;Y15-29;4403;1;1.6778632696684253e-05;20121494;0.00021882072971321116;1;0;Young +24215;Romania;M;Clerical support workers;Manufacturing   ;Y30-49;8885;1;3.3858312857151854e-05;20121494;0.00044156760924412474;1;0;Young +24216;Romania;M;Clerical support workers;Manufacturing   ;Y50-64;2874;1;1.09520305178902e-05;20121494;0.00014283233640603426;0;1;Old +24217;Romania;M;Clerical support workers;Manufacturing   ;Y65-84;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +24218;Romania;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;174;1;6.630665658012855e-07;20121494;8.647469218736938e-06;1;0;Young +24219;Romania;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;773;1;2.9456922722091595e-06;20121494;3.8416630494733645e-05;1;0;Young +24220;Romania;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;419;1;1.5966947762686128e-06;20121494;2.0823503463510215e-05;0;1;Old +24221;Romania;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24222;Romania;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;273;1;1.040328577377879e-06;20121494;1.3567581015604507e-05;1;0;Young +24223;Romania;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;782;1;2.9799888187161225e-06;20121494;3.8863913385357966e-05;1;0;Young +24224;Romania;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;466;1;1.7757989635827531e-06;20121494;2.3159314114548354e-05;0;1;Old +24225;Romania;M;Clerical support workers;Construction   ;Y15-29;844;1;3.216253916875201e-06;20121494;4.194519552076998e-05;1;0;Young +24226;Romania;M;Clerical support workers;Construction   ;Y30-49;2321;1;8.844698271406803e-06;20121494;0.00011534928768211744;1;0;Young +24227;Romania;M;Clerical support workers;Construction   ;Y50-64;835;1;3.181957370368238e-06;20121494;4.1497912630145656e-05;0;1;Old +24228;Romania;M;Clerical support workers;Construction   ;Y65-84;12;1;4.5728728675950726e-08;20121494;5.963771874990992e-07;0;1;Old +24229;Romania;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;9410;1;3.58589447367247e-05;20121494;0.0004676591111972103;1;0;Young +24230;Romania;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;16708;1;6.366963322648206e-05;20121494;0.0008303558373945792;1;0;Young +24231;Romania;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4068;1;1.5502039021147297e-05;20121494;0.00020217186656219463;0;1;Old +24232;Romania;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;27;1;1.0288963952088914e-07;20121494;1.3418486718729732e-06;0;1;Old +24233;Romania;M;Clerical support workers;Transportation and storage   ;Y15-29;3669;1;1.3981558792671935e-05;20121494;0.0001823423250778496;1;0;Young +24234;Romania;M;Clerical support workers;Transportation and storage   ;Y30-49;17735;1;6.758325025566551e-05;20121494;0.0008813957850247104;1;0;Young +24235;Romania;M;Clerical support workers;Transportation and storage   ;Y50-64;5385;1;2.052076699333289e-05;20121494;0.00026762426289022077;0;1;Old +24236;Romania;M;Clerical support workers;Transportation and storage   ;Y65-84;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +24237;Romania;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;1845;1;7.030792033927424e-06;20121494;9.169299257798651e-05;1;0;Young +24238;Romania;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;3167;1;1.206857364306133e-05;20121494;0.00015739387940080394;1;0;Young +24239;Romania;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;1061;1;4.043181760431977e-06;20121494;5.2729682994712025e-05;0;1;Old +24240;Romania;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;26;1;9.907891213122657e-08;20121494;1.292150572914715e-06;0;1;Old +24241;Romania;M;Clerical support workers;Information and communication   ;Y15-29;2375;1;9.050477550448582e-06;20121494;0.00011803298502586339;1;0;Young +24242;Romania;M;Clerical support workers;Information and communication   ;Y30-49;2248;1;8.566515171961437e-06;20121494;0.00011172132645816459;1;0;Young +24243;Romania;M;Clerical support workers;Information and communication   ;Y50-64;463;1;1.7643667814137655e-06;20121494;2.301021981767358e-05;0;1;Old +24244;Romania;M;Clerical support workers;Financial and insurance activities   ;Y15-29;1025;1;3.905995574404124e-06;20121494;5.094055143221473e-05;1;0;Young +24245;Romania;M;Clerical support workers;Financial and insurance activities   ;Y30-49;1364;1;5.197832159499732e-06;20121494;6.778820697906428e-05;1;0;Young +24246;Romania;M;Clerical support workers;Financial and insurance activities   ;Y50-64;354;1;1.3489974959405465e-06;20121494;1.7593127031223427e-05;0;1;Old +24247;Romania;M;Clerical support workers;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24248;Romania;M;Clerical support workers;Real estate activities   ;Y15-29;104;1;3.963156485249063e-07;20121494;5.16860229165886e-06;1;0;Young +24249;Romania;M;Clerical support workers;Real estate activities   ;Y30-49;173;1;6.592558384116229e-07;20121494;8.59777111977868e-06;1;0;Young +24250;Romania;M;Clerical support workers;Real estate activities   ;Y50-64;69;1;2.629401898867167e-07;20121494;3.4291688281198206e-06;0;1;Old +24251;Romania;M;Clerical support workers;Real estate activities   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24252;Romania;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;1054;1;4.016506668704339e-06;20121494;5.238179630200421e-05;1;0;Young +24253;Romania;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;1292;1;4.9234597874440285e-06;20121494;6.420994385406968e-05;1;0;Young +24254;Romania;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;414;1;1.5776411393203e-06;20121494;2.0575012968718922e-05;0;1;Old +24255;Romania;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +24256;Romania;M;Clerical support workers;Administrative and support service activities   ;Y15-29;1907;1;7.267057132086503e-06;20121494;9.477427471339852e-05;1;0;Young +24257;Romania;M;Clerical support workers;Administrative and support service activities   ;Y30-49;2311;1;8.806590997510177e-06;20121494;0.00011485230669253486;1;0;Young +24258;Romania;M;Clerical support workers;Administrative and support service activities   ;Y50-64;428;1;1.630991322775576e-06;20121494;2.127078635413454e-05;0;1;Old +24259;Romania;M;Clerical support workers;Administrative and support service activities   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24260;Romania;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;5510;1;2.099710791704071e-05;20121494;0.00027383652526000304;1;0;Young +24261;Romania;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;23862;1;9.093157697212802e-05;20121494;0.0011858960373419588;1;0;Young +24262;Romania;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;4314;1;1.6439477959004287e-05;20121494;0.00021439759890592617;0;1;Old +24263;Romania;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;54;1;2.0577927904177827e-07;20121494;2.6836973437459464e-06;0;1;Old +24264;Romania;M;Clerical support workers;Education   ;Y15-29;150;1;5.716091084493841e-07;20121494;7.45471484373874e-06;1;0;Young +24265;Romania;M;Clerical support workers;Education   ;Y30-49;554;1;2.1111429738730584e-06;20121494;2.753274682287508e-05;1;0;Young +24266;Romania;M;Clerical support workers;Education   ;Y50-64;371;1;1.41377986156481e-06;20121494;1.8437994713513818e-05;0;1;Old +24267;Romania;M;Clerical support workers;Education   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24268;Romania;M;Clerical support workers;Human health and social work activities   ;Y15-29;248;1;9.45060392636315e-07;20121494;1.232512854164805e-05;1;0;Young +24269;Romania;M;Clerical support workers;Human health and social work activities   ;Y30-49;700;1;2.6675091727637926e-06;20121494;3.478866927078079e-05;1;0;Young +24270;Romania;M;Clerical support workers;Human health and social work activities   ;Y50-64;418;1;1.5928840488789504e-06;20121494;2.0773805364551957e-05;0;1;Old +24271;Romania;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;1265;1;4.820570147923139e-06;20121494;6.286809518219671e-05;1;0;Young +24272;Romania;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;1263;1;4.812948693143814e-06;20121494;6.27686989842802e-05;1;0;Young +24273;Romania;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;395;1;1.5052373189167114e-06;20121494;1.9630749088512015e-05;0;1;Old +24274;Romania;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +24275;Romania;M;Clerical support workers;Other service activities   ;Y15-29;422;1;1.6081269584376006e-06;20121494;2.097259776038499e-05;1;0;Young +24276;Romania;M;Clerical support workers;Other service activities   ;Y30-49;775;1;2.9533137269884843e-06;20121494;3.851602669265016e-05;1;0;Young +24277;Romania;M;Clerical support workers;Other service activities   ;Y50-64;336;1;1.2804044029266203e-06;20121494;1.6698561249974777e-05;0;1;Old +24278;Romania;M;Clerical support workers;Other service activities   ;Y65-84;16;1;6.097163823460096e-08;20121494;7.951695833321323e-07;0;1;Old +24279;Romania;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;47;1;1.7910418731414036e-07;20121494;2.3358106510381384e-06;1;0;Young +24280;Romania;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;89;1;3.3915473767996787e-07;20121494;4.423130807284986e-06;1;0;Young +24281;Romania;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;31;1;1.1813254907953938e-07;20121494;1.5406410677060063e-06;0;1;Old +24282;Romania;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;571;1;2.175925339497322e-06;20121494;2.837761450516547e-05;1;0;Young +24283;Romania;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2801;1;1.0673847418444831e-05;20121494;0.0001392043751820814;1;0;Young +24284;Romania;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;1395;1;5.315964708579272e-06;20121494;6.932884804677028e-05;0;1;Old +24285;Romania;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;30;1;1.1432182168987682e-07;20121494;1.490942968747748e-06;0;1;Old +24286;Romania;M;Service and sales workers;Mining and quarrying   ;Y15-29;111;1;4.2299074025254424e-07;20121494;5.516488984366668e-06;1;0;Young +24287;Romania;M;Service and sales workers;Mining and quarrying   ;Y30-49;580;1;2.210221886004285e-06;20121494;2.8824897395789796e-05;1;0;Young +24288;Romania;M;Service and sales workers;Mining and quarrying   ;Y50-64;262;1;9.984105760915908e-07;20121494;1.3020901927063666e-05;0;1;Old +24289;Romania;M;Service and sales workers;Manufacturing   ;Y15-29;3546;1;1.351283932374344e-05;20121494;0.00017622945890598382;1;0;Young +24290;Romania;M;Service and sales workers;Manufacturing   ;Y30-49;11327;1;4.3164109142707827e-05;20121494;0.0005629303669001914;1;0;Young +24291;Romania;M;Service and sales workers;Manufacturing   ;Y50-64;4744;1;1.807809073655919e-05;20121494;0.00023576778145797722;0;1;Old +24292;Romania;M;Service and sales workers;Manufacturing   ;Y65-84;69;1;2.629401898867167e-07;20121494;3.4291688281198206e-06;0;1;Old +24293;Romania;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;91;1;3.46776192459293e-07;20121494;4.522527005201502e-06;1;0;Young +24294;Romania;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;579;1;2.2064111586146226e-06;20121494;2.877519929683154e-05;1;0;Young +24295;Romania;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;227;1;8.650351174534013e-07;20121494;1.1281468463524628e-05;0;1;Old +24296;Romania;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;215;1;8.193063887774505e-07;20121494;1.0685091276025528e-05;1;0;Young +24297;Romania;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;713;1;2.7170486288294055e-06;20121494;3.543474455723814e-05;1;0;Young +24298;Romania;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;344;1;1.310890222043921e-06;20121494;1.7096146041640844e-05;0;1;Old +24299;Romania;M;Service and sales workers;Construction   ;Y15-29;1327;1;5.056835246082218e-06;20121494;6.594937731760872e-05;1;0;Young +24300;Romania;M;Service and sales workers;Construction   ;Y30-49;5953;1;2.2685260150661224e-05;20121494;0.0002958527830985115;1;0;Young +24301;Romania;M;Service and sales workers;Construction   ;Y50-64;2229;1;8.494111351557847e-06;20121494;0.00011077706257795768;0;1;Old +24302;Romania;M;Service and sales workers;Construction   ;Y65-84;28;1;1.067003669105517e-07;20121494;1.3915467708312315e-06;0;1;Old +24303;Romania;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;43678;1;0.00016644495092568132;20121494;0.0021707135662988046;1;0;Young +24304;Romania;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;93509;1;0.0003563373074799564;20121494;0.004647219535487772;1;0;Young +24305;Romania;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;28231;1;0.00010758064493756375;20121494;0.0014030270316905892;0;1;Old +24306;Romania;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;403;1;1.5357231380340118e-06;20121494;2.002833388017808e-05;0;1;Old +24307;Romania;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24308;Romania;M;Service and sales workers;Transportation and storage   ;Y15-29;1364;1;5.197832159499732e-06;20121494;6.778820697906428e-05;1;0;Young +24309;Romania;M;Service and sales workers;Transportation and storage   ;Y30-49;5669;1;2.1603013571997055e-05;20121494;0.00028173852299436615;1;0;Young +24310;Romania;M;Service and sales workers;Transportation and storage   ;Y50-64;1517;1;5.780873450118104e-06;20121494;7.539201611967779e-05;0;1;Old +24311;Romania;M;Service and sales workers;Transportation and storage   ;Y65-84;12;1;4.5728728675950726e-08;20121494;5.963771874990992e-07;0;1;Old +24312;Romania;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;21198;1;8.077979920606696e-05;20121494;0.0010535003017171588;1;0;Young +24313;Romania;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;16742;1;6.379919795773059e-05;20121494;0.0008320455727591599;1;0;Young +24314;Romania;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;2945;1;1.122259216255624e-05;20121494;0.0001463609014320706;0;1;Old +24315;Romania;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;21;1;8.002527518291377e-08;20121494;1.0436600781234236e-06;0;1;Old +24316;Romania;M;Service and sales workers;Information and communication   ;Y15-29;664;1;2.5303229867359402e-06;20121494;3.299953770828349e-05;1;0;Young +24317;Romania;M;Service and sales workers;Information and communication   ;Y30-49;1237;1;4.713869781012587e-06;20121494;6.147654841136548e-05;1;0;Young +24318;Romania;M;Service and sales workers;Information and communication   ;Y50-64;418;1;1.5928840488789504e-06;20121494;2.0773805364551957e-05;0;1;Old +24319;Romania;M;Service and sales workers;Information and communication   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24320;Romania;M;Service and sales workers;Financial and insurance activities   ;Y15-29;385;1;1.4671300450200858e-06;20121494;1.9133768098929432e-05;1;0;Young +24321;Romania;M;Service and sales workers;Financial and insurance activities   ;Y30-49;1068;1;4.0698568521596144e-06;20121494;5.307756968741983e-05;1;0;Young +24322;Romania;M;Service and sales workers;Financial and insurance activities   ;Y50-64;471;1;1.7948526005310661e-06;20121494;2.3407804609339643e-05;0;1;Old +24323;Romania;M;Service and sales workers;Financial and insurance activities   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +24324;Romania;M;Service and sales workers;Real estate activities   ;Y15-29;156;1;5.944734727873595e-07;20121494;7.75290343748829e-06;1;0;Young +24325;Romania;M;Service and sales workers;Real estate activities   ;Y30-49;629;1;2.3969475280977505e-06;20121494;3.126010424474445e-05;1;0;Young +24326;Romania;M;Service and sales workers;Real estate activities   ;Y50-64;381;1;1.4518871354614356e-06;20121494;1.89349757030964e-05;0;1;Old +24327;Romania;M;Service and sales workers;Real estate activities   ;Y65-84;32;1;1.2194327646920193e-07;20121494;1.5903391666642647e-06;0;1;Old +24328;Romania;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;607;1;2.313111525525174e-06;20121494;3.016674606766277e-05;1;0;Young +24329;Romania;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;1756;1;6.691637296247457e-06;20121494;8.726986177070152e-05;1;0;Young +24330;Romania;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;750;1;2.8580455422469205e-06;20121494;3.72735742186937e-05;0;1;Old +24331;Romania;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;14;1;5.335018345527585e-08;20121494;6.957733854156158e-07;0;1;Old +24332;Romania;M;Service and sales workers;Administrative and support service activities   ;Y15-29;28880;1;0.00011005380701345474;20121494;0.0014352810979144988;1;0;Young +24333;Romania;M;Service and sales workers;Administrative and support service activities   ;Y30-49;73028;1;0.0002782897998122775;20121494;0.0036293527707236847;1;0;Young +24334;Romania;M;Service and sales workers;Administrative and support service activities   ;Y50-64;25231;1;9.614846276857607e-05;20121494;0.0012539327348158145;0;1;Old +24335;Romania;M;Service and sales workers;Administrative and support service activities   ;Y65-84;123;1;4.6871946892849497e-07;20121494;6.112866171865767e-06;0;1;Old +24336;Romania;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;15010;1;5.719901811883503e-05;20121494;0.0007459684653634566;1;0;Young +24337;Romania;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;47332;1;0.00018036934880750832;20121494;0.0023523104198922805;1;0;Young +24338;Romania;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;5240;1;1.9968211521831818e-05;20121494;0.0002604180385412733;0;1;Old +24339;Romania;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;23;1;8.764672996223889e-08;20121494;1.1430562760399403e-06;0;1;Old +24340;Romania;M;Service and sales workers;Education   ;Y15-29;591;1;2.2521398872905733e-06;20121494;2.9371576484330637e-05;1;0;Young +24341;Romania;M;Service and sales workers;Education   ;Y30-49;5608;1;2.1370559201227638e-05;20121494;0.0002787069389579124;1;0;Young +24342;Romania;M;Service and sales workers;Education   ;Y50-64;4450;1;1.6957736883998394e-05;20121494;0.0002211565403642493;0;1;Old +24343;Romania;M;Service and sales workers;Education   ;Y65-84;61;1;2.3245437076941619e-07;20121494;3.0315840364537543e-06;0;1;Old +24344;Romania;M;Service and sales workers;Human health and social work activities   ;Y15-29;1283;1;4.889163240937065e-06;20121494;6.376266096344536e-05;1;0;Young +24345;Romania;M;Service and sales workers;Human health and social work activities   ;Y30-49;7443;1;2.8363243961258438e-05;20121494;0.00036990295054631627;1;0;Young +24346;Romania;M;Service and sales workers;Human health and social work activities   ;Y50-64;4024;1;1.5334367016002143e-05;20121494;0.00019998515020803128;0;1;Old +24347;Romania;M;Service and sales workers;Human health and social work activities   ;Y65-84;41;1;1.56239822976165e-07;20121494;2.037622057288589e-06;0;1;Old +24348;Romania;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;1146;1;4.367093588553295e-06;20121494;5.6954021406163975e-05;1;0;Young +24349;Romania;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;1924;1;7.331839497710767e-06;20121494;9.56191423956889e-05;1;0;Young +24350;Romania;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;872;1;3.3229542837857527e-06;20121494;4.333674229160121e-05;0;1;Old +24351;Romania;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;12;1;4.5728728675950726e-08;20121494;5.963771874990992e-07;0;1;Old +24352;Romania;M;Service and sales workers;Other service activities   ;Y15-29;2311;1;8.806590997510177e-06;20121494;0.00011485230669253486;1;0;Young +24353;Romania;M;Service and sales workers;Other service activities   ;Y30-49;5121;1;1.9514734962461974e-05;20121494;0.00025450396476524057;1;0;Young +24354;Romania;M;Service and sales workers;Other service activities   ;Y50-64;2171;1;8.273089162957418e-06;20121494;0.0001078945728383787;0;1;Old +24355;Romania;M;Service and sales workers;Other service activities   ;Y65-84;146;1;5.563661988907339e-07;20121494;7.255922447905707e-06;0;1;Old +24356;Romania;M;Service and sales workers;Other service activities   ;Y_GE85;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24357;Romania;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;57;1;2.1721146121076594e-07;20121494;2.8327916406207214e-06;1;0;Young +24358;Romania;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;154;1;5.868520180080343e-07;20121494;7.653507239571773e-06;1;0;Young +24359;Romania;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;71;1;2.705616446660418e-07;20121494;3.5285650260363372e-06;0;1;Old +24360;Romania;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24361;Romania;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;38;1;1.448076408071773e-07;20121494;1.8885277604138143e-06;1;0;Young +24362;Romania;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;71;1;2.705616446660418e-07;20121494;3.5285650260363372e-06;1;0;Young +24363;Romania;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;27;1;1.0288963952088914e-07;20121494;1.3418486718729732e-06;0;1;Old +24364;Romania;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24365;Romania;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;108487;1;0.0004134143823223222;20121494;0.0053915976616845645;1;0;Young +24366;Romania;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;298561;1;0.0011377345801850437;20121494;0.014837914123076546;1;0;Young +24367;Romania;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;293483;1;0.0011183837065003373;20121494;0.014585547176566512;0;1;Old +24368;Romania;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;334290;1;0.0012738880590902975;20121494;0.016613577500756156;0;1;Old +24369;Romania;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;11394;1;4.3419427877815216e-05;20121494;0.0005662601395303947;0;1;Old +24370;Romania;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;527;1;2.0082533343521694e-06;20121494;2.6190898151002107e-05;1;0;Young +24371;Romania;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;1570;1;5.98284200177022e-06;20121494;7.802601536446548e-05;1;0;Young +24372;Romania;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;444;1;1.691962961010177e-06;20121494;2.2065955937466673e-05;0;1;Old +24373;Romania;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;21;1;8.002527518291377e-08;20121494;1.0436600781234236e-06;0;1;Old +24374;Romania;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;68;1;2.591294624970541e-07;20121494;3.3794707291615622e-06;1;0;Young +24375;Romania;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;157;1;5.98284200177022e-07;20121494;7.802601536446548e-06;1;0;Young +24376;Romania;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;70;1;2.6675091727637925e-07;20121494;3.478866927078079e-06;0;1;Old +24377;Romania;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;10;1;3.8107273896625604e-08;20121494;4.969809895825827e-07;1;0;Young +24378;Romania;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;20;1;7.621454779325121e-08;20121494;9.939619791651655e-07;1;0;Young +24379;Romania;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24380;Romania;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;20;1;7.621454779325121e-08;20121494;9.939619791651655e-07;1;0;Young +24381;Romania;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;48;1;1.829149147038029e-07;20121494;2.3855087499963968e-06;1;0;Young +24382;Romania;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;27;1;1.0288963952088914e-07;20121494;1.3418486718729732e-06;0;1;Old +24383;Romania;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;1;0;Young +24384;Romania;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;81;1;3.086689185626674e-07;20121494;4.02554601561892e-06;1;0;Young +24385;Romania;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;31;1;1.1813254907953938e-07;20121494;1.5406410677060063e-06;0;1;Old +24386;Romania;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24387;Romania;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;234;1;8.917102091810392e-07;20121494;1.1629355156232435e-05;1;0;Young +24388;Romania;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;585;1;2.2292755229525977e-06;20121494;2.9073387890581086e-05;1;0;Young +24389;Romania;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;218;1;8.307385709464382e-07;20121494;1.0834185572900303e-05;0;1;Old +24390;Romania;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;12;1;4.5728728675950726e-08;20121494;5.963771874990992e-07;0;1;Old +24391;Romania;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;54;1;2.0577927904177827e-07;20121494;2.6836973437459464e-06;1;0;Young +24392;Romania;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;289;1;1.10130021561248e-06;20121494;1.436275059893664e-05;1;0;Young +24393;Romania;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;198;1;7.54524023153187e-07;20121494;9.840223593735138e-06;0;1;Old +24394;Romania;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24395;Romania;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;1;0;Young +24396;Romania;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;30;1;1.1432182168987682e-07;20121494;1.490942968747748e-06;1;0;Young +24397;Romania;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;30;1;1.1432182168987682e-07;20121494;1.490942968747748e-06;0;1;Old +24398;Romania;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24399;Romania;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;11;1;4.1918001286288165e-08;20121494;5.46679088540841e-07;1;0;Young +24400;Romania;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;1;0;Young +24401;Romania;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;10;1;3.8107273896625604e-08;20121494;4.969809895825827e-07;0;1;Old +24402;Romania;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;52;1;1.9815782426245315e-07;20121494;2.58430114582943e-06;1;0;Young +24403;Romania;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;163;1;6.211485645149974e-07;20121494;8.100790130196097e-06;1;0;Young +24404;Romania;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;71;1;2.705616446660418e-07;20121494;3.5285650260363372e-06;0;1;Old +24405;Romania;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24406;Romania;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;88;1;3.353440102903053e-07;20121494;4.373432708326728e-06;1;0;Young +24407;Romania;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;312;1;1.188946945574719e-06;20121494;1.550580687497658e-05;1;0;Young +24408;Romania;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;164;1;6.2495929190466e-07;20121494;8.150488229154355e-06;0;1;Old +24409;Romania;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3254;1;1.2400106925961972e-05;20121494;0.0001617176140101724;1;0;Young +24410;Romania;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8176;1;3.115650713788109e-05;20121494;0.0004063316570827196;1;0;Young +24411;Romania;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3670;1;1.3985369520061597e-05;20121494;0.00018239202317680786;0;1;Old +24412;Romania;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;477;1;1.8177169648690413e-06;20121494;2.3705993203089194e-05;0;1;Old +24413;Romania;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;15;1;5.716091084493841e-08;20121494;7.45471484373874e-07;0;1;Old +24414;Romania;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2933;1;1.117686343388029e-05;20121494;0.0001457645242445715;1;0;Young +24415;Romania;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;15580;1;5.9371132730942697e-05;20121494;0.0007742963817696638;1;0;Young +24416;Romania;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;6527;1;2.4872617672327533e-05;20121494;0.0003243794919005517;0;1;Old +24417;Romania;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;52;1;1.9815782426245315e-07;20121494;2.58430114582943e-06;0;1;Old +24418;Romania;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;1124;1;4.283257585980718e-06;20121494;5.5860663229082294e-05;1;0;Young +24419;Romania;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;14033;1;5.347593745913471e-05;20121494;0.0006974134226812382;1;0;Young +24420;Romania;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;4010;1;1.5281016832546866e-05;20121494;0.00019928937682261565;0;1;Old +24421;Romania;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24422;Romania;M;Craft and related trades workers;Manufacturing   ;Y15-29;77897;1;0.00029684423147254447;20121494;0.0038713328145514444;1;0;Young +24423;Romania;M;Craft and related trades workers;Manufacturing   ;Y30-49;232867;1;0.0008873926550485515;20121494;0.011573047210112729;1;0;Young +24424;Romania;M;Craft and related trades workers;Manufacturing   ;Y50-64;106910;1;0.00040740486522882434;20121494;0.005313223759627391;0;1;Old +24425;Romania;M;Craft and related trades workers;Manufacturing   ;Y65-84;329;1;1.2537293111989825e-06;20121494;1.6350674557266972e-05;0;1;Old +24426;Romania;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3715;1;1.4156852252596413e-05;20121494;0.00018462843762992947;1;0;Young +24427;Romania;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;28630;1;0.00010910112516603911;20121494;0.0014228565731749343;1;0;Young +24428;Romania;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;15464;1;5.8929088353741835e-05;20121494;0.0007685314022905058;0;1;Old +24429;Romania;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;12;1;4.5728728675950726e-08;20121494;5.963771874990992e-07;0;1;Old +24430;Romania;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1078;1;4.1079641260562404e-06;20121494;5.3574550677002417e-05;1;0;Young +24431;Romania;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;9622;1;3.6666818943333155e-05;20121494;0.00047819510817636104;1;0;Young +24432;Romania;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;6892;1;2.6263533169554367e-05;20121494;0.000342519298020316;0;1;Old +24433;Romania;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;16;1;6.097163823460096e-08;20121494;7.951695833321323e-07;0;1;Old +24434;Romania;M;Craft and related trades workers;Construction   ;Y15-29;77463;1;0.0002951903757854309;20121494;0.0038497638396035603;1;0;Young +24435;Romania;M;Craft and related trades workers;Construction   ;Y30-49;206345;1;0.000786324543219921;20121494;0.010254954229541802;1;0;Young +24436;Romania;M;Craft and related trades workers;Construction   ;Y50-64;61938;1;0.00023602883306091967;20121494;0.0030782008532766005;0;1;Old +24437;Romania;M;Craft and related trades workers;Construction   ;Y65-84;387;1;1.4747514997994108e-06;20121494;1.923316429684595e-05;0;1;Old +24438;Romania;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;14896;1;5.6764595196413505e-05;20121494;0.0007403028820822152;1;0;Young +24439;Romania;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;34432;1;0.0001312109654808613;20121494;0.0017112049433307486;1;0;Young +24440;Romania;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;12314;1;4.692529707630477e-05;20121494;0.0006119823905719923;0;1;Old +24441;Romania;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;52;1;1.9815782426245315e-07;20121494;2.58430114582943e-06;0;1;Old +24442;Romania;M;Craft and related trades workers;Transportation and storage   ;Y15-29;3092;1;1.1782769088836638e-05;20121494;0.00015366652197893458;1;0;Young +24443;Romania;M;Craft and related trades workers;Transportation and storage   ;Y30-49;20842;1;7.942318025534708e-05;20121494;0.0010358077784880188;1;0;Young +24444;Romania;M;Craft and related trades workers;Transportation and storage   ;Y50-64;10193;1;3.884274428283048e-05;20121494;0.0005065727226815265;0;1;Old +24445;Romania;M;Craft and related trades workers;Transportation and storage   ;Y65-84;21;1;8.002527518291377e-08;20121494;1.0436600781234236e-06;0;1;Old +24446;Romania;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;663;1;2.5265122593462776e-06;20121494;3.2949839609325234e-05;1;0;Young +24447;Romania;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;1695;1;6.4591829254780405e-06;20121494;8.423827773424777e-05;1;0;Young +24448;Romania;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;730;1;2.7818309944536693e-06;20121494;3.6279612239528534e-05;0;1;Old +24449;Romania;M;Craft and related trades workers;Information and communication   ;Y15-29;1882;1;7.171788947344939e-06;20121494;9.353182223944206e-05;1;0;Young +24450;Romania;M;Craft and related trades workers;Information and communication   ;Y30-49;5138;1;1.9579517328086236e-05;20121494;0.00025534883244753096;1;0;Young +24451;Romania;M;Craft and related trades workers;Information and communication   ;Y50-64;1662;1;6.3334289216191756e-06;20121494;8.259824046862525e-05;0;1;Old +24452;Romania;M;Craft and related trades workers;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;20121494;2.981885937495496e-07;0;1;Old +24453;Romania;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;35;1;1.3337545863818962e-07;20121494;1.7394334635390395e-06;1;0;Young +24454;Romania;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;183;1;6.973631123082485e-07;20121494;9.094752109361262e-06;1;0;Young +24455;Romania;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;99;1;3.772620115765935e-07;20121494;4.920111796867569e-06;0;1;Old +24456;Romania;M;Craft and related trades workers;Real estate activities   ;Y15-29;74;1;2.819938268350295e-07;20121494;3.677659322911112e-06;1;0;Young +24457;Romania;M;Craft and related trades workers;Real estate activities   ;Y30-49;393;1;1.4976158641373862e-06;20121494;1.95313528905955e-05;1;0;Young +24458;Romania;M;Craft and related trades workers;Real estate activities   ;Y50-64;256;1;9.755462117536154e-07;20121494;1.2722713333314117e-05;0;1;Old +24459;Romania;M;Craft and related trades workers;Real estate activities   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24460;Romania;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;851;1;3.242929008602839e-06;20121494;4.229308221347779e-05;1;0;Young +24461;Romania;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2591;1;9.873594666615694e-06;20121494;0.00012876777440084717;1;0;Young +24462;Romania;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;1535;1;5.84946654313203e-06;20121494;7.628658190092645e-05;0;1;Old +24463;Romania;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +24464;Romania;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;1354;1;5.159724885603107e-06;20121494;6.72912259894817e-05;1;0;Young +24465;Romania;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;3656;1;1.3932019336606321e-05;20121494;0.00018169624979139223;1;0;Young +24466;Romania;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;1692;1;6.447750743309053e-06;20121494;8.408918343737299e-05;0;1;Old +24467;Romania;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24468;Romania;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;829;1;3.1590930060302626e-06;20121494;4.11997240363961e-05;1;0;Young +24469;Romania;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;4478;1;1.7064437250908947e-05;20121494;0.00022254808713508052;1;0;Young +24470;Romania;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;3000;1;1.1432182168987682e-05;20121494;0.0001490942968747748;0;1;Old +24471;Romania;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24472;Romania;M;Craft and related trades workers;Education   ;Y15-29;131;1;4.992052880457954e-07;20121494;6.510450963531833e-06;1;0;Young +24473;Romania;M;Craft and related trades workers;Education   ;Y30-49;2263;1;8.623676082806374e-06;20121494;0.00011246679794253846;1;0;Young +24474;Romania;M;Craft and related trades workers;Education   ;Y50-64;3090;1;1.1775147634057313e-05;20121494;0.00015356712578101805;0;1;Old +24475;Romania;M;Craft and related trades workers;Education   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +24476;Romania;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;242;1;9.221960282983396e-07;20121494;1.2026939947898501e-05;1;0;Young +24477;Romania;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;2248;1;8.566515171961437e-06;20121494;0.00011172132645816459;1;0;Young +24478;Romania;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;2677;1;1.0201317222126674e-05;20121494;0.0001330418109112574;0;1;Old +24479;Romania;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;367;1;1.3985369520061597e-06;20121494;1.8239202317680783e-05;1;0;Young +24480;Romania;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;1234;1;4.702437598843599e-06;20121494;6.13274541144907e-05;1;0;Young +24481;Romania;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;822;1;3.132417914302625e-06;20121494;4.0851837343688296e-05;0;1;Old +24482;Romania;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;8;1;3.048581911730048e-08;20121494;3.9758479166606616e-07;0;1;Old +24483;Romania;M;Craft and related trades workers;Other service activities   ;Y15-29;2121;1;8.082552793474292e-06;20121494;0.00010540966789046579;1;0;Young +24484;Romania;M;Craft and related trades workers;Other service activities   ;Y30-49;7382;1;2.813078959048902e-05;20121494;0.00036687136650986256;1;0;Young +24485;Romania;M;Craft and related trades workers;Other service activities   ;Y50-64;3678;1;1.4015855339178898e-05;20121494;0.00018278960796847392;0;1;Old +24486;Romania;M;Craft and related trades workers;Other service activities   ;Y65-84;54;1;2.0577927904177827e-07;20121494;2.6836973437459464e-06;0;1;Old +24487;Romania;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;44;1;1.6767200514515266e-07;20121494;2.186716354163364e-06;1;0;Young +24488;Romania;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;121;1;4.610980141491698e-07;20121494;6.013469973949251e-06;1;0;Young +24489;Romania;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;75;1;2.8580455422469204e-07;20121494;3.72735742186937e-06;0;1;Old +24490;Romania;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;3293;1;1.2548725294158812e-05;20121494;0.00016365583986954448;1;0;Young +24491;Romania;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;15702;1;5.9836041472481524e-05;20121494;0.0007803595498425713;1;0;Young +24492;Romania;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;5337;1;2.0337852078629085e-05;20121494;0.0002652387541402244;0;1;Old +24493;Romania;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;84;1;3.201011007316551e-07;20121494;4.174640312493694e-06;0;1;Old +24494;Romania;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;1329;1;5.064456700861543e-06;20121494;6.604877351552523e-05;1;0;Young +24495;Romania;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;19081;1;7.271248932215131e-05;20121494;0.000948289426222526;1;0;Young +24496;Romania;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;4177;1;1.5917408306620516e-05;20121494;0.0002075889593486448;0;1;Old +24497;Romania;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24498;Romania;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;44673;1;0.00017023662467839556;20121494;0.0022201631747622718;1;0;Young +24499;Romania;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;109665;1;0.0004179034191873447;20121494;0.005450142022257393;1;0;Young +24500;Romania;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;31887;1;0.00012151266427417006;20121494;0.0015847232814819815;0;1;Old +24501;Romania;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;103;1;3.9250492113524375e-07;20121494;5.1189041927006015e-06;0;1;Old +24502;Romania;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;354;1;1.3489974959405465e-06;20121494;1.7593127031223427e-05;1;0;Young +24503;Romania;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;4372;1;1.6660500147604714e-05;20121494;0.00021728008864550514;1;0;Young +24504;Romania;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2302;1;8.772294451003214e-06;20121494;0.00011440502380191053;0;1;Old +24505;Romania;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24506;Romania;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;885;1;3.372493739851366e-06;20121494;4.3982817578058565e-05;1;0;Young +24507;Romania;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;5051;1;1.9247984045185595e-05;20121494;0.00025102509783816253;1;0;Young +24508;Romania;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2496;1;9.511575564597752e-06;20121494;0.00012404645499981265;0;1;Old +24509;Romania;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24510;Romania;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;5610;1;2.1378180656006963e-05;20121494;0.0002788063351558289;1;0;Young +24511;Romania;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;22174;1;8.449906913837762e-05;20121494;0.0011020056463004189;1;0;Young +24512;Romania;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;9171;1;3.494818089059534e-05;20121494;0.0004557812655461866;0;1;Old +24513;Romania;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;36;1;1.3718618602785217e-07;20121494;1.7891315624972976e-06;0;1;Old +24514;Romania;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;11112;1;4.234480275393037e-05;20121494;0.0005522452756241659;1;0;Young +24515;Romania;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;30193;1;0.0001150572920760817;20121494;0.0015005347018466919;1;0;Young +24516;Romania;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;7022;1;2.67589277302105e-05;20121494;0.00034898005088488955;0;1;Old +24517;Romania;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;36;1;1.3718618602785217e-07;20121494;1.7891315624972976e-06;0;1;Old +24518;Romania;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;33043;1;0.00012591786513662;20121494;0.001642174283877728;1;0;Young +24519;Romania;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;139812;1;0.0005327854178035019;20121494;0.006948390611552005;1;0;Young +24520;Romania;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;38648;1;0.00014727699215567864;20121494;0.0019207321285387657;0;1;Old +24521;Romania;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;219;1;8.345492983361008e-07;20121494;1.0883883671858561e-05;0;1;Old +24522;Romania;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;894;1;3.406790286358329e-06;20121494;4.443010046868289e-05;1;0;Young +24523;Romania;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;1511;1;5.758009085780129e-06;20121494;7.509382752592824e-05;1;0;Young +24524;Romania;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;490;1;1.8672564209346547e-06;20121494;2.435206848954655e-05;0;1;Old +24525;Romania;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24526;Romania;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;526;1;2.004442606962507e-06;20121494;2.614120005204385e-05;1;0;Young +24527;Romania;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;1498;1;5.708469629714516e-06;20121494;7.444775223947088e-05;1;0;Young +24528;Romania;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;484;1;1.8443920565966793e-06;20121494;2.4053879895797003e-05;0;1;Old +24529;Romania;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;40;1;1.5242909558650242e-07;20121494;1.987923958330331e-06;0;1;Old +24530;Romania;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;71;1;2.705616446660418e-07;20121494;3.5285650260363372e-06;1;0;Young +24531;Romania;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;524;1;1.9968211521831816e-06;20121494;2.6041803854127333e-05;1;0;Young +24532;Romania;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;203;1;7.735776601014998e-07;20121494;1.008871408852643e-05;0;1;Old +24533;Romania;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24534;Romania;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;57;1;2.1721146121076594e-07;20121494;2.8327916406207214e-06;1;0;Young +24535;Romania;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;277;1;1.0555714869365292e-06;20121494;1.376637341143754e-05;1;0;Young +24536;Romania;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;113;1;4.3061219503186933e-07;20121494;5.615885182283184e-06;0;1;Old +24537;Romania;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24538;Romania;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;465;1;1.7719882361930907e-06;20121494;2.3109616015590096e-05;1;0;Young +24539;Romania;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;1986;1;7.5681045958698455e-06;20121494;9.870042453110092e-05;1;0;Young +24540;Romania;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;790;1;3.010474637833423e-06;20121494;3.926149817702403e-05;0;1;Old +24541;Romania;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24542;Romania;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;1471;1;5.6055799901936264e-06;20121494;7.310590356759791e-05;1;0;Young +24543;Romania;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;3904;1;1.4877079729242636e-05;20121494;0.00019402137833304028;1;0;Young +24544;Romania;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;1271;1;4.843434512261115e-06;20121494;6.316628377594626e-05;0;1;Old +24545;Romania;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;20121494;1.9879239583303308e-07;0;1;Old +24546;Romania;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;2300;1;8.764672996223889e-06;20121494;0.00011430562760399401;1;0;Young +24547;Romania;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;11520;1;4.38995795289127e-05;20121494;0.0005725220999991353;1;0;Young +24548;Romania;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;5057;1;1.9270848409523567e-05;20121494;0.00025132328643191206;0;1;Old +24549;Romania;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;17;1;6.478236562426352e-08;20121494;8.448676822903906e-07;0;1;Old +24550;Romania;M;Plant and machine operators, and assemblers;Education   ;Y15-29;223;1;8.49792207894751e-07;20121494;1.1082676067691594e-05;1;0;Young +24551;Romania;M;Plant and machine operators, and assemblers;Education   ;Y30-49;2749;1;1.047568959418238e-05;20121494;0.00013662007403625199;1;0;Young +24552;Romania;M;Plant and machine operators, and assemblers;Education   ;Y50-64;1900;1;7.240382040358865e-06;20121494;9.442638802069071e-05;0;1;Old +24553;Romania;M;Plant and machine operators, and assemblers;Education   ;Y65-84;16;1;6.097163823460096e-08;20121494;7.951695833321323e-07;0;1;Old +24554;Romania;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;431;1;1.6424235049445636e-06;20121494;2.1419880651009313e-05;1;0;Young +24555;Romania;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;4990;1;1.9015529674416178e-05;20121494;0.00024799351380170876;1;0;Young +24556;Romania;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;3054;1;1.1637961448029459e-05;20121494;0.00015177799421852076;0;1;Old +24557;Romania;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;9;1;3.429654650696304e-08;20121494;4.472828906243244e-07;0;1;Old +24558;Romania;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;179;1;6.821202027495983e-07;20121494;8.89595971352823e-06;1;0;Young +24559;Romania;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;666;1;2.5379444415152654e-06;20121494;3.309893390620001e-05;1;0;Young +24560;Romania;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;325;1;1.2384864016403321e-06;20121494;1.6151882161433937e-05;0;1;Old +24561;Romania;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24562;Romania;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;847;1;3.227686099044189e-06;20121494;4.209428981764475e-05;1;0;Young +24563;Romania;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;2617;1;9.972673578746921e-06;20121494;0.0001300599249737619;1;0;Young +24564;Romania;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;905;1;3.4487082876446173e-06;20121494;4.497677955722373e-05;0;1;Old +24565;Romania;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;0;1;Old +24566;Romania;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;123;1;4.6871946892849497e-07;20121494;6.112866171865767e-06;1;0;Young +24567;Romania;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;346;1;1.3185116768232459e-06;20121494;1.719554223955736e-05;1;0;Young +24568;Romania;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;138;1;5.258803797734334e-07;20121494;6.858337656239641e-06;0;1;Old +24569;Romania;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;54929;1;0.0002093194447867748;20121494;0.0027298668776781685;1;0;Young +24570;Romania;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;93013;1;0.0003544471866946837;20121494;0.0046225692784044765;1;0;Young +24571;Romania;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;43792;1;0.00016687937384810285;20121494;0.0021763791495800463;0;1;Old +24572;Romania;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;21889;1;8.341301183232379e-05;20121494;0.0010878416880973152;0;1;Old +24573;Romania;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;1150;1;4.382336498111944e-06;20121494;5.715281380199701e-05;0;1;Old +24574;Romania;M;Elementary occupations;Mining and quarrying   ;Y15-29;588;1;2.2407077051215855e-06;20121494;2.9222482187455863e-05;1;0;Young +24575;Romania;M;Elementary occupations;Mining and quarrying   ;Y30-49;2117;1;8.067309883915641e-06;20121494;0.00010521087549463275;1;0;Young +24576;Romania;M;Elementary occupations;Mining and quarrying   ;Y50-64;626;1;2.385515345928763e-06;20121494;3.111100994786968e-05;0;1;Old +24577;Romania;M;Elementary occupations;Manufacturing   ;Y15-29;23179;1;8.83288501649885e-05;20121494;0.0011519522357534683;1;0;Young +24578;Romania;M;Elementary occupations;Manufacturing   ;Y30-49;38210;1;0.00014560789355900643;20121494;0.0018989643611950484;1;0;Young +24579;Romania;M;Elementary occupations;Manufacturing   ;Y50-64;11178;1;4.25963107616481e-05;20121494;0.0005555253501554109;0;1;Old +24580;Romania;M;Elementary occupations;Manufacturing   ;Y65-84;81;1;3.086689185626674e-07;20121494;4.02554601561892e-06;0;1;Old +24581;Romania;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;334;1;1.2727829481472953e-06;20121494;1.659916505205826e-05;1;0;Young +24582;Romania;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;1366;1;5.205453614279058e-06;20121494;6.78876031769808e-05;1;0;Young +24583;Romania;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;603;1;2.297868615966524e-06;20121494;2.9967953671829735e-05;0;1;Old +24584;Romania;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3671;1;1.398918024745126e-05;20121494;0.0001824417212757661;1;0;Young +24585;Romania;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;9588;1;3.653725421208463e-05;20121494;0.00047650537281178026;1;0;Young +24586;Romania;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3408;1;1.2986958943970006e-05;20121494;0.0001693711212497442;0;1;Old +24587;Romania;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;17;1;6.478236562426352e-08;20121494;8.448676822903906e-07;0;1;Old +24588;Romania;M;Elementary occupations;Construction   ;Y15-29;31969;1;0.0001218251439201224;20121494;0.0015887985255965587;1;0;Young +24589;Romania;M;Elementary occupations;Construction   ;Y30-49;55097;1;0.0002099596469882381;20121494;0.0027382161583031557;1;0;Young +24590;Romania;M;Elementary occupations;Construction   ;Y50-64;13436;1;5.120093320750616e-05;20121494;0.0006677436576031581;0;1;Old +24591;Romania;M;Elementary occupations;Construction   ;Y65-84;148;1;5.63987653670059e-07;20121494;7.355318645822224e-06;0;1;Old +24592;Romania;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;17010;1;6.482047289816016e-05;20121494;0.0008453646632799732;1;0;Young +24593;Romania;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;22331;1;8.509735333855464e-05;20121494;0.0011098082478368655;1;0;Young +24594;Romania;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5984;1;2.2803392699740762e-05;20121494;0.00029739342416621747;0;1;Old +24595;Romania;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;68;1;2.591294624970541e-07;20121494;3.3794707291615622e-06;0;1;Old +24596;Romania;M;Elementary occupations;Transportation and storage   ;Y15-29;3559;1;1.3562378779809052e-05;20121494;0.00017687553419244118;1;0;Young +24597;Romania;M;Elementary occupations;Transportation and storage   ;Y30-49;6851;1;2.6107293346578202e-05;20121494;0.0003404816759630274;1;0;Young +24598;Romania;M;Elementary occupations;Transportation and storage   ;Y50-64;2175;1;8.288332072516069e-06;20121494;0.00010809336523421174;0;1;Old +24599;Romania;M;Elementary occupations;Transportation and storage   ;Y65-84;28;1;1.067003669105517e-07;20121494;1.3915467708312315e-06;0;1;Old +24600;Romania;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;1942;1;7.400432590724693e-06;20121494;9.651370817693756e-05;1;0;Young +24601;Romania;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;1959;1;7.465214956348956e-06;20121494;9.735857585922795e-05;1;0;Young +24602;Romania;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;629;1;2.3969475280977505e-06;20121494;3.126010424474445e-05;0;1;Old +24603;Romania;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;13;1;4.953945606561329e-08;20121494;6.460752864573575e-07;0;1;Old +24604;Romania;M;Elementary occupations;Information and communication   ;Y15-29;581;1;2.2140326133939478e-06;20121494;2.8874595494748054e-05;1;0;Young +24605;Romania;M;Elementary occupations;Information and communication   ;Y30-49;729;1;2.7780202670640067e-06;20121494;3.6229914140570276e-05;1;0;Young +24606;Romania;M;Elementary occupations;Information and communication   ;Y50-64;260;1;9.907891213122658e-07;20121494;1.292150572914715e-05;0;1;Old +24607;Romania;M;Elementary occupations;Information and communication   ;Y65-84;8;1;3.048581911730048e-08;20121494;3.9758479166606616e-07;0;1;Old +24608;Romania;M;Elementary occupations;Financial and insurance activities   ;Y15-29;62;1;2.3626509815907876e-07;20121494;3.0812821354120126e-06;1;0;Young +24609;Romania;M;Elementary occupations;Financial and insurance activities   ;Y30-49;209;1;7.964420244394752e-07;20121494;1.0386902682275978e-05;1;0;Young +24610;Romania;M;Elementary occupations;Financial and insurance activities   ;Y50-64;86;1;3.277225555109802e-07;20121494;4.274036510410211e-06;0;1;Old +24611;Romania;M;Elementary occupations;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;20121494;1.490942968747748e-07;0;1;Old +24612;Romania;M;Elementary occupations;Real estate activities   ;Y15-29;137;1;5.220696523837708e-07;20121494;6.808639557281382e-06;1;0;Young +24613;Romania;M;Elementary occupations;Real estate activities   ;Y30-49;320;1;1.2194327646920193e-06;20121494;1.5903391666642647e-05;1;0;Young +24614;Romania;M;Elementary occupations;Real estate activities   ;Y50-64;182;1;6.93552384918586e-07;20121494;9.045054010403005e-06;0;1;Old +24615;Romania;M;Elementary occupations;Real estate activities   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24616;Romania;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;787;1;2.999042455664435e-06;20121494;3.9112403880149255e-05;1;0;Young +24617;Romania;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;1265;1;4.820570147923139e-06;20121494;6.286809518219671e-05;1;0;Young +24618;Romania;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;521;1;1.9853889700141942e-06;20121494;2.589270955725256e-05;0;1;Old +24619;Romania;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;18;1;6.859309301392609e-08;20121494;8.945657812486488e-07;0;1;Old +24620;Romania;M;Elementary occupations;Administrative and support service activities   ;Y15-29;5589;1;2.129815538082405e-05;20121494;0.00027776267507770546;1;0;Young +24621;Romania;M;Elementary occupations;Administrative and support service activities   ;Y30-49;12569;1;4.7897032560668726e-05;20121494;0.0006246554058063482;1;0;Young +24622;Romania;M;Elementary occupations;Administrative and support service activities   ;Y50-64;5126;1;1.9533788599410285e-05;20121494;0.0002547524552600319;0;1;Old +24623;Romania;M;Elementary occupations;Administrative and support service activities   ;Y65-84;32;1;1.2194327646920193e-07;20121494;1.5903391666642647e-06;0;1;Old +24624;Romania;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;2156;1;8.215928252112481e-06;20121494;0.00010714910135400483;1;0;Young +24625;Romania;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;8923;1;3.400312049795903e-05;20121494;0.0004434561370045385;1;0;Young +24626;Romania;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;4959;1;1.889739712533664e-05;20121494;0.0002464528727340028;0;1;Old +24627;Romania;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;36;1;1.3718618602785217e-07;20121494;1.7891315624972976e-06;0;1;Old +24628;Romania;M;Elementary occupations;Education   ;Y15-29;281;1;1.0708143964951796e-06;20121494;1.3965165807270574e-05;1;0;Young +24629;Romania;M;Elementary occupations;Education   ;Y30-49;2731;1;1.0407096501168453e-05;20121494;0.00013572550825500333;1;0;Young +24630;Romania;M;Elementary occupations;Education   ;Y50-64;2528;1;9.633518841066953e-06;20121494;0.0001256367941664769;0;1;Old +24631;Romania;M;Elementary occupations;Education   ;Y65-84;14;1;5.335018345527585e-08;20121494;6.957733854156158e-07;0;1;Old +24632;Romania;M;Elementary occupations;Human health and social work activities   ;Y15-29;194;1;7.392811135945367e-07;20121494;9.641431197902105e-06;1;0;Young +24633;Romania;M;Elementary occupations;Human health and social work activities   ;Y30-49;1397;1;5.323586163358597e-06;20121494;6.94282442446868e-05;1;0;Young +24634;Romania;M;Elementary occupations;Human health and social work activities   ;Y50-64;887;1;3.3801151946306913e-06;20121494;4.408221377597509e-05;0;1;Old +24635;Romania;M;Elementary occupations;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;20121494;2.4849049479129137e-07;0;1;Old +24636;Romania;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;561;1;2.1378180656006966e-06;20121494;2.788063351558289e-05;1;0;Young +24637;Romania;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;1110;1;4.229907402525442e-06;20121494;5.5164889843666677e-05;1;0;Young +24638;Romania;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;540;1;2.057792790417783e-06;20121494;2.6836973437459466e-05;0;1;Old +24639;Romania;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24640;Romania;M;Elementary occupations;Other service activities   ;Y15-29;2953;1;1.1253077981673541e-05;20121494;0.00014675848622373665;1;0;Young +24641;Romania;M;Elementary occupations;Other service activities   ;Y30-49;5436;1;2.0715114090205678e-05;20121494;0.00027015886593709194;1;0;Young +24642;Romania;M;Elementary occupations;Other service activities   ;Y50-64;1967;1;7.495700775466257e-06;20121494;9.775616065089401e-05;0;1;Old +24643;Romania;M;Elementary occupations;Other service activities   ;Y65-84;67;1;2.5531873510739155e-07;20121494;3.329772630203304e-06;0;1;Old +24644;Romania;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;2257;1;8.600811718468398e-06;20121494;0.00011216860934878892;1;0;Young +24645;Romania;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3979;1;1.516288428346733e-05;20121494;0.00019774873575490964;1;0;Young +24646;Romania;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1580;1;6.020949275666846e-06;20121494;7.852299635404806e-05;0;1;Old +24647;Romania;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;202;1;7.697669327118372e-07;20121494;1.003901598956817e-05;0;1;Old +24648;Romania;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;7;1;2.6675091727637924e-08;20121494;3.478866927078079e-07;0;1;Old +24649;Romania;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;17;1;6.478236562426352e-08;20121494;8.448676822903906e-07;1;0;Young +24650;Romania;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;51;1;1.943470968727906e-07;20121494;2.5346030468711718e-06;1;0;Young +24651;Romania;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;63;1;2.400758255487413e-07;20121494;3.130980234370271e-06;0;1;Old +24652;Slovenia;F;Not applicable;Not applicable  ;Y15-29;116445;1;0.00044374015088925685;2050189;0.05679720259937011;1;0;Young +24653;Slovenia;F;Not applicable;Not applicable  ;Y30-49;31268;1;0.00011915382401996895;2050189;0.015251276833501692;1;0;Young +24654;Slovenia;F;Not applicable;Not applicable  ;Y50-64;124752;1;0.00047539586331518376;2050189;0.06084902416313813;0;1;Old +24655;Slovenia;F;Not applicable;Not applicable  ;Y65-84;178275;1;0.000679357425392093;2050189;0.08695539777064457;0;1;Old +24656;Slovenia;F;Not applicable;Not applicable  ;Y_GE85;26163;1;9.970006069574158e-05;2050189;0.012761262498237967;0;1;Old +24657;Slovenia;F;Not applicable;Not applicable  ;Y_LT15;141151;1;0.0005378879817782601;2050189;0.06884779891024681;0;1;Old +24658;Slovenia;F;Armed forces occupations;Construction   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +24659;Slovenia;F;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +24660;Slovenia;F;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +24661;Slovenia;F;Armed forces occupations;Transportation and storage   ;Y30-49;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +24662;Slovenia;F;Armed forces occupations;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24663;Slovenia;F;Armed forces occupations;Professional, scientific and technical activities   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +24664;Slovenia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;307;1;1.1698933086264062e-06;2050189;0.00014974229205209861;1;0;Young +24665;Slovenia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;608;1;2.3169222529148367e-06;2050189;0.0002965580246504103;1;0;Young +24666;Slovenia;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;46;1;1.7529345992447778e-07;2050189;2.2436955812366568e-05;0;1;Old +24667;Slovenia;F;Armed forces occupations;Other service activities   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +24668;Slovenia;F;Managers;Agriculture, forestry and fishing   ;Y15-29;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;1;0;Young +24669;Slovenia;F;Managers;Agriculture, forestry and fishing   ;Y30-49;49;1;1.8672564209346548e-07;2050189;2.390023553926004e-05;1;0;Young +24670;Slovenia;F;Managers;Agriculture, forestry and fishing   ;Y50-64;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;0;1;Old +24671;Slovenia;F;Managers;Mining and quarrying   ;Y15-29;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +24672;Slovenia;F;Managers;Mining and quarrying   ;Y30-49;15;1;5.716091084493841e-08;2050189;7.316398634467359e-06;1;0;Young +24673;Slovenia;F;Managers;Mining and quarrying   ;Y50-64;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +24674;Slovenia;F;Managers;Manufacturing   ;Y15-29;129;1;4.915838332664703e-07;2050189;6.292102825641929e-05;1;0;Young +24675;Slovenia;F;Managers;Manufacturing   ;Y30-49;1415;1;5.392179256372523e-06;2050189;0.0006901802711847542;1;0;Young +24676;Slovenia;F;Managers;Manufacturing   ;Y50-64;569;1;2.168303884717997e-06;2050189;0.00027753538820079516;0;1;Old +24677;Slovenia;F;Managers;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24678;Slovenia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +24679;Slovenia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;58;1;2.2102218860042852e-07;2050189;2.8290074719940455e-05;1;0;Young +24680;Slovenia;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;0;1;Old +24681;Slovenia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +24682;Slovenia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;101;1;3.848834663559186e-07;2050189;4.926375080541355e-05;1;0;Young +24683;Slovenia;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;0;1;Old +24684;Slovenia;F;Managers;Construction   ;Y15-29;74;1;2.819938268350295e-07;2050189;3.6094233263372306e-05;1;0;Young +24685;Slovenia;F;Managers;Construction   ;Y30-49;436;1;1.6614771418928764e-06;2050189;0.0002126633203085179;1;0;Young +24686;Slovenia;F;Managers;Construction   ;Y50-64;131;1;4.992052880457954e-07;2050189;6.389654807434826e-05;0;1;Old +24687;Slovenia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;266;1;1.013653485650241e-06;2050189;0.0001297441357845545;1;0;Young +24688;Slovenia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2051;1;7.815801876197911e-06;2050189;0.0010003955732861701;1;0;Young +24689;Slovenia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;577;1;2.1987897038352974e-06;2050189;0.00028143746747251105;0;1;Old +24690;Slovenia;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +24691;Slovenia;F;Managers;Transportation and storage   ;Y15-29;42;1;1.6005055036582754e-07;2050189;2.0485916176508605e-05;1;0;Young +24692;Slovenia;F;Managers;Transportation and storage   ;Y30-49;415;1;1.5814518667099626e-06;2050189;0.0002024203622202636;1;0;Young +24693;Slovenia;F;Managers;Transportation and storage   ;Y50-64;134;1;5.106374702147831e-07;2050189;6.535982780124173e-05;0;1;Old +24694;Slovenia;F;Managers;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24695;Slovenia;F;Managers;Accommodation and food service activities   ;Y15-29;85;1;3.239118281213176e-07;2050189;4.1459592261981704e-05;1;0;Young +24696;Slovenia;F;Managers;Accommodation and food service activities   ;Y30-49;527;1;2.0082533343521694e-06;2050189;0.00025704947202428654;1;0;Young +24697;Slovenia;F;Managers;Accommodation and food service activities   ;Y50-64;145;1;5.525554715010713e-07;2050189;7.072518679985114e-05;0;1;Old +24698;Slovenia;F;Managers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24699;Slovenia;F;Managers;Information and communication   ;Y15-29;76;1;2.896152816143546e-07;2050189;3.7069753081301285e-05;1;0;Young +24700;Slovenia;F;Managers;Information and communication   ;Y30-49;512;1;1.951092423507231e-06;2050189;0.0002497330733898192;1;0;Young +24701;Slovenia;F;Managers;Information and communication   ;Y50-64;111;1;4.2299074025254424e-07;2050189;5.414134989505846e-05;0;1;Old +24702;Slovenia;F;Managers;Financial and insurance activities   ;Y15-29;25;1;9.526818474156401e-08;2050189;1.2193997724112265e-05;1;0;Young +24703;Slovenia;F;Managers;Financial and insurance activities   ;Y30-49;635;1;2.419811892435726e-06;2050189;0.0003097275421924515;1;0;Young +24704;Slovenia;F;Managers;Financial and insurance activities   ;Y50-64;226;1;8.612243900637387e-07;2050189;0.00011023373942597488;0;1;Old +24705;Slovenia;F;Managers;Financial and insurance activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24706;Slovenia;F;Managers;Real estate activities   ;Y15-29;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;1;0;Young +24707;Slovenia;F;Managers;Real estate activities   ;Y30-49;193;1;7.354703862048742e-07;2050189;9.413766243014669e-05;1;0;Young +24708;Slovenia;F;Managers;Real estate activities   ;Y50-64;78;1;2.9723673639367974e-07;2050189;3.8045272899230265e-05;0;1;Old +24709;Slovenia;F;Managers;Professional, scientific and technical activities   ;Y15-29;282;1;1.074625123884842e-06;2050189;0.00013754829432798636;1;0;Young +24710;Slovenia;F;Managers;Professional, scientific and technical activities   ;Y30-49;1795;1;6.840255664444296e-06;2050189;0.0008755290365912606;1;0;Young +24711;Slovenia;F;Managers;Professional, scientific and technical activities   ;Y50-64;542;1;2.065414245197108e-06;2050189;0.0002643658706587539;0;1;Old +24712;Slovenia;F;Managers;Professional, scientific and technical activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24713;Slovenia;F;Managers;Administrative and support service activities   ;Y15-29;99;1;3.772620115765935e-07;2050189;4.828823098748457e-05;1;0;Young +24714;Slovenia;F;Managers;Administrative and support service activities   ;Y30-49;390;1;1.4861836819683986e-06;2050189;0.00019022636449615132;1;0;Young +24715;Slovenia;F;Managers;Administrative and support service activities   ;Y50-64;73;1;2.7818309944536694e-07;2050189;3.560647335440781e-05;0;1;Old +24716;Slovenia;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;27;1;1.0288963952088914e-07;2050189;1.3169517542041246e-05;1;0;Young +24717;Slovenia;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;660;1;2.51508007717729e-06;2050189;0.0003219215399165638;1;0;Young +24718;Slovenia;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;361;1;1.3756725876681843e-06;2050189;0.0001760813271361811;0;1;Old +24719;Slovenia;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24720;Slovenia;F;Managers;Education   ;Y15-29;48;1;1.829149147038029e-07;2050189;2.3412475630295547e-05;1;0;Young +24721;Slovenia;F;Managers;Education   ;Y30-49;603;1;2.297868615966524e-06;2050189;0.00029411922510558784;1;0;Young +24722;Slovenia;F;Managers;Education   ;Y50-64;340;1;1.2956473124852705e-06;2050189;0.00016583836904792681;0;1;Old +24723;Slovenia;F;Managers;Education   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24724;Slovenia;F;Managers;Human health and social work activities   ;Y15-29;24;1;9.145745735190145e-08;2050189;1.1706237815147774e-05;1;0;Young +24725;Slovenia;F;Managers;Human health and social work activities   ;Y30-49;337;1;1.284215130316283e-06;2050189;0.00016437508932103334;1;0;Young +24726;Slovenia;F;Managers;Human health and social work activities   ;Y50-64;199;1;7.583347505428495e-07;2050189;9.706422188393362e-05;0;1;Old +24727;Slovenia;F;Managers;Arts, entertainment and recreation   ;Y15-29;39;1;1.4861836819683987e-07;2050189;1.9022636449615132e-05;1;0;Young +24728;Slovenia;F;Managers;Arts, entertainment and recreation   ;Y30-49;261;1;9.945998487019282e-07;2050189;0.00012730533623973205;1;0;Young +24729;Slovenia;F;Managers;Arts, entertainment and recreation   ;Y50-64;86;1;3.277225555109802e-07;2050189;4.194735217094619e-05;0;1;Old +24730;Slovenia;F;Managers;Other service activities   ;Y15-29;58;1;2.2102218860042852e-07;2050189;2.8290074719940455e-05;1;0;Young +24731;Slovenia;F;Managers;Other service activities   ;Y30-49;324;1;1.2346756742506695e-06;2050189;0.00015803421050449495;1;0;Young +24732;Slovenia;F;Managers;Other service activities   ;Y50-64;106;1;4.039371033042314e-07;2050189;5.1702550350236e-05;0;1;Old +24733;Slovenia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +24734;Slovenia;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +24735;Slovenia;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;15;1;5.716091084493841e-08;2050189;7.316398634467359e-06;1;0;Young +24736;Slovenia;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;103;1;3.9250492113524375e-07;2050189;5.0239270623342533e-05;1;0;Young +24737;Slovenia;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;19;1;7.240382040358865e-08;2050189;9.267438270325321e-06;0;1;Old +24738;Slovenia;F;Professionals;Mining and quarrying   ;Y15-29;21;1;8.002527518291377e-08;2050189;1.0242958088254303e-05;1;0;Young +24739;Slovenia;F;Professionals;Mining and quarrying   ;Y30-49;47;1;1.7910418731414036e-07;2050189;2.2924715721331058e-05;1;0;Young +24740;Slovenia;F;Professionals;Mining and quarrying   ;Y50-64;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;0;1;Old +24741;Slovenia;F;Professionals;Manufacturing   ;Y15-29;550;1;2.0959000643144084e-06;2050189;0.0002682679499304698;1;0;Young +24742;Slovenia;F;Professionals;Manufacturing   ;Y30-49;3294;1;1.2552536021548475e-05;2050189;0.001606681140129032;1;0;Young +24743;Slovenia;F;Professionals;Manufacturing   ;Y50-64;773;1;2.9456922722091595e-06;2050189;0.0003770384096295512;0;1;Old +24744;Slovenia;F;Professionals;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24745;Slovenia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;48;1;1.829149147038029e-07;2050189;2.3412475630295547e-05;1;0;Young +24746;Slovenia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;232;1;8.840887544017141e-07;2050189;0.00011316029887976182;1;0;Young +24747;Slovenia;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;59;1;2.2483291599009106e-07;2050189;2.8777834628904945e-05;0;1;Old +24748;Slovenia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;38;1;1.448076408071773e-07;2050189;1.8534876540650643e-05;1;0;Young +24749;Slovenia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;190;1;7.240382040358865e-07;2050189;9.267438270325322e-05;1;0;Young +24750;Slovenia;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;33;1;1.257540038588645e-07;2050189;1.609607699582819e-05;0;1;Old +24751;Slovenia;F;Professionals;Construction   ;Y15-29;141;1;5.37312561942421e-07;2050189;6.877414716399318e-05;1;0;Young +24752;Slovenia;F;Professionals;Construction   ;Y30-49;410;1;1.5623982297616498e-06;2050189;0.00019998156267544113;1;0;Young +24753;Slovenia;F;Professionals;Construction   ;Y50-64;108;1;4.1155855808355654e-07;2050189;5.2678070168164986e-05;0;1;Old +24754;Slovenia;F;Professionals;Construction   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +24755;Slovenia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;558;1;2.1263858834317088e-06;2050189;0.00027217002920218577;1;0;Young +24756;Slovenia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2115;1;8.059688429136316e-06;2050189;0.0010316122074598977;1;0;Young +24757;Slovenia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;442;1;1.6843415062308518e-06;2050189;0.00021558987976230483;0;1;Old +24758;Slovenia;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +24759;Slovenia;F;Professionals;Transportation and storage   ;Y15-29;69;1;2.629401898867167e-07;2050189;3.365543371854985e-05;1;0;Young +24760;Slovenia;F;Professionals;Transportation and storage   ;Y30-49;575;1;2.191168249055972e-06;2050189;0.0002804619476545821;1;0;Young +24761;Slovenia;F;Professionals;Transportation and storage   ;Y50-64;145;1;5.525554715010713e-07;2050189;7.072518679985114e-05;0;1;Old +24762;Slovenia;F;Professionals;Accommodation and food service activities   ;Y15-29;137;1;5.220696523837708e-07;2050189;6.68231075281352e-05;1;0;Young +24763;Slovenia;F;Professionals;Accommodation and food service activities   ;Y30-49;383;1;1.4595085902407606e-06;2050189;0.0001868120451333999;1;0;Young +24764;Slovenia;F;Professionals;Accommodation and food service activities   ;Y50-64;138;1;5.258803797734334e-07;2050189;6.73108674370997e-05;0;1;Old +24765;Slovenia;F;Professionals;Information and communication   ;Y15-29;488;1;1.8596349661553295e-06;2050189;0.0002380268355746714;1;0;Young +24766;Slovenia;F;Professionals;Information and communication   ;Y30-49;2217;1;8.448382622881896e-06;2050189;0.0010813637181742756;1;0;Young +24767;Slovenia;F;Professionals;Information and communication   ;Y50-64;385;1;1.4671300450200858e-06;2050189;0.00018778756495132888;0;1;Old +24768;Slovenia;F;Professionals;Information and communication   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24769;Slovenia;F;Professionals;Financial and insurance activities   ;Y15-29;398;1;1.516669501085699e-06;2050189;0.00019412844376786724;1;0;Young +24770;Slovenia;F;Professionals;Financial and insurance activities   ;Y30-49;2207;1;8.410275348985272e-06;2050189;0.0010764861190846308;1;0;Young +24771;Slovenia;F;Professionals;Financial and insurance activities   ;Y50-64;467;1;1.7796096909724157e-06;2050189;0.00022778387748641712;0;1;Old +24772;Slovenia;F;Professionals;Real estate activities   ;Y15-29;44;1;1.6767200514515266e-07;2050189;2.1461435994437585e-05;1;0;Young +24773;Slovenia;F;Professionals;Real estate activities   ;Y30-49;163;1;6.211485645149974e-07;2050189;7.950486516121196e-05;1;0;Young +24774;Slovenia;F;Professionals;Real estate activities   ;Y50-64;40;1;1.5242909558650242e-07;2050189;1.9510396358579622e-05;0;1;Old +24775;Slovenia;F;Professionals;Professional, scientific and technical activities   ;Y15-29;2129;1;8.11303861259159e-06;2050189;0.0010384408461854005;1;0;Young +24776;Slovenia;F;Professionals;Professional, scientific and technical activities   ;Y30-49;5787;1;2.205267940397724e-05;2050189;0.0028226665931775073;1;0;Young +24777;Slovenia;F;Professionals;Professional, scientific and technical activities   ;Y50-64;993;1;3.7840522979349228e-06;2050189;0.00048434558960173913;0;1;Old +24778;Slovenia;F;Professionals;Professional, scientific and technical activities   ;Y65-84;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +24779;Slovenia;F;Professionals;Administrative and support service activities   ;Y15-29;190;1;7.240382040358865e-07;2050189;9.267438270325322e-05;1;0;Young +24780;Slovenia;F;Professionals;Administrative and support service activities   ;Y30-49;387;1;1.4747514997994108e-06;2050189;0.00018876308476925785;1;0;Young +24781;Slovenia;F;Professionals;Administrative and support service activities   ;Y50-64;74;1;2.819938268350295e-07;2050189;3.6094233263372306e-05;0;1;Old +24782;Slovenia;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;1380;1;5.258803797734333e-06;2050189;0.000673108674370997;1;0;Young +24783;Slovenia;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;7262;1;2.7673502303729515e-05;2050189;0.0035421124589001306;1;0;Young +24784;Slovenia;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;1996;1;7.606211869766471e-06;2050189;0.0009735687782931233;0;1;Old +24785;Slovenia;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;15;1;5.716091084493841e-08;2050189;7.316398634467359e-06;0;1;Old +24786;Slovenia;F;Professionals;Education   ;Y15-29;6637;1;2.5291797685190415e-05;2050189;0.003237262515797324;1;0;Young +24787;Slovenia;F;Professionals;Education   ;Y30-49;24595;1;9.372484014875067e-05;2050189;0.011996454960981647;1;0;Young +24788;Slovenia;F;Professionals;Education   ;Y50-64;8160;1;3.10955354996465e-05;2050189;0.003980120857150243;0;1;Old +24789;Slovenia;F;Professionals;Education   ;Y65-84;34;1;1.2956473124852705e-07;2050189;1.658383690479268e-05;0;1;Old +24790;Slovenia;F;Professionals;Human health and social work activities   ;Y15-29;2437;1;9.28674264860766e-06;2050189;0.0011886708981464636;1;0;Young +24791;Slovenia;F;Professionals;Human health and social work activities   ;Y30-49;8545;1;3.256266554466658e-05;2050189;0.004167908422101572;1;0;Young +24792;Slovenia;F;Professionals;Human health and social work activities   ;Y50-64;3171;1;1.208381655261998e-05;2050189;0.0015466866713263997;0;1;Old +24793;Slovenia;F;Professionals;Human health and social work activities   ;Y65-84;95;1;3.6201910201794326e-07;2050189;4.633719135162661e-05;0;1;Old +24794;Slovenia;F;Professionals;Arts, entertainment and recreation   ;Y15-29;448;1;1.7072058705688271e-06;2050189;0.00021851643921609178;1;0;Young +24795;Slovenia;F;Professionals;Arts, entertainment and recreation   ;Y30-49;2257;1;8.600811718468398e-06;2050189;0.0011008741145328554;1;0;Young +24796;Slovenia;F;Professionals;Arts, entertainment and recreation   ;Y50-64;506;1;1.9282280591692557e-06;2050189;0.00024680651393603226;0;1;Old +24797;Slovenia;F;Professionals;Arts, entertainment and recreation   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +24798;Slovenia;F;Professionals;Other service activities   ;Y15-29;156;1;5.944734727873595e-07;2050189;7.609054579846053e-05;1;0;Young +24799;Slovenia;F;Professionals;Other service activities   ;Y30-49;458;1;1.7453131444654527e-06;2050189;0.0002233940383057367;1;0;Young +24800;Slovenia;F;Professionals;Other service activities   ;Y50-64;95;1;3.6201910201794326e-07;2050189;4.633719135162661e-05;0;1;Old +24801;Slovenia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +24802;Slovenia;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24803;Slovenia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +24804;Slovenia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;215;1;8.193063887774505e-07;2050189;0.00010486838042736547;1;0;Young +24805;Slovenia;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;60;1;2.2864364337975364e-07;2050189;2.9265594537869435e-05;0;1;Old +24806;Slovenia;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;13;1;4.953945606561329e-08;2050189;6.3408788165383775e-06;1;0;Young +24807;Slovenia;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;93;1;3.543976472386181e-07;2050189;4.536167153369762e-05;1;0;Young +24808;Slovenia;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;47;1;1.7910418731414036e-07;2050189;2.2924715721331058e-05;0;1;Old +24809;Slovenia;F;Technicians and associate professionals;Manufacturing   ;Y15-29;1285;1;4.89678469571639e-06;2050189;0.0006267714830193704;1;0;Young +24810;Slovenia;F;Technicians and associate professionals;Manufacturing   ;Y30-49;7367;1;2.8073628679644083e-05;2050189;0.003593327249341402;1;0;Young +24811;Slovenia;F;Technicians and associate professionals;Manufacturing   ;Y50-64;2283;1;8.699890630599626e-06;2050189;0.001113555872165932;0;1;Old +24812;Slovenia;F;Technicians and associate professionals;Manufacturing   ;Y65-84;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +24813;Slovenia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;72;1;2.7437237205570434e-07;2050189;3.511871344544332e-05;1;0;Young +24814;Slovenia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;319;1;1.2156220373023567e-06;2050189;0.0001555954109596725;1;0;Young +24815;Slovenia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;143;1;5.449340167217462e-07;2050189;6.974966698192215e-05;0;1;Old +24816;Slovenia;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24817;Slovenia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;65;1;2.4769728032806646e-07;2050189;3.170439408269189e-05;1;0;Young +24818;Slovenia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;395;1;1.5052373189167114e-06;2050189;0.00019266516404097377;1;0;Young +24819;Slovenia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;142;1;5.411232893320836e-07;2050189;6.926190707295767e-05;0;1;Old +24820;Slovenia;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24821;Slovenia;F;Technicians and associate professionals;Construction   ;Y15-29;321;1;1.223243492081682e-06;2050189;0.00015657093077760148;1;0;Young +24822;Slovenia;F;Technicians and associate professionals;Construction   ;Y30-49;1452;1;5.533176169790038e-06;2050189;0.0007082273878164404;1;0;Young +24823;Slovenia;F;Technicians and associate professionals;Construction   ;Y50-64;443;1;1.6881522336205144e-06;2050189;0.00021607763967126933;0;1;Old +24824;Slovenia;F;Technicians and associate professionals;Construction   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24825;Slovenia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1914;1;7.293732223814141e-06;2050189;0.000933572465758035;1;0;Young +24826;Slovenia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7814;1;2.9777023822823247e-05;2050189;0.0038113559286485294;1;0;Young +24827;Slovenia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1887;1;7.190842584293251e-06;2050189;0.0009204029482159937;0;1;Old +24828;Slovenia;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +24829;Slovenia;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;365;1;1.3909154972268347e-06;2050189;0.00017803236677203907;1;0;Young +24830;Slovenia;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;1784;1;6.798337663158008e-06;2050189;0.0008701636775926512;1;0;Young +24831;Slovenia;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;556;1;2.1187644286523836e-06;2050189;0.00027119450938425677;0;1;Old +24832;Slovenia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;300;1;1.1432182168987682e-06;2050189;0.00014632797268934717;1;0;Young +24833;Slovenia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;1134;1;4.3213648598773435e-06;2050189;0.0005531197367657323;1;0;Young +24834;Slovenia;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;365;1;1.3909154972268347e-06;2050189;0.00017803236677203907;0;1;Old +24835;Slovenia;F;Technicians and associate professionals;Information and communication   ;Y15-29;456;1;1.7376916896861275e-06;2050189;0.0002224185184878077;1;0;Young +24836;Slovenia;F;Technicians and associate professionals;Information and communication   ;Y30-49;1723;1;6.565883292388592e-06;2050189;0.0008404103231458173;1;0;Young +24837;Slovenia;F;Technicians and associate professionals;Information and communication   ;Y50-64;390;1;1.4861836819683986e-06;2050189;0.00019022636449615132;0;1;Old +24838;Slovenia;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;912;1;3.475383379372255e-06;2050189;0.0004448370369756154;1;0;Young +24839;Slovenia;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;3983;1;1.5178127193025978e-05;2050189;0.001942747717405566;1;0;Young +24840;Slovenia;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;1154;1;4.397579407670595e-06;2050189;0.0005628749349450221;0;1;Old +24841;Slovenia;F;Technicians and associate professionals;Real estate activities   ;Y15-29;97;1;3.6964055679726836e-07;2050189;4.731271116955559e-05;1;0;Young +24842;Slovenia;F;Technicians and associate professionals;Real estate activities   ;Y30-49;493;1;1.8786886031036423e-06;2050189;0.00024046563511949387;1;0;Young +24843;Slovenia;F;Technicians and associate professionals;Real estate activities   ;Y50-64;175;1;6.668772931909481e-07;2050189;8.535798406878585e-05;0;1;Old +24844;Slovenia;F;Technicians and associate professionals;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24845;Slovenia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;1246;1;4.748166327519551e-06;2050189;0.0006077488465697552;1;0;Young +24846;Slovenia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;4896;1;1.8657321299787897e-05;2050189;0.002388072514290146;1;0;Young +24847;Slovenia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;1270;1;4.839623784871452e-06;2050189;0.000619455084384903;0;1;Old +24848;Slovenia;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +24849;Slovenia;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;425;1;1.6195591406065882e-06;2050189;0.0002072979613099085;1;0;Young +24850;Slovenia;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;961;1;3.662109021465721e-06;2050189;0.00046873727251487546;1;0;Young +24851;Slovenia;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;196;1;7.469025683738619e-07;2050189;9.560094215704016e-05;0;1;Old +24852;Slovenia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;483;1;1.8405813292070167e-06;2050189;0.00023558803602984895;1;0;Young +24853;Slovenia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;4244;1;1.6172727041727908e-05;2050189;0.002070053053645298;1;0;Young +24854;Slovenia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;1592;1;6.066678004342796e-06;2050189;0.000776513775071469;0;1;Old +24855;Slovenia;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +24856;Slovenia;F;Technicians and associate professionals;Education   ;Y15-29;328;1;1.24991858380932e-06;2050189;0.00015998525014035292;1;0;Young +24857;Slovenia;F;Technicians and associate professionals;Education   ;Y30-49;1508;1;5.746576903611141e-06;2050189;0.0007355419427184518;1;0;Young +24858;Slovenia;F;Technicians and associate professionals;Education   ;Y50-64;569;1;2.168303884717997e-06;2050189;0.00027753538820079516;0;1;Old +24859;Slovenia;F;Technicians and associate professionals;Education   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24860;Slovenia;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;3080;1;1.1737040360160687e-05;2050189;0.001502300519610631;1;0;Young +24861;Slovenia;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;9272;1;3.533306435695126e-05;2050189;0.004522509875918757;1;0;Young +24862;Slovenia;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;3280;1;1.2499185838093198e-05;2050189;0.001599852501403529;0;1;Old +24863;Slovenia;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;14;1;5.335018345527585e-08;2050189;6.828638725502868e-06;0;1;Old +24864;Slovenia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;178;1;6.783094753599357e-07;2050189;8.682126379567933e-05;1;0;Young +24865;Slovenia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;665;1;2.534133714125603e-06;2050189;0.00032436033946138624;1;0;Young +24866;Slovenia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;152;1;5.792305632287092e-07;2050189;7.413950616260257e-05;0;1;Old +24867;Slovenia;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24868;Slovenia;F;Technicians and associate professionals;Other service activities   ;Y15-29;188;1;7.164167492565614e-07;2050189;9.169886288532423e-05;1;0;Young +24869;Slovenia;F;Technicians and associate professionals;Other service activities   ;Y30-49;642;1;2.446486984163364e-06;2050189;0.00031314186155520296;1;0;Young +24870;Slovenia;F;Technicians and associate professionals;Other service activities   ;Y50-64;207;1;7.8882056966015e-07;2050189;0.00010096630115564955;0;1;Old +24871;Slovenia;F;Technicians and associate professionals;Other service activities   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +24872;Slovenia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;1;0;Young +24873;Slovenia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +24874;Slovenia;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +24875;Slovenia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;33;1;1.257540038588645e-07;2050189;1.609607699582819e-05;1;0;Young +24876;Slovenia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;155;1;5.906627453976969e-07;2050189;7.560278588949604e-05;1;0;Young +24877;Slovenia;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;71;1;2.705616446660418e-07;2050189;3.463095353647883e-05;0;1;Old +24878;Slovenia;F;Clerical support workers;Mining and quarrying   ;Y15-29;14;1;5.335018345527585e-08;2050189;6.828638725502868e-06;1;0;Young +24879;Slovenia;F;Clerical support workers;Mining and quarrying   ;Y30-49;67;1;2.5531873510739155e-07;2050189;3.267991390062087e-05;1;0;Young +24880;Slovenia;F;Clerical support workers;Mining and quarrying   ;Y50-64;35;1;1.3337545863818962e-07;2050189;1.707159681375717e-05;0;1;Old +24881;Slovenia;F;Clerical support workers;Manufacturing   ;Y15-29;583;1;2.221654068173273e-06;2050189;0.000284364026926298;1;0;Young +24882;Slovenia;F;Clerical support workers;Manufacturing   ;Y30-49;3846;1;1.4656057540642208e-05;2050189;0.0018759246098774308;1;0;Young +24883;Slovenia;F;Clerical support workers;Manufacturing   ;Y50-64;1732;1;6.600179838895555e-06;2050189;0.0008448001623264977;0;1;Old +24884;Slovenia;F;Clerical support workers;Manufacturing   ;Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +24885;Slovenia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;46;1;1.7529345992447778e-07;2050189;2.2436955812366568e-05;1;0;Young +24886;Slovenia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;314;1;1.196568400354044e-06;2050189;0.00015315661141485003;1;0;Young +24887;Slovenia;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;192;1;7.316596588152116e-07;2050189;9.364990252118219e-05;0;1;Old +24888;Slovenia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;52;1;1.9815782426245315e-07;2050189;2.536351526615351e-05;1;0;Young +24889;Slovenia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;367;1;1.3985369520061597e-06;2050189;0.00017900788658996804;1;0;Young +24890;Slovenia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;155;1;5.906627453976969e-07;2050189;7.560278588949604e-05;0;1;Old +24891;Slovenia;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24892;Slovenia;F;Clerical support workers;Construction   ;Y15-29;431;1;1.6424235049445636e-06;2050189;0.00021022452076369544;1;0;Young +24893;Slovenia;F;Clerical support workers;Construction   ;Y30-49;1612;1;6.142892552136047e-06;2050189;0.0007862689732507589;1;0;Young +24894;Slovenia;F;Clerical support workers;Construction   ;Y50-64;602;1;2.2940578885768615e-06;2050189;0.00029363146519662334;0;1;Old +24895;Slovenia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1068;1;4.0698568521596144e-06;2050189;0.000520927582774076;1;0;Young +24896;Slovenia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4005;1;1.5261963195598555e-05;2050189;0.001953478435402785;1;0;Young +24897;Slovenia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1353;1;5.155914158213445e-06;2050189;0.0006599391568289558;0;1;Old +24898;Slovenia;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24899;Slovenia;F;Clerical support workers;Transportation and storage   ;Y15-29;454;1;1.7300702349068025e-06;2050189;0.00022144299866987873;1;0;Young +24900;Slovenia;F;Clerical support workers;Transportation and storage   ;Y30-49;2745;1;1.0460446684623729e-05;2050189;0.0013389009501075266;1;0;Young +24901;Slovenia;F;Clerical support workers;Transportation and storage   ;Y50-64;906;1;3.45251901503428e-06;2050189;0.00044191047752182845;0;1;Old +24902;Slovenia;F;Clerical support workers;Transportation and storage   ;Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +24903;Slovenia;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;307;1;1.1698933086264062e-06;2050189;0.00014974229205209861;1;0;Young +24904;Slovenia;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;758;1;2.888531361364221e-06;2050189;0.00036972201099508387;1;0;Young +24905;Slovenia;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;217;1;8.269278435567757e-07;2050189;0.00010584390024529446;0;1;Old +24906;Slovenia;F;Clerical support workers;Information and communication   ;Y15-29;250;1;9.526818474156401e-07;2050189;0.00012193997724112264;1;0;Young +24907;Slovenia;F;Clerical support workers;Information and communication   ;Y30-49;1027;1;3.9136170291834495e-06;2050189;0.0005009294265065318;1;0;Young +24908;Slovenia;F;Clerical support workers;Information and communication   ;Y50-64;325;1;1.2384864016403321e-06;2050189;0.00015852197041345945;0;1;Old +24909;Slovenia;F;Clerical support workers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24910;Slovenia;F;Clerical support workers;Financial and insurance activities   ;Y15-29;796;1;3.033339002171398e-06;2050189;0.0003882568875357345;1;0;Young +24911;Slovenia;F;Clerical support workers;Financial and insurance activities   ;Y30-49;3672;1;1.3992990974840923e-05;2050189;0.0017910543857176094;1;0;Young +24912;Slovenia;F;Clerical support workers;Financial and insurance activities   ;Y50-64;1843;1;7.023170579148099e-06;2050189;0.0008989415122215562;0;1;Old +24913;Slovenia;F;Clerical support workers;Financial and insurance activities   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +24914;Slovenia;F;Clerical support workers;Real estate activities   ;Y15-29;63;1;2.400758255487413e-07;2050189;3.072887426476291e-05;1;0;Young +24915;Slovenia;F;Clerical support workers;Real estate activities   ;Y30-49;266;1;1.013653485650241e-06;2050189;0.0001297441357845545;1;0;Young +24916;Slovenia;F;Clerical support workers;Real estate activities   ;Y50-64;119;1;4.5347655936984473e-07;2050189;5.8043429166774384e-05;0;1;Old +24917;Slovenia;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;600;1;2.2864364337975363e-06;2050189;0.00029265594537869434;1;0;Young +24918;Slovenia;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;2301;1;8.768483723613551e-06;2050189;0.001122335550527293;1;0;Young +24919;Slovenia;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;919;1;3.5020584710998933e-06;2050189;0.00044825135633836684;0;1;Old +24920;Slovenia;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24921;Slovenia;F;Clerical support workers;Administrative and support service activities   ;Y15-29;437;1;1.665287869282539e-06;2050189;0.0002131510802174824;1;0;Young +24922;Slovenia;F;Clerical support workers;Administrative and support service activities   ;Y30-49;798;1;3.0409604569507232e-06;2050189;0.0003892324073536635;1;0;Young +24923;Slovenia;F;Clerical support workers;Administrative and support service activities   ;Y50-64;224;1;8.536029352844136e-07;2050189;0.00010925821960804589;0;1;Old +24924;Slovenia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;832;1;3.1705251881992504e-06;2050189;0.00040581624425845616;1;0;Young +24925;Slovenia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;4973;1;1.8950747308791912e-05;2050189;0.0024256300272804117;1;0;Young +24926;Slovenia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;1521;1;5.796116359676755e-06;2050189;0.0007418828215349902;0;1;Old +24927;Slovenia;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24928;Slovenia;F;Clerical support workers;Education   ;Y15-29;169;1;6.440129288529728e-07;2050189;8.243142461499891e-05;1;0;Young +24929;Slovenia;F;Clerical support workers;Education   ;Y30-49;1069;1;4.073667579549277e-06;2050189;0.0005214153426830405;1;0;Young +24930;Slovenia;F;Clerical support workers;Education   ;Y50-64;531;1;2.02349624391082e-06;2050189;0.0002590005116601445;0;1;Old +24931;Slovenia;F;Clerical support workers;Education   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24932;Slovenia;F;Clerical support workers;Human health and social work activities   ;Y15-29;405;1;1.543344592813337e-06;2050189;0.0001975427631306187;1;0;Young +24933;Slovenia;F;Clerical support workers;Human health and social work activities   ;Y30-49;1993;1;7.594779687597483e-06;2050189;0.0009721054985662298;1;0;Young +24934;Slovenia;F;Clerical support workers;Human health and social work activities   ;Y50-64;912;1;3.475383379372255e-06;2050189;0.0004448370369756154;0;1;Old +24935;Slovenia;F;Clerical support workers;Human health and social work activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24936;Slovenia;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;183;1;6.973631123082485e-07;2050189;8.926006334050178e-05;1;0;Young +24937;Slovenia;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;894;1;3.406790286358329e-06;2050189;0.0004360573586142546;1;0;Young +24938;Slovenia;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;345;1;1.3147009494335833e-06;2050189;0.00016827716859274926;0;1;Old +24939;Slovenia;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +24940;Slovenia;F;Clerical support workers;Other service activities   ;Y15-29;124;1;4.725301963181575e-07;2050189;6.0482228711596836e-05;1;0;Young +24941;Slovenia;F;Clerical support workers;Other service activities   ;Y30-49;502;1;1.9129851496106053e-06;2050189;0.00024485547430017426;1;0;Young +24942;Slovenia;F;Clerical support workers;Other service activities   ;Y50-64;190;1;7.240382040358865e-07;2050189;9.267438270325322e-05;0;1;Old +24943;Slovenia;F;Clerical support workers;Other service activities   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +24944;Slovenia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +24945;Slovenia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +24946;Slovenia;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +24947;Slovenia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;66;1;2.51508007717729e-07;2050189;3.219215399165638e-05;1;0;Young +24948;Slovenia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;236;1;8.993316639603643e-07;2050189;0.00011511133851561978;1;0;Young +24949;Slovenia;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;70;1;2.6675091727637925e-07;2050189;3.414319362751434e-05;0;1;Old +24950;Slovenia;F;Service and sales workers;Mining and quarrying   ;Y15-29;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;1;0;Young +24951;Slovenia;F;Service and sales workers;Mining and quarrying   ;Y30-49;14;1;5.335018345527585e-08;2050189;6.828638725502868e-06;1;0;Young +24952;Slovenia;F;Service and sales workers;Mining and quarrying   ;Y50-64;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +24953;Slovenia;F;Service and sales workers;Manufacturing   ;Y15-29;747;1;2.8466133600779327e-06;2050189;0.0003643566519964745;1;0;Young +24954;Slovenia;F;Service and sales workers;Manufacturing   ;Y30-49;2210;1;8.42170753115426e-06;2050189;0.0010779493988115243;1;0;Young +24955;Slovenia;F;Service and sales workers;Manufacturing   ;Y50-64;635;1;2.419811892435726e-06;2050189;0.0003097275421924515;0;1;Old +24956;Slovenia;F;Service and sales workers;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24957;Slovenia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +24958;Slovenia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +24959;Slovenia;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;22;1;8.383600257257633e-08;2050189;1.0730717997218792e-05;0;1;Old +24960;Slovenia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;1;0;Young +24961;Slovenia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;48;1;1.829149147038029e-07;2050189;2.3412475630295547e-05;1;0;Young +24962;Slovenia;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;12;1;4.5728728675950726e-08;2050189;5.853118907573887e-06;0;1;Old +24963;Slovenia;F;Service and sales workers;Construction   ;Y15-29;192;1;7.316596588152116e-07;2050189;9.364990252118219e-05;1;0;Young +24964;Slovenia;F;Service and sales workers;Construction   ;Y30-49;398;1;1.516669501085699e-06;2050189;0.00019412844376786724;1;0;Young +24965;Slovenia;F;Service and sales workers;Construction   ;Y50-64;78;1;2.9723673639367974e-07;2050189;3.8045272899230265e-05;0;1;Old +24966;Slovenia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;8539;1;3.2539801180328604e-05;2050189;0.0041649818626477856;1;0;Young +24967;Slovenia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;23667;1;9.018848513114382e-05;2050189;0.0115438137654626;1;0;Young +24968;Slovenia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;5922;1;2.2567127601581685e-05;2050189;0.0028885141808877132;0;1;Old +24969;Slovenia;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24970;Slovenia;F;Service and sales workers;Transportation and storage   ;Y15-29;229;1;8.726565722327264e-07;2050189;0.00011169701915286835;1;0;Young +24971;Slovenia;F;Service and sales workers;Transportation and storage   ;Y30-49;571;1;2.175925339497322e-06;2050189;0.0002785109080187241;1;0;Young +24972;Slovenia;F;Service and sales workers;Transportation and storage   ;Y50-64;131;1;4.992052880457954e-07;2050189;6.389654807434826e-05;0;1;Old +24973;Slovenia;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;3223;1;1.2281974376882432e-05;2050189;0.0015720501865925532;1;0;Young +24974;Slovenia;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;7181;1;2.7364833385166846e-05;2050189;0.0035026039062740068;1;0;Young +24975;Slovenia;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;1826;1;6.958388213523835e-06;2050189;0.0008906495937691598;0;1;Old +24976;Slovenia;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +24977;Slovenia;F;Service and sales workers;Information and communication   ;Y15-29;68;1;2.591294624970541e-07;2050189;3.316767380958536e-05;1;0;Young +24978;Slovenia;F;Service and sales workers;Information and communication   ;Y30-49;179;1;6.821202027495983e-07;2050189;8.730902370464381e-05;1;0;Young +24979;Slovenia;F;Service and sales workers;Information and communication   ;Y50-64;64;1;2.4388655293840386e-07;2050189;3.12166341737274e-05;0;1;Old +24980;Slovenia;F;Service and sales workers;Financial and insurance activities   ;Y15-29;39;1;1.4861836819683987e-07;2050189;1.9022636449615132e-05;1;0;Young +24981;Slovenia;F;Service and sales workers;Financial and insurance activities   ;Y30-49;150;1;5.716091084493841e-07;2050189;7.316398634467358e-05;1;0;Young +24982;Slovenia;F;Service and sales workers;Financial and insurance activities   ;Y50-64;71;1;2.705616446660418e-07;2050189;3.463095353647883e-05;0;1;Old +24983;Slovenia;F;Service and sales workers;Real estate activities   ;Y15-29;42;1;1.6005055036582754e-07;2050189;2.0485916176508605e-05;1;0;Young +24984;Slovenia;F;Service and sales workers;Real estate activities   ;Y30-49;107;1;4.07747830693894e-07;2050189;5.219031025920049e-05;1;0;Young +24985;Slovenia;F;Service and sales workers;Real estate activities   ;Y50-64;22;1;8.383600257257633e-08;2050189;1.0730717997218792e-05;0;1;Old +24986;Slovenia;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;189;1;7.202274766462239e-07;2050189;9.218662279428872e-05;1;0;Young +24987;Slovenia;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;464;1;1.7681775088034281e-06;2050189;0.00022632059775952364;1;0;Young +24988;Slovenia;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;110;1;4.1918001286288164e-07;2050189;5.3653589986093965e-05;0;1;Old +24989;Slovenia;F;Service and sales workers;Administrative and support service activities   ;Y15-29;344;1;1.310890222043921e-06;2050189;0.00016778940868378476;1;0;Young +24990;Slovenia;F;Service and sales workers;Administrative and support service activities   ;Y30-49;1036;1;3.947913575690413e-06;2050189;0.0005053192656872122;1;0;Young +24991;Slovenia;F;Service and sales workers;Administrative and support service activities   ;Y50-64;260;1;9.907891213122658e-07;2050189;0.00012681757633076755;0;1;Old +24992;Slovenia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;475;1;1.8100955100897163e-06;2050189;0.00023168595675813303;1;0;Young +24993;Slovenia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;719;1;2.739912993167381e-06;2050189;0.00035069937454546875;1;0;Young +24994;Slovenia;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;109;1;4.153692854732191e-07;2050189;5.316583007712947e-05;0;1;Old +24995;Slovenia;F;Service and sales workers;Education   ;Y15-29;313;1;1.1927576729643815e-06;2050189;0.00015266885150588556;1;0;Young +24996;Slovenia;F;Service and sales workers;Education   ;Y30-49;1966;1;7.491890048076594e-06;2050189;0.0009589359810241885;1;0;Young +24997;Slovenia;F;Service and sales workers;Education   ;Y50-64;941;1;3.5858944736724696e-06;2050189;0.0004589820743355856;0;1;Old +24998;Slovenia;F;Service and sales workers;Education   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +24999;Slovenia;F;Service and sales workers;Human health and social work activities   ;Y15-29;1064;1;4.054613942600964e-06;2050189;0.000518976543138218;1;0;Young +25000;Slovenia;F;Service and sales workers;Human health and social work activities   ;Y30-49;4421;1;1.684722578969818e-05;2050189;0.002156386557532013;1;0;Young +25001;Slovenia;F;Service and sales workers;Human health and social work activities   ;Y50-64;1645;1;6.268646555994912e-06;2050189;0.000802365050246587;0;1;Old +25002;Slovenia;F;Service and sales workers;Human health and social work activities   ;Y65-84;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +25003;Slovenia;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;195;1;7.430918409841993e-07;2050189;9.511318224807566e-05;1;0;Young +25004;Slovenia;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;454;1;1.7300702349068025e-06;2050189;0.00022144299866987873;1;0;Young +25005;Slovenia;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;99;1;3.772620115765935e-07;2050189;4.828823098748457e-05;0;1;Old +25006;Slovenia;F;Service and sales workers;Other service activities   ;Y15-29;1794;1;6.836444937054634e-06;2050189;0.0008750412766822961;1;0;Young +25007;Slovenia;F;Service and sales workers;Other service activities   ;Y30-49;3708;1;1.4130177160868775e-05;2050189;0.0018086137424403311;1;0;Young +25008;Slovenia;F;Service and sales workers;Other service activities   ;Y50-64;757;1;2.8847206339745583e-06;2050189;0.00036923425108611937;0;1;Old +25009;Slovenia;F;Service and sales workers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25010;Slovenia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;24;1;9.145745735190145e-08;2050189;1.1706237815147774e-05;1;0;Young +25011;Slovenia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;23;1;8.764672996223889e-08;2050189;1.1218477906183284e-05;1;0;Young +25012;Slovenia;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;11;1;4.1918001286288165e-08;2050189;5.365358998609396e-06;0;1;Old +25013;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;398;1;1.516669501085699e-06;2050189;0.00019412844376786724;1;0;Young +25014;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;4191;1;1.5970758490075792e-05;2050189;0.00204420177847018;1;0;Young +25015;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;2765;1;1.053666123241698e-05;2050189;0.0013486561482868166;0;1;Old +25016;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;0;1;Old +25017;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25018;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;21;1;8.002527518291377e-08;2050189;1.0242958088254303e-05;1;0;Young +25019;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;107;1;4.07747830693894e-07;2050189;5.219031025920049e-05;1;0;Young +25020;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;41;1;1.56239822976165e-07;2050189;1.9998156267544115e-05;0;1;Old +25021;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;12;1;4.5728728675950726e-08;2050189;5.853118907573887e-06;1;0;Young +25022;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25023;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;11;1;4.1918001286288165e-08;2050189;5.365358998609396e-06;1;0;Young +25024;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;59;1;2.2483291599009106e-07;2050189;2.8777834628904945e-05;1;0;Young +25025;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;12;1;4.5728728675950726e-08;2050189;5.853118907573887e-06;0;1;Old +25026;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +25027;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;16;1;6.097163823460096e-08;2050189;7.80415854343185e-06;1;0;Young +25028;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25029;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;41;1;1.56239822976165e-07;2050189;1.9998156267544115e-05;1;0;Young +25030;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;267;1;1.0174642130399036e-06;2050189;0.000130231895693519;1;0;Young +25031;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;66;1;2.51508007717729e-07;2050189;3.219215399165638e-05;0;1;Old +25032;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;1;0;Young +25033;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25034;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25035;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +25036;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;24;1;9.145745735190145e-08;2050189;1.1706237815147774e-05;1;0;Young +25037;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;0;1;Old +25038;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25039;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25040;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25041;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;25;1;9.526818474156401e-08;2050189;1.2193997724112265e-05;1;0;Young +25042;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;10;1;3.8107273896625604e-08;2050189;4.8775990896449056e-06;0;1;Old +25043;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;10;1;3.8107273896625604e-08;2050189;4.8775990896449056e-06;1;0;Young +25044;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;63;1;2.400758255487413e-07;2050189;3.072887426476291e-05;1;0;Young +25045;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;28;1;1.067003669105517e-07;2050189;1.3657277451005736e-05;0;1;Old +25046;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25047;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;14;1;5.335018345527585e-08;2050189;6.828638725502868e-06;1;0;Young +25048;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +25049;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +25050;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;1;0;Young +25051;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25052;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;19;1;7.240382040358865e-08;2050189;9.267438270325321e-06;1;0;Young +25053;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25054;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;1;0;Young +25055;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;15;1;5.716091084493841e-08;2050189;7.316398634467359e-06;1;0;Young +25056;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25057;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +25058;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;23;1;8.764672996223889e-08;2050189;1.1218477906183284e-05;1;0;Young +25059;Slovenia;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25060;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25061;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;20;1;7.621454779325121e-08;2050189;9.755198179289811e-06;1;0;Young +25062;Slovenia;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25063;Slovenia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;1;0;Young +25064;Slovenia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;46;1;1.7529345992447778e-07;2050189;2.2436955812366568e-05;1;0;Young +25065;Slovenia;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;12;1;4.5728728675950726e-08;2050189;5.853118907573887e-06;0;1;Old +25066;Slovenia;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25067;Slovenia;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25068;Slovenia;F;Craft and related trades workers;Manufacturing   ;Y15-29;1013;1;3.860266845728174e-06;2050189;0.0004941007877810289;1;0;Young +25069;Slovenia;F;Craft and related trades workers;Manufacturing   ;Y30-49;10146;1;3.866364009551634e-05;2050189;0.004948812036353722;1;0;Young +25070;Slovenia;F;Craft and related trades workers;Manufacturing   ;Y50-64;2994;1;1.1409317804649706e-05;2050189;0.001460353167439685;0;1;Old +25071;Slovenia;F;Craft and related trades workers;Manufacturing   ;Y65-84;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25072;Slovenia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;1;0;Young +25073;Slovenia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25074;Slovenia;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25075;Slovenia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25076;Slovenia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;11;1;4.1918001286288165e-08;2050189;5.365358998609396e-06;1;0;Young +25077;Slovenia;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25078;Slovenia;F;Craft and related trades workers;Construction   ;Y15-29;92;1;3.5058691984895557e-07;2050189;4.4873911624733136e-05;1;0;Young +25079;Slovenia;F;Craft and related trades workers;Construction   ;Y30-49;255;1;9.71735484363953e-07;2050189;0.0001243787767859451;1;0;Young +25080;Slovenia;F;Craft and related trades workers;Construction   ;Y50-64;68;1;2.591294624970541e-07;2050189;3.316767380958536e-05;0;1;Old +25081;Slovenia;F;Craft and related trades workers;Construction   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25082;Slovenia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;104;1;3.963156485249063e-07;2050189;5.072703053230702e-05;1;0;Young +25083;Slovenia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;659;1;2.5112693497876272e-06;2050189;0.0003214337800075993;1;0;Young +25084;Slovenia;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;171;1;6.516343836322978e-07;2050189;8.34069444329279e-05;0;1;Old +25085;Slovenia;F;Craft and related trades workers;Transportation and storage   ;Y15-29;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;1;0;Young +25086;Slovenia;F;Craft and related trades workers;Transportation and storage   ;Y30-49;58;1;2.2102218860042852e-07;2050189;2.8290074719940455e-05;1;0;Young +25087;Slovenia;F;Craft and related trades workers;Transportation and storage   ;Y50-64;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;0;1;Old +25088;Slovenia;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;83;1;3.1629037334199253e-07;2050189;4.048407244405272e-05;1;0;Young +25089;Slovenia;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;221;1;8.421707531154259e-07;2050189;0.00010779493988115242;1;0;Young +25090;Slovenia;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;55;1;2.0959000643144082e-07;2050189;2.6826794993046983e-05;0;1;Old +25091;Slovenia;F;Craft and related trades workers;Information and communication   ;Y15-29;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25092;Slovenia;F;Craft and related trades workers;Information and communication   ;Y30-49;63;1;2.400758255487413e-07;2050189;3.072887426476291e-05;1;0;Young +25093;Slovenia;F;Craft and related trades workers;Information and communication   ;Y50-64;24;1;9.145745735190145e-08;2050189;1.1706237815147774e-05;0;1;Old +25094;Slovenia;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +25095;Slovenia;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +25096;Slovenia;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;0;1;Old +25097;Slovenia;F;Craft and related trades workers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25098;Slovenia;F;Craft and related trades workers;Real estate activities   ;Y30-49;15;1;5.716091084493841e-08;2050189;7.316398634467359e-06;1;0;Young +25099;Slovenia;F;Craft and related trades workers;Real estate activities   ;Y50-64;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25100;Slovenia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;34;1;1.2956473124852705e-07;2050189;1.658383690479268e-05;1;0;Young +25101;Slovenia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;208;1;7.926312970498126e-07;2050189;0.00010145406106461404;1;0;Young +25102;Slovenia;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;64;1;2.4388655293840386e-07;2050189;3.12166341737274e-05;0;1;Old +25103;Slovenia;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;28;1;1.067003669105517e-07;2050189;1.3657277451005736e-05;1;0;Young +25104;Slovenia;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;83;1;3.1629037334199253e-07;2050189;4.048407244405272e-05;1;0;Young +25105;Slovenia;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;32;1;1.2194327646920193e-07;2050189;1.56083170868637e-05;0;1;Old +25106;Slovenia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;1;0;Young +25107;Slovenia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;69;1;2.629401898867167e-07;2050189;3.365543371854985e-05;1;0;Young +25108;Slovenia;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;28;1;1.067003669105517e-07;2050189;1.3657277451005736e-05;0;1;Old +25109;Slovenia;F;Craft and related trades workers;Education   ;Y15-29;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;1;0;Young +25110;Slovenia;F;Craft and related trades workers;Education   ;Y30-49;76;1;2.896152816143546e-07;2050189;3.7069753081301285e-05;1;0;Young +25111;Slovenia;F;Craft and related trades workers;Education   ;Y50-64;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;0;1;Old +25112;Slovenia;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;10;1;3.8107273896625604e-08;2050189;4.8775990896449056e-06;1;0;Young +25113;Slovenia;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;109;1;4.153692854732191e-07;2050189;5.316583007712947e-05;1;0;Young +25114;Slovenia;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;34;1;1.2956473124852705e-07;2050189;1.658383690479268e-05;0;1;Old +25115;Slovenia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;10;1;3.8107273896625604e-08;2050189;4.8775990896449056e-06;1;0;Young +25116;Slovenia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;73;1;2.7818309944536694e-07;2050189;3.560647335440781e-05;1;0;Young +25117;Slovenia;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;25;1;9.526818474156401e-08;2050189;1.2193997724112265e-05;0;1;Old +25118;Slovenia;F;Craft and related trades workers;Other service activities   ;Y15-29;10;1;3.8107273896625604e-08;2050189;4.8775990896449056e-06;1;0;Young +25119;Slovenia;F;Craft and related trades workers;Other service activities   ;Y30-49;119;1;4.5347655936984473e-07;2050189;5.8043429166774384e-05;1;0;Young +25120;Slovenia;F;Craft and related trades workers;Other service activities   ;Y50-64;43;1;1.638612777554901e-07;2050189;2.0973676085473095e-05;0;1;Old +25121;Slovenia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25122;Slovenia;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25123;Slovenia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25124;Slovenia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;21;1;8.002527518291377e-08;2050189;1.0242958088254303e-05;1;0;Young +25125;Slovenia;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +25126;Slovenia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25127;Slovenia;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25128;Slovenia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;1630;1;6.211485645149974e-06;2050189;0.0007950486516121196;1;0;Young +25129;Slovenia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;13292;1;5.0652188463394754e-05;2050189;0.0064833047099560085;1;0;Young +25130;Slovenia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;4491;1;1.711397670697456e-05;2050189;0.002190529751159527;0;1;Old +25131;Slovenia;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25132;Slovenia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25133;Slovenia;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25134;Slovenia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +25135;Slovenia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;16;1;6.097163823460096e-08;2050189;7.80415854343185e-06;1;0;Young +25136;Slovenia;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +25137;Slovenia;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;14;1;5.335018345527585e-08;2050189;6.828638725502868e-06;1;0;Young +25138;Slovenia;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;63;1;2.400758255487413e-07;2050189;3.072887426476291e-05;1;0;Young +25139;Slovenia;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;30;1;1.1432182168987682e-07;2050189;1.4632797268934718e-05;0;1;Old +25140;Slovenia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;38;1;1.448076408071773e-07;2050189;1.8534876540650643e-05;1;0;Young +25141;Slovenia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;266;1;1.013653485650241e-06;2050189;0.0001297441357845545;1;0;Young +25142;Slovenia;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;129;1;4.915838332664703e-07;2050189;6.292102825641929e-05;0;1;Old +25143;Slovenia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;77;1;2.9342600900401714e-07;2050189;3.755751299026578e-05;1;0;Young +25144;Slovenia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;318;1;1.2118113099126943e-06;2050189;0.000155107651050708;1;0;Young +25145;Slovenia;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;80;1;3.0485819117300483e-07;2050189;3.9020792717159244e-05;0;1;Old +25146;Slovenia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25147;Slovenia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;36;1;1.3718618602785217e-07;2050189;1.755935672272166e-05;1;0;Young +25148;Slovenia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;30;1;1.1432182168987682e-07;2050189;1.4632797268934718e-05;0;1;Old +25149;Slovenia;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25150;Slovenia;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +25151;Slovenia;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;1;0;Young +25152;Slovenia;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +25153;Slovenia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25154;Slovenia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;1;0;Young +25155;Slovenia;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;0;1;Old +25156;Slovenia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25157;Slovenia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;1;0;Young +25158;Slovenia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25159;Slovenia;F;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25160;Slovenia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;43;1;1.638612777554901e-07;2050189;2.0973676085473095e-05;1;0;Young +25161;Slovenia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;165;1;6.287700192943225e-07;2050189;8.048038497914095e-05;1;0;Young +25162;Slovenia;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;44;1;1.6767200514515266e-07;2050189;2.1461435994437585e-05;0;1;Old +25163;Slovenia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;164;1;6.2495929190466e-07;2050189;7.999262507017646e-05;1;0;Young +25164;Slovenia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;329;1;1.2537293111989825e-06;2050189;0.0001604730100493174;1;0;Young +25165;Slovenia;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;77;1;2.9342600900401714e-07;2050189;3.755751299026578e-05;0;1;Old +25166;Slovenia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;13;1;4.953945606561329e-08;2050189;6.3408788165383775e-06;1;0;Young +25167;Slovenia;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25168;Slovenia;F;Plant and machine operators, and assemblers;Education   ;Y15-29;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;1;0;Young +25169;Slovenia;F;Plant and machine operators, and assemblers;Education   ;Y30-49;63;1;2.400758255487413e-07;2050189;3.072887426476291e-05;1;0;Young +25170;Slovenia;F;Plant and machine operators, and assemblers;Education   ;Y50-64;52;1;1.9815782426245315e-07;2050189;2.536351526615351e-05;0;1;Old +25171;Slovenia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;1;0;Young +25172;Slovenia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;268;1;1.0212749404295662e-06;2050189;0.00013071965560248347;1;0;Young +25173;Slovenia;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;189;1;7.202274766462239e-07;2050189;9.218662279428872e-05;0;1;Old +25174;Slovenia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;1;0;Young +25175;Slovenia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +25176;Slovenia;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +25177;Slovenia;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;1;0;Young +25178;Slovenia;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;109;1;4.153692854732191e-07;2050189;5.316583007712947e-05;1;0;Young +25179;Slovenia;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;55;1;2.0959000643144082e-07;2050189;2.6826794993046983e-05;0;1;Old +25180;Slovenia;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25181;Slovenia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;44;1;1.6767200514515266e-07;2050189;2.1461435994437585e-05;1;0;Young +25182;Slovenia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;419;1;1.5966947762686128e-06;2050189;0.00020437140185612155;1;0;Young +25183;Slovenia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;181;1;6.897416575289234e-07;2050189;8.82845435225728e-05;0;1;Old +25184;Slovenia;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25185;Slovenia;F;Elementary occupations;Mining and quarrying   ;Y15-29;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;1;0;Young +25186;Slovenia;F;Elementary occupations;Mining and quarrying   ;Y30-49;22;1;8.383600257257633e-08;2050189;1.0730717997218792e-05;1;0;Young +25187;Slovenia;F;Elementary occupations;Mining and quarrying   ;Y50-64;12;1;4.5728728675950726e-08;2050189;5.853118907573887e-06;0;1;Old +25188;Slovenia;F;Elementary occupations;Manufacturing   ;Y15-29;1806;1;6.882173665730584e-06;2050189;0.00088089439558987;1;0;Young +25189;Slovenia;F;Elementary occupations;Manufacturing   ;Y30-49;9989;1;3.806535589533932e-05;2050189;0.004872233730646296;1;0;Young +25190;Slovenia;F;Elementary occupations;Manufacturing   ;Y50-64;3591;1;1.3684322056278255e-05;2050189;0.0017515458330914857;0;1;Old +25191;Slovenia;F;Elementary occupations;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25192;Slovenia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25193;Slovenia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;47;1;1.7910418731414036e-07;2050189;2.2924715721331058e-05;1;0;Young +25194;Slovenia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;38;1;1.448076408071773e-07;2050189;1.8534876540650643e-05;0;1;Old +25195;Slovenia;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25196;Slovenia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;50;1;1.9053636948312803e-07;2050189;2.438799544822453e-05;1;0;Young +25197;Slovenia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;353;1;1.3451867685508839e-06;2050189;0.00017217924786446518;1;0;Young +25198;Slovenia;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;132;1;5.03016015435458e-07;2050189;6.438430798331276e-05;0;1;Old +25199;Slovenia;F;Elementary occupations;Construction   ;Y15-29;134;1;5.106374702147831e-07;2050189;6.535982780124173e-05;1;0;Young +25200;Slovenia;F;Elementary occupations;Construction   ;Y30-49;617;1;2.3512187994217997e-06;2050189;0.0003009478638310907;1;0;Young +25201;Slovenia;F;Elementary occupations;Construction   ;Y50-64;318;1;1.2118113099126943e-06;2050189;0.000155107651050708;0;1;Old +25202;Slovenia;F;Elementary occupations;Construction   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25203;Slovenia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;218;1;8.307385709464382e-07;2050189;0.00010633166015425894;1;0;Young +25204;Slovenia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1242;1;4.7329234179609e-06;2050189;0.0006057978069338973;1;0;Young +25205;Slovenia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;587;1;2.236896977731923e-06;2050189;0.000286315066562156;0;1;Old +25206;Slovenia;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25207;Slovenia;F;Elementary occupations;Transportation and storage   ;Y15-29;31;1;1.1813254907953938e-07;2050189;1.5120557177899209e-05;1;0;Young +25208;Slovenia;F;Elementary occupations;Transportation and storage   ;Y30-49;198;1;7.54524023153187e-07;2050189;9.657646197496913e-05;1;0;Young +25209;Slovenia;F;Elementary occupations;Transportation and storage   ;Y50-64;99;1;3.772620115765935e-07;2050189;4.828823098748457e-05;0;1;Old +25210;Slovenia;F;Elementary occupations;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25211;Slovenia;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;708;1;2.697994991881093e-06;2050189;0.00034533401554685936;1;0;Young +25212;Slovenia;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;3474;1;1.3238466951687736e-05;2050189;0.0016944779237426403;1;0;Young +25213;Slovenia;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;1484;1;5.65511944625924e-06;2050189;0.0007238357049033041;0;1;Old +25214;Slovenia;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25215;Slovenia;F;Elementary occupations;Information and communication   ;Y15-29;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25216;Slovenia;F;Elementary occupations;Information and communication   ;Y30-49;49;1;1.8672564209346548e-07;2050189;2.390023553926004e-05;1;0;Young +25217;Slovenia;F;Elementary occupations;Information and communication   ;Y50-64;40;1;1.5242909558650242e-07;2050189;1.9510396358579622e-05;0;1;Old +25218;Slovenia;F;Elementary occupations;Financial and insurance activities   ;Y15-29;25;1;9.526818474156401e-08;2050189;1.2193997724112265e-05;1;0;Young +25219;Slovenia;F;Elementary occupations;Financial and insurance activities   ;Y30-49;134;1;5.106374702147831e-07;2050189;6.535982780124173e-05;1;0;Young +25220;Slovenia;F;Elementary occupations;Financial and insurance activities   ;Y50-64;76;1;2.896152816143546e-07;2050189;3.7069753081301285e-05;0;1;Old +25221;Slovenia;F;Elementary occupations;Real estate activities   ;Y15-29;12;1;4.5728728675950726e-08;2050189;5.853118907573887e-06;1;0;Young +25222;Slovenia;F;Elementary occupations;Real estate activities   ;Y30-49;144;1;5.487447441114087e-07;2050189;7.023742689088664e-05;1;0;Young +25223;Slovenia;F;Elementary occupations;Real estate activities   ;Y50-64;130;1;4.953945606561329e-07;2050189;6.340878816538377e-05;0;1;Old +25224;Slovenia;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;368;1;1.4023476793958223e-06;2050189;0.00017949564649893254;1;0;Young +25225;Slovenia;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;937;1;3.5706515641138192e-06;2050189;0.0004570310346997277;1;0;Young +25226;Slovenia;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;407;1;1.5509660475926622e-06;2050189;0.00019851828294854766;0;1;Old +25227;Slovenia;F;Elementary occupations;Administrative and support service activities   ;Y15-29;1352;1;5.152103430823782e-06;2050189;0.0006594513969199913;1;0;Young +25228;Slovenia;F;Elementary occupations;Administrative and support service activities   ;Y30-49;5435;1;2.0711303362816017e-05;2050189;0.0026509751052220063;1;0;Young +25229;Slovenia;F;Elementary occupations;Administrative and support service activities   ;Y50-64;2511;1;9.568736475442689e-06;2050189;0.001224765131409836;0;1;Old +25230;Slovenia;F;Elementary occupations;Administrative and support service activities   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25231;Slovenia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +25232;Slovenia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;593;1;2.2597613420698985e-06;2050189;0.00028924162601594295;1;0;Young +25233;Slovenia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;339;1;1.2918365850956081e-06;2050189;0.00016535060913896231;0;1;Old +25234;Slovenia;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25235;Slovenia;F;Elementary occupations;Education   ;Y15-29;230;1;8.76467299622389e-07;2050189;0.00011218477906183284;1;0;Young +25236;Slovenia;F;Elementary occupations;Education   ;Y30-49;4016;1;1.5303881196884842e-05;2050189;0.001958843794401394;1;0;Young +25237;Slovenia;F;Elementary occupations;Education   ;Y50-64;2134;1;8.132092249539904e-06;2050189;0.001040879645730223;0;1;Old +25238;Slovenia;F;Elementary occupations;Education   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25239;Slovenia;F;Elementary occupations;Human health and social work activities   ;Y15-29;472;1;1.7986633279207285e-06;2050189;0.00023022267703123956;1;0;Young +25240;Slovenia;F;Elementary occupations;Human health and social work activities   ;Y30-49;4133;1;1.574973630147536e-05;2050189;0.0020159117037502395;1;0;Young +25241;Slovenia;F;Elementary occupations;Human health and social work activities   ;Y50-64;1552;1;5.914248908756294e-06;2050189;0.0007570033787128894;0;1;Old +25242;Slovenia;F;Elementary occupations;Human health and social work activities   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25243;Slovenia;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;32;1;1.2194327646920193e-07;2050189;1.56083170868637e-05;1;0;Young +25244;Slovenia;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;345;1;1.3147009494335833e-06;2050189;0.00016827716859274926;1;0;Young +25245;Slovenia;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;187;1;7.126060218668988e-07;2050189;9.121110297635974e-05;0;1;Old +25246;Slovenia;F;Elementary occupations;Other service activities   ;Y15-29;76;1;2.896152816143546e-07;2050189;3.7069753081301285e-05;1;0;Young +25247;Slovenia;F;Elementary occupations;Other service activities   ;Y30-49;480;1;1.829149147038029e-06;2050189;0.00023412475630295548;1;0;Young +25248;Slovenia;F;Elementary occupations;Other service activities   ;Y50-64;230;1;8.76467299622389e-07;2050189;0.00011218477906183284;0;1;Old +25249;Slovenia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;197;1;7.507132957635244e-07;2050189;9.608870206600465e-05;1;0;Young +25250;Slovenia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;212;1;8.078742066084628e-07;2050189;0.000103405100700472;1;0;Young +25251;Slovenia;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;71;1;2.705616446660418e-07;2050189;3.463095353647883e-05;0;1;Old +25252;Slovenia;F;Not stated;Not stated   ;Y15-29;151;1;5.754198358390467e-07;2050189;7.365174625363808e-05;1;0;Young +25253;Slovenia;F;Not stated;Not stated   ;Y30-49;702;1;2.6751306275431174e-06;2050189;0.0003424074560930724;1;0;Young +25254;Slovenia;F;Not stated;Not stated   ;Y50-64;170;1;6.478236562426352e-07;2050189;8.291918452396341e-05;0;1;Old +25255;Slovenia;F;Not stated;Not stated   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25256;Slovenia;M;Not applicable;Not applicable  ;Y15-29;105151;1;0.0004007017957504079;2050189;0.05128844218752515;1;0;Young +25257;Slovenia;M;Not applicable;Not applicable  ;Y30-49;24214;1;9.227295301328924e-05;2050189;0.011810618435666175;1;0;Young +25258;Slovenia;M;Not applicable;Not applicable  ;Y50-64;88227;1;0.00033620904540775874;2050189;0.04303359348821011;0;1;Old +25259;Slovenia;M;Not applicable;Not applicable  ;Y65-84;125212;1;0.00047714879791442853;2050189;0.0610733937212618;0;1;Old +25260;Slovenia;M;Not applicable;Not applicable  ;Y_GE85;7935;1;3.0238121836972417e-05;2050189;0.003870374877633233;0;1;Old +25261;Slovenia;M;Not applicable;Not applicable  ;Y_LT15;149702;1;0.0005704735116872647;2050189;0.07301863389180217;0;1;Old +25262;Slovenia;M;Armed forces occupations;Manufacturing   ;Y15-29;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +25263;Slovenia;M;Armed forces occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25264;Slovenia;M;Armed forces occupations;Construction   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25265;Slovenia;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25266;Slovenia;M;Armed forces occupations;Transportation and storage   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25267;Slovenia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;2033;1;7.747208783183986e-06;2050189;0.0009916158949248093;1;0;Young +25268;Slovenia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;3897;1;1.4850404637514998e-05;2050189;0.00190080036523462;1;0;Young +25269;Slovenia;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;533;1;2.0311176986901446e-06;2050189;0.0002599760314780735;0;1;Old +25270;Slovenia;M;Armed forces occupations;Human health and social work activities   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25271;Slovenia;M;Managers;Agriculture, forestry and fishing   ;Y15-29;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;1;0;Young +25272;Slovenia;M;Managers;Agriculture, forestry and fishing   ;Y30-49;87;1;3.3153328290064277e-07;2050189;4.243511207991068e-05;1;0;Young +25273;Slovenia;M;Managers;Agriculture, forestry and fishing   ;Y50-64;82;1;3.1247964595233e-07;2050189;3.999631253508823e-05;0;1;Old +25274;Slovenia;M;Managers;Agriculture, forestry and fishing   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25275;Slovenia;M;Managers;Mining and quarrying   ;Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +25276;Slovenia;M;Managers;Mining and quarrying   ;Y30-49;32;1;1.2194327646920193e-07;2050189;1.56083170868637e-05;1;0;Young +25277;Slovenia;M;Managers;Mining and quarrying   ;Y50-64;39;1;1.4861836819683987e-07;2050189;1.9022636449615132e-05;0;1;Old +25278;Slovenia;M;Managers;Manufacturing   ;Y15-29;284;1;1.0822465786641672e-06;2050189;0.00013852381414591533;1;0;Young +25279;Slovenia;M;Managers;Manufacturing   ;Y30-49;4047;1;1.542201374596438e-05;2050189;0.0019739643515792934;1;0;Young +25280;Slovenia;M;Managers;Manufacturing   ;Y50-64;2347;1;8.943777183538029e-06;2050189;0.0011447725063396595;0;1;Old +25281;Slovenia;M;Managers;Manufacturing   ;Y65-84;24;1;9.145745735190145e-08;2050189;1.1706237815147774e-05;0;1;Old +25282;Slovenia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +25283;Slovenia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;153;1;5.830412906183718e-07;2050189;7.462726607156706e-05;1;0;Young +25284;Slovenia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;129;1;4.915838332664703e-07;2050189;6.292102825641929e-05;0;1;Old +25285;Slovenia;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +25286;Slovenia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;1;0;Young +25287;Slovenia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;224;1;8.536029352844136e-07;2050189;0.00010925821960804589;1;0;Young +25288;Slovenia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;145;1;5.525554715010713e-07;2050189;7.072518679985114e-05;0;1;Old +25289;Slovenia;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25290;Slovenia;M;Managers;Construction   ;Y15-29;433;1;1.6500449597238888e-06;2050189;0.00021120004058162442;1;0;Young +25291;Slovenia;M;Managers;Construction   ;Y30-49;2153;1;8.204496069943493e-06;2050189;0.0010501470840005482;1;0;Young +25292;Slovenia;M;Managers;Construction   ;Y50-64;1055;1;4.0203173960940015e-06;2050189;0.0005145867039575376;0;1;Old +25293;Slovenia;M;Managers;Construction   ;Y65-84;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25294;Slovenia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;412;1;1.570019684540975e-06;2050189;0.00020095708249337013;1;0;Young +25295;Slovenia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4138;1;1.5768789938423676e-05;2050189;0.0020183505032950622;1;0;Young +25296;Slovenia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1918;1;7.308975133372791e-06;2050189;0.0009355235053938929;0;1;Old +25297;Slovenia;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;26;1;9.907891213122657e-08;2050189;1.2681757633076755e-05;0;1;Old +25298;Slovenia;M;Managers;Transportation and storage   ;Y15-29;90;1;3.4296546506963047e-07;2050189;4.3898391806804156e-05;1;0;Young +25299;Slovenia;M;Managers;Transportation and storage   ;Y30-49;864;1;3.2924684646684523e-06;2050189;0.0004214245613453199;1;0;Young +25300;Slovenia;M;Managers;Transportation and storage   ;Y50-64;422;1;1.6081269584376006e-06;2050189;0.00020583468158301502;0;1;Old +25301;Slovenia;M;Managers;Transportation and storage   ;Y65-84;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25302;Slovenia;M;Managers;Accommodation and food service activities   ;Y15-29;130;1;4.953945606561329e-07;2050189;6.340878816538377e-05;1;0;Young +25303;Slovenia;M;Managers;Accommodation and food service activities   ;Y30-49;852;1;3.2467397359925016e-06;2050189;0.000415571442437746;1;0;Young +25304;Slovenia;M;Managers;Accommodation and food service activities   ;Y50-64;327;1;1.2461078564196573e-06;2050189;0.00015949749023138842;0;1;Old +25305;Slovenia;M;Managers;Accommodation and food service activities   ;Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +25306;Slovenia;M;Managers;Information and communication   ;Y15-29;213;1;8.116849339981254e-07;2050189;0.0001038928606094365;1;0;Young +25307;Slovenia;M;Managers;Information and communication   ;Y30-49;1496;1;5.700848174935191e-06;2050189;0.000729688823810878;1;0;Young +25308;Slovenia;M;Managers;Information and communication   ;Y50-64;446;1;1.699584415789502e-06;2050189;0.0002175409193981628;0;1;Old +25309;Slovenia;M;Managers;Information and communication   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25310;Slovenia;M;Managers;Financial and insurance activities   ;Y15-29;35;1;1.3337545863818962e-07;2050189;1.707159681375717e-05;1;0;Young +25311;Slovenia;M;Managers;Financial and insurance activities   ;Y30-49;811;1;3.0904999130163366e-06;2050189;0.0003955732861702019;1;0;Young +25312;Slovenia;M;Managers;Financial and insurance activities   ;Y50-64;329;1;1.2537293111989825e-06;2050189;0.0001604730100493174;0;1;Old +25313;Slovenia;M;Managers;Financial and insurance activities   ;Y65-84;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25314;Slovenia;M;Managers;Real estate activities   ;Y15-29;30;1;1.1432182168987682e-07;2050189;1.4632797268934718e-05;1;0;Young +25315;Slovenia;M;Managers;Real estate activities   ;Y30-49;290;1;1.1051109430021426e-06;2050189;0.00014145037359970228;1;0;Young +25316;Slovenia;M;Managers;Real estate activities   ;Y50-64;174;1;6.630665658012855e-07;2050189;8.487022415982137e-05;0;1;Old +25317;Slovenia;M;Managers;Real estate activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25318;Slovenia;M;Managers;Professional, scientific and technical activities   ;Y15-29;342;1;1.3032687672645957e-06;2050189;0.0001668138888658558;1;0;Young +25319;Slovenia;M;Managers;Professional, scientific and technical activities   ;Y30-49;2860;1;1.0898680334434923e-05;2050189;0.001394993339638443;1;0;Young +25320;Slovenia;M;Managers;Professional, scientific and technical activities   ;Y50-64;1449;1;5.52174398762105e-06;2050189;0.0007067641080895469;0;1;Old +25321;Slovenia;M;Managers;Professional, scientific and technical activities   ;Y65-84;25;1;9.526818474156401e-08;2050189;1.2193997724112265e-05;0;1;Old +25322;Slovenia;M;Managers;Administrative and support service activities   ;Y15-29;93;1;3.543976472386181e-07;2050189;4.536167153369762e-05;1;0;Young +25323;Slovenia;M;Managers;Administrative and support service activities   ;Y30-49;528;1;2.012064061741832e-06;2050189;0.00025753723193325104;1;0;Young +25324;Slovenia;M;Managers;Administrative and support service activities   ;Y50-64;226;1;8.612243900637387e-07;2050189;0.00011023373942597488;0;1;Old +25325;Slovenia;M;Managers;Administrative and support service activities   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25326;Slovenia;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;10;1;3.8107273896625604e-08;2050189;4.8775990896449056e-06;1;0;Young +25327;Slovenia;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;484;1;1.8443920565966793e-06;2050189;0.00023607579593881345;1;0;Young +25328;Slovenia;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;539;1;2.0539820630281202e-06;2050189;0.00026290259093186044;0;1;Old +25329;Slovenia;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;20;1;7.621454779325121e-08;2050189;9.755198179289811e-06;0;1;Old +25330;Slovenia;M;Managers;Education   ;Y15-29;47;1;1.7910418731414036e-07;2050189;2.2924715721331058e-05;1;0;Young +25331;Slovenia;M;Managers;Education   ;Y30-49;344;1;1.310890222043921e-06;2050189;0.00016778940868378476;1;0;Young +25332;Slovenia;M;Managers;Education   ;Y50-64;281;1;1.0708143964951796e-06;2050189;0.00013706053441902186;0;1;Old +25333;Slovenia;M;Managers;Education   ;Y65-84;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25334;Slovenia;M;Managers;Human health and social work activities   ;Y15-29;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;1;0;Young +25335;Slovenia;M;Managers;Human health and social work activities   ;Y30-49;176;1;6.706880205806106e-07;2050189;8.584574397775034e-05;1;0;Young +25336;Slovenia;M;Managers;Human health and social work activities   ;Y50-64;171;1;6.516343836322978e-07;2050189;8.34069444329279e-05;0;1;Old +25337;Slovenia;M;Managers;Human health and social work activities   ;Y65-84;15;1;5.716091084493841e-08;2050189;7.316398634467359e-06;0;1;Old +25338;Slovenia;M;Managers;Arts, entertainment and recreation   ;Y15-29;31;1;1.1813254907953938e-07;2050189;1.5120557177899209e-05;1;0;Young +25339;Slovenia;M;Managers;Arts, entertainment and recreation   ;Y30-49;346;1;1.3185116768232459e-06;2050189;0.00016876492850171373;1;0;Young +25340;Slovenia;M;Managers;Arts, entertainment and recreation   ;Y50-64;183;1;6.973631123082485e-07;2050189;8.926006334050178e-05;0;1;Old +25341;Slovenia;M;Managers;Arts, entertainment and recreation   ;Y65-84;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +25342;Slovenia;M;Managers;Other service activities   ;Y15-29;34;1;1.2956473124852705e-07;2050189;1.658383690479268e-05;1;0;Young +25343;Slovenia;M;Managers;Other service activities   ;Y30-49;306;1;1.1660825812367436e-06;2050189;0.00014925453214313411;1;0;Young +25344;Slovenia;M;Managers;Other service activities   ;Y50-64;179;1;6.821202027495983e-07;2050189;8.730902370464381e-05;0;1;Old +25345;Slovenia;M;Managers;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25346;Slovenia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25347;Slovenia;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25348;Slovenia;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;21;1;8.002527518291377e-08;2050189;1.0242958088254303e-05;1;0;Young +25349;Slovenia;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;67;1;2.5531873510739155e-07;2050189;3.267991390062087e-05;1;0;Young +25350;Slovenia;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;32;1;1.2194327646920193e-07;2050189;1.56083170868637e-05;0;1;Old +25351;Slovenia;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25352;Slovenia;M;Professionals;Mining and quarrying   ;Y15-29;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;1;0;Young +25353;Slovenia;M;Professionals;Mining and quarrying   ;Y30-49;126;1;4.801516510974826e-07;2050189;6.145774852952582e-05;1;0;Young +25354;Slovenia;M;Professionals;Mining and quarrying   ;Y50-64;51;1;1.943470968727906e-07;2050189;2.487575535718902e-05;0;1;Old +25355;Slovenia;M;Professionals;Manufacturing   ;Y15-29;1754;1;6.6840158414681314e-06;2050189;0.0008555308803237164;1;0;Young +25356;Slovenia;M;Professionals;Manufacturing   ;Y30-49;6309;1;2.4041879101381096e-05;2050189;0.003077277265656971;1;0;Young +25357;Slovenia;M;Professionals;Manufacturing   ;Y50-64;2207;1;8.410275348985272e-06;2050189;0.0010764861190846308;0;1;Old +25358;Slovenia;M;Professionals;Manufacturing   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25359;Slovenia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;149;1;5.677983810597215e-07;2050189;7.26762264357091e-05;1;0;Young +25360;Slovenia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;758;1;2.888531361364221e-06;2050189;0.00036972201099508387;1;0;Young +25361;Slovenia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;250;1;9.526818474156401e-07;2050189;0.00012193997724112264;0;1;Old +25362;Slovenia;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;0;1;Old +25363;Slovenia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;26;1;9.907891213122657e-08;2050189;1.2681757633076755e-05;1;0;Young +25364;Slovenia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;165;1;6.287700192943225e-07;2050189;8.048038497914095e-05;1;0;Young +25365;Slovenia;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;61;1;2.3245437076941619e-07;2050189;2.9753354446833925e-05;0;1;Old +25366;Slovenia;M;Professionals;Construction   ;Y15-29;281;1;1.0708143964951796e-06;2050189;0.00013706053441902186;1;0;Young +25367;Slovenia;M;Professionals;Construction   ;Y30-49;861;1;3.2810362824994645e-06;2050189;0.0004199612816184264;1;0;Young +25368;Slovenia;M;Professionals;Construction   ;Y50-64;319;1;1.2156220373023567e-06;2050189;0.0001555954109596725;0;1;Old +25369;Slovenia;M;Professionals;Construction   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25370;Slovenia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;356;1;1.3566189507198715e-06;2050189;0.00017364252759135865;1;0;Young +25371;Slovenia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1444;1;5.502690350672737e-06;2050189;0.0007043253085447244;1;0;Young +25372;Slovenia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;399;1;1.5204802284753616e-06;2050189;0.00019461620367683174;0;1;Old +25373;Slovenia;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25374;Slovenia;M;Professionals;Transportation and storage   ;Y15-29;98;1;3.7345128418693096e-07;2050189;4.780047107852008e-05;1;0;Young +25375;Slovenia;M;Professionals;Transportation and storage   ;Y30-49;645;1;2.4579191663323517e-06;2050189;0.00031460514128209646;1;0;Young +25376;Slovenia;M;Professionals;Transportation and storage   ;Y50-64;269;1;1.0250856678192288e-06;2050189;0.00013120741551144797;0;1;Old +25377;Slovenia;M;Professionals;Transportation and storage   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25378;Slovenia;M;Professionals;Accommodation and food service activities   ;Y15-29;31;1;1.1813254907953938e-07;2050189;1.5120557177899209e-05;1;0;Young +25379;Slovenia;M;Professionals;Accommodation and food service activities   ;Y30-49;131;1;4.992052880457954e-07;2050189;6.389654807434826e-05;1;0;Young +25380;Slovenia;M;Professionals;Accommodation and food service activities   ;Y50-64;86;1;3.277225555109802e-07;2050189;4.194735217094619e-05;0;1;Old +25381;Slovenia;M;Professionals;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25382;Slovenia;M;Professionals;Information and communication   ;Y15-29;1642;1;6.257214373825924e-06;2050189;0.0008009017705196935;1;0;Young +25383;Slovenia;M;Professionals;Information and communication   ;Y30-49;4852;1;1.8489649294642742e-05;2050189;0.0023666110782957083;1;0;Young +25384;Slovenia;M;Professionals;Information and communication   ;Y50-64;893;1;3.4029795589686665e-06;2050189;0.0004355695987052901;0;1;Old +25385;Slovenia;M;Professionals;Information and communication   ;Y65-84;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;0;1;Old +25386;Slovenia;M;Professionals;Financial and insurance activities   ;Y15-29;343;1;1.3070794946542583e-06;2050189;0.00016730164877482026;1;0;Young +25387;Slovenia;M;Professionals;Financial and insurance activities   ;Y30-49;1552;1;5.914248908756294e-06;2050189;0.0007570033787128894;1;0;Young +25388;Slovenia;M;Professionals;Financial and insurance activities   ;Y50-64;327;1;1.2461078564196573e-06;2050189;0.00015949749023138842;0;1;Old +25389;Slovenia;M;Professionals;Financial and insurance activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25390;Slovenia;M;Professionals;Real estate activities   ;Y15-29;32;1;1.2194327646920193e-07;2050189;1.56083170868637e-05;1;0;Young +25391;Slovenia;M;Professionals;Real estate activities   ;Y30-49;132;1;5.03016015435458e-07;2050189;6.438430798331276e-05;1;0;Young +25392;Slovenia;M;Professionals;Real estate activities   ;Y50-64;70;1;2.6675091727637925e-07;2050189;3.414319362751434e-05;0;1;Old +25393;Slovenia;M;Professionals;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25394;Slovenia;M;Professionals;Professional, scientific and technical activities   ;Y15-29;1980;1;7.54524023153187e-06;2050189;0.0009657646197496914;1;0;Young +25395;Slovenia;M;Professionals;Professional, scientific and technical activities   ;Y30-49;6029;1;2.2974875432275578e-05;2050189;0.0029407044911469137;1;0;Young +25396;Slovenia;M;Professionals;Professional, scientific and technical activities   ;Y50-64;2234;1;8.51316498850616e-06;2050189;0.0010896556366266719;0;1;Old +25397;Slovenia;M;Professionals;Professional, scientific and technical activities   ;Y65-84;93;1;3.543976472386181e-07;2050189;4.536167153369762e-05;0;1;Old +25398;Slovenia;M;Professionals;Administrative and support service activities   ;Y15-29;138;1;5.258803797734334e-07;2050189;6.73108674370997e-05;1;0;Young +25399;Slovenia;M;Professionals;Administrative and support service activities   ;Y30-49;252;1;9.603033021949652e-07;2050189;0.00012291549705905163;1;0;Young +25400;Slovenia;M;Professionals;Administrative and support service activities   ;Y50-64;125;1;4.7634092370782007e-07;2050189;6.096998862056132e-05;0;1;Old +25401;Slovenia;M;Professionals;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25402;Slovenia;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;468;1;1.7834204183620783e-06;2050189;0.0002282716373953816;1;0;Young +25403;Slovenia;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;4540;1;1.7300702349068025e-05;2050189;0.0022144299866987873;1;0;Young +25404;Slovenia;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;1894;1;7.21751767602089e-06;2050189;0.0009238172675787451;0;1;Old +25405;Slovenia;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;49;1;1.8672564209346548e-07;2050189;2.390023553926004e-05;0;1;Old +25406;Slovenia;M;Professionals;Education   ;Y15-29;1485;1;5.658930173648902e-06;2050189;0.0007243234648122686;1;0;Young +25407;Slovenia;M;Professionals;Education   ;Y30-49;5749;1;2.190787176317006e-05;2050189;0.0028041317166368563;1;0;Young +25408;Slovenia;M;Professionals;Education   ;Y50-64;2955;1;1.1260699436452867e-05;2050189;0.0014413305309900696;0;1;Old +25409;Slovenia;M;Professionals;Education   ;Y65-84;174;1;6.630665658012855e-07;2050189;8.487022415982137e-05;0;1;Old +25410;Slovenia;M;Professionals;Human health and social work activities   ;Y15-29;533;1;2.0311176986901446e-06;2050189;0.0002599760314780735;1;0;Young +25411;Slovenia;M;Professionals;Human health and social work activities   ;Y30-49;2313;1;8.814212452289502e-06;2050189;0.0011281886694348667;1;0;Young +25412;Slovenia;M;Professionals;Human health and social work activities   ;Y50-64;1391;1;5.300721799020622e-06;2050189;0.0006784740333696064;0;1;Old +25413;Slovenia;M;Professionals;Human health and social work activities   ;Y65-84;198;1;7.54524023153187e-07;2050189;9.657646197496913e-05;0;1;Old +25414;Slovenia;M;Professionals;Arts, entertainment and recreation   ;Y15-29;232;1;8.840887544017141e-07;2050189;0.00011316029887976182;1;0;Young +25415;Slovenia;M;Professionals;Arts, entertainment and recreation   ;Y30-49;1470;1;5.601769262803964e-06;2050189;0.0007170070661778012;1;0;Young +25416;Slovenia;M;Professionals;Arts, entertainment and recreation   ;Y50-64;676;1;2.576051715411891e-06;2050189;0.00032972569845999563;0;1;Old +25417;Slovenia;M;Professionals;Arts, entertainment and recreation   ;Y65-84;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;0;1;Old +25418;Slovenia;M;Professionals;Other service activities   ;Y15-29;129;1;4.915838332664703e-07;2050189;6.292102825641929e-05;1;0;Young +25419;Slovenia;M;Professionals;Other service activities   ;Y30-49;593;1;2.2597613420698985e-06;2050189;0.00028924162601594295;1;0;Young +25420;Slovenia;M;Professionals;Other service activities   ;Y50-64;348;1;1.326133131602571e-06;2050189;0.00016974044831964273;0;1;Old +25421;Slovenia;M;Professionals;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25422;Slovenia;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +25423;Slovenia;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25424;Slovenia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;33;1;1.257540038588645e-07;2050189;1.609607699582819e-05;1;0;Young +25425;Slovenia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;171;1;6.516343836322978e-07;2050189;8.34069444329279e-05;1;0;Young +25426;Slovenia;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;92;1;3.5058691984895557e-07;2050189;4.4873911624733136e-05;0;1;Old +25427;Slovenia;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;41;1;1.56239822976165e-07;2050189;1.9998156267544115e-05;1;0;Young +25428;Slovenia;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;239;1;9.10763846129352e-07;2050189;0.00011657461824251325;1;0;Young +25429;Slovenia;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;76;1;2.896152816143546e-07;2050189;3.7069753081301285e-05;0;1;Old +25430;Slovenia;M;Technicians and associate professionals;Manufacturing   ;Y15-29;2242;1;8.543650807623461e-06;2050189;0.0010935577158983879;1;0;Young +25431;Slovenia;M;Technicians and associate professionals;Manufacturing   ;Y30-49;10021;1;3.818729917180852e-05;2050189;0.00488784204773316;1;0;Young +25432;Slovenia;M;Technicians and associate professionals;Manufacturing   ;Y50-64;5197;1;1.9804350244076328e-05;2050189;0.0025348882468884575;0;1;Old +25433;Slovenia;M;Technicians and associate professionals;Manufacturing   ;Y65-84;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25434;Slovenia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;264;1;1.006032030870916e-06;2050189;0.00012876861596662552;1;0;Young +25435;Slovenia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;1215;1;4.630033778440011e-06;2050189;0.0005926282893918561;1;0;Young +25436;Slovenia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;748;1;2.8504240874675953e-06;2050189;0.000364844411905439;0;1;Old +25437;Slovenia;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25438;Slovenia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;86;1;3.277225555109802e-07;2050189;4.194735217094619e-05;1;0;Young +25439;Slovenia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;423;1;1.6119376858272632e-06;2050189;0.00020632244149197952;1;0;Young +25440;Slovenia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;315;1;1.2003791277437065e-06;2050189;0.00015364437132381453;0;1;Old +25441;Slovenia;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25442;Slovenia;M;Technicians and associate professionals;Construction   ;Y15-29;993;1;3.7840522979349228e-06;2050189;0.00048434558960173913;1;0;Young +25443;Slovenia;M;Technicians and associate professionals;Construction   ;Y30-49;3428;1;1.3063173491763258e-05;2050189;0.0016720409679302738;1;0;Young +25444;Slovenia;M;Technicians and associate professionals;Construction   ;Y50-64;2047;1;7.80055896663926e-06;2050189;0.0009984445336503123;0;1;Old +25445;Slovenia;M;Technicians and associate professionals;Construction   ;Y65-84;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;0;1;Old +25446;Slovenia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1904;1;7.255624949917516e-06;2050189;0.0009286948666683901;1;0;Young +25447;Slovenia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;8004;1;3.0501062026859135e-05;2050189;0.0039040303113517826;1;0;Young +25448;Slovenia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2603;1;9.919323395291645e-06;2050189;0.001269639043034569;0;1;Old +25449;Slovenia;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25450;Slovenia;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;481;1;1.8329598744276917e-06;2050189;0.00023461251621191998;1;0;Young +25451;Slovenia;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;1970;1;7.507132957635244e-06;2050189;0.0009608870206600465;1;0;Young +25452;Slovenia;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;938;1;3.574462291503482e-06;2050189;0.0004575187946086922;0;1;Old +25453;Slovenia;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25454;Slovenia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;244;1;9.298174830776647e-07;2050189;0.0001190134177873357;1;0;Young +25455;Slovenia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;1003;1;3.822159571831548e-06;2050189;0.000489223188691384;1;0;Young +25456;Slovenia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;438;1;1.6690985966722016e-06;2050189;0.0002136388401264469;0;1;Old +25457;Slovenia;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25458;Slovenia;M;Technicians and associate professionals;Information and communication   ;Y15-29;697;1;2.6560769905948048e-06;2050189;0.00033996865654824997;1;0;Young +25459;Slovenia;M;Technicians and associate professionals;Information and communication   ;Y30-49;3088;1;1.1767526179277988e-05;2050189;0.001506202598882347;1;0;Young +25460;Slovenia;M;Technicians and associate professionals;Information and communication   ;Y50-64;932;1;3.5515979271655062e-06;2050189;0.00045459223515490523;0;1;Old +25461;Slovenia;M;Technicians and associate professionals;Information and communication   ;Y65-84;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25462;Slovenia;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;609;1;2.3207329803044993e-06;2050189;0.0002970457845593748;1;0;Young +25463;Slovenia;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;2542;1;9.68686902452223e-06;2050189;0.001239885688587735;1;0;Young +25464;Slovenia;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;900;1;3.4296546506963047e-06;2050189;0.0004389839180680415;0;1;Old +25465;Slovenia;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +25466;Slovenia;M;Technicians and associate professionals;Real estate activities   ;Y15-29;77;1;2.9342600900401714e-07;2050189;3.755751299026578e-05;1;0;Young +25467;Slovenia;M;Technicians and associate professionals;Real estate activities   ;Y30-49;411;1;1.5662089571513124e-06;2050189;0.00020046932258440563;1;0;Young +25468;Slovenia;M;Technicians and associate professionals;Real estate activities   ;Y50-64;238;1;9.069531187396895e-07;2050189;0.00011608685833354877;0;1;Old +25469;Slovenia;M;Technicians and associate professionals;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25470;Slovenia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;1119;1;4.264203949032405e-06;2050189;0.0005458033381312649;1;0;Young +25471;Slovenia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;3605;1;1.373767223973353e-05;2050189;0.0017583744718169885;1;0;Young +25472;Slovenia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;1500;1;5.716091084493841e-06;2050189;0.0007316398634467358;0;1;Old +25473;Slovenia;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25474;Slovenia;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;405;1;1.543344592813337e-06;2050189;0.0001975427631306187;1;0;Young +25475;Slovenia;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;765;1;2.9152064530918587e-06;2050189;0.0003731363303578353;1;0;Young +25476;Slovenia;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;251;1;9.564925748053026e-07;2050189;0.00012242773715008713;0;1;Old +25477;Slovenia;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25478;Slovenia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;184;1;7.011738396979111e-07;2050189;8.974782324946627e-05;1;0;Young +25479;Slovenia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;2175;1;8.288332072516069e-06;2050189;0.001060877801997767;1;0;Young +25480;Slovenia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;1218;1;4.641465960608999e-06;2050189;0.0005940915691187496;0;1;Old +25481;Slovenia;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25482;Slovenia;M;Technicians and associate professionals;Education   ;Y15-29;187;1;7.126060218668988e-07;2050189;9.121110297635974e-05;1;0;Young +25483;Slovenia;M;Technicians and associate professionals;Education   ;Y30-49;639;1;2.435054801994376e-06;2050189;0.0003116785818283095;1;0;Young +25484;Slovenia;M;Technicians and associate professionals;Education   ;Y50-64;217;1;8.269278435567757e-07;2050189;0.00010584390024529446;0;1;Old +25485;Slovenia;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;1236;1;4.710059053622925e-06;2050189;0.0006028712474801103;1;0;Young +25486;Slovenia;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;1563;1;5.956166910042582e-06;2050189;0.0007623687377114988;1;0;Young +25487;Slovenia;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;450;1;1.7148273253481523e-06;2050189;0.00021949195903402075;0;1;Old +25488;Slovenia;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;11;1;4.1918001286288165e-08;2050189;5.365358998609396e-06;0;1;Old +25489;Slovenia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;470;1;1.7910418731414035e-06;2050189;0.0002292471572133106;1;0;Young +25490;Slovenia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;1105;1;4.21085376557713e-06;2050189;0.0005389746994057622;1;0;Young +25491;Slovenia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;372;1;1.4175905889544725e-06;2050189;0.0001814466861347905;0;1;Old +25492;Slovenia;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +25493;Slovenia;M;Technicians and associate professionals;Other service activities   ;Y15-29;97;1;3.6964055679726836e-07;2050189;4.731271116955559e-05;1;0;Young +25494;Slovenia;M;Technicians and associate professionals;Other service activities   ;Y30-49;412;1;1.570019684540975e-06;2050189;0.00020095708249337013;1;0;Young +25495;Slovenia;M;Technicians and associate professionals;Other service activities   ;Y50-64;176;1;6.706880205806106e-07;2050189;8.584574397775034e-05;0;1;Old +25496;Slovenia;M;Technicians and associate professionals;Other service activities   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25497;Slovenia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;1;0;Young +25498;Slovenia;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25499;Slovenia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;10;1;3.8107273896625604e-08;2050189;4.8775990896449056e-06;1;0;Young +25500;Slovenia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;55;1;2.0959000643144082e-07;2050189;2.6826794993046983e-05;1;0;Young +25501;Slovenia;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;39;1;1.4861836819683987e-07;2050189;1.9022636449615132e-05;0;1;Old +25502;Slovenia;M;Clerical support workers;Mining and quarrying   ;Y15-29;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;1;0;Young +25503;Slovenia;M;Clerical support workers;Mining and quarrying   ;Y30-49;14;1;5.335018345527585e-08;2050189;6.828638725502868e-06;1;0;Young +25504;Slovenia;M;Clerical support workers;Mining and quarrying   ;Y50-64;15;1;5.716091084493841e-08;2050189;7.316398634467359e-06;0;1;Old +25505;Slovenia;M;Clerical support workers;Manufacturing   ;Y15-29;673;1;2.5646195332429032e-06;2050189;0.0003282624187331022;1;0;Young +25506;Slovenia;M;Clerical support workers;Manufacturing   ;Y30-49;2675;1;1.0193695767347349e-05;2050189;0.0013047577564800122;1;0;Young +25507;Slovenia;M;Clerical support workers;Manufacturing   ;Y50-64;1584;1;6.036192185225496e-06;2050189;0.0007726116957997531;0;1;Old +25508;Slovenia;M;Clerical support workers;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25509;Slovenia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;1;0;Young +25510;Slovenia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;64;1;2.4388655293840386e-07;2050189;3.12166341737274e-05;1;0;Young +25511;Slovenia;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;78;1;2.9723673639367974e-07;2050189;3.8045272899230265e-05;0;1;Old +25512;Slovenia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;42;1;1.6005055036582754e-07;2050189;2.0485916176508605e-05;1;0;Young +25513;Slovenia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;149;1;5.677983810597215e-07;2050189;7.26762264357091e-05;1;0;Young +25514;Slovenia;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;106;1;4.039371033042314e-07;2050189;5.1702550350236e-05;0;1;Old +25515;Slovenia;M;Clerical support workers;Construction   ;Y15-29;108;1;4.1155855808355654e-07;2050189;5.2678070168164986e-05;1;0;Young +25516;Slovenia;M;Clerical support workers;Construction   ;Y30-49;371;1;1.41377986156481e-06;2050189;0.00018095892622582601;1;0;Young +25517;Slovenia;M;Clerical support workers;Construction   ;Y50-64;307;1;1.1698933086264062e-06;2050189;0.00014974229205209861;0;1;Old +25518;Slovenia;M;Clerical support workers;Construction   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25519;Slovenia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;1539;1;5.864709452690681e-06;2050189;0.000750662499896351;1;0;Young +25520;Slovenia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;3487;1;1.3288006407753348e-05;2050189;0.0017008188025591786;1;0;Young +25521;Slovenia;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1175;1;4.4776046828535085e-06;2050189;0.0005731178930332764;0;1;Old +25522;Slovenia;M;Clerical support workers;Transportation and storage   ;Y15-29;970;1;3.6964055679726838e-06;2050189;0.00047312711169555585;1;0;Young +25523;Slovenia;M;Clerical support workers;Transportation and storage   ;Y30-49;3991;1;1.5208613012143279e-05;2050189;0.001946649796677282;1;0;Young +25524;Slovenia;M;Clerical support workers;Transportation and storage   ;Y50-64;1470;1;5.601769262803964e-06;2050189;0.0007170070661778012;0;1;Old +25525;Slovenia;M;Clerical support workers;Transportation and storage   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25526;Slovenia;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;170;1;6.478236562426352e-07;2050189;8.291918452396341e-05;1;0;Young +25527;Slovenia;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;352;1;1.3413760411612213e-06;2050189;0.00017169148795550068;1;0;Young +25528;Slovenia;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;177;1;6.744987479702732e-07;2050189;8.633350388671484e-05;0;1;Old +25529;Slovenia;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25530;Slovenia;M;Clerical support workers;Information and communication   ;Y15-29;159;1;6.059056549563472e-07;2050189;7.7553825525354e-05;1;0;Young +25531;Slovenia;M;Clerical support workers;Information and communication   ;Y30-49;307;1;1.1698933086264062e-06;2050189;0.00014974229205209861;1;0;Young +25532;Slovenia;M;Clerical support workers;Information and communication   ;Y50-64;122;1;4.6490874153883237e-07;2050189;5.950670889366785e-05;0;1;Old +25533;Slovenia;M;Clerical support workers;Financial and insurance activities   ;Y15-29;329;1;1.2537293111989825e-06;2050189;0.0001604730100493174;1;0;Young +25534;Slovenia;M;Clerical support workers;Financial and insurance activities   ;Y30-49;871;1;3.31914355639609e-06;2050189;0.0004248388807080713;1;0;Young +25535;Slovenia;M;Clerical support workers;Financial and insurance activities   ;Y50-64;451;1;1.7186380527378147e-06;2050189;0.00021997971894298525;0;1;Old +25536;Slovenia;M;Clerical support workers;Real estate activities   ;Y15-29;23;1;8.764672996223889e-08;2050189;1.1218477906183284e-05;1;0;Young +25537;Slovenia;M;Clerical support workers;Real estate activities   ;Y30-49;57;1;2.1721146121076594e-07;2050189;2.7802314810975962e-05;1;0;Young +25538;Slovenia;M;Clerical support workers;Real estate activities   ;Y50-64;40;1;1.5242909558650242e-07;2050189;1.9510396358579622e-05;0;1;Old +25539;Slovenia;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;203;1;7.735776601014998e-07;2050189;9.90152615197916e-05;1;0;Young +25540;Slovenia;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;539;1;2.0539820630281202e-06;2050189;0.00026290259093186044;1;0;Young +25541;Slovenia;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;274;1;1.0441393047675416e-06;2050189;0.0001336462150562704;0;1;Old +25542;Slovenia;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25543;Slovenia;M;Clerical support workers;Administrative and support service activities   ;Y15-29;303;1;1.1546503990677558e-06;2050189;0.00014779125241624064;1;0;Young +25544;Slovenia;M;Clerical support workers;Administrative and support service activities   ;Y30-49;459;1;1.7491238718551153e-06;2050189;0.00022388179821470117;1;0;Young +25545;Slovenia;M;Clerical support workers;Administrative and support service activities   ;Y50-64;199;1;7.583347505428495e-07;2050189;9.706422188393362e-05;0;1;Old +25546;Slovenia;M;Clerical support workers;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25547;Slovenia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;157;1;5.98284200177022e-07;2050189;7.657830570742502e-05;1;0;Young +25548;Slovenia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;567;1;2.1606824299386718e-06;2050189;0.00027655986838286616;1;0;Young +25549;Slovenia;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;310;1;1.1813254907953937e-06;2050189;0.0001512055717789921;0;1;Old +25550;Slovenia;M;Clerical support workers;Education   ;Y15-29;31;1;1.1813254907953938e-07;2050189;1.5120557177899209e-05;1;0;Young +25551;Slovenia;M;Clerical support workers;Education   ;Y30-49;109;1;4.153692854732191e-07;2050189;5.316583007712947e-05;1;0;Young +25552;Slovenia;M;Clerical support workers;Education   ;Y50-64;134;1;5.106374702147831e-07;2050189;6.535982780124173e-05;0;1;Old +25553;Slovenia;M;Clerical support workers;Education   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25554;Slovenia;M;Clerical support workers;Human health and social work activities   ;Y15-29;79;1;3.010474637833423e-07;2050189;3.853303280819476e-05;1;0;Young +25555;Slovenia;M;Clerical support workers;Human health and social work activities   ;Y30-49;232;1;8.840887544017141e-07;2050189;0.00011316029887976182;1;0;Young +25556;Slovenia;M;Clerical support workers;Human health and social work activities   ;Y50-64;149;1;5.677983810597215e-07;2050189;7.26762264357091e-05;0;1;Old +25557;Slovenia;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;136;1;5.182589249941082e-07;2050189;6.633534761917072e-05;1;0;Young +25558;Slovenia;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;823;1;3.1362286416922874e-06;2050189;0.00040142640507777577;1;0;Young +25559;Slovenia;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;275;1;1.0479500321572042e-06;2050189;0.0001341339749652349;0;1;Old +25560;Slovenia;M;Clerical support workers;Other service activities   ;Y15-29;42;1;1.6005055036582754e-07;2050189;2.0485916176508605e-05;1;0;Young +25561;Slovenia;M;Clerical support workers;Other service activities   ;Y30-49;96;1;3.658298294076058e-07;2050189;4.6824951260591095e-05;1;0;Young +25562;Slovenia;M;Clerical support workers;Other service activities   ;Y50-64;46;1;1.7529345992447778e-07;2050189;2.2436955812366568e-05;0;1;Old +25563;Slovenia;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25564;Slovenia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;54;1;2.0577927904177827e-07;2050189;2.6339035084082493e-05;1;0;Young +25565;Slovenia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;136;1;5.182589249941082e-07;2050189;6.633534761917072e-05;1;0;Young +25566;Slovenia;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;79;1;3.010474637833423e-07;2050189;3.853303280819476e-05;0;1;Old +25567;Slovenia;M;Service and sales workers;Mining and quarrying   ;Y15-29;10;1;3.8107273896625604e-08;2050189;4.8775990896449056e-06;1;0;Young +25568;Slovenia;M;Service and sales workers;Mining and quarrying   ;Y30-49;20;1;7.621454779325121e-08;2050189;9.755198179289811e-06;1;0;Young +25569;Slovenia;M;Service and sales workers;Mining and quarrying   ;Y50-64;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25570;Slovenia;M;Service and sales workers;Manufacturing   ;Y15-29;350;1;1.3337545863818963e-06;2050189;0.0001707159681375717;1;0;Young +25571;Slovenia;M;Service and sales workers;Manufacturing   ;Y30-49;1129;1;4.3023112229290305e-06;2050189;0.0005506809372209098;1;0;Young +25572;Slovenia;M;Service and sales workers;Manufacturing   ;Y50-64;635;1;2.419811892435726e-06;2050189;0.0003097275421924515;0;1;Old +25573;Slovenia;M;Service and sales workers;Manufacturing   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25574;Slovenia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;22;1;8.383600257257633e-08;2050189;1.0730717997218792e-05;1;0;Young +25575;Slovenia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;73;1;2.7818309944536694e-07;2050189;3.560647335440781e-05;1;0;Young +25576;Slovenia;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;41;1;1.56239822976165e-07;2050189;1.9998156267544115e-05;0;1;Old +25577;Slovenia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;1;0;Young +25578;Slovenia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;120;1;4.572872867595073e-07;2050189;5.853118907573887e-05;1;0;Young +25579;Slovenia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;90;1;3.4296546506963047e-07;2050189;4.3898391806804156e-05;0;1;Old +25580;Slovenia;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25581;Slovenia;M;Service and sales workers;Construction   ;Y15-29;104;1;3.963156485249063e-07;2050189;5.072703053230702e-05;1;0;Young +25582;Slovenia;M;Service and sales workers;Construction   ;Y30-49;275;1;1.0479500321572042e-06;2050189;0.0001341339749652349;1;0;Young +25583;Slovenia;M;Service and sales workers;Construction   ;Y50-64;170;1;6.478236562426352e-07;2050189;8.291918452396341e-05;0;1;Old +25584;Slovenia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;3560;1;1.3566189507198715e-05;2050189;0.0017364252759135865;1;0;Young +25585;Slovenia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7567;1;2.8835774157576597e-05;2050189;0.0036908792311343003;1;0;Young +25586;Slovenia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2541;1;9.683058297132567e-06;2050189;0.0012393979286787705;0;1;Old +25587;Slovenia;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25588;Slovenia;M;Service and sales workers;Transportation and storage   ;Y15-29;143;1;5.449340167217462e-07;2050189;6.974966698192215e-05;1;0;Young +25589;Slovenia;M;Service and sales workers;Transportation and storage   ;Y30-49;682;1;2.598916079749866e-06;2050189;0.0003326522579137826;1;0;Young +25590;Slovenia;M;Service and sales workers;Transportation and storage   ;Y50-64;340;1;1.2956473124852705e-06;2050189;0.00016583836904792681;0;1;Old +25591;Slovenia;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;2786;1;1.0616686507599894e-05;2050189;0.0013588991063750709;1;0;Young +25592;Slovenia;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;4626;1;1.7628424904579005e-05;2050189;0.0022563773388697334;1;0;Young +25593;Slovenia;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;1378;1;5.251182342955009e-06;2050189;0.000672133154553068;0;1;Old +25594;Slovenia;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +25595;Slovenia;M;Service and sales workers;Information and communication   ;Y15-29;44;1;1.6767200514515266e-07;2050189;2.1461435994437585e-05;1;0;Young +25596;Slovenia;M;Service and sales workers;Information and communication   ;Y30-49;136;1;5.182589249941082e-07;2050189;6.633534761917072e-05;1;0;Young +25597;Slovenia;M;Service and sales workers;Information and communication   ;Y50-64;55;1;2.0959000643144082e-07;2050189;2.6826794993046983e-05;0;1;Old +25598;Slovenia;M;Service and sales workers;Financial and insurance activities   ;Y15-29;39;1;1.4861836819683987e-07;2050189;1.9022636449615132e-05;1;0;Young +25599;Slovenia;M;Service and sales workers;Financial and insurance activities   ;Y30-49;155;1;5.906627453976969e-07;2050189;7.560278588949604e-05;1;0;Young +25600;Slovenia;M;Service and sales workers;Financial and insurance activities   ;Y50-64;76;1;2.896152816143546e-07;2050189;3.7069753081301285e-05;0;1;Old +25601;Slovenia;M;Service and sales workers;Real estate activities   ;Y15-29;55;1;2.0959000643144082e-07;2050189;2.6826794993046983e-05;1;0;Young +25602;Slovenia;M;Service and sales workers;Real estate activities   ;Y30-49;206;1;7.850098422704875e-07;2050189;0.00010047854124668507;1;0;Young +25603;Slovenia;M;Service and sales workers;Real estate activities   ;Y50-64;164;1;6.2495929190466e-07;2050189;7.999262507017646e-05;0;1;Old +25604;Slovenia;M;Service and sales workers;Real estate activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25605;Slovenia;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;82;1;3.1247964595233e-07;2050189;3.999631253508823e-05;1;0;Young +25606;Slovenia;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;265;1;1.0098427582605786e-06;2050189;0.00012925637587559;1;0;Young +25607;Slovenia;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;95;1;3.6201910201794326e-07;2050189;4.633719135162661e-05;0;1;Old +25608;Slovenia;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25609;Slovenia;M;Service and sales workers;Administrative and support service activities   ;Y15-29;1274;1;4.8548666944301026e-06;2050189;0.000621406124020761;1;0;Young +25610;Slovenia;M;Service and sales workers;Administrative and support service activities   ;Y30-49;2940;1;1.1203538525607928e-05;2050189;0.0014340141323556023;1;0;Young +25611;Slovenia;M;Service and sales workers;Administrative and support service activities   ;Y50-64;1864;1;7.1031958543310124e-06;2050189;0.0009091844703098105;0;1;Old +25612;Slovenia;M;Service and sales workers;Administrative and support service activities   ;Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +25613;Slovenia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;1482;1;5.647497991479915e-06;2050189;0.0007228601850853751;1;0;Young +25614;Slovenia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;4629;1;1.7639857086747994e-05;2050189;0.002257840618596627;1;0;Young +25615;Slovenia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;473;1;1.8024740553103911e-06;2050189;0.00023071043694020406;0;1;Old +25616;Slovenia;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25617;Slovenia;M;Service and sales workers;Education   ;Y15-29;297;1;1.1317860347297806e-06;2050189;0.0001448646929624537;1;0;Young +25618;Slovenia;M;Service and sales workers;Education   ;Y30-49;1314;1;5.007295790016605e-06;2050189;0.0006409165203793406;1;0;Young +25619;Slovenia;M;Service and sales workers;Education   ;Y50-64;829;1;3.1590930060302626e-06;2050189;0.0004043529645315627;0;1;Old +25620;Slovenia;M;Service and sales workers;Human health and social work activities   ;Y15-29;319;1;1.2156220373023567e-06;2050189;0.0001555954109596725;1;0;Young +25621;Slovenia;M;Service and sales workers;Human health and social work activities   ;Y30-49;840;1;3.2010110073165508e-06;2050189;0.0004097183235301721;1;0;Young +25622;Slovenia;M;Service and sales workers;Human health and social work activities   ;Y50-64;394;1;1.5014265915270488e-06;2050189;0.0001921774041320093;0;1;Old +25623;Slovenia;M;Service and sales workers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25624;Slovenia;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;181;1;6.897416575289234e-07;2050189;8.82845435225728e-05;1;0;Young +25625;Slovenia;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;523;1;1.993010424793519e-06;2050189;0.0002550984323884286;1;0;Young +25626;Slovenia;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;247;1;9.412496652466524e-07;2050189;0.00012047669751422917;0;1;Old +25627;Slovenia;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25628;Slovenia;M;Service and sales workers;Other service activities   ;Y15-29;324;1;1.2346756742506695e-06;2050189;0.00015803421050449495;1;0;Young +25629;Slovenia;M;Service and sales workers;Other service activities   ;Y30-49;547;1;2.0844678821454206e-06;2050189;0.0002668046702035763;1;0;Young +25630;Slovenia;M;Service and sales workers;Other service activities   ;Y50-64;189;1;7.202274766462239e-07;2050189;9.218662279428872e-05;0;1;Old +25631;Slovenia;M;Service and sales workers;Other service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25632;Slovenia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;1;0;Young +25633;Slovenia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;13;1;4.953945606561329e-08;2050189;6.3408788165383775e-06;1;0;Young +25634;Slovenia;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;0;1;Old +25635;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;1026;1;3.909806301793787e-06;2050189;0.0005004416665975673;1;0;Young +25636;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;6150;1;2.3435973446424747e-05;2050189;0.002999723440131617;1;0;Young +25637;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;4832;1;1.8413434746849494e-05;2050189;0.0023568558801164187;0;1;Old +25638;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;57;1;2.1721146121076594e-07;2050189;2.7802314810975962e-05;0;1;Old +25639;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;45;1;1.7148273253481523e-07;2050189;2.1949195903402078e-05;1;0;Young +25640;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;139;1;5.296911071630959e-07;2050189;6.779862734606419e-05;1;0;Young +25641;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;99;1;3.772620115765935e-07;2050189;4.828823098748457e-05;0;1;Old +25642;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25643;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;13;1;4.953945606561329e-08;2050189;6.3408788165383775e-06;1;0;Young +25644;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25645;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;1;0;Young +25646;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;56;1;2.134007338211034e-07;2050189;2.7314554902011472e-05;1;0;Young +25647;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;15;1;5.716091084493841e-08;2050189;7.316398634467359e-06;0;1;Old +25648;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;1;0;Young +25649;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;40;1;1.5242909558650242e-07;2050189;1.9510396358579622e-05;1;0;Young +25650;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;0;1;Old +25651;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;31;1;1.1813254907953938e-07;2050189;1.5120557177899209e-05;1;0;Young +25652;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;116;1;4.4204437720085703e-07;2050189;5.658014943988091e-05;1;0;Young +25653;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;53;1;2.019685516521157e-07;2050189;2.5851275175118e-05;0;1;Old +25654;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;1;0;Young +25655;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;20;1;7.621454779325121e-08;2050189;9.755198179289811e-06;1;0;Young +25656;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;0;1;Old +25657;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +25658;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;28;1;1.067003669105517e-07;2050189;1.3657277451005736e-05;1;0;Young +25659;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;0;1;Old +25660;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25661;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25662;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25663;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25664;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;1;0;Young +25665;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;22;1;8.383600257257633e-08;2050189;1.0730717997218792e-05;1;0;Young +25666;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;16;1;6.097163823460096e-08;2050189;7.80415854343185e-06;0;1;Old +25667;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;64;1;2.4388655293840386e-07;2050189;3.12166341737274e-05;1;0;Young +25668;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;166;1;6.325807466839851e-07;2050189;8.096814488810543e-05;1;0;Young +25669;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;56;1;2.134007338211034e-07;2050189;2.7314554902011472e-05;0;1;Old +25670;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;21;1;8.002527518291377e-08;2050189;1.0242958088254303e-05;1;0;Young +25671;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;109;1;4.153692854732191e-07;2050189;5.316583007712947e-05;1;0;Young +25672;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;81;1;3.086689185626674e-07;2050189;3.950855262612374e-05;0;1;Old +25673;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;1;0;Young +25674;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;13;1;4.953945606561329e-08;2050189;6.3408788165383775e-06;1;0;Young +25675;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25676;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;16;1;6.097163823460096e-08;2050189;7.80415854343185e-06;1;0;Young +25677;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;13;1;4.953945606561329e-08;2050189;6.3408788165383775e-06;0;1;Old +25678;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;1;0;Young +25679;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;27;1;1.0288963952088914e-07;2050189;1.3169517542041246e-05;1;0;Young +25680;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;11;1;4.1918001286288165e-08;2050189;5.365358998609396e-06;0;1;Old +25681;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;1;0;Young +25682;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;13;1;4.953945606561329e-08;2050189;6.3408788165383775e-06;1;0;Young +25683;Slovenia;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25684;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;13;1;4.953945606561329e-08;2050189;6.3408788165383775e-06;1;0;Young +25685;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;20;1;7.621454779325121e-08;2050189;9.755198179289811e-06;1;0;Young +25686;Slovenia;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25687;Slovenia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;55;1;2.0959000643144082e-07;2050189;2.6826794993046983e-05;1;0;Young +25688;Slovenia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;230;1;8.76467299622389e-07;2050189;0.00011218477906183284;1;0;Young +25689;Slovenia;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;134;1;5.106374702147831e-07;2050189;6.535982780124173e-05;0;1;Old +25690;Slovenia;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;93;1;3.543976472386181e-07;2050189;4.536167153369762e-05;1;0;Young +25691;Slovenia;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;465;1;1.7719882361930907e-06;2050189;0.00022680835766848812;1;0;Young +25692;Slovenia;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;91;1;3.46776192459293e-07;2050189;4.438615171576864e-05;0;1;Old +25693;Slovenia;M;Craft and related trades workers;Manufacturing   ;Y15-29;10133;1;3.8614100639450725e-05;2050189;0.004942471157537183;1;0;Young +25694;Slovenia;M;Craft and related trades workers;Manufacturing   ;Y30-49;33380;1;0.00012720208026693628;2050189;0.016281425761234695;1;0;Young +25695;Slovenia;M;Craft and related trades workers;Manufacturing   ;Y50-64;14934;1;5.690940283722068e-05;2050189;0.007284206480475702;0;1;Old +25696;Slovenia;M;Craft and related trades workers;Manufacturing   ;Y65-84;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;0;1;Old +25697;Slovenia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;311;1;1.1851362181850563e-06;2050189;0.0001516933316879566;1;0;Young +25698;Slovenia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;1385;1;5.277857434682646e-06;2050189;0.0006755474739158194;1;0;Young +25699;Slovenia;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;644;1;2.454108438942689e-06;2050189;0.00031411738137313196;0;1;Old +25700;Slovenia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;181;1;6.897416575289234e-07;2050189;8.82845435225728e-05;1;0;Young +25701;Slovenia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;988;1;3.7649986609866098e-06;2050189;0.0004819067900569167;1;0;Young +25702;Slovenia;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;595;1;2.2673827968492233e-06;2050189;0.0002902171458338719;0;1;Old +25703;Slovenia;M;Craft and related trades workers;Construction   ;Y15-29;7486;1;2.8527105239013928e-05;2050189;0.0036513706785081764;1;0;Young +25704;Slovenia;M;Craft and related trades workers;Construction   ;Y30-49;22759;1;8.672834466133021e-05;2050189;0.011100927768122841;1;0;Young +25705;Slovenia;M;Craft and related trades workers;Construction   ;Y50-64;9094;1;3.465475488159133e-05;2050189;0.004435688612123077;0;1;Old +25706;Slovenia;M;Craft and related trades workers;Construction   ;Y65-84;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;0;1;Old +25707;Slovenia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2973;1;1.1329292529466792e-05;2050189;0.0014501102093514306;1;0;Young +25708;Slovenia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;7207;1;2.7463912297298074e-05;2050189;0.0035152856639070838;1;0;Young +25709;Slovenia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;2377;1;9.058099005227907e-06;2050189;0.001159405303608594;0;1;Old +25710;Slovenia;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25711;Slovenia;M;Craft and related trades workers;Transportation and storage   ;Y15-29;247;1;9.412496652466524e-07;2050189;0.00012047669751422917;1;0;Young +25712;Slovenia;M;Craft and related trades workers;Transportation and storage   ;Y30-49;992;1;3.78024157054526e-06;2050189;0.0004838578296927747;1;0;Young +25713;Slovenia;M;Craft and related trades workers;Transportation and storage   ;Y50-64;510;1;1.943470968727906e-06;2050189;0.0002487575535718902;0;1;Old +25714;Slovenia;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;192;1;7.316596588152116e-07;2050189;9.364990252118219e-05;1;0;Young +25715;Slovenia;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;539;1;2.0539820630281202e-06;2050189;0.00026290259093186044;1;0;Young +25716;Slovenia;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;258;1;9.831676665329406e-07;2050189;0.00012584205651283858;0;1;Old +25717;Slovenia;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25718;Slovenia;M;Craft and related trades workers;Information and communication   ;Y15-29;187;1;7.126060218668988e-07;2050189;9.121110297635974e-05;1;0;Young +25719;Slovenia;M;Craft and related trades workers;Information and communication   ;Y30-49;673;1;2.5646195332429032e-06;2050189;0.0003282624187331022;1;0;Young +25720;Slovenia;M;Craft and related trades workers;Information and communication   ;Y50-64;213;1;8.116849339981254e-07;2050189;0.0001038928606094365;0;1;Old +25721;Slovenia;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;43;1;1.638612777554901e-07;2050189;2.0973676085473095e-05;1;0;Young +25722;Slovenia;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;103;1;3.9250492113524375e-07;2050189;5.0239270623342533e-05;1;0;Young +25723;Slovenia;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;45;1;1.7148273253481523e-07;2050189;2.1949195903402078e-05;0;1;Old +25724;Slovenia;M;Craft and related trades workers;Real estate activities   ;Y15-29;71;1;2.705616446660418e-07;2050189;3.463095353647883e-05;1;0;Young +25725;Slovenia;M;Craft and related trades workers;Real estate activities   ;Y30-49;220;1;8.383600257257633e-07;2050189;0.00010730717997218793;1;0;Young +25726;Slovenia;M;Craft and related trades workers;Real estate activities   ;Y50-64;168;1;6.402022014633102e-07;2050189;8.194366470603442e-05;0;1;Old +25727;Slovenia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;646;1;2.4617298937220143e-06;2050189;0.0003150929011910609;1;0;Young +25728;Slovenia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;1679;1;6.398211287243439e-06;2050189;0.0008189488871513797;1;0;Young +25729;Slovenia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;827;1;3.1514715512509374e-06;2050189;0.0004033774447136337;0;1;Old +25730;Slovenia;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25731;Slovenia;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;485;1;1.8482027839863419e-06;2050189;0.00023656355584777793;1;0;Young +25732;Slovenia;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;1130;1;4.306121950318693e-06;2050189;0.0005511686971298743;1;0;Young +25733;Slovenia;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;356;1;1.3566189507198715e-06;2050189;0.00017364252759135865;0;1;Old +25734;Slovenia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;48;1;1.829149147038029e-07;2050189;2.3412475630295547e-05;1;0;Young +25735;Slovenia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;321;1;1.223243492081682e-06;2050189;0.00015657093077760148;1;0;Young +25736;Slovenia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;241;1;9.18385300908677e-07;2050189;0.00011755013806044223;0;1;Old +25737;Slovenia;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25738;Slovenia;M;Craft and related trades workers;Education   ;Y15-29;24;1;9.145745735190145e-08;2050189;1.1706237815147774e-05;1;0;Young +25739;Slovenia;M;Craft and related trades workers;Education   ;Y30-49;179;1;6.821202027495983e-07;2050189;8.730902370464381e-05;1;0;Young +25740;Slovenia;M;Craft and related trades workers;Education   ;Y50-64;158;1;6.020949275666846e-07;2050189;7.706606561638952e-05;0;1;Old +25741;Slovenia;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +25742;Slovenia;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;294;1;1.1203538525607928e-06;2050189;0.00014340141323556022;1;0;Young +25743;Slovenia;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;243;1;9.260067556880022e-07;2050189;0.00011852565787837121;0;1;Old +25744;Slovenia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;70;1;2.6675091727637925e-07;2050189;3.414319362751434e-05;1;0;Young +25745;Slovenia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;322;1;1.2270542194713445e-06;2050189;0.00015705869068656598;1;0;Young +25746;Slovenia;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;219;1;8.345492983361008e-07;2050189;0.00010681942006322344;0;1;Old +25747;Slovenia;M;Craft and related trades workers;Other service activities   ;Y15-29;151;1;5.754198358390467e-07;2050189;7.365174625363808e-05;1;0;Young +25748;Slovenia;M;Craft and related trades workers;Other service activities   ;Y30-49;583;1;2.221654068173273e-06;2050189;0.000284364026926298;1;0;Young +25749;Slovenia;M;Craft and related trades workers;Other service activities   ;Y50-64;266;1;1.013653485650241e-06;2050189;0.0001297441357845545;0;1;Old +25750;Slovenia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;1;0;Young +25751;Slovenia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;9;1;3.429654650696304e-08;2050189;4.389839180680415e-06;1;0;Young +25752;Slovenia;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25753;Slovenia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;109;1;4.153692854732191e-07;2050189;5.316583007712947e-05;1;0;Young +25754;Slovenia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;422;1;1.6081269584376006e-06;2050189;0.00020583468158301502;1;0;Young +25755;Slovenia;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;244;1;9.298174830776647e-07;2050189;0.0001190134177873357;0;1;Old +25756;Slovenia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;260;1;9.907891213122658e-07;2050189;0.00012681757633076755;1;0;Young +25757;Slovenia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;749;1;2.854234814857258e-06;2050189;0.0003653321718144035;1;0;Young +25758;Slovenia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;128;1;4.877731058768077e-07;2050189;6.24332683474548e-05;0;1;Old +25759;Slovenia;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25760;Slovenia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;4076;1;1.5532524840264598e-05;2050189;0.0019881093889392637;1;0;Young +25761;Slovenia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;13589;1;5.178397449812454e-05;2050189;0.006628169402918462;1;0;Young +25762;Slovenia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;6193;1;2.3599834724180238e-05;2050189;0.0030206971162170903;0;1;Old +25763;Slovenia;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;5;1;1.9053636948312802e-08;2050189;2.4387995448224528e-06;0;1;Old +25764;Slovenia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;1;0;Young +25765;Slovenia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;148;1;5.63987653670059e-07;2050189;7.218846652674461e-05;1;0;Young +25766;Slovenia;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;122;1;4.6490874153883237e-07;2050189;5.950670889366785e-05;0;1;Old +25767;Slovenia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;175;1;6.668772931909481e-07;2050189;8.535798406878585e-05;1;0;Young +25768;Slovenia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;878;1;3.3458186481237283e-06;2050189;0.0004282532000708227;1;0;Young +25769;Slovenia;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;455;1;1.7338809622964651e-06;2050189;0.00022193075857884323;0;1;Old +25770;Slovenia;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;1234;1;4.702437598843599e-06;2050189;0.0006018957276621813;1;0;Young +25771;Slovenia;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;3883;1;1.4797054454059723e-05;2050189;0.001893971726509117;1;0;Young +25772;Slovenia;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;1907;1;7.267057132086503e-06;2050189;0.0009301581463952835;0;1;Old +25773;Slovenia;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25774;Slovenia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;570;1;2.1721146121076596e-06;2050189;0.00027802314810975966;1;0;Young +25775;Slovenia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2089;1;7.960609517005088e-06;2050189;0.001018930449826821;1;0;Young +25776;Slovenia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;770;1;2.9342600900401717e-06;2050189;0.00037557512990265776;0;1;Old +25777;Slovenia;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +25778;Slovenia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;3821;1;1.4560789355900643e-05;2050189;0.0018637306121533186;1;0;Young +25779;Slovenia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;14594;1;5.561375552473541e-05;2050189;0.007118368111427776;1;0;Young +25780;Slovenia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;6277;1;2.3919935824911893e-05;2050189;0.0030616689485701075;0;1;Old +25781;Slovenia;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;30;1;1.1432182168987682e-07;2050189;1.4632797268934718e-05;0;1;Old +25782;Slovenia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;55;1;2.0959000643144082e-07;2050189;2.6826794993046983e-05;1;0;Young +25783;Slovenia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;174;1;6.630665658012855e-07;2050189;8.487022415982137e-05;1;0;Young +25784;Slovenia;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;89;1;3.3915473767996787e-07;2050189;4.341063189783966e-05;0;1;Old +25785;Slovenia;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;12;1;4.5728728675950726e-08;2050189;5.853118907573887e-06;1;0;Young +25786;Slovenia;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;67;1;2.5531873510739155e-07;2050189;3.267991390062087e-05;1;0;Young +25787;Slovenia;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;34;1;1.2956473124852705e-07;2050189;1.658383690479268e-05;0;1;Old +25788;Slovenia;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25789;Slovenia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;14;1;5.335018345527585e-08;2050189;6.828638725502868e-06;1;0;Young +25790;Slovenia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;41;1;1.56239822976165e-07;2050189;1.9998156267544115e-05;1;0;Young +25791;Slovenia;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;0;1;Old +25792;Slovenia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;18;1;6.859309301392609e-08;2050189;8.77967836136083e-06;1;0;Young +25793;Slovenia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;63;1;2.400758255487413e-07;2050189;3.072887426476291e-05;1;0;Young +25794;Slovenia;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;59;1;2.2483291599009106e-07;2050189;2.8777834628904945e-05;0;1;Old +25795;Slovenia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;179;1;6.821202027495983e-07;2050189;8.730902370464381e-05;1;0;Young +25796;Slovenia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;373;1;1.421401316344135e-06;2050189;0.000181934446043755;1;0;Young +25797;Slovenia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;167;1;6.363914740736477e-07;2050189;8.145590479706993e-05;0;1;Old +25798;Slovenia;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25799;Slovenia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;365;1;1.3909154972268347e-06;2050189;0.00017803236677203907;1;0;Young +25800;Slovenia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;521;1;1.9853889700141942e-06;2050189;0.0002541229125704996;1;0;Young +25801;Slovenia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;270;1;1.0288963952088914e-06;2050189;0.00013169517542041247;0;1;Old +25802;Slovenia;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25803;Slovenia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;1;0;Young +25804;Slovenia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;90;1;3.4296546506963047e-07;2050189;4.3898391806804156e-05;1;0;Young +25805;Slovenia;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;69;1;2.629401898867167e-07;2050189;3.365543371854985e-05;0;1;Old +25806;Slovenia;M;Plant and machine operators, and assemblers;Education   ;Y15-29;12;1;4.5728728675950726e-08;2050189;5.853118907573887e-06;1;0;Young +25807;Slovenia;M;Plant and machine operators, and assemblers;Education   ;Y30-49;87;1;3.3153328290064277e-07;2050189;4.243511207991068e-05;1;0;Young +25808;Slovenia;M;Plant and machine operators, and assemblers;Education   ;Y50-64;87;1;3.3153328290064277e-07;2050189;4.243511207991068e-05;0;1;Old +25809;Slovenia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;129;1;4.915838332664703e-07;2050189;6.292102825641929e-05;1;0;Young +25810;Slovenia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;259;1;9.869783939226032e-07;2050189;0.00012632981642180305;1;0;Young +25811;Slovenia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;208;1;7.926312970498126e-07;2050189;0.00010145406106461404;0;1;Old +25812;Slovenia;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;3;1;1.1432182168987682e-08;2050189;1.4632797268934717e-06;0;1;Old +25813;Slovenia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;22;1;8.383600257257633e-08;2050189;1.0730717997218792e-05;1;0;Young +25814;Slovenia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;65;1;2.4769728032806646e-07;2050189;3.170439408269189e-05;1;0;Young +25815;Slovenia;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;44;1;1.6767200514515266e-07;2050189;2.1461435994437585e-05;0;1;Old +25816;Slovenia;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +25817;Slovenia;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;161;1;6.135271097356723e-07;2050189;7.852934534328299e-05;1;0;Young +25818;Slovenia;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;79;1;3.010474637833423e-07;2050189;3.853303280819476e-05;0;1;Old +25819;Slovenia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;7;1;2.6675091727637924e-08;2050189;3.414319362751434e-06;1;0;Young +25820;Slovenia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;1;0;Young +25821;Slovenia;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25822;Slovenia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;113;1;4.3061219503186933e-07;2050189;5.511686971298744e-05;1;0;Young +25823;Slovenia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;485;1;1.8482027839863419e-06;2050189;0.00023656355584777793;1;0;Young +25824;Slovenia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;432;1;1.6462342323342262e-06;2050189;0.00021071228067265994;0;1;Old +25825;Slovenia;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;4;1;1.524290955865024e-08;2050189;1.9510396358579626e-06;0;1;Old +25826;Slovenia;M;Elementary occupations;Mining and quarrying   ;Y15-29;51;1;1.943470968727906e-07;2050189;2.487575535718902e-05;1;0;Young +25827;Slovenia;M;Elementary occupations;Mining and quarrying   ;Y30-49;204;1;7.773883874911624e-07;2050189;9.950302142875608e-05;1;0;Young +25828;Slovenia;M;Elementary occupations;Mining and quarrying   ;Y50-64;53;1;2.019685516521157e-07;2050189;2.5851275175118e-05;0;1;Old +25829;Slovenia;M;Elementary occupations;Manufacturing   ;Y15-29;4033;1;1.5368663562509108e-05;2050189;0.0019671357128537904;1;0;Young +25830;Slovenia;M;Elementary occupations;Manufacturing   ;Y30-49;8962;1;3.4151738866155866e-05;2050189;0.004371304304139765;1;0;Young +25831;Slovenia;M;Elementary occupations;Manufacturing   ;Y50-64;4327;1;1.64890174150699e-05;2050189;0.0021105371260893508;0;1;Old +25832;Slovenia;M;Elementary occupations;Manufacturing   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25833;Slovenia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;33;1;1.257540038588645e-07;2050189;1.609607699582819e-05;1;0;Young +25834;Slovenia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;114;1;4.344229224215319e-07;2050189;5.5604629621951925e-05;1;0;Young +25835;Slovenia;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;78;1;2.9723673639367974e-07;2050189;3.8045272899230265e-05;0;1;Old +25836;Slovenia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;427;1;1.6271805953859134e-06;2050189;0.00020827348112783747;1;0;Young +25837;Slovenia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1736;1;6.6154227484542055e-06;2050189;0.0008467512019623557;1;0;Young +25838;Slovenia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;903;1;3.441086832865292e-06;2050189;0.000440447197794935;0;1;Old +25839;Slovenia;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25840;Slovenia;M;Elementary occupations;Construction   ;Y15-29;3705;1;1.4118744978699787e-05;2050189;0.0018071504627134377;1;0;Young +25841;Slovenia;M;Elementary occupations;Construction   ;Y30-49;8434;1;3.213967480441403e-05;2050189;0.004113767072206513;1;0;Young +25842;Slovenia;M;Elementary occupations;Construction   ;Y50-64;2969;1;1.1314049619908143e-05;2050189;0.0014481591697155726;0;1;Old +25843;Slovenia;M;Elementary occupations;Construction   ;Y65-84;6;1;2.2864364337975363e-08;2050189;2.9265594537869434e-06;0;1;Old +25844;Slovenia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;932;1;3.5515979271655062e-06;2050189;0.00045459223515490523;1;0;Young +25845;Slovenia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;2047;1;7.80055896663926e-06;2050189;0.0009984445336503123;1;0;Young +25846;Slovenia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;769;1;2.930449362650509e-06;2050189;0.00037508736999369326;0;1;Old +25847;Slovenia;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25848;Slovenia;M;Elementary occupations;Transportation and storage   ;Y15-29;400;1;1.5242909558650242e-06;2050189;0.00019510396358579624;1;0;Young +25849;Slovenia;M;Elementary occupations;Transportation and storage   ;Y30-49;999;1;3.806916662272898e-06;2050189;0.0004872721490555261;1;0;Young +25850;Slovenia;M;Elementary occupations;Transportation and storage   ;Y50-64;487;1;1.8558242387656669e-06;2050189;0.00023753907566570693;0;1;Old +25851;Slovenia;M;Elementary occupations;Transportation and storage   ;Y65-84;2;1;7.62145477932512e-09;2050189;9.755198179289813e-07;0;1;Old +25852;Slovenia;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;611;1;2.3283544350838245e-06;2050189;0.00029802130437730373;1;0;Young +25853;Slovenia;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;683;1;2.602726807139529e-06;2050189;0.0003331400178227471;1;0;Young +25854;Slovenia;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;207;1;7.8882056966015e-07;2050189;0.00010096630115564955;0;1;Old +25855;Slovenia;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25856;Slovenia;M;Elementary occupations;Information and communication   ;Y15-29;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +25857;Slovenia;M;Elementary occupations;Information and communication   ;Y30-49;93;1;3.543976472386181e-07;2050189;4.536167153369762e-05;1;0;Young +25858;Slovenia;M;Elementary occupations;Information and communication   ;Y50-64;39;1;1.4861836819683987e-07;2050189;1.9022636449615132e-05;0;1;Old +25859;Slovenia;M;Elementary occupations;Financial and insurance activities   ;Y15-29;17;1;6.478236562426352e-08;2050189;8.29191845239634e-06;1;0;Young +25860;Slovenia;M;Elementary occupations;Financial and insurance activities   ;Y30-49;66;1;2.51508007717729e-07;2050189;3.219215399165638e-05;1;0;Young +25861;Slovenia;M;Elementary occupations;Financial and insurance activities   ;Y50-64;36;1;1.3718618602785217e-07;2050189;1.755935672272166e-05;0;1;Old +25862;Slovenia;M;Elementary occupations;Real estate activities   ;Y15-29;20;1;7.621454779325121e-08;2050189;9.755198179289811e-06;1;0;Young +25863;Slovenia;M;Elementary occupations;Real estate activities   ;Y30-49;107;1;4.07747830693894e-07;2050189;5.219031025920049e-05;1;0;Young +25864;Slovenia;M;Elementary occupations;Real estate activities   ;Y50-64;88;1;3.353440102903053e-07;2050189;4.292287198887517e-05;0;1;Old +25865;Slovenia;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;375;1;1.4290227711234603e-06;2050189;0.00018290996586168396;1;0;Young +25866;Slovenia;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;625;1;2.3817046185391005e-06;2050189;0.0003048499431028066;1;0;Young +25867;Slovenia;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;273;1;1.040328577377879e-06;2050189;0.00013315845514730594;0;1;Old +25868;Slovenia;M;Elementary occupations;Administrative and support service activities   ;Y15-29;1408;1;5.365504164644885e-06;2050189;0.0006867659518220027;1;0;Young +25869;Slovenia;M;Elementary occupations;Administrative and support service activities   ;Y30-49;1930;1;7.3547038620487416e-06;2050189;0.0009413766243014668;1;0;Young +25870;Slovenia;M;Elementary occupations;Administrative and support service activities   ;Y50-64;693;1;2.6408340810361544e-06;2050189;0.00033801761691239197;0;1;Old +25871;Slovenia;M;Elementary occupations;Administrative and support service activities   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25872;Slovenia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;66;1;2.51508007717729e-07;2050189;3.219215399165638e-05;1;0;Young +25873;Slovenia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;347;1;1.3223224042129085e-06;2050189;0.00016925268841067823;1;0;Young +25874;Slovenia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;378;1;1.4404549532924478e-06;2050189;0.00018437324558857743;0;1;Old +25875;Slovenia;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25876;Slovenia;M;Elementary occupations;Education   ;Y15-29;53;1;2.019685516521157e-07;2050189;2.5851275175118e-05;1;0;Young +25877;Slovenia;M;Elementary occupations;Education   ;Y30-49;147;1;5.601769262803964e-07;2050189;7.170070661778011e-05;1;0;Young +25878;Slovenia;M;Elementary occupations;Education   ;Y50-64;121;1;4.610980141491698e-07;2050189;5.901894898470336e-05;0;1;Old +25879;Slovenia;M;Elementary occupations;Education   ;Y65-84;1;1;3.81072738966256e-09;2050189;4.877599089644906e-07;0;1;Old +25880;Slovenia;M;Elementary occupations;Human health and social work activities   ;Y15-29;122;1;4.6490874153883237e-07;2050189;5.950670889366785e-05;1;0;Young +25881;Slovenia;M;Elementary occupations;Human health and social work activities   ;Y30-49;360;1;1.3718618602785219e-06;2050189;0.00017559356722721662;1;0;Young +25882;Slovenia;M;Elementary occupations;Human health and social work activities   ;Y50-64;144;1;5.487447441114087e-07;2050189;7.023742689088664e-05;0;1;Old +25883;Slovenia;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;45;1;1.7148273253481523e-07;2050189;2.1949195903402078e-05;1;0;Young +25884;Slovenia;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;189;1;7.202274766462239e-07;2050189;9.218662279428872e-05;1;0;Young +25885;Slovenia;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;149;1;5.677983810597215e-07;2050189;7.26762264357091e-05;0;1;Old +25886;Slovenia;M;Elementary occupations;Other service activities   ;Y15-29;63;1;2.400758255487413e-07;2050189;3.072887426476291e-05;1;0;Young +25887;Slovenia;M;Elementary occupations;Other service activities   ;Y30-49;173;1;6.592558384116229e-07;2050189;8.438246425085687e-05;1;0;Young +25888;Slovenia;M;Elementary occupations;Other service activities   ;Y50-64;77;1;2.9342600900401714e-07;2050189;3.755751299026578e-05;0;1;Old +25889;Slovenia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;29;1;1.1051109430021426e-07;2050189;1.4145037359970228e-05;1;0;Young +25890;Slovenia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;69;1;2.629401898867167e-07;2050189;3.365543371854985e-05;1;0;Young +25891;Slovenia;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;58;1;2.2102218860042852e-07;2050189;2.8290074719940455e-05;0;1;Old +25892;Slovenia;M;Not stated;Not stated   ;Y15-29;353;1;1.3451867685508839e-06;2050189;0.00017217924786446518;1;0;Young +25893;Slovenia;M;Not stated;Not stated   ;Y30-49;2313;1;8.814212452289502e-06;2050189;0.0011281886694348667;1;0;Young +25894;Slovenia;M;Not stated;Not stated   ;Y50-64;866;1;3.3000899194477775e-06;2050189;0.00042240008116324883;0;1;Old +25895;Slovenia;M;Not stated;Not stated   ;Y65-84;8;1;3.048581911730048e-08;2050189;3.902079271715925e-06;0;1;Old +25896;United Kingdom;F;Not applicable;Not applicable  ;Y15-29;2441355;1;0.00930333836638964;63182165;0.03863993897645008;1;0;Young +25897;United Kingdom;F;Not applicable;Not applicable  ;Y30-49;1794240;1;0.0068373595116281525;63182165;0.028397887283539588;1;0;Young +25898;United Kingdom;F;Not applicable;Not applicable  ;Y50-64;2203560;1;0.008397166446764833;63182165;0.03487629776535831;0;1;Old +25899;United Kingdom;F;Not applicable;Not applicable  ;Y65-84;4427120;1;0.016870547441322915;63182165;0.07006914055572486;0;1;Old +25900;United Kingdom;F;Not applicable;Not applicable  ;Y_GE85;924955;1;0.0035247513527053337;63182165;0.014639495180325018;0;1;Old +25901;United Kingdom;F;Not applicable;Not applicable  ;Y_LT15;5418565;1;0.02064867405816691;63182165;0.08576098967168978;0;1;Old +25902;United Kingdom;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;700;1;2.6675091727637926e-06;63182165;1.107907587528854e-05;1;0;Young +25903;United Kingdom;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;505;1;1.924417331779593e-06;63182165;7.992761881458161e-06;1;0;Young +25904;United Kingdom;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +25905;United Kingdom;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +25906;United Kingdom;F;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +25907;United Kingdom;F;Managers;Agriculture, forestry and fishing   ;Y15-29;545;1;2.0768464273660954e-06;63182165;8.62585193147465e-06;1;0;Young +25908;United Kingdom;F;Managers;Agriculture, forestry and fishing   ;Y30-49;2740;1;1.0441393047675416e-05;63182165;4.336666842612943e-05;1;0;Young +25909;United Kingdom;F;Managers;Agriculture, forestry and fishing   ;Y50-64;2645;1;1.0079373945657472e-05;63182165;4.186307955734027e-05;0;1;Old +25910;United Kingdom;F;Managers;Agriculture, forestry and fishing   ;Y65-84;1340;1;5.106374702147831e-06;63182165;2.120851667555235e-05;0;1;Old +25911;United Kingdom;F;Managers;Agriculture, forestry and fishing   ;Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +25912;United Kingdom;F;Managers;Mining and quarrying   ;Y15-29;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;1;0;Young +25913;United Kingdom;F;Managers;Mining and quarrying   ;Y30-49;710;1;2.705616446660418e-06;63182165;1.1237348387792662e-05;1;0;Young +25914;United Kingdom;F;Managers;Mining and quarrying   ;Y50-64;200;1;7.621454779325121e-07;63182165;3.16545025008244e-06;0;1;Old +25915;United Kingdom;F;Managers;Mining and quarrying   ;Y65-84;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +25916;United Kingdom;F;Managers;Manufacturing   ;Y15-29;5730;1;2.1835467942766472e-05;63182165;9.069014966486191e-05;1;0;Young +25917;United Kingdom;F;Managers;Manufacturing   ;Y30-49;37290;1;0.00014210202436051687;63182165;0.000590198199127871;1;0;Young +25918;United Kingdom;F;Managers;Manufacturing   ;Y50-64;15900;1;6.0590565495634715e-05;63182165;0.000251653294881554;0;1;Old +25919;United Kingdom;F;Managers;Manufacturing   ;Y65-84;2545;1;9.698301206691217e-06;63182165;4.028035443229905e-05;0;1;Old +25920;United Kingdom;F;Managers;Manufacturing   ;Y_GE85;105;1;4.0012637591456885e-07;63182165;1.661861381293281e-06;0;1;Old +25921;United Kingdom;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;675;1;2.5722409880222284e-06;63182165;1.0683394594028236e-05;1;0;Young +25922;United Kingdom;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2710;1;1.032707122598554e-05;63182165;4.2891850888617066e-05;1;0;Young +25923;United Kingdom;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;535;1;2.03873915346947e-06;63182165;8.467579418970528e-06;0;1;Old +25924;United Kingdom;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +25925;United Kingdom;F;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +25926;United Kingdom;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;495;1;1.8863100578829675e-06;63182165;7.834489368954039e-06;1;0;Young +25927;United Kingdom;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2610;1;9.945998487019283e-06;63182165;4.1309125763575844e-05;1;0;Young +25928;United Kingdom;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;925;1;3.5249228354378684e-06;63182165;1.4640207406631285e-05;0;1;Old +25929;United Kingdom;F;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;115;1;4.382336498111945e-07;63182165;1.8201338937974031e-06;0;1;Old +25930;United Kingdom;F;Managers;Construction   ;Y15-29;2525;1;9.622086658897965e-06;63182165;3.996380940729081e-05;1;0;Young +25931;United Kingdom;F;Managers;Construction   ;Y30-49;17170;1;6.543018928050616e-05;63182165;0.0002717539039695775;1;0;Young +25932;United Kingdom;F;Managers;Construction   ;Y50-64;9370;1;3.570651564113819e-05;63182165;0.00014830134421636232;0;1;Old +25933;United Kingdom;F;Managers;Construction   ;Y65-84;1655;1;6.306753829891537e-06;63182165;2.6194100819432193e-05;0;1;Old +25934;United Kingdom;F;Managers;Construction   ;Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +25935;United Kingdom;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;57665;1;0.00021974559492489155;63182165;0.0009126784433550196;1;0;Young +25936;United Kingdom;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;156185;1;0.000595178457354447;63182165;0.0024719792365456295;1;0;Young +25937;United Kingdom;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;74525;1;0.0002839944587146023;63182165;0.0011795258994369692;0;1;Old +25938;United Kingdom;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;11295;1;4.304216586623862e-05;63182165;0.0001787688028734058;0;1;Old +25939;United Kingdom;F;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;450;1;1.7148273253481523e-06;63182165;7.122263062685491e-06;0;1;Old +25940;United Kingdom;F;Managers;Transportation and storage   ;Y15-29;2585;1;9.85073030227772e-06;63182165;4.0913444482315536e-05;1;0;Young +25941;United Kingdom;F;Managers;Transportation and storage   ;Y30-49;14620;1;5.5712834436866634e-05;63182165;0.00023139441328102637;1;0;Young +25942;United Kingdom;F;Managers;Transportation and storage   ;Y50-64;6335;1;2.414095801351232e-05;63182165;0.00010026563667136129;0;1;Old +25943;United Kingdom;F;Managers;Transportation and storage   ;Y65-84;820;1;3.1247964595232996e-06;63182165;1.2978346025338005e-05;0;1;Old +25944;United Kingdom;F;Managers;Transportation and storage   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +25945;United Kingdom;F;Managers;Accommodation and food service activities   ;Y15-29;34950;1;0.0001331849222687065;63182165;0.0005531624312019064;1;0;Young +25946;United Kingdom;F;Managers;Accommodation and food service activities   ;Y30-49;70360;1;0.0002681227791366578;63182165;0.0011136053979790026;1;0;Young +25947;United Kingdom;F;Managers;Accommodation and food service activities   ;Y50-64;38635;1;0.00014722745269961303;63182165;0.0006114858520596754;0;1;Old +25948;United Kingdom;F;Managers;Accommodation and food service activities   ;Y65-84;5945;1;2.2654774331543923e-05;63182165;9.409300868370054e-05;0;1;Old +25949;United Kingdom;F;Managers;Accommodation and food service activities   ;Y_GE85;240;1;9.145745735190145e-07;63182165;3.798540300098928e-06;0;1;Old +25950;United Kingdom;F;Managers;Information and communication   ;Y15-29;3915;1;1.4918997730528924e-05;63182165;6.196368864536377e-05;1;0;Young +25951;United Kingdom;F;Managers;Information and communication   ;Y30-49;24185;1;9.216244191898902e-05;63182165;0.00038278207149121905;1;0;Young +25952;United Kingdom;F;Managers;Information and communication   ;Y50-64;6745;1;2.570335624327397e-05;63182165;0.0001067548096840303;0;1;Old +25953;United Kingdom;F;Managers;Information and communication   ;Y65-84;645;1;2.4579191663323517e-06;63182165;1.0208577056515869e-05;0;1;Old +25954;United Kingdom;F;Managers;Information and communication   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +25955;United Kingdom;F;Managers;Financial and insurance activities   ;Y15-29;13805;1;5.2607091614291646e-05;63182165;0.00021849520351194043;1;0;Young +25956;United Kingdom;F;Managers;Financial and insurance activities   ;Y30-49;54430;1;0.00020741789181933317;63182165;0.0008614772855599361;1;0;Young +25957;United Kingdom;F;Managers;Financial and insurance activities   ;Y50-64;12230;1;4.6605195975573116e-05;63182165;0.00019356728279254121;0;1;Old +25958;United Kingdom;F;Managers;Financial and insurance activities   ;Y65-84;660;1;2.51508007717729e-06;63182165;1.0445985825272053e-05;0;1;Old +25959;United Kingdom;F;Managers;Financial and insurance activities   ;Y_GE85;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +25960;United Kingdom;F;Managers;Real estate activities   ;Y15-29;5085;1;1.937754877643412e-05;63182165;8.048157260834604e-05;1;0;Young +25961;United Kingdom;F;Managers;Real estate activities   ;Y30-49;23700;1;9.031423913500268e-05;63182165;0.0003751058546347692;1;0;Young +25962;United Kingdom;F;Managers;Real estate activities   ;Y50-64;15240;1;5.8075485418457426e-05;63182165;0.00024120730905628193;0;1;Old +25963;United Kingdom;F;Managers;Real estate activities   ;Y65-84;2445;1;9.31722846772496e-06;63182165;3.8697629307257833e-05;0;1;Old +25964;United Kingdom;F;Managers;Real estate activities   ;Y_GE85;140;1;5.335018345527585e-07;63182165;2.215815175057708e-06;0;1;Old +25965;United Kingdom;F;Managers;Professional, scientific and technical activities   ;Y15-29;7955;1;3.031433638476567e-05;63182165;0.00012590578369702906;1;0;Young +25966;United Kingdom;F;Managers;Professional, scientific and technical activities   ;Y30-49;48400;1;0.00018443920565966793;63182165;0.0007660389605199505;1;0;Young +25967;United Kingdom;F;Managers;Professional, scientific and technical activities   ;Y50-64;16855;1;6.422981015276246e-05;63182165;0.00026676831982569763;0;1;Old +25968;United Kingdom;F;Managers;Professional, scientific and technical activities   ;Y65-84;1710;1;6.516343836322979e-06;63182165;2.7064599638204864e-05;0;1;Old +25969;United Kingdom;F;Managers;Professional, scientific and technical activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +25970;United Kingdom;F;Managers;Administrative and support service activities   ;Y15-29;8950;1;3.4106010137479914e-05;63182165;0.0001416538986911892;1;0;Young +25971;United Kingdom;F;Managers;Administrative and support service activities   ;Y30-49;37235;1;0.00014189243435408543;63182165;0.0005893277003090983;1;0;Young +25972;United Kingdom;F;Managers;Administrative and support service activities   ;Y50-64;15960;1;6.0819209139014465e-05;63182165;0.00025260292995657875;0;1;Old +25973;United Kingdom;F;Managers;Administrative and support service activities   ;Y65-84;1935;1;7.3737574989970546e-06;63182165;3.062573116954761e-05;0;1;Old +25974;United Kingdom;F;Managers;Administrative and support service activities   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +25975;United Kingdom;F;Managers;"Public administration and defence; compulsory social security   ";Y15-29;4595;1;1.7510292355499466e-05;63182165;7.272621949564407e-05;1;0;Young +25976;United Kingdom;F;Managers;"Public administration and defence; compulsory social security   ";Y30-49;28265;1;0.00010771020966881227;63182165;0.00044735725659290085;1;0;Young +25977;United Kingdom;F;Managers;"Public administration and defence; compulsory social security   ";Y50-64;14760;1;5.624633627141939e-05;63182165;0.00023361022845608408;0;1;Old +25978;United Kingdom;F;Managers;"Public administration and defence; compulsory social security   ";Y65-84;1430;1;5.4493401672174615e-06;63182165;2.2632969288089448e-05;0;1;Old +25979;United Kingdom;F;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +25980;United Kingdom;F;Managers;Education   ;Y15-29;3305;1;1.2594454022834763e-05;63182165;5.2309065382612326e-05;1;0;Young +25981;United Kingdom;F;Managers;Education   ;Y30-49;22935;1;8.739903268191083e-05;63182165;0.00036299800742820384;1;0;Young +25982;United Kingdom;F;Managers;Education   ;Y50-64;14545;1;5.5427029882641944e-05;63182165;0.00023020736943724546;0;1;Old +25983;United Kingdom;F;Managers;Education   ;Y65-84;1280;1;4.877731058768077e-06;63182165;2.0258881600527618e-05;0;1;Old +25984;United Kingdom;F;Managers;Education   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +25985;United Kingdom;F;Managers;Human health and social work activities   ;Y15-29;11620;1;4.428065226787895e-05;63182165;0.00018391265952978977;1;0;Young +25986;United Kingdom;F;Managers;Human health and social work activities   ;Y30-49;85020;1;0.0003239880426691109;63182165;0.0013456329013100453;1;0;Young +25987;United Kingdom;F;Managers;Human health and social work activities   ;Y50-64;60560;1;0.00023077765071796466;63182165;0.0009584983357249629;0;1;Old +25988;United Kingdom;F;Managers;Human health and social work activities   ;Y65-84;5355;1;2.0406445171643012e-05;63182165;8.475493044595734e-05;0;1;Old +25989;United Kingdom;F;Managers;Human health and social work activities   ;Y_GE85;570;1;2.1721146121076596e-06;63182165;9.021533212734954e-06;0;1;Old +25990;United Kingdom;F;Managers;Arts, entertainment and recreation   ;Y15-29;8715;1;3.3210489200909215e-05;63182165;0.00013793449464734233;1;0;Young +25991;United Kingdom;F;Managers;Arts, entertainment and recreation   ;Y30-49;21110;1;8.044445519577665e-05;63182165;0.00033411327389620154;1;0;Young +25992;United Kingdom;F;Managers;Arts, entertainment and recreation   ;Y50-64;9595;1;3.656392930381227e-05;63182165;0.00015186247574770507;0;1;Old +25993;United Kingdom;F;Managers;Arts, entertainment and recreation   ;Y65-84;980;1;3.7345128418693094e-06;63182165;1.5510706225403958e-05;0;1;Old +25994;United Kingdom;F;Managers;Arts, entertainment and recreation   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +25995;United Kingdom;F;Managers;Other service activities   ;Y15-29;4915;1;1.8729725120191485e-05;63182165;7.779093989577597e-05;1;0;Young +25996;United Kingdom;F;Managers;Other service activities   ;Y30-49;18020;1;6.866930756171934e-05;63182165;0.0002852070675324279;1;0;Young +25997;United Kingdom;F;Managers;Other service activities   ;Y50-64;9085;1;3.462045833508436e-05;63182165;0.00014379057760999486;0;1;Old +25998;United Kingdom;F;Managers;Other service activities   ;Y65-84;1405;1;5.354071982475897e-06;63182165;2.2237288006829144e-05;0;1;Old +25999;United Kingdom;F;Managers;Other service activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26000;United Kingdom;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;1;0;Young +26001;United Kingdom;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;180;1;6.859309301392609e-07;63182165;2.848905225074196e-06;1;0;Young +26002;United Kingdom;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;135;1;5.144481976044457e-07;63182165;2.136678918805647e-06;0;1;Old +26003;United Kingdom;F;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26004;United Kingdom;F;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;155;1;5.906627453976969e-07;63182165;2.4532239438138913e-06;1;0;Young +26005;United Kingdom;F;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;570;1;2.1721146121076596e-06;63182165;9.021533212734954e-06;1;0;Young +26006;United Kingdom;F;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;265;1;1.0098427582605786e-06;63182165;4.194221581359233e-06;0;1;Old +26007;United Kingdom;F;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +26008;United Kingdom;F;Professionals;Agriculture, forestry and fishing   ;Y15-29;375;1;1.4290227711234603e-06;63182165;5.935219218904576e-06;1;0;Young +26009;United Kingdom;F;Professionals;Agriculture, forestry and fishing   ;Y30-49;965;1;3.6773519310243708e-06;63182165;1.5273297456647774e-05;1;0;Young +26010;United Kingdom;F;Professionals;Agriculture, forestry and fishing   ;Y50-64;455;1;1.7338809622964651e-06;63182165;7.201399318937552e-06;0;1;Old +26011;United Kingdom;F;Professionals;Agriculture, forestry and fishing   ;Y65-84;165;1;6.287700192943225e-07;63182165;2.611496456318013e-06;0;1;Old +26012;United Kingdom;F;Professionals;Agriculture, forestry and fishing   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26013;United Kingdom;F;Professionals;Mining and quarrying   ;Y15-29;720;1;2.7437237205570438e-06;63182165;1.1395620900296784e-05;1;0;Young +26014;United Kingdom;F;Professionals;Mining and quarrying   ;Y30-49;1750;1;6.668772931909481e-06;63182165;2.769768968822135e-05;1;0;Young +26015;United Kingdom;F;Professionals;Mining and quarrying   ;Y50-64;255;1;9.71735484363953e-07;63182165;4.035949068855111e-06;0;1;Old +26016;United Kingdom;F;Professionals;Mining and quarrying   ;Y65-84;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26017;United Kingdom;F;Professionals;Manufacturing   ;Y15-29;10270;1;3.91361702918345e-05;63182165;0.0001625458703417333;1;0;Young +26018;United Kingdom;F;Professionals;Manufacturing   ;Y30-49;30425;1;0.00011594138083048341;63182165;0.0004815441192937912;1;0;Young +26019;United Kingdom;F;Professionals;Manufacturing   ;Y50-64;7650;1;2.9152064530918588e-05;63182165;0.00012107847206565334;0;1;Old +26020;United Kingdom;F;Professionals;Manufacturing   ;Y65-84;650;1;2.4769728032806642e-06;63182165;1.0287713312767931e-05;0;1;Old +26021;United Kingdom;F;Professionals;Manufacturing   ;Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +26022;United Kingdom;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;1325;1;5.049213791302893e-06;63182165;2.0971107906796166e-05;1;0;Young +26023;United Kingdom;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;3575;1;1.3623350418043654e-05;63182165;5.658242322022362e-05;1;0;Young +26024;United Kingdom;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;650;1;2.4769728032806642e-06;63182165;1.0287713312767931e-05;0;1;Old +26025;United Kingdom;F;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26026;United Kingdom;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;900;1;3.4296546506963047e-06;63182165;1.4244526125370981e-05;1;0;Young +26027;United Kingdom;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2550;1;9.717354843639529e-06;63182165;4.0359490688551116e-05;1;0;Young +26028;United Kingdom;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;530;1;2.0196855165211572e-06;63182165;8.388443162718467e-06;0;1;Old +26029;United Kingdom;F;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26030;United Kingdom;F;Professionals;Construction   ;Y15-29;4975;1;1.8958368763571237e-05;63182165;7.87405749708007e-05;1;0;Young +26031;United Kingdom;F;Professionals;Construction   ;Y30-49;12405;1;4.7272073268764066e-05;63182165;0.00019633705176136336;1;0;Young +26032;United Kingdom;F;Professionals;Construction   ;Y50-64;3460;1;1.318511676823246e-05;63182165;5.4762289326426216e-05;0;1;Old +26033;United Kingdom;F;Professionals;Construction   ;Y65-84;360;1;1.3718618602785219e-06;63182165;5.697810450148392e-06;0;1;Old +26034;United Kingdom;F;Professionals;Construction   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26035;United Kingdom;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;17895;1;6.819296663801152e-05;63182165;0.00028322866112612634;1;0;Young +26036;United Kingdom;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;37345;1;0.00014231161436694832;63182165;0.0005910686979466437;1;0;Young +26037;United Kingdom;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;11870;1;4.5233334115294593e-05;63182165;0.00018786947234239283;0;1;Old +26038;United Kingdom;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1225;1;4.668141052336637e-06;63182165;1.9388382781754947e-05;0;1;Old +26039;United Kingdom;F;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +26040;United Kingdom;F;Professionals;Transportation and storage   ;Y15-29;1800;1;6.859309301392609e-06;63182165;2.8489052250741963e-05;1;0;Young +26041;United Kingdom;F;Professionals;Transportation and storage   ;Y30-49;6870;1;2.617969716698179e-05;63182165;0.00010873321609033182;1;0;Young +26042;United Kingdom;F;Professionals;Transportation and storage   ;Y50-64;1665;1;6.344861103788163e-06;63182165;2.6352373331936313e-05;0;1;Old +26043;United Kingdom;F;Professionals;Transportation and storage   ;Y65-84;130;1;4.953945606561329e-07;63182165;2.057542662553586e-06;0;1;Old +26044;United Kingdom;F;Professionals;Transportation and storage   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26045;United Kingdom;F;Professionals;Accommodation and food service activities   ;Y15-29;2135;1;8.135902976929566e-06;63182165;3.3791181419630047e-05;1;0;Young +26046;United Kingdom;F;Professionals;Accommodation and food service activities   ;Y30-49;5015;1;1.911079785915774e-05;63182165;7.937366502081718e-05;1;0;Young +26047;United Kingdom;F;Professionals;Accommodation and food service activities   ;Y50-64;2425;1;9.241013919931709e-06;63182165;3.8381084282249586e-05;0;1;Old +26048;United Kingdom;F;Professionals;Accommodation and food service activities   ;Y65-84;370;1;1.4099691341751475e-06;63182165;5.856082962652515e-06;0;1;Old +26049;United Kingdom;F;Professionals;Accommodation and food service activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26050;United Kingdom;F;Professionals;Information and communication   ;Y15-29;24765;1;9.437266380499331e-05;63182165;0.00039196187721645813;1;0;Young +26051;United Kingdom;F;Professionals;Information and communication   ;Y30-49;68680;1;0.00026172075712202464;63182165;0.00108701561587831;1;0;Young +26052;United Kingdom;F;Professionals;Information and communication   ;Y50-64;14880;1;5.67036235581789e-05;63182165;0.00023550949860613355;0;1;Old +26053;United Kingdom;F;Professionals;Information and communication   ;Y65-84;1180;1;4.4966583198018215e-06;63182165;1.8676156475486396e-05;0;1;Old +26054;United Kingdom;F;Professionals;Information and communication   ;Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +26055;United Kingdom;F;Professionals;Financial and insurance activities   ;Y15-29;12225;1;4.6586142338624805e-05;63182165;0.00019348814653628917;1;0;Young +26056;United Kingdom;F;Professionals;Financial and insurance activities   ;Y30-49;40125;1;0.00015290543651021025;63182165;0.0006350684564227896;1;0;Young +26057;United Kingdom;F;Professionals;Financial and insurance activities   ;Y50-64;6465;1;2.4636352574168455e-05;63182165;0.00010232317933391488;0;1;Old +26058;United Kingdom;F;Professionals;Financial and insurance activities   ;Y65-84;320;1;1.2194327646920193e-06;63182165;5.0647204001319045e-06;0;1;Old +26059;United Kingdom;F;Professionals;Financial and insurance activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26060;United Kingdom;F;Professionals;Real estate activities   ;Y15-29;2855;1;1.087962669748661e-05;63182165;4.5186802319926836e-05;1;0;Young +26061;United Kingdom;F;Professionals;Real estate activities   ;Y30-49;8070;1;3.0752570034576866e-05;63182165;0.00012772591759082646;1;0;Young +26062;United Kingdom;F;Professionals;Real estate activities   ;Y50-64;2590;1;9.869783939226033e-06;63182165;4.09925807385676e-05;0;1;Old +26063;United Kingdom;F;Professionals;Real estate activities   ;Y65-84;225;1;8.574136626740762e-07;63182165;3.5611315313427453e-06;0;1;Old +26064;United Kingdom;F;Professionals;Real estate activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26065;United Kingdom;F;Professionals;Professional, scientific and technical activities   ;Y15-29;75670;1;0.00028835774157576595;63182165;0.0011976481021186913;1;0;Young +26066;United Kingdom;F;Professionals;Professional, scientific and technical activities   ;Y30-49;143095;1;0.0005452960358237641;63182165;0.002264800517677734;1;0;Young +26067;United Kingdom;F;Professionals;Professional, scientific and technical activities   ;Y50-64;34960;1;0.0001332230295426031;63182165;0.0005533207037144106;0;1;Old +26068;United Kingdom;F;Professionals;Professional, scientific and technical activities   ;Y65-84;3235;1;1.2327703105558383e-05;63182165;5.120115779508347e-05;0;1;Old +26069;United Kingdom;F;Professionals;Professional, scientific and technical activities   ;Y_GE85;140;1;5.335018345527585e-07;63182165;2.215815175057708e-06;0;1;Old +26070;United Kingdom;F;Professionals;Administrative and support service activities   ;Y15-29;5770;1;2.1987897038352976e-05;63182165;9.13232397148784e-05;1;0;Young +26071;United Kingdom;F;Professionals;Administrative and support service activities   ;Y30-49;14295;1;5.4474348035226304e-05;63182165;0.00022625055662464243;1;0;Young +26072;United Kingdom;F;Professionals;Administrative and support service activities   ;Y50-64;5165;1;1.9682406967607125e-05;63182165;8.174775270837901e-05;0;1;Old +26073;United Kingdom;F;Professionals;Administrative and support service activities   ;Y65-84;615;1;2.343597344642475e-06;63182165;9.733759519003503e-06;0;1;Old +26074;United Kingdom;F;Professionals;Administrative and support service activities   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26075;United Kingdom;F;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;15475;1;5.8971006355028125e-05;63182165;0.0002449267131001288;1;0;Young +26076;United Kingdom;F;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;65020;1;0.0002477734948758597;63182165;0.0010290878763018012;1;0;Young +26077;United Kingdom;F;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;27295;1;0.00010401380410083959;63182165;0.000432004822880001;0;1;Old +26078;United Kingdom;F;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;1785;1;6.80214839054767e-06;63182165;2.825164348198578e-05;0;1;Old +26079;United Kingdom;F;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;0;1;Old +26080;United Kingdom;F;Professionals;Education   ;Y15-29;167550;1;0.000638487374137962;63182165;0.002651855947006564;1;0;Young +26081;United Kingdom;F;Professionals;Education   ;Y30-49;485675;1;0.0018507750249743642;63182165;0.007686900251043946;1;0;Young +26082;United Kingdom;F;Professionals;Education   ;Y50-64;271785;1;0.001035698543599439;63182165;0.00430160948109328;0;1;Old +26083;United Kingdom;F;Professionals;Education   ;Y65-84;23295;1;8.877089454218935e-05;63182165;0.0003686958178783522;0;1;Old +26084;United Kingdom;F;Professionals;Education   ;Y_GE85;710;1;2.705616446660418e-06;63182165;1.1237348387792662e-05;0;1;Old +26085;United Kingdom;F;Professionals;Human health and social work activities   ;Y15-29;150735;1;0.000574409993080786;63182165;0.0023857207172308832;1;0;Young +26086;United Kingdom;F;Professionals;Human health and social work activities   ;Y30-49;522670;1;0.0019917528847549306;63182165;0.008272429411052945;1;0;Young +26087;United Kingdom;F;Professionals;Human health and social work activities   ;Y50-64;240075;1;0.0009148603780732393;63182165;0.003799727343942709;0;1;Old +26088;United Kingdom;F;Professionals;Human health and social work activities   ;Y65-84;18800;1;7.164167492565614e-05;63182165;0.00029755232350774937;0;1;Old +26089;United Kingdom;F;Professionals;Human health and social work activities   ;Y_GE85;690;1;2.6294018988671666e-06;63182165;1.0920803362784418e-05;0;1;Old +26090;United Kingdom;F;Professionals;Arts, entertainment and recreation   ;Y15-29;5755;1;2.1930736127508035e-05;63182165;9.108583094612221e-05;1;0;Young +26091;United Kingdom;F;Professionals;Arts, entertainment and recreation   ;Y30-49;14960;1;5.7008481749351904e-05;63182165;0.0002367756787061665;1;0;Young +26092;United Kingdom;F;Professionals;Arts, entertainment and recreation   ;Y50-64;7250;1;2.7627773575053564e-05;63182165;0.00011474757156548845;0;1;Old +26093;United Kingdom;F;Professionals;Arts, entertainment and recreation   ;Y65-84;1010;1;3.848834663559186e-06;63182165;1.5985523762916322e-05;0;1;Old +26094;United Kingdom;F;Professionals;Arts, entertainment and recreation   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26095;United Kingdom;F;Professionals;Other service activities   ;Y15-29;4560;1;1.7376916896861277e-05;63182165;7.217226570187963e-05;1;0;Young +26096;United Kingdom;F;Professionals;Other service activities   ;Y30-49;12660;1;4.824380875312802e-05;63182165;0.00020037300083021846;1;0;Young +26097;United Kingdom;F;Professionals;Other service activities   ;Y50-64;7550;1;2.877099179195233e-05;63182165;0.00011949574694061211;0;1;Old +26098;United Kingdom;F;Professionals;Other service activities   ;Y65-84;1210;1;4.610980141491699e-06;63182165;1.9150974012998763e-05;0;1;Old +26099;United Kingdom;F;Professionals;Other service activities   ;Y_GE85;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +26100;United Kingdom;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;1;0;Young +26101;United Kingdom;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;160;1;6.097163823460097e-07;63182165;2.5323602000659522e-06;1;0;Young +26102;United Kingdom;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;80;1;3.0485819117300483e-07;63182165;1.2661801000329761e-06;0;1;Old +26103;United Kingdom;F;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26104;United Kingdom;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;370;1;1.4099691341751475e-06;63182165;5.856082962652515e-06;1;0;Young +26105;United Kingdom;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;765;1;2.9152064530918587e-06;63182165;1.2107847206565333e-05;1;0;Young +26106;United Kingdom;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;280;1;1.067003669105517e-06;63182165;4.431630350115416e-06;0;1;Old +26107;United Kingdom;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +26108;United Kingdom;F;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26109;United Kingdom;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;540;1;2.057792790417783e-06;63182165;8.546715675222588e-06;1;0;Young +26110;United Kingdom;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;1015;1;3.867888300507499e-06;63182165;1.6064660019168386e-05;1;0;Young +26111;United Kingdom;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;450;1;1.7148273253481523e-06;63182165;7.122263062685491e-06;0;1;Old +26112;United Kingdom;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;0;1;Old +26113;United Kingdom;F;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26114;United Kingdom;F;Technicians and associate professionals;Mining and quarrying   ;Y15-29;725;1;2.7627773575053563e-06;63182165;1.1474757156548846e-05;1;0;Young +26115;United Kingdom;F;Technicians and associate professionals;Mining and quarrying   ;Y30-49;1805;1;6.8783629383409215e-06;63182165;2.8568188506994023e-05;1;0;Young +26116;United Kingdom;F;Technicians and associate professionals;Mining and quarrying   ;Y50-64;365;1;1.3909154972268347e-06;63182165;5.776946706400453e-06;0;1;Old +26117;United Kingdom;F;Technicians and associate professionals;Mining and quarrying   ;Y65-84;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26118;United Kingdom;F;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26119;United Kingdom;F;Technicians and associate professionals;Manufacturing   ;Y15-29;20785;1;7.920596879413632e-05;63182165;0.0003289694172398176;1;0;Young +26120;United Kingdom;F;Technicians and associate professionals;Manufacturing   ;Y30-49;55150;1;0.0002101616155398902;63182165;0.0008728729064602328;1;0;Young +26121;United Kingdom;F;Technicians and associate professionals;Manufacturing   ;Y50-64;16355;1;6.232444645793118e-05;63182165;0.00025885469420049156;0;1;Old +26122;United Kingdom;F;Technicians and associate professionals;Manufacturing   ;Y65-84;1380;1;5.258803797734333e-06;63182165;2.1841606725568837e-05;0;1;Old +26123;United Kingdom;F;Technicians and associate professionals;Manufacturing   ;Y_GE85;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +26124;United Kingdom;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;2310;1;8.802780270120515e-06;63182165;3.6560950388452184e-05;1;0;Young +26125;United Kingdom;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;4215;1;1.606221594742769e-05;63182165;6.671186402048743e-05;1;0;Young +26126;United Kingdom;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;950;1;3.6201910201794326e-06;63182165;1.503588868789159e-05;0;1;Old +26127;United Kingdom;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +26128;United Kingdom;F;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26129;United Kingdom;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1485;1;5.658930173648902e-06;63182165;2.350346810686212e-05;1;0;Young +26130;United Kingdom;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;3410;1;1.2994580398749331e-05;63182165;5.397092676390561e-05;1;0;Young +26131;United Kingdom;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;900;1;3.4296546506963047e-06;63182165;1.4244526125370981e-05;0;1;Old +26132;United Kingdom;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +26133;United Kingdom;F;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26134;United Kingdom;F;Technicians and associate professionals;Construction   ;Y15-29;6410;1;2.4426762567737013e-05;63182165;0.0001014526805151422;1;0;Young +26135;United Kingdom;F;Technicians and associate professionals;Construction   ;Y30-49;15340;1;5.845655815742368e-05;63182165;0.00024279003418132316;1;0;Young +26136;United Kingdom;F;Technicians and associate professionals;Construction   ;Y50-64;6405;1;2.44077089307887e-05;63182165;0.00010137354425889015;0;1;Old +26137;United Kingdom;F;Technicians and associate professionals;Construction   ;Y65-84;660;1;2.51508007717729e-06;63182165;1.0445985825272053e-05;0;1;Old +26138;United Kingdom;F;Technicians and associate professionals;Construction   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26139;United Kingdom;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;40665;1;0.00015496322930062803;63182165;0.0006436151720980121;1;0;Young +26140;United Kingdom;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;75540;1;0.00028786234701510985;63182165;0.0011955905594561377;1;0;Young +26141;United Kingdom;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;22845;1;8.70560672168412e-05;63182165;0.00036157355481566673;0;1;Old +26142;United Kingdom;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2230;1;8.49792207894751e-06;63182165;3.529477028841921e-05;0;1;Old +26143;United Kingdom;F;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;0;1;Old +26144;United Kingdom;F;Technicians and associate professionals;Transportation and storage   ;Y15-29;5190;1;1.9777675152348688e-05;63182165;8.214343398963933e-05;1;0;Young +26145;United Kingdom;F;Technicians and associate professionals;Transportation and storage   ;Y30-49;13235;1;5.043497700218399e-05;63182165;0.00020947367029920547;1;0;Young +26146;United Kingdom;F;Technicians and associate professionals;Transportation and storage   ;Y50-64;3845;1;1.4652246813252546e-05;63182165;6.085578105783491e-05;0;1;Old +26147;United Kingdom;F;Technicians and associate professionals;Transportation and storage   ;Y65-84;285;1;1.0860573060538298e-06;63182165;4.510766606367477e-06;0;1;Old +26148;United Kingdom;F;Technicians and associate professionals;Transportation and storage   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26149;United Kingdom;F;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;11595;1;4.418538408313739e-05;63182165;0.00018351697824852946;1;0;Young +26150;United Kingdom;F;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;11825;1;4.506185138275978e-05;63182165;0.00018715724603612428;1;0;Young +26151;United Kingdom;F;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;3675;1;1.400442315700991e-05;63182165;5.816514834526484e-05;0;1;Old +26152;United Kingdom;F;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;460;1;1.752934599244778e-06;63182165;7.2805355751896125e-06;0;1;Old +26153;United Kingdom;F;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26154;United Kingdom;F;Technicians and associate professionals;Information and communication   ;Y15-29;28035;1;0.00010683374236918988;63182165;0.00044371698880530606;1;0;Young +26155;United Kingdom;F;Technicians and associate professionals;Information and communication   ;Y30-49;55055;1;0.00020979959643787228;63182165;0.0008713693175914437;1;0;Young +26156;United Kingdom;F;Technicians and associate professionals;Information and communication   ;Y50-64;11750;1;4.477604682853509e-05;63182165;0.00018597020219234336;0;1;Old +26157;United Kingdom;F;Technicians and associate professionals;Information and communication   ;Y65-84;1160;1;4.42044377200857e-06;63182165;1.8359611450478152e-05;0;1;Old +26158;United Kingdom;F;Technicians and associate professionals;Information and communication   ;Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +26159;United Kingdom;F;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;43110;1;0.00016428045776835297;63182165;0.00068231280140527;1;0;Young +26160;United Kingdom;F;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;84020;1;0.0003201773152794483;63182165;0.0013298056500596332;1;0;Young +26161;United Kingdom;F;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;17325;1;6.602085202590386e-05;63182165;0.00027420712791339136;0;1;Old +26162;United Kingdom;F;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;1010;1;3.848834663559186e-06;63182165;1.5985523762916322e-05;0;1;Old +26163;United Kingdom;F;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26164;United Kingdom;F;Technicians and associate professionals;Real estate activities   ;Y15-29;15375;1;5.8589933616061865e-05;63182165;0.0002433439879750876;1;0;Young +26165;United Kingdom;F;Technicians and associate professionals;Real estate activities   ;Y30-49;34775;1;0.00013251804497551553;63182165;0.0005503926622330843;1;0;Young +26166;United Kingdom;F;Technicians and associate professionals;Real estate activities   ;Y50-64;15595;1;5.942829364178763e-05;63182165;0.00024682598325017827;0;1;Old +26167;United Kingdom;F;Technicians and associate professionals;Real estate activities   ;Y65-84;1340;1;5.106374702147831e-06;63182165;2.120851667555235e-05;0;1;Old +26168;United Kingdom;F;Technicians and associate professionals;Real estate activities   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +26169;United Kingdom;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;60865;1;0.00023193992257181174;63182165;0.0009633256473563386;1;0;Young +26170;United Kingdom;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;102305;1;0.00038985646559942826;63182165;0.0016192069391734202;1;0;Young +26171;United Kingdom;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;30430;1;0.00011596043446743171;63182165;0.0004816232555500433;0;1;Old +26172;United Kingdom;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;3275;1;1.2480132201144885e-05;63182165;5.183424784509996e-05;0;1;Old +26173;United Kingdom;F;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;0;1;Old +26174;United Kingdom;F;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;31195;1;0.00011887564092052358;63182165;0.0004937311027566086;1;0;Young +26175;United Kingdom;F;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;41255;1;0.00015721155846052894;63182165;0.0006529532503357553;1;0;Young +26176;United Kingdom;F;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;10005;1;3.812632753357392e-05;63182165;0.00015835164876037408;0;1;Old +26177;United Kingdom;F;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;855;1;3.2581719181614894e-06;63182165;1.3532299819102432e-05;0;1;Old +26178;United Kingdom;F;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26179;United Kingdom;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;42050;1;0.00016024108673531068;63182165;0.0006655359150798331;1;0;Young +26180;United Kingdom;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;121605;1;0.0004634035042199157;63182165;0.0019246728883063756;1;0;Young +26181;United Kingdom;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;36700;1;0.00013985369520061596;63182165;0.0005808601208901278;0;1;Old +26182;United Kingdom;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;1830;1;6.973631123082486e-06;63182165;2.8963869788254327e-05;0;1;Old +26183;United Kingdom;F;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;155;1;5.906627453976969e-07;63182165;2.4532239438138913e-06;0;1;Old +26184;United Kingdom;F;Technicians and associate professionals;Education   ;Y15-29;36160;1;0.00013779590241019818;63182165;0.0005723134052149052;1;0;Young +26185;United Kingdom;F;Technicians and associate professionals;Education   ;Y30-49;85955;1;0.0003275510727784454;63182165;0.0013604313812291807;1;0;Young +26186;United Kingdom;F;Technicians and associate professionals;Education   ;Y50-64;42755;1;0.00016292764954502277;63182165;0.0006766941272113736;0;1;Old +26187;United Kingdom;F;Technicians and associate professionals;Education   ;Y65-84;4240;1;1.6157484132169258e-05;63182165;6.710754530174773e-05;0;1;Old +26188;United Kingdom;F;Technicians and associate professionals;Education   ;Y_GE85;135;1;5.144481976044457e-07;63182165;2.136678918805647e-06;0;1;Old +26189;United Kingdom;F;Technicians and associate professionals;Human health and social work activities   ;Y15-29;103045;1;0.00039267640386777853;63182165;0.0016309191050987253;1;0;Young +26190;United Kingdom;F;Technicians and associate professionals;Human health and social work activities   ;Y30-49;235190;1;0.0008962449747747376;63182165;0.0037224112215844454;1;0;Young +26191;United Kingdom;F;Technicians and associate professionals;Human health and social work activities   ;Y50-64;129070;1;0.0004918505841837467;63182165;0.002042823318890703;0;1;Old +26192;United Kingdom;F;Technicians and associate professionals;Human health and social work activities   ;Y65-84;10570;1;4.027938850873327e-05;63182165;0.00016729404571685696;0;1;Old +26193;United Kingdom;F;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;270;1;1.0288963952088914e-06;63182165;4.273357837611294e-06;0;1;Old +26194;United Kingdom;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;30070;1;0.0001145885726071532;63182165;0.0004759254450998949;1;0;Young +26195;United Kingdom;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;43045;1;0.00016403276048802492;63182165;0.0006812840300739932;1;0;Young +26196;United Kingdom;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;14990;1;5.7122803571041786e-05;63182165;0.0002372504962436789;0;1;Old +26197;United Kingdom;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;2855;1;1.087962669748661e-05;63182165;4.5186802319926836e-05;0;1;Old +26198;United Kingdom;F;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;145;1;5.525554715010713e-07;63182165;2.294951431309769e-06;0;1;Old +26199;United Kingdom;F;Technicians and associate professionals;Other service activities   ;Y15-29;9795;1;3.732607478174478e-05;63182165;0.0001550279259977875;1;0;Young +26200;United Kingdom;F;Technicians and associate professionals;Other service activities   ;Y30-49;19215;1;7.32231267923661e-05;63182165;0.0003041206327766704;1;0;Young +26201;United Kingdom;F;Technicians and associate professionals;Other service activities   ;Y50-64;7990;1;3.0447711843403858e-05;63182165;0.0001264597374907935;0;1;Old +26202;United Kingdom;F;Technicians and associate professionals;Other service activities   ;Y65-84;1055;1;4.0203173960940015e-06;63182165;1.6697750069184873e-05;0;1;Old +26203;United Kingdom;F;Technicians and associate professionals;Other service activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26204;United Kingdom;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;1;0;Young +26205;United Kingdom;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;180;1;6.859309301392609e-07;63182165;2.848905225074196e-06;1;0;Young +26206;United Kingdom;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +26207;United Kingdom;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26208;United Kingdom;F;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26209;United Kingdom;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;820;1;3.1247964595232996e-06;63182165;1.2978346025338005e-05;1;0;Young +26210;United Kingdom;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;960;1;3.658298294076058e-06;63182165;1.5194161200395713e-05;1;0;Young +26211;United Kingdom;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;280;1;1.067003669105517e-06;63182165;4.431630350115416e-06;0;1;Old +26212;United Kingdom;F;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26213;United Kingdom;F;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;985;1;3.753566478817622e-06;63182165;1.5589842481656018e-05;1;0;Young +26214;United Kingdom;F;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;4790;1;1.8253384196483665e-05;63182165;7.581253348947444e-05;1;0;Young +26215;United Kingdom;F;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;4160;1;1.5852625940996253e-05;63182165;6.584136520171476e-05;0;1;Old +26216;United Kingdom;F;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;1490;1;5.677983810597215e-06;63182165;2.358260436311418e-05;0;1;Old +26217;United Kingdom;F;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +26218;United Kingdom;F;Clerical support workers;Mining and quarrying   ;Y15-29;1120;1;4.268014676422068e-06;63182165;1.7726521400461664e-05;1;0;Young +26219;United Kingdom;F;Clerical support workers;Mining and quarrying   ;Y30-49;2340;1;8.917102091810391e-06;63182165;3.703576792596455e-05;1;0;Young +26220;United Kingdom;F;Clerical support workers;Mining and quarrying   ;Y50-64;1140;1;4.344229224215319e-06;63182165;1.8043066425469908e-05;0;1;Old +26221;United Kingdom;F;Clerical support workers;Mining and quarrying   ;Y65-84;105;1;4.0012637591456885e-07;63182165;1.661861381293281e-06;0;1;Old +26222;United Kingdom;F;Clerical support workers;Mining and quarrying   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26223;United Kingdom;F;Clerical support workers;Manufacturing   ;Y15-29;28490;1;0.00010856762333148635;63182165;0.0004509183881242436;1;0;Young +26224;United Kingdom;F;Clerical support workers;Manufacturing   ;Y30-49;80245;1;0.0003057918193834722;63182165;0.0012700577765893271;1;0;Young +26225;United Kingdom;F;Clerical support workers;Manufacturing   ;Y50-64;49120;1;0.00018718292938022497;63182165;0.0007774345814202473;0;1;Old +26226;United Kingdom;F;Clerical support workers;Manufacturing   ;Y65-84;7010;1;2.671319900153455e-05;63182165;0.00011094903126538953;0;1;Old +26227;United Kingdom;F;Clerical support workers;Manufacturing   ;Y_GE85;275;1;1.0479500321572042e-06;63182165;4.352494093863355e-06;0;1;Old +26228;United Kingdom;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;3310;1;1.2613507659783075e-05;63182165;5.2388201638864386e-05;1;0;Young +26229;United Kingdom;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;5625;1;2.1435341566851904e-05;63182165;8.902828828356864e-05;1;0;Young +26230;United Kingdom;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2870;1;1.0936787608331549e-05;63182165;4.5424211088683016e-05;0;1;Old +26231;United Kingdom;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;275;1;1.0479500321572042e-06;63182165;4.352494093863355e-06;0;1;Old +26232;United Kingdom;F;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26233;United Kingdom;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;3780;1;1.4404549532924478e-05;63182165;5.982700972655812e-05;1;0;Young +26234;United Kingdom;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;7580;1;2.888531361364221e-05;63182165;0.00011997056447812449;1;0;Young +26235;United Kingdom;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4000;1;1.5242909558650242e-05;63182165;6.330900500164881e-05;0;1;Old +26236;United Kingdom;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;365;1;1.3909154972268347e-06;63182165;5.776946706400453e-06;0;1;Old +26237;United Kingdom;F;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26238;United Kingdom;F;Clerical support workers;Construction   ;Y15-29;23635;1;9.006654185467462e-05;63182165;0.00037407708330349236;1;0;Young +26239;United Kingdom;F;Clerical support workers;Construction   ;Y30-49;68245;1;0.00026006309070752146;63182165;0.0010801307615843807;1;0;Young +26240;United Kingdom;F;Clerical support workers;Construction   ;Y50-64;40480;1;0.00015425824473354045;63182165;0.0006406871306166859;0;1;Old +26241;United Kingdom;F;Clerical support workers;Construction   ;Y65-84;5660;1;2.1568717025490093e-05;63182165;8.958224207733306e-05;0;1;Old +26242;United Kingdom;F;Clerical support workers;Construction   ;Y_GE85;150;1;5.716091084493841e-07;63182165;2.37408768756183e-06;0;1;Old +26243;United Kingdom;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;68355;1;0.00026048227072038435;63182165;0.001081871759221926;1;0;Young +26244;United Kingdom;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;134505;1;0.0005125618875465627;63182165;0.002128844429436693;1;0;Young +26245;United Kingdom;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;81650;1;0.00031114589136594804;63182165;0.0012922950645961563;0;1;Old +26246;United Kingdom;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;11390;1;4.3404184968256565e-05;63182165;0.00018027239174219498;0;1;Old +26247;United Kingdom;F;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;365;1;1.3909154972268347e-06;63182165;5.776946706400453e-06;0;1;Old +26248;United Kingdom;F;Clerical support workers;Transportation and storage   ;Y15-29;17910;1;6.825012754885646e-05;63182165;0.00028346606989488254;1;0;Young +26249;United Kingdom;F;Clerical support workers;Transportation and storage   ;Y30-49;43570;1;0.00016603339236759775;63182165;0.0006895933369804596;1;0;Young +26250;United Kingdom;F;Clerical support workers;Transportation and storage   ;Y50-64;26245;1;0.0001000125403416939;63182165;0.0004153862090670682;0;1;Old +26251;United Kingdom;F;Clerical support workers;Transportation and storage   ;Y65-84;3320;1;1.26516149336797e-05;63182165;5.2546474151368506e-05;0;1;Old +26252;United Kingdom;F;Clerical support workers;Transportation and storage   ;Y_GE85;130;1;4.953945606561329e-07;63182165;2.057542662553586e-06;0;1;Old +26253;United Kingdom;F;Clerical support workers;Accommodation and food service activities   ;Y15-29;23660;1;9.016181003941618e-05;63182165;0.00037447276458475265;1;0;Young +26254;United Kingdom;F;Clerical support workers;Accommodation and food service activities   ;Y30-49;23705;1;9.0333292771951e-05;63182165;0.00037518499089102123;1;0;Young +26255;United Kingdom;F;Clerical support workers;Accommodation and food service activities   ;Y50-64;10940;1;4.168935764290841e-05;63182165;0.00017315012867950947;0;1;Old +26256;United Kingdom;F;Clerical support workers;Accommodation and food service activities   ;Y65-84;1745;1;6.649719294961168e-06;63182165;2.761855343196929e-05;0;1;Old +26257;United Kingdom;F;Clerical support workers;Accommodation and food service activities   ;Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +26258;United Kingdom;F;Clerical support workers;Information and communication   ;Y15-29;17155;1;6.537302836966122e-05;63182165;0.0002715164952008213;1;0;Young +26259;United Kingdom;F;Clerical support workers;Information and communication   ;Y30-49;36020;1;0.00013726240057564544;63182165;0.0005700975900398475;1;0;Young +26260;United Kingdom;F;Clerical support workers;Information and communication   ;Y50-64;15915;1;6.064772640647965e-05;63182165;0.00025189070365031017;0;1;Old +26261;United Kingdom;F;Clerical support workers;Information and communication   ;Y65-84;1735;1;6.611612021064543e-06;63182165;2.7460280919465168e-05;0;1;Old +26262;United Kingdom;F;Clerical support workers;Information and communication   ;Y_GE85;80;1;3.0485819117300483e-07;63182165;1.2661801000329761e-06;0;1;Old +26263;United Kingdom;F;Clerical support workers;Financial and insurance activities   ;Y15-29;86030;1;0.0003278368773326701;63182165;0.0013616184250729616;1;0;Young +26264;United Kingdom;F;Clerical support workers;Financial and insurance activities   ;Y30-49;136250;1;0.0005192116068415239;63182165;0.0021564629828686624;1;0;Young +26265;United Kingdom;F;Clerical support workers;Financial and insurance activities   ;Y50-64;59810;1;0.00022791960517571774;63182165;0.0009466278972871538;0;1;Old +26266;United Kingdom;F;Clerical support workers;Financial and insurance activities   ;Y65-84;4310;1;1.6424235049445637e-05;63182165;6.821545288927659e-05;0;1;Old +26267;United Kingdom;F;Clerical support workers;Financial and insurance activities   ;Y_GE85;215;1;8.193063887774505e-07;63182165;3.402859018838623e-06;0;1;Old +26268;United Kingdom;F;Clerical support workers;Real estate activities   ;Y15-29;14840;1;5.65511944625924e-05;63182165;0.00023487640855611707;1;0;Young +26269;United Kingdom;F;Clerical support workers;Real estate activities   ;Y30-49;30100;1;0.00011470289442884307;63182165;0.00047640026263740724;1;0;Young +26270;United Kingdom;F;Clerical support workers;Real estate activities   ;Y50-64;18435;1;7.025075942842931e-05;63182165;0.00029177537680134894;0;1;Old +26271;United Kingdom;F;Clerical support workers;Real estate activities   ;Y65-84;2400;1;9.145745735190145e-06;63182165;3.798540300098928e-05;0;1;Old +26272;United Kingdom;F;Clerical support workers;Real estate activities   ;Y_GE85;80;1;3.0485819117300483e-07;63182165;1.2661801000329761e-06;0;1;Old +26273;United Kingdom;F;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;61780;1;0.000235426738133353;63182165;0.0009778075822504657;1;0;Young +26274;United Kingdom;F;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;135775;1;0.0005174015113314341;63182165;0.0021489450385247166;1;0;Young +26275;United Kingdom;F;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;88375;1;0.00033677303306142877;63182165;0.0013987333292551783;0;1;Old +26276;United Kingdom;F;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;12755;1;4.860582785514596e-05;63182165;0.00020187658969900762;0;1;Old +26277;United Kingdom;F;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;290;1;1.1051109430021426e-06;63182165;4.589902862619538e-06;0;1;Old +26278;United Kingdom;F;Clerical support workers;Administrative and support service activities   ;Y15-29;46040;1;0.00017544588902006428;63182165;0.0007286866475689777;1;0;Young +26279;United Kingdom;F;Clerical support workers;Administrative and support service activities   ;Y30-49;69865;1;0.0002662364690787748;63182165;0.0011057709086100484;1;0;Young +26280;United Kingdom;F;Clerical support workers;Administrative and support service activities   ;Y50-64;31465;1;0.00011990453731573247;63182165;0.0004980044605942199;0;1;Old +26281;United Kingdom;F;Clerical support workers;Administrative and support service activities   ;Y65-84;3820;1;1.455697862851098e-05;63182165;6.046009977657461e-05;0;1;Old +26282;United Kingdom;F;Clerical support workers;Administrative and support service activities   ;Y_GE85;135;1;5.144481976044457e-07;63182165;2.136678918805647e-06;0;1;Old +26283;United Kingdom;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;60160;1;0.00022925335976209965;63182165;0.000952167435224798;1;0;Young +26284;United Kingdom;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;215615;1;0.000821649986122093;63182165;0.0034125927783576265;1;0;Young +26285;United Kingdom;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;129950;1;0.0004952040242866498;63182165;0.0020567512999910653;0;1;Old +26286;United Kingdom;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;8045;1;3.0657301849835296e-05;63182165;0.00012733023630956617;0;1;Old +26287;United Kingdom;F;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;505;1;1.924417331779593e-06;63182165;7.992761881458161e-06;0;1;Old +26288;United Kingdom;F;Clerical support workers;Education   ;Y15-29;28995;1;0.00011049204066326594;63182165;0.00045891115000570176;1;0;Young +26289;United Kingdom;F;Clerical support workers;Education   ;Y30-49;104945;1;0.0003999167859081374;63182165;0.0016609908824745084;1;0;Young +26290;United Kingdom;F;Clerical support workers;Education   ;Y50-64;70905;1;0.00027019962556402386;63182165;0.001122231249910477;0;1;Old +26291;United Kingdom;F;Clerical support workers;Education   ;Y65-84;5725;1;2.181641430581816e-05;63182165;9.061101340860985e-05;0;1;Old +26292;United Kingdom;F;Clerical support workers;Education   ;Y_GE85;150;1;5.716091084493841e-07;63182165;2.37408768756183e-06;0;1;Old +26293;United Kingdom;F;Clerical support workers;Human health and social work activities   ;Y15-29;58160;1;0.00022163190498277453;63182165;0.0009205129327239736;1;0;Young +26294;United Kingdom;F;Clerical support workers;Human health and social work activities   ;Y30-49;177865;1;0.0006777950271623313;63182165;0.002815114043654566;1;0;Young +26295;United Kingdom;F;Clerical support workers;Human health and social work activities   ;Y50-64;153490;1;0.0005849085470393064;63182165;0.0024293247944257687;0;1;Old +26296;United Kingdom;F;Clerical support workers;Human health and social work activities   ;Y65-84;15555;1;5.9275864546201126e-05;63182165;0.0002461928932001618;0;1;Old +26297;United Kingdom;F;Clerical support workers;Human health and social work activities   ;Y_GE85;340;1;1.2956473124852705e-06;63182165;5.381265425140148e-06;0;1;Old +26298;United Kingdom;F;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;23355;1;8.89995381855691e-05;63182165;0.00036964545295337694;1;0;Young +26299;United Kingdom;F;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;32585;1;0.00012417255199215454;63182165;0.0005157309819946816;1;0;Young +26300;United Kingdom;F;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;24250;1;9.241013919931709e-05;63182165;0.0003838108428224959;0;1;Old +26301;United Kingdom;F;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;2975;1;1.1336913984246117e-05;63182165;4.70860724699763e-05;0;1;Old +26302;United Kingdom;F;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +26303;United Kingdom;F;Clerical support workers;Other service activities   ;Y15-29;11505;1;4.384241861806776e-05;63182165;0.00018209252563599238;1;0;Young +26304;United Kingdom;F;Clerical support workers;Other service activities   ;Y30-49;23850;1;9.088584824345206e-05;63182165;0.000377479942322331;1;0;Young +26305;United Kingdom;F;Clerical support workers;Other service activities   ;Y50-64;17305;1;6.594463747811061e-05;63182165;0.0002738905828883831;0;1;Old +26306;United Kingdom;F;Clerical support workers;Other service activities   ;Y65-84;2945;1;1.122259216255624e-05;63182165;4.661125493246393e-05;0;1;Old +26307;United Kingdom;F;Clerical support workers;Other service activities   ;Y_GE85;80;1;3.0485819117300483e-07;63182165;1.2661801000329761e-06;0;1;Old +26308;United Kingdom;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;265;1;1.0098427582605786e-06;63182165;4.194221581359233e-06;1;0;Young +26309;United Kingdom;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;685;1;2.610348261918854e-06;63182165;1.0841667106532358e-05;1;0;Young +26310;United Kingdom;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;400;1;1.5242909558650242e-06;63182165;6.33090050016488e-06;0;1;Old +26311;United Kingdom;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +26312;United Kingdom;F;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26313;United Kingdom;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;510;1;1.943470968727906e-06;63182165;8.071898137710223e-06;1;0;Young +26314;United Kingdom;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1500;1;5.716091084493841e-06;63182165;2.3740876875618303e-05;1;0;Young +26315;United Kingdom;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;730;1;2.7818309944536693e-06;63182165;1.1553893412800906e-05;0;1;Old +26316;United Kingdom;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;105;1;4.0012637591456885e-07;63182165;1.661861381293281e-06;0;1;Old +26317;United Kingdom;F;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26318;United Kingdom;F;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;2345;1;8.936155728758704e-06;63182165;3.711490418221661e-05;1;0;Young +26319;United Kingdom;F;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;2320;1;8.84088754401714e-06;63182165;3.6719222900956304e-05;1;0;Young +26320;United Kingdom;F;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;1650;1;6.287700192943225e-06;63182165;2.6114964563180133e-05;0;1;Old +26321;United Kingdom;F;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;455;1;1.7338809622964651e-06;63182165;7.201399318937552e-06;0;1;Old +26322;United Kingdom;F;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26323;United Kingdom;F;Service and sales workers;Mining and quarrying   ;Y15-29;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;1;0;Young +26324;United Kingdom;F;Service and sales workers;Mining and quarrying   ;Y30-49;240;1;9.145745735190145e-07;63182165;3.798540300098928e-06;1;0;Young +26325;United Kingdom;F;Service and sales workers;Mining and quarrying   ;Y50-64;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;0;1;Old +26326;United Kingdom;F;Service and sales workers;Mining and quarrying   ;Y65-84;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26327;United Kingdom;F;Service and sales workers;Manufacturing   ;Y15-29;13350;1;5.087321065199518e-05;63182165;0.0002112938041930029;1;0;Young +26328;United Kingdom;F;Service and sales workers;Manufacturing   ;Y30-49;21290;1;8.113038612591591e-05;63182165;0.00033696217912127576;1;0;Young +26329;United Kingdom;F;Service and sales workers;Manufacturing   ;Y50-64;10545;1;4.01841203239917e-05;63182165;0.00016689836443559665;0;1;Old +26330;United Kingdom;F;Service and sales workers;Manufacturing   ;Y65-84;1525;1;5.811359269235405e-06;63182165;2.4136558156878607e-05;0;1;Old +26331;United Kingdom;F;Service and sales workers;Manufacturing   ;Y_GE85;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +26332;United Kingdom;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;6835;1;2.60463217083436e-05;63182165;0.0001081792622965674;1;0;Young +26333;United Kingdom;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;7250;1;2.7627773575053564e-05;63182165;0.00011474757156548845;1;0;Young +26334;United Kingdom;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;2195;1;8.36454662030932e-06;63182165;3.474081649465478e-05;0;1;Old +26335;United Kingdom;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;0;1;Old +26336;United Kingdom;F;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26337;United Kingdom;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1780;1;6.783094753599357e-06;63182165;2.817250722573372e-05;1;0;Young +26338;United Kingdom;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2385;1;9.088584824345206e-06;63182165;3.77479942322331e-05;1;0;Young +26339;United Kingdom;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;920;1;3.505869198489556e-06;63182165;1.4561071150379225e-05;0;1;Old +26340;United Kingdom;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +26341;United Kingdom;F;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26342;United Kingdom;F;Service and sales workers;Construction   ;Y15-29;5910;1;2.2521398872905733e-05;63182165;9.35390548899361e-05;1;0;Young +26343;United Kingdom;F;Service and sales workers;Construction   ;Y30-49;9145;1;3.4849101978464116e-05;63182165;0.00014474021268501958;1;0;Young +26344;United Kingdom;F;Service and sales workers;Construction   ;Y50-64;5440;1;2.0730356999764328e-05;63182165;8.610024680224237e-05;0;1;Old +26345;United Kingdom;F;Service and sales workers;Construction   ;Y65-84;720;1;2.7437237205570438e-06;63182165;1.1395620900296784e-05;0;1;Old +26346;United Kingdom;F;Service and sales workers;Construction   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26347;United Kingdom;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;598930;1;0.002282358955490597;63182165;0.00947941559140938;1;0;Young +26348;United Kingdom;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;457150;1;0.0017420740261842396;63182165;0.007235427909125938;1;0;Young +26349;United Kingdom;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;281995;1;0.0010746060702478937;63182165;0.004463205716359988;0;1;Old +26350;United Kingdom;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;36725;1;0.00013994896338535753;63182165;0.000581255802171388;0;1;Old +26351;United Kingdom;F;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;1115;1;4.248961039473755e-06;63182165;1.7647385144209604e-05;0;1;Old +26352;United Kingdom;F;Service and sales workers;Transportation and storage   ;Y15-29;20955;1;7.985379245037895e-05;63182165;0.00033166004995238766;1;0;Young +26353;United Kingdom;F;Service and sales workers;Transportation and storage   ;Y30-49;36535;1;0.00013922492518132166;63182165;0.0005782486244338097;1;0;Young +26354;United Kingdom;F;Service and sales workers;Transportation and storage   ;Y50-64;15915;1;6.064772640647965e-05;63182165;0.00025189070365031017;0;1;Old +26355;United Kingdom;F;Service and sales workers;Transportation and storage   ;Y65-84;2245;1;8.555082989792449e-06;63182165;3.553217905717539e-05;0;1;Old +26356;United Kingdom;F;Service and sales workers;Transportation and storage   ;Y_GE85;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +26357;United Kingdom;F;Service and sales workers;Accommodation and food service activities   ;Y15-29;42440;1;0.00016172727041727908;63182165;0.0006717085430674938;1;0;Young +26358;United Kingdom;F;Service and sales workers;Accommodation and food service activities   ;Y30-49;33225;1;0.00012661141752153858;63182165;0.0005258604227949454;1;0;Young +26359;United Kingdom;F;Service and sales workers;Accommodation and food service activities   ;Y50-64;14930;1;5.689415992766203e-05;63182165;0.00023630086116865415;0;1;Old +26360;United Kingdom;F;Service and sales workers;Accommodation and food service activities   ;Y65-84;1795;1;6.840255664444296e-06;63182165;2.84099159944899e-05;0;1;Old +26361;United Kingdom;F;Service and sales workers;Accommodation and food service activities   ;Y_GE85;80;1;3.0485819117300483e-07;63182165;1.2661801000329761e-06;0;1;Old +26362;United Kingdom;F;Service and sales workers;Information and communication   ;Y15-29;16475;1;6.278173374469068e-05;63182165;0.000260753964350541;1;0;Young +26363;United Kingdom;F;Service and sales workers;Information and communication   ;Y30-49;17495;1;6.66686756821465e-05;63182165;0.0002768977606259615;1;0;Young +26364;United Kingdom;F;Service and sales workers;Information and communication   ;Y50-64;5925;1;2.257855978375067e-05;63182165;9.37764636586923e-05;0;1;Old +26365;United Kingdom;F;Service and sales workers;Information and communication   ;Y65-84;555;1;2.114953701262721e-06;63182165;8.784124443978772e-06;0;1;Old +26366;United Kingdom;F;Service and sales workers;Information and communication   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +26367;United Kingdom;F;Service and sales workers;Financial and insurance activities   ;Y15-29;26040;1;9.923134122681308e-05;63182165;0.0004121416225607337;1;0;Young +26368;United Kingdom;F;Service and sales workers;Financial and insurance activities   ;Y30-49;26220;1;9.991727215695234e-05;63182165;0.0004149905277858079;1;0;Young +26369;United Kingdom;F;Service and sales workers;Financial and insurance activities   ;Y50-64;9170;1;3.494437016320568e-05;63182165;0.0001451358939662799;0;1;Old +26370;United Kingdom;F;Service and sales workers;Financial and insurance activities   ;Y65-84;785;1;2.99142100088511e-06;63182165;1.2424392231573577e-05;0;1;Old +26371;United Kingdom;F;Service and sales workers;Financial and insurance activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26372;United Kingdom;F;Service and sales workers;Real estate activities   ;Y15-29;5305;1;2.0215908802159885e-05;63182165;8.396356788343672e-05;1;0;Young +26373;United Kingdom;F;Service and sales workers;Real estate activities   ;Y30-49;11390;1;4.3404184968256565e-05;63182165;0.00018027239174219498;1;0;Young +26374;United Kingdom;F;Service and sales workers;Real estate activities   ;Y50-64;7950;1;3.0295282747817358e-05;63182165;0.000125826647440777;0;1;Old +26375;United Kingdom;F;Service and sales workers;Real estate activities   ;Y65-84;860;1;3.277225555109802e-06;63182165;1.3611436075354492e-05;0;1;Old +26376;United Kingdom;F;Service and sales workers;Real estate activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26377;United Kingdom;F;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;25255;1;9.623992022592797e-05;63182165;0.00039971723032916016;1;0;Young +26378;United Kingdom;F;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;25465;1;9.704017297775711e-05;63182165;0.0004030409530917467;1;0;Young +26379;United Kingdom;F;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;11985;1;4.567156776510579e-05;63182165;0.00018968960623619023;0;1;Old +26380;United Kingdom;F;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;2075;1;7.907259333549814e-06;63182165;3.284154634460532e-05;0;1;Old +26381;United Kingdom;F;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +26382;United Kingdom;F;Service and sales workers;Administrative and support service activities   ;Y15-29;36690;1;0.00013981558792671936;63182165;0.0005807018483776237;1;0;Young +26383;United Kingdom;F;Service and sales workers;Administrative and support service activities   ;Y30-49;35985;1;0.00013712902511700724;63182165;0.0005695436362460831;1;0;Young +26384;United Kingdom;F;Service and sales workers;Administrative and support service activities   ;Y50-64;15955;1;6.080015550206615e-05;63182165;0.00025252379370032665;0;1;Old +26385;United Kingdom;F;Service and sales workers;Administrative and support service activities   ;Y65-84;2070;1;7.8882056966015e-06;63182165;3.276241008835326e-05;0;1;Old +26386;United Kingdom;F;Service and sales workers;Administrative and support service activities   ;Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +26387;United Kingdom;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;12580;1;4.793895056195501e-05;63182165;0.0001991068207301855;1;0;Young +26388;United Kingdom;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;33510;1;0.0001276974748275924;63182165;0.0005303711894013129;1;0;Young +26389;United Kingdom;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;19775;1;7.535713413057713e-05;63182165;0.00031298389347690127;0;1;Old +26390;United Kingdom;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;1710;1;6.516343836322979e-06;63182165;2.7064599638204864e-05;0;1;Old +26391;United Kingdom;F;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +26392;United Kingdom;F;Service and sales workers;Education   ;Y15-29;97515;1;0.0003716030814029446;63182165;0.0015433944056839459;1;0;Young +26393;United Kingdom;F;Service and sales workers;Education   ;Y30-49;310695;1;0.0011839739463312092;63182165;0.004917447827246819;1;0;Young +26394;United Kingdom;F;Service and sales workers;Education   ;Y50-64;140770;1;0.0005364360946427986;63182165;0.0022280021585205255;0;1;Old +26395;United Kingdom;F;Service and sales workers;Education   ;Y65-84;7980;1;3.0409604569507232e-05;63182165;0.00012630146497828937;0;1;Old +26396;United Kingdom;F;Service and sales workers;Education   ;Y_GE85;220;1;8.383600257257633e-07;63182165;3.4819952750906844e-06;0;1;Old +26397;United Kingdom;F;Service and sales workers;Human health and social work activities   ;Y15-29;273675;1;0.0010429008183659013;63182165;0.004331522985956559;1;0;Young +26398;United Kingdom;F;Service and sales workers;Human health and social work activities   ;Y30-49;424460;1;0.0016175013478161705;63182165;0.006718035065749963;1;0;Young +26399;United Kingdom;F;Service and sales workers;Human health and social work activities   ;Y50-64;240225;1;0.0009154319871816886;63182165;0.003802101431630271;0;1;Old +26400;United Kingdom;F;Service and sales workers;Human health and social work activities   ;Y65-84;25030;1;9.538250656325388e-05;63182165;0.0003961560987978174;0;1;Old +26401;United Kingdom;F;Service and sales workers;Human health and social work activities   ;Y_GE85;1280;1;4.877731058768077e-06;63182165;2.0258881600527618e-05;0;1;Old +26402;United Kingdom;F;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;34430;1;0.00013120334402608197;63182165;0.0005449322605516921;1;0;Young +26403;United Kingdom;F;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;18910;1;7.206085493851903e-05;63182165;0.0002992933211452947;1;0;Young +26404;United Kingdom;F;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;8780;1;3.345818648123728e-05;63182165;0.00013896326597861913;0;1;Old +26405;United Kingdom;F;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;1435;1;5.4683938041657745e-06;63182165;2.2712105544341508e-05;0;1;Old +26406;United Kingdom;F;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26407;United Kingdom;F;Service and sales workers;Other service activities   ;Y15-29;125950;1;0.0004799611147279995;63182165;0.001993442294989417;1;0;Young +26408;United Kingdom;F;Service and sales workers;Other service activities   ;Y30-49;116740;1;0.00044486431546920735;63182165;0.0018476733109731203;1;0;Young +26409;United Kingdom;F;Service and sales workers;Other service activities   ;Y50-64;34930;1;0.00013310870772091323;63182165;0.0005528458861768982;0;1;Old +26410;United Kingdom;F;Service and sales workers;Other service activities   ;Y65-84;4750;1;1.8100955100897164e-05;63182165;7.517944343945796e-05;0;1;Old +26411;United Kingdom;F;Service and sales workers;Other service activities   ;Y_GE85;145;1;5.525554715010713e-07;63182165;2.294951431309769e-06;0;1;Old +26412;United Kingdom;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;6195;1;2.3607456178959563e-05;63182165;9.804982149630358e-05;1;0;Young +26413;United Kingdom;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;8090;1;3.082878458237011e-05;63182165;0.0001280424626158347;1;0;Young +26414;United Kingdom;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;3890;1;1.4823729545787361e-05;63182165;6.156800736410346e-05;0;1;Old +26415;United Kingdom;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;515;1;1.9625246056762186e-06;63182165;8.151034393962283e-06;0;1;Old +26416;United Kingdom;F;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26417;United Kingdom;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;185;1;7.049845670875737e-07;63182165;2.9280414813262574e-06;1;0;Young +26418;United Kingdom;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;225;1;8.574136626740762e-07;63182165;3.5611315313427453e-06;1;0;Young +26419;United Kingdom;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;0;1;Old +26420;United Kingdom;F;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26421;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;1410;1;5.37312561942421e-06;63182165;2.2316424263081204e-05;1;0;Young +26422;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;7900;1;3.0104746378334228e-05;63182165;0.00012503528487825639;1;0;Young +26423;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;10845;1;4.132733854089047e-05;63182165;0.0001716465398107203;0;1;Old +26424;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;6165;1;2.3493134357269685e-05;63182165;9.757500395879122e-05;0;1;Old +26425;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;305;1;1.162271853847081e-06;63182165;4.827311631375722e-06;0;1;Old +26426;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26427;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26428;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26429;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;1;0;Young +26430;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;385;1;1.4671300450200858e-06;63182165;6.093491731408698e-06;1;0;Young +26431;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;440;1;1.6767200514515266e-06;63182165;6.963990550181369e-06;0;1;Old +26432;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;235;1;8.955209365707018e-07;63182165;3.7194040438468672e-06;0;1;Old +26433;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26434;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;1;0;Young +26435;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26436;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26437;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;1;0;Young +26438;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26439;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;1;0;Young +26440;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;295;1;1.1241645799504554e-06;63182165;4.669039118871599e-06;1;0;Young +26441;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;275;1;1.0479500321572042e-06;63182165;4.352494093863355e-06;0;1;Old +26442;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +26443;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26444;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;310;1;1.1813254907953937e-06;63182165;4.906447887627783e-06;1;0;Young +26445;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;1065;1;4.058424669990627e-06;63182165;1.6856022581688993e-05;1;0;Young +26446;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;1175;1;4.4776046828535085e-06;63182165;1.8597020219234336e-05;0;1;Old +26447;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;515;1;1.9625246056762186e-06;63182165;8.151034393962283e-06;0;1;Old +26448;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +26449;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;1;0;Young +26450;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;1;0;Young +26451;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +26452;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +26453;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;1;0;Young +26454;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;365;1;1.3909154972268347e-06;63182165;5.776946706400453e-06;1;0;Young +26455;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;400;1;1.5242909558650242e-06;63182165;6.33090050016488e-06;0;1;Old +26456;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;210;1;8.002527518291377e-07;63182165;3.323722762586562e-06;0;1;Old +26457;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26458;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;1;0;Young +26459;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;1;0;Young +26460;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +26461;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26462;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;1;0;Young +26463;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;105;1;4.0012637591456885e-07;63182165;1.661861381293281e-06;1;0;Young +26464;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;80;1;3.0485819117300483e-07;63182165;1.2661801000329761e-06;0;1;Old +26465;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +26466;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;1;0;Young +26467;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;185;1;7.049845670875737e-07;63182165;2.9280414813262574e-06;1;0;Young +26468;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;150;1;5.716091084493841e-07;63182165;2.37408768756183e-06;0;1;Old +26469;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +26470;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;125;1;4.7634092370782007e-07;63182165;1.9784064063015252e-06;1;0;Young +26471;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;985;1;3.753566478817622e-06;63182165;1.5589842481656018e-05;1;0;Young +26472;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;735;1;2.800884631401982e-06;63182165;1.1633029669052968e-05;0;1;Old +26473;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;110;1;4.1918001286288164e-07;63182165;1.7409976375453422e-06;0;1;Old +26474;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26475;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;1180;1;4.4966583198018215e-06;63182165;1.8676156475486396e-05;1;0;Young +26476;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;6105;1;2.3264490713889932e-05;63182165;9.662536888376649e-05;1;0;Young +26477;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;3665;1;1.3966315883113284e-05;63182165;5.800687583276071e-05;0;1;Old +26478;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;340;1;1.2956473124852705e-06;63182165;5.381265425140148e-06;0;1;Old +26479;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26480;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;1;0;Young +26481;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;250;1;9.526818474156401e-07;63182165;3.9568128126030505e-06;1;0;Young +26482;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;190;1;7.240382040358865e-07;63182165;3.0071777375783183e-06;0;1;Old +26483;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +26484;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26485;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;730;1;2.7818309944536693e-06;63182165;1.1553893412800906e-05;1;0;Young +26486;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;1395;1;5.315964708579272e-06;63182165;2.207901549432502e-05;1;0;Young +26487;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;765;1;2.9152064530918587e-06;63182165;1.2107847206565333e-05;0;1;Old +26488;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;185;1;7.049845670875737e-07;63182165;2.9280414813262574e-06;0;1;Old +26489;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26490;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;2045;1;7.792937511859936e-06;63182165;3.236672880709295e-05;1;0;Young +26491;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;1575;1;6.001895638718533e-06;63182165;2.4927920719399218e-05;1;0;Young +26492;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;975;1;3.7154592049209964e-06;63182165;1.5431569969151895e-05;0;1;Old +26493;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;240;1;9.145745735190145e-07;63182165;3.798540300098928e-06;0;1;Old +26494;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26495;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;255;1;9.71735484363953e-07;63182165;4.035949068855111e-06;1;0;Young +26496;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;485;1;1.8482027839863419e-06;63182165;7.676216856449917e-06;1;0;Young +26497;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;270;1;1.0288963952088914e-06;63182165;4.273357837611294e-06;0;1;Old +26498;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +26499;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26500;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;1;0;Young +26501;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;305;1;1.162271853847081e-06;63182165;4.827311631375722e-06;1;0;Young +26502;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;290;1;1.1051109430021426e-06;63182165;4.589902862619538e-06;0;1;Old +26503;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;105;1;4.0012637591456885e-07;63182165;1.661861381293281e-06;0;1;Old +26504;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26505;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;1;0;Young +26506;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;160;1;6.097163823460097e-07;63182165;2.5323602000659522e-06;1;0;Young +26507;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;105;1;4.0012637591456885e-07;63182165;1.661861381293281e-06;0;1;Old +26508;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26509;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26510;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26511;United Kingdom;F;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26512;United Kingdom;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;230;1;8.76467299622389e-07;63182165;3.6402677875948063e-06;1;0;Young +26513;United Kingdom;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;440;1;1.6767200514515266e-06;63182165;6.963990550181369e-06;1;0;Young +26514;United Kingdom;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;495;1;1.8863100578829675e-06;63182165;7.834489368954039e-06;0;1;Old +26515;United Kingdom;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;235;1;8.955209365707018e-07;63182165;3.7194040438468672e-06;0;1;Old +26516;United Kingdom;F;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26517;United Kingdom;F;Craft and related trades workers;Mining and quarrying   ;Y15-29;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;1;0;Young +26518;United Kingdom;F;Craft and related trades workers;Mining and quarrying   ;Y30-49;125;1;4.7634092370782007e-07;63182165;1.9784064063015252e-06;1;0;Young +26519;United Kingdom;F;Craft and related trades workers;Mining and quarrying   ;Y50-64;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26520;United Kingdom;F;Craft and related trades workers;Mining and quarrying   ;Y65-84;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26521;United Kingdom;F;Craft and related trades workers;Manufacturing   ;Y15-29;8915;1;3.397263467884173e-05;63182165;0.00014109994489742476;1;0;Young +26522;United Kingdom;F;Craft and related trades workers;Manufacturing   ;Y30-49;25295;1;9.639234932151447e-05;63182165;0.00040035032037917664;1;0;Young +26523;United Kingdom;F;Craft and related trades workers;Manufacturing   ;Y50-64;16670;1;6.352482558567488e-05;63182165;0.00026384027834437136;0;1;Old +26524;United Kingdom;F;Craft and related trades workers;Manufacturing   ;Y65-84;2630;1;1.0022213034812535e-05;63182165;4.162567078858409e-05;0;1;Old +26525;United Kingdom;F;Craft and related trades workers;Manufacturing   ;Y_GE85;275;1;1.0479500321572042e-06;63182165;4.352494093863355e-06;0;1;Old +26526;United Kingdom;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;290;1;1.1051109430021426e-06;63182165;4.589902862619538e-06;1;0;Young +26527;United Kingdom;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;380;1;1.448076408071773e-06;63182165;6.014355475156637e-06;1;0;Young +26528;United Kingdom;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;135;1;5.144481976044457e-07;63182165;2.136678918805647e-06;0;1;Old +26529;United Kingdom;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26530;United Kingdom;F;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26531;United Kingdom;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;120;1;4.572872867595073e-07;63182165;1.899270150049464e-06;1;0;Young +26532;United Kingdom;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;215;1;8.193063887774505e-07;63182165;3.402859018838623e-06;1;0;Young +26533;United Kingdom;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;0;1;Old +26534;United Kingdom;F;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26535;United Kingdom;F;Craft and related trades workers;Construction   ;Y15-29;8140;1;3.1019320951853245e-05;63182165;0.00012883382517835532;1;0;Young +26536;United Kingdom;F;Craft and related trades workers;Construction   ;Y30-49;11320;1;4.313743405098019e-05;63182165;0.00017916448415466611;1;0;Young +26537;United Kingdom;F;Craft and related trades workers;Construction   ;Y50-64;4725;1;1.8005686916155597e-05;63182165;7.478376215819764e-05;0;1;Old +26538;United Kingdom;F;Craft and related trades workers;Construction   ;Y65-84;920;1;3.505869198489556e-06;63182165;1.4561071150379225e-05;0;1;Old +26539;United Kingdom;F;Craft and related trades workers;Construction   ;Y_GE85;185;1;7.049845670875737e-07;63182165;2.9280414813262574e-06;0;1;Old +26540;United Kingdom;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;11620;1;4.428065226787895e-05;63182165;0.00018391265952978977;1;0;Young +26541;United Kingdom;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;23220;1;8.848508998796466e-05;63182165;0.0003675087740345713;1;0;Young +26542;United Kingdom;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;12365;1;4.711964417317756e-05;63182165;0.00019570396171134688;0;1;Old +26543;United Kingdom;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2045;1;7.792937511859936e-06;63182165;3.236672880709295e-05;0;1;Old +26544;United Kingdom;F;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;140;1;5.335018345527585e-07;63182165;2.215815175057708e-06;0;1;Old +26545;United Kingdom;F;Craft and related trades workers;Transportation and storage   ;Y15-29;530;1;2.0196855165211572e-06;63182165;8.388443162718467e-06;1;0;Young +26546;United Kingdom;F;Craft and related trades workers;Transportation and storage   ;Y30-49;1055;1;4.0203173960940015e-06;63182165;1.6697750069184873e-05;1;0;Young +26547;United Kingdom;F;Craft and related trades workers;Transportation and storage   ;Y50-64;530;1;2.0196855165211572e-06;63182165;8.388443162718467e-06;0;1;Old +26548;United Kingdom;F;Craft and related trades workers;Transportation and storage   ;Y65-84;110;1;4.1918001286288164e-07;63182165;1.7409976375453422e-06;0;1;Old +26549;United Kingdom;F;Craft and related trades workers;Transportation and storage   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26550;United Kingdom;F;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;28210;1;0.00010750061966238084;63182165;0.0004464867577741282;1;0;Young +26551;United Kingdom;F;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;60530;1;0.00023066332889627478;63182165;0.0009580235181874505;1;0;Young +26552;United Kingdom;F;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;31505;1;0.00012005696641131898;63182165;0.0004986375506442364;0;1;Old +26553;United Kingdom;F;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;3335;1;1.270877584452464e-05;63182165;5.278388292012469e-05;0;1;Old +26554;United Kingdom;F;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;150;1;5.716091084493841e-07;63182165;2.37408768756183e-06;0;1;Old +26555;United Kingdom;F;Craft and related trades workers;Information and communication   ;Y15-29;1455;1;5.544608351959026e-06;63182165;2.3028650569349752e-05;1;0;Young +26556;United Kingdom;F;Craft and related trades workers;Information and communication   ;Y30-49;3130;1;1.1927576729643815e-05;63182165;4.953929641379019e-05;1;0;Young +26557;United Kingdom;F;Craft and related trades workers;Information and communication   ;Y50-64;1050;1;4.0012637591456885e-06;63182165;1.661861381293281e-05;0;1;Old +26558;United Kingdom;F;Craft and related trades workers;Information and communication   ;Y65-84;145;1;5.525554715010713e-07;63182165;2.294951431309769e-06;0;1;Old +26559;United Kingdom;F;Craft and related trades workers;Information and communication   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26560;United Kingdom;F;Craft and related trades workers;Financial and insurance activities   ;Y15-29;305;1;1.162271853847081e-06;63182165;4.827311631375722e-06;1;0;Young +26561;United Kingdom;F;Craft and related trades workers;Financial and insurance activities   ;Y30-49;735;1;2.800884631401982e-06;63182165;1.1633029669052968e-05;1;0;Young +26562;United Kingdom;F;Craft and related trades workers;Financial and insurance activities   ;Y50-64;360;1;1.3718618602785219e-06;63182165;5.697810450148392e-06;0;1;Old +26563;United Kingdom;F;Craft and related trades workers;Financial and insurance activities   ;Y65-84;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +26564;United Kingdom;F;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26565;United Kingdom;F;Craft and related trades workers;Real estate activities   ;Y15-29;350;1;1.3337545863818963e-06;63182165;5.53953793764427e-06;1;0;Young +26566;United Kingdom;F;Craft and related trades workers;Real estate activities   ;Y30-49;815;1;3.105742822574987e-06;63182165;1.2899209769085944e-05;1;0;Young +26567;United Kingdom;F;Craft and related trades workers;Real estate activities   ;Y50-64;510;1;1.943470968727906e-06;63182165;8.071898137710223e-06;0;1;Old +26568;United Kingdom;F;Craft and related trades workers;Real estate activities   ;Y65-84;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;0;1;Old +26569;United Kingdom;F;Craft and related trades workers;Real estate activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26570;United Kingdom;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;1220;1;4.649087415388324e-06;63182165;1.9309246525502887e-05;1;0;Young +26571;United Kingdom;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;2665;1;1.0155588493450724e-05;63182165;4.217962458234852e-05;1;0;Young +26572;United Kingdom;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;1275;1;4.858677421819764e-06;63182165;2.0179745344275558e-05;0;1;Old +26573;United Kingdom;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;240;1;9.145745735190145e-07;63182165;3.798540300098928e-06;0;1;Old +26574;United Kingdom;F;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26575;United Kingdom;F;Craft and related trades workers;Administrative and support service activities   ;Y15-29;1090;1;4.153692854732191e-06;63182165;1.72517038629493e-05;1;0;Young +26576;United Kingdom;F;Craft and related trades workers;Administrative and support service activities   ;Y30-49;2040;1;7.773883874911624e-06;63182165;3.228759255084089e-05;1;0;Young +26577;United Kingdom;F;Craft and related trades workers;Administrative and support service activities   ;Y50-64;1115;1;4.248961039473755e-06;63182165;1.7647385144209604e-05;0;1;Old +26578;United Kingdom;F;Craft and related trades workers;Administrative and support service activities   ;Y65-84;210;1;8.002527518291377e-07;63182165;3.323722762586562e-06;0;1;Old +26579;United Kingdom;F;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +26580;United Kingdom;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;995;1;3.791673752714248e-06;63182165;1.574811499416014e-05;1;0;Young +26581;United Kingdom;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;2550;1;9.717354843639529e-06;63182165;4.0359490688551116e-05;1;0;Young +26582;United Kingdom;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;1625;1;6.192432008201661e-06;63182165;2.5719283281919825e-05;0;1;Old +26583;United Kingdom;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;215;1;8.193063887774505e-07;63182165;3.402859018838623e-06;0;1;Old +26584;United Kingdom;F;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26585;United Kingdom;F;Craft and related trades workers;Education   ;Y15-29;1420;1;5.411232893320836e-06;63182165;2.2474696775585324e-05;1;0;Young +26586;United Kingdom;F;Craft and related trades workers;Education   ;Y30-49;11030;1;4.203232310797804e-05;63182165;0.00017457458129204657;1;0;Young +26587;United Kingdom;F;Craft and related trades workers;Education   ;Y50-64;7445;1;2.8370865416037763e-05;63182165;0.00011783388555931884;0;1;Old +26588;United Kingdom;F;Craft and related trades workers;Education   ;Y65-84;810;1;3.086689185626674e-06;63182165;1.2820073512833883e-05;0;1;Old +26589;United Kingdom;F;Craft and related trades workers;Education   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26590;United Kingdom;F;Craft and related trades workers;Human health and social work activities   ;Y15-29;2940;1;1.1203538525607928e-05;63182165;4.653211867621187e-05;1;0;Young +26591;United Kingdom;F;Craft and related trades workers;Human health and social work activities   ;Y30-49;13635;1;5.1959267958049014e-05;63182165;0.00021580457079937036;1;0;Young +26592;United Kingdom;F;Craft and related trades workers;Human health and social work activities   ;Y50-64;12360;1;4.710059053622925e-05;63182165;0.0001956248254550948;0;1;Old +26593;United Kingdom;F;Craft and related trades workers;Human health and social work activities   ;Y65-84;1900;1;7.240382040358865e-06;63182165;3.007177737578318e-05;0;1;Old +26594;United Kingdom;F;Craft and related trades workers;Human health and social work activities   ;Y_GE85;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;0;1;Old +26595;United Kingdom;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;1860;1;7.087952944772363e-06;63182165;2.9438687325766694e-05;1;0;Young +26596;United Kingdom;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;3380;1;1.2880258577059455e-05;63182165;5.349610922639324e-05;1;0;Young +26597;United Kingdom;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;2025;1;7.716722964066685e-06;63182165;3.2050183782084704e-05;0;1;Old +26598;United Kingdom;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;300;1;1.1432182168987682e-06;63182165;4.74817537512366e-06;0;1;Old +26599;United Kingdom;F;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26600;United Kingdom;F;Craft and related trades workers;Other service activities   ;Y15-29;1050;1;4.0012637591456885e-06;63182165;1.661861381293281e-05;1;0;Young +26601;United Kingdom;F;Craft and related trades workers;Other service activities   ;Y30-49;2655;1;1.0117481219554098e-05;63182165;4.202135206984439e-05;1;0;Young +26602;United Kingdom;F;Craft and related trades workers;Other service activities   ;Y50-64;2155;1;8.212117524722818e-06;63182165;3.4107726444638294e-05;0;1;Old +26603;United Kingdom;F;Craft and related trades workers;Other service activities   ;Y65-84;405;1;1.543344592813337e-06;63182165;6.410036756416941e-06;0;1;Old +26604;United Kingdom;F;Craft and related trades workers;Other service activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26605;United Kingdom;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;1;0;Young +26606;United Kingdom;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;155;1;5.906627453976969e-07;63182165;2.4532239438138913e-06;1;0;Young +26607;United Kingdom;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;115;1;4.382336498111945e-07;63182165;1.8201338937974031e-06;0;1;Old +26608;United Kingdom;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +26609;United Kingdom;F;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26610;United Kingdom;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;1;0;Young +26611;United Kingdom;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;1;0;Young +26612;United Kingdom;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26613;United Kingdom;F;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26614;United Kingdom;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;680;1;2.591294624970541e-06;63182165;1.0762530850280297e-05;1;0;Young +26615;United Kingdom;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;950;1;3.6201910201794326e-06;63182165;1.503588868789159e-05;1;0;Young +26616;United Kingdom;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;625;1;2.3817046185391005e-06;63182165;9.892032031507625e-06;0;1;Old +26617;United Kingdom;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;120;1;4.572872867595073e-07;63182165;1.899270150049464e-06;0;1;Old +26618;United Kingdom;F;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26619;United Kingdom;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;125;1;4.7634092370782007e-07;63182165;1.9784064063015252e-06;1;0;Young +26620;United Kingdom;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;290;1;1.1051109430021426e-06;63182165;4.589902862619538e-06;1;0;Young +26621;United Kingdom;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;135;1;5.144481976044457e-07;63182165;2.136678918805647e-06;0;1;Old +26622;United Kingdom;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26623;United Kingdom;F;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26624;United Kingdom;F;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;31095;1;0.00011849456818155733;63182165;0.0004921483776315674;1;0;Young +26625;United Kingdom;F;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;70280;1;0.00026781792094548475;63182165;0.0011123392178789696;1;0;Young +26626;United Kingdom;F;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;48645;1;0.00018537283387013527;63182165;0.0007699166370763015;0;1;Old +26627;United Kingdom;F;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;4935;1;1.8805939667984737e-05;63182165;7.810748492078421e-05;0;1;Old +26628;United Kingdom;F;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;415;1;1.5814518667099626e-06;63182165;6.568309268921063e-06;0;1;Old +26629;United Kingdom;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;190;1;7.240382040358865e-07;63182165;3.0071777375783183e-06;1;0;Young +26630;United Kingdom;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;345;1;1.3147009494335833e-06;63182165;5.460401681392209e-06;1;0;Young +26631;United Kingdom;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;165;1;6.287700192943225e-07;63182165;2.611496456318013e-06;0;1;Old +26632;United Kingdom;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26633;United Kingdom;F;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26634;United Kingdom;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;635;1;2.419811892435726e-06;63182165;1.0050304544011747e-05;1;0;Young +26635;United Kingdom;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1300;1;4.9539456065613285e-06;63182165;2.0575426625535862e-05;1;0;Young +26636;United Kingdom;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;520;1;1.9815782426245316e-06;63182165;8.230170650214345e-06;0;1;Old +26637;United Kingdom;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +26638;United Kingdom;F;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26639;United Kingdom;F;Plant and machine operators, and assemblers;Construction   ;Y15-29;1595;1;6.078110186511784e-06;63182165;2.524446574440746e-05;1;0;Young +26640;United Kingdom;F;Plant and machine operators, and assemblers;Construction   ;Y30-49;2725;1;1.0384232136830477e-05;63182165;4.3129259657373246e-05;1;0;Young +26641;United Kingdom;F;Plant and machine operators, and assemblers;Construction   ;Y50-64;1510;1;5.754198358390466e-06;63182165;2.3899149388122423e-05;0;1;Old +26642;United Kingdom;F;Plant and machine operators, and assemblers;Construction   ;Y65-84;270;1;1.0288963952088914e-06;63182165;4.273357837611294e-06;0;1;Old +26643;United Kingdom;F;Plant and machine operators, and assemblers;Construction   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +26644;United Kingdom;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;6970;1;2.6560769905948046e-05;63182165;0.00011031594121537305;1;0;Young +26645;United Kingdom;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;15405;1;5.8704255437751747e-05;63182165;0.00024381880551259996;1;0;Young +26646;United Kingdom;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;9460;1;3.6049481106207824e-05;63182165;0.00014972579682889943;0;1;Old +26647;United Kingdom;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;1365;1;5.201642886889395e-06;63182165;2.1604197956812653e-05;0;1;Old +26648;United Kingdom;F;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;115;1;4.382336498111945e-07;63182165;1.8201338937974031e-06;0;1;Old +26649;United Kingdom;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;4500;1;1.7148273253481524e-05;63182165;7.12226306268549e-05;1;0;Young +26650;United Kingdom;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;18900;1;7.202274766462239e-05;63182165;0.00029913504863279057;1;0;Young +26651;United Kingdom;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;9520;1;3.627812474958757e-05;63182165;0.00015067543190392415;0;1;Old +26652;United Kingdom;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;1160;1;4.42044377200857e-06;63182165;1.8359611450478152e-05;0;1;Old +26653;United Kingdom;F;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;0;1;Old +26654;United Kingdom;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;2525;1;9.622086658897965e-06;63182165;3.996380940729081e-05;1;0;Young +26655;United Kingdom;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;3620;1;1.3794833150578469e-05;63182165;5.7294649526492166e-05;1;0;Young +26656;United Kingdom;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;1810;1;6.8974165752892345e-06;63182165;2.8647324763246083e-05;0;1;Old +26657;United Kingdom;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;275;1;1.0479500321572042e-06;63182165;4.352494093863355e-06;0;1;Old +26658;United Kingdom;F;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +26659;United Kingdom;F;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;650;1;2.4769728032806642e-06;63182165;1.0287713312767931e-05;1;0;Young +26660;United Kingdom;F;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;1085;1;4.134639217783878e-06;63182165;1.7172567606697237e-05;1;0;Young +26661;United Kingdom;F;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;470;1;1.7910418731414035e-06;63182165;7.4388080876937344e-06;0;1;Old +26662;United Kingdom;F;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +26663;United Kingdom;F;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26664;United Kingdom;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;450;1;1.7148273253481523e-06;63182165;7.122263062685491e-06;1;0;Young +26665;United Kingdom;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;890;1;3.3915473767996787e-06;63182165;1.408625361286686e-05;1;0;Young +26666;United Kingdom;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;355;1;1.352808223330209e-06;63182165;5.618674193896331e-06;0;1;Old +26667;United Kingdom;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +26668;United Kingdom;F;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26669;United Kingdom;F;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;250;1;9.526818474156401e-07;63182165;3.9568128126030505e-06;1;0;Young +26670;United Kingdom;F;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;575;1;2.191168249055972e-06;63182165;9.100669468987016e-06;1;0;Young +26671;United Kingdom;F;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;280;1;1.067003669105517e-06;63182165;4.431630350115416e-06;0;1;Old +26672;United Kingdom;F;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26673;United Kingdom;F;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26674;United Kingdom;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;1500;1;5.716091084493841e-06;63182165;2.3740876875618303e-05;1;0;Young +26675;United Kingdom;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;2665;1;1.0155588493450724e-05;63182165;4.217962458234852e-05;1;0;Young +26676;United Kingdom;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;1520;1;5.792305632287092e-06;63182165;2.4057421900626547e-05;0;1;Old +26677;United Kingdom;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;230;1;8.76467299622389e-07;63182165;3.6402677875948063e-06;0;1;Old +26678;United Kingdom;F;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26679;United Kingdom;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;2330;1;8.878994817913767e-06;63182165;3.687749541346043e-05;1;0;Young +26680;United Kingdom;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;4120;1;1.570019684540975e-05;63182165;6.520827515169826e-05;1;0;Young +26681;United Kingdom;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;2165;1;8.250224798619444e-06;63182165;3.4265998957142414e-05;0;1;Old +26682;United Kingdom;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;245;1;9.336282104673273e-07;63182165;3.8776765563509895e-06;0;1;Old +26683;United Kingdom;F;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26684;United Kingdom;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;760;1;2.896152816143546e-06;63182165;1.2028710950313273e-05;1;0;Young +26685;United Kingdom;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;1730;1;6.59255838411623e-06;63182165;2.7381144663213108e-05;1;0;Young +26686;United Kingdom;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;1125;1;4.287068313370381e-06;63182165;1.7805657656713725e-05;0;1;Old +26687;United Kingdom;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;170;1;6.478236562426352e-07;63182165;2.690632712570074e-06;0;1;Old +26688;United Kingdom;F;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26689;United Kingdom;F;Plant and machine operators, and assemblers;Education   ;Y15-29;1145;1;4.363282861163632e-06;63182165;1.8122202681721972e-05;1;0;Young +26690;United Kingdom;F;Plant and machine operators, and assemblers;Education   ;Y30-49;6795;1;2.58938926127571e-05;63182165;0.0001075461722465509;1;0;Young +26691;United Kingdom;F;Plant and machine operators, and assemblers;Education   ;Y50-64;3150;1;1.2003791277437065e-05;63182165;4.9855841438798435e-05;0;1;Old +26692;United Kingdom;F;Plant and machine operators, and assemblers;Education   ;Y65-84;420;1;1.6005055036582754e-06;63182165;6.647445525173124e-06;0;1;Old +26693;United Kingdom;F;Plant and machine operators, and assemblers;Education   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26694;United Kingdom;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;925;1;3.5249228354378684e-06;63182165;1.4640207406631285e-05;1;0;Young +26695;United Kingdom;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;3215;1;1.2251488557765133e-05;63182165;5.0884612770075223e-05;1;0;Young +26696;United Kingdom;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;2600;1;9.907891213122657e-06;63182165;4.1150853251071723e-05;0;1;Old +26697;United Kingdom;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;555;1;2.114953701262721e-06;63182165;8.784124443978772e-06;0;1;Old +26698;United Kingdom;F;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +26699;United Kingdom;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;460;1;1.752934599244778e-06;63182165;7.2805355751896125e-06;1;0;Young +26700;United Kingdom;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;690;1;2.6294018988671666e-06;63182165;1.0920803362784418e-05;1;0;Young +26701;United Kingdom;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;410;1;1.5623982297616498e-06;63182165;6.489173012669002e-06;0;1;Old +26702;United Kingdom;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +26703;United Kingdom;F;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26704;United Kingdom;F;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;810;1;3.086689185626674e-06;63182165;1.2820073512833883e-05;1;0;Young +26705;United Kingdom;F;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;1795;1;6.840255664444296e-06;63182165;2.84099159944899e-05;1;0;Young +26706;United Kingdom;F;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;1310;1;4.9920528804579545e-06;63182165;2.0733699138039982e-05;0;1;Old +26707;United Kingdom;F;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;250;1;9.526818474156401e-07;63182165;3.9568128126030505e-06;0;1;Old +26708;United Kingdom;F;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26709;United Kingdom;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;1;0;Young +26710;United Kingdom;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;1;0;Young +26711;United Kingdom;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26712;United Kingdom;F;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26713;United Kingdom;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;1;0;Young +26714;United Kingdom;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;1;0;Young +26715;United Kingdom;F;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26716;United Kingdom;F;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;4860;1;1.8520135113760043e-05;63182165;7.692044107700329e-05;1;0;Young +26717;United Kingdom;F;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;7045;1;2.684657446017274e-05;63182165;0.00011150298505915396;1;0;Young +26718;United Kingdom;F;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;6165;1;2.3493134357269685e-05;63182165;9.757500395879122e-05;0;1;Old +26719;United Kingdom;F;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2650;1;1.0098427582605785e-05;63182165;4.194221581359233e-05;0;1;Old +26720;United Kingdom;F;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;135;1;5.144481976044457e-07;63182165;2.136678918805647e-06;0;1;Old +26721;United Kingdom;F;Elementary occupations;Mining and quarrying   ;Y15-29;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;1;0;Young +26722;United Kingdom;F;Elementary occupations;Mining and quarrying   ;Y30-49;165;1;6.287700192943225e-07;63182165;2.611496456318013e-06;1;0;Young +26723;United Kingdom;F;Elementary occupations;Mining and quarrying   ;Y50-64;110;1;4.1918001286288164e-07;63182165;1.7409976375453422e-06;0;1;Old +26724;United Kingdom;F;Elementary occupations;Mining and quarrying   ;Y65-84;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +26725;United Kingdom;F;Elementary occupations;Mining and quarrying   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26726;United Kingdom;F;Elementary occupations;Manufacturing   ;Y15-29;20160;1;7.682426417559722e-05;63182165;0.00031907738520831;1;0;Young +26727;United Kingdom;F;Elementary occupations;Manufacturing   ;Y30-49;34555;1;0.00013167968494978978;63182165;0.0005469106669579936;1;0;Young +26728;United Kingdom;F;Elementary occupations;Manufacturing   ;Y50-64;24330;1;9.27149973904901e-05;63182165;0.00038507702292252884;0;1;Old +26729;United Kingdom;F;Elementary occupations;Manufacturing   ;Y65-84;3380;1;1.2880258577059455e-05;63182165;5.349610922639324e-05;0;1;Old +26730;United Kingdom;F;Elementary occupations;Manufacturing   ;Y_GE85;295;1;1.1241645799504554e-06;63182165;4.669039118871599e-06;0;1;Old +26731;United Kingdom;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;375;1;1.4290227711234603e-06;63182165;5.935219218904576e-06;1;0;Young +26732;United Kingdom;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;660;1;2.51508007717729e-06;63182165;1.0445985825272053e-05;1;0;Young +26733;United Kingdom;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;400;1;1.5242909558650242e-06;63182165;6.33090050016488e-06;0;1;Old +26734;United Kingdom;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26735;United Kingdom;F;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26736;United Kingdom;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1390;1;5.296911071630959e-06;63182165;2.199987923807296e-05;1;0;Young +26737;United Kingdom;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2050;1;7.811991148808249e-06;63182165;3.244586506334501e-05;1;0;Young +26738;United Kingdom;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1070;1;4.07747830693894e-06;63182165;1.6935158837941057e-05;0;1;Old +26739;United Kingdom;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;145;1;5.525554715010713e-07;63182165;2.294951431309769e-06;0;1;Old +26740;United Kingdom;F;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26741;United Kingdom;F;Elementary occupations;Construction   ;Y15-29;4700;1;1.7910418731414034e-05;63182165;7.438808087693734e-05;1;0;Young +26742;United Kingdom;F;Elementary occupations;Construction   ;Y30-49;8520;1;3.246739735992501e-05;63182165;0.00013484818065351195;1;0;Young +26743;United Kingdom;F;Elementary occupations;Construction   ;Y50-64;5920;1;2.255950614680236e-05;63182165;9.369732740244024e-05;0;1;Old +26744;United Kingdom;F;Elementary occupations;Construction   ;Y65-84;1210;1;4.610980141491699e-06;63182165;1.9150974012998763e-05;0;1;Old +26745;United Kingdom;F;Elementary occupations;Construction   ;Y_GE85;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +26746;United Kingdom;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;62075;1;0.00023655090271330344;63182165;0.0009824766213693374;1;0;Young +26747;United Kingdom;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;74760;1;0.00028488997965117304;63182165;0.001183245303480816;1;0;Young +26748;United Kingdom;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;47465;1;0.00018087617555033345;63182165;0.0007512404806008151;0;1;Old +26749;United Kingdom;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;6745;1;2.570335624327397e-05;63182165;0.0001067548096840303;0;1;Old +26750;United Kingdom;F;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;330;1;1.257540038588645e-06;63182165;5.222992912636026e-06;0;1;Old +26751;United Kingdom;F;Elementary occupations;Transportation and storage   ;Y15-29;15355;1;5.851371906826862e-05;63182165;0.00024302744295007936;1;0;Young +26752;United Kingdom;F;Elementary occupations;Transportation and storage   ;Y30-49;31445;1;0.00011982832276793921;63182165;0.0004976879155692116;1;0;Young +26753;United Kingdom;F;Elementary occupations;Transportation and storage   ;Y50-64;15520;1;5.914248908756294e-05;63182165;0.00024563893940639735;0;1;Old +26754;United Kingdom;F;Elementary occupations;Transportation and storage   ;Y65-84;1520;1;5.792305632287092e-06;63182165;2.4057421900626547e-05;0;1;Old +26755;United Kingdom;F;Elementary occupations;Transportation and storage   ;Y_GE85;130;1;4.953945606561329e-07;63182165;2.057542662553586e-06;0;1;Old +26756;United Kingdom;F;Elementary occupations;Accommodation and food service activities   ;Y15-29;296570;1;0.0011301474219522255;63182165;0.004693887903334746;1;0;Young +26757;United Kingdom;F;Elementary occupations;Accommodation and food service activities   ;Y30-49;161850;1;0.0006167662280168855;63182165;0.002561640614879215;1;0;Young +26758;United Kingdom;F;Elementary occupations;Accommodation and food service activities   ;Y50-64;73775;1;0.0002811364131723554;63182165;0.0011676554609991602;0;1;Old +26759;United Kingdom;F;Elementary occupations;Accommodation and food service activities   ;Y65-84;10840;1;4.130828490394216e-05;63182165;0.00017156740355446826;0;1;Old +26760;United Kingdom;F;Elementary occupations;Accommodation and food service activities   ;Y_GE85;515;1;1.9625246056762186e-06;63182165;8.151034393962283e-06;0;1;Old +26761;United Kingdom;F;Elementary occupations;Information and communication   ;Y15-29;6925;1;2.638928717341323e-05;63182165;0.00010960371490910449;1;0;Young +26762;United Kingdom;F;Elementary occupations;Information and communication   ;Y30-49;3915;1;1.4918997730528924e-05;63182165;6.196368864536377e-05;1;0;Young +26763;United Kingdom;F;Elementary occupations;Information and communication   ;Y50-64;2345;1;8.936155728758704e-06;63182165;3.711490418221661e-05;0;1;Old +26764;United Kingdom;F;Elementary occupations;Information and communication   ;Y65-84;520;1;1.9815782426245316e-06;63182165;8.230170650214345e-06;0;1;Old +26765;United Kingdom;F;Elementary occupations;Information and communication   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26766;United Kingdom;F;Elementary occupations;Financial and insurance activities   ;Y15-29;2935;1;1.1184484888659615e-05;63182165;4.645298241995981e-05;1;0;Young +26767;United Kingdom;F;Elementary occupations;Financial and insurance activities   ;Y30-49;4610;1;1.7567453266344403e-05;63182165;7.296362826440025e-05;1;0;Young +26768;United Kingdom;F;Elementary occupations;Financial and insurance activities   ;Y50-64;2810;1;1.0708143964951795e-05;63182165;4.447457601365829e-05;0;1;Old +26769;United Kingdom;F;Elementary occupations;Financial and insurance activities   ;Y65-84;595;1;2.2673827968492233e-06;63182165;9.41721449399526e-06;0;1;Old +26770;United Kingdom;F;Elementary occupations;Financial and insurance activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26771;United Kingdom;F;Elementary occupations;Real estate activities   ;Y15-29;2065;1;7.869152059653188e-06;63182165;3.268327383210119e-05;1;0;Young +26772;United Kingdom;F;Elementary occupations;Real estate activities   ;Y30-49;4300;1;1.638612777554901e-05;63182165;6.805718037677247e-05;1;0;Young +26773;United Kingdom;F;Elementary occupations;Real estate activities   ;Y50-64;4265;1;1.625275231691082e-05;63182165;6.750322658300803e-05;0;1;Old +26774;United Kingdom;F;Elementary occupations;Real estate activities   ;Y65-84;950;1;3.6201910201794326e-06;63182165;1.503588868789159e-05;0;1;Old +26775;United Kingdom;F;Elementary occupations;Real estate activities   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +26776;United Kingdom;F;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;4515;1;1.720543416432646e-05;63182165;7.146003939561109e-05;1;0;Young +26777;United Kingdom;F;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;6390;1;2.435054801994376e-05;63182165;0.00010113613549013397;1;0;Young +26778;United Kingdom;F;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;5150;1;1.9625246056762187e-05;63182165;8.151034393962283e-05;0;1;Old +26779;United Kingdom;F;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;1300;1;4.9539456065613285e-06;63182165;2.0575426625535862e-05;0;1;Old +26780;United Kingdom;F;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26781;United Kingdom;F;Elementary occupations;Administrative and support service activities   ;Y15-29;62685;1;0.0002388754464209976;63182165;0.0009921312446320887;1;0;Young +26782;United Kingdom;F;Elementary occupations;Administrative and support service activities   ;Y30-49;121975;1;0.0004648134733540908;63182165;0.0019305289712690282;1;0;Young +26783;United Kingdom;F;Elementary occupations;Administrative and support service activities   ;Y50-64;69480;1;0.0002647693390337547;63182165;0.0010996774168786398;0;1;Old +26784;United Kingdom;F;Elementary occupations;Administrative and support service activities   ;Y65-84;9410;1;3.58589447367247e-05;63182165;0.0001489344342663788;0;1;Old +26785;United Kingdom;F;Elementary occupations;Administrative and support service activities   ;Y_GE85;335;1;1.2765936755369577e-06;63182165;5.302129168888087e-06;0;1;Old +26786;United Kingdom;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;4640;1;1.768177508803428e-05;63182165;7.343844580191261e-05;1;0;Young +26787;United Kingdom;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;16240;1;6.188621280811999e-05;63182165;0.00025703456030669417;1;0;Young +26788;United Kingdom;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;13510;1;5.148292703434119e-05;63182165;0.00021382616439306884;0;1;Old +26789;United Kingdom;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;2625;1;1.0003159397864222e-05;63182165;4.154653453233203e-05;0;1;Old +26790;United Kingdom;F;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;105;1;4.0012637591456885e-07;63182165;1.661861381293281e-06;0;1;Old +26791;United Kingdom;F;Elementary occupations;Education   ;Y15-29;17730;1;6.75641966187172e-05;63182165;0.0002806171646698083;1;0;Young +26792;United Kingdom;F;Elementary occupations;Education   ;Y30-49;99030;1;0.0003773763333982834;63182165;0.0015673726913283204;1;0;Young +26793;United Kingdom;F;Elementary occupations;Education   ;Y50-64;68365;1;0.00026052037799428093;63182165;0.00108203003173443;0;1;Old +26794;United Kingdom;F;Elementary occupations;Education   ;Y65-84;11715;1;4.4642671369896895e-05;63182165;0.00018541624839857893;0;1;Old +26795;United Kingdom;F;Elementary occupations;Education   ;Y_GE85;250;1;9.526818474156401e-07;63182165;3.9568128126030505e-06;0;1;Old +26796;United Kingdom;F;Elementary occupations;Human health and social work activities   ;Y15-29;23690;1;9.027613186110606e-05;63182165;0.00037494758212226504;1;0;Young +26797;United Kingdom;F;Elementary occupations;Human health and social work activities   ;Y30-49;54840;1;0.00020898029004909482;63182165;0.0008679664585726051;1;0;Young +26798;United Kingdom;F;Elementary occupations;Human health and social work activities   ;Y50-64;51900;1;0.0001977767515234869;63182165;0.0008214343398963933;0;1;Old +26799;United Kingdom;F;Elementary occupations;Human health and social work activities   ;Y65-84;8640;1;3.2924684646684525e-05;63182165;0.00013674745080356142;0;1;Old +26800;United Kingdom;F;Elementary occupations;Human health and social work activities   ;Y_GE85;330;1;1.257540038588645e-06;63182165;5.222992912636026e-06;0;1;Old +26801;United Kingdom;F;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;23640;1;9.008559549162293e-05;63182165;0.0003741562195597444;1;0;Young +26802;United Kingdom;F;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;13870;1;5.2854788894619714e-05;63182165;0.00021952397484321722;1;0;Young +26803;United Kingdom;F;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;10120;1;3.856456118338511e-05;63182165;0.00016017178265417147;0;1;Old +26804;United Kingdom;F;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2290;1;8.726565722327264e-06;63182165;3.6244405363443943e-05;0;1;Old +26805;United Kingdom;F;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +26806;United Kingdom;F;Elementary occupations;Other service activities   ;Y15-29;9620;1;3.665919748855383e-05;63182165;0.00015225815702896538;1;0;Young +26807;United Kingdom;F;Elementary occupations;Other service activities   ;Y30-49;16135;1;6.148608643220541e-05;63182165;0.00025537269892540087;1;0;Young +26808;United Kingdom;F;Elementary occupations;Other service activities   ;Y50-64;12020;1;4.580494322374398e-05;63182165;0.00019024356002995466;0;1;Old +26809;United Kingdom;F;Elementary occupations;Other service activities   ;Y65-84;2710;1;1.032707122598554e-05;63182165;4.2891850888617066e-05;0;1;Old +26810;United Kingdom;F;Elementary occupations;Other service activities   ;Y_GE85;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +26811;United Kingdom;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;930;1;3.5439764723861814e-06;63182165;1.4719343662883347e-05;1;0;Young +26812;United Kingdom;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;2700;1;1.0288963952088914e-05;63182165;4.2733578376112946e-05;1;0;Young +26813;United Kingdom;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;1960;1;7.469025683738619e-06;63182165;3.1021412450807916e-05;0;1;Old +26814;United Kingdom;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;430;1;1.638612777554901e-06;63182165;6.805718037677246e-06;0;1;Old +26815;United Kingdom;F;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +26816;United Kingdom;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;115;1;4.382336498111945e-07;63182165;1.8201338937974031e-06;1;0;Young +26817;United Kingdom;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;170;1;6.478236562426352e-07;63182165;2.690632712570074e-06;1;0;Young +26818;United Kingdom;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +26819;United Kingdom;F;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26820;United Kingdom;M;Not applicable;Not applicable  ;Y15-29;2219380;1;0.008457452154069293;63182165;0.03512668488013983;1;0;Young +26821;United Kingdom;M;Not applicable;Not applicable  ;Y30-49;819705;1;0.0031236722949433493;63182165;0.012973676986219132;1;0;Young +26822;United Kingdom;M;Not applicable;Not applicable  ;Y50-64;1359335;1;0.005180055116226957;63182165;0.021514536578479068;0;1;Old +26823;United Kingdom;M;Not applicable;Not applicable  ;Y65-84;3539855;1;0.013489422403933964;63182165;0.05602617447502788;0;1;Old +26824;United Kingdom;M;Not applicable;Not applicable  ;Y_GE85;435620;1;0.0016600290654848046;63182165;0.006894667189704563;0;1;Old +26825;United Kingdom;M;Not applicable;Not applicable  ;Y_LT15;5681330;1;0.021649999840711594;63182165;0.08991983734650436;0;1;Old +26826;United Kingdom;M;Armed forces occupations;Mining and quarrying   ;Y30-49;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26827;United Kingdom;M;Armed forces occupations;Manufacturing   ;Y30-49;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26828;United Kingdom;M;Armed forces occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26829;United Kingdom;M;Armed forces occupations;Administrative and support service activities   ;Y15-29;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26830;United Kingdom;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y15-29;6500;1;2.4769728032806644e-05;63182165;0.0001028771331276793;1;0;Young +26831;United Kingdom;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y30-49;5170;1;1.970146060455544e-05;63182165;8.182688896463107e-05;1;0;Young +26832;United Kingdom;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y50-64;560;1;2.134007338211034e-06;63182165;8.863260700230832e-06;0;1;Old +26833;United Kingdom;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y65-84;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +26834;United Kingdom;M;Armed forces occupations;"Public administration and defence; compulsory social security   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26835;United Kingdom;M;Armed forces occupations;Education   ;Y15-29;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26836;United Kingdom;M;Armed forces occupations;Human health and social work activities   ;Y30-49;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26837;United Kingdom;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;1;0;Young +26838;United Kingdom;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;1;0;Young +26839;United Kingdom;M;Armed forces occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26840;United Kingdom;M;Managers;Agriculture, forestry and fishing   ;Y15-29;1910;1;7.27848931425549e-06;63182165;3.0230049888287305e-05;1;0;Young +26841;United Kingdom;M;Managers;Agriculture, forestry and fishing   ;Y30-49;8320;1;3.1705251881992506e-05;63182165;0.00013168273040342952;1;0;Young +26842;United Kingdom;M;Managers;Agriculture, forestry and fishing   ;Y50-64;6100;1;2.324543707694162e-05;63182165;9.654623262751443e-05;0;1;Old +26843;United Kingdom;M;Managers;Agriculture, forestry and fishing   ;Y65-84;2030;1;7.735776601014998e-06;63182165;3.212932003833677e-05;0;1;Old +26844;United Kingdom;M;Managers;Agriculture, forestry and fishing   ;Y_GE85;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +26845;United Kingdom;M;Managers;Mining and quarrying   ;Y15-29;260;1;9.907891213122658e-07;63182165;4.115085325107172e-06;1;0;Young +26846;United Kingdom;M;Managers;Mining and quarrying   ;Y30-49;4050;1;1.543344592813337e-05;63182165;6.410036756416941e-05;1;0;Young +26847;United Kingdom;M;Managers;Mining and quarrying   ;Y50-64;3310;1;1.2613507659783075e-05;63182165;5.2388201638864386e-05;0;1;Old +26848;United Kingdom;M;Managers;Mining and quarrying   ;Y65-84;320;1;1.2194327646920193e-06;63182165;5.0647204001319045e-06;0;1;Old +26849;United Kingdom;M;Managers;Mining and quarrying   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26850;United Kingdom;M;Managers;Manufacturing   ;Y15-29;11920;1;4.542387048477772e-05;63182165;0.00018866083490491343;1;0;Young +26851;United Kingdom;M;Managers;Manufacturing   ;Y30-49;138090;1;0.000526223345238503;63182165;0.0021855851251694207;1;0;Young +26852;United Kingdom;M;Managers;Manufacturing   ;Y50-64;93050;1;0.00035458818360810124;63182165;0.0014727257288508554;0;1;Old +26853;United Kingdom;M;Managers;Manufacturing   ;Y65-84;14165;1;5.397895347457017e-05;63182165;0.00022419301396208884;0;1;Old +26854;United Kingdom;M;Managers;Manufacturing   ;Y_GE85;325;1;1.2384864016403321e-06;63182165;5.1438566563839654e-06;0;1;Old +26855;United Kingdom;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y15-29;940;1;3.582083746282807e-06;63182165;1.4877616175387469e-05;1;0;Young +26856;United Kingdom;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y30-49;7120;1;2.713237901439743e-05;63182165;0.00011269002890293488;1;0;Young +26857;United Kingdom;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3840;1;1.4633193176304233e-05;63182165;6.077664480158285e-05;0;1;Old +26858;United Kingdom;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y65-84;260;1;9.907891213122658e-07;63182165;4.115085325107172e-06;0;1;Old +26859;United Kingdom;M;Managers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26860;United Kingdom;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1580;1;6.020949275666846e-06;63182165;2.5007056975651278e-05;1;0;Young +26861;United Kingdom;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;11185;1;4.262298585337574e-05;63182165;0.00017702780523586048;1;0;Young +26862;United Kingdom;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;6365;1;2.4255279835202198e-05;63182165;0.00010074045420887367;0;1;Old +26863;United Kingdom;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;745;1;2.8389919052986075e-06;63182165;1.179130218155709e-05;0;1;Old +26864;United Kingdom;M;Managers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26865;United Kingdom;M;Managers;Construction   ;Y15-29;13505;1;5.146387339739288e-05;63182165;0.00021374702813681677;1;0;Young +26866;United Kingdom;M;Managers;Construction   ;Y30-49;105470;1;0.00040191741778771025;63182165;0.0016693001893809747;1;0;Young +26867;United Kingdom;M;Managers;Construction   ;Y50-64;66595;1;0.0002537753905145782;63182165;0.0010540157970212005;0;1;Old +26868;United Kingdom;M;Managers;Construction   ;Y65-84;9650;1;3.677351931024371e-05;63182165;0.00015273297456647774;0;1;Old +26869;United Kingdom;M;Managers;Construction   ;Y_GE85;190;1;7.240382040358865e-07;63182165;3.0071777375783183e-06;0;1;Old +26870;United Kingdom;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;75555;1;0.00028791950792595475;63182165;0.001195827968224894;1;0;Young +26871;United Kingdom;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;282080;1;0.001074929982076015;63182165;0.004464551032716274;1;0;Young +26872;United Kingdom;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;148745;1;0.0005668266455753576;63182165;0.002354224487242563;0;1;Old +26873;United Kingdom;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;27680;1;0.00010548093414585968;63182165;0.0004380983146114097;0;1;Old +26874;United Kingdom;M;Managers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;565;1;2.1530609751593466e-06;63182165;8.942396956482894e-06;0;1;Old +26875;United Kingdom;M;Managers;Transportation and storage   ;Y15-29;6745;1;2.570335624327397e-05;63182165;0.0001067548096840303;1;0;Young +26876;United Kingdom;M;Managers;Transportation and storage   ;Y30-49;51530;1;0.00019636678238931174;63182165;0.0008155782569337407;1;0;Young +26877;United Kingdom;M;Managers;Transportation and storage   ;Y50-64;31880;1;0.00012148598918244243;63182165;0.000504572769863141;0;1;Old +26878;United Kingdom;M;Managers;Transportation and storage   ;Y65-84;3990;1;1.5204802284753616e-05;63182165;6.315073248914469e-05;0;1;Old +26879;United Kingdom;M;Managers;Transportation and storage   ;Y_GE85;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +26880;United Kingdom;M;Managers;Accommodation and food service activities   ;Y15-29;34435;1;0.00013122239766303028;63182165;0.0005450113968079441;1;0;Young +26881;United Kingdom;M;Managers;Accommodation and food service activities   ;Y30-49;77850;1;0.00029666512728523036;63182165;0.0012321515098445898;1;0;Young +26882;United Kingdom;M;Managers;Accommodation and food service activities   ;Y50-64;40425;1;0.000154048654727109;63182165;0.0006398166317979132;0;1;Old +26883;United Kingdom;M;Managers;Accommodation and food service activities   ;Y65-84;7515;1;2.863761633331414e-05;63182165;0.00011894179314684769;0;1;Old +26884;United Kingdom;M;Managers;Accommodation and food service activities   ;Y_GE85;140;1;5.335018345527585e-07;63182165;2.215815175057708e-06;0;1;Old +26885;United Kingdom;M;Managers;Information and communication   ;Y15-29;7415;1;2.8256543594347885e-05;63182165;0.00011735906802180648;1;0;Young +26886;United Kingdom;M;Managers;Information and communication   ;Y30-49;64335;1;0.00024516314661394083;63182165;0.001018246209195269;1;0;Young +26887;United Kingdom;M;Managers;Information and communication   ;Y50-64;24930;1;9.500143382428763e-05;63182165;0.00039457337367277616;0;1;Old +26888;United Kingdom;M;Managers;Information and communication   ;Y65-84;2940;1;1.1203538525607928e-05;63182165;4.653211867621187e-05;0;1;Old +26889;United Kingdom;M;Managers;Information and communication   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26890;United Kingdom;M;Managers;Financial and insurance activities   ;Y15-29;18055;1;6.880268302035753e-05;63182165;0.00028576102132619227;1;0;Young +26891;United Kingdom;M;Managers;Financial and insurance activities   ;Y30-49;94150;1;0.0003587799837367301;63182165;0.0014901357052263086;1;0;Young +26892;United Kingdom;M;Managers;Financial and insurance activities   ;Y50-64;30170;1;0.00011496964534611946;63182165;0.0004775081702249361;0;1;Old +26893;United Kingdom;M;Managers;Financial and insurance activities   ;Y65-84;3520;1;1.3413760411612212e-05;63182165;5.571192440145095e-05;0;1;Old +26894;United Kingdom;M;Managers;Financial and insurance activities   ;Y_GE85;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;0;1;Old +26895;United Kingdom;M;Managers;Real estate activities   ;Y15-29;5185;1;1.9758621515400377e-05;63182165;8.206429773338727e-05;1;0;Young +26896;United Kingdom;M;Managers;Real estate activities   ;Y30-49;28715;1;0.00010942503699416042;63182165;0.00045447951965558634;1;0;Young +26897;United Kingdom;M;Managers;Real estate activities   ;Y50-64;21495;1;8.191158524079674e-05;63182165;0.00034020676562761026;0;1;Old +26898;United Kingdom;M;Managers;Real estate activities   ;Y65-84;4865;1;1.8539188750708358e-05;63182165;7.699957733325535e-05;0;1;Old +26899;United Kingdom;M;Managers;Real estate activities   ;Y_GE85;135;1;5.144481976044457e-07;63182165;2.136678918805647e-06;0;1;Old +26900;United Kingdom;M;Managers;Professional, scientific and technical activities   ;Y15-29;9175;1;3.496342380015399e-05;63182165;0.00014521503022253194;1;0;Young +26901;United Kingdom;M;Managers;Professional, scientific and technical activities   ;Y30-49;81655;1;0.00031116494500289636;63182165;0.0012923742008524083;1;0;Young +26902;United Kingdom;M;Managers;Professional, scientific and technical activities   ;Y50-64;48280;1;0.00018398191837290843;63182165;0.000764139690369901;0;1;Old +26903;United Kingdom;M;Managers;Professional, scientific and technical activities   ;Y65-84;6795;1;2.58938926127571e-05;63182165;0.0001075461722465509;0;1;Old +26904;United Kingdom;M;Managers;Professional, scientific and technical activities   ;Y_GE85;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +26905;United Kingdom;M;Managers;Administrative and support service activities   ;Y15-29;10965;1;4.1784625827649975e-05;63182165;0.00017354580996076978;1;0;Young +26906;United Kingdom;M;Managers;Administrative and support service activities   ;Y30-49;58220;1;0.00022186054862615427;63182165;0.0009214625677989983;1;0;Young +26907;United Kingdom;M;Managers;Administrative and support service activities   ;Y50-64;28065;1;0.00010694806419087976;63182165;0.00044419180634281845;0;1;Old +26908;United Kingdom;M;Managers;Administrative and support service activities   ;Y65-84;4205;1;1.602410867353107e-05;63182165;6.65535915079833e-05;0;1;Old +26909;United Kingdom;M;Managers;Administrative and support service activities   ;Y_GE85;80;1;3.0485819117300483e-07;63182165;1.2661801000329761e-06;0;1;Old +26910;United Kingdom;M;Managers;"Public administration and defence; compulsory social security   ";Y15-29;14215;1;5.4169489844053296e-05;63182165;0.00022498437652460944;1;0;Young +26911;United Kingdom;M;Managers;"Public administration and defence; compulsory social security   ";Y30-49;49180;1;0.00018741157302360473;63182165;0.000778384216495272;1;0;Young +26912;United Kingdom;M;Managers;"Public administration and defence; compulsory social security   ";Y50-64;27770;1;0.00010582389961092931;63182165;0.00043952276722394683;0;1;Old +26913;United Kingdom;M;Managers;"Public administration and defence; compulsory social security   ";Y65-84;3565;1;1.3585243144147028e-05;63182165;5.64241507077195e-05;0;1;Old +26914;United Kingdom;M;Managers;"Public administration and defence; compulsory social security   ";Y_GE85;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;0;1;Old +26915;United Kingdom;M;Managers;Education   ;Y15-29;3100;1;1.1813254907953937e-05;63182165;4.906447887627782e-05;1;0;Young +26916;United Kingdom;M;Managers;Education   ;Y30-49;17130;1;6.527776018491966e-05;63182165;0.000271120813919561;1;0;Young +26917;United Kingdom;M;Managers;Education   ;Y50-64;13890;1;5.2931003442412966e-05;63182165;0.00021984051986822546;0;1;Old +26918;United Kingdom;M;Managers;Education   ;Y65-84;1710;1;6.516343836322979e-06;63182165;2.7064599638204864e-05;0;1;Old +26919;United Kingdom;M;Managers;Education   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +26920;United Kingdom;M;Managers;Human health and social work activities   ;Y15-29;4545;1;1.731975598601634e-05;63182165;7.193485693312345e-05;1;0;Young +26921;United Kingdom;M;Managers;Human health and social work activities   ;Y30-49;33770;1;0.00012868826394890468;63182165;0.00053448627472642;1;0;Young +26922;United Kingdom;M;Managers;Human health and social work activities   ;Y50-64;26635;1;0.0001014987240236623;63182165;0.00042155883705472896;0;1;Old +26923;United Kingdom;M;Managers;Human health and social work activities   ;Y65-84;3505;1;1.3356599500767275e-05;63182165;5.547451563269476e-05;0;1;Old +26924;United Kingdom;M;Managers;Human health and social work activities   ;Y_GE85;165;1;6.287700192943225e-07;63182165;2.611496456318013e-06;0;1;Old +26925;United Kingdom;M;Managers;Arts, entertainment and recreation   ;Y15-29;11980;1;4.5652514128157476e-05;63182165;0.00018961046997993815;1;0;Young +26926;United Kingdom;M;Managers;Arts, entertainment and recreation   ;Y30-49;28440;1;0.00010837708696200323;63182165;0.000450127025561723;1;0;Young +26927;United Kingdom;M;Managers;Arts, entertainment and recreation   ;Y50-64;13345;1;5.085415701504687e-05;63182165;0.00021121466793675082;0;1;Old +26928;United Kingdom;M;Managers;Arts, entertainment and recreation   ;Y65-84;2185;1;8.326439346412695e-06;63182165;3.458254398215066e-05;0;1;Old +26929;United Kingdom;M;Managers;Arts, entertainment and recreation   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26930;United Kingdom;M;Managers;Other service activities   ;Y15-29;2715;1;1.0346124862933853e-05;63182165;4.2970987144869126e-05;1;0;Young +26931;United Kingdom;M;Managers;Other service activities   ;Y30-49;14500;1;5.525554715010713e-05;63182165;0.0002294951431309769;1;0;Young +26932;United Kingdom;M;Managers;Other service activities   ;Y50-64;10490;1;3.997453031756026e-05;63182165;0.00016602786561682398;0;1;Old +26933;United Kingdom;M;Managers;Other service activities   ;Y65-84;2050;1;7.811991148808249e-06;63182165;3.244586506334501e-05;0;1;Old +26934;United Kingdom;M;Managers;Other service activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +26935;United Kingdom;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;1;0;Young +26936;United Kingdom;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;285;1;1.0860573060538298e-06;63182165;4.510766606367477e-06;1;0;Young +26937;United Kingdom;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;235;1;8.955209365707018e-07;63182165;3.7194040438468672e-06;0;1;Old +26938;United Kingdom;M;Managers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +26939;United Kingdom;M;Managers;Activities of extraterritorial organisations and bodies   ;Y15-29;325;1;1.2384864016403321e-06;63182165;5.1438566563839654e-06;1;0;Young +26940;United Kingdom;M;Managers;Activities of extraterritorial organisations and bodies   ;Y30-49;1580;1;6.020949275666846e-06;63182165;2.5007056975651278e-05;1;0;Young +26941;United Kingdom;M;Managers;Activities of extraterritorial organisations and bodies   ;Y50-64;820;1;3.1247964595232996e-06;63182165;1.2978346025338005e-05;0;1;Old +26942;United Kingdom;M;Managers;Activities of extraterritorial organisations and bodies   ;Y65-84;120;1;4.572872867595073e-07;63182165;1.899270150049464e-06;0;1;Old +26943;United Kingdom;M;Managers;Activities of extraterritorial organisations and bodies   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +26944;United Kingdom;M;Professionals;Agriculture, forestry and fishing   ;Y15-29;495;1;1.8863100578829675e-06;63182165;7.834489368954039e-06;1;0;Young +26945;United Kingdom;M;Professionals;Agriculture, forestry and fishing   ;Y30-49;1320;1;5.03016015435458e-06;63182165;2.0891971650544105e-05;1;0;Young +26946;United Kingdom;M;Professionals;Agriculture, forestry and fishing   ;Y50-64;1030;1;3.925049211352437e-06;63182165;1.6302068787924566e-05;0;1;Old +26947;United Kingdom;M;Professionals;Agriculture, forestry and fishing   ;Y65-84;320;1;1.2194327646920193e-06;63182165;5.0647204001319045e-06;0;1;Old +26948;United Kingdom;M;Professionals;Agriculture, forestry and fishing   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +26949;United Kingdom;M;Professionals;Mining and quarrying   ;Y15-29;2010;1;7.659562053221746e-06;63182165;3.1812775013328524e-05;1;0;Young +26950;United Kingdom;M;Professionals;Mining and quarrying   ;Y30-49;6435;1;2.4522030752478577e-05;63182165;0.00010184836179640251;1;0;Young +26951;United Kingdom;M;Professionals;Mining and quarrying   ;Y50-64;3735;1;1.4233066800389663e-05;63182165;5.911478342028957e-05;0;1;Old +26952;United Kingdom;M;Professionals;Mining and quarrying   ;Y65-84;365;1;1.3909154972268347e-06;63182165;5.776946706400453e-06;0;1;Old +26953;United Kingdom;M;Professionals;Mining and quarrying   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26954;United Kingdom;M;Professionals;Manufacturing   ;Y15-29;31055;1;0.00011834213908597082;63182165;0.0004915152875815509;1;0;Young +26955;United Kingdom;M;Professionals;Manufacturing   ;Y30-49;115170;1;0.0004388814734674371;63182165;0.0018228245265099732;1;0;Young +26956;United Kingdom;M;Professionals;Manufacturing   ;Y50-64;62195;1;0.00023700819000006294;63182165;0.0009843758915193868;0;1;Old +26957;United Kingdom;M;Professionals;Manufacturing   ;Y65-84;6610;1;2.5188908045669527e-05;63182165;0.00010461813076522465;0;1;Old +26958;United Kingdom;M;Professionals;Manufacturing   ;Y_GE85;170;1;6.478236562426352e-07;63182165;2.690632712570074e-06;0;1;Old +26959;United Kingdom;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;4080;1;1.554776774982325e-05;63182165;6.457518510168178e-05;1;0;Young +26960;United Kingdom;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;14325;1;5.458866985691618e-05;63182165;0.00022672537416215479;1;0;Young +26961;United Kingdom;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;7390;1;2.816127540960632e-05;63182165;0.00011696338674054616;0;1;Old +26962;United Kingdom;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;710;1;2.705616446660418e-06;63182165;1.1237348387792662e-05;0;1;Old +26963;United Kingdom;M;Professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26964;United Kingdom;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2000;1;7.621454779325121e-06;63182165;3.1654502500824404e-05;1;0;Young +26965;United Kingdom;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;6995;1;2.665603809068961e-05;63182165;0.00011071162249663335;1;0;Young +26966;United Kingdom;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;3935;1;1.4995212278322176e-05;63182165;6.228023367037201e-05;0;1;Old +26967;United Kingdom;M;Professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;400;1;1.5242909558650242e-06;63182165;6.33090050016488e-06;0;1;Old +26968;United Kingdom;M;Professionals;Construction   ;Y15-29;28480;1;0.00010852951605758972;63182165;0.0004507601156117395;1;0;Young +26969;United Kingdom;M;Professionals;Construction   ;Y30-49;84565;1;0.00032225416170681445;63182165;0.0013384315019911077;1;0;Young +26970;United Kingdom;M;Professionals;Construction   ;Y50-64;45350;1;0.00017281648712119712;63182165;0.0007177658442061933;0;1;Old +26971;United Kingdom;M;Professionals;Construction   ;Y65-84;6000;1;2.2864364337975364e-05;63182165;9.496350750247321e-05;0;1;Old +26972;United Kingdom;M;Professionals;Construction   ;Y_GE85;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;0;1;Old +26973;United Kingdom;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;18725;1;7.135587037143145e-05;63182165;0.00029636527966396846;1;0;Young +26974;United Kingdom;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;52150;1;0.00019872943337090253;63182165;0.0008253911527089962;1;0;Young +26975;United Kingdom;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;22640;1;8.627486810196037e-05;63182165;0.00035832896830933223;0;1;Old +26976;United Kingdom;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3500;1;1.3337545863818962e-05;63182165;5.53953793764427e-05;0;1;Old +26977;United Kingdom;M;Professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +26978;United Kingdom;M;Professionals;Transportation and storage   ;Y15-29;4790;1;1.8253384196483665e-05;63182165;7.581253348947444e-05;1;0;Young +26979;United Kingdom;M;Professionals;Transportation and storage   ;Y30-49;19615;1;7.474741774823113e-05;63182165;0.00031045153327683534;1;0;Young +26980;United Kingdom;M;Professionals;Transportation and storage   ;Y50-64;9705;1;3.698310931667515e-05;63182165;0.00015360347338525042;0;1;Old +26981;United Kingdom;M;Professionals;Transportation and storage   ;Y65-84;905;1;3.4487082876446173e-06;63182165;1.4323662381623041e-05;0;1;Old +26982;United Kingdom;M;Professionals;Transportation and storage   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +26983;United Kingdom;M;Professionals;Accommodation and food service activities   ;Y15-29;1985;1;7.564293868480183e-06;63182165;3.141709373206822e-05;1;0;Young +26984;United Kingdom;M;Professionals;Accommodation and food service activities   ;Y30-49;4660;1;1.7757989635827533e-05;63182165;7.375499082692086e-05;1;0;Young +26985;United Kingdom;M;Professionals;Accommodation and food service activities   ;Y50-64;2065;1;7.869152059653188e-06;63182165;3.268327383210119e-05;0;1;Old +26986;United Kingdom;M;Professionals;Accommodation and food service activities   ;Y65-84;395;1;1.5052373189167114e-06;63182165;6.2517642439128195e-06;0;1;Old +26987;United Kingdom;M;Professionals;Accommodation and food service activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +26988;United Kingdom;M;Professionals;Information and communication   ;Y15-29;65665;1;0.00025023141404219204;63182165;0.0010392964533583171;1;0;Young +26989;United Kingdom;M;Professionals;Information and communication   ;Y30-49;229865;1;0.0008759528514247845;63182165;0.0036381311086760007;1;0;Young +26990;United Kingdom;M;Professionals;Information and communication   ;Y50-64;67860;1;0.00025859596066250134;63182165;0.001074037269852972;0;1;Old +26991;United Kingdom;M;Professionals;Information and communication   ;Y65-84;4565;1;1.7395970533809588e-05;63182165;7.225140195813169e-05;0;1;Old +26992;United Kingdom;M;Professionals;Information and communication   ;Y_GE85;120;1;4.572872867595073e-07;63182165;1.899270150049464e-06;0;1;Old +26993;United Kingdom;M;Professionals;Financial and insurance activities   ;Y15-29;21065;1;8.027297246324184e-05;63182165;0.000333401047589933;1;0;Young +26994;United Kingdom;M;Professionals;Financial and insurance activities   ;Y30-49;85660;1;0.0003264269081984949;63182165;0.0013557623421103092;1;0;Young +26995;United Kingdom;M;Professionals;Financial and insurance activities   ;Y50-64;18825;1;7.17369431103977e-05;63182165;0.00029794800478900966;0;1;Old +26996;United Kingdom;M;Professionals;Financial and insurance activities   ;Y65-84;1020;1;3.886941937455812e-06;63182165;1.6143796275420446e-05;0;1;Old +26997;United Kingdom;M;Professionals;Financial and insurance activities   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +26998;United Kingdom;M;Professionals;Real estate activities   ;Y15-29;4640;1;1.768177508803428e-05;63182165;7.343844580191261e-05;1;0;Young +26999;United Kingdom;M;Professionals;Real estate activities   ;Y30-49;16120;1;6.142892552136047e-05;63182165;0.00025513529015664467;1;0;Young +27000;United Kingdom;M;Professionals;Real estate activities   ;Y50-64;9875;1;3.7630932972917784e-05;63182165;0.0001562941060978205;0;1;Old +27001;United Kingdom;M;Professionals;Real estate activities   ;Y65-84;1555;1;5.9256810909252815e-06;63182165;2.4611375694390974e-05;0;1;Old +27002;United Kingdom;M;Professionals;Real estate activities   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27003;United Kingdom;M;Professionals;Professional, scientific and technical activities   ;Y15-29;91590;1;0.00034902452161919394;63182165;0.0014496179420252534;1;0;Young +27004;United Kingdom;M;Professionals;Professional, scientific and technical activities   ;Y30-49;242645;1;0.000924653947464672;63182165;0.0038404033796562687;1;0;Young +27005;United Kingdom;M;Professionals;Professional, scientific and technical activities   ;Y50-64;135350;1;0.0005157819521908276;63182165;0.0021422184567432916;0;1;Old +27006;United Kingdom;M;Professionals;Professional, scientific and technical activities   ;Y65-84;27805;1;0.0001059572750695675;63182165;0.00044007672101771127;0;1;Old +27007;United Kingdom;M;Professionals;Professional, scientific and technical activities   ;Y_GE85;465;1;1.7719882361930907e-06;63182165;7.3596718314416735e-06;0;1;Old +27008;United Kingdom;M;Professionals;Administrative and support service activities   ;Y15-29;7650;1;2.9152064530918588e-05;63182165;0.00012107847206565334;1;0;Young +27009;United Kingdom;M;Professionals;Administrative and support service activities   ;Y30-49;20705;1;7.890111060296332e-05;63182165;0.00032770323713978463;1;0;Young +27010;United Kingdom;M;Professionals;Administrative and support service activities   ;Y50-64;8170;1;3.113364277354312e-05;63182165;0.00012930864271586769;0;1;Old +27011;United Kingdom;M;Professionals;Administrative and support service activities   ;Y65-84;1005;1;3.829781026610873e-06;63182165;1.5906387506664262e-05;0;1;Old +27012;United Kingdom;M;Professionals;Administrative and support service activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27013;United Kingdom;M;Professionals;"Public administration and defence; compulsory social security   ";Y15-29;14250;1;5.430286530269149e-05;63182165;0.00022553833031837387;1;0;Young +27014;United Kingdom;M;Professionals;"Public administration and defence; compulsory social security   ";Y30-49;60635;1;0.00023106345527218935;63182165;0.0009596853795687438;1;0;Young +27015;United Kingdom;M;Professionals;"Public administration and defence; compulsory social security   ";Y50-64;38380;1;0.00014625571721524908;63182165;0.0006074499029908203;0;1;Old +27016;United Kingdom;M;Professionals;"Public administration and defence; compulsory social security   ";Y65-84;3755;1;1.4309281348182915e-05;63182165;5.9431328445297815e-05;0;1;Old +27017;United Kingdom;M;Professionals;"Public administration and defence; compulsory social security   ";Y_GE85;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;0;1;Old +27018;United Kingdom;M;Professionals;Education   ;Y15-29;74085;1;0.0002823177386631508;63182165;0.001172561908886788;1;0;Young +27019;United Kingdom;M;Professionals;Education   ;Y30-49;228760;1;0.0008717419976592074;63182165;0.003620641996044295;1;0;Young +27020;United Kingdom;M;Professionals;Education   ;Y50-64;145675;1;0.0005551277124890935;63182165;0.0023056348259037976;0;1;Old +27021;United Kingdom;M;Professionals;Education   ;Y65-84;20410;1;7.777694602301287e-05;63182165;0.000323034198020913;0;1;Old +27022;United Kingdom;M;Professionals;Education   ;Y_GE85;425;1;1.6195591406065882e-06;63182165;6.726581781425185e-06;0;1;Old +27023;United Kingdom;M;Professionals;Human health and social work activities   ;Y15-29;39350;1;0.00014995212278322176;63182165;0.0006228023367037201;1;0;Young +27024;United Kingdom;M;Professionals;Human health and social work activities   ;Y30-49;165955;1;0.0006324092639514502;63182165;0.002626611481262157;1;0;Young +27025;United Kingdom;M;Professionals;Human health and social work activities   ;Y50-64;80240;1;0.00030577276574652386;63182165;0.001269978640333075;0;1;Old +27026;United Kingdom;M;Professionals;Human health and social work activities   ;Y65-84;10205;1;3.888847301150643e-05;63182165;0.0001615170990104565;0;1;Old +27027;United Kingdom;M;Professionals;Human health and social work activities   ;Y_GE85;280;1;1.067003669105517e-06;63182165;4.431630350115416e-06;0;1;Old +27028;United Kingdom;M;Professionals;Arts, entertainment and recreation   ;Y15-29;6240;1;2.3778938911494378e-05;63182165;9.876204780257214e-05;1;0;Young +27029;United Kingdom;M;Professionals;Arts, entertainment and recreation   ;Y30-49;15185;1;5.786589541202598e-05;63182165;0.00024033681023750929;1;0;Young +27030;United Kingdom;M;Professionals;Arts, entertainment and recreation   ;Y50-64;6990;1;2.6636984453741298e-05;63182165;0.00011063248624038129;0;1;Old +27031;United Kingdom;M;Professionals;Arts, entertainment and recreation   ;Y65-84;1345;1;5.125428339096144e-06;63182165;2.128765293180441e-05;0;1;Old +27032;United Kingdom;M;Professionals;Arts, entertainment and recreation   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27033;United Kingdom;M;Professionals;Other service activities   ;Y15-29;6070;1;2.3131115255251743e-05;63182165;9.607141509000207e-05;1;0;Young +27034;United Kingdom;M;Professionals;Other service activities   ;Y30-49;22960;1;8.749430086665239e-05;63182165;0.00036339368870946413;1;0;Young +27035;United Kingdom;M;Professionals;Other service activities   ;Y50-64;17635;1;6.720217751669925e-05;63182165;0.00027911357580101917;0;1;Old +27036;United Kingdom;M;Professionals;Other service activities   ;Y65-84;4655;1;1.773893599887922e-05;63182165;7.36758545706688e-05;0;1;Old +27037;United Kingdom;M;Professionals;Other service activities   ;Y_GE85;125;1;4.7634092370782007e-07;63182165;1.9784064063015252e-06;0;1;Old +27038;United Kingdom;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;1;0;Young +27039;United Kingdom;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;1;0;Young +27040;United Kingdom;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +27041;United Kingdom;M;Professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27042;United Kingdom;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;355;1;1.352808223330209e-06;63182165;5.618674193896331e-06;1;0;Young +27043;United Kingdom;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;1055;1;4.0203173960940015e-06;63182165;1.6697750069184873e-05;1;0;Young +27044;United Kingdom;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;595;1;2.2673827968492233e-06;63182165;9.41721449399526e-06;0;1;Old +27045;United Kingdom;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;0;1;Old +27046;United Kingdom;M;Professionals;Activities of extraterritorial organisations and bodies   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27047;United Kingdom;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y15-29;695;1;2.6484555358154796e-06;63182165;1.099993961903648e-05;1;0;Young +27048;United Kingdom;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y30-49;1445;1;5.5065010780624e-06;63182165;2.287037805684563e-05;1;0;Young +27049;United Kingdom;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y50-64;955;1;3.639244657127745e-06;63182165;1.5115024944143653e-05;0;1;Old +27050;United Kingdom;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y65-84;215;1;8.193063887774505e-07;63182165;3.402859018838623e-06;0;1;Old +27051;United Kingdom;M;Technicians and associate professionals;Agriculture, forestry and fishing   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27052;United Kingdom;M;Technicians and associate professionals;Mining and quarrying   ;Y15-29;1635;1;6.230539282098286e-06;63182165;2.587755579442395e-05;1;0;Young +27053;United Kingdom;M;Technicians and associate professionals;Mining and quarrying   ;Y30-49;5060;1;1.9282280591692557e-05;63182165;8.008589132708574e-05;1;0;Young +27054;United Kingdom;M;Technicians and associate professionals;Mining and quarrying   ;Y50-64;3125;1;1.1908523092695502e-05;63182165;4.946016015753813e-05;0;1;Old +27055;United Kingdom;M;Technicians and associate professionals;Mining and quarrying   ;Y65-84;230;1;8.76467299622389e-07;63182165;3.6402677875948063e-06;0;1;Old +27056;United Kingdom;M;Technicians and associate professionals;Mining and quarrying   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27057;United Kingdom;M;Technicians and associate professionals;Manufacturing   ;Y15-29;36255;1;0.00013815792151221614;63182165;0.0005738169940836944;1;0;Young +27058;United Kingdom;M;Technicians and associate professionals;Manufacturing   ;Y30-49;115015;1;0.0004382908107220394;63182165;0.0018203713025661593;1;0;Young +27059;United Kingdom;M;Technicians and associate professionals;Manufacturing   ;Y50-64;65300;1;0.0002488404985449652;63182165;0.0010335195066519167;0;1;Old +27060;United Kingdom;M;Technicians and associate professionals;Manufacturing   ;Y65-84;7010;1;2.671319900153455e-05;63182165;0.00011094903126538953;0;1;Old +27061;United Kingdom;M;Technicians and associate professionals;Manufacturing   ;Y_GE85;160;1;6.097163823460097e-07;63182165;2.5323602000659522e-06;0;1;Old +27062;United Kingdom;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y15-29;4065;1;1.5490606838978308e-05;63182165;6.43377763329256e-05;1;0;Young +27063;United Kingdom;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y30-49;9815;1;3.740228932953803e-05;63182165;0.00015534447102279574;1;0;Young +27064;United Kingdom;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y50-64;5220;1;1.9891996974038566e-05;63182165;8.261825152715169e-05;0;1;Old +27065;United Kingdom;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y65-84;350;1;1.3337545863818963e-06;63182165;5.53953793764427e-06;0;1;Old +27066;United Kingdom;M;Technicians and associate professionals;Electricity, gas, steam and air conditioning supply   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27067;United Kingdom;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2675;1;1.0193695767347349e-05;63182165;4.233789709485264e-05;1;0;Young +27068;United Kingdom;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;7540;1;2.8732884518055705e-05;63182165;0.00011933747442810799;1;0;Young +27069;United Kingdom;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4280;1;1.630991322775576e-05;63182165;6.774063535176423e-05;0;1;Old +27070;United Kingdom;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;325;1;1.2384864016403321e-06;63182165;5.1438566563839654e-06;0;1;Old +27071;United Kingdom;M;Technicians and associate professionals;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27072;United Kingdom;M;Technicians and associate professionals;Construction   ;Y15-29;15155;1;5.7751573590336106e-05;63182165;0.0002398619926999969;1;0;Young +27073;United Kingdom;M;Technicians and associate professionals;Construction   ;Y30-49;35570;1;0.00013554757325029727;63182165;0.000562975326977162;1;0;Young +27074;United Kingdom;M;Technicians and associate professionals;Construction   ;Y50-64;21275;1;8.107322521507097e-05;63182165;0.00033672477035251956;0;1;Old +27075;United Kingdom;M;Technicians and associate professionals;Construction   ;Y65-84;2925;1;1.114637761476299e-05;63182165;4.629470990745569e-05;0;1;Old +27076;United Kingdom;M;Technicians and associate professionals;Construction   ;Y_GE85;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +27077;United Kingdom;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;47955;1;0.0001827434319712681;63182165;0.0007589958337135171;1;0;Young +27078;United Kingdom;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;105010;1;0.0004001644831884655;63182165;0.0016620196538057852;1;0;Young +27079;United Kingdom;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;48320;1;0.00018413434746849492;63182165;0.0007647727804199175;0;1;Old +27080;United Kingdom;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;7000;1;2.6675091727637924e-05;63182165;0.0001107907587528854;0;1;Old +27081;United Kingdom;M;Technicians and associate professionals;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;115;1;4.382336498111945e-07;63182165;1.8201338937974031e-06;0;1;Old +27082;United Kingdom;M;Technicians and associate professionals;Transportation and storage   ;Y15-29;11330;1;4.317554132487681e-05;63182165;0.00017932275666717023;1;0;Young +27083;United Kingdom;M;Technicians and associate professionals;Transportation and storage   ;Y30-49;34810;1;0.00013265142043415373;63182165;0.0005509466160268487;1;0;Young +27084;United Kingdom;M;Technicians and associate professionals;Transportation and storage   ;Y50-64;20405;1;7.775789238606455e-05;63182165;0.00032295506176466097;0;1;Old +27085;United Kingdom;M;Technicians and associate professionals;Transportation and storage   ;Y65-84;2085;1;7.945366607446438e-06;63182165;3.299981885710944e-05;0;1;Old +27086;United Kingdom;M;Technicians and associate professionals;Transportation and storage   ;Y_GE85;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +27087;United Kingdom;M;Technicians and associate professionals;Accommodation and food service activities   ;Y15-29;9115;1;3.473478015677424e-05;63182165;0.00014426539514750722;1;0;Young +27088;United Kingdom;M;Technicians and associate professionals;Accommodation and food service activities   ;Y30-49;8735;1;3.328670374870247e-05;63182165;0.00013825103967235057;1;0;Young +27089;United Kingdom;M;Technicians and associate professionals;Accommodation and food service activities   ;Y50-64;2980;1;1.135596762119443e-05;63182165;4.716520872622836e-05;0;1;Old +27090;United Kingdom;M;Technicians and associate professionals;Accommodation and food service activities   ;Y65-84;495;1;1.8863100578829675e-06;63182165;7.834489368954039e-06;0;1;Old +27091;United Kingdom;M;Technicians and associate professionals;Accommodation and food service activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27092;United Kingdom;M;Technicians and associate professionals;Information and communication   ;Y15-29;48695;1;0.0001855633702396184;63182165;0.0007707079996388222;1;0;Young +27093;United Kingdom;M;Technicians and associate professionals;Information and communication   ;Y30-49;101820;1;0.0003880082628154419;63182165;0.0016115307223169702;1;0;Young +27094;United Kingdom;M;Technicians and associate professionals;Information and communication   ;Y50-64;28490;1;0.00010856762333148635;63182165;0.0004509183881242436;0;1;Old +27095;United Kingdom;M;Technicians and associate professionals;Information and communication   ;Y65-84;3230;1;1.230864946861007e-05;63182165;5.112202153883141e-05;0;1;Old +27096;United Kingdom;M;Technicians and associate professionals;Information and communication   ;Y_GE85;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;0;1;Old +27097;United Kingdom;M;Technicians and associate professionals;Financial and insurance activities   ;Y15-29;56675;1;0.00021597297480912563;63182165;0.0008970094646171115;1;0;Young +27098;United Kingdom;M;Technicians and associate professionals;Financial and insurance activities   ;Y30-49;131630;1;0.0005016060463012828;63182165;0.002083341082091758;1;0;Young +27099;United Kingdom;M;Technicians and associate professionals;Financial and insurance activities   ;Y50-64;44655;1;0.00017016803158538164;63182165;0.0007067659045871568;0;1;Old +27100;United Kingdom;M;Technicians and associate professionals;Financial and insurance activities   ;Y65-84;5605;1;2.1359127019058652e-05;63182165;8.871174325856038e-05;0;1;Old +27101;United Kingdom;M;Technicians and associate professionals;Financial and insurance activities   ;Y_GE85;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;0;1;Old +27102;United Kingdom;M;Technicians and associate professionals;Real estate activities   ;Y15-29;13335;1;5.081604974115025e-05;63182165;0.0002110563954242467;1;0;Young +27103;United Kingdom;M;Technicians and associate professionals;Real estate activities   ;Y30-49;24965;1;9.513480928292583e-05;63182165;0.0003951273274665406;1;0;Young +27104;United Kingdom;M;Technicians and associate professionals;Real estate activities   ;Y50-64;11395;1;4.342323860520488e-05;63182165;0.00018035152799844703;0;1;Old +27105;United Kingdom;M;Technicians and associate professionals;Real estate activities   ;Y65-84;1770;1;6.744987479702732e-06;63182165;2.8014234713229595e-05;0;1;Old +27106;United Kingdom;M;Technicians and associate professionals;Real estate activities   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +27107;United Kingdom;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y15-29;60355;1;0.00022999645160308384;63182165;0.0009552537492186284;1;0;Young +27108;United Kingdom;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y30-49;113975;1;0.0004343276542367903;63182165;0.0018039109612657306;1;0;Young +27109;United Kingdom;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y50-64;53645;1;0.00020442647081844807;63182165;0.0008490528933283626;0;1;Old +27110;United Kingdom;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y65-84;8750;1;3.334386465954741e-05;63182165;0.00013848844844110676;0;1;Old +27111;United Kingdom;M;Technicians and associate professionals;Professional, scientific and technical activities   ;Y_GE85;145;1;5.525554715010713e-07;63182165;2.294951431309769e-06;0;1;Old +27112;United Kingdom;M;Technicians and associate professionals;Administrative and support service activities   ;Y15-29;30125;1;0.00011479816261358463;63182165;0.00047679594391866753;1;0;Young +27113;United Kingdom;M;Technicians and associate professionals;Administrative and support service activities   ;Y30-49;46005;1;0.0001753125135614261;63182165;0.0007281326937752133;1;0;Young +27114;United Kingdom;M;Technicians and associate professionals;Administrative and support service activities   ;Y50-64;15670;1;5.971409819601232e-05;63182165;0.0002480130270939592;0;1;Old +27115;United Kingdom;M;Technicians and associate professionals;Administrative and support service activities   ;Y65-84;1820;1;6.9355238491858606e-06;63182165;2.8805597275750206e-05;0;1;Old +27116;United Kingdom;M;Technicians and associate professionals;Administrative and support service activities   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27117;United Kingdom;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y15-29;109825;1;0.0004185131355696907;63182165;0.00173822786857652;1;0;Young +27118;United Kingdom;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y30-49;231335;1;0.0008815546206875885;63182165;0.0036613971680141064;1;0;Young +27119;United Kingdom;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y50-64;74985;1;0.0002857473933138471;63182165;0.001186806435012159;0;1;Old +27120;United Kingdom;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y65-84;5170;1;1.970146060455544e-05;63182165;8.182688896463107e-05;0;1;Old +27121;United Kingdom;M;Technicians and associate professionals;"Public administration and defence; compulsory social security   ";Y_GE85;195;1;7.430918409841993e-07;63182165;3.0863139938303793e-06;0;1;Old +27122;United Kingdom;M;Technicians and associate professionals;Education   ;Y15-29;36930;1;0.00014073016250023835;63182165;0.0005845003886777226;1;0;Young +27123;United Kingdom;M;Technicians and associate professionals;Education   ;Y30-49;51850;1;0.00019758621515400377;63182165;0.0008206429773338726;1;0;Young +27124;United Kingdom;M;Technicians and associate professionals;Education   ;Y50-64;35560;1;0.00013550946597640066;63182165;0.0005628170544646579;0;1;Old +27125;United Kingdom;M;Technicians and associate professionals;Education   ;Y65-84;4940;1;1.8824993304933048e-05;63182165;7.818662117703627e-05;0;1;Old +27126;United Kingdom;M;Technicians and associate professionals;Education   ;Y_GE85;85;1;3.239118281213176e-07;63182165;1.345316356285037e-06;0;1;Old +27127;United Kingdom;M;Technicians and associate professionals;Human health and social work activities   ;Y15-29;32905;1;0.00012539198475684655;63182165;0.0005207957023948134;1;0;Young +27128;United Kingdom;M;Technicians and associate professionals;Human health and social work activities   ;Y30-49;75320;1;0.00028702398698938407;63182165;0.001192108564181047;1;0;Young +27129;United Kingdom;M;Technicians and associate professionals;Human health and social work activities   ;Y50-64;39955;1;0.0001522576128539676;63182165;0.0006323778237102194;0;1;Old +27130;United Kingdom;M;Technicians and associate professionals;Human health and social work activities   ;Y65-84;3990;1;1.5204802284753616e-05;63182165;6.315073248914469e-05;0;1;Old +27131;United Kingdom;M;Technicians and associate professionals;Human health and social work activities   ;Y_GE85;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +27132;United Kingdom;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y15-29;52070;1;0.00019842457517972952;63182165;0.0008241249726089633;1;0;Young +27133;United Kingdom;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y30-49;54220;1;0.00020661763906750403;63182165;0.0008581535627973496;1;0;Young +27134;United Kingdom;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y50-64;23070;1;8.791348087951527e-05;63182165;0.0003651346863470095;0;1;Old +27135;United Kingdom;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y65-84;5185;1;1.9758621515400377e-05;63182165;8.206429773338727e-05;0;1;Old +27136;United Kingdom;M;Technicians and associate professionals;Arts, entertainment and recreation   ;Y_GE85;140;1;5.335018345527585e-07;63182165;2.215815175057708e-06;0;1;Old +27137;United Kingdom;M;Technicians and associate professionals;Other service activities   ;Y15-29;10165;1;3.873604391591993e-05;63182165;0.00016088400896044003;1;0;Young +27138;United Kingdom;M;Technicians and associate professionals;Other service activities   ;Y30-49;14745;1;5.618917536057446e-05;63182165;0.00023337281968732792;1;0;Young +27139;United Kingdom;M;Technicians and associate professionals;Other service activities   ;Y50-64;6695;1;2.5512819873790843e-05;63182165;0.00010596344712150969;0;1;Old +27140;United Kingdom;M;Technicians and associate professionals;Other service activities   ;Y65-84;1200;1;4.572872867595073e-06;63182165;1.899270150049464e-05;0;1;Old +27141;United Kingdom;M;Technicians and associate professionals;Other service activities   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27142;United Kingdom;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;1;0;Young +27143;United Kingdom;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;1;0;Young +27144;United Kingdom;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +27145;United Kingdom;M;Technicians and associate professionals;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27146;United Kingdom;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y15-29;2040;1;7.773883874911624e-06;63182165;3.228759255084089e-05;1;0;Young +27147;United Kingdom;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y30-49;2405;1;9.164799372138458e-06;63182165;3.8064539257241346e-05;1;0;Young +27148;United Kingdom;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y50-64;675;1;2.5722409880222284e-06;63182165;1.0683394594028236e-05;0;1;Old +27149;United Kingdom;M;Technicians and associate professionals;Activities of extraterritorial organisations and bodies   ;Y65-84;105;1;4.0012637591456885e-07;63182165;1.661861381293281e-06;0;1;Old +27150;United Kingdom;M;Clerical support workers;Agriculture, forestry and fishing   ;Y15-29;330;1;1.257540038588645e-06;63182165;5.222992912636026e-06;1;0;Young +27151;United Kingdom;M;Clerical support workers;Agriculture, forestry and fishing   ;Y30-49;450;1;1.7148273253481523e-06;63182165;7.122263062685491e-06;1;0;Young +27152;United Kingdom;M;Clerical support workers;Agriculture, forestry and fishing   ;Y50-64;415;1;1.5814518667099626e-06;63182165;6.568309268921063e-06;0;1;Old +27153;United Kingdom;M;Clerical support workers;Agriculture, forestry and fishing   ;Y65-84;125;1;4.7634092370782007e-07;63182165;1.9784064063015252e-06;0;1;Old +27154;United Kingdom;M;Clerical support workers;Agriculture, forestry and fishing   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27155;United Kingdom;M;Clerical support workers;Mining and quarrying   ;Y15-29;435;1;1.6576664145032138e-06;63182165;6.884854293929308e-06;1;0;Young +27156;United Kingdom;M;Clerical support workers;Mining and quarrying   ;Y30-49;1075;1;4.096531943887253e-06;63182165;1.7014295094193117e-05;1;0;Young +27157;United Kingdom;M;Clerical support workers;Mining and quarrying   ;Y50-64;680;1;2.591294624970541e-06;63182165;1.0762530850280297e-05;0;1;Old +27158;United Kingdom;M;Clerical support workers;Mining and quarrying   ;Y65-84;80;1;3.0485819117300483e-07;63182165;1.2661801000329761e-06;0;1;Old +27159;United Kingdom;M;Clerical support workers;Mining and quarrying   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27160;United Kingdom;M;Clerical support workers;Manufacturing   ;Y15-29;11210;1;4.2718254038117304e-05;63182165;0.00017742348651712076;1;0;Young +27161;United Kingdom;M;Clerical support workers;Manufacturing   ;Y30-49;23220;1;8.848508998796466e-05;63182165;0.0003675087740345713;1;0;Young +27162;United Kingdom;M;Clerical support workers;Manufacturing   ;Y50-64;14765;1;5.626538990836771e-05;63182165;0.00023368936471233616;0;1;Old +27163;United Kingdom;M;Clerical support workers;Manufacturing   ;Y65-84;1735;1;6.611612021064543e-06;63182165;2.7460280919465168e-05;0;1;Old +27164;United Kingdom;M;Clerical support workers;Manufacturing   ;Y_GE85;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;0;1;Old +27165;United Kingdom;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;1925;1;7.335650225100429e-06;63182165;3.0467458657043485e-05;1;0;Young +27166;United Kingdom;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;2435;1;9.279121193828335e-06;63182165;3.8539356794753706e-05;1;0;Young +27167;United Kingdom;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;1325;1;5.049213791302893e-06;63182165;2.0971107906796166e-05;0;1;Old +27168;United Kingdom;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;125;1;4.7634092370782007e-07;63182165;1.9784064063015252e-06;0;1;Old +27169;United Kingdom;M;Clerical support workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27170;United Kingdom;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1470;1;5.601769262803964e-06;63182165;2.3266059338105935e-05;1;0;Young +27171;United Kingdom;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;2145;1;8.174010250826192e-06;63182165;3.3949453932134174e-05;1;0;Young +27172;United Kingdom;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;1265;1;4.820570147923139e-06;63182165;2.0021472831771434e-05;0;1;Old +27173;United Kingdom;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;145;1;5.525554715010713e-07;63182165;2.294951431309769e-06;0;1;Old +27174;United Kingdom;M;Clerical support workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27175;United Kingdom;M;Clerical support workers;Construction   ;Y15-29;7260;1;2.766588084895019e-05;63182165;0.00011490584407799259;1;0;Young +27176;United Kingdom;M;Clerical support workers;Construction   ;Y30-49;9925;1;3.782146934240091e-05;63182165;0.0001570854686603411;1;0;Young +27177;United Kingdom;M;Clerical support workers;Construction   ;Y50-64;6650;1;2.5341337141256027e-05;63182165;0.00010525122081524113;0;1;Old +27178;United Kingdom;M;Clerical support workers;Construction   ;Y65-84;1185;1;4.5157119567501345e-06;63182165;1.875529273173846e-05;0;1;Old +27179;United Kingdom;M;Clerical support workers;Construction   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27180;United Kingdom;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;33440;1;0.00012743072391031601;63182165;0.000529263281813784;1;0;Young +27181;United Kingdom;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;37035;1;0.00014113028887615292;63182165;0.0005861622500590159;1;0;Young +27182;United Kingdom;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;19140;1;7.293732223814141e-05;63182165;0.0003029335889328895;0;1;Old +27183;United Kingdom;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;3085;1;1.1756093997109e-05;63182165;4.882707010752164e-05;0;1;Old +27184;United Kingdom;M;Clerical support workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;115;1;4.382336498111945e-07;63182165;1.8201338937974031e-06;0;1;Old +27185;United Kingdom;M;Clerical support workers;Transportation and storage   ;Y15-29;12235;1;4.662424961252143e-05;63182165;0.0001936464190487933;1;0;Young +27186;United Kingdom;M;Clerical support workers;Transportation and storage   ;Y30-49;26125;1;9.955525305493439e-05;63182165;0.00041348693891701875;1;0;Young +27187;United Kingdom;M;Clerical support workers;Transportation and storage   ;Y50-64;16655;1;6.346766467482994e-05;63182165;0.0002636028695756152;0;1;Old +27188;United Kingdom;M;Clerical support workers;Transportation and storage   ;Y65-84;2120;1;8.078742066084629e-06;63182165;3.3553772650873866e-05;0;1;Old +27189;United Kingdom;M;Clerical support workers;Transportation and storage   ;Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +27190;United Kingdom;M;Clerical support workers;Accommodation and food service activities   ;Y15-29;8600;1;3.277225555109802e-05;63182165;0.00013611436075354493;1;0;Young +27191;United Kingdom;M;Clerical support workers;Accommodation and food service activities   ;Y30-49;6520;1;2.4845942580599896e-05;63182165;0.00010319367815268756;1;0;Young +27192;United Kingdom;M;Clerical support workers;Accommodation and food service activities   ;Y50-64;2560;1;9.755462117536155e-06;63182165;4.0517763201055236e-05;0;1;Old +27193;United Kingdom;M;Clerical support workers;Accommodation and food service activities   ;Y65-84;705;1;2.686562809712105e-06;63182165;1.1158212131540602e-05;0;1;Old +27194;United Kingdom;M;Clerical support workers;Accommodation and food service activities   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27195;United Kingdom;M;Clerical support workers;Information and communication   ;Y15-29;8365;1;3.187673461452732e-05;63182165;0.00013239495670969807;1;0;Young +27196;United Kingdom;M;Clerical support workers;Information and communication   ;Y30-49;10675;1;4.067951488464783e-05;63182165;0.00016895590709815024;1;0;Young +27197;United Kingdom;M;Clerical support workers;Information and communication   ;Y50-64;4455;1;1.697679052094671e-05;63182165;7.051040432058636e-05;0;1;Old +27198;United Kingdom;M;Clerical support workers;Information and communication   ;Y65-84;570;1;2.1721146121076596e-06;63182165;9.021533212734954e-06;0;1;Old +27199;United Kingdom;M;Clerical support workers;Information and communication   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27200;United Kingdom;M;Clerical support workers;Financial and insurance activities   ;Y15-29;50635;1;0.00019295618137556375;63182165;0.0008014128670646218;1;0;Young +27201;United Kingdom;M;Clerical support workers;Financial and insurance activities   ;Y30-49;45260;1;0.0001724735216561275;63182165;0.0007163413915936563;1;0;Young +27202;United Kingdom;M;Clerical support workers;Financial and insurance activities   ;Y50-64;15145;1;5.771346631643948e-05;63182165;0.00023970372018749278;0;1;Old +27203;United Kingdom;M;Clerical support workers;Financial and insurance activities   ;Y65-84;1575;1;6.001895638718533e-06;63182165;2.4927920719399218e-05;0;1;Old +27204;United Kingdom;M;Clerical support workers;Financial and insurance activities   ;Y_GE85;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +27205;United Kingdom;M;Clerical support workers;Real estate activities   ;Y15-29;4535;1;1.7281648712119713e-05;63182165;7.177658442061933e-05;1;0;Young +27206;United Kingdom;M;Clerical support workers;Real estate activities   ;Y30-49;5215;1;1.9872943337090255e-05;63182165;8.253911527089963e-05;1;0;Young +27207;United Kingdom;M;Clerical support workers;Real estate activities   ;Y50-64;3115;1;1.1870415818798876e-05;63182165;4.930188764503401e-05;0;1;Old +27208;United Kingdom;M;Clerical support workers;Real estate activities   ;Y65-84;540;1;2.057792790417783e-06;63182165;8.546715675222588e-06;0;1;Old +27209;United Kingdom;M;Clerical support workers;Real estate activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27210;United Kingdom;M;Clerical support workers;Professional, scientific and technical activities   ;Y15-29;21975;1;8.374073438783477e-05;63182165;0.00034780384622780814;1;0;Young +27211;United Kingdom;M;Clerical support workers;Professional, scientific and technical activities   ;Y30-49;23170;1;8.829455361848152e-05;63182165;0.0003667174114720507;1;0;Young +27212;United Kingdom;M;Clerical support workers;Professional, scientific and technical activities   ;Y50-64;15050;1;5.7351447214421535e-05;63182165;0.00023820013131870362;0;1;Old +27213;United Kingdom;M;Clerical support workers;Professional, scientific and technical activities   ;Y65-84;3680;1;1.4023476793958223e-05;63182165;5.82442846015169e-05;0;1;Old +27214;United Kingdom;M;Clerical support workers;Professional, scientific and technical activities   ;Y_GE85;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +27215;United Kingdom;M;Clerical support workers;Administrative and support service activities   ;Y15-29;16115;1;6.140987188441217e-05;63182165;0.0002550561539003926;1;0;Young +27216;United Kingdom;M;Clerical support workers;Administrative and support service activities   ;Y30-49;18755;1;7.147019219312133e-05;63182165;0.00029684009720148084;1;0;Young +27217;United Kingdom;M;Clerical support workers;Administrative and support service activities   ;Y50-64;8370;1;3.189578825147563e-05;63182165;0.00013247409296595012;0;1;Old +27218;United Kingdom;M;Clerical support workers;Administrative and support service activities   ;Y65-84;1320;1;5.03016015435458e-06;63182165;2.0891971650544105e-05;0;1;Old +27219;United Kingdom;M;Clerical support workers;Administrative and support service activities   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +27220;United Kingdom;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y15-29;34705;1;0.00013225129405823916;63182165;0.0005492847546455554;1;0;Young +27221;United Kingdom;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y30-49;97280;1;0.0003707075604663739;63182165;0.001539675001640099;1;0;Young +27222;United Kingdom;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y50-64;66610;1;0.0002538325514254232;63182165;0.0010542532057899567;0;1;Old +27223;United Kingdom;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y65-84;5185;1;1.9758621515400377e-05;63182165;8.206429773338727e-05;0;1;Old +27224;United Kingdom;M;Clerical support workers;"Public administration and defence; compulsory social security   ";Y_GE85;160;1;6.097163823460097e-07;63182165;2.5323602000659522e-06;0;1;Old +27225;United Kingdom;M;Clerical support workers;Education   ;Y15-29;10360;1;3.947913575690413e-05;63182165;0.0001639703229542704;1;0;Young +27226;United Kingdom;M;Clerical support workers;Education   ;Y30-49;10725;1;4.0870051254130965e-05;63182165;0.00016974726966067087;1;0;Young +27227;United Kingdom;M;Clerical support workers;Education   ;Y50-64;7130;1;2.7170486288294055e-05;63182165;0.000112848301415439;0;1;Old +27228;United Kingdom;M;Clerical support workers;Education   ;Y65-84;1645;1;6.268646555994912e-06;63182165;2.603582830692807e-05;0;1;Old +27229;United Kingdom;M;Clerical support workers;Education   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27230;United Kingdom;M;Clerical support workers;Human health and social work activities   ;Y15-29;15475;1;5.8971006355028125e-05;63182165;0.0002449267131001288;1;0;Young +27231;United Kingdom;M;Clerical support workers;Human health and social work activities   ;Y30-49;17120;1;6.523965291102303e-05;63182165;0.0002709625414070569;1;0;Young +27232;United Kingdom;M;Clerical support workers;Human health and social work activities   ;Y50-64;10475;1;3.9917369406715325e-05;63182165;0.0001657904568480678;0;1;Old +27233;United Kingdom;M;Clerical support workers;Human health and social work activities   ;Y65-84;1600;1;6.097163823460097e-06;63182165;2.532360200065952e-05;0;1;Old +27234;United Kingdom;M;Clerical support workers;Human health and social work activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +27235;United Kingdom;M;Clerical support workers;Arts, entertainment and recreation   ;Y15-29;11325;1;4.31564876879285e-05;63182165;0.0001792436204109182;1;0;Young +27236;United Kingdom;M;Clerical support workers;Arts, entertainment and recreation   ;Y30-49;7940;1;3.025717547392073e-05;63182165;0.00012566837492827287;1;0;Young +27237;United Kingdom;M;Clerical support workers;Arts, entertainment and recreation   ;Y50-64;4820;1;1.8367706018173543e-05;63182165;7.628735102698681e-05;0;1;Old +27238;United Kingdom;M;Clerical support workers;Arts, entertainment and recreation   ;Y65-84;1015;1;3.867888300507499e-06;63182165;1.6064660019168386e-05;0;1;Old +27239;United Kingdom;M;Clerical support workers;Arts, entertainment and recreation   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27240;United Kingdom;M;Clerical support workers;Other service activities   ;Y15-29;3660;1;1.3947262246164971e-05;63182165;5.792773957650865e-05;1;0;Young +27241;United Kingdom;M;Clerical support workers;Other service activities   ;Y30-49;4975;1;1.8958368763571237e-05;63182165;7.87405749708007e-05;1;0;Young +27242;United Kingdom;M;Clerical support workers;Other service activities   ;Y50-64;4505;1;1.7167326890429835e-05;63182165;7.130176688310697e-05;0;1;Old +27243;United Kingdom;M;Clerical support workers;Other service activities   ;Y65-84;1130;1;4.306121950318693e-06;63182165;1.7884793912965788e-05;0;1;Old +27244;United Kingdom;M;Clerical support workers;Other service activities   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27245;United Kingdom;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;1;0;Young +27246;United Kingdom;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;1;0;Young +27247;United Kingdom;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +27248;United Kingdom;M;Clerical support workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27249;United Kingdom;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y15-29;375;1;1.4290227711234603e-06;63182165;5.935219218904576e-06;1;0;Young +27250;United Kingdom;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y30-49;1015;1;3.867888300507499e-06;63182165;1.6064660019168386e-05;1;0;Young +27251;United Kingdom;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y50-64;545;1;2.0768464273660954e-06;63182165;8.62585193147465e-06;0;1;Old +27252;United Kingdom;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y65-84;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +27253;United Kingdom;M;Clerical support workers;Activities of extraterritorial organisations and bodies   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27254;United Kingdom;M;Service and sales workers;Agriculture, forestry and fishing   ;Y15-29;1080;1;4.115585580835566e-06;63182165;1.7093431350445177e-05;1;0;Young +27255;United Kingdom;M;Service and sales workers;Agriculture, forestry and fishing   ;Y30-49;1110;1;4.229907402525442e-06;63182165;1.7568248887957544e-05;1;0;Young +27256;United Kingdom;M;Service and sales workers;Agriculture, forestry and fishing   ;Y50-64;815;1;3.105742822574987e-06;63182165;1.2899209769085944e-05;0;1;Old +27257;United Kingdom;M;Service and sales workers;Agriculture, forestry and fishing   ;Y65-84;195;1;7.430918409841993e-07;63182165;3.0863139938303793e-06;0;1;Old +27258;United Kingdom;M;Service and sales workers;Agriculture, forestry and fishing   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27259;United Kingdom;M;Service and sales workers;Mining and quarrying   ;Y15-29;110;1;4.1918001286288164e-07;63182165;1.7409976375453422e-06;1;0;Young +27260;United Kingdom;M;Service and sales workers;Mining and quarrying   ;Y30-49;305;1;1.162271853847081e-06;63182165;4.827311631375722e-06;1;0;Young +27261;United Kingdom;M;Service and sales workers;Mining and quarrying   ;Y50-64;225;1;8.574136626740762e-07;63182165;3.5611315313427453e-06;0;1;Old +27262;United Kingdom;M;Service and sales workers;Mining and quarrying   ;Y65-84;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27263;United Kingdom;M;Service and sales workers;Manufacturing   ;Y15-29;8830;1;3.364872285072041e-05;63182165;0.00013975462854113973;1;0;Young +27264;United Kingdom;M;Service and sales workers;Manufacturing   ;Y30-49;12125;1;4.6205069599658545e-05;63182165;0.00019190542141124794;1;0;Young +27265;United Kingdom;M;Service and sales workers;Manufacturing   ;Y50-64;6885;1;2.623685807782673e-05;63182165;0.00010897062485908801;0;1;Old +27266;United Kingdom;M;Service and sales workers;Manufacturing   ;Y65-84;1140;1;4.344229224215319e-06;63182165;1.8043066425469908e-05;0;1;Old +27267;United Kingdom;M;Service and sales workers;Manufacturing   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27268;United Kingdom;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;6325;1;2.4102850739615694e-05;63182165;0.00010010736415885717;1;0;Young +27269;United Kingdom;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;6755;1;2.5741463517170595e-05;63182165;0.00010691308219653442;1;0;Young +27270;United Kingdom;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;3000;1;1.1432182168987682e-05;63182165;4.7481753751236606e-05;0;1;Old +27271;United Kingdom;M;Service and sales workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;250;1;9.526818474156401e-07;63182165;3.9568128126030505e-06;0;1;Old +27272;United Kingdom;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;1600;1;6.097163823460097e-06;63182165;2.532360200065952e-05;1;0;Young +27273;United Kingdom;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;1925;1;7.335650225100429e-06;63182165;3.0467458657043485e-05;1;0;Young +27274;United Kingdom;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;995;1;3.791673752714248e-06;63182165;1.574811499416014e-05;0;1;Old +27275;United Kingdom;M;Service and sales workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +27276;United Kingdom;M;Service and sales workers;Construction   ;Y15-29;6340;1;2.4160011650460635e-05;63182165;0.00010034477292761335;1;0;Young +27277;United Kingdom;M;Service and sales workers;Construction   ;Y30-49;7525;1;2.8675723607210768e-05;63182165;0.00011910006565935181;1;0;Young +27278;United Kingdom;M;Service and sales workers;Construction   ;Y50-64;4465;1;1.701489779484333e-05;63182165;7.066867683309048e-05;0;1;Old +27279;United Kingdom;M;Service and sales workers;Construction   ;Y65-84;845;1;3.2200646442648638e-06;63182165;1.337402730659831e-05;0;1;Old +27280;United Kingdom;M;Service and sales workers;Construction   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27281;United Kingdom;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;430585;1;0.0016408420530778537;63182165;0.006814976979658737;1;0;Young +27282;United Kingdom;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;194740;1;0.000742101051862887;63182165;0.003082198908505272;1;0;Young +27283;United Kingdom;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;85700;1;0.00032657933729408146;63182165;0.0013563954321603256;0;1;Old +27284;United Kingdom;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;15345;1;5.847561179437199e-05;63182165;0.00024286917043757524;0;1;Old +27285;United Kingdom;M;Service and sales workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;345;1;1.3147009494335833e-06;63182165;5.460401681392209e-06;0;1;Old +27286;United Kingdom;M;Service and sales workers;Transportation and storage   ;Y15-29;13505;1;5.146387339739288e-05;63182165;0.00021374702813681677;1;0;Young +27287;United Kingdom;M;Service and sales workers;Transportation and storage   ;Y30-49;26820;1;0.00010220370859074988;63182165;0.0004244868785360552;1;0;Young +27288;United Kingdom;M;Service and sales workers;Transportation and storage   ;Y50-64;12880;1;4.908216877885378e-05;63182165;0.00020385499610530916;0;1;Old +27289;United Kingdom;M;Service and sales workers;Transportation and storage   ;Y65-84;1530;1;5.830412906183717e-06;63182165;2.4215694413130667e-05;0;1;Old +27290;United Kingdom;M;Service and sales workers;Transportation and storage   ;Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +27291;United Kingdom;M;Service and sales workers;Accommodation and food service activities   ;Y15-29;25665;1;9.780231845568962e-05;63182165;0.0004062064033418291;1;0;Young +27292;United Kingdom;M;Service and sales workers;Accommodation and food service activities   ;Y30-49;11185;1;4.262298585337574e-05;63182165;0.00017702780523586048;1;0;Young +27293;United Kingdom;M;Service and sales workers;Accommodation and food service activities   ;Y50-64;3520;1;1.3413760411612212e-05;63182165;5.571192440145095e-05;0;1;Old +27294;United Kingdom;M;Service and sales workers;Accommodation and food service activities   ;Y65-84;580;1;2.210221886004285e-06;63182165;9.179805725239076e-06;0;1;Old +27295;United Kingdom;M;Service and sales workers;Accommodation and food service activities   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27296;United Kingdom;M;Service and sales workers;Information and communication   ;Y15-29;16465;1;6.274362647079406e-05;63182165;0.0002605956918380369;1;0;Young +27297;United Kingdom;M;Service and sales workers;Information and communication   ;Y30-49;14150;1;5.3921792563725235e-05;63182165;0.00022395560519333264;1;0;Young +27298;United Kingdom;M;Service and sales workers;Information and communication   ;Y50-64;4095;1;1.5604928660668186e-05;63182165;6.481259387043796e-05;0;1;Old +27299;United Kingdom;M;Service and sales workers;Information and communication   ;Y65-84;425;1;1.6195591406065882e-06;63182165;6.726581781425185e-06;0;1;Old +27300;United Kingdom;M;Service and sales workers;Information and communication   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27301;United Kingdom;M;Service and sales workers;Financial and insurance activities   ;Y15-29;19710;1;7.510943685024906e-05;63182165;0.0003119551221456245;1;0;Young +27302;United Kingdom;M;Service and sales workers;Financial and insurance activities   ;Y30-49;12770;1;4.86629887659909e-05;63182165;0.0002021139984677638;1;0;Young +27303;United Kingdom;M;Service and sales workers;Financial and insurance activities   ;Y50-64;3820;1;1.455697862851098e-05;63182165;6.046009977657461e-05;0;1;Old +27304;United Kingdom;M;Service and sales workers;Financial and insurance activities   ;Y65-84;645;1;2.4579191663323517e-06;63182165;1.0208577056515869e-05;0;1;Old +27305;United Kingdom;M;Service and sales workers;Financial and insurance activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27306;United Kingdom;M;Service and sales workers;Real estate activities   ;Y15-29;2305;1;8.783726633172202e-06;63182165;3.6481814132200124e-05;1;0;Young +27307;United Kingdom;M;Service and sales workers;Real estate activities   ;Y30-49;3385;1;1.2899312214007768e-05;63182165;5.35752454826453e-05;1;0;Young +27308;United Kingdom;M;Service and sales workers;Real estate activities   ;Y50-64;2040;1;7.773883874911624e-06;63182165;3.228759255084089e-05;0;1;Old +27309;United Kingdom;M;Service and sales workers;Real estate activities   ;Y65-84;390;1;1.4861836819683986e-06;63182165;6.1726279876607585e-06;0;1;Old +27310;United Kingdom;M;Service and sales workers;Real estate activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27311;United Kingdom;M;Service and sales workers;Professional, scientific and technical activities   ;Y15-29;10415;1;3.968872576333557e-05;63182165;0.00016484082177304306;1;0;Young +27312;United Kingdom;M;Service and sales workers;Professional, scientific and technical activities   ;Y30-49;8100;1;3.086689185626674e-05;63182165;0.00012820073512833882;1;0;Young +27313;United Kingdom;M;Service and sales workers;Professional, scientific and technical activities   ;Y50-64;3925;1;1.495710500442555e-05;63182165;6.212196115786789e-05;0;1;Old +27314;United Kingdom;M;Service and sales workers;Professional, scientific and technical activities   ;Y65-84;950;1;3.6201910201794326e-06;63182165;1.503588868789159e-05;0;1;Old +27315;United Kingdom;M;Service and sales workers;Professional, scientific and technical activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27316;United Kingdom;M;Service and sales workers;Administrative and support service activities   ;Y15-29;28670;1;0.00010925355426162562;63182165;0.0004537672933493178;1;0;Young +27317;United Kingdom;M;Service and sales workers;Administrative and support service activities   ;Y30-49;22010;1;8.387410984647296e-05;63182165;0.0003483578000215725;1;0;Young +27318;United Kingdom;M;Service and sales workers;Administrative and support service activities   ;Y50-64;9575;1;3.648771475601902e-05;63182165;0.00015154593072269683;0;1;Old +27319;United Kingdom;M;Service and sales workers;Administrative and support service activities   ;Y65-84;1435;1;5.4683938041657745e-06;63182165;2.2712105544341508e-05;0;1;Old +27320;United Kingdom;M;Service and sales workers;Administrative and support service activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +27321;United Kingdom;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y15-29;7870;1;2.9990424556644353e-05;63182165;0.00012456046734074403;1;0;Young +27322;United Kingdom;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y30-49;12160;1;4.633844505829674e-05;63182165;0.00019245937520501237;1;0;Young +27323;United Kingdom;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y50-64;7875;1;3.0009478193592664e-05;63182165;0.00012463960359699607;0;1;Old +27324;United Kingdom;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y65-84;830;1;3.162903733419925e-06;63182165;1.3136618537842126e-05;0;1;Old +27325;United Kingdom;M;Service and sales workers;"Public administration and defence; compulsory social security   ";Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27326;United Kingdom;M;Service and sales workers;Education   ;Y15-29;25845;1;9.848824938582888e-05;63182165;0.00040905530856690333;1;0;Young +27327;United Kingdom;M;Service and sales workers;Education   ;Y30-49;21360;1;8.13971370431923e-05;63182165;0.0003380700867088046;1;0;Young +27328;United Kingdom;M;Service and sales workers;Education   ;Y50-64;11775;1;4.487131501327665e-05;63182165;0.00018636588347360368;0;1;Old +27329;United Kingdom;M;Service and sales workers;Education   ;Y65-84;1450;1;5.525554715010713e-06;63182165;2.294951431309769e-05;0;1;Old +27330;United Kingdom;M;Service and sales workers;Education   ;Y_GE85;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +27331;United Kingdom;M;Service and sales workers;Human health and social work activities   ;Y15-29;45520;1;0.00017346431077743974;63182165;0.0007204564769187633;1;0;Young +27332;United Kingdom;M;Service and sales workers;Human health and social work activities   ;Y30-49;68665;1;0.00026166359621117974;63182165;0.0010867782071095537;1;0;Young +27333;United Kingdom;M;Service and sales workers;Human health and social work activities   ;Y50-64;36580;1;0.00013939640791385647;63182165;0.0005789608507400783;0;1;Old +27334;United Kingdom;M;Service and sales workers;Human health and social work activities   ;Y65-84;4080;1;1.554776774982325e-05;63182165;6.457518510168178e-05;0;1;Old +27335;United Kingdom;M;Service and sales workers;Human health and social work activities   ;Y_GE85;230;1;8.76467299622389e-07;63182165;3.6402677875948063e-06;0;1;Old +27336;United Kingdom;M;Service and sales workers;Arts, entertainment and recreation   ;Y15-29;35490;1;0.00013524271505912426;63182165;0.000561709146877129;1;0;Young +27337;United Kingdom;M;Service and sales workers;Arts, entertainment and recreation   ;Y30-49;13155;1;5.0130118811010986e-05;63182165;0.0002082074901991725;1;0;Young +27338;United Kingdom;M;Service and sales workers;Arts, entertainment and recreation   ;Y50-64;5755;1;2.1930736127508035e-05;63182165;9.108583094612221e-05;0;1;Old +27339;United Kingdom;M;Service and sales workers;Arts, entertainment and recreation   ;Y65-84;1370;1;5.220696523837708e-06;63182165;2.1683334213064717e-05;0;1;Old +27340;United Kingdom;M;Service and sales workers;Arts, entertainment and recreation   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27341;United Kingdom;M;Service and sales workers;Other service activities   ;Y15-29;19010;1;7.244192767748528e-05;63182165;0.0003008760462703359;1;0;Young +27342;United Kingdom;M;Service and sales workers;Other service activities   ;Y30-49;24320;1;9.267689011659347e-05;63182165;0.00038491875041002474;1;0;Young +27343;United Kingdom;M;Service and sales workers;Other service activities   ;Y50-64;12965;1;4.9406080606975096e-05;63182165;0.0002052003124615942;0;1;Old +27344;United Kingdom;M;Service and sales workers;Other service activities   ;Y65-84;3615;1;1.3775779513630156e-05;63182165;5.7215513270240106e-05;0;1;Old +27345;United Kingdom;M;Service and sales workers;Other service activities   ;Y_GE85;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +27346;United Kingdom;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;595;1;2.2673827968492233e-06;63182165;9.41721449399526e-06;1;0;Young +27347;United Kingdom;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;575;1;2.191168249055972e-06;63182165;9.100669468987016e-06;1;0;Young +27348;United Kingdom;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;315;1;1.2003791277437065e-06;63182165;4.9855841438798435e-06;0;1;Old +27349;United Kingdom;M;Service and sales workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +27350;United Kingdom;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y15-29;140;1;5.335018345527585e-07;63182165;2.215815175057708e-06;1;0;Young +27351;United Kingdom;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y30-49;130;1;4.953945606561329e-07;63182165;2.057542662553586e-06;1;0;Young +27352;United Kingdom;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y50-64;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +27353;United Kingdom;M;Service and sales workers;Activities of extraterritorial organisations and bodies   ;Y65-84;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27354;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y15-29;13360;1;5.091131792589181e-05;63182165;0.000211452076705507;1;0;Young +27355;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y30-49;40820;1;0.00015555389204602573;63182165;0.000646068396041826;1;0;Young +27356;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y50-64;41245;1;0.0001571734511866323;63182165;0.0006527949778232512;0;1;Old +27357;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y65-84;24825;1;9.460130744837306e-05;63182165;0.0003929115122914829;0;1;Old +27358;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Agriculture, forestry and fishing   ;Y_GE85;975;1;3.7154592049209964e-06;63182165;1.5431569969151895e-05;0;1;Old +27359;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y15-29;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;1;0;Young +27360;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y30-49;115;1;4.382336498111945e-07;63182165;1.8201338937974031e-06;1;0;Young +27361;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y50-64;115;1;4.382336498111945e-07;63182165;1.8201338937974031e-06;0;1;Old +27362;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y65-84;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +27363;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Mining and quarrying   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27364;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y15-29;970;1;3.6964055679726838e-06;63182165;1.5352433712899835e-05;1;0;Young +27365;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y30-49;3525;1;1.3432814048560525e-05;63182165;5.579106065770301e-05;1;0;Young +27366;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y50-64;3860;1;1.4709407724097483e-05;63182165;6.10931898265911e-05;0;1;Old +27367;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y65-84;1985;1;7.564293868480183e-06;63182165;3.141709373206822e-05;0;1;Old +27368;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Manufacturing   ;Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +27369;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;1;0;Young +27370;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;185;1;7.049845670875737e-07;63182165;2.9280414813262574e-06;1;0;Young +27371;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;200;1;7.621454779325121e-07;63182165;3.16545025008244e-06;0;1;Old +27372;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;90;1;3.4296546506963047e-07;63182165;1.424452612537098e-06;0;1;Old +27373;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27374;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;100;1;3.8107273896625605e-07;63182165;1.58272512504122e-06;1;0;Young +27375;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;290;1;1.1051109430021426e-06;63182165;4.589902862619538e-06;1;0;Young +27376;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;245;1;9.336282104673273e-07;63182165;3.8776765563509895e-06;0;1;Old +27377;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +27378;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y15-29;2840;1;1.0822465786641673e-05;63182165;4.494939355117065e-05;1;0;Young +27379;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y30-49;6940;1;2.644644808425817e-05;63182165;0.00010984112367786067;1;0;Young +27380;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y50-64;6190;1;2.358840254201125e-05;63182165;9.797068524005152e-05;0;1;Old +27381;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y65-84;2655;1;1.0117481219554098e-05;63182165;4.202135206984439e-05;0;1;Old +27382;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Construction   ;Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +27383;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;2070;1;7.8882056966015e-06;63182165;3.276241008835326e-05;1;0;Young +27384;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;4735;1;1.8043794190052223e-05;63182165;7.494203467070178e-05;1;0;Young +27385;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;4610;1;1.7567453266344403e-05;63182165;7.296362826440025e-05;0;1;Old +27386;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;2450;1;9.336282104673274e-06;63182165;3.8776765563509894e-05;0;1;Old +27387;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +27388;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y15-29;245;1;9.336282104673273e-07;63182165;3.8776765563509895e-06;1;0;Young +27389;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y30-49;830;1;3.162903733419925e-06;63182165;1.3136618537842126e-05;1;0;Young +27390;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y50-64;890;1;3.3915473767996787e-06;63182165;1.408625361286686e-05;0;1;Old +27391;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y65-84;425;1;1.6195591406065882e-06;63182165;6.726581781425185e-06;0;1;Old +27392;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Transportation and storage   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27393;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y15-29;1190;1;4.534765593698447e-06;63182165;1.883442898799052e-05;1;0;Young +27394;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y30-49;2055;1;7.831044785756562e-06;63182165;3.252500131959707e-05;1;0;Young +27395;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y50-64;1740;1;6.630665658012855e-06;63182165;2.753941717571723e-05;0;1;Old +27396;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y65-84;605;1;2.3054900707458493e-06;63182165;9.575487006499382e-06;0;1;Old +27397;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Accommodation and food service activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27398;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y15-29;130;1;4.953945606561329e-07;63182165;2.057542662553586e-06;1;0;Young +27399;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y30-49;565;1;2.1530609751593466e-06;63182165;8.942396956482894e-06;1;0;Young +27400;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y50-64;580;1;2.210221886004285e-06;63182165;9.179805725239076e-06;0;1;Old +27401;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y65-84;245;1;9.336282104673273e-07;63182165;3.8776765563509895e-06;0;1;Old +27402;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Information and communication   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27403;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y15-29;130;1;4.953945606561329e-07;63182165;2.057542662553586e-06;1;0;Young +27404;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y30-49;335;1;1.2765936755369577e-06;63182165;5.302129168888087e-06;1;0;Young +27405;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y50-64;325;1;1.2384864016403321e-06;63182165;5.1438566563839654e-06;0;1;Old +27406;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y65-84;110;1;4.1918001286288164e-07;63182165;1.7409976375453422e-06;0;1;Old +27407;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Financial and insurance activities   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27408;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y15-29;690;1;2.6294018988671666e-06;63182165;1.0920803362784418e-05;1;0;Young +27409;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y30-49;1485;1;5.658930173648902e-06;63182165;2.350346810686212e-05;1;0;Young +27410;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y50-64;1255;1;4.782462874026513e-06;63182165;1.986320031926731e-05;0;1;Old +27411;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y65-84;335;1;1.2765936755369577e-06;63182165;5.302129168888087e-06;0;1;Old +27412;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Real estate activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27413;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y15-29;525;1;2.0006318795728442e-06;63182165;8.309306906466405e-06;1;0;Young +27414;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y30-49;1505;1;5.735144721442154e-06;63182165;2.3820013131870363e-05;1;0;Young +27415;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y50-64;1205;1;4.591926504543386e-06;63182165;1.9071837756746703e-05;0;1;Old +27416;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y65-84;375;1;1.4290227711234603e-06;63182165;5.935219218904576e-06;0;1;Old +27417;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Professional, scientific and technical activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27418;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y15-29;25605;1;9.757367481230987e-05;63182165;0.0004052567682668044;1;0;Young +27419;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y30-49;48860;1;0.0001861921402589127;63182165;0.0007733194960951402;1;0;Young +27420;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y50-64;28535;1;0.00010873910606402116;63182165;0.0004516306144305122;0;1;Old +27421;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y65-84;4005;1;1.5261963195598555e-05;63182165;6.338814125790087e-05;0;1;Old +27422;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Administrative and support service activities   ;Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +27423;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y15-29;740;1;2.819938268350295e-06;63182165;1.171216592530503e-05;1;0;Young +27424;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y30-49;2370;1;9.031423913500269e-06;63182165;3.751058546347692e-05;1;0;Young +27425;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y50-64;1760;1;6.706880205806106e-06;63182165;2.7855962200725475e-05;0;1;Old +27426;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y65-84;410;1;1.5623982297616498e-06;63182165;6.489173012669002e-06;0;1;Old +27427;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Public administration and defence; compulsory social security   ";Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27428;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y15-29;1210;1;4.610980141491699e-06;63182165;1.9150974012998763e-05;1;0;Young +27429;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y30-49;2420;1;9.221960282983397e-06;63182165;3.8301948025997526e-05;1;0;Young +27430;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y50-64;2265;1;8.6312975375857e-06;63182165;3.5848724082183636e-05;0;1;Old +27431;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y65-84;520;1;1.9815782426245316e-06;63182165;8.230170650214345e-06;0;1;Old +27432;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Education   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27433;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y15-29;760;1;2.896152816143546e-06;63182165;1.2028710950313273e-05;1;0;Young +27434;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y30-49;1625;1;6.192432008201661e-06;63182165;2.5719283281919825e-05;1;0;Young +27435;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y50-64;1980;1;7.54524023153187e-06;63182165;3.1337957475816157e-05;0;1;Old +27436;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y65-84;620;1;2.3626509815907875e-06;63182165;9.812895775255565e-06;0;1;Old +27437;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Human health and social work activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27438;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y15-29;5820;1;2.2178433407836103e-05;63182165;9.211460227739901e-05;1;0;Young +27439;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y30-49;7985;1;3.0428658206455547e-05;63182165;0.00012638060123454142;1;0;Young +27440;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y50-64;4555;1;1.7357863259912962e-05;63182165;7.209312944562757e-05;0;1;Old +27441;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y65-84;855;1;3.2581719181614894e-06;63182165;1.3532299819102432e-05;0;1;Old +27442;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Arts, entertainment and recreation   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27443;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y15-29;560;1;2.134007338211034e-06;63182165;8.863260700230832e-06;1;0;Young +27444;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y30-49;1265;1;4.820570147923139e-06;63182165;2.0021472831771434e-05;1;0;Young +27445;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y50-64;1360;1;5.182589249941082e-06;63182165;2.1525061700560593e-05;0;1;Old +27446;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y65-84;630;1;2.400758255487413e-06;63182165;9.971168287759687e-06;0;1;Old +27447;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Other service activities   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27448;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;180;1;6.859309301392609e-07;63182165;2.848905225074196e-06;1;0;Young +27449;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;575;1;2.191168249055972e-06;63182165;9.100669468987016e-06;1;0;Young +27450;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;580;1;2.210221886004285e-06;63182165;9.179805725239076e-06;0;1;Old +27451;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;140;1;5.335018345527585e-07;63182165;2.215815175057708e-06;0;1;Old +27452;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27453;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y15-29;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;1;0;Young +27454;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y30-49;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;1;0;Young +27455;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y50-64;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +27456;United Kingdom;M;Skilled agricultural, forestry, and fishery workers;Activities of extraterritorial organisations and bodies   ;Y65-84;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27457;United Kingdom;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y15-29;2485;1;9.469657563311463e-06;63182165;3.933071935727432e-05;1;0;Young +27458;United Kingdom;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y30-49;4815;1;1.8348652381225228e-05;63182165;7.620821477073475e-05;1;0;Young +27459;United Kingdom;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y50-64;4300;1;1.638612777554901e-05;63182165;6.805718037677247e-05;0;1;Old +27460;United Kingdom;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y65-84;1345;1;5.125428339096144e-06;63182165;2.128765293180441e-05;0;1;Old +27461;United Kingdom;M;Craft and related trades workers;Agriculture, forestry and fishing   ;Y_GE85;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +27462;United Kingdom;M;Craft and related trades workers;Mining and quarrying   ;Y15-29;2110;1;8.040634792188003e-06;63182165;3.3395500138369746e-05;1;0;Young +27463;United Kingdom;M;Craft and related trades workers;Mining and quarrying   ;Y30-49;5590;1;2.1301966108213715e-05;63182165;8.84743344898042e-05;1;0;Young +27464;United Kingdom;M;Craft and related trades workers;Mining and quarrying   ;Y50-64;4345;1;1.6557610508083826e-05;63182165;6.876940668304101e-05;0;1;Old +27465;United Kingdom;M;Craft and related trades workers;Mining and quarrying   ;Y65-84;335;1;1.2765936755369577e-06;63182165;5.302129168888087e-06;0;1;Old +27466;United Kingdom;M;Craft and related trades workers;Mining and quarrying   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27467;United Kingdom;M;Craft and related trades workers;Manufacturing   ;Y15-29;106615;1;0.0004062807006488739;63182165;0.0016874223920626968;1;0;Young +27468;United Kingdom;M;Craft and related trades workers;Manufacturing   ;Y30-49;265515;1;0.0010118052828662547;63182165;0.004202372615753195;1;0;Young +27469;United Kingdom;M;Craft and related trades workers;Manufacturing   ;Y50-64;188585;1;0.000718646024779514;63182165;0.0029847821770589847;0;1;Old +27470;United Kingdom;M;Craft and related trades workers;Manufacturing   ;Y65-84;19955;1;7.60430650607164e-05;63182165;0.0003158327987019755;0;1;Old +27471;United Kingdom;M;Craft and related trades workers;Manufacturing   ;Y_GE85;580;1;2.210221886004285e-06;63182165;9.179805725239076e-06;0;1;Old +27472;United Kingdom;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y15-29;7235;1;2.7570612664208627e-05;63182165;0.00011451016279673227;1;0;Young +27473;United Kingdom;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y30-49;14635;1;5.5769995347711574e-05;63182165;0.00023163182204978257;1;0;Young +27474;United Kingdom;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y50-64;10990;1;4.187989401239154e-05;63182165;0.0001739414912420301;0;1;Old +27475;United Kingdom;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y65-84;775;1;2.9533137269884843e-06;63182165;1.2266119719069455e-05;0;1;Old +27476;United Kingdom;M;Craft and related trades workers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27477;United Kingdom;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;2470;1;9.412496652466524e-06;63182165;3.9093310588518134e-05;1;0;Young +27478;United Kingdom;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;6115;1;2.3302597987786558e-05;63182165;9.678364139627061e-05;1;0;Young +27479;United Kingdom;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;4430;1;1.6881522336205142e-05;63182165;7.011472303932606e-05;0;1;Old +27480;United Kingdom;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;345;1;1.3147009494335833e-06;63182165;5.460401681392209e-06;0;1;Old +27481;United Kingdom;M;Craft and related trades workers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27482;United Kingdom;M;Craft and related trades workers;Construction   ;Y15-29;325970;1;0.0012421828072083049;63182165;0.005159209090096865;1;0;Young +27483;United Kingdom;M;Craft and related trades workers;Construction   ;Y30-49;604775;1;0.0023046326570831752;63182165;0.00957192587496804;1;0;Young +27484;United Kingdom;M;Craft and related trades workers;Construction   ;Y50-64;326675;1;0.0012448693700180169;63182165;0.005170367302228406;0;1;Old +27485;United Kingdom;M;Craft and related trades workers;Construction   ;Y65-84;33825;1;0.0001288978539553361;63182165;0.0005353567735451927;0;1;Old +27486;United Kingdom;M;Craft and related trades workers;Construction   ;Y_GE85;630;1;2.400758255487413e-06;63182165;9.971168287759687e-06;0;1;Old +27487;United Kingdom;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;109765;1;0.00041828449192631093;63182165;0.0017372782335014951;1;0;Young +27488;United Kingdom;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;170055;1;0.0006480332462490667;63182165;0.002691503211388847;1;0;Young +27489;United Kingdom;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;93340;1;0.0003556932945511034;63182165;0.0014773156317134748;0;1;Old +27490;United Kingdom;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;12595;1;4.799611147279995e-05;63182165;0.00019934422949894167;0;1;Old +27491;United Kingdom;M;Craft and related trades workers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;300;1;1.1432182168987682e-06;63182165;4.74817537512366e-06;0;1;Old +27492;United Kingdom;M;Craft and related trades workers;Transportation and storage   ;Y15-29;9440;1;3.597326655841457e-05;63182165;0.00014940925180389117;1;0;Young +27493;United Kingdom;M;Craft and related trades workers;Transportation and storage   ;Y30-49;26085;1;9.940282395934789e-05;63182165;0.00041285384886700227;1;0;Young +27494;United Kingdom;M;Craft and related trades workers;Transportation and storage   ;Y50-64;19125;1;7.288016132729647e-05;63182165;0.0003026961801641333;0;1;Old +27495;United Kingdom;M;Craft and related trades workers;Transportation and storage   ;Y65-84;1960;1;7.469025683738619e-06;63182165;3.1021412450807916e-05;0;1;Old +27496;United Kingdom;M;Craft and related trades workers;Transportation and storage   ;Y_GE85;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +27497;United Kingdom;M;Craft and related trades workers;Accommodation and food service activities   ;Y15-29;91805;1;0.0003498438280079714;63182165;0.0014530208010440921;1;0;Young +27498;United Kingdom;M;Craft and related trades workers;Accommodation and food service activities   ;Y30-49;123250;1;0.0004696721507759106;63182165;0.0019507087166133039;1;0;Young +27499;United Kingdom;M;Craft and related trades workers;Accommodation and food service activities   ;Y50-64;36605;1;0.00013949167609859803;63182165;0.0005793565320213386;0;1;Old +27500;United Kingdom;M;Craft and related trades workers;Accommodation and food service activities   ;Y65-84;3480;1;1.326133131602571e-05;63182165;5.507883435143446e-05;0;1;Old +27501;United Kingdom;M;Craft and related trades workers;Accommodation and food service activities   ;Y_GE85;140;1;5.335018345527585e-07;63182165;2.215815175057708e-06;0;1;Old +27502;United Kingdom;M;Craft and related trades workers;Information and communication   ;Y15-29;13345;1;5.085415701504687e-05;63182165;0.00021121466793675082;1;0;Young +27503;United Kingdom;M;Craft and related trades workers;Information and communication   ;Y30-49;40790;1;0.00015543957022433585;63182165;0.0006455935785043137;1;0;Young +27504;United Kingdom;M;Craft and related trades workers;Information and communication   ;Y50-64;24845;1;9.467752199616632e-05;63182165;0.00039322805731649115;0;1;Old +27505;United Kingdom;M;Craft and related trades workers;Information and communication   ;Y65-84;1720;1;6.554451110219604e-06;63182165;2.7222872150708984e-05;0;1;Old +27506;United Kingdom;M;Craft and related trades workers;Information and communication   ;Y_GE85;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +27507;United Kingdom;M;Craft and related trades workers;Financial and insurance activities   ;Y15-29;1945;1;7.4118647728936806e-06;63182165;3.078400368205173e-05;1;0;Young +27508;United Kingdom;M;Craft and related trades workers;Financial and insurance activities   ;Y30-49;5275;1;2.0101586980470007e-05;63182165;8.348875034592436e-05;1;0;Young +27509;United Kingdom;M;Craft and related trades workers;Financial and insurance activities   ;Y50-64;2475;1;9.431550289414837e-06;63182165;3.91724468447702e-05;0;1;Old +27510;United Kingdom;M;Craft and related trades workers;Financial and insurance activities   ;Y65-84;280;1;1.067003669105517e-06;63182165;4.431630350115416e-06;0;1;Old +27511;United Kingdom;M;Craft and related trades workers;Financial and insurance activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27512;United Kingdom;M;Craft and related trades workers;Real estate activities   ;Y15-29;3115;1;1.1870415818798876e-05;63182165;4.930188764503401e-05;1;0;Young +27513;United Kingdom;M;Craft and related trades workers;Real estate activities   ;Y30-49;7940;1;3.025717547392073e-05;63182165;0.00012566837492827287;1;0;Young +27514;United Kingdom;M;Craft and related trades workers;Real estate activities   ;Y50-64;5940;1;2.2635720694595608e-05;63182165;9.401387242744848e-05;0;1;Old +27515;United Kingdom;M;Craft and related trades workers;Real estate activities   ;Y65-84;575;1;2.191168249055972e-06;63182165;9.100669468987016e-06;0;1;Old +27516;United Kingdom;M;Craft and related trades workers;Real estate activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27517;United Kingdom;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y15-29;9220;1;3.5134906532688806e-05;63182165;0.0001459272565288005;1;0;Young +27518;United Kingdom;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y30-49;21155;1;8.061593792831147e-05;63182165;0.0003348255002024701;1;0;Young +27519;United Kingdom;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y50-64;14440;1;5.502690350672737e-05;63182165;0.00022854550805595218;0;1;Old +27520;United Kingdom;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y65-84;2065;1;7.869152059653188e-06;63182165;3.268327383210119e-05;0;1;Old +27521;United Kingdom;M;Craft and related trades workers;Professional, scientific and technical activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +27522;United Kingdom;M;Craft and related trades workers;Administrative and support service activities   ;Y15-29;11725;1;4.4680778643793525e-05;63182165;0.00018557452091108305;1;0;Young +27523;United Kingdom;M;Craft and related trades workers;Administrative and support service activities   ;Y30-49;24395;1;9.296269467081816e-05;63182165;0.00038610579425380566;1;0;Young +27524;United Kingdom;M;Craft and related trades workers;Administrative and support service activities   ;Y50-64;15415;1;5.874236271164837e-05;63182165;0.00024397707802510408;0;1;Old +27525;United Kingdom;M;Craft and related trades workers;Administrative and support service activities   ;Y65-84;1770;1;6.744987479702732e-06;63182165;2.8014234713229595e-05;0;1;Old +27526;United Kingdom;M;Craft and related trades workers;Administrative and support service activities   ;Y_GE85;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +27527;United Kingdom;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y15-29;9625;1;3.6678251125502144e-05;63182165;0.00015233729328521743;1;0;Young +27528;United Kingdom;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y30-49;15770;1;6.009517093497858e-05;63182165;0.0002495957522190004;1;0;Young +27529;United Kingdom;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y50-64;10935;1;4.16703040059601e-05;63182165;0.00017307099242325742;0;1;Old +27530;United Kingdom;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y65-84;1195;1;4.55381923064676e-06;63182165;1.891356524424258e-05;0;1;Old +27531;United Kingdom;M;Craft and related trades workers;"Public administration and defence; compulsory social security   ";Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +27532;United Kingdom;M;Craft and related trades workers;Education   ;Y15-29;6265;1;2.387420709623594e-05;63182165;9.915772908383244e-05;1;0;Young +27533;United Kingdom;M;Craft and related trades workers;Education   ;Y30-49;9810;1;3.738323569258972e-05;63182165;0.0001552653347665437;1;0;Young +27534;United Kingdom;M;Craft and related trades workers;Education   ;Y50-64;8465;1;3.2257807353493575e-05;63182165;0.00013397768183473927;0;1;Old +27535;United Kingdom;M;Craft and related trades workers;Education   ;Y65-84;1110;1;4.229907402525442e-06;63182165;1.7568248887957544e-05;0;1;Old +27536;United Kingdom;M;Craft and related trades workers;Education   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27537;United Kingdom;M;Craft and related trades workers;Human health and social work activities   ;Y15-29;5190;1;1.9777675152348688e-05;63182165;8.214343398963933e-05;1;0;Young +27538;United Kingdom;M;Craft and related trades workers;Human health and social work activities   ;Y30-49;13625;1;5.1921160684152385e-05;63182165;0.00021564629828686624;1;0;Young +27539;United Kingdom;M;Craft and related trades workers;Human health and social work activities   ;Y50-64;12265;1;4.67385714342113e-05;63182165;0.00019412123658630565;0;1;Old +27540;United Kingdom;M;Craft and related trades workers;Human health and social work activities   ;Y65-84;1550;1;5.9066274539769685e-06;63182165;2.453223943813891e-05;0;1;Old +27541;United Kingdom;M;Craft and related trades workers;Human health and social work activities   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27542;United Kingdom;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y15-29;6145;1;2.3416919809476436e-05;63182165;9.725845893378298e-05;1;0;Young +27543;United Kingdom;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y30-49;10030;1;3.822159571831548e-05;63182165;0.00015874733004163437;1;0;Young +27544;United Kingdom;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y50-64;5895;1;2.2464237962060796e-05;63182165;9.330164612117992e-05;0;1;Old +27545;United Kingdom;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y65-84;1005;1;3.829781026610873e-06;63182165;1.5906387506664262e-05;0;1;Old +27546;United Kingdom;M;Craft and related trades workers;Arts, entertainment and recreation   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27547;United Kingdom;M;Craft and related trades workers;Other service activities   ;Y15-29;7480;1;2.8504240874675952e-05;63182165;0.00011838783935308326;1;0;Young +27548;United Kingdom;M;Craft and related trades workers;Other service activities   ;Y30-49;17850;1;6.80214839054767e-05;63182165;0.00028251643481985776;1;0;Young +27549;United Kingdom;M;Craft and related trades workers;Other service activities   ;Y50-64;12755;1;4.860582785514596e-05;63182165;0.00020187658969900762;0;1;Old +27550;United Kingdom;M;Craft and related trades workers;Other service activities   ;Y65-84;2385;1;9.088584824345206e-06;63182165;3.77479942322331e-05;0;1;Old +27551;United Kingdom;M;Craft and related trades workers;Other service activities   ;Y_GE85;55;1;2.0959000643144082e-07;63182165;8.704988187726711e-07;0;1;Old +27552;United Kingdom;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;125;1;4.7634092370782007e-07;63182165;1.9784064063015252e-06;1;0;Young +27553;United Kingdom;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;510;1;1.943470968727906e-06;63182165;8.071898137710223e-06;1;0;Young +27554;United Kingdom;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;425;1;1.6195591406065882e-06;63182165;6.726581781425185e-06;0;1;Old +27555;United Kingdom;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +27556;United Kingdom;M;Craft and related trades workers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27557;United Kingdom;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y15-29;325;1;1.2384864016403321e-06;63182165;5.1438566563839654e-06;1;0;Young +27558;United Kingdom;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y30-49;405;1;1.543344592813337e-06;63182165;6.410036756416941e-06;1;0;Young +27559;United Kingdom;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y50-64;185;1;7.049845670875737e-07;63182165;2.9280414813262574e-06;0;1;Old +27560;United Kingdom;M;Craft and related trades workers;Activities of extraterritorial organisations and bodies   ;Y65-84;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27561;United Kingdom;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y15-29;3135;1;1.1946630366592128e-05;63182165;4.961843267004225e-05;1;0;Young +27562;United Kingdom;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y30-49;5360;1;2.0425498808591323e-05;63182165;8.48340667022094e-05;1;0;Young +27563;United Kingdom;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y50-64;4090;1;1.558587502371987e-05;63182165;6.47334576141859e-05;0;1;Old +27564;United Kingdom;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y65-84;915;1;3.486815561541243e-06;63182165;1.4481934894127163e-05;0;1;Old +27565;United Kingdom;M;Plant and machine operators, and assemblers;Agriculture, forestry and fishing   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27566;United Kingdom;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y15-29;2975;1;1.1336913984246117e-05;63182165;4.70860724699763e-05;1;0;Young +27567;United Kingdom;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y30-49;11620;1;4.428065226787895e-05;63182165;0.00018391265952978977;1;0;Young +27568;United Kingdom;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y50-64;8675;1;3.305806010532271e-05;63182165;0.00013730140459732585;0;1;Old +27569;United Kingdom;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y65-84;1065;1;4.058424669990627e-06;63182165;1.6856022581688993e-05;0;1;Old +27570;United Kingdom;M;Plant and machine operators, and assemblers;Mining and quarrying   ;Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +27571;United Kingdom;M;Plant and machine operators, and assemblers;Manufacturing   ;Y15-29;111930;1;0.0004265347167249304;63182165;0.0017715442324586377;1;0;Young +27572;United Kingdom;M;Plant and machine operators, and assemblers;Manufacturing   ;Y30-49;266450;1;0.0010153683129755892;63182165;0.004217171095672331;1;0;Young +27573;United Kingdom;M;Plant and machine operators, and assemblers;Manufacturing   ;Y50-64;165925;1;0.0006322949421297603;63182165;0.0026261366637246445;0;1;Old +27574;United Kingdom;M;Plant and machine operators, and assemblers;Manufacturing   ;Y65-84;15190;1;5.788494904897429e-05;63182165;0.00024041594649376133;0;1;Old +27575;United Kingdom;M;Plant and machine operators, and assemblers;Manufacturing   ;Y_GE85;435;1;1.6576664145032138e-06;63182165;6.884854293929308e-06;0;1;Old +27576;United Kingdom;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y15-29;2000;1;7.621454779325121e-06;63182165;3.1654502500824404e-05;1;0;Young +27577;United Kingdom;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y30-49;6210;1;2.36646170898045e-05;63182165;9.828723026505976e-05;1;0;Young +27578;United Kingdom;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y50-64;4680;1;1.7834204183620782e-05;63182165;7.40715358519291e-05;0;1;Old +27579;United Kingdom;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y65-84;425;1;1.6195591406065882e-06;63182165;6.726581781425185e-06;0;1;Old +27580;United Kingdom;M;Plant and machine operators, and assemblers;Electricity, gas, steam and air conditioning supply   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27581;United Kingdom;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;8885;1;3.3858312857151854e-05;63182165;0.0001406251273599124;1;0;Young +27582;United Kingdom;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;31915;1;0.00012161936464108062;63182165;0.0005051267236569054;1;0;Young +27583;United Kingdom;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;19065;1;7.265151768391672e-05;63182165;0.0003017465450891086;0;1;Old +27584;United Kingdom;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;1495;1;5.697037447545528e-06;63182165;2.366174061936624e-05;0;1;Old +27585;United Kingdom;M;Plant and machine operators, and assemblers;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27586;United Kingdom;M;Plant and machine operators, and assemblers;Construction   ;Y15-29;51065;1;0.00019459479415311865;63182165;0.0008082185851022991;1;0;Young +27587;United Kingdom;M;Plant and machine operators, and assemblers;Construction   ;Y30-49;117855;1;0.0004491132765086811;63182165;0.00186532069611733;1;0;Young +27588;United Kingdom;M;Plant and machine operators, and assemblers;Construction   ;Y50-64;63720;1;0.00024281954926929836;63182165;0.0010085124496762654;0;1;Old +27589;United Kingdom;M;Plant and machine operators, and assemblers;Construction   ;Y65-84;6805;1;2.5931999886653725e-05;63182165;0.00010770444475905502;0;1;Old +27590;United Kingdom;M;Plant and machine operators, and assemblers;Construction   ;Y_GE85;160;1;6.097163823460097e-07;63182165;2.5323602000659522e-06;0;1;Old +27591;United Kingdom;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;43995;1;0.00016765295150820435;63182165;0.0006963199187618848;1;0;Young +27592;United Kingdom;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;120990;1;0.0004610599068752732;63182165;0.001914939128787372;1;0;Young +27593;United Kingdom;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;86010;1;0.0003277606627848768;63182165;0.0013613018800479534;0;1;Old +27594;United Kingdom;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;13605;1;5.184494613635913e-05;63182165;0.000215329753261858;0;1;Old +27595;United Kingdom;M;Plant and machine operators, and assemblers;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;175;1;6.668772931909481e-07;63182165;2.769768968822135e-06;0;1;Old +27596;United Kingdom;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y15-29;51775;1;0.00019730041059977908;63182165;0.0008194559334900917;1;0;Young +27597;United Kingdom;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y30-49;304345;1;0.001159775827406852;63182165;0.004816944781806701;1;0;Young +27598;United Kingdom;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y50-64;216135;1;0.0008236315643647175;63182165;0.003420822949007841;0;1;Old +27599;United Kingdom;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y65-84;28185;1;0.00010740535147763926;63182165;0.0004460910764928679;0;1;Old +27600;United Kingdom;M;Plant and machine operators, and assemblers;Transportation and storage   ;Y_GE85;380;1;1.448076408071773e-06;63182165;6.014355475156637e-06;0;1;Old +27601;United Kingdom;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y15-29;11155;1;4.2508664031685866e-05;63182165;0.0001765529876983481;1;0;Young +27602;United Kingdom;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y30-49;15880;1;6.051435094784146e-05;63182165;0.00025133674985654573;1;0;Young +27603;United Kingdom;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y50-64;8455;1;3.221970007959695e-05;63182165;0.00013381940932223515;0;1;Old +27604;United Kingdom;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y65-84;1545;1;5.887573817028656e-06;63182165;2.445310318188685e-05;0;1;Old +27605;United Kingdom;M;Plant and machine operators, and assemblers;Accommodation and food service activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27606;United Kingdom;M;Plant and machine operators, and assemblers;Information and communication   ;Y15-29;2995;1;1.1413128532039369e-05;63182165;4.740261749498454e-05;1;0;Young +27607;United Kingdom;M;Plant and machine operators, and assemblers;Information and communication   ;Y30-49;7935;1;3.0238121836972417e-05;63182165;0.00012558923867202082;1;0;Young +27608;United Kingdom;M;Plant and machine operators, and assemblers;Information and communication   ;Y50-64;4330;1;1.650044959723889e-05;63182165;6.853199791428483e-05;0;1;Old +27609;United Kingdom;M;Plant and machine operators, and assemblers;Information and communication   ;Y65-84;615;1;2.343597344642475e-06;63182165;9.733759519003503e-06;0;1;Old +27610;United Kingdom;M;Plant and machine operators, and assemblers;Information and communication   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27611;United Kingdom;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y15-29;1005;1;3.829781026610873e-06;63182165;1.5906387506664262e-05;1;0;Young +27612;United Kingdom;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y30-49;3185;1;1.2137166736075255e-05;63182165;5.040979523256286e-05;1;0;Young +27613;United Kingdom;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y50-64;1775;1;6.764041116651045e-06;63182165;2.8093370969481655e-05;0;1;Old +27614;United Kingdom;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y65-84;315;1;1.2003791277437065e-06;63182165;4.9855841438798435e-06;0;1;Old +27615;United Kingdom;M;Plant and machine operators, and assemblers;Financial and insurance activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27616;United Kingdom;M;Plant and machine operators, and assemblers;Real estate activities   ;Y15-29;900;1;3.4296546506963047e-06;63182165;1.4244526125370981e-05;1;0;Young +27617;United Kingdom;M;Plant and machine operators, and assemblers;Real estate activities   ;Y30-49;2990;1;1.1394074895091056e-05;63182165;4.732348123873248e-05;1;0;Young +27618;United Kingdom;M;Plant and machine operators, and assemblers;Real estate activities   ;Y50-64;2625;1;1.0003159397864222e-05;63182165;4.154653453233203e-05;0;1;Old +27619;United Kingdom;M;Plant and machine operators, and assemblers;Real estate activities   ;Y65-84;450;1;1.7148273253481523e-06;63182165;7.122263062685491e-06;0;1;Old +27620;United Kingdom;M;Plant and machine operators, and assemblers;Real estate activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27621;United Kingdom;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y15-29;6035;1;2.2997739796613553e-05;63182165;9.551746129623763e-05;1;0;Young +27622;United Kingdom;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y30-49;15220;1;5.7999270870664174e-05;63182165;0.0002408907640312737;1;0;Young +27623;United Kingdom;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y50-64;11425;1;4.353756042689475e-05;63182165;0.0001808263455359594;0;1;Old +27624;United Kingdom;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y65-84;2040;1;7.773883874911624e-06;63182165;3.228759255084089e-05;0;1;Old +27625;United Kingdom;M;Plant and machine operators, and assemblers;Professional, scientific and technical activities   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27626;United Kingdom;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y15-29;11395;1;4.342323860520488e-05;63182165;0.00018035152799844703;1;0;Young +27627;United Kingdom;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y30-49;33585;1;0.0001279832793818171;63182165;0.0005315582332450938;1;0;Young +27628;United Kingdom;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y50-64;25150;1;9.58397938500134e-05;63182165;0.00039805536894786686;0;1;Old +27629;United Kingdom;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y65-84;3855;1;1.469035408714917e-05;63182165;6.101405357033904e-05;0;1;Old +27630;United Kingdom;M;Plant and machine operators, and assemblers;Administrative and support service activities   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +27631;United Kingdom;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y15-29;5150;1;1.9625246056762187e-05;63182165;8.151034393962283e-05;1;0;Young +27632;United Kingdom;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y30-49;11010;1;4.195610856018479e-05;63182165;0.00017425803626703833;1;0;Young +27633;United Kingdom;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y50-64;10410;1;3.966967212638726e-05;63182165;0.00016476168551679101;0;1;Old +27634;United Kingdom;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y65-84;1345;1;5.125428339096144e-06;63182165;2.128765293180441e-05;0;1;Old +27635;United Kingdom;M;Plant and machine operators, and assemblers;"Public administration and defence; compulsory social security   ";Y_GE85;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old +27636;United Kingdom;M;Plant and machine operators, and assemblers;Education   ;Y15-29;3540;1;1.3489974959405464e-05;63182165;5.602846942645919e-05;1;0;Young +27637;United Kingdom;M;Plant and machine operators, and assemblers;Education   ;Y30-49;17895;1;6.819296663801152e-05;63182165;0.00028322866112612634;1;0;Young +27638;United Kingdom;M;Plant and machine operators, and assemblers;Education   ;Y50-64;17450;1;6.649719294961168e-05;63182165;0.0002761855343196929;0;1;Old +27639;United Kingdom;M;Plant and machine operators, and assemblers;Education   ;Y65-84;2785;1;1.0612875780210231e-05;63182165;4.407889473239798e-05;0;1;Old +27640;United Kingdom;M;Plant and machine operators, and assemblers;Education   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27641;United Kingdom;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y15-29;2570;1;9.79356939143278e-06;63182165;4.0676035713559356e-05;1;0;Young +27642;United Kingdom;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y30-49;9720;1;3.7040270227520086e-05;63182165;0.00015384088215400659;1;0;Young +27643;United Kingdom;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y50-64;13790;1;5.254993070344671e-05;63182165;0.00021825779474318426;0;1;Old +27644;United Kingdom;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y65-84;3140;1;1.196568400354044e-05;63182165;4.969756892629431e-05;0;1;Old +27645;United Kingdom;M;Plant and machine operators, and assemblers;Human health and social work activities   ;Y_GE85;50;1;1.9053636948312803e-07;63182165;7.9136256252061e-07;0;1;Old +27646;United Kingdom;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y15-29;2325;1;8.859941180965454e-06;63182165;3.6798359157208364e-05;1;0;Young +27647;United Kingdom;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y30-49;3895;1;1.4842783182735674e-05;63182165;6.164714362035552e-05;1;0;Young +27648;United Kingdom;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y50-64;3275;1;1.2480132201144885e-05;63182165;5.183424784509996e-05;0;1;Old +27649;United Kingdom;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y65-84;755;1;2.877099179195233e-06;63182165;1.1949574694061211e-05;0;1;Old +27650;United Kingdom;M;Plant and machine operators, and assemblers;Arts, entertainment and recreation   ;Y_GE85;15;1;5.716091084493841e-08;63182165;2.37408768756183e-07;0;1;Old +27651;United Kingdom;M;Plant and machine operators, and assemblers;Other service activities   ;Y15-29;2250;1;8.574136626740762e-06;63182165;3.561131531342745e-05;1;0;Young +27652;United Kingdom;M;Plant and machine operators, and assemblers;Other service activities   ;Y30-49;5815;1;2.2159379770887788e-05;63182165;9.203546602114695e-05;1;0;Young +27653;United Kingdom;M;Plant and machine operators, and assemblers;Other service activities   ;Y50-64;4425;1;1.686246869925683e-05;63182165;7.003558678307398e-05;0;1;Old +27654;United Kingdom;M;Plant and machine operators, and assemblers;Other service activities   ;Y65-84;1000;1;3.8107273896625605e-06;63182165;1.5827251250412202e-05;0;1;Old +27655;United Kingdom;M;Plant and machine operators, and assemblers;Other service activities   ;Y_GE85;25;1;9.526818474156401e-08;63182165;3.95681281260305e-07;0;1;Old +27656;United Kingdom;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;1;0;Young +27657;United Kingdom;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;200;1;7.621454779325121e-07;63182165;3.16545025008244e-06;1;0;Young +27658;United Kingdom;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;245;1;9.336282104673273e-07;63182165;3.8776765563509895e-06;0;1;Old +27659;United Kingdom;M;Plant and machine operators, and assemblers;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27660;United Kingdom;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y15-29;120;1;4.572872867595073e-07;63182165;1.899270150049464e-06;1;0;Young +27661;United Kingdom;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y30-49;280;1;1.067003669105517e-06;63182165;4.431630350115416e-06;1;0;Young +27662;United Kingdom;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y50-64;240;1;9.145745735190145e-07;63182165;3.798540300098928e-06;0;1;Old +27663;United Kingdom;M;Plant and machine operators, and assemblers;Activities of extraterritorial organisations and bodies   ;Y65-84;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27664;United Kingdom;M;Elementary occupations;Agriculture, forestry and fishing   ;Y15-29;18420;1;7.019359851758437e-05;63182165;0.00029153796803259275;1;0;Young +27665;United Kingdom;M;Elementary occupations;Agriculture, forestry and fishing   ;Y30-49;19245;1;7.333744861405598e-05;63182165;0.0003045954503141828;1;0;Young +27666;United Kingdom;M;Elementary occupations;Agriculture, forestry and fishing   ;Y50-64;12110;1;4.614790868881361e-05;63182165;0.00019166801264249174;0;1;Old +27667;United Kingdom;M;Elementary occupations;Agriculture, forestry and fishing   ;Y65-84;2730;1;1.040328577377879e-05;63182165;4.3208395913625306e-05;0;1;Old +27668;United Kingdom;M;Elementary occupations;Agriculture, forestry and fishing   ;Y_GE85;75;1;2.8580455422469204e-07;63182165;1.187043843780915e-06;0;1;Old +27669;United Kingdom;M;Elementary occupations;Mining and quarrying   ;Y15-29;555;1;2.114953701262721e-06;63182165;8.784124443978772e-06;1;0;Young +27670;United Kingdom;M;Elementary occupations;Mining and quarrying   ;Y30-49;1260;1;4.801516510974826e-06;63182165;1.9942336575519374e-05;1;0;Young +27671;United Kingdom;M;Elementary occupations;Mining and quarrying   ;Y50-64;845;1;3.2200646442648638e-06;63182165;1.337402730659831e-05;0;1;Old +27672;United Kingdom;M;Elementary occupations;Mining and quarrying   ;Y65-84;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;0;1;Old +27673;United Kingdom;M;Elementary occupations;Manufacturing   ;Y15-29;58245;1;0.00022195581681089583;63182165;0.0009218582490802586;1;0;Young +27674;United Kingdom;M;Elementary occupations;Manufacturing   ;Y30-49;94575;1;0.0003603995428773367;63182165;0.0014968622870077338;1;0;Young +27675;United Kingdom;M;Elementary occupations;Manufacturing   ;Y50-64;56810;1;0.00021648742300673006;63182165;0.0008991461435359172;0;1;Old +27676;United Kingdom;M;Elementary occupations;Manufacturing   ;Y65-84;5745;1;2.189262885361141e-05;63182165;9.092755843361809e-05;0;1;Old +27677;United Kingdom;M;Elementary occupations;Manufacturing   ;Y_GE85;200;1;7.621454779325121e-07;63182165;3.16545025008244e-06;0;1;Old +27678;United Kingdom;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y15-29;1385;1;5.277857434682646e-06;63182165;2.1920742981820897e-05;1;0;Young +27679;United Kingdom;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y30-49;2470;1;9.412496652466524e-06;63182165;3.9093310588518134e-05;1;0;Young +27680;United Kingdom;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y50-64;1890;1;7.202274766462239e-06;63182165;2.991350486327906e-05;0;1;Old +27681;United Kingdom;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y65-84;235;1;8.955209365707018e-07;63182165;3.7194040438468672e-06;0;1;Old +27682;United Kingdom;M;Elementary occupations;Electricity, gas, steam and air conditioning supply   ;Y_GE85;5;1;1.9053636948312802e-08;63182165;7.913625625206101e-08;0;1;Old +27683;United Kingdom;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y15-29;16130;1;6.14670327952571e-05;63182165;0.0002552935626691488;1;0;Young +27684;United Kingdom;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y30-49;23855;1;9.090490188040038e-05;63182165;0.00037755907857858306;1;0;Young +27685;United Kingdom;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y50-64;12925;1;4.92536515113886e-05;63182165;0.0002045672224115777;0;1;Old +27686;United Kingdom;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y65-84;895;1;3.4106010137479917e-06;63182165;1.416538986911892e-05;0;1;Old +27687;United Kingdom;M;Elementary occupations;"Water supply; sewerage, waste management and remediation activities   ";Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27688;United Kingdom;M;Elementary occupations;Construction   ;Y15-29;75845;1;0.0002890246188689569;63182165;0.0012004178710875134;1;0;Young +27689;United Kingdom;M;Elementary occupations;Construction   ;Y30-49;85890;1;0.00032730337549811733;63182165;0.0013594026098979039;1;0;Young +27690;United Kingdom;M;Elementary occupations;Construction   ;Y50-64;40970;1;0.0001561255011544751;63182165;0.0006484424837293879;0;1;Old +27691;United Kingdom;M;Elementary occupations;Construction   ;Y65-84;4220;1;1.6081269584376006e-05;63182165;6.679100027673949e-05;0;1;Old +27692;United Kingdom;M;Elementary occupations;Construction   ;Y_GE85;95;1;3.6201910201794326e-07;63182165;1.5035888687891592e-06;0;1;Old +27693;United Kingdom;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y15-29;156570;1;0.0005966455873994671;63182165;0.0024780727282770385;1;0;Young +27694;United Kingdom;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y30-49;148065;1;0.000564235350950387;63182165;0.0023434619563922825;1;0;Young +27695;United Kingdom;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y50-64;74015;1;0.0002820509877458744;63182165;0.001171454001299259;0;1;Old +27696;United Kingdom;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y65-84;10310;1;3.9288599387421e-05;63182165;0.00016317896039174979;0;1;Old +27697;United Kingdom;M;Elementary occupations;"Wholesale and retail trade; repair of motor vehicles and motorcycles   ";Y_GE85;245;1;9.336282104673273e-07;63182165;3.8776765563509895e-06;0;1;Old +27698;United Kingdom;M;Elementary occupations;Transportation and storage   ;Y15-29;65960;1;0.0002513555786221425;63182165;0.0010439654924771888;1;0;Young +27699;United Kingdom;M;Elementary occupations;Transportation and storage   ;Y30-49;138480;1;0.0005277095289204713;63182165;0.0021917577531570817;1;0;Young +27700;United Kingdom;M;Elementary occupations;Transportation and storage   ;Y50-64;75745;1;0.00028864354612999067;63182165;0.0011988351459624722;0;1;Old +27701;United Kingdom;M;Elementary occupations;Transportation and storage   ;Y65-84;5845;1;2.2273701592577666e-05;63182165;9.251028355865932e-05;0;1;Old +27702;United Kingdom;M;Elementary occupations;Transportation and storage   ;Y_GE85;185;1;7.049845670875737e-07;63182165;2.9280414813262574e-06;0;1;Old +27703;United Kingdom;M;Elementary occupations;Accommodation and food service activities   ;Y15-29;228555;1;0.0008709607985443265;63182165;0.0036173974095379605;1;0;Young +27704;United Kingdom;M;Elementary occupations;Accommodation and food service activities   ;Y30-49;79600;1;0.0003033339002171398;63182165;0.0012598491995328112;1;0;Young +27705;United Kingdom;M;Elementary occupations;Accommodation and food service activities   ;Y50-64;27295;1;0.00010401380410083959;63182165;0.000432004822880001;0;1;Old +27706;United Kingdom;M;Elementary occupations;Accommodation and food service activities   ;Y65-84;4600;1;1.7529345992447777e-05;63182165;7.280535575189613e-05;0;1;Old +27707;United Kingdom;M;Elementary occupations;Accommodation and food service activities   ;Y_GE85;185;1;7.049845670875737e-07;63182165;2.9280414813262574e-06;0;1;Old +27708;United Kingdom;M;Elementary occupations;Information and communication   ;Y15-29;11100;1;4.229907402525442e-05;63182165;0.00017568248887957544;1;0;Young +27709;United Kingdom;M;Elementary occupations;Information and communication   ;Y30-49;7405;1;2.8218436320451262e-05;63182165;0.00011720079550930234;1;0;Young +27710;United Kingdom;M;Elementary occupations;Information and communication   ;Y50-64;3840;1;1.4633193176304233e-05;63182165;6.077664480158285e-05;0;1;Old +27711;United Kingdom;M;Elementary occupations;Information and communication   ;Y65-84;725;1;2.7627773575053563e-06;63182165;1.1474757156548846e-05;0;1;Old +27712;United Kingdom;M;Elementary occupations;Information and communication   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27713;United Kingdom;M;Elementary occupations;Financial and insurance activities   ;Y15-29;3510;1;1.3375653137715588e-05;63182165;5.555365188894682e-05;1;0;Young +27714;United Kingdom;M;Elementary occupations;Financial and insurance activities   ;Y30-49;5330;1;2.031117698690145e-05;63182165;8.435924916469704e-05;1;0;Young +27715;United Kingdom;M;Elementary occupations;Financial and insurance activities   ;Y50-64;3400;1;1.2956473124852705e-05;63182165;5.381265425140148e-05;0;1;Old +27716;United Kingdom;M;Elementary occupations;Financial and insurance activities   ;Y65-84;665;1;2.534133714125603e-06;63182165;1.0525122081524113e-05;0;1;Old +27717;United Kingdom;M;Elementary occupations;Financial and insurance activities   ;Y_GE85;10;1;3.8107273896625604e-08;63182165;1.5827251250412202e-07;0;1;Old +27718;United Kingdom;M;Elementary occupations;Real estate activities   ;Y15-29;3045;1;1.1603664901522497e-05;63182165;4.819398005750515e-05;1;0;Young +27719;United Kingdom;M;Elementary occupations;Real estate activities   ;Y30-49;5930;1;2.2597613420698985e-05;63182165;9.385559991494436e-05;1;0;Young +27720;United Kingdom;M;Elementary occupations;Real estate activities   ;Y50-64;6070;1;2.3131115255251743e-05;63182165;9.607141509000207e-05;0;1;Old +27721;United Kingdom;M;Elementary occupations;Real estate activities   ;Y65-84;1215;1;4.630033778440011e-06;63182165;1.9230110269250823e-05;0;1;Old +27722;United Kingdom;M;Elementary occupations;Real estate activities   ;Y_GE85;20;1;7.621454779325121e-08;63182165;3.1654502500824403e-07;0;1;Old +27723;United Kingdom;M;Elementary occupations;Professional, scientific and technical activities   ;Y15-29;6575;1;2.5055532587031334e-05;63182165;0.00010406417697146022;1;0;Young +27724;United Kingdom;M;Elementary occupations;Professional, scientific and technical activities   ;Y30-49;9220;1;3.5134906532688806e-05;63182165;0.0001459272565288005;1;0;Young +27725;United Kingdom;M;Elementary occupations;Professional, scientific and technical activities   ;Y50-64;6110;1;2.3283544350838243e-05;63182165;9.670450514001855e-05;0;1;Old +27726;United Kingdom;M;Elementary occupations;Professional, scientific and technical activities   ;Y65-84;1260;1;4.801516510974826e-06;63182165;1.9942336575519374e-05;0;1;Old +27727;United Kingdom;M;Elementary occupations;Professional, scientific and technical activities   ;Y_GE85;30;1;1.1432182168987682e-07;63182165;4.74817537512366e-07;0;1;Old +27728;United Kingdom;M;Elementary occupations;Administrative and support service activities   ;Y15-29;90695;1;0.0003456139206054459;63182165;0.0014354525521561347;1;0;Young +27729;United Kingdom;M;Elementary occupations;Administrative and support service activities   ;Y30-49;136265;1;0.0005192687677523688;63182165;0.0021567003916374184;1;0;Young +27730;United Kingdom;M;Elementary occupations;Administrative and support service activities   ;Y50-64;77645;1;0.00029588392817034954;63182165;0.0012289069233382553;0;1;Old +27731;United Kingdom;M;Elementary occupations;Administrative and support service activities   ;Y65-84;12280;1;4.679573234505624e-05;63182165;0.00019435864535506181;0;1;Old +27732;United Kingdom;M;Elementary occupations;Administrative and support service activities   ;Y_GE85;180;1;6.859309301392609e-07;63182165;2.848905225074196e-06;0;1;Old +27733;United Kingdom;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y15-29;9575;1;3.648771475601902e-05;63182165;0.00015154593072269683;1;0;Young +27734;United Kingdom;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y30-49;22045;1;8.400748530511114e-05;63182165;0.00034891175381533695;1;0;Young +27735;United Kingdom;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y50-64;20700;1;7.8882056966015e-05;63182165;0.0003276241008835326;0;1;Old +27736;United Kingdom;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y65-84;3735;1;1.4233066800389663e-05;63182165;5.911478342028957e-05;0;1;Old +27737;United Kingdom;M;Elementary occupations;"Public administration and defence; compulsory social security   ";Y_GE85;65;1;2.4769728032806646e-07;63182165;1.028771331276793e-06;0;1;Old +27738;United Kingdom;M;Elementary occupations;Education   ;Y15-29;11840;1;4.511901229360472e-05;63182165;0.00018739465480488047;1;0;Young +27739;United Kingdom;M;Elementary occupations;Education   ;Y30-49;21030;1;8.013959700460364e-05;63182165;0.0003328470937961686;1;0;Young +27740;United Kingdom;M;Elementary occupations;Education   ;Y50-64;27210;1;0.00010368989227271827;63182165;0.000430659506523716;0;1;Old +27741;United Kingdom;M;Elementary occupations;Education   ;Y65-84;4830;1;1.840581329207017e-05;63182165;7.644562353949093e-05;0;1;Old +27742;United Kingdom;M;Elementary occupations;Education   ;Y_GE85;60;1;2.2864364337975364e-07;63182165;9.49635075024732e-07;0;1;Old +27743;United Kingdom;M;Elementary occupations;Human health and social work activities   ;Y15-29;15360;1;5.853277270521693e-05;63182165;0.0002431065792063314;1;0;Young +27744;United Kingdom;M;Elementary occupations;Human health and social work activities   ;Y30-49;22380;1;8.52840789806481e-05;63182165;0.00035421388298422505;1;0;Young +27745;United Kingdom;M;Elementary occupations;Human health and social work activities   ;Y50-64;19710;1;7.510943685024906e-05;63182165;0.0003119551221456245;0;1;Old +27746;United Kingdom;M;Elementary occupations;Human health and social work activities   ;Y65-84;3025;1;1.1527450353729245e-05;63182165;4.7877435032496906e-05;0;1;Old +27747;United Kingdom;M;Elementary occupations;Human health and social work activities   ;Y_GE85;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +27748;United Kingdom;M;Elementary occupations;Arts, entertainment and recreation   ;Y15-29;23560;1;8.978073730044993e-05;63182165;0.00037289003945971145;1;0;Young +27749;United Kingdom;M;Elementary occupations;Arts, entertainment and recreation   ;Y30-49;10930;1;4.165125036901179e-05;63182165;0.00017299185616700535;1;0;Young +27750;United Kingdom;M;Elementary occupations;Arts, entertainment and recreation   ;Y50-64;7720;1;2.9418815448194966e-05;63182165;0.0001221863796531822;0;1;Old +27751;United Kingdom;M;Elementary occupations;Arts, entertainment and recreation   ;Y65-84;2060;1;7.850098422704875e-06;63182165;3.260413757584913e-05;0;1;Old +27752;United Kingdom;M;Elementary occupations;Arts, entertainment and recreation   ;Y_GE85;45;1;1.7148273253481523e-07;63182165;7.12226306268549e-07;0;1;Old +27753;United Kingdom;M;Elementary occupations;Other service activities   ;Y15-29;9960;1;3.7954844801039104e-05;63182165;0.00015763942245410552;1;0;Young +27754;United Kingdom;M;Elementary occupations;Other service activities   ;Y30-49;11920;1;4.542387048477772e-05;63182165;0.00018866083490491343;1;0;Young +27755;United Kingdom;M;Elementary occupations;Other service activities   ;Y50-64;8190;1;3.120985732133637e-05;63182165;0.00012962518774087593;0;1;Old +27756;United Kingdom;M;Elementary occupations;Other service activities   ;Y65-84;1925;1;7.335650225100429e-06;63182165;3.0467458657043485e-05;0;1;Old +27757;United Kingdom;M;Elementary occupations;Other service activities   ;Y_GE85;35;1;1.3337545863818962e-07;63182165;5.53953793764427e-07;0;1;Old +27758;United Kingdom;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y15-29;235;1;8.955209365707018e-07;63182165;3.7194040438468672e-06;1;0;Young +27759;United Kingdom;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y30-49;475;1;1.8100955100897163e-06;63182165;7.517944343945795e-06;1;0;Young +27760;United Kingdom;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y50-64;265;1;1.0098427582605786e-06;63182165;4.194221581359233e-06;0;1;Old +27761;United Kingdom;M;Elementary occupations;"Activities of households as employers; undifferentiated goods- and services-producing activities of households for own use   ";Y65-84;70;1;2.6675091727637925e-07;63182165;1.107907587528854e-06;0;1;Old +27762;United Kingdom;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y15-29;210;1;8.002527518291377e-07;63182165;3.323722762586562e-06;1;0;Young +27763;United Kingdom;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y30-49;310;1;1.1813254907953937e-06;63182165;4.906447887627783e-06;1;0;Young +27764;United Kingdom;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y50-64;205;1;7.811991148808249e-07;63182165;3.244586506334501e-06;0;1;Old +27765;United Kingdom;M;Elementary occupations;Activities of extraterritorial organisations and bodies   ;Y65-84;40;1;1.5242909558650242e-07;63182165;6.330900500164881e-07;0;1;Old diff --git a/README.md b/README.md index 809bc03..3272da7 100644 --- a/README.md +++ b/README.md @@ -1,100 +1,52 @@ ![IronHack Logo](https://s3-eu-west-1.amazonaws.com/ih-materials/uploads/upload_d5c5793015fec3be28a63c4fa3dd4d55.png) -# Project: Business Intelligence with Tableau +# Project: WeRobot - A world where life is easier! +*Jan Potthoff & Linda Ritter* -## Overview +*Data Squad 21, Lisbon 20.09.2019* -The goal of this project is for you to practice what you have learned in the Business Intelligence chapter of this program. For this project, you will choose a data set, explore the it using Tableau, and put together a Story for presentation showing the insights you have derived from the data. You should demonstrate your proficiency using Tableau and the concepts you have learned throughout the chapter. The workbook should be saved to Tableau Public and a link to the workbook should be provided. +## Content +- [Project Description](#project-description) +- [Questions](#hypotheses-/-questions) +- [Dataset](#dataset) +- [Workflow](#workflow) +- [Links](#links) -**You will be working in pairs for this project** + ---- +## Project Description -## Technical Requirements +We are WeRobot and create a world where life is easier. The idea behind WeRobot is to enter a specific market to support the industries which are suffering from the demographic change of the aging workforce with our technical expertise in automatization and digitalization. -The technical requirements for this project are as follows: -- You must construct a Tableau Story consisting of at least 5 story points for the data set you have chosen. -- You must use Story features such as captions and annotations. -- You must demonstrate all the concepts we covered in the chapter (sorting, filtering, different visualizations types, aggregations, etc.). -- Your Tableau workbook consisting of at least 5 visualizations and 1 Story should be saved to Tableau Public. -- You should create a Github repo for this project, and your data should be saved to that repo in a folder named data. -- You should also include a README.md file that describes the steps you took, your thought process as you built your visualizations and Story in Tableau, and a link to your workbook on Tableau Public. +## Questions -## Necessary Deliverables +To expand our expertise in those markets in which the digital transformation didn´t take place yet, we were asking us following questions: -The following deliverables should be pushed to your Github repo for this chapter. +1. In which countries in the European Union are the highest percentage of workers above 50? -- **A Tableau workbook uploaded to Tableau Public** that contains the visualizations and Story you created from your data set. -- **An data folder** containing the data set you used for your project. -- **A `README.md` file** containing a detailed explanation of your approach and code for constructing visualizations and organizing them into a Story as well as your results, obstacles encountered, lessons learned, and a link to your completed Tableau workbook. +2. Which industry in those countries have more workers above 50 than workers below 50? -## Suggested Ways to Get Started +3. How many people are we able to support in this industry and country with our expertise, as a base for further calculation? -- **Find a data set to process** - As great places to start looking we recommend [Kaggle](https://www.kaggle.com/datasets), [Pordata](https://www.pordata.pt), and [EuroStat](https://ec.europa.eu/eurostat/data/database). -- **Explore the data set** and come up with a variety of visualizations that you can potentially include in your story. -- **Break the project down into different steps** - identify the entities/dimensions in your data set, explore them each individually, and then progress to analyzing different combinations of them. -- **Use the tools in your tool kit** - the concepts and methods you have learned in the business intelligence chapter as well as some of the things you've learned in previous chapters. This is a great way to start tying everything you've learned together! -- **Work through the lessons in class** & ask questions when you need to! -- **Commit early, commit often**, don’t be afraid of doing something incorrectly because you can always roll back to a previous version. -- **Consult documentation and resources provided** to better understand the tools you are using and how to accomplish what you want. -## Useful Resources +## Dataset -- [Tableau Getting Started Tutorial](https://onlinehelp.tableau.com/current/guides/get-started-tutorial/en-us/get-started-tutorial-home.html) -- [Tableau Training Videos](https://www.tableau.com/learn/training) -- [Tableau Learning Library](https://onlinehelp.tableau.com/current/guides/get-started-tutorial/en-us/get-started-tutorial-next.html) +[EuroStat](https://ec.europa.eu/eurostat/data/database) - Population Census 2011 | CSV -## Evaluation topics - Topics to consider +Data about: Country, age, sex, occupation, industry -**Dataset** +## Workflow +Find a Dataset to answer our questions -- You identify clearly the origin of your data -- Clear explanation of your a priori data transformation steps and why you did those -- Mixing/enriching dataset is priority, data should talk by itself before moving to the visualization -- Good data profilling should be done before you jump to visual analysis - get to know the integrity of your data, how it behaves across all variables, clear statement of different relations +Data cleaning & analysing -**Problem formulation** +Data visualization in Tabelau -- After understanding the data, make sure your formulate a good problem/hypothesis -- Place yourself as the final users of your visual analysis -- Do not answer to more than 4 questions on the same dashboard/scream - users will be confused -- Keep it simple - maximize the answers using the minimum number of data points -**Data Visualization** +## Links -- Data Visualization -- Do simple chart, correlate them if needed (brushing, direct filtering) -- Describe on the documentation how you visualy encode your data (e.g. Sales are encoded on the size of bars, and each bar represents a different Country. It is possible to filter - facet - the entire chart by Year) +- [EUROSTAT - Population Census 2011](https://ec.europa.eu/CensusHub2/query.do?step=selectHyperCube&qhc=false) +- [Project 5 - WeRobot in Tableau](https://public.tableau.com/profile/linda4590#!/vizhome/Project5WeRobot/Story2) -**Text** -- Your titles must be relevant -- Subtitle and/or annotations provide additional information -- Text is hierarchical in size, readable and horizontal -- Data is labeled directly and labels are used sparingly - -**Arrangement** - -- Data is intentionally ordered -- Is your chart displacement representing the correct data granularity changes (e.g. more aggregated on the top)? -- If your charts correlate with each other in the dashboard, place them accordingly (e.g. do not filter from the bottom to the top) - -**Color** - -- Color scheme is intentional, used to highlight key patterns, readable when printed in black & white, and sufficiently contrasts with background - -**Lines** - -- Axes do not have unnecessary tick marks, and graph has one horizontal and one vertical axis - -**Overall** - -- Graphs highlight significant finding or conclusions -- No addition of unnecessary graphs -- Individual chart elements work together to reinforce the overarching takeaway message - -**Feedback** - -- Your feedback is also a part of this project! -- When other groups are presenting, put yourself on the shoes of the final user and comment accordingly with collaborative and constructive feedback